body{
    font-weight: 400;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 400;
     font-family: "Rajdhani", sans-serif;
}
p,li{
     font-family: "DM Sans", sans-serif; 
}
.flex_v_cen{
    display: flex;
    align-items: center;
}
.flex_cen{
      display: flex;
    align-items: center;
    justify-content: center;
}
:root{
    --primaryfnt: "Rajdhani", sans-serif;
    --light: #F1F2F6;
    --dark: #001D4A;
    --blue: #1067F3;
    --textdark: #2B2F2E;
    --textlight: #2F2F2F;
}
.bg_gray{
    background-color: var(--light);
    padding: 50px 0px;
}
.wrapper{
    padding-left: 100px;
    padding-right: 100px;
}
.container{
    width: 100%;
    max-width: 1300px;
}
.mt_70{
    margin-top: 70px;
}
.pr-0{
    padding-right: 0;
}
.pl-0{
    padding-left: 0;
}

.title_head .sub_head{
    color: var(--blue);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: flex-end;
}
.title_head img{
    width: 55px;
    display: inline-block;
}
.title_head .head{
       color: var(--textdark);
    font-size: 48px;
    line-height: 55px;
    margin-bottom: 12px;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 10px;
}
.title_head p {
        font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
    margin-bottom: 25px;
}
/*
.title_head.white .sub_head, .title_head.white .head{
    color: #fff;
}
*/

