@charset "utf-8";

@font-face {
    font-family: 'Basis Grotesque Arabic Pro';
    src: url('../fonts/BasisGrotesqueArabicPro-Bold.eot');
    src: local('Basis Grotesque Arabic Pro Bold'), local('BasisGrotesqueArabicPro-Bold'),
        url('../fonts/BasisGrotesqueArabicPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BasisGrotesqueArabicPro-Bold.woff2') format('woff2'),
        url('../fonts/BasisGrotesqueArabicPro-Bold.woff') format('woff'),
        url('../fonts/BasisGrotesqueArabicPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Basis Grotesque Arabic Pro Lt';
    src: url('../fonts/BasisGrotesqueArabicPro-Light.eot');
    src: local('Basis Grotesque Arabic Pro Light'), local('BasisGrotesqueArabicPro-Light'),
        url('../fonts/BasisGrotesqueArabicPro-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BasisGrotesqueArabicPro-Light.woff2') format('woff2'),
        url('../fonts/BasisGrotesqueArabicPro-Light.woff') format('woff'),
        url('../fonts/BasisGrotesqueArabicPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Basis Grotesque Arabic Pro';
    src: url('../fonts/BasisGrotesqueArabicPro-Regular.eot');
    src: local('Basis Grotesque Arabic Pro Regular'), local('BasisGrotesqueArabicPro-Regular'),
        url('../fonts/BasisGrotesqueArabicPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BasisGrotesqueArabicPro-Regular.woff2') format('woff2'),
        url('../fonts/BasisGrotesqueArabicPro-Regular.woff') format('woff'),
        url('../fonts/BasisGrotesqueArabicPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Basis Grotesque Arabic Pro Blk';
    src: url('../fonts/BasisGrotesqueArabicPro-Black.eot');
    src: local('Basis Grotesque Arabic Pro Black'), local('BasisGrotesqueArabicPro-Black'),
        url('../fonts/BasisGrotesqueArabicPro-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BasisGrotesqueArabicPro-Black.woff2') format('woff2'),
        url('../fonts/BasisGrotesqueArabicPro-Black.woff') format('woff'),
        url('../fonts/BasisGrotesqueArabicPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Basis Grotesque Arabic Pro Md';
    src: url('../fonts/BasisGrotesqueArabicPro-Medium.eot');
    src: local('Basis Grotesque Arabic Pro Medium'), local('BasisGrotesqueArabicPro-Medium'),
        url('../fonts/BasisGrotesqueArabicPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BasisGrotesqueArabicPro-Medium.woff2') format('woff2'),
        url('../fonts/BasisGrotesqueArabicPro-Medium.woff') format('woff'),
        url('../fonts/BasisGrotesqueArabicPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}


/*=========== POWERED BY MERIDIAN SOLUTIONS INC ============*/


/*************** DEFAULT CSS ***************/
:root {
    --body-font:  'Basis Grotesque Arabic Pro Md';
    --body-font-Size: 14px;
    --body-color: #000000;
    --primary-color: #2a1d51;
    --secondary-color: #2a1d51;
    --black: #000;
    --white: #fff;
    --grey: (#ccc);
    --heading-font: 'Basis Grotesque Arabic Pro Md';  
    --light-font:  'Basis Grotesque Arabic Pro Lt'; 
    
}
body{
    
    font-family: var(--body-font);
    font-size:var(--body-font-Size);
    font-style: normal;
    line-height: normal;
    font-weight:400;
    color: var(--body-color);
    text-decoration: none;
    margin:0px;
    -webkit-font-smoothing: antialiased;
    padding:0 !important;
    
}

html{ scroll-behavior: smooth;}
* {
    -webkit-box-sizing: border-box;
    -mox-box-sizing: border-box;
    box-sizing: border-box;
}
::selection {
    background: var(--primary-color); /* Safari */
    color:#fff;
        }
::-moz-selection {
    background: var(--primary-color); /* Firefox */
    color:#fff;
}

a {
    color:var(--primary-color);
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    }
    a:hover {
    color: #564195;
    }

p {
    margin:0px 0 30px 0;
    clear:left;
    padding:0;
    /* font-weight: normal; */
    line-height: 23px
    }
h1, h2, h3, h4, h5, h6 {
    margin:0 0 20px 0;
    padding:0;
    font-weight:normal;
    }
    h2{
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 10px
    }
  
hr {
    margin:50px  0 50px 0;
    height: 3px;
    border:0;
    border-top:1px solid #ccc;
    position:relative;
}
hr:after{
    content: '';
    width: 120px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

img{
    border:0;
     -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    
}   
a img {
    border: 0;
    }

/*-----------text styles------------*/
.text-white{
    color:var(--white)!important;
}
.text-black{
    color: #000  !important;
}
.text-primary{
    color: var(--primary-color) !important;
} 
.text-secondary{
    color: var(--secondary-color) !important;
} 
.text-center{ text-align: center; }
.text-right{ text-align: right; }
.text-justify{ text-align: justify; }
.uppercase{text-transform: uppercase;}
/*-----------background styles------------*/
.bg-primary{background-color: var(--primary-color)}
.bg-secondary{background-color: var(--secondary-color)}
.bg-grey{background-color: #f1f1f1}
/*************** PRELOADER ***************/
#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; /* change if the mask should have another color then white */
    z-index:999999; /* makes sure it stays on top */
}
#status {
    width:100%;
    height:100%;
    position:absolute;
    left:0; /* centers the loading animation horizontally one the screen */
    top:0; /* centers the loading animation vertically one the screen */
    background-image:url(../images/loading.png); /* path to your loading animation */
    background-repeat:no-repeat;
    background-position:center;
    margin:0; /* is width and height divided by two */
}
#status{

    }
/*************** BACK TO TOP ***************/

/*************** COLUMS AND ROWS ***************/
main{
    position:relative;
    }
.row{
    width:100%;
    display:block;
    padding:0;
}
.row-flex{
 width:100%; 
    margin: 0;
    padding: 0;
    display: block;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
}
.justify-center{justify-content: center;}
.align-center{align-items: center;}
.space-between{justify-content: space-between;}

.container{
    width:1320px;
    margin:0 auto;
}
.fullwidth{
    width:100%;
    display:block;
}
.two-col{
    width: 46%;
    margin-right: 8%;
}
.three-col{
    width:30%;
    margin-right:5%;
}
.four-col{
    width:22%;
    margin-right:4%;
}
.last{
    margin-right:0 !important;
}


section , footer {
    width: 100%;
    position: relative;
}


.smd1{
    width:100%
}
.smd2{
    width:50%
}
.smd3{
    width:33.33333333333333%
}
.smd4{
    width:25%
}
.smd5{
    width:20%
}
.smd6{
    width:16.66666666666667%
}
.smd40{
    width:40%
}
.smd60{
    width:60%
}
.smd30{
    width:30%
}
.smd70{
    width:70%
}
.smd75{
    width:75%
}
.smd66{width: 66.66666666%;}


.pd-5{ padding:5px; }
.pd-10{padding:10px;}

/*************** HOME PAGE CSS ***************/
header{  
width: 100%; 
top:-100px;
z-index: 2;
 -webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
 }
.header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}
.logo{ 
 }
.logo img{ max-width: 200px; }
.header-right{
display: flex;
align-items: center;
gap:15px;
position: relative;
}


.social {
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height:25px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.social a i{
    /* margin-right: 7px; */
    font-size: 17px;
    color: var(--primary-color);
    }
    .social a:hover i{
    color: #2e4187;
    }
.topbar{
    display: flex;
    justify-content: flex-end;
}
.inline {
    display: flex;
    padding: 4px 8px;
    gap:10px;
    align-items: center;
    margin-bottom: 15px;
}
.inline div{
    border-left: 1px solid var(--primary-color);
    padding-left: 10px;
    }
    .inline div span{
        font-size: 12px;
        color: #565656;
        display: block;
    margin-bottom: 4px;
    }
        .inline div a{
        font-size: 14px;
        color: var(--primary-color);
    }

.calc-link{
    display: inline-block;
    padding: 25px 26px 25px 65px;
    background: url(../images/icons/calc-icon.png) no-repeat 23px center var(--primary-color);
    border-radius: 10px;
    border-bottom-left-radius: 37px;
    color: var(--white);
    width: auto;
    /* height: 92px; */
    font-size: 14px;
}
.calc-link:hover{
     border-top-right-radius: 37px;
    background-color: var(--secondary-color);
       color: var(--white);
    }
.number{
    position: relative;
    font-size: 16px;
    color: #4b5469;
}
.number i{
    position: absolute;
    top:0;
    width:30px;
    height: 30px;
    background: #edb523;
    border-radius: 100%;
}

.menu-wrap{
     display: inline-block;
}
.menu {
    position: relative;
    z-index: 100;
    margin-top: 8px;
}

.sch-btn {
    
display: inline-flex;
    
align-items: center;
    
justify-content: center;
    
background-color:transparent;
    
width: 40px;
    
height: 40px;
    
color: #fff;
    
font-size: 13px;
    
font-weight: 100;
    
padding: 7px;
    
position: relative;
    
/*z-index: 100;*/
    
border-radius: 100%;
    
line-height: 25px;
    
text-align: center;
    
background-color:#fff;
}
.sch-btn:hover {
    background-color:#ccc;
    }

.start-btn{
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 25px;
    padding:12px  25px;
}
.start-btn:hover{
     background-color: #57468d;
     color: var(--white)
    }
.slider-wrap {
    position: relative;
}
.slider-wrap .container{
    position: relative;
}
.home-bnr{
    padding-left: 30% !important;
}
.slidermaindiv {
    position: relative;
    padding-left: 15%;
    width: 100%;
}
.top-left-box{
    width: 20%;
 /*   background-color: #fff;*/
    padding: 10px;
    position: absolute;
    z-index: 1;
    padding: 70px 40px 70px 0;
}
.top-left-box-in{
    padding: 24px 30px 15px 0;
}
.link{}

.link a{
   color: #0f0f0f;
    background: #d7ae6c;
    font-size: 20px;
    line-height: normal;
    padding: 0 23px 0 23px;
    height: 44px;
    line-height: 42px;
    font-style: normal;
    font-weight: 600;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    margin: 10px 0;
}
.link2 a{
    font-size: 16px;
    margin-top: 15px;
    }
/*.link a:after{
 font-family: 'Font Awesome 5 Free';
    content: "\f067";
    color:#fff;
    width:48px;
    height:48px;
    position:absolute;
    top:0;
    right:-15px;
    background-repeat: no-repeat;
    background-position: center center;
}*/


.link a:hover{
    background-color:#702337;
    color:#FFF;
    }

.heading-div{
    margin-bottom: 30px;
  
}
.leftline{
     position: relative;
    padding-left: 30px; 
}
.leftline:after, .leftline:before{
    content: '';
    width: 1px;
    height: 77px;
    background-color: #b9cde3;
    position: absolute;
    top:0;
    left:0;
    }
    .leftline:after{
        background-color: var(--secondary-color);
        height: 30px;
        width: 2px;
         -moz-animation: slideTopDown2 3s infinite alternate;
  -ms-animation: slideTopDown2 3s infinite alternate;
  -o-animation: slideTopDown2 3s infinite alternate;
  animation: slideTopDown2 3s infinite alternate;
    }
.subtitle{
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
     color: var(--primary-color);
}
.heading{
    font-size: 44px;
    line-height: 47px;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.heading span{
    font-weight: 700;
}

.highlight-text{
    font-size: 24px;
    line-height: 30px;
    color: var(--black)
}
.spaces-wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:16px;
}
.spaces-wrap-col{
     display:inline-flex;
     flex-wrap: wrap;
      gap:16px;
      flex-direction: column;

}
.space-box{
position: relative;
overflow: hidden;
}
.p-form {
    color: #efefef;
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 20px;
}
.space-box-cont{position: absolute;top:0;left:0;width: 100%;height: 100%;
    padding: 60px 40px;background: transparent;
      -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.space-box:hover .space-box-cont{
background-color:rgba(37, 23, 80, 0.9);
}
.space-box-cont:hover a .s-title .number {
    color: #ffffff;
    border-bottom: 1px solid #fff;
}

.space-box-cont:hover a .s-title h3 {
    color: #fff;
}
.space-box-cont:hover a p {
    color: #fff;
}
.yellow-bg{
    background-color: #feffb3;
}
.pink-bg{
    background-color: #ffddf6;
}
.peach-bg{
    background-color: #ffceb7;
}
.green-bg{
    background-color: #c8e19d;
}
.purple-bg{
    background-color: #c9c4da;
}
.space-box-cont p{
     color: var(--body-color);
     font-weight: 500;
     margin-bottom: 0;
     line-height: 27px;
     font-size: 16px;
    }

.s-title{
    display: inline-flex;
    margin-bottom: 25px;
    gap:25px;
    padding-left: 0;
    align-items: center;
}
.s-title .number{
  font-style: italic;
  color: var(--primary-color);
  font-size: 36px;
  line-height: 36px;
  font-weight: 500;
  /* position: absolute; */
  /* top: 0; */
  left: 0;
  /*   transform-origin: 100% 0%;*/
  transform: rotate(-90deg);
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 6px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.space-box:hover .number{
     transform: rotate(0deg);
    }
.s-title h3{
    font-size: 18px;
    line-height: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0;
    }



    .head-cap{
        font-size: 40px;
        color: var(--primary-color);
        line-height: 42px;
    }
    .rate-box-wrap{
        display: block;
        width: 100%;
        background-color: #ededef;
        padding: 20px;
        margin-bottom: 30px;
    }
    .rate-box-wrap h5{
        font-size: 15px;
        color: #4c4c4c;
    }
    .rate-box-wrap ul{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0px;
        padding: 0;
    }
    .rate-box-wrap ul li{
        list-style: none;
    }
.rate-box-wrap ul .rat-head1{
        font-size: 18px;
    }
    .rate-box-wrap ul .rat-head2{
        font-weight: bold;
        font-size: 20px;
    }
.rate-box-wrap ul .rat-head2 span{
    font-weight: normal;
    display: block;
    font-size: 13px;
    line-height: 22px;
}


.country-code.icon-style {
    appearance: none;
    -webkit-appearance: none;
    padding-left: 25px;
    background-image: url(../images/icons/call-icn.png);
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: left center;
}


.main-msg {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #2517500a;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 0px 9px rgba(0,0,0,0.15);
    margin: 10px;
}
.slidermaindiv .click-here {
    cursor: pointer;
    background-color: #5c5082;
    color: var(--white);
    height: 60px;
    padding: 22px 40px;
    border-radius: 30px;
}
.slidermaindiv .click-here:hover {
    background-color: #4f3a8f;
    color: #fff;
}
.calc-blue-box .heading2 span {
    font-weight: unset;
}
.our-packages-sec .heading {
    font-weight: 700 !important;
    font-style: italic;
}
.package-single:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.package-single:hover .package-in .ckeck-list li:before{
    color: var(--white);
}

.package-single:hover .package-in .price {
    color: var(--white);
}

.package-single:hover .package-in .small-btn {
    background-color: var(--white);
    color:  var(--primary-color);
}
.package-single .package-in .small-btn:hover {
    background-color: #57468d;
}
.package-single:hover .offer{
    background-color: var(--white);
    color: var(--primary-color);
}
.main-msg {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    background-color: #f3efff;
    border-radius: 50px;
}
.banner1:hover .banner-caption h2{
    color: var(--primary-color);
}

.banner1:hover .banner-caption h4 a{
    color: var(--primary-color);
}

.banner1:hover .banner-caption h4 span.b-sep{
    background: var(--primary-color);
}
.banner1:hover .banner-caption h4 span{
    color: #4c3398;
}

.footer-only{
    display: none;
}

.footer-only .pad-ft-last a {
    color: #fff;
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}
.footer-only .footer-social {
    justify-content: center;
    margin-top: 20px;
}
.footer-only .acc-pad p {
    font-weight: 100;
    margin-bottom: 10px;
}

ul.faq-list {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}
ul.faq-list li {
    text-align: left;
    list-style: none;
    padding: 2px 7px 2px 25px !important;
    line-height: normal;
    position: relative;
}
ul.faq-list li:before {
    content: "\f111";
    position: absolute;
    top: 7px !important;
    left: 4px !important;
    font-family: "FontAwesome";
    color: #ffffff !important;
    font-size: 8px;
}












.office-sec ul.list li {
    padding: 2px 7px 20px 20px !important;
    font-size: 18px !important;
    color: var(--primary-color);
}
.office-sec ul.list li:before {
    top: 9px !important;
}
.office-sec .office-btn {
    padding: 25px 17px !important;
    font-size: 15px !important;
}


.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
    width: 750px;
    margin: 30px auto;
    max-width: 97%;
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
    overflow-y: auto;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
    overflow: hidden;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
    position: absolute;
    right: 12px;
    top: -2px;
    cursor: pointer;
    z-index: 99;
    font-size: 43px;
    color: #fff;
}

@media screen and (min-width:800px){
    .custom-model-main:before {
      content: "";
      display: inline-block;
      height: auto;
      vertical-align: middle;
      margin-right: -0px;
      height: 100%;
    }
}
@media screen and (max-width:799px){
  .custom-model-inner{margin-top: 45px;}
}


















.cnsultng-sec {
    padding: 0 0 50px 0 !important;
}
.formbox-smd4 {
    width: 37%;
}
.form-smd75{
     width:61%;
     margin-left: 2%;
     }

.steps-wrap-col{

}
.steps-box{

}
.steps-box .space-box-cont{
    background-color: #eeedf0;
    color: var(--black)
}
.steps-box:hover .space-box-cont{
    background-color: rgba(37, 23, 80, 0.9);
    color: var(--black)
}
.steps-box  .space-box-cont p, .steps-box  .space-box-cont h3, .steps-box  .space-box-cont .number{
     color: var(--black);
 }
 .steps-box:hover  .space-box-cont p, .steps-box:hover  .space-box-cont h3, .steps-box:hover  .space-box-cont .number{
     color: var(--white);
 }
 .steps-box  .space-box-cont .number{
    border-color: #000
 }
  .steps-box:hover  .space-box-cont .number{
    border-color: #fff
 }
.curve-box{
    border-radius: 15px;
}
.bottom-left-curve{
border-bottom-left-radius: 100px;
}
.bottom-right-curve{
border-bottom-right-radius: 100px;
}
.top-left-curve{
border-top-left-radius: 100px;
}
.top-right-curve{
   border-top-right-radius: 100px; 
}
.dubai-wrap{
    padding: 100px 70px 50px 70px;
    color: var(--white);
}

.services-wrap-row{
    gap:1%;
}
.service-box{
    flex:0  0 48%;
    padding: 25px 35px;
}
.service-box a{
    color: var(--white)
    }
.service-box h3{
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: 'Basis Grotesque Arabic Pro Blk';
}
.service-box .icon{
    display: inline-flex;
    width: 82px;
    height: 82px;
    align-items: center;
    justify-content: center;
    border:1px solid var(--white);
    border-radius: 16px;
    margin-bottom: 22px;
     -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    }
    .service-box:hover .icon{
        border-radius: 50px;
        background-color: var(--secondary-color);
           -webkit-animation: slideTopDown 1s infinite alternate;
  -moz-animation: slideTopDown 1s infinite alternate;
  -ms-animation: slideTopDown 1s infinite alternate;
  -o-animation: slideTopDown 1s infinite alternate;
  animation: slideTopDown 1s infinite alternate;
    }


.calc-blue-box{
    background-color: var(--secondary-color);
   padding: 50px 0;
   color: var(--white)
}
.heading2{
   font-family: 'IBM Plex Sans', sans-serif;
   font-size: 44px;
   line-height: 46px;
   margin-bottom: 30px;
   font-weight: 400;
}
.heading2 span{
     font-weight: 700;
}
.italic{
    font-style: italic;
}

.choose-wrap-row{
    justify-content: space-around;
}
.choose-box{
    flex:0  0 30%;
    overflow: hidden;
    position: relative;
      transition: transform 0.6s;
  transform-style: preserve-3d;
}
.choose-cont{
    padding: 100px 30px 30px 30px;
    position: absolute;
    top:0;
    bottom:0;
    width: 100%;
    left:0;
    z-index: 1;
     -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.choose-cont-in{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;justify-content: center;


}
h3.price{
font-size: 46px;
line-height: 50px;
}
.choose-box:hover .choose-cont-in {
      transform: rotateY(180deg);
}
.choose-cont-in *{
       -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
 .detail{
  /*  height: 0;*/
/*    opacity: 0;
    overflow: hidden;
    display: none;*/
     -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    }
 .detail{
/*height: calc(100% - 50px);*/
     opacity: 1;
     display: block;

    }
.choose-box:hover .choose-cont{
    background-color: var(--primary-color)
}
.choose-box:hover{
transform: rotateY(180deg);
    }
h3{
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 25px;
     font-family: 'Basis Grotesque Arabic Pro Blk';
}

.box-item ul.list{
    margin:0;
    padding: 0;
    margin-bottom: 30px;
}

.box-item ul.list li{
    text-align: left;
list-style: none;
font-size: 16px;
    padding: 5px 7px 5px 20px;
    line-height: normal;
    position: relative;
    font-family: var(--fo)
}
.box-item li:before{
     content: "\f111"; 
    position: absolute;
    top:17px;
    left:0;
     font-family: "FontAwesome";
     color: var(--primary-color);
     font-size: 8px;

    }
/*------------------------------flipcard animation------------*/

/*-------------------flipcard animation----------------*/
.box-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 35px 15px;
  width: 100%;
}

@media screen and (min-width:1024px) {
  .box-container {
    flex-direction: row
  }
}

.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 375px;
  margin-bottom: 35px;
  max-width: 100%;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 527px;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 15px;
      border-top-left-radius: 100px;

}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 40px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  
  transform: translateY(-50%) translateZ(60px) scale(.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
  top: 50%;
}

.flip-box-header {
  /* font-size: 34px; */
  color: var(--white);
}

.flip-box p {
  font-size: 20px;
  line-height: 1.5em;
  color: #fff;
}

.flip-box-img {
  margin-top: 25px;
}

.flip-box-button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  padding: 15px 20px;
  text-transform: uppercase;
}
.choosebg1{
    background-image: url('../images/choosebg1.jpg');
}
.choosebg2{
    background-image: url('../images/choosebg2.jpg');
}
.choosebg3{
    background-image: url('../images/choosebg3.jpg');
}
/*---------------------/new---------------*/
.small-btn{
    display: inline-block;
    padding: 12px 35px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
}
.small-btn:hover{
     background-color: #57468d;
      color: var(--white) !important;
/*          -webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.91);
    -moz-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.91);
    box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.91);
    -moz-box-shadow: 0px 4px 20px #00000059;*/
    }
.small-btn-white{
    color: var(--primary-color);
    background-color: var(--white);
      font-size: 14px;
    line-height: 14px;
    text-transform: capitalize;
}

.agency-logo{
    background-color: var(--white);
    padding: 20px 10px;
    margin: 20px 5px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
-webkit-box-shadow: 3px 3px 15px -3px rgba(0,0,0,0.25);
-moz-box-shadow: 3px 3px 15px -3px rgba(0,0,0,0.25);
box-shadow: 3px 3px 15px -3px rgba(0,0,0,0.25);
}
.agency-logo:hover{
    -webkit-box-shadow: 3px 3px 15px -3px rgba(0,0,0,0.45);
-moz-box-shadow: 3px 3px 15px -3px rgba(0,0,0,0.45);
box-shadow: 3px 3px 15px -3px rgba(0,0,0,0.45);
    }
.agency-logo img{
    max-width: 100%
    }


.splitbg{
    width: 67%;
    height: 100%;
    position: absolute;
    top:0;
    right:0;
    background:url(../images/splitbg.jpg) no-repeat top left;
    background-size: cover;
    z-index: -1;
    border-bottom-left-radius: 15px;
}
.splitbg2{
    width: 67%;
    height: 100%;
    position: absolute;
    top:0;
    right:0;
    background:url(../images/splitbg2.png) no-repeat top right;
    background-size: 75%;
    z-index: 1;
    border-bottom-left-radius: 15px;
    text-align: right;
}
.splitbg3{
    width: 60%;
    height: 100%;
    position: absolute;
    top:0;
    right:0;
    background:url(../images/bg2.jpg) repeat-x bottom right var(--primary-color);
    z-index: -1;
    border-bottom-left-radius: 15px;
    text-align: right;
}
.splitbg2 img{
    max-width: 100%
    }
.splitbg2 .img1, .splitbg2 .img2, .splitbg2 .img3{
    position: absolute;
    top:0;
    left:0;
    }
.splitbg2 .img2{
    left:2%;
    top:120px; 
}
.splitbg2 .img3{
    left:25%;
    top:150px; 
}
.package-single{
    background-color: var(--white);
    position: relative;
    padding: 80px 40px 50px 55px; 
    overflow: hidden;
    color: var(--primary-color);
    transition: all .3s ease;
}
.package-single h3{
    font-weight: bold;
    }
    .package-single p{
    font-size: 18px;
    line-height: 22px;
    }
.package-single .offer{
    display: inline-block;
    position: absolute;
    top:0;
    right: 0;
    padding: 16px  30px 16px  43px;
    border-bottom-left-radius: 300px;
    border-top-right-radius: 35px;
    color: var(--white);
    background-color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 14px;
}
.price{
    display: inline-block;
    border-radius: 10px;
    /* background-color: var(--primary-color); */
    color: var(--primary-color);
    font-size: 34px;
    line-height: 34px;
    font-weight: 700;
    padding: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.price i{
    font-size: 16px;
    font-style: normal;
}

.ckeck-list{
    padding: 0;
    margin:0;
    margin-bottom: 15px;
}
.ckeck-list li{
    padding: 0;
    margin:0;
    list-style: none;
    font-size: 16px;
    line-height: 18px;
    padding: 7px 7px 7px 27px;
    position: relative;
}
.ckeck-list li:before{
content: "\f00c";
    position: absolute;
    top: 10px;
    left: 0;
    font-family: "FontAwesome";
    color: var(--secondary-color);
    font-size: 18px;
     -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--secondary-color);


    }

.counter-row{
    padding: 30px 0;
}


.client-logos{
    margin:0;
    padding:0;
    display: flex;
    flex-wrap: wrap;
gap:2.5%;
}
.client-logos li{
    margin:0;
    padding:0;
    flex:0 0 23%;
    list-style: none;
    padding:12px 12px;
    background-color: var(--white);
    border-radius: 15px;
    margin-bottom: 2.5%;
    text-align: center;
    border:1px solid #ccc;
    border-radius: 15px;
}
.client-logos li img{
    max-width: 100%;
     -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.client-logos li:hover img{
transform: scale(0.9);
filter: grayscale(1);
}
/*--------------------------*/

.counter-wrap{
    color: #fff;
    padding: 0;
}
.data-progress {
    padding: 0px;
    margin: 0;
    margin-left: 0px;
    display: flex;
    align-items: center;
}

.data-progress li {
    list-style: none;
    width: 25%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 0;
    text-align: center;
    padding: 5px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.data-progress li:first-child {
     border-left: 0;
}
.data-progress li h2 {
    font-weight: 700;
    color: #fff;
    font-size: 46px;
    margin-bottom: 5px;
    line-height: 46px;
    font-style: italic;
}

.data-progress li h2 span {
  /*  font-size: 58px;
    color: #000;*/
}

.data-progress p {font-size: 14px;line-height: 14px;font-weight: 300;margin-bottom: 0px;color: var(--white);text-transform: capitalize;}
.data-progress li:after {
    position: absolute;
    content: '';
    width: 1px;
    height:34px;
    top: 0px;
    left: -1px;
    margin-right: 133px;
    background-color: rgba(255, 255, 255, 1);
   
}
.data-progress li:first-child:after {
    display: none;
    }

.bg-repeat{
    background:url(../images/bg.jpg) repeat top left #eeedf0;
}

.testimonial-single{

padding-left: 80px;
}
.testimonial-cont{
    padding: 0px 50px 10px 0px;
    position: relative;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 33px;
}
.testimonial-cont:after{
    content: '';
    width: 40px;
    height: 40px;
    background: url(../images/icons/quotes.png) no-repeat;
    border-radius: 100%;
    position: absolute;
    top: 6px;
    left: -70px;
    border-radius: 100%;
    z-index: 5;
    }

.testimonial-cont p{
font-size: 30px;
line-height: 40px;
font-family: var(--light-font);
}
.testimonial-name{
    padding: 10px 0;
    font-size: 14px;
   
}
.name{
 font-size: 18px;
 line-height: 20px;
 display: block;

}


.bigtext{
    font-size: 74px;
    line-height: 74px;
}
/*------------------video---------*/
.videobox{
    background-color: var(--black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 10px 13px 0px -8px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 13px 0px -8px rgba(0,0,0,0.75);
box-shadow: 10px 13px 0px -8px rgba(0,0,0,0.75);
}
.videobox h3{
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 30px;
    }
.videobox img{
    width: 100%;
    }
    .videobox .v-cont{
    
position: absolute;
    }
.play-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    font-size: 36px;
    height: 104px;
    border: 0px solid var(--white);
    border-radius: 100%;
    color: var(--primary-color);
    background: var(--white);
}
.play-btn:hover{
     background-color: var(--secondary-color);
     color: var(--white)
}

.news-single{
    flex:0 0 31%;
    margin-bottom: 30px;
}
.news-desc{
    padding: 30px 0;
}
.news-desc p{
   font-size: 16px;
   line-height: 20px;
   margin-bottom: 0;
   color: var(--black)
}
.news-desc a{
  color: var(--primary-color);
}
.news-desc a:hover{
  
}
.news-desc h3{
    font-size: 24px;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.date{
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 7px;
     color: var(--black)
}

/*------------------------form--------------------*/
.form-box{
    background-color: var(--secondary-color);
    padding: 30px 50px;
    width: 35%;
    -webkit-box-shadow: 0px 1px 5px 0px rgb(50 50 50 / 41%);
    -moz-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
    box-shadow: 0px 1px 5px 0px rgb(50 50 50 / 41%);
}
.form-box h3{
    color: var(--white);
    font-size: 44px;
    line-height: 46px;
    margin-bottom: 20px;
    /* padding: 30px; */
}
.form-box h3 span{
font-weight: 700;
}
.form-box-in{
  /* padding: 25px; */
}

.homeform .smd1{

/* margin-bottom: 12px; */

}
.homeform span {
    position: relative;
    /* float: left; */
    /* width: 100%; */
    margin-bottom: 0px;
}
.homeform span label{
    font-size: 12px;
    color: #888888;
    position: absolute;
    top:20px;
    left:20px;
    display: inline-block;
  z-index: 2;
    }
.homeform span i{position: absolute;left: 0;top: 14px;color: #fff;font-size: 15px;width: 22px;text-align: center;line-height: 27px;/* border-right: 1px solid rgba(0, 0, 0, 0.2);*/}
.homeform .fieldset{
 border:0;
 border-bottom: 1px solid #fff;
 color: #fff;
 border-radius: 0;
 padding: 7px 7px 7px 40px;
 margin-bottom: 0;
}
.homeform .pp-fld-call{ padding: 7px;}
.homeform .select-box{padding-left: 0;background-image: url(../images/icons/down.png);background-size: inherit;}
.homeform option{
background-color: var(--primary-color);
margin: 5px;
}
.homeform  .textarea{
    height: 83px;
    padding-top: 20px;

}

.gal-img{
    display: inline-block;
    line-height: 0;
    width: 100%
}
.gal-img:hover{
 
   opacity: 0.5
    }

.bg-dotted-dark{
    background:url(../images/bg2.jpg) repeat bottom left;
}


       /****************************************************
popup
*****************************************************/
/************POPUP************/
.sun-div {
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
}
.angel-div {
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0
}
.sun-button {
      color: #ffffff;
      cursor: pointer;
      /* font-family: "Museo Sans W01 Rounded 500"; */
      /* font-weight: bold; */
      position: absolute;
      right: 0px;
      text-align: center;
      top: 0px;
      padding: 30px 20px 30px 30px;
      border-bottom-left-radius: 54px;
      z-index: 101;
      background: #38276d;
      font-size: 18px;
}
.sun-button:hover{
    background: #57468d
}
.sun-close {
  border-radius: 4px;
  bottom: -2px;
  height: 25px;
  position: absolute;
  right: -10px;
  text-align: center;
  width: 70px;
  z-index: 101;
  cursor: pointer;
  
  color: #000;
        display:none;
}
#sun-pop h1 {
    color: #243b81;
    padding: 2px 0;
    font-size: 32px;
    margin: 0;
  }
#sun-pop {
margin: 0 auto;
    margin-top: 10.2%;
    left: 0;
    right: 0;
    position: fixed;
    width: 50%;
    z-index: 99999999;
    /* top: 1%; */
    display: none;
   /* padding: 40px;*/
    background:var(--primary-color);
    background-size: contain;
   border-radius: 15px;
    line-height: 11px;
    overflow: hidden;
    max-width: 750px;
    top:50%;
    margin-top: -290px;
}
.ftr-adrs-head{    font-family: 'Basis Grotesque Arabic Pro Blk'; font-size: 15px;}
#sun-pop img{
/*width:300px; */
 -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }


#sun-pop span{}
.d-div{margin:20px 0;}
#sun-pop a{color: #f59290;}
#angel-pop {


margin: 5% auto 0 -21%;
left: 50%;
position: absolute;
width: 41%;
z-index: 100;
/* top: 1%; */
display: none;
padding: 50px 50px;
background:#fff;
text-align: center;
line-height:11px;
  /*border-radius: 5px;
  
  margin:0 auto;
    
  left:20%; 
    position:absolute;
  width:55%;
  z-index: 100;
  top: 1%;
  display: none;
  padding:26px 0 17px;
  background:#fff;
    text-align:center;*/
}
h4{font-size: 20px; line-height: 20px;}
#angel-pop img{ width:100%;}
#angel-pop h2{ font-size:16px; color:#fff; float:left; width:100%; margin-top:20px;}


.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output { width: 100%!important;; float:left!important;}
.wpcf7 form.sent .wpcf7-response-output {  width: 100%!important;; float:left!important; }


@media only screen and (max-width: 1200px){
  #sun-pop {
   
    width: 70%;
}
 #sun-pop h1{
  font-size: 25px;
  }
    .dropdown-mega-container .col-md-4 {
    flex: 0 0 100% !important;
}
.megamenu-right-col {
    flex: 0 0 100% !important;
}
}

@media only screen and (max-width: 800px){
  #sun-pop {
   
    width: 80%;
}
 #sun-pop h1{
  font-size: 25px;
  }
}
@media only screen and (max-width: 640px){
  #sun-pop {
   
    width: 90%;
    padding: 40px 20px 20px 20px;
   
}
 #sun-pop h1{
  font-size: 25px;
  }
.popbox {
   
    padding-left: 0 !important;
  }
  .popbox-div {
    padding: 10px !important;
}
.click-here {
    text-align: center;
}
.chairman-cont {
    padding: 35px 0px 40px 0px;
}
}

