@font-face {
    font-family: 'airbnb_cereal_appblack';
    src: url('../fonts/airbnbcerealblack-webfont.woff2') format('woff2'),
         url('../fonts/airbnbcerealblack-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'airbnb_cereal_appbold';
    src: url('../fonts/airbnbcerealbold-webfont.woff2') format('woff2'),
         url('../fonts/airbnbcerealbold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;

}

@font-face {
    font-family: 'airbnb_cereal_appbook';
    src: url('../fonts/airbnbcerealbook-webfont.woff2') format('woff2'),
         url('../fonts/airbnbcerealbook-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'airbnb_cereal_appextra_bold';
    src: url('../fonts/airbnbcerealextrabold-webfont.woff2') format('woff2'),
         url('../fonts/airbnbcerealextrabold-webfont.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'airbnb_cereal_applight';
    src: url('../fonts/airbnbcereallight-webfont.woff2') format('woff2'),
         url('../fonts/airbnbcereallight-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;

}

@font-face {
    font-family: 'airbnb_cereal_appmedium';
    src: url('../fonts/airbnbcerealmedium-webfont.woff2') format('woff2'),
         url('../fonts/airbnbcerealmedium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;

}
@font-face {
    font-family: 'quimbymayoralregular';
    src: url('../fonts/quimbymayoral_regular-webfont.woff2') format('woff2'),
         url('../fonts/quimbymayoral_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body{
    font-family: 'airbnb_cereal_appmedium';
    margin: 0;
    padding: 0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.custom_container{
    max-width: 1400px;
    margin: 0 auto;
    padding:0px 25px ;
}

/*------------------------------------------nav bar styling------------------------------------------------------------*/
.header{
    z-index: 99;
    top: 0;
    position:absolute;
    width: 100%;
}
.bg-light{
    background: none !important;
}
.nav-item{
    padding:0px 10px ;
}

/* .navbar-light .navbar-nav .nav-link.active{
    color: #fff;
} */
/* .child_menu_links .nav-link.active{
    color: red;
    border: 1px solid red;
} */
.navbar-light .navbar-nav .nav-link{
    color: #fff;
}
.navbar-light .navbar-nav .nav-link.active{
    color: white;
}
.header .navbar-brand {
    width: 140px;
}
.header .navbar-brand img{
    width: 100%;
}
.btn-outline-success{
    color:white;
    border-radius: 0;
    border-color: red;
    background-color: red;
    transition: all 0.5s ease-in-out;
}
.btn-outline-success:hover{
    color:white;
    border-radius: 30px;
    border-color: red;
    background-color: red;

}
.btn-outline-success:not(:disabled):not(.disabled):active{
    background-color: red;
    border-color: red;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus{
    box-shadow: none;
}
.navbar-light .navbar-nav .nav-link:hover{
    color: white;
}
.navbar-light .navbar-nav .nav-link:focus{
    color:white;

}
.btn-outline-success:focus {
    box-shadow:none;
}
:focus-visible{
    outline: none;
} 
.form-inline button{
    padding: 7px 9px;
}
.navbar-expand-lg .navbar-nav{
    padding-right: 20px;
}
/*----------------------------------------navbar border transition------------------------------------------*/
body #box {
    width: 120px;
    height: 50px;
    /* outline: 5px solid #e0e0e0; */
    outline-offset: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    position: relative !important;
    cursor: pointer;
  }
  body #box svg {
    content: "";
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    stroke-width: 2px;
    fill: none;
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 2s;
    transition-timing-function: linear;
  }
  body #box svg rect {
    width: 100%;
    height: 100%;
  }
  body #box:hover svg {
    transition: stroke-dashoffset 2s;
    transition-timing-function: linear;
    stroke-dashoffset: 0;
  }
/*-----------------------------------------nav-bar border transition----------------------------------------*/

.nav-item{
    position: relative;
}
.nav-link::after{
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    bottom: 0;
    /* left: 0; */
    border-radius: 20px;
    border: solid 1px #FFF;
    transition:all 0.3s linear;
    opacity: 0;
    left: 50%;
    transform: rotate(180deg);
}
.nav-link:hover::after{
    width: 100%;
    height: 100%;
    bottom:0;
    left: 0;
    border: solid 1px #fff;
    opacity: 1;
}
@keyframes nav-link{
    0% {border:red; left:0px; top:0px;}
  25%  {border:yellow; left:200px; top:0px;}
  50%  {border:blue; left:200px; top:200px;}
  75%  {border:green; left:0px; top:200px;}
  100% {border:red; left:0px; top:0px;}
}
/*--------------------------------------scrool bar-------------------------------------*/
.slider-text h2{
    color: white;
    font-size: 60px;
    font-weight: 600;
}
.slider-text p{
    color: white;
    font-size: 18px;
    line-height: 35px;
}
.wrapeer-header-sliderbar{
    text-align: center;
    z-index: 1;

}
.wrapper-header-video{
    position: relative;
    height: 100vh;
    /* display: flex;
    align-items: center; */
    overflow: hidden;
}
.banner-contact_management{
    background-image: url(../images/management-service-banner-small.jpg);
    background-size:100% 100%;
    background-repeat: no-repeat;
}
#my_video{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.wrapper-header-video::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00235A 0% 0% no-repeat padding-box;
    opacity: 0.3;
}

.btn-custom{
    color: white;
    background-color: #D90018;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
}
.btn-custom-2{
    color:#D90018;
    background-color: #FFFFFF;
    border-radius: 0;
    transition: all 0.5s ease-in-out;

}
.btn-custom:hover{
    color: white;
    border-radius: 30px;
    
}
.btn-custom-2:hover{
    color:#D90018;
    border-radius: 30px;

}
.slider-width{
    width: 75%;
    margin: 0 auto;
}
.slick-next{
    right: 65px;
}
.slick-prev{
    left:40px;
    z-index:1;
}
.wrapper-slider-text{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 100%;
    transform: translate(-50%, -50%);
}
.wrapper-slider-text .slick-dots{
    bottom: -35px;   
}
.wrapper-slider-text .slick-dots li{
    width: 40px;
    height: 4px;
}

.wrapper-slider-text .slick-dots li button{
    background: #fff;
    opacity: 0.3;
    width:39px ;
    height: 2px; ;
    padding:0;
}
.wrapper-slider-text .slick-dots .slick-active button{
    opacity: 1;
}
.wrapper-slider-text .slick-dots li button:before{
    display: none;

}
.wrapper-button-read-more{
    margin: 20px 0px;
}
.wrapper-button-read-more a button{
    padding: 10px 10px;

}
.button-style-padd{
    padding: 10px 10px;

}
.right-arrow i{
    color: #FFFFFF;
    font-weight: 600;
    line-height: 38px;

}
.right-arrow{
    height:40px;
    width:40px;
    border-radius: 30px;
    border: 1px solid white;
    position: absolute;
    right: 41px;
    top: 150px;
}
.right-arrow:hover{
    background-color:#D90018;
    border: #D90018;
    color: #fff;

}

.left_arrow{
    height: 40px;
    width: 40px;
    border-radius: 30px;
    border: 1px solid white;
    position: absolute;
    left:43px;
    top:150px;
    z-index: 1;
}
.left_arrow:hover{
    background-color:#D90018;
    border:#D90018;
    color: #fff;

}
.left_arrow i{
    color:#FFFFFF;
    font-weight: 600;
    line-height: 38px;
}
/*------------------------------------------- section-2--------------------------------------------*/
.content{
    padding: 35px 0px;
}
.content h3{
    font-weight:600;
    font-size: 38px;
    color: #131A21;
}
.content p{
    font-size:18px;
    color: #131A21;
    opacity: 0.6;
}

.what-we-do h3{
    color: #fff;
    font-size: 38px;
    margin-bottom:15px;
    font-weight:600;
}
.what-we-do p{
    color: #fff;
    font-size:18px;
    margin-bottom: 40px;
    line-height: 25px;
}
.wrapper-what-we-do{
    background-image: url(../images/what.png);
    background-size: cover;
    background-repeat: no-repeat;
    /* height:750px; */
    background-blend-mode: overlay;
    /* background-color: rgba(0,0,0,0.6); */
    padding: 40px 0px 20px;
}
.vendor{
    background-color: #fff;
    transition: all 0.4s  ease-in-out;
    position: relative;
    z-index: 1;
}

/* .what-we-do-slider{
    position: relative;
    
}
.wrapper-header-what-we{
    position: absolute;
    z-index: 1;
} */
.Worldwide_text{
    padding: 20px 30px;
    /* transform: translateY(0px); */
    height: 200px;
}
/* .main_img:hover .vendor{
    transform: translateY(-30px);
} */
.main_img a{
    color: #131A21;
}
.main_img a:hover{
    text-decoration: none;
    color: #131A21;
}
.left-arrow i{
    font-weight: 600;
    line-height: 38px;
}
.main_img{
    background-color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 99px #0A0A520F;
    transition: all 0.3s ease-in-out;
}
.main_img:hover{

    border-radius: 10px;
}
.arrow-left {
    position: absolute;
    bottom: 18px;
    left: 35px;
    z-index: 3;
    cursor: pointer;
}
.left-arrow{
    display:inline-block;
    height:40px;
    width:40px;
    border-radius: 30px;
    color: #fff;
    background-color:#D90018;
    border:#D90018;
    text-align: center;
    transition: all 0.5s ease-in-out;
    transform: scale(0.6);
    opacity: 0;
}

.main_img:hover .arrow-left .left-arrow{
    /* display: block; */
    transform: scale(1);
    opacity: 1;
}
.we-arrow-left{
    text-align: center;
    top: unset;
    top: -80px;
    left: unset;
    right: 130px;
    

}
.we-arrow-right{
    text-align: center;
    top: -80px;
}
 
.vendor picture{
    display: inline-block;
    width: 100%;
    height: 180px;
    overflow:hidden;
}
.vendor picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}
.vendor:hover.vendor picture img{
    transform: scale(1.1);
}
.Worldwide_text h5{
    font-weight: 600;
    line-height:30px;
    color: #131A21;
}
.Worldwide_text p{
    font-size: 14px;
    line-height: 25px;
    color: #131A21;
}
.text{
    /* display: flex;
    justify-content: space-between; */
    text-align: right;
}
.text span{
    font-size: 18px;
    color: #fff;
}
.text-button{
    margin: 20px 0px 0px;
}
.wrapper-about-astron{
    padding: 90px 0px;
}
.astronions{
    padding: 0px;
}
.wrapper-certificate{
    border: 1px solid #9B9B9B5A;
    text-align: center;
    padding: 40px 0px;
    border-radius: 5px;
}
.custom-chart{
    padding-right:0;
}
.custom-chart h2{
    color: #00235A;
    font-weight: bold;
}
.mask-36{
    width: 100%;
    height: 100%;
}
.mask-36 img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.wrapper-Our-Vission{
    display: flex;
    width: 100%;
}
.Our-Vission{
    width: 55%;
}
.Our-Vission-1{
    width: 45%;
    background-color: #191B1E;
}
.Our-Vission-1 h2{
    color:#FFFFFF;
    font-weight: 800;
    margin-bottom: 22px;
}
.Our-Vission-1 p{
     color: #FFFFFF;
     line-height: 30px;
     margin: 0;
}
.our-mission-1{
    padding: 100px 85px;
}
.our-value h3{
    font-size: 38px;
    font-weight: 800;
}
.our-value p{
    margin-top: 20px;
    font-size: 16px;
    opacity:0.6;
}
.wrapper-our-values{
    padding: 60px 0px;
}
.wrapper-trust h5{  font-weight: 600;

}
.wrapper-trust figure img{
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.trusted p{
    font-size: 14px;
    margin: 0;
    color: #131A21;
    line-height:25px;
    overflow: hidden;
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient: vertical;
}
.wrapper-trust{
    padding: 0;
}
.respect{
    margin-top: 50px;
    padding: 0px 15px;
}
.trusted{
    padding: 21px 20px;
    position: relative;
    border: 1px solid #E2E8F0;
    /* border-left: 1px solid #D0222C; */
    margin-right: 5px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    height: 100%;
   
}
.top{
    border-top: 0px;
}
.trusted::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color:#D0222C;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.trusted:hover::before{
    opacity: 1;
    right: 0;
    width: 100%;
}
.trusted:hover figure img{
    filter: brightness(255);
}
.trusted:hover h5{
    color: white;
}
.trusted:hover p{
    color: #fff;
}
.wrapper-footer{
    background-color: #05152F;
    padding-top:100px;
    color: rgba(255,255,255,0.7);
}
.wrapper-footer-content{

}
.row-wrapper{
display: flex;
}
.astron-footer-logo{
    width: 35%;
    padding-right: 20px;
}
.astrom-text{
    width: 20%;
    padding-right: 20px;
}
.resources-text{
    width: 20%;
    padding-right: 20px;
}
.latest-news-text{
    width: 25%;
}
.contact-flex{
    display: flex;
    
}
.contact-flex p img{
    width: 10px;
}
.contact-flex p a{
    font-size: 13px;
}
.wrapper-flex{
    display: flex;
}
.wrapper-flex li{
    margin-right: 16px ;
}
.wrapper-flex li img{
    width: 60%;
}
.wrappper-footer-astron-log{
    margin-bottom: 22px;

}
.astron-footer-logo img{
    width: 110px;
}
.astron-footer-logo p{
    font-size: 12px;
    margin-bottom: 22px;
    max-width: 80%;
    line-height: 22px;
    opacity: 0.7;
}
.contact-flex p{
    font-size: 11px;
    margin-right: 20px;
    color: #fff;
}


.astrom-text h4{
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 21px;

}

.font-style li{
    font-size: 13px;
    margin-bottom: 7px;
    max-width: 95%;
}
.resources-text h4{
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 21px;
}
.latest-news-text h4{
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 21px;

}
.footer-abu figure img{
    width: 90px;
}
.abu-dhabi li{
    display: flex;
    align-items: center;
}
.footer-abu-text{
    padding: 0px 10px;
}
.footer-abu-text a{
    font-size: 15px;
}
.footer-abu figure{
    margin: 0;
}
.footer-abu-text span{
    font-size: 11px;
    color: #fff;
}
.footer-abu-text p{
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}
.bottom_info{
    background: #051A3B;
    padding: 30px 0px;
}
.footer-copy{
    font-size: 13px;
    margin: 0;
    color: #9B9B9B;
}
.footer-info{
    font-size: 13px;
    text-align: right;
    color:#9B9B9B;
    margin: 0;
}
.wrapper-download{
    background-image: url(../images/brochure.png);
    /* background-color: #00235A; */
    padding:35px 0px;
    background-size: cover;
    background-repeat: no-repeat;
}
.wrapper-form h3{
    font-size:30px;
    color:#FFFFFF;
    line-height: 45px;
}
.wrapper-form .button-my{
    margin-top: 20px;
}
.button-my{
    background-color: #D0222C;
    color: #fff;
    padding: 10px 10px;
    border: #D0222C;
}
.button-my:hover{
    color: #fff;
}
.button-my:focus{
    box-shadow: none;
}
.query-header{
    margin: 0 0px 20px;
}
.query-header h5{
    font-size: 20px;
    font-weight: 600;
}
.query-header span{
    font-size: 12px;

}
.wrapper-form-2{
    background-color: #fff;
    padding: 30px;
    margin: 20px 0px -60px;
}
.form-group ::placeholder{
    color: rgba(24, 41, 41, 0.4);
    font-size: 12px;
}
.my-submit{
    background-color: #D0222C;
    border: none;
}
.my-submit:hover{
    background-color:#D0222C;
}
.my-submit:focus{
    background-color:#D0222C;
    box-shadow: none;
    border-color: #D0222C;
}
.my-submit:active{
    border-color: #D0222C !important;
    background-color: #D0222C !important;
}
.query-footer{
    text-align: center;
}
.query-footer span{
    font-size: 14px;
}
.mail{
    width: 12px;
}
.cloud{
    width: 18px;
}
.font-style li a{
    color: #FFFFFF;
    opacity:0.7;
}
.font-style li a:hover{
    text-decoration: none;
}

/*---------------------------------------index-page--------------------------------------------*/

.about-us_video{
    height: 60vh !important}
.about-us{
    position: absolute;
    bottom: 80px;
    z-index: 2;
}
.wrapper_about_us{
    width: 100%;
}
.about-us h2{
    color: #fff;
    font-weight: 600;
    font-size: 30px;
}
.about-us span{
    color: #fff;
}
.wrapper-our-story{
    padding-top: 50px;
    padding-bottom: 30px;
}
.since-2012 p{
    color: #131A21;
    opacity: 0.6;
    font-size: 21px;
    line-height: 28px;
    font-family: 'airbnb_cereal_applight';
}
.wrapper-flex-2012{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.wrapper-flex-2012 h2{
    font-weight: 600;
    line-height: 45px;
    font-size: 30px;
}
.world-wide-content h2{
    margin-bottom: 20px;
}
.color-blue{
    width: 21%;
    height: 100%;
    text-align: end;
}
.wrapper-flex-2012 figure img{
    width: 80%;
}

.color-red{
    color: #D90018;
    font-size: 28px;
}
.navbar-about-us{
    padding: 0.5rem 0rem !important;
}
.opacity-text{
    opacity: 0.8;
    line-height: 30px;
}
.astron-certificate{
    padding: 40px 0px;
}
.wrapper-row{
    margin-right: 0;
    margin-left: 0;
    padding: 52px 0px;
}
.wrapper-border-1{
    padding: 0;
    border: 1px solid #E2E8F0;
    background-color: #FCFDFE;
}
.wrapper-border-2{
    background-color: #fff;
}
.wrapper-border{
    padding: 30px;
}
.wrapper-border h4{
    font-weight: 600;
}
.wrapper-border p{
    line-height: 26px;
    font-family: 'airbnb_cereal_applight';
    color: #131A21;
    font-size: 17px;
}
.wrapper-certificate-hower{
    padding-top:50px ;
    padding-bottom:40px ;
    background-image: url(../images/Mask\ Group\ 34.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.hower-style h2{
    font-weight: 600;
}
.hower-style{
    position: relative;
    padding: 40px 0px;
    border: 1px solid #D90018;
    color: #fff;
    z-index: 10;
    transition: all 0.5s ease-in-out;
}
.hower-style::before{
    position: absolute;
    content: '';
    left: 0;
    right:0;
    top: 100%;
    width: 100%;
    height: 0;
    background-color:#D0222C;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    
}
.hower-style:hover::before{
    opacity: 1;
    top: 0;
    height: 100%;
}
.hower-style{
    transform: translateY(0px);
    text-align: center;
    height: 100%;
}
.hower-style:hover{
    transform: translateY(-10px);
}
.wrapper-astron-best{
    padding-top: 80px;
    padding-bottom: 40px;
}
.row-back{
    margin-right:0px;
}
.col-back{
    padding-right: 0px;
}
.panel{
    border: 1px solid #E2E8F0;
    border-radius: 5px;
    margin: 15px 0px;

}
.panel,
.panel-body {
  box-shadow: none;
  
}

.panel-group .panel-heading {
  padding: 0;
}

.panel-group .panel-heading a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  position: relative;
  color: #131A21;
  font-size: 16px;
  font-weight: 600;
}
.head-why-astron{
    padding: 25px 0px;
}
.head-why-astron h2{
    color: #131A21;
    font-weight: 600;
    font-size: 30px;
}
a.collapsed{
    font-size: 20px;
}
.panel-title{
    margin-bottom: 0px;
}
.panel-group .panel-heading a::before {
  content: '-';
}
.panel-group .panel-heading a.collapsed::before {
  content: '+';
}
.panel-body p{
    padding:0px 28px;
    color: #131A21;
}
.group-24{
    width: 100%;
    height: 100%;
}
.archi-image img{
    width: 100%;
    height: 66vh;
    object-fit: cover;
}
.why-astron-is-best{
    padding-left: 50px;
}
.wrapper-astron-implementation{
    padding-top: 50px;
    padding-bottom: 40px;
}
.implementations h5{
    color: #D90018;
    font-size: 28px;
    margin-bottom: 0;
}
.since{
    /* font-family: 'quimbymayoralregular'; */
    color: #00235A;
}
.implementations h2{
    color: #131A21;
    padding: 15px 0px;
    font-weight: 600;
    font-size: 30px;

}
.implementations p{
    color: #131A21;
    line-height: 30px;
    opacity: 0.7;

}
.text{
    align-items: right;
}
/*----------------------------------------*/
.collapsed {
    list-style-type: none;
    margin: 0;
    color: #FFF;
  }
  
.collapsed li {
    display: inline-block;
    position: relative;
    padding-right: 2em;
    margin: 0;
  }
.collapsed li:after {
      content: '>';
      position: absolute;
      display: inline-block;
      right: 0;
      width: 2em;
      text-align: center;
    }
li:last-child:after {
      content: '';
    }
  
.collapsed li a {
    text-decoration: none;
    display: inline-block;
    color: #FFF;
    white-space: nowrap;
    font-family: 'airbnb_cereal_applight';
    font-weight:bold;
  }
.collapsed-blur{
     opacity: 0.8;
 } 
 /*------------------------------------------------what we do------------------------------------------*/
 .wrapper-world-wide{
     padding-top: 50px;
     padding-bottom: 20px;
 }
 .world-p-text p{
     color: #131A21;
     opacity: 0.7;
 }
 .world-wide-content p{
     color: #131A21;
     line-height: 25px;
 }
 .expediting-img figure{
     width: 100%;
     height: 100%;
     z-index: 1;
     position: relative;
     margin-left: 50px;
     margin-bottom: 15px;
 }
 .expediting-img figure img{
     width: 100%;
     height: 100%;
     object-fit: cover;
 }
 /* .back-clr{
     padding-right: 0px;  
 } */
 .back-img-position{
     padding-right: 0px;
     padding-left: 0px;
 }
 .mar{
     margin: 0;
 }
 .expediting-image figure img{
     width: 100%;
 }
 section.wrapper-Vendor-Expediting{
     padding-top: 25px;
     padding-bottom: 20px;
 }
 .exped{
     margin: 0;
 }
 .expediting-text h2{
     font-size: 20px;
     font-weight: 600;
     color: #131A21;
 }
 .expediting-image-clm{
     padding-top: 40px;
 }
 .expediting-text-clm{
    background-color: #F2F4F7;
     padding-top: 50px;
     padding-left: 115px;
    padding-right: 30px;
    padding-bottom: 50px;
 }
 .expediting-text h2{
     margin-bottom: 5px;
 }
.expediting-text p{
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 25px;
    font-size: 14px;
}
.expediting-img figcaption {
    width: 210px;
    bottom: 55px;
    right: -70px;
    position: absolute;
    z-index: 1;
    height: 150px;
    max-height: 150px;
}
.expediting-img figcaption img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.color-b{
    border: 1px solid #00235A;
    color: #00235A;
    padding: 8px 10px;
    position: relative;
    border-radius: unset; 
    transition: all 0.5s ease-in-out;
}
.color-bl button.color-b::after{
    position: absolute;
    content: '';
    left: 0;
    right:0;
    bottom: 0;
    width: 0;
    height: 100%;
    background-color:#00235A;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}
.color-bl button.color-b:hover::after{
    opacity: 1;
    right: 0;
    border-radius: 30px;
    width: 100%;

}
.color-b:hover{
    border-radius: 30px;
    color: #fff;
}
.color-b:focus{
    box-shadow: none;
}
.more-enquiry-1{
    text-align: start;
    padding-top: 25px;
}
.expediting-more h2{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.expediting-img {
    position: relative;
}
.expediting-more-enquiry{
    margin-left: 50px;
    
}
.more-service-heading{
    text-align: center;
    padding: 35px 0px;
}
.wrapper-more-service-for-you{
    padding-bottom:40px;
}
.more-service-heading h2{
    font-weight: 600;
}
/*-----------------------------------------contact-us------------------------------------------------*/
.contact_banner{
    background-image:  url(../images/contact-us-banner.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.banner-contact_news{
    background-image:  url(../../../../static/images/news-banner.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;

}
.contact-us-background{
    background-image:none;
}
.wrapper-form-black h3{
    color: #131A21;
}
.wrapper-form-black-2{
    margin: -80px 0px 0px;
    box-shadow: 0px 0px 99px #0A0A520F;
}
.path-img{
    width: 14px;
}
.float-righ{
    width: 75%;
    margin: 0 auto;
}
.float-righ img{
    width: 100%;
}
.locate-flex{
    display: flex;
    align-items: baseline;
}
.wrapper-country-office{
    padding-top:50px;
    padding-bottom:40px;
}
.wrapper-map-location{
    padding-top:50px;
    padding-bottom:40px;

}
.path{
    width: 30px;
}
.fig-locate-text{
    width: calc(100% - 30px);
}
.custom-col-contact{
    display: flex;
    align-items: baseline;
}
.custom-col-contact figure{
    width: 30px;
}
.custom-col-contact figure img{
    width: 22px;
}
.national-flag{
    width: calc(100% - 30px);
}
.custom-col-contact{
    /* padding: 14px 10px;
    height: 100%;
    margin-right: 5px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px; */
    border: 1px solid #E2E8F0;
    padding: 14px 10px;
    height: 100%;

}
.national-flag h6{
    font-weight: 600;
}
.national-flag p{
    font-size: 14px;
}
.padding-none{
    padding: 0;
}
.call-mar{
    width: 12px;
    margin-right:10px;
}
.wrapper-location h3{
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 30px;
}
.font-size-x{
    font-family: 'airbnb_cereal_applight';
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}
.font-size{
    font-family: 'airbnb_cereal_applight';
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}
h3.form-black-1 {
    margin-bottom: 0;
}
.query-header-2 h5{
    font-size: 26px;
}
.query-header-2 span{
    font-size: 14px;
}
.form-black-1{
    margin-top: 20px;
}
.display-bloc{
    display: block;
}
.shadow-path{
    box-shadow: 0px 0px 99px #0A0A520F;
}
.wrapper-news{
    padding-top:50px;
    padding-bottom:40px;
}
.contract-wins{
    width: 100%;
    height: 400px;
}
.wins-contract figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wrapper-tpi-services span{
    color: #A7A7A7;
}
.wrapper-tpi-services h5{
    color: #131A21;
    font-weight: 600;
    margin-top: 15px;
}
.wrapper-tpi-services p{
    font-family: 'airbnb_cereal_applight';
    font-size: 15px;
    font-weight: 600;
    color: #131A21;
}
.font-coloring{
    color: #D0222C !important;
}
.fig-locate-text h6{
    font-weight: 600;
}
/*---------------------------------------read news----------------------------*/
.wrapper-news-read{
    padding-top:50px;
    padding-bottom:40px;
}
.news-read-figure{
    width: 100%;
    height: 300px;
}
.news-read-col figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-read-col-1 span{
    font-size: 14px;
    color: #A7A7A7;
}
.news-read-col-1 h5{
    color: #131A21;
    font-weight: 600;
    margin-top:15px;
    margin-bottom:40px;

}
.news-read-col-1 p{
    margin-bottom: 20px;
    font-family: 'airbnb_cereal_applight';
    font-size: 15px;
    font-weight: 600;
    color: #131A21;
}
.publishing{
    margin-top: 50px;
}
.flex-news-triceps{
    display: flex;
    padding: 10px 0px;
}
.tower{
    width: calc(100% - 75%);
    height: 120px;
    margin: 0;
}
.side-content-news span{
    font-size: 14px;
    color: #A7A7A7;

}
.side-content-news{
    width: 75%;
    padding-right: 20px;
}
.side-content-news h5{
    font-weight: 600;
    margin: 10px 0px;
    color: #131A21;

}
.side-content-news p{
    font-family: 'airbnb_cereal_applight';
    font-size: 15px;
    font-weight: 600;
    color: #131A21;

}
.flex-news-triceps figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.read-decoration{
    color: unset;
    text-decoration: none;
}
.read-decoration:hover{
    color:#D0222C;
    text-decoration: none;
}

/*---------------------------------------------------------------career----------------------------------*/
.wrapper-career{
    padding-top:50px;
    padding-bottom:40px;
}
.velding{
    width: 50%;
}
.velding-flex{
    display: flex;
    justify-content: space-between;
    border-bottom:2px dashed #CDD4DE;
    padding: 30px 0px;
}
.viewapply{
    width: 50%;
    display: flex;
    justify-content: end;
}
.since-carrer h5{
    font-family: 'airbnb_cereal_applight';
    font-size: 18px;
    color: #D90018;
    font-weight: 600;
}
.since-carrer p{
    font-size: 18px;
}
.work-para {
    color: #131A21;
    opacity: 0.7;
    font-family: 'airbnb_cereal_applight';
    font-size: 18px;
}
.wrapper-carrer-since h2{
    font-size: 30px;
    font-weight: 600;
    color: #131A21;
    margin-top: 15px;
    margin-bottom: 25px;
}
.opacity-text-1{
    font-family: 'airbnb_cereal_applight';
    font-size: 16px;
    color: #131A21;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 40px;
    line-height: 30px;
}
.op-city-1{
    font-family: 'airbnb_cereal_applight';
    font-size: 16px;
    color: #131A21;
    font-weight: 600;
    line-height: 30px;
}
.open-position h2{
    font-size: 30px;
    color: #131A21;
    font-weight: 600;
	margin-bottom: 33px;
}
.velding h5{
    color: #D90018;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}
.abu-dhabi-country{
    text-align: right;
    padding-right: 20px;
}
.abu-dhabi-country h6{
    font-size: 18px;
    color: #131A21;
    font-weight: 600;

}
.abu-dhabi-country p{
    font-family: 'airbnb_cereal_applight';
    font-size: 16px;
    color: #131A21;
    font-weight: 600;
    opacity: 0.7

}
.wrapper-culture{
    padding-top: 50px;
    padding-bottom: 40px;
}
.velding span.btn-time{
    font-size: 16px;
    border: 1px solid #B0BBCE;
    border-radius: 5px;
    background-color: #EBF3FFEA;
    color: #636E79;
    padding: 10px;
}
.apply-job button.btn-apply:focus{
    box-shadow: none;
}
.apply-job button.btn-apply:hover{
    color: #fff;
}
.wrapper-open-position{
    padding-top:50px;
    padding-bottom:40px;
}
.btn-apply{
    position: relative;
    transition: all 0.5s ease-in-out;
    z-index: 2;
    border-radius: unset;
    color: #fff;
    background-color: #D90018;
}
.btn-apply::before{
    position: absolute;
    content: '';
    left: 0;
    right:0;
    bottom: 0;
    width: 0;
    background-color:rgba(198, 22, 41, 0.5);
    height: 100%;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}
.btn-apply:hover::before{
    right: 0;
    width: 100%;
}
.zblur{
    position: relative;
    z-index: 2;
    font-size: 16px;
}
.group-31-img{
    width: 100%;
    height: 100%;
    margin: 0;
}
.culture{
    position: relative;
}
.culture figure img{
    width: 100%;
    height: 100%;
}
.wrapper-ourculture h2{
    text-align: center;
    margin-bottom: 40px;
    font-size:30px ;
    font-weight: 600;
    color: #131A21;
}
.group-8633-img{
    width: 5%;
    position: absolute;
    top: 47%;
    right: 47%;
    margin: 0;
}
.group-8633-img .img{
    width: 100%;
}
/*---------------------------------------------services-----------------------------------------------------------------*/
.wrapper-service-detail{
    padding-bottom:40px;
}
.detail-content h3{
    font-size:26px;
    color:#131A21;
    margin-bottom: 25px;
    margin-top: 50px;
}
.detail-content p{
    font-family: 'airbnb_cereal_applight';
    font-size: 18px;
    color: #131A21;
    line-height: 30px;
    margin-bottom: 25px;
    }
.blurify_p{
    opacity: 0.8;
}
.break{
    display: block;
}
.breakdown-weight{
    font-size: 18px;
}
.wrapper-third-party{
    padding-top: 50px;
    padding-bottom: 40px;
}
.cursor-change{
    cursor:unset;
}
.hse-padding{
    font-family: 'airbnb_cereal_applight';
    padding: 0px 30px;
    margin-bottom: 0;
    line-height: 25px;
    font-size: 16px;
    font-weight: 500;
}
.country-office .row{
    margin: 0;
}
.submit_cv{
    /* background: #F5F9FF; */
    padding: 30px;
    background-image: url('../images/Mask\ Group\ 34.png');
}

.apply_cv{
    padding-right: 20px;
}
.cv_text h6{
    font-weight: 600;
}
/*----------------------------------------------------cv------------------------------------*/
.break_cont{
    display: block;
}
  #form1{
    display: flex;
    padding: 25px 0px 0px 0px;
  }
  .alert{
    text-align:center;
  }
  .cv_text{
      padding: 20px;
  }
  #blah{  
    height:100%;
    width:100%;
    display:block;
    margin-left: auto;
     margin-right: auto;
    padding:5px;
  }
  .input_buttoncv{
      padding: 49px 30px;
  }
  .cv_upload_zindex{
      position: relative;
      z-index: 2;
  }
 
  .bounce{
      display: flex;
      padding: 10px 0px;
  }
  #img_contain{
      width: 100px;
      height: 90px;
      border-radius:5px;
      margin-left: 15px;
      margin:20px auto;
  }
  .input-group{  
    margin-left:calc(calc(100vw - 320px)/2);
    margin-top:40px;
    width:320px;
  }
  .imgInp{  
    display:none;
    width:150px;
    margin-top:10px;
    padding:10px;
    background-color:#d3d3d3;  
    opacity: 1;
  } 
  .custom-file-label{
    cursor:pointer;
  }
  
  
  /*ajgdfjsagdsakjfjkhsdvvfjhsagdfukywggfeufygweejhfvjkagfkjgdfkjhsgdfjkdshgfjdhsgfhdf*/
  .card {
    width: 100%;
    height: auto;
    background: none;
    border: unset;
  }
  
  .card h3 {
    font-size: 22px;
    font-weight: 600;
    
  }
  
  .drop_box {
    margin: 10px 0;
    padding: 10px 30px;
    border-radius: 5px;
  }
  .pdf_content_doc{
      display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  .form{
      display: flex;
      justify-content: space-between;
  }
  .drop_box h4 {
    font-size: 16px;
    font-weight: 400;
    color: #00235A;
  }
  
  .drop_box p {
    font-size: 12px;
    color: #9B9B9B;
  }
  
  .btn-upload-cv-files{
    position: relative;
    transition: all 0.5s ease-in-out;
    z-index: 2;
    border-radius: unset;
    color: #fff;
    background-color: #D90018;
    padding: 8px 50px;
    margin-bottom: 0;
    border: unset;
}
.btn-upload-cv-files::before{
    position: absolute;
    content: '';
    left: 0;
    right:0;
    bottom: 0;
    width: 0;
    background-color:rgba(198, 22, 41, 0.5);
    height: 100%;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}
.btn-upload-cv-files:hover::before{
    right: 0;
    width: 100%;
}
.z-cv{
    position: relative;
    z-index: 3;
}
.supported_cv{
    margin-bottom: 20px;
}
.supported_cv p{
    margin-bottom: 0;
}
  .form input {
    margin: 10px 0;
    width: 100%;
    background-color: #e2e2e2;
    border: none;
    outline: none;
    padding: 12px 20px;
    border-radius: 4px;
  }
/*-----------------------------------------management pdf download section-------------------------*/
.wrapper_pdf_btn{
    background-image: url(../images/Mask\ Group\ 34.png);
    padding-top: 50px;
    padding-bottom: 40px;
    background-size: cover;
    background-repeat: no-repeat;
}
.pdf{
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    padding: 20px 41px;
}
.astron_certify_font h2{
    color:#ffffff ;
    text-align: center;
    font-weight: 600;
}
.pdf h4{
    width: 65%;
    margin-bottom: 0;
    font-size: 18px;
    color: #131A21;
}
.pdf span{
    width: calc(100% - 65%);
    text-align: right;
}
.color-pink{
    border-radius: 10px;
    color: #FFF;
    border: 1px solid #D900184D;
    background: #D9001833;
    color: #D90018;
    display: inline-block;
    font-size: 20px;
    padding: 0px 10px;
}
.color-pink:hover{
    background-color:#D90018 ;
    color: #fff;
    text-decoration: none;
}
.astron_certify_font{
    padding-top: 20px;
    padding-bottom: 30px;
}
.upload-position-cv h2{
    margin-bottom: 20px;
}
.nomi-flex p{
    margin-bottom: 0;
}
.color_arrow i{
    color:unset;
}
.color_arrow{
    border: 1px solid #000;
}
.color_arrow i:hover{
    color: #ffffff;
    
}

.about-us_video {
    height: 60vh !important;
}


#my_video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.coming_soon .modal-dialog {
    max-width: 767px;
}

.coming_soon .modal-dialog .modal-header {
    border-bottom: 0;
}

.modal-header {
}

.modal-header {
}

.coming_soon .modal-dialog .content_body img {
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.coming_soon .modal-dialog .content_body {
    position: relative;
    min-height: 300px;
    background-image: url("../images/coming_soon.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
padding-top: 40%;}

.coming_soon .modal-dialog .content_body h3 {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 46px;
    width: 100%;
    text-align: center;
    font-weight: bold;
color: #565258;}


.coming_soon .modal-content {padding-bottom: 30px;}

.custom-col-contact .national-flag p {
    font-family: inherit;
}

.banner-ndt{
    background-image: url(../images/NDT.jpg);
    background-size:100% 100%;
    background-repeat: no-repeat;
}

.trusted {
    border-top: none;
    border-bottom: none;
}

.wrapper-trust {
    padding: 0;
    margin-bottom: 10px;
    
}

/* ================Rohit css 08 june=============== */
.position_banner{
    background-size: cover;
	padding: 35px;
}
.position_ttl{
	width: 80%;
}
.position_ttl h4{
	color: #fff;
	font-size: 24px;
	margin: 0;
}
.postion_btn{
	width: calc(100% - 80%);
	text-align: right;
}
.postion_btn .btn_click{
	color: #fff;
	background: #D90018;
	padding: 9px 26px;
	border-radius: 0;
}
/* ================Rohit css 08 june=============== */
.inputBox{
width: 100%;
    text-align: center;
    background-color: #fff !important;
    margin-bottom: 25px;
}
.inputField{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.inputField input{
border: 1px solid #E9EBEB;
    margin-bottom: 25px;
    /* margin-right: 15px; */
    padding: 8px 15px;
    width: 48%;
}
.inputField input::placeholder{
    font-size: 12px;
    color: rgba(9, 9, 9, 0.9);
    font-weight: bold;
}
.hidee{
    display: none;
}