.btn_style a {
        font-family: var(--primaryfnt);
    color: var(--textdark);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, .5);
    border-radius: 80px;
    position: relative;
    padding-right: 40px;
    transition: 0.3s;
}
.btn_style a i {
        width: 51px;
    height: 51px;
    justify-content: center;
    position: absolute;
    right: -22px;
    top: 0;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    color: #fff;
    transition: 0.3s;
}
.btn_style a:hover{
    background-color: var(--blue);
    
    color:#fff;
}
.btn_style a:hover i {
    background-color: #fff;
    border:1px solid var(--blue);
    color:var(--blue);
}
.pop_call{
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.pop_call:after{
    position: absolute;
    content: '';
    display: block;
    background-image: url(../img/call_corner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    bottom: -20px;
    left: 0;
}
.pop_call i{
        width: 50px;
    height: 50px;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    margin-right: 15px;
}
.pop_call span{
    font-size: 16px;
    color: var(--textlight);
    font-family: var(--primaryfnt);
    line-height: 24px;
}
.pop_call span b{
    font-size: 24px;
    font-weight: 600;
    color: var(--textdark);
    transition: 0.3s;
}
.pop_call:hover span b{
    color:  var(--blue);
}
.call_contact{
    border-top: 1px solid rgba(0, 0, 0, 0.30);
    padding-top: 15px;
    padding-bottom: 15px;
     margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.call_contact .call{
    display: flex;
    align-items: center;
    text-decoration: none;
   
}
.call_contact .call i{
   width: 50px;
    height: 50px;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    margin-right: 15px;
}
.call_contact .call span{
    font-size: 16px;
    color: var(--textlight);
    font-family: var(--primaryfnt);
    line-height: 24px;
}
.call_contact .call span b{
    font-size: 24px;
    font-weight: 600;
    color: var(--textdark);
    transition: 0.3s;
}
.call_contact .call:hover span b{
     color: var(--blue);
}
.call_contact .btn_style{
    margin-bottom: 0 !important;
}
.call_contact .or{
    color: var(--textlight);
    font-weight: 400;
    font-family: var(--primaryfnt);
     font-size: 16px;
    position: relative;
    
}
.call_contact .or:after{
        position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.30);
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.call_contact .or:before{
        position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.30);
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
/*start header*/
header{
    overflow: hidden;
}
header .logo_part{
    width: 230px;
    margin-right: 25px;
    display: flex;
    align-items: center;
}
header .logo_part img{
    width: 200px;
}
header .nav_part{
    flex: 1;
}
header .nav_part .top_bar{
    background-color: var(--dark);
    border-bottom-left-radius: 10px;
    padding: 11px 0px;
    padding-left: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
header .nav_part .top_bar:after{
    position: absolute;
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background-color: var(--dark);
    right: -20%;
    top: 0;
    z-index: -1;
}
header .nav_part .top_bar p {
    margin: 0;
    font-size: 15px;
    color: #fff;
    text-transform: capitalize;
}
header .nav_part .top_bar a.call{
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: capitalize;
}
header .nav_part .top_bar a.call i{
    font-size: 20px;
    margin-right: 10px;
}
header .nav_part .top_bar a.call span{
    font-size: 20px;
    font-weight: bold;
    font-family:var(--primaryfnt); 
    padding-left: 10px;
}
header .nav_part .nav_bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .nav_part .nav_bar ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
header .nav_part .nav_bar ul li{
       display: inline-block;
}
header .nav_part .nav_bar ul li a{
 display: block;
    margin-right: 17px;
    font-family: var(--primaryfnt);
    color: var(--textdark);
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    padding: 42px 0px;
    position: relative;
}
header .nav_part .nav_bar ul li a.active{
    color: var(--blue);
    
}
header .nav_part .nav_bar ul li a.active:after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--blue);
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
}
header .nav_part .nav_bar .book_appo{
        font-family: var(--primaryfnt);
    color: var(--textdark);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, .5);
    border-radius: 80px;
    position: relative;
    padding-right: 40px;
    transition: 0.3s;
}
header .nav_part .nav_bar .book_appo i {
        width: 51px;
    height: 51px;
    justify-content: center;
    position: absolute;
    right: -22px;
    top: 0;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    color: #fff;
    transition: 0.3s;
}
header .nav_part .nav_bar .book_appo:hover{
    background-color:  var(--blue);
    color: #fff;
}
header .nav_part .nav_bar .book_appo:hover i{
     background-color: #fff ;
    color: var(--blue);
    border: 1px solid var(--blue);
}
/*end header*/
/*start banner*/
.home_banner{
    background-image: url(../img/banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 170px;
}
.home_banner .con_part h3{
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 25px;
}
.home_banner .con_part h1{
    font-size: 90px;
    line-height: 90px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--textdark);
    margin-bottom: 25px;
}
.home_banner .con_part p{
    font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
    margin-bottom: 25px;
}
.home_banner .con_part .btn_style a{
    background-color: var(--blue);
    border-color:  var(--blue);
    color: #fff;
}
.home_banner .con_part .btn_style a i{
    border: 2px solid var(--blue);
    background-color: #fff;
    color:  var(--blue);
}
.home_banner .con_part .btn_style a:hover{
     background-color: var(--dark);
    border-color:  var(--dark);
}
.home_banner .con_part .btn_style a:hover i{
    background-color: var(--blue);
    color:  #fff;
}
/*end banner*/
/*start home banner bottom*/
.home_bann_btm{
    margin-top: -50px;
}
.home_bann_btm .dvd{
  column-gap: 0;
    column-count: 2;
}
.home_bann_btm .dvd .box:first-child{
    background-color: var(--blue);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.home_bann_btm .dvd .box:last-child{
    background-color: var(--dark);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.home_bann_btm .dvd .box{
      padding: 30px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.home_bann_btm .dvd .box p{
    font-size: 28px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0;
    color: #fff;
    font-family: var(--primaryfnt);
}
.home_bann_btm .dvd .box .icon{
   position: absolute;
    font-size: 45px;
    left: 15px;
    line-height: 45px;
    opacity: .2;
    color: #fff;
}
.home_bann_btm .dvd .box .arrow{
       font-size: 28px;
    color: #fff;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
     transition: 0.3s;
    z-index: 1;
}
.home_bann_btm .dvd .box .arrow:after{
       position: absolute;
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    left: -35px;
    transition: 0.3s;
    z-index: -1;
}
.home_bann_btm .dvd .box:hover .arrow:after{
    left: -10px;
    background-color: #fff;
}
.home_bann_btm .dvd .box:hover .arrow{
    color: var(--blue);
}
/*end home banner bottom*/ 
/*start quick link */
.quick_links .box{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 40px 30px 60px 30px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
}
.quick_links .box:after{
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #2B2F2E;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 10px;
     transition: 0.3s;
}

.quick_links .box h3{
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: #fff;
}
.quick_links .box p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}
.quick_links .box .arrow{
    width: 75px;
    height: 75px;
    position: absolute;
    bottom: -37px;
    left: 0;
    right: 0 ;
    margin: 0 auto;
    background-color: var(--blue);
    border-radius: 50%;
    outline: 10px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
     transition: 0.3s;
}
.quick_links .box:hover .arrow{
     background-color: var(--dark);
}
.quick_links .box:hover:after{
        background-color: #1067f3;
}
/*end quick link */
/*start about */
.about_home .img_part{
    position: relative;
    z-index: 1;
}
.about_home .img_part .dots{
    z-index: -1;
    position: absolute;
       right: 10%;
    top: 10%;
    animation: abt_dots 5s infinite;
}
    
@keyframes abt_dots{
    0%{
       transform: translate(0px, 0px);
    }
    50%{
          transform: translate(0px, -50px);
    }
    100%{
         transform: translate(0px, 0px);
    }
}

.about_home .img_part:after{
        position: absolute;
    content: '';
    display: block;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    background-color: var(--blue);
    z-index: -1;
}
.about_home .img_part .pop_call{
   position: absolute;
    bottom: 50px;
    left: 25px;
    animation: abt_call 5s infinite;
}
@keyframes abt_call{
    0%{
       transform: translate(0px, 0px);
    }
    50%{
          transform: translate(20px, -20px);
    }
    100%{
         transform: translate(0px, 0px);
    }
}
.about_home .con_part p {
        font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
    margin-bottom: 25px;
}
.about_home .con_part .high_text{
   padding: 18px 35px;
    background-color: rgba(16, 103, 243, .05);
    margin-bottom: 25px;
    border-radius: 5px;
    border-left: 3px solid var(--blue);
}
.about_home .con_part .high_text p {
    margin: 0;
    font-family: var(--primaryfnt);
    color: var(--blue);
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}

/*end about */
/*start featured service */
.fea_ser {
    overflow: hidden;
    background-color: var(--dark);
    position: relative;
    z-index: 1;
    margin-top: 130px;
    padding-bottom: 70px;
}
.fea_ser:after{
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/fea_bg.png);
    top: 0;
    left: 0;
    z-index: -2;
}
.fea_ser:before{
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 195px;
    background-color: #fff;
    z-index: -1;
    top: 0;
    left: 0;
    
}
.fea_ser .img_box{
    margin-right: -70%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 543px;
    display: flex;
    align-items: flex-end;
}
.fea_ser .img_box .cont{
          margin-left: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 15px 0px;
    position: relative;
    display: flex;
    border-radius: 70px;
    padding-right: 65px;
    padding-left: 140px;
    width: 345px;
}
.fea_ser .img_box .cont img{
    position: absolute;
    left: 32px;
    bottom: 0;
}
.fea_ser .img_box .cont p{
   font-size: 17px;
    line-height: 22px;
    font-family: var(--primaryfnt);
    color: var(--textlight);
    margin-bottom: 0;
    font-weight: 600;
}
.fea_ser .img_box .cont p b{
    color: var(--textdark);
}
.fea_ser .img_box .cont a{
        width: 90px;
    height: 90px;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    position: absolute;
    right: -35px;
    top: 4px;
}
.fea_ser .title_head p{
        font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
    margin-bottom: 25px;
    width: 100%;
    max-width: 500px;
}
.fea_ser .con{
    margin-top: 60px;
}
.fea_ser ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.fea_ser ul li a{
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    position: relative;
    font-family: var(--primaryfnt);
        padding: 18px 0px;
    border-bottom:1px solid rgba(255, 255, 255, 0.30);
    transition: 0.3s;
}
.fea_ser ul li a .num{
    width: 70px;
    height: 70px;
    background-color:rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: 0.3s;
}
.fea_ser ul li a i{
    font-size: 20px;
    position: absolute;
    right: 0;

}
.fea_ser ul li a:hover{
    border-bottom:1px solid var(--blue);
}
.fea_ser ul li a:hover .num{
    background-color:var(--blue);
    color: #fff;
}
/*end featured service */
/*start why us */
.why_us {
    overflow: hidden;
}
.why_us .con_part{
    padding-right: 50px;
}
.why_us .con_part p{
        font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
    margin-bottom: 25px;
}
.why_us .con_part h3{
    color: var(--textdark);
    font-size: 22px;
    line-height:32px;
        margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 600;
}
.why_us .con_part ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.why_us .con_part ul li {
      font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}
.why_us .con_part ul li:before{
    position: absolute;
    content: '\F26A';
    display: block;
    font-size: 20px;
    color: var(--blue);
    top: 0;
    left: 0;
        font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
}
.why_us .right_part {
    margin-right: -70%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    
}
.why_us .right_part:after{
        position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 130px;
    background-color: #fff;
    z-index: 1;
    top: 0;
    left: 0;
}
.why_us .right_part iframe{
    width: 100%;
    height: 100%;
    filter: grayscale();
}

.why_us .right_part .loc_box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 445px;
    background-color: var(--dark);
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
}
.why_us .right_part .loc_box h4{
    padding: 30px 40px;
    background-image: url(../img/location_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 35px;
    position: relative;
    z-index: 1;
}
.why_us .right_part .loc_box h4:after{
      position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: .7;
    top: 0;
    left: 0;
    z-index: -1;
}
.why_us .right_part .loc_box h4:before{
      position: absolute;
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background-color: var(--blue);
    bottom: -5px;
}
.why_us .right_part .loc_box ul{
       column-count: 2;
    list-style: none;
    padding: 30px 40px;
    margin-bottom: 0;
}
.why_us .right_part .loc_box ul li{
        font-size: 16px;
    line-height: 24px;
    color:#fff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}
.why_us .right_part .loc_box ul li:before{
          position: absolute;
    content: '\F140';
    display: block;
    font-size: 15px;
    color: #ffffff;
    top: 0;
    left: 0;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
}
/*end why us */
/*start benefits */
.benefits{
    background-image: url(../img/benefits_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
}
.benefits .box{
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 0px 0px #000;
    text-align: center;
        padding: 30px;
    margin-top: 60px;
}
.benefits .box .icon{
       width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: var(--blue);
    border-radius: 50%;
    outline: 5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-top: -68px;
}
.benefits .box h4{
       font-size: 28px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
    color: var(--textdark);
    margin-top: 15px;
}
.benefits .box p {
        font-size: 16px;
    line-height: 24px;
   color: var(--textlight);
    margin-bottom: 0
}
/*end benefits */
/*start local service */
.local_ser .img_box{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.local_ser .img_box .pop_call{
    position: absolute;
    top: 20px;
    left: 20px;
}
.local_ser .con_box{
    padding-bottom: 200px;
}
.abt_call_ac{
    background-color: var(--blue);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 50px 50px 0px;
    position: relative;
    z-index: 1;
    margin-top: -184px;
}
.abt_call_ac:after{
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left:-100%;
    z-index: -1;
     background-color: var(--blue);
}

.abt_call_ac h2{
       color: #fff;
    font-size: 48px;
    line-height: 55px;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 600;
}
.abt_call_ac p {
        font-size: 16px;
    line-height: 24px;
     color: #fff;
    margin-bottom: 0;
}
.abt_call_ac .btn_style a{
    border-color: rgba(255, 255, 255,.5);
    color: #fff;
}
.abt_call_ac .btn_style a i{
    color: var(--blue);
    background-color: #fff;
}
.abt_call_ac .btn_style a:hover{
    background-color: #fff;
    color: var(--textdark);
}
.abt_call_ac .btn_style a:hover i{
    color: #fff;
    background-color:var(--dark);
}
/*end local service */
/*start contact review */
.contact_review{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.contact_review:after{
    position: absolute;
    content: '';
    background-image:url(../img/world_map.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    width: 700px;
    height: 100%;
    left: 0;
    z-index: -1;
    top: 0;
}
.contact_review .form_box{
    padding: 40px;
    background-color: var(--dark);
    border-radius: 15px;
}
.contact_review .form_box h2{
       color: #fff;
    font-size: 48px;
    line-height: 55px;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
}
.contact_review .form_box h2:after{
       position: absolute;
    content: '';
    display: block;
    width: 120px;
    height: 6px;
    background-color: var(--blue);
    top: -40px;
    border-radius: 3px;
}
.contact_review .form_box p {
        font-size: 16px;
    line-height: 24px;
     color: #fff;
    margin-bottom: 0;
}
.contact_review .form_box form{
    margin-top: 25px;
}
.contact_review .form_box .form_group{
    margin-bottom: 15px;
}
.contact_review .form_box .form-control{
    color: #000;
    height: 60px;
    background-color: #fff;
    border: none;
    border-radius: 10px;
        font-family: "DM Sans", sans-serif;
}
.contact_review .form_box .note{
    font-size: 13px;
    line-height: 20px;
    color: #9E9E9E;
}
.contact_review .form_box .note a{
    color: #fff;
}
.contact_review .form_box textarea.form-control{
    height: 80px;
}
.contact_review .form_box .my_btn{
    font-family: var(--primaryfnt);
    color: #fff;
    background-color: var(--blue);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 60px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, .5);
    border-radius: 80px;
    position: relative;
    margin-top: 15px;
    transition: 0.3s;
}
.contact_review .form_box .my_btn:hover{
    background-color: #fff;
    color: var(--blue);
}
.contact_review .testi_part{
    background-color: var(--light);
    padding: 40px 60px;
    position: relative;
    z-index: 1;
}
.contact_review .testi_part:after{
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    right: -100%;
    background-color: var(--light);
    top: 0;
    z-index: -1;
}
.rvw_box{
    background-color: #fff;
    padding: 35px;
    border-radius: 15px;
    position: relative;
}
.rvw_box:after{
        position: absolute;
    width: 100px;
    height: 60px;
    background-color: #fff;
    content: '';
    bottom: -58px;
    left: 50px;
    clip-path: polygon(100% 0, 0 0, 0 100%);
}
.rvw_box .quote{
    position: absolute;
    width: 65px;
    height: 65px;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    right: 15px;
    top: 15px;
    color: #fff;
    border-radius: 10px;
    transform: rotate(180deg);
}
.rvw_box .stars{
    margin-bottom: 15px;
}
.rvw_box .stars i{
    color: #E7B400;
    font-size: 20px;
    margin-right: 5px;
}
.rvw_box h6{
    font-size: 24px;
    color: var(--textdark);
    margin-bottom: 15px;
    font-weight: 600;
}
.rvw_box p {
    font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
}
.rvw_by{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: var(--primaryfnt);
    font-weight: 600;
    margin-top: 15px;
    margin-left: 150px;
}
.rvw_by .user{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 7px solid var(--light);
    outline: 1px solid var(--blue);
    margin-right: 20px;
}
/*end contact review */
/*start footer */
footer .foot_top{
    background-color: #0C142C;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}
footer .foot_top:after{
    position: absolute;
    z-index: -1;
    background-image: url(../img/footer_build.png);
    background-size: contain;
    width: 100%;
    height: 100%;
    bottom: 0;
       background-position: 85% 0%;
    content: '';
    background-repeat: no-repeat;
    right: 50px;
}
footer .foot_top .text_part{
    display: flex;
    align-items: flex-start;
}
footer .foot_top .text_part div{
    flex: 1;
}
footer .foot_top .text_part img{
    width: 150px;
    margin-right: 25px;
}
footer .foot_top .text_part h2{
        color: #fff;
    font-size: 48px;
    line-height: 55px;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 600;
}
footer .foot_top .text_part .btn_style{
    margin-bottom: 0;
}
footer .foot_top .text_part .btn_style a {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}
footer .foot_bottom{
    background-color: #001D4A;
    padding-top: 30px;
}

footer .foot_bottom .box i {
    color: #888888;
    font-size: 35px;
   line-height: 35px;
    margin-right: 15px;
}
footer .foot_bottom .box {
    text-decoration: none;
    font-family: var(--primaryfnt);
      display: flex;
    padding: 10px 25px;
    align-items: center;
}
footer .foot_bottom .box span{
    font-size: 16px;
    color: #888888;
    font-weight:500;
    line-height: 24px;
}
footer .foot_bottom .box span b{
        font-size: 24px;
    font-weight: 600;
    color: #fff;
}
footer .foot_bottom .box.ad{
    border-left: 1px solid rgba(255, 255, 255, 0.20);
    border-right: 1px solid rgba(255, 255, 255, 0.20);
}
footer .foot_bottom .box.ad span{
    color: #fff;
}
footer .foot_bottom .box.time span b{
    font-size: 15px;
}
.foot_nav{
    padding-top: 30px;
    margin-top: 30px;
    padding-bottom: 30px;
    border-top:  1px solid rgba(255, 255, 255, 0.20);
}
.foot_nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.foot_nav ul li a{
        font-family: var(--primaryfnt);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0px 25px;
    text-decoration: none;
}
.foot_last{
    background-color: #0C142C;
    padding:15px 0px;
}
.foot_last img{
    width: 250px;
}
.foot_last p{
    margin: 0;
    font-size: 16px;
    color: #fff;
    text-align: center;
}
.foot_last .social{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}
.foot_last .social li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    margin-left: 15px;
}
/*end footer */
/*start inner pages*/
.service_banner{
   background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}
.service_banner:after{
    position: absolute;
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: var(--dark);
        top: 0;
        left: 0;
        z-index: -1;
    opacity: .7;
}
.service_banner .con_part .breadcrumb{
    color: #fff;
        font-family: "DM Sans", sans-serif;
    font-size: 16px;
}
.service_banner .con_part .breadcrumb a{
     color: #fff;
    text-decoration: none;
}
.service_banner .con_part h1{
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
font-size: 90px;
    line-height: 90px;
}
.service_banner .exp_box{
  max-width: 370px; 
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-left: auto;
}
.service_banner .exp_box .exp_head{
      background-image: url(../img/location_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 16px 40px;
    position: relative;
    z-index: 1;
    font-family: var(--primaryfnt);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service_banner .exp_box .exp_head:after{
        position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: .7;
    top: 0;
    left: 0;
    z-index: -1;
}
.service_banner .exp_box .exp_head .count{
    font-size: 90px;
    line-height: 90px;
    font-weight: 600;
    color: #fff;
    
}
.service_banner .exp_box .exp_head .exp{
       color: #fff;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    padding-left: 8px;
}
.service_banner .exp_box .exp_head .exp b{
    font-size: 35px;
    font-weight: 600;
}
.service_banner .book_appo{
    padding: 25px;
    text-align: center;
}
.service_banner .book_appo h4{
    color: var(--textdark);
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}
.service_banner .book_appo h4:after{
       position: absolute;
    content: '';
    display: block;
    width:60px;
    height: 2px;
    background-color: var(--blue);
    bottom: 0;
    left: 0;
    right: 0;
  margin: 0 auto;
}
.service_banner .book_appo p {
        font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
}
.service_banner .call_sec{
   background-color: var(--blue);
    max-width: 575px;
    border-top-right-radius: 10px;
    position: relative;
    z-index: 1;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 40px;
}
.service_banner .call_sec:after{
        position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: -100%;
    background-color: var(--blue);
    top: 0;
    z-index: -1;
}
.service_banner .call_sec a.call {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    text-transform: capitalize;
    font-family: var(--primaryfnt);
    font-weight: 300;
   
}

.service_banner .call_sec a.call i {
    font-size: 30px;
    margin-right: 10px;
}
.service_banner .call_sec a.call span {
    font-weight: 500;
    
    padding-left: 10px;
}
.about_home.inner_ser .img_part:after{
    display: none;
}
.inner_ser .ben_box{
    list-style: none;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(4,1fr);
    display: grid;
    grid-gap: 15px;
    margin-top: 40px;
}
.inner_ser .ben_box li{
    display: flex;
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 25px -5px #00000014;
}
.inner_ser .ben_box .icon{
    width: 55px;
    height: 55px;
    background-color: var(--blue);
    font-size: 25px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.inner_ser .ben_box .text{
    flex: 1;
    position: relative;
}
.inner_ser .ben_box .text:after{
    position: absolute;
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--blue);
    top: -20px;
    left: 0;
}
.inner_ser .ben_box .text h4{
    font-size: 20px;
    font-weight: 600;
    color: var(--textdark);
    line-height: 22px;
    margin-bottom: 10px;
}
.inner_ser .ben_box .text p{
    margin-bottom: 0;
    color: var(--textlight);
    font-size: 16px;
    line-height: 22px;
}
.sub_sevices{
    background-color: var(--dark);
    position: relative;
    z-index: 1;
   padding-top: 70px;
    padding-bottom: 180px;
}
.sub_sevices:after{
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/fea_bg.png);
    top: 0;
    left: 0;
    z-index: -1;
}
.sub_sevices .title_head{
    text-align: center;
}
.sub_sevices .title_head .sub_head{
    justify-content: center;
}
.sub_sevices .box{
    border-radius: 10px;
    height: 368px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    margin-top: 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.sub_sevices .box:after{
        position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: .5;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.3s;
     transform: translate(0px,100%);
}
.sub_sevices .box:hover:after{
    transform: translate(0px,0px);
}
.sub_sevices .title_head .head{
    color: #fff;
}
.sub_sevices .box .text_box{
    border-radius: 10px;
    background-color: #fff;
    margin: 0px 15px;
    margin-bottom: 15px;
    width: 100%;
    padding: 15px;
    position: relative;
}
.sub_sevices .box .text_box p{
    font-family: var(--primaryfnt);
    font-size: 18px;
    line-height: 22px;
    color: var(--textdark);
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0;
    
}
.sub_sevices .box .text_box .arrow{
   width: 35px;
    height: 35px;
    background-color: var(--blue);
    border-radius: 50%;
    outline: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    position: absolute;
    right: 15px;
    top: -15px;
    text-decoration: none;
    text-decoration: none;
}
.call_to_ac .abt_call_ac:after{
    display: none;
}
.call_to_ac .abt_call_ac{
    padding: 0;
       padding-left: 50px;
        margin-top: -125px;
    border-radius: 15px;
    overflow: hidden;
}
.call_to_ac .abt_call_ac .btn_style{
    margin-top: 15px;
}
.call_to_ac .abt_call_ac .img_box{
        height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-position: center;
}
.mid_call_us .left_part{
    padding-right: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.30);
    height: 100%;
}
.mid_call_us .left_part .logo{
    background-color: var(--blue);
    border-radius: 50%;
    width: 135px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}
.mid_call_us .left_part h3{
    font-size: 30px;
    line-height: 38px;
    color: var(--textlight);
    margin-bottom: 35px;
    text-transform: capitalize;
}
.mid_call_us .right_part ul{
      list-style: none;
    padding: 0;
}
.mid_call_us .right_part ul li {
    font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}
.mid_call_us .right_part ul li:before {
    position: absolute;
    content: '\F140';
    display: block;
    font-size: 20px;
    color: var(--blue);
    top: 0;
    left: 0;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
}
.inner_testi{
    background-image: url(../img/testi_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 180px;
}
.inner_testi .sub_head{
    justify-content: center;
}
.inner_testi .owl-nav {
    display: flex !important;
/*    position: absolute;*/
    justify-content: flex-end;
    height: 0;
    right: 0;
    bottom: 35px;
}
.inner_testi .owl-nav button {
    width: 42px;
    height: 42px;
    background-color:  var(--blue) !important;
    border-radius: 50%;
    color: #fff !important;
    text-align: center;
    font-size: 16px !important;
    margin-left: 10px;
    transition: 0.3s;
}
.inner_testi .owl-nav button:hover{
    background-color:  var(--dark) !important;
}
.con_dvd{
    margin-top: -90px;
    overflow: hidden;
}
.con_dvd .box{
    border-radius: 15px;
    padding: 35px;
    background-color: #fff;
}
.con_dvd .left_part{
    background-color: var(--dark);
}
.con_dvd .left_part .head, .con_dvd .left_part p {
    color: #fff;
}
.con_dvd .right_part{
    position: relative;
    z-index: 1;
}
.con_dvd .right_part:after{
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    right: -100%;
    background-color: #fff;
    top: 0;
    z-index: -1;
}
.con_dvd .contact_box{
   display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    margin-top: 30px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
.con_dvd .contact_box h4{
    font-weight: 500;
    font-size: 35px;
    text-transform: capitalize;
    margin-bottom: 0;
    flex: 1;
    margin-right: 25px;
}
.con_dvd .contact_box .call_contact{
       border: none;
    padding: 0;
    margin: 0;
    
}
.con_dvd .contact_box .call_contact .or{
   margin: 0px 25px; 
}
.ser_offer{
    background-image: url(../img/offer_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.ser_offer:after{
        position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: .8;
    top: 0;
    left: 0;
    z-index: -1;
}
.ser_offer .top_part{
       padding: 100px 70px;
    text-align: center;
    position: relative;
}
.ser_offer .top_part:after{
    position: absolute;
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: #fff;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 60px;
}
.ser_offer .top_part:before{
    position: absolute;
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: #fff;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 60px;
}
.ser_offer h4{
    font-size: 140px;
    font-weight: bold;
    line-height: 140px;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}
.ser_offer h5{
    font-size: 35px;
    line-height: 42px;
    margin-bottom: 25px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 400;
}
.ser_offer .para{
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 25px;
}
.ser_offer .valid{
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--primaryfnt);
    line-height: 42px;
    border: 2px dashed #fff;
    padding: 15px;
    border-radius: 10px;
    color: #fff;
}
.ser_offer .bottom_part{
    background-color: var(--dark);
    padding: 26px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.ser_offer .bottom_part a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--primaryfnt);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}
.ser_offer .bottom_part a:hover{
    color: var(--blue);
}
.ser_offer .bottom_part span{
    display: block;
    margin: 0px 15px;
}
.contact_review.inner_contact:after{
    display: none;
}
.other_pg_banner{
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 120px;
    position: relative;
    z-index: 1;
}
.other_pg_banner:after{
    position: absolute;
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: var(--dark);
        top: 0;
        left: 0;
        z-index: -1;
    opacity: .7;
}
.other_pg_banner .con_part{
    text-align: center;
}
.other_pg_banner .con_part h1 {
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 90px;
    line-height: 90px;
}
.other_pg_banner .breadcrumb{
     background-color: var(--blue);
    max-width: 575px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #fff;
    justify-content: center;
    padding: 15px;
    margin: 0 auto;
    margin-top: 110px;
}
.other_pg_banner .breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.sub_ser_main .side_con .more_ser{
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
}
.sub_ser_main .side_con .more_ser h4{
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--textdark);
}
.sub_ser_main .side_con .more_ser h4 span{
    color: var(--blue);
}
.sub_ser_main .side_con .more_ser ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.sub_ser_main .side_con .more_ser ul li a{
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--primaryfnt);
    background-color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--textdark);
    margin: 10px 0px;
    font-size: 18px;
    position: relative;
    transition:0.3s;
}
.sub_ser_main .side_con .more_ser ul li a:after{
    position: absolute;
    content: '\F140';
    display: block;
    font-size: 20px;
    color: var(--blue);
    right: 20px;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    transition:0.3s;
}
.sub_ser_main .side_con .more_ser ul li a:hover{
    color: #fff;
    background-color: var(--blue);
}
.sub_ser_main .side_con .more_ser ul li a:hover:after{
    color: #fff;
}
.sub_ser_main .side_con .offer_sec{
    background-color: var(--dark);
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}
.sub_ser_main .side_con .offer_sec .img_part{
    position: relative;
    overflow: hidden;
}
.sub_ser_main .side_con .offer_sec .img_part:after{
   position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100px;
    border-radius: 10px;
    background-color: var(--dark);
    bottom: -45px;
    left: 0;
    transform: skew(0deg, -8deg);
    z-index: 2;
}
.sub_ser_main .side_con .offer_sec .img_part:before{
 position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100px;
    border-radius: 10px;
    background-color: var(--blue);
    bottom: -29px;
    left: 0;
    transform: skew(0deg, -12deg);
    z-index: 1;
    opacity: .7;
}
.sub_ser_main .side_con .offer_sec .img_part img{
    width: 100%;
}
.sub_ser_main .side_con .offer_sec .text_part{
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
    text-align: center;
}
.sub_ser_main .side_con .offer_sec .text_part h4 {
       font-size: 70px;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 12px;
    color: #fff;
    text-transform: uppercase;
}
.sub_ser_main .side_con .offer_sec .text_part h5 {
      font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 400;
}
.sub_ser_main .side_con .offer_sec .text_part .para {
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 15px;
}
.sub_ser_main .side_con .offer_sec .text_part .valid {
       font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--primaryfnt);
    line-height: 20px;
    border: 1px dashed #fff;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
}
.sub_ser_main .side_con .offer_sec .text_part .links {
    padding: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.sub_ser_main .side_con .offer_sec .text_part .links a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--primaryfnt);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}
.sub_ser_main .side_con .offer_sec .text_part .links span {
    display: block;
    margin: 0px 12px;
}
.sub_ser_main .con_part p{
        font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
    margin-bottom: 20px;
}
.sub_ser_main .con_part h3 {
    font-size: 30px;
    line-height: 38px;
    color: var(--textlight);
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 500;
}
.sub_ser_main .con_part .dvd{
    display: flex;
    margin-bottom: 20px;
}
.sub_ser_main .con_part .dvd .img_box{
    width: 335px;
    margin-right: 25px;
}
.sub_ser_main .con_part .dvd .text{
    flex: 1;
}
.sub_ser_main .con_part .why_wait{
    border-radius: 15px;
    background-color: var(--blue);
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sub_ser_main .con_part .why_wait .title_head{
    margin-right: 50px;
    flex: 1;
}
.sub_ser_main .con_part .why_wait .title_head .head {
    color: #fff;
}
.sub_ser_main .con_part .why_wait p{
      color: #fff;
}
.sub_ser_main .con_part .why_wait .call {
    display: flex;
    align-items: center;
    text-decoration: none;
    
}
.sub_ser_main .con_part .why_wait .call i {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--blue);
    margin-right: 15px;
}
.sub_ser_main .con_part .why_wait .call span {
    font-size: 16px;
    color: #fff;
    font-family: var(--primaryfnt);
    line-height: 24px;
}
.sub_ser_main .con_part .why_wait .call span b {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}
.why_us.sub_ser h3{
        font-size: 30px;
    line-height: 38px;
    color: var(--textlight);
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 500;
}
.why_us.sub_ser ol{
    list-style: none;
    padding: 0;
    margin: 0;
}
.why_us.sub_ser ol li{
    display: flex;
    margin: 15px 0px;
}
.why_us.sub_ser ol li .icon{
   width: 55px;
    height: 55px;
    background-color: #fff;
    font-size: 25px;
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: 1px solid var(--blue);
}
.why_us.sub_ser ol li .text{
    flex: 1;
}
.why_us.sub_ser ol li .text h4{
        font-size: 20px;
    font-weight: 600;
    color: var(--textdark);
    line-height: 22px;
    margin-bottom: 5px;
}
.why_us.sub_ser ol li .text p{
    margin-bottom: 0;
    color: var(--textlight);
    font-size: 16px;
    line-height: 22px;
}
.blog_sec .box .img_box{
   border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.blog_sec .box .img_box .date{
   position: absolute;
    left: 10px;
    top: 10px;
    background-color: var(--blue);
    font-family: var(--primaryfnt);
    text-align: center;
    border-radius: 5px;
}
.blog_sec .box .img_box .date .num{
       font-size: 40px;
    font-weight: bold;
    color: #fff;
    line-height: 40px;
    display: block;
    padding: 6px 14px;
}
.blog_sec .box .img_box .date .month{
     font-size: 16px;
    font-weight: normal;
    color: #fff;
    line-height: 16px;
    background-color: var(--dark);
    border-radius: 5px;
    display:block;
    padding: 5px 0px;
}
.blog_sec .box .text_box h4{
    margin-bottom: 0;
}
.blog_sec .box .text_box h4 a{
    display: block;
    padding-bottom: 12px;
    padding-top: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.5);
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: none;
    color: var(--textdark);
    transition: 0.3s;
}
.blog_sec .box .text_box h4 a:hover{
    color: var(--blue);
}
.blog_sec .box .text_box p {
    font-size: 16px;
    line-height: 24px;
    color: var(--textlight);
    margin-bottom: 15px;
}
.blog_sec .box .text_box .my_btn a{
     text-decoration: none;
    color: var(--textdark);
    font-weight: 600;
    font-family: var(--primaryfnt);
    font-size: 18px;
    text-transform: capitalize;
     transition: 0.3s;
}
.blog_sec .box .text_box .my_btn a i {
     padding-left: 3px;
    font-size: 15px;
}
.blog_sec .box .text_box .my_btn a:hover{
    color: var(--blue);
}
.con_dvd.sub_ser .left_part{
    padding: 0;
    overflow: hidden;
}
.con_dvd.sub_ser .left_part .img_box{
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.con_dvd.sub_ser .left_part .title_head{
    padding: 30px 50px;
}
.con_dvd.sub_ser .left_part  .btn_style{
    margin-bottom: 10px;
}
.con_dvd.sub_ser .left_part  .btn_style a {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}
.con_dvd.sub_ser .left_part  .btn_style a i {
    color: var(--blue);
    background-color: #fff;
}
.con_dvd.sub_ser .left_part  .btn_style a:hover {
    background-color: #fff;
    color: var(--textdark);
}
.con_dvd.sub_ser .left_part  .btn_style a:hover i {
    color: #fff;
    background-color: var(--blue);
}
.contact_pg_con .grid_dvd{
    grid-template-columns: repeat(3,1fr);
    display: grid;
    grid-gap: 15px;
}
.contact_pg_con .box{
    text-align: center;
    padding: 15px;
    border-radius: 15px;
        box-shadow: 0px 0px 30px 0px rgb(25 47 87 / 5%);
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    display: block;
    background-color: #fff;
    
}
.contact_pg_con .box .head{
       text-transform: capitalize;
    margin-bottom: 5px;
    color: var(--dark);
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.contact_pg_con .box .para{
        color: var(--blue);
    margin-bottom: 0;
        font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family:var(--primaryfnt);
}
.contact_pg_con .box i{
         width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 22px;
    border-radius: 50%;
    color: #ffffff;
    background-color: #6C4CF3;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 15px 20px 0px #ede9fe;
    margin-bottom: 8px;
}
.appo_offer{
     grid-template-columns: repeat(2,1fr);
    display: grid;
    grid-gap: 15px;
    
}
.appo_offer .quick_box{
    background-color: var(--dark);
    padding: 20px;
    border-radius: 10px;
    border-top: 5px solid var(--blue);
}
.appo_offer .quick_box i.ico{
    color: #fff;
    font-size: 40px;
}
.appo_offer .quick_box h4{
        font-size: 25px;
    font-weight: 600;
    color: #fff;
    line-height: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.appo_offer .quick_box p {
        font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 15px;
}
.appo_offer .quick_box .btn_style a {
    background-color: var(--blue);
    color: #fff;
}
.appo_offer .quick_box .btn_style a i {
    background-color: #fff;
    border: 1px solid var(--blue);
    color: var(--blue);
}
.inner_ser .img_part{
    border-radius: 10px;
}
.benefits.abt_pg {
    padding-bottom: 180px;
}
.testi_pg{
    background-image: none;
    padding-bottom: 0;
}
.testi_pg .rvw_by{
     margin-bottom: 30px;
}
.testi_pg .rvw_box{
   
    background-color: var(--light);
}
.rvw_box:after{
     background-color: var(--light);
}
/*end inner pages*/