.popbox{
    background: url(../images/popup.jpg) no-repeat top left var(--primary-color);
    padding-left: 40%;
    /* padding-right: 43px; */
    border-radius: 15px;
    float: left;
    width: 100%;
    display: flex;
}
.popbox-div{
    background-color: var(--primary-color);
    padding: 50px 50px  50px 50px;
    width: 100%;
    }

    .intl-tel-input .flag-container {
    position: absolute;
    top: 23px!important;
    bottom: 0;
    right: 0;
    padding: 1px;
}

.service-box-in{
    flex:0 0 32%;
    margin-bottom: 25px;
        border-radius: 15px;
        border-top-left-radius: 100px;
    border:1px solid #f1f1f1;
}
.service-box-in:nth-child(even){
        border-top-left-radius: 15px;
            border-bottom-left-radius: 100px;
    border:1px solid #f1f1f1;
}
.packages-row-in{
    gap:3%;
}
.package-single-in{
    flex:0 0 31.333%;
    background-color: #f1f1f1;
    margin-bottom: 30px;
     -webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.package-single-in:hover, .inner-news-row .news-single:hover{
        -webkit-box-shadow: 3px 3px 15px -3px rgba(0,0,0,0.25);
    -moz-box-shadow: 3px 3px 15px -3px rgba(0,0,0,0.25);
    box-shadow: 3px 3px 15px -3px rgba(0,0,0,0.25);
}

.inner-news-row{
    gap:2%;
}
.inner-news-row .news-single {
    background: #f1f1f1;
    border-radius: 15px;
     -webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.inner-news-row .news-single .news-desc {
    padding: 30px 20px;
}
.date-in{
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 7px;
    margin-bottom: 25px;
}


.inner-brand {
    width: 100%;
    margin-top: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    padding-top: 10px;
}
.inner-brand li {
    flex: 0 0 15.8%;
    margin-bottom: 15px;
    list-style: none;
    border: 1px solid #ccc;
    text-align: center;
    /* margin: -1px -1px 0 0; */
    padding: 15px 0;
    line-height: 0;
    border-radius: 15px;
    overflow: hidden;
}
.inner-brand li img {max-width: 100%;}
.inner-brand li:hover img {
   -webkit-animation: flipInY 1s  alternate;
  -moz-animation: flipInY 1s  alternate;
  -ms-animation: flipInY 1s  alternate;
  -o-animation: flipInY 1s  alternate;
  animation: flipInY 1s  alternate;
}

.about-box{
    
    padding: 35px 45px 35px 45px;
    color: #eaeaea;
    
}
.service-head{
    position: relative;
    padding-left: 90px;
    padding-bottom: 20px;
}



.about-box {
    border: 1px solid#ffffffbd;
    border-radius: 30px;
    width: 47.5% !important;
    margin-right: 5%;
    margin-bottom: 30px;
    border-bottom-right-radius: 100px;
    transition: all .3s ease;
}
.about-box:last-child {
    margin-right: 0;
}
.about-box:hover {
    background-color: #221646;
    border-top-left-radius: 100px;
}
.mis-vis {
    padding: 60px 0;
}
.gap7{
    gap: 7%;
}
.mis-vis{
    padding: 60px 0;
}
.values-sec {
    margin-bottom: 30px;
}
.main-msg span {
    font-size: 15px;
    color: #505050;
}
.main-msg h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}







.dprt-wrap {
    display: flex;
    flex-wrap: wrap;
}
.dprt-img1 {
    background-image: url(../images/dprt1.jpg);
}
.dprt-img2 {
    background-image: url(../images/dprt2.jpg);
}
.dprt-img3 {
    background-image: url(../images/dprt3.jpg);
}
.dprt-img4 {
    background-image: url(../images/dprt4.jpg);
}
.dprt-img5 {
    background-image: url(../images/dprt5.jpg);
}
.dprt-img6 {
    background-image: url(../images/dprt6.jpg);
}
.dprt-img7 {
    background-image: url(../images/dprt7.jpg);
}
.dprt-img8 {
    background-image: url(../images/dprt8.jpg);
}
.dprt-img9 {
    background-image: url(../images/dprt9.jpg);
}
.dprt-img10 {
    background-image: url(../images/dprt10.jpg);
}
.dprt-img11 {
    background-image: url(../images/dprt11.jpg);
}
.dprt-img12 {
    background-image: url(../images/dprt12.jpg);
}
.dprt-img13 {
    background-image: url(../images/dprt13.jpg);
}
.dprt-img14 {
    background-image: url(../images/dprt14.jpg);
}
.dprt-img15 {
    background-image: url(../images/dprt15.jpg);
}
.dprt-img16 {
    background-image: url(../images/dprt16.jpg);
}
.dprt-img17 {
    background-image: url(../images/dprt17.jpg);
}
.dprt-img18 {
    background-image: url(../images/dprt18.jpg);
}
.dprt-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex: 0 0 50%;
    position: relative;
}
.dprt-img img {
    display: none;
}
.dprt-img:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 50%;
    z-index: 1;
    border-top: 50px solid transparent;
    border-right: 50px solid #fff;
    border-bottom: 50px solid transparent;
    margin-top: -50px;
}
.dprt-cnt {
    flex: 0 0 50%;
    padding: 80px 60px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dprt-cnt h4 {
    font-size: 30px;
    font-family: var(--heading-font);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 43px;
    color: var(--primary-color);
}
.dprt-cnt p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 30px;
    color: var(--primary-color);
}
.dprt-img2 {
    background-image: url(../images/dprt2.jpg);
}
.dprt-wrap-right .dprt-img:after {
    border-top: 50px solid transparent;
    border-left: 50px solid #fff;
    border-bottom: 50px solid transparent;
    right: auto;
    left: 0px;
    border-right: none;
}
.mob-map, .dprt-cnt img {
    display: none;
}
.office-btn {
    width: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.office-sec{
    padding: 80px 0;
}
.form-sec h3 {
    text-align: center;
}

.form-sec .col.smd1.gutter:last-child {
    text-align: center;
}
.form-sec .cnt-form {
    background-color: #2a1d510d;
    padding: 35px 20px;
    border-radius: 30px;
}
.banner1:hover {
    background: url(../images/bg.jpg);
}












.about-box:hover h3, .about-box:hover p{color: #fff}
.about-box:hover img{
        -webkit-animation: swing 3s infinite ;
  -moz-animation: swing 3s infinite ;
  -ms-animation: swing 3s infinite ;
  -o-animation: swing 3s infinite ;
  animation: swing 3s infinite ;
    }
.about-box img.icon{
    position: absolute;
    top: -10px;
    left: 14px;
    width: 65px;
    }
.about-box h3{
    font-size: 30px;
    font-weight: 500;
    color: #eaeaea;
    margin-bottom: 10px;
    }
.about-box p{
    color: #eaeaea;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 300;
}
.chairman-cont{
    padding: 0px 50px 40px 50px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.19);
    margin-bottom: 40px;
    margin-top: 25px;
}
.chairman-cont:after, .chairman-cont:before{
    content: '';
    width: 40px;
    height: 40px;
    background: url(../images/icons/quotes.png) no-repeat;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left:0;
    border-radius: 100%;
    z-index: 5;
    }
.chairman-cont:before{
    bottom: 16px;
    top:auto;
    left:auto;
    right:0px;
    transform: rotate(180deg);
}
.chairman-cont p{

}
.chairman-name{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
}

/*----------------------------card slider--------------*/
.wrapper .outer{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top:200px;
  padding-bottom: 150px
}
.wrapper .card{
background: #fff;
    width: 320px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    justify-content: center;
    border-radius: 15px;
 /*   border:1px solid #e5e5e5;*/
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    animation: animate 15s linear infinite;
    animation-delay: calc(3s * var(--delay));
}
.outer:hover .card{
  animation-play-state: paused;
}
.wrapper .card:last-child{
  animation-delay: calc(-3s * var(--delay));
}
@keyframes animate {
  0%{
    opacity: 0;
    transform: translateY(100%) scale(0.5);
  }
  5%, 20%{
    opacity: 0.4;
    transform: translateY(100%) scale(0.7);
  }
  25%, 40%{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0%) scale(1);
  }
  45%, 60%{
    opacity: 0.4;
    transform: translateY(-100%) scale(0.7);
  }
  65%, 100%{
    opacity: 0;
    transform: translateY(-100%) scale(0.5);
  }
}
.card .content{
  display: flex;
  align-items: center;
}
.wrapper .card .img{
/*  height: 90px;
  width: 90px;
  position: absolute;
  left: -5px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.2);*/
}
.card .img img{
/*  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;*/
}
.card .img img{
  max-width: 100%
  }
