@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');

*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-size: 100%;
    box-sizing: border-box;
    color: #000;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    margin-top: 83px;
}

body a {
    color: #242424;
}

body a:hover,
body a:focus {
    color: #242424;
    text-decoration: none;
}

section {
    padding: 50px 0;
}

.row_flex {
    display: flex;
    flex-wrap: wrap;
}

.bg_img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg_attached {
    background-attachment: fixed;
}

.w-100 {
    width: 100%;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-0 {
    padding-top: 0;
}

/* owl carousel */

/* fix blank or flashing items on carousel */

.owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}

/* end fix */

.owl-nav > div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    background: #FFCA05;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 2px;
}

.owl-nav i {
    font-size: 100%;
}

.owl-nav .owl-prev {
    left: -50px;
}

.owl-nav .owl-next {
    right: -50px;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-carousel .owl-dot {
    display: inline-block;
    margin-right: 10px;
}

.owl-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #ddd;
    border-radius: 50%;
    transition: all .5s;
}

.owl-carousel .owl-dot.active span {
    background-color: #000;
    width: 20px;
    border-radius: 10px;
}

.owl-carousel .owl-stage {
    padding: 20px 0;
}

/* //owl carousel */

/* navbar */

.navbar {
    margin-bottom: 0;
    box-shadow: 0 15px 40px -20px rgba(40, 44, 63, .35);
    background-color: #fff;
    border-radius: 0;
    border: 0;
}

/*.navbar.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    background-color: #fff;
}*/

.navbar-nav > li > a {
    color: #000;
    font-size: 100%;
    border-bottom: 3px solid transparent;
}

.navbar-nav > li.active > a {
    border-color: #FCB01C;
}

.nav > li > a:hover,
.nav > li > a:focus {
    background-color: transparent;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: transparent;
}

.navbar-toggle {
    border-color: transparent;
}

.navbar-toggle .icon-bar {
    background-color: #000;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand > img {
    height: 80px;
}

/* //navbar */

/*web btn*/

.web_btn {
    color: #000;
    padding: 12px 30px;
    display: inline-block;
    cursor: pointer;
    border-color: transparent;
    background-color: #FCB01C;
    border: 2px solid #FCB01C;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin-top: 15px;
    margin-right: 5px;
    margin-bottom: 5px;
    text-decoration: none !important;
    font-weight: 600;
}

.web_btn::after {
    background-color: #fff;
    content: "";
    height: 100%;
    left: 0;
    opacity: .1;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    transition: all .5s ease 0s;
    width: 0;
    z-index: -1;
}

.web_btn:hover,
.web_btn:focus {
    color: #242424;
    border-color: #242424;
    background-color: transparent;
}

.web_btn:hover::after,
.web_btn:focus::after {
    left: 5%;
    width: 90%;
    z-index: 1;
}

.ghost_btn {
    color: #242424;
    background-color: transparent;
}

.ghost_btn:hover {
    background-color: #242424;
    color: #fff;
}

.white_btn {
    border-color: #fff;
    background-color: #fff;
    color: #242424;
}