.card .details{
  margin-left: 80px;
}
.details span{
  font-weight: 600;
  font-size: 18px;
}
.card a{
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 25px;
  color: #fff;
  background: linear-gradient(to bottom, #bea2e7 0%, #86b7e7 100%);
  transition: all 0.3s ease;
}
.card a:hover{
  transform: scale(0.94);
}
/*************** paddings ***************/
.pt-100{padding-top: 100px}
.pb-100{padding-bottom: 100px}
.pt-90{padding-top: 90px}
.pb-90{padding-bottom: 90px}
.pt-50{padding-top: 50px}
.pb-50{padding-bottom: 50px}
.pt-70{padding-top: 70px}
.pb-70{padding-bottom: 70px}
.pt-30{padding-top: 30px}
.pb-30{padding-bottom: 30px}
.pt-20{padding-top: 20px}
.pb-20{padding-bottom: 20px}
.pt-0{padding-top: 0px}
.pb-0{padding-bottom: 0px}

.pad-0{padding: 0}
.pad-25{padding: 25px}
.pl-100{padding-left: 100px}
.pr-100{padding-right: 100px}
.pl-80{padding-left: 80px}
.pr-80{padding-right: 80px}
.pl-20{padding-left: 20px}
.pr-20{padding-right: 20px}
.pl-30{padding-left: 30px}
.pr-30{padding-right: 30px}
.pl-50{padding-left: 50px}
.pr-50{padding-right:50px}
.pl-70{padding-left: 70px}
.pr-70{padding-right: 70px}
.pr-20{padding-right: 20px}
.mt-100{margin-top: 100px}
.mb-100{margin-bottom: 100px}
.mt-50{margin-top: 50px}
.mb-50{margin-bottom: 50px}
.mt-10{margin-top: 10px !important}
.mb-10{margin-bottom: 10px !important}
.mt-0{margin-top: 0px !important}
.mb-0{margin-bottom: 0px !important}


/*************** footer CSS ***************/
footer{ color: #fff; }
footer a{color: #fff;}
.footer{}
.footer-top{
    display: flex;
    justify-content: space-between;
    border:0;
        border-bottom: 4px rgba(255, 255, 255, 0.3);
    border-style: double;
    padding: 20px 0;
}
.footer-bottom{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border:0;
        border-bottom: 4px rgba(255, 255, 255, 0.3);
    border-style: double;
    color: var(--white);
}
.footer-logo img{
max-width: 140px;
}
.footer-div{
flex:0 0 23%;
padding-right: 10px;
}

.footer-div h3{
    position: relative;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

ul.footerlinks{
    margin:0 0 0px 0;
    padding: 0;
}
ul.footerlinks li {
    list-style: none;
    width: 100%;
    }
ul.footerlinks li a{
    width: 100%;
 display: inline-block;
    padding: 6px 0;
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    position: relative;
}
ul.footerlinks li a:hover{
    padding-left: 10px;
    color: #fff
    }
ul.footerlinks li a:after {
    content: '';
    position: absolute;
    left: -30px;
    top: 1px;
    bottom: 0;
    margin: auto 0;
    width: 0;
    height: 0;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;

}
ul.footerlinks li a:hover:after {
    left: 0px;
    opacity: 1;
    }
.footer-social{width: auto;gap: 7px;
    padding: 0; justify-content: flex-start;
}
.footer-social a{
    color: var(--primary-color) !important;
    width: 27px;
    height: 27px;
    color: #fff;
    border-radius: 100%;
    background: #fff;
}
.footer-social a i {
    margin-right: 0;
    font-size: 13px;
    /* color: #fff; */
}
.footer-social a:hover i {
    color: #d7ae6c;
}

.copy{
    display: flex;
    justify-content: space-between;
}
.copy p{
    margin-bottom: 0;
    }


/*************** INNER PAGE CSS ***************/

.flex-gap{gap:2%;}
.two-flex-col{
flex:0 0 48%; 
}
.three-flex-col{
flex:0 0 31%;
}
.four-flex-col {
flex:0 0 22%;
    }
.five-flex-col {
flex:0 0 18%;
    }
.image-box{
overflow: hidden;
}
.stickybar{
    position: sticky !important;
    top: 120px;
}
.owl-demo9{line-height: 0}
/*.image-box2{
     padding-top:30px;
     padding-left:30px;
    }
.image-box .hover-effect{
    border-radius: 15px;
        -webkit-box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);
    -moz-box-shadow: 0px 0px 34px -15px rgba(0,0,0,0.7);
    box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);

    }
.image-box:after, .image-box2:before{
    content: '';
    width: 40%;
    height: 40%;
    background:#702337;
    border-radius: 15px;
    position: absolute;
    bottom: 0;
    right:0;
    z-index: -1;
    }
.image-box2:before{
        bottom: auto;
    right:auto;
    top:0;
    left:0;
      background:#d7ae6c;
}*/

    .wrap-box{
     border-radius: 15px;
    -webkit-box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);
    -moz-box-shadow: 0px 0px 34px -15px rgba(0,0,0,0.7);
    box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);
    overflow: hidden;

    }

ul.list{
    margin:0;
    padding: 0;
    margin-bottom: 30px;
}
ul.list li{
    text-align: left;
list-style: none;
    padding: 2px 7px 2px 20px;
    line-height: normal;
    position: relative;
}
ul.list li:before{
     content: "\f111"; 
    position: absolute;
    top:5px;
    left:0;
     font-family: "FontAwesome";
     color: var(--primary-color);
     font-size: 8px;

    }
ul.text-white li:before{
     color: var(--white);
}
.cnt-wrap {  
background-color: var(--primary-color); 
padding-top: 26px;
padding-bottom: 20px;
}
.icon_box {
    padding: 25px 25px 25px 75px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    position: relative;
}
.icon_box i {
    margin: 0;
    padding: 8px;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 30px;
    color: var(--black);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background: var(--white);
    position: absolute;
    top: 30px;
    left: 15px;
}
.jurisdiction-price{
    color: #fff !important;
}
.icon_box .descripion { display:block; overflow:hidden}
.icon_box .descripion h5 {font-size: 18px;margin: 0 0 8px 0;text-transform: uppercase;color: #fff; font-weight: 400}
.icon_box p {margin:0;}
.icon_box a { color:#ccc}
.icon_box:last-child{ margin-bottom:0px;  border-bottom:none;}
.cnt-form{   }
.map{ overflow: hidden; width: 100%  }
.map iframe{}
.map iframe:hover{}
.table-row{
    width: 100%;
    overflow-x: scroll;
}
.table-style {border-collapse: collapse; width: 100%;}
.table-style th, .table-style td {text-align: left;padding: 8px; border: 1px solid #d9d9d9;}
.table-style tr:nth-child(even){background-color: #f2f2f2}
.table-style th { background-color:var(--primary-color); color: white;}

/*************** INNER BANNER ***************/
.banner{
 z-index: 0;
 width: 100%;
 height: 200px;
 padding: 0 70px;
 display: flex;
 align-items: center;
 background-image: url(../images/banner1.jpg);
 background-position: center;
 background-repeat: no-repeat;
 position: relative;
 border-top-left-radius: 15px;
 }
.banner-caption h2{color: var(--white);font-size: 40px;margin-bottom: 10px;font-weight: 500;line-height: 42px;}
.banner-caption h4 span{color: #ccc;}
.banner-caption h4 a{color: var(--white);/* font-size: 12px; */}
.banner-caption h4 {
    padding: 0px 0px;
    display: inline-flex;
    margin-bottom: 0px;
    align-items: center;
    font-size: 16px;
    line-height: 16px;
}
.banner-caption{position: relative;z-index: 1;display: flex;justify-content: space-between;width: 100%;}
.banner-caption .calc-link {
    display: inline-block;
    padding: 20px 15px 20px 40px;
    background-image: none;
    background-color: #5c5082;
    color: var(--white);
    width: auto;
}
.banner1{background: url(../images/bg2.jpg) repeat top left var(--primary-color);transition: all .3s ease;}
.banner-caption h4 span.b-sep{
    font-size: 0;
    width: 1px;
    background: #fff;
    height: 21px;
    margin: 0 12px;
    display: inline-block;
    background-size: 22px;
}


/*************** FIXED HEADER ***************/
header.smaller {top:0; left:0px; position: fixed; z-index: 9; -webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;
-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
    -moz-box-shadow:    0px 1px 5px 0px rgba(50, 50, 50, 0.41);
    box-shadow:         0px 1px 5px 0px rgba(50, 50, 50, 0.41); ;
-moz-box-shadow: 0px 4px 20px #00000059; background-color: #fff;}
header.smaller .top-header{ }



/*************** JARALLAX ***************/
.jarallax{ position:relative; background-repeat:no-repeat; background-position:center center; -moz-background-size:cover; 
-webkit-background-size:cover; -o-background-size:cover; background-size:cover;}

.bg1{background: url(../images/bg1.jpg) no-repeat top center;background-size: cover;}
.bg2{background: url(../images/bg2.jpg) no-repeat top center;}
.bg3{background: url(../images/bg3.jpg) no-repeat top center;}
.bg4{background: url(../images/bg4.jpg) no-repeat top center;}
/**********forms**************/
form{
    margin:0;
    padding:0;
}
*:focus {  
    outline: none;
}
.country-code {
    width: 100%;
    height: 52px;
    background-color: transparent;
    display: block;
    margin: 0 0 10px 0;
    font-size: 14px;
    border: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    border-radius: 0;
    padding: 8px;
    margin-bottom: 0;
}
.fieldset{
        width: 100%;
        height: 52px;
        padding: 8px 10px;
        background-color: none;
        background-color: transparent;
        display: block;
        border: 1px solid rgb(211 211 211);
        margin: 0 0 10px 0;
        color: #626262;
        font-size: 14px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
   

}
.fieldset1{ height: 130px; }
.sendbutton{
    width: auto;
    height: auto;
    border: 0;
    outline: 0;
    margin: 0 5px 0 0;
    display: inline-block;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    vertical-align: top;
    padding: 12px 33px 13px;
    text-align: center;
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 55px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    }

    .sendbutton:hover{
       background-color: var(--secondary-color);
    }
.btn-white{
   background-color: var(--white);  
    color: var(--primary-color); 
}
.btn-white:hover{
    background-color: #564195;
    color: #ffffff;
}
.select-box {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icons/icon5.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}
.contact-form{ width: 100%; }
.contact-form .fieldset {margin-bottom: 0px;}
.nowrap{
    flex-wrap: nowrap !important
}
::-webkit-input-placeholder {
   color:  #626262 !important;
}
:-moz-placeholder { /* Firefox 18- */
   color:  #626262 !important;
}
::-moz-placeholder {  /* Firefox 19+ */
   color:  #626262 !important;
}
:-ms-input-placeholder {  
   color:  #626262 !important;
}

.form ::-webkit-input-placeholder {
   color:  #fff !important;
}
.form :-moz-placeholder { /* Firefox 18- */
   color:  #fff !important;
}
.form ::-moz-placeholder {  /* Firefox 19+ */
   color:  #fff !important;
}
.form :-ms-input-placeholder {  
   color:  #fff !important;
}

.homeform ::-webkit-input-placeholder {
   color:  #fff !important;
}
.homeform :-moz-placeholder { /* Firefox 18- */
   color:  #fff !important;
}
.homeform ::-moz-placeholder {  /* Firefox 19+ */
   color:  #fff !important;
}
.homeform :-ms-input-placeholder {  
   color:  #fff !important;
}

.wpcf7-form-control-wrap {
    position: relative;
}


/************************************* 1600px *************************************/
@media only screen and (max-width: 1600px) {
.slidermaindiv {
    padding-left: 5.7%;
}
.home-bnr{
    padding-left: 24% !important;
}
}

/************************************* 1400px *************************************/
@media only screen and (max-width: 1400px) {
.slidermaindiv {
    padding-left: 3%;
}
.home-bnr{
    padding-left: 22% !important;
}
}

/************************************* 1366px *************************************/
@media only screen and (max-width: 1366px) {
.slidermaindiv {
    padding-left: 21%;
}
.home-bnr{
    padding-left: 21% !important;
}
.splitbg2 .img1, .splitbg2 .img2, .splitbg2 .img3{
    position: absolute;
    top:0;
    left:0;
    }
.splitbg2 .img2{
    left:2%;
    top:120px; 
}
.splitbg2 .img3{
    left:27%;
    top:150px; 
    max-width: 200px
}
}
/************************************* 1180px *************************************/
@media only screen and (max-width: 1320px) {
.container{ width:90%;}
.slidermaindiv {
    padding-left: 5%;
}
.home-bnr{
    padding-left: 25% !important;
}
.top-left-box {
    width: 30%;
}
.spaces-wrap-col{
    flex:0 0 48%;
}

}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
.container{ width:90%;}
.home-split-bg .container{ width:100%;}
.home-split-bg>div>div>div{padding: 30px 30px;}
.slidermaindiv {
    padding-left: 5%;
}
.home-bnr{
    padding-left: 30% !important;
}
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
    .menu-wrap {

   
}
.four-flex-col{
  flex:0 0 48%
}
.d-none{display: none;}
.splitbg2 .img3 {
    left: 34%;
    top: 71px;
    max-width: 138px;
}
.inner-brand li {
    flex: 0 0 31%;
    }
    .slidermaindiv {
    padding-left: 5%;
}
.home-bnr{
    padding-left: 31% !important;
}
.form-box {
    width: 55%;
}
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {

.about-box {
    width: 100% !important;
}

}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {
.pt-100, .pt-70, .pt-90,.pt-50{
    padding-top:30px;
}
.pb-100, .pb-70, .pb-90,.pb-50{
    padding-bottom:30px;
}
.pl-100, .pl-70, .pl-50, .pl-30{padding-left:0;}
.pr-100, .pr-70, .pr-50, .pr-30{padding-right:0;}
.curve-box{
    border-radius: 10px;
}
.bottom-left-curve{
border-bottom-left-radius: 70px;
}
.bottom-right-curve{
border-bottom-right-radius: 70px;
}
.top-left-curve{border-top-left-radius: 70px;}
.top-left-box {
    display: flex;
    width: 100%;
    background-color: #f1f1f1;
    padding: 10px;
    position: relative;
    z-index: 1;
    padding: 10px 10px 10px 10px;
    margin-bottom: 15px;
    width: 100%;
    justify-content: space-between;
}
.inline{margin-bottom: 0}
.inline img{display: none;}
.top-left-box .social {display: none;}
.top-left-box .pt-30 {padding-top: 0; display: none;}
.calc-link {
    display: inline-block;
    padding: 8px 10px 8px 20px;
    background: var(--primary-color);
    border-radius: 10px;
    border-bottom-left-radius: 25px;
    color: var(--white);
    width: 100%;
    /* height: 92px; */
    font-size: 12px;
}
.slidermaindiv {
    padding-left: 5%;
}
.home-bnr {
    padding-left: 5% !important;
}
.d-none{display: none;}
.home .smd4, .home .smd75, .home .smd60, .home .smd30, .home .smd40, .home .smd70,.home .smd66, .home .smd2{width: 100%}
.spaces-wrap-col{flex:0  0 48%;}
.space-box-cont {
    padding: 34px 25px;
    }
    .s-title {
    margin-bottom: 10px;
    gap:10px;
}
.s-title .number {
    font-size: 25px;
    line-height: 25px;
    }
    .space-box-cont p {
    line-height: 21px;
    font-size: 16px;
}
.dubai-wrap {
    padding: 50px 40px 40px 40px;
}
.choose-box {
    flex: 0 0 100%;
    margin-bottom: 20px;
    }
    .choose-cont-in .detail {
    height: calc(100% - 50px);
    opacity: 1;
}
.splitbg, .splitbg3{display: none;}
.home-split-bg .smd60{background:url(../images/splitbg.jpg) no-repeat; background-size: cover}
.splitbg2 {
    width: 100%;
    height: 401px;
    position: relative;
    background: url(../images/splitbg2.png) no-repeat top right;
        background-size: contain;
    }
    .testimonial-cont p {
    font-size: 20px;
    line-height: 30px;
}
.faqbox{
    margin-top: 30px;
    background-color: var(--primary-color);
    padding: 70px 40px 40px 40px;
}
.news-desc h3 {
    font-size: 20px;
    line-height: 24px;
    }
    .form-box {
    width: 80%;
    margin: 0 auto;
}
.heading {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 20px;
}
.dprt-cnt h4 {
    font-size: 20px;
    letter-spacing: 1px;
}
.rate-box-wrap ul { flex-direction: column;
    gap: 15px;}

.footer-div {
    display: none;
}
.footer-only{
    display: block;
}
}
/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
    .smd30, .smd40, .smd60, .smd70, .smd75 {width: 100%}
    .smd60, .smd70, .smd75{margin-top:20px;}
    /*------------flex-col---------*/
    .three-flex-col, .two-flex-col, .four-flex-col{
  flex:0 0 100%
}
.five-flex-colum {
   flex:0 0 48%
    }
    /*------------flex-col---------*/
.inline div {
    border-left: 0;
    padding-left: 0;
}
.inline div a {
    font-size: 12px;
    }
    .inline img {
    display: block;
}
.inline div{display: none;}
.header-right {
    gap: 7px;
}
.highlight-text {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
}
p {
    margin: 0px 0 20px 0;
    }
    .spaces-wrap-col {
    flex: 0 0 100%;
}
.service-box {
    flex: 0 0 48%;
    padding: 15px 15px;
}
.steps-box .space-box-cont {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--black);
}
.data-progress li h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 5px;
    line-height: 25px;
}
.counter-row {
    padding: 10px 0 30px 0;
}
.client-logos li {
    margin: 0;
    padding: 0;
    flex: 0 0 48%;
    overflow: hidden;
    margin-bottom: 15px;
}
.bigtext {
    font-size: 40px;
    line-height: 40px;
}
.news-single {
    flex: 0 0 100%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
}
.sendbutton {
    font-size: 16px;
    padding: 15px 30px 15px;
    }
    .footer-div {
    flex: 0 0 48%;
    padding-right: 10px;
    margin-bottom: 15px;
}
ul.footerlinks li a{padding: 1px 0}
.footer-div h3{margin-bottom: 10px;}
.mt-100 {
    margin-top: 30px;
}
.banner-caption {
    width: 100%;
    flex-direction: column;
    gap: 22px;
    align-items: unset;
    justify-content: center !important;

}
.start-btn {
    padding: 12px 15px;
}
.banner-caption h2 {
    font-size: 30px;
    line-height: 34px;
}
.copy {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.banner {
    height: 210px;
    }
    .banner-caption .calc-link {
    padding: 15px 15px 15px 30px;
}
.service-box-in{
    flex:0 0 48%;
    }

.dprt-img {
    background-image: none;
}
.dprt-wrap {
    flex-direction: column;
}
.dprt-img img, .dprt-cnt img {
    display: block;
    width: 100%;
}
.dprt-cnt {
    padding: 35px 0;
}
.dprt-img:after{display: none;}
.dprt-cnt img {
    margin-bottom: 30px;
}
.spaces-wrap-col .space-box .overlay-effect3 {display: none;}
.space-box-cont{position: relative;}
.form-box {
    padding: 30px 20px;
}
.banner .banner-caption .b-left {
    text-align: center;
}
.office-sec .head-cap {
    font-size: 30px;
    line-height: 30px;
}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
    .bigtext {
    font-size: 30px;
    line-height: 30px;
}
.form-box {
    width: 90%;
    margin: 0 auto;
}
.form-box h3 {
    color: var(--white);
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 20px;
    /* padding: 30px; */
}
.choose-cont {
    padding: 50px 20px 20px 20px;
    }
    .splitbg2 .img3{display: none;}
    .logo img {
    max-width: 150px;
    margin-right: 5px;
}
.header{padding: 7px 0}
.start-btn{padding: 7px 10px;}
.data-progress p {
    font-size: 11px;
    }
    .data-progress{flex-wrap: wrap;}
    .data-progress li {
    list-style: none;
    width: 50%;
    margin-bottom: 10px;
    border-left: 0;
}
.data-progress li:after{display: none;}
.testimonial-cont p {
    font-size: 16px;
    line-height: 23px;
}
.testimonial-cont {
    padding: 0px 10px 0px 0px;
    margin-bottom: 10px;
}
.highlight-text {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 15px;
}
.slidermaindiv .click-here {
    padding: 22px 35px;
}
.main-msg {
    padding: 20px;
}
}

    /************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
    .service-box {
    flex: 0 0 100%;
}
    .logo img {
    max-width: 100px;
}
.footer-div {
    flex: 0 0 100%;

}
.banner-caption h2 {
    font-size: 30px;
    line-height: 30px;
}
.banner-caption h4 {
    font-size: 12px;
    line-height: 12px;
}
}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {
}