.white_btn:hover,
.white_btn:focus {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.small_btn {
    padding: 10px 15px;
    font-size: 90%;
    margin-top: 15px;
}

.big_btn {
    padding: 15px 40px;
    font-size: 110%;
}

/*pulse animation*/

.flash_btn {
    box-shadow: 0 0 0 0 rgba(12, 113, 195, .7);
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.flash_btn:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

/*//pulse animation*/


/*//web btn*/

/*icon list*/

.icon_list,
.icon_list_sec ul {
    list-style: none;
}

.icon_list li,
.icon_list_sec ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

.icon_list li::before,
.icon_list_sec ul li::before {
    content: '\f00c';
    font-family: fontAwesome;
    position: absolute;
    left: 0;
    color: #242424;
}

.icon_list_sec.white_icons ul li::before {
    color: #fff;
}

.icon_list.map_marker li::before {
    content: '\f041';
}

.icon_list.big_list li {
    padding: 10px 10px 10px 40px;
    margin-bottom: 0;
    /* font-weight: 500; */
}

.icon_list.big_list li::before {
    content: '\f00c';
    width: 30px;
    height: 30px;
    /* background-color: #242424; */
    color: #000;
    line-height: 30px;
    text-align: center;
    font-family: fontAwesome;
    top: 10px;
/*    transform: translateY(-50%);*/
    border: 1px solid #242424;
}

.icon_list.big_list {
    /* font-size: 120%; */
}

.icon_list.horizon_list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.icon_list.horizon_list li {
    width: calc(100%/4 - 30px);
    margin-right: 30px;
}

/*//icon list*/

.modal-header {
    background-color: #242424;
    color: #fff;
}

.close {
    color: #fff !important;
    opacity: 1 !important;
}

ul,
ol {
    list-style: none;
}

.bg_light_green {
    background-color: #E6F0CF;
}

.text_green {
    color: #242424;
}

.web_content p,
.web_content li {
    margin-bottom: 10px;
}

.web_content .box_title {
    font-size: 150%;
    font-weight: 700;
}

.section_title, .section_subtitle {
    font-size: 250%;
    font-weight: 700;
    margin-bottom: 30px;
    color: #242424;
    text-align: center;
}

.section_subtitle {
    font-size: 180%;
    position: relative;
    margin-bottom: 50px;
}

.section_subtitle::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 3px;
    background-color: #FCB01C;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.works_wrap .row {
    margin-bottom: 30px;
}

.works_wrap .web_content {
    margin-top: 30px;
}

.works_wrap .row.reverse .web_content,
.works_wrap .row.reverse .btn_box {
    text-align: right;
}

.works_wrap .row.reverse .icon_list li::before {
    right: 0;
    left: auto;
}

.works_wrap .row.reverse .icon_list li {
    padding-right: 40px;
    padding-left: 10px;
}

.download_app_btn {
    text-align: center;
}

.download_app_btn img {
    height: 60px;
    margin: 0 10px;
    display: inline-block;
}

/*home*/

.home_banner {
    display: flex;
    flex-wrap: wrap;
}

.home_banner .content {
  width: 50%;
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.7);
}

.home_banner .img {
    width: 50%;
}

.banner_form_wrap .title {
  font-size: 220%;
  text-align: center;
}

.banner_form_wrap .subtitle {
  font-size: 140%;
  color: #242424;
  text-align: center;
  margin: 10px 0 20px;
  font-weight: 700;
}

.banner_form_wrap .icon_list_sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.banner_form {
  margin: 30px 0 20px;
}

.banner_form_wrap .disclaimer {
  text-align: center;
  font-size: 80%;
}

.footer_form, .banner_form_wrap.footer_form .subtitle {
    color: #fff;
}

.footer_form .banner_form {
    margin-top: 0;
}

.service_box {
    box-shadow: 0px 90px 160px 0px rgb(0 0 0 / 6%);
    margin-bottom: 70px;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    /*border: 1px solid #FCB01C;*/
}

.service_box:nth-child(even) {
    flex-direction: row-reverse;
}

.service_box .content {
    padding: 30px;
    width: 50%;
    /*border: 1px solid #FCB01C;*/
    /*border-left: 0;*/
}

.service_box:nth-child(even) .content {
    /*border-left: 1px solid #FCB01C;*/
    /*border-right: 0;*/
}

.service_box .modal .content {
    padding: 15px;
}

.service_box .content .title {
    font-size: 140%;
    margin-bottom: 10px;
    font-weight: 700;
}
.description{
    /*height:205px;
    overflow-y: auto;*/
}
.service_box .content .description p {
    margin-bottom: 10px;
}

.service_box .img {
    width: 50%;
}

.service_box .img img {
    width: 100%;
}

.service_modal .modal-header {
    display: none;
}

/*//home*/

/*offer*/

.offer_box {
    box-shadow: 0px 90px 160px 0px rgb(0 0 0 / 6%);
    margin-bottom: 30px;
    border-radius: 10px;
    background:#fff;
}

.offer_box .content {
    padding: 25px;
    background:#fff;
}

.offer_box .content .title {
    font-size: 130%;
    font-weight: 600;
    margin-bottom: 10px;
}
.offer_box .img{
    height:300px;
    margin-bottom:15px;
}
.offer_box .img img{
    width:100%;
    height:100%;
}
.customTitle{
    font-size:200%;
}
/*//offer*/

/*contact*/

.contact_sec {
    position: relative;
    margin-top: -200px;
    z-index: 2;
}

.contact_main_box {
    padding: 50px;
    background-color: #fff;
    box-shadow: 0px 3px 14px 0px rgba(0, 11, 40, 0.06);
}

.contact_map iframe {
    width: 100%;
    height: 400px;
}


.form-control {
    border: 1px solid #eee;
    height: 50px;
    font-size: 100%;
    vertical-align: middle;
    border-radius: 0;
    box-shadow: none;
}

textarea.form-control {
    height: 125px;
    resize: none;
}

.form-control:focus {
    border-color: #ddd;
    box-shadow: none;
}

.contact_wrap {
    /* display: -webkit-flex; */
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    /* display: flex; */
    /* flex-wrap: wrap; */
}

.contact_box {
    /* width: calc(100%/3); */
    /* text-align: center; */
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
}

.contact_box:nth-child(2) {
    /* border-right: 1px solid #eee; */
    /* border-left: 1px solid #eee; */
}

.contact_box .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background-color: #242424;
    font-size: 150%;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #242424;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact_box .title {
    font-size: 110%;
    text-transform: capitalize;
    font-weight: 600;
    /* margin-left: 15px; */
}

.contact_box .content {
    width: calc(100% - 75px);
    margin-left: 15px;
}

.contact_sec_wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact_sec_wrap .contact_box {
    background-color: #fff;
    width: 300px;
    margin: 0 10px;
    display: block;
    text-align: center;
    padding: 15px;
}

.contact_sec_wrap .contact_box .content {
    margin-left: 0;
    width: 100%;
}

.contact_section .section_title {
    font-size: 150%;
}

.download_app_btn {
    margin-bottom: 30px;
}

.contact_sec_wrap .contact_box .icon {
    margin-bottom: 15px;
}

/*//contact*/

/* footer */

.footer {
    background-color: #242424;
    color: #fff;
}

.footer a {
    color: #fff;
}

.footer_box > .title {
    border-bottom: 1px solid #fff;
    text-transform: capitalize;
    font-size: 140%;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

/*
.footer_box .icon_list li {
    padding-left: 0;
}
*/

.footer_box .icon_list li::before {
    content: '\f105';
}

.footer_box .contact_box {
    padding: 0;
    margin-bottom: 15px;
}

.footer_box .contact_box .icon {
    width: 40px;
    height: 40px;
    color: #fff;
    line-height: 35px;
    font-size: 120%;
    margin: 0;
}

.footer_logo {
    margin-bottom: 15px;
}

#copyright {
    background-color: #fff;
    padding: 20px 0;
}

#copyright p {
    text-align: center;
    color: #000;
}

#copyright a {
    color: #000;
}

.copy_box {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.payment_box img {
    height: 40px;
    margin-left: 5px;
    display: inline-block;
}

/* footer */

/* footer */

#copyright {
    background-color: #242424;
    padding: 20px 0;
}

#copyright p {
    text-align: center;
    color: #fff;
}

#copyright a {
    color: #fff;
}

.footer_links {
    text-align: center;
    margin-bottom: 10px;
}

.footer_links a {
    display: inline-block;
    padding: 0 10px;
    border-right: 1px solid #fff;
}

.footer_links a:last-child {
    border-right: 0;
}

/* footer */


/* zaroon */
.privacyPolicy p{
    margin-bottom:15px;
}
.privacyPolicy h3{
    margin-bottom:15px;
    text-transform:uppercase;
}
.privacyPolicy ul{
    margin-bottom:15px;
    list-style-type:disc;
    margin-left:10px;
    padding-left:10px;
}
.privacyPolicy ul li{
    padding:5px 0;
}
.footer_links h3{
    text-align:center;
    margin-bottom:25px;
    color:#fff;
    font-size:20px;
}
#copyright p{
    margin-top:20px;
}
.text_primary{
    color:#FCB01C !important;
    text-decoration:underline;
}
.textLeft{
    text-align:left !important;
    font-size:14px !important;
}
.list{
    margin-bottom:15px;
}
.list li{
    padding:3px 0;
}
.sub_heading{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
}
.textMessage{
    padding:20px;
    border:1px solid #e0e0e0;
}
.bgGrey{
    background:#f5f5f5;
}
.textMessage p{
    margin-bottom:5px;
}
.textMessage p:last-child{
    margin-bottom:0px;
}
.contactItem{
    margin-top:20px;
    padding:20px 30px;
    border:1px solid #999;
}
.contactItem h4{
    padding:12px 0;
    font-weight:600;
    border-bottom:1px dashed #e0e0e0;
}
.mtTop{
    margin-top:50px;
}
.rightContact{
    padding-left:20px;
}
.rightContact p{
    margin-top:15px;
}
.rightContact p a{
    font-size:20px;
    font-weight:600;
}
.disFont{
    font-size:14px;
}
.textRed{
    color:#ff0000;
}