body {
    /* overflow-x: hidden; */
    font-family: Montserrat;
}
.container {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
}
button{
    background: transparent;
    border: none;
}
button:focus {
    box-shadow: none !important;
}
input:focus {
    box-shadow: none !important;
}
select:focus-visible, input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
textarea:focus {
    box-shadow: none !important;
}
a{
    text-decoration: none;
    transition: .5s;
}
h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0;
}
ul{
    margin-bottom: 0;
    padding-left: 0;
}

/* Mobile navbar menu */
button#mob-menu-btn{
    position: relative;
    width: 50px;
    height: 50px;
    /* background: #fff; */
    /* box-shadow: 0px 10px 20px rgba(0,0,0,0.08); */
    /* border-radius: 6px; */
    display: none;
    justify-content: start;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}
button#mob-menu-btn span{
    position: absolute;
    width: 38px;
    height: 4px;
    background: #ffffff;
    border-radius: 5px;
    transition: 0.5s;
    left: 8px;
}
button#mob-menu-btn span:nth-child(1) {
    transform: translateY(-13px);
    /* width: 30px;
    left: 8px; */
}
button#mob-menu-btn.active span:nth-child(1) {
    width: 40px;
    transform: translateY(0) rotate(45deg);
    /* transition-delay: 0.125s; */
    background: #ffffff;
}
button#mob-menu-btn span:nth-child(2) {
    transform: translateY(13px);
    /* width: 20px;
    left: 8px; */
}
button#mob-menu-btn.active span:nth-child(2) {
    width: 40px;
    transform: translateY(0) rotate(315deg);
    /* transition-delay: 0.25s; */
    background: #ffffff;
}
button#mob-menu-btn.active span:nth-child(3) {
    transform: translateX(60px);
}
/* End of Mobile navbar menu */

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgb(32 37 45);
    color: #FFFFFF;
    border-color: transparent;
    z-index: 99;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    transition: .7s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top:focus {
    outline: 0;
    box-shadow: none !important;
}
.back-to-top:active {
    color: rgb(32 37 45);
    background-color: #fff;
}
.back-to-top:hover {
    background-color: #fff;
    color: rgb(32 37 45);
}
/* End of Back to top */

/* Scrollbar */
body::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #FFF;
	border-radius: 0;
}
body::-webkit-scrollbar
{
	width: 10px;
	background: rgb(32 37 45);
}
body::-webkit-scrollbar-thumb
{
	border-radius: 0;
	background: rgb(32 37 45);
}
/* End of Scrollbar */

/* Pre loader */
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999999999;
    top: 0;
    left: 0;
    overflow-x: hidden;
    background: #ffffffb0;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}
.pre-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 175px;
    height: 175px;
    position: relative;
}
.pre-wrapper:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #20252d;
    border-radius: 50%;
    animation: pre-anim 3.5s;
    z-index: -1;
}
@keyframes pre-anim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* End of Pre loader */

/* Header */
.header-wrap {
    /* background: #ffffff 0% 0% no-repeat padding-box; */
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 100;
    top: 0;
    padding: 15px 0;
    transform: translateY(30px);
    transition: .7s;
}
header.header-wrap.scrolled {
    transform: translateY(0);
    background: #20252dcc;
    backdrop-filter: blur(5px);
}
.header-wrap nav.navbar {
    padding: 0;
}
.header-wrap #navbarNav {
    /* transform: translateX(-120px); */
}
header ul.navbar-nav {
    /* float: right; */
}
.header-wrap ul.navbar-nav{
    display: flex;
    align-items: center;
    /* gap: 35px; */
    gap: 50px;
    justify-content: center;
    width: 100%;
}
.header-wrap ul.navbar-nav li{
    position: relative;
}
.header-wrap ul.navbar-nav li > a {
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 0;
    text-transform: uppercase;
    position: relative;
}
.header-wrap ul.navbar-nav li > a:hover{
    text-shadow: 1px 1px 3px #FFF;
}
.header-wrap ul.navbar-nav > li > a:before{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #20252d;
    bottom: 0;
    left: 0;
    transition: .5s;
}
.header-wrap ul.navbar-nav > li > a:hover:before{
    width: 100%;
}
.header-wrap ul.navbar-nav li.current-menu-item a::before {
    width: 100% !important;
    height: 3px;
}
.head-logo-block{
    /* overflow: hidden; */
    border-radius: 50px;
    height: 65px;
    position: relative;
    display: flex;
    z-index: 1;
}
.head-logo-block a.head-logo {
    border-radius: 50px;
    background: #20252D;
    padding: 0 16px 0 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: end;
}
.head-bc-btn {
    border-radius: 50px;
    background: rgba(21, 41, 56, 0.89);
    padding: 0 30px 0 82px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #D2D2D2;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.56px;
    text-transform: uppercase;
    width: 228px;
    transform: translateX(17px);
    z-index: -1;
    transition: .7s;
    position: absolute;
}
.head-logo-block:hover .head-bc-btn {
    transform: translateX(120px);
}
.head-bc-btn:hover {
    background: rgb(32 37 45);
}
.head-bc-btn i{
    color: #D2D2D2;
    font-size: 18px;
    transform: rotate(45deg);
    transition: .5s;
}
.head-bc-btn:hover i {
    transform: rotate(0) translateX(5px);
}
.head-right{
    display: flex;
    align-items: center;
    gap: 15px;
}
.head-right a{
    width: 58px;
    height: 55px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.head-right a:nth-child(2){
    background: rgba(32, 37, 45, 0.90);
}
.head-right a:hover{
    background: rgba(32, 37, 45, 0.90);
}
.head-right a img {
    transition: .5s;
}
.head-right a:hover img {
    transform: scale(1.1);
}
.head-right a:nth-child(2){
    display: none;
}

/* Sub menu css */
.nav-click {
    position: absolute;
    display: none;
    width: 10px;
    height: 10px;
    border-left: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    transform: rotate(-45deg);
    top: 10px;
    right: 0;
    z-index: 999;
    background-repeat: no-repeat;
    transition: .5s;
}
.navbar-collapse>ul>li.has-child>.nav-click {
    top: 10px;
    right: 0;
}
button.navbar-toggler {
    display: none;
}
.navbar-collapse>ul>li>.sub-menu {
    transition: all 0.5s;
}
.navbar-collapse>ul>li>.sub-menu {
    position: absolute;
    max-height: 0px;
    overflow: hidden;
    margin: 0;
    width: max-content;
    padding: 0 30px;
    top: 38px;
    left: -20px;
    transition: 0.5s;
    border-radius: 0;
    background: #EFEFEF;
    display: flex;
    flex-direction: column;
}
.navbar-collapse>ul li:hover .sub-menu {
    overflow: hidden;
    max-height: 200px;
    padding: 20px 30px 18px;
}
.navbar-collapse>ul>li>.sub-menu>li {
    padding: 10px 0 !important;
    text-align: left;
    display: block;
}
.navbar-collapse>ul>li>.sub-menu>li>a {
    color: #37586D !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 0 0 !important;
    text-transform: capitalize;
}
.navbar-collapse>ul>li>.sub-menu>li>a:hover{
    color: #427196 !important;
}
/* End of Sub menu css */

/* Custom Submenu */
.custom-submenu-block {
    background: #EFEFEF;
    /* width: 761px; */
    width: 200px;
    height: auto;
    padding: 0 25px 0;
    position: absolute;
    top: 40px;
    left: -20px;
    max-height: 0;
    overflow: hidden;
    transition: 1s;
}
.custom-submenu-link.subshow .custom-submenu-block,
.custom-submenu-link:hover .custom-submenu-block{
    max-height: 1000px;
    /* padding: 15px 32px 32px; */
    padding: 22px 25px 22px;
}
.sector-menus-blocks{
    display: flex;
    flex-wrap: wrap;
    /* gap: 35px; */
    gap: 5px;
    flex-direction: column;
}
.sector-menus{
    position: relative;
    /* padding: 0 20px 28px 0; */
    /* border-bottom: 1px solid #D1D1D1; */
    /* width: 47%; */
    width: 100%;
    /* margin-bottom: -10px; */
    margin-bottom: 0;
}
.sector-menus:nth-child(1), .sector-menus:nth-child(2){
    /* padding-top: 25px; */
    padding-top: 0;
}
.sector-menus:nth-child(5), .sector-menus:nth-child(6){
    border-bottom: none;
    /* padding-bottom: 38px; */
}
.sector-menus h3 {
    color: #37586D;
    /* font-size: 18px; */
    font-size: 14px;
    font-weight: 700;
    /* line-height: 30px; */
    line-height: 24px;
    /* margin-bottom: 12px; */
}
.sector-menus p {
    color: #535050;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
}
.sector-menus img{
    position: absolute;
    /* top: 28px; */
    top: 3px;
    right: 20px;
}
.sector-menus:nth-child(1) img, .sector-menus:nth-child(2) img {
    top: 28px;
}

.all-sector-block{
    padding-top: 27px;
    border-top: 1px solid #D1D1D1;
}
.all-sector-block a {
    color: #37586D;
    font-size: 15px;
    font-weight: 600;
}
.all-sector-block a:hover{
    color: #20252D;
}


/* End of Custom Submenu */

/* End of Header */

/* Home page */
.page-sections {
    /* overflow: hidden; */
    position: relative;
}
.home-video-wrap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
.home-video-wrap video, .home-video-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-banner-section{
    width: 100%;
    height: 100vh;
}
.main-banner-contents{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 72px;
}
.main-banner-contents h1 {
    color: #FFF;
    font-size: 69px;
    font-weight: 500;
    line-height: 87px;
    letter-spacing: 0.69px;
    max-width: 790px;
}
.main-banner-contents a{
    color: #FFF;
    font-size: 21px;
    font-weight: 400;
    line-height: 61px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    width: fit-content;
}
.main-banner-contents a img{
    transition: .5s;
}
.main-banner-contents a:hover img{
    transform: translateX(10px);
}
.home-intro-section{
    position: relative;
    margin-top: 61px;
    z-index: 1;
    padding: 55px 0 90px;
}
.home-intro-section:before{
    content: '';
    position: absolute;
    width: 93%;
    height: 100%;
    background: #FFF;
    top: 0;
    left: 0;
    z-index: -1;
}
.home-intro-section .container{
    padding-right: 105px;
}
.home-intro-section .row .col-lg-6 {
    display: flex;
    align-items: center;
}
.home-intro-contents{
    max-width: 498px;
}
.home-intro-contents label{
    color: #7A7373;
    font-size: 14px;
    font-weight: 400;
    line-height: 34px; 
    letter-spacing: 1.54px;
    text-transform: uppercase;
    margin-bottom: 21px;
}
.default-contents h2 {
    color: #1F3443;
    font-size: 46px;
    font-weight: 500;
    line-height: 60px;
    margin-bottom: 35px;
}
.default-contents p {
    color: #000;
    font-size: 19px;
    font-weight: 400;
    line-height: 33px;
    margin-top: 25px;
}
.default-btn {
    color: #212632;
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
    display: flex;
    align-items: center;
    width: fit-content;
    text-transform: uppercase;
    gap: 28px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 8px;
    z-index: 1;
    margin-top: 35px;
    border-radius: 35px;
}
.default-btn:hover {
    padding: 10px 25px;
    color: #fff;
    box-shadow: 10px 10px 20px rgb(32 37 45 / 56%);
}
.default-btn:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: .5s;
}
.default-btn:hover:before{
    height: 100%;
    background: #20252d;
    border-radius: 35px;
}
.default-btn i {
    font-size: 18px;
    color: #212632;
    transition: .5s;
    transform: rotate(45deg);
}
.default-btn:hover i{
    transform: rotate(0);
    color: #fff;
}
.home-intro-pic{
    position: relative;
}
.home-intro-pic:before {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background: #20252d;
    top: 195px;
    left: -75px;
}
.home-intro-pic > img{
    width: 100%;
}
.home-intro-pic a{
    position: absolute;
    bottom: 28px;
    left: 32px;
    color: #E5DFD8;
    font-size: 14px;
    font-weight: 500;
    line-height: 29px;
    text-transform: uppercase;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 16px;
}
.home-intro-pic a img{
    
}

.home-intro-counters{
    display: flex;
    margin-top: 70px;
}
.home-intro-single-count{
    color: #000;
    font-size: 19px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 1.71px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #C8C8C8;
    padding-left: 45px;
    padding-right: 38px;
}
.home-intro-single-count:first-child {
    padding-left: 0;
}
.home-intro-single-count:last-child{
    border-right: none;
}
.home-intro-single-count .home-intro-count-no {
    color: #20252D;
    font-size: 116px;
    font-weight: 300;
    line-height: 80px;
    display: flex;
    align-items: center;
    margin-bottom: 23px;
}
.our-business-section{
    background: #EFEFEF;
    margin-top: 140px;
    padding: 57px 0 65px;
}
.our-business-contents{

}
.our-business-contents h2 {
    text-align: center;
    color: #312F2F;
    font-size: 31px;
    font-weight: 600;
    line-height: 73px;
    letter-spacing: 0.62px;
    text-transform: uppercase;
    margin-bottom: 48px;
}
.our-business-sectors-blocks{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.single-our-business-sector{
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
    width: 32.7%;
}
.single-our-business-sector::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.87) 100%);
    bottom: 0;
    left: 0;
    transition: .7s;
}
.single-our-business-sector::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgb(32 37 45) 100%);
    bottom: 0;
    left: 0;
    transition: .7s;
}
.single-our-business-sector:hover:after{
    height: 100%;
}
.single-our-business-sector > img{
    width: 100%;
    /* height: auto; */
    object-fit: cover;
}
.single-our-business-sector-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 50px 40px;
    z-index: 1;
    transition: .7s;
}
.single-our-business-sector:hover .single-our-business-sector-detail{
    padding: 50px 40px 60px;
}
.single-our-business-sector-detail h3 {
    color: #FFF;
    font-size: 29px;
    font-weight: 600;
    line-height: 33px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.single-our-business-sector-detail p {
    color: #ECE6E6;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
}
.single-our-business-sector-detail img {
    position: absolute;
    top: 50px;
    right: 32px;
}
.our-business-sector-btn {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.our-business-sector-btn a.default-btn {
    font-size: 17px;
    margin-top: 0;
}
.home-delmon-about-section{
    padding: 130px 0 95px;
    background: #F9F9F9;
}
.home-delmon-about-picture{
    position: relative;
    margin-right: 35px;
}
.home-delmon-about-picture img {
    width: 93%;
    height: auto;
}
/* .home-delmon-about-line{
    width: 326px;
    height: 2px;
    background: #E1E1E1;
    position: absolute;
    right: 0;
    top: 172px;
    z-index: 1;
    display: flex;
    align-items: center;
}
.home-delmon-about-line:before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: #E8E8E8;
    left: -25px;
    border-radius: 50%;
}
.home-delmon-about-line:after {
    content: '';
    position: absolute;
    width: 87px;
    height: 87px;
    border: 1px solid rgba(232, 232, 232, 0.39);
    border-radius: 50%;
    left: -45px;
} */
.home-delmon-about-brand {
    width: 246px;
    /* height: auto; */
    height: fit-content;
    /* background: #20252D; */
    background: rgba(49, 56, 67, 0.88);
    backdrop-filter: blur(5.5px);
    padding: 25px 32px 28px;
    position: absolute;
    /* bottom: 45px; */
    top: 45px;
    right: 0;
}
.home-delmon-about-brand-count {
    color: #FFF;
    font-family: Roboto;
    font-size: 94px;
    font-weight: 700;
    line-height: 103px;
    letter-spacing: -2.82px;
    display: flex;
    align-items: center;
    /* margin-bottom: 28px; */
    margin-bottom: 5px;
}
.home-delmon-about-brand-count span{

}
.home-delmon-about-brand p {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.home-delmon-about-contents {
    max-width: 461px;
    padding-left: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -35px;
    position: relative;
}
.home-delmon-about-contents h4 {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000;
    color: #fff;
    font-size: 123px;
    font-style: italic;
    font-weight: 900;
    line-height: 99px;
    letter-spacing: 7.38px;
    text-transform: uppercase;
    position: absolute;
    /* top: 54%; */
    top: 48%;
    right: -82%;
    transform: rotate(-90deg);
    opacity: 0.06;
}
.home-delmon-about-contents h2 {
    margin-bottom: 15px;
}
.home-our-client-section{
    background: #F9F9F9;
    padding: 0 0 75px;
}
.home-client-title{
    margin-bottom: 15px;
}
.home-client-title h2 {
    color: #2D373E;
    font-size: 32px;
    font-weight: 700;
    line-height: 58px;
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
}
.home-client-title h2:before{
    content: '';
    position: absolute;
    width: 98px;
    height: 1px;
    background: #20252d;
    right: -142px;
}
.home-our-client-slider{
    /* padding-left: 75px; */
}
.home-our-client-slider .slick-list {
    padding-left: 75px;
}
.home-client-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}
.home-client-logo img{
    mix-blend-mode: multiply;
}
.home-our-client-slider .slick-dots{
    /* margin-left: -75px; */
}
.slick-dots {
    display: flex;
    gap: 15px;
    justify-content: center;
    bottom: -40px;
}
.slick-dots li {
    margin: 0;
    width: 15px;
    height: 15px;
}
.slick-dots li button{
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid #2D373E;
    opacity: 1;
    border-radius: 50%;
}
.slick-dots li.slick-active button{
    background: #2D373E;
}
.slick-dots li button:before{
    display: none;
}
.our-specialization-section{
    position: relative;
    padding: 122px 0 100px;
}
.our-specialization-video-block{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.our-specialization-video-block:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: #08141E; */
    background: #08141eed;
    top: 0;
    left: 0;
}
.our-specialization-video-block video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-specialization-wrap{
    position: relative;
}
.our-specialization-contents {
    position: sticky;
    top: 120px;
}
.our-specialization-contents h2{
    color: #FFF;
    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
    margin-bottom: 52px;
}
.our-specialization-contents p{
    color: #FCFCFC;
    font-family: Roboto;
    font-size: 23px;
    font-weight: 400;
    line-height: 37px;
    max-width: 386px;
}
.our-specialization-contents a.default-btn {
    font-size: 37px;
    width: 378px;
    color: #fff;
    justify-content: space-between;
    padding-top: 34px;
    margin-top: 50px;
}
.our-specialization-contents a.default-btn:hover{
    padding: 20px 40px;
}
.our-specialization-contents a.default-btn:before {
    background: #A6A6A6;
    bottom: unset;
    top: 0;
}
.our-specialization-contents a.default-btn:hover:before {
    background: #427196;
}
.our-specialization-contents a.default-btn i {
    font-size: 35px;
    color: #fff;
}
.our-specialization-blocks{
    padding-left: 20px;
}
.our-specialization-single{
    margin-top: 65px;
}
.our-specialization-single:first-child{
    margin-top: 0;
}
.our-specialization-single img {
    margin-bottom: 27px;
    width: 100%;
    height: auto;
}
.our-specialization-single h4{
    color: #FFF;
    font-family: Roboto;
    font-size: 37px;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 0.37px;
    margin-bottom: 20px;
}
.our-specialization-single p{
    color: #C9C9C9;
    font-family: Roboto;
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
}
.home-why-choose-section{
    background: #FFF;
    padding: 70px 0 75px;
    overflow: hidden;
}
.home-why-choose-title{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.home-why-choose-title h2{
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000;
    color: #fff;
    /* font-size: 133px; */
    font-size: 115px;
    font-style: italic;
    font-weight: 900;
    line-height: 99px;
    letter-spacing: 7.98px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    left: 14%;
    opacity: 0.11;
}
.home-why-choose-title h3{
    color: #134E7C;
    font-size: 53px;
    font-weight: 700;
    line-height: 59px;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    text-align: center;
}
.home-why-choose-wrap{
    margin-top: 60px;
}
.home-why-choose-block{
    display: flex;
    align-items: center;
    margin-top: 80px;
}
.home-why-choose-block:first-child{
    margin-top: 0;
}
.home-why-choose-block:nth-child(Even){
    flex-direction: row-reverse;
}
.home-why-choose-block:nth-child(Even) .home-why-choose-contents{
    padding-left: 0;
    padding-right: 50px;
}
.home-why-choose-contents{
    padding-left: 50px;
    width: 45%;
}
.home-why-choose-contents h4{
    color: #2D373E;
    font-size: 41px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 44px;
    max-width: 500px;
}
.home-why-choose-contents p{
    color: #000;
    font-family: Roboto;
    font-size: 19px;
    font-weight: 400;
    line-height: 33px;
    max-width: 445px;
}
.home-why-choose-pic{
    width: 55%;
}
.home-why-choose-pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* End of Home page */

/* Footer */
footer {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 92px 0 55px;
    backdrop-filter: opacity(0.11);
    background-color: #20252D !important;
}
footer .row{
    position: relative;
}
.footer-contact-details{
    padding-right: 55px;
}
.footer-contact-details h3 {
    color: #FFF;
    font-size: 43px;
    font-weight: 500;
    line-height: 55px;
}
.footer-contact-details h5{
    color: #D7D7D7;
    font-size: 16px;
    font-weight: 300;
    line-height: 27px; 
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-top: 36px;
}
.footer-contact-details a {
    color: #FFF;
    font-size: 28px;
    font-weight: 400;
    line-height: 47px;
    letter-spacing: -0.31px;
    display: block;
}
.footer-contact-details p{
    color: #ACACAC;
    font-size: 19px;
    font-weight: 400;
    line-height: 27px;
    margin-top: 43px;
}
.footer-links{
    padding-top: 22px;
}
.footer-links h4 {
    color: #FFF;
    font-size: 26px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 46px;
}
.footer-links ul{

}
.footer-links ul li{
    list-style: none;
    margin: 15px 0;
}
.footer-links ul li a {
    color: #D7D7D7;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.2px;
}
footer a:hover{
    text-shadow: 1px 1px 3px #D7D7D7;
}
.footer-social{
    margin-top: 30px;
    padding-top: 40px;
    position: relative;
}
.footer-social:before{
    content: '';
    position: absolute;
    width: 59px;
    height: 1px;
    background: #EDEDED;
    top: 0;
    left: 0;
}
.footer-social a {
    color: #D7D7D7;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    display: flex;
    align-items: center;
    gap: 13px;
}
.footer-social a i{
    color: #D7D7D7;
    font-size: 32px;
    transition: .5s;
}
.footer-social a:hover i{
    color: #D7D7D7;
}
.footer-copyrights{
    margin-top: 42px;
}
.footer-copyrights p {
    color: #D7D7D7;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
}
.footer-copyrights p a{
    color: #D7D7D7;
}
.footer-copyrights p br {
    display: none;
}
/* End of Footer */

/* About us */
.inner-banner-section{
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
}
.inner-banner-section, .inner-banner-contents {
    width: 100%;
    height: 515px;
}
.inner-banner-contents{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding-bottom: 58px;
}
.inner-banner-contents h1{
    color: #FFF;
    font-size: 50px;
    font-weight: 500;
    line-height: 60px;
    margin-bottom: 35px;
}
.inner-banner-contents p{
    color: #FFF;
    font-size: 21px;
    font-weight: 400;
    line-height: 35px;
    max-width: 752px;
}
.about-info-section{
    padding: 70px 0 70px;
}
.about-info-contents{
    text-align: center;
    max-width: 1050px;
    margin: auto;
}
.about-info-contents h2{
    color: #1F3443;
    font-size: 29px;
    font-weight: 500;
    line-height: 44px;
    margin-bottom: 43px;
}
.about-info-contents p{
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
}
.about-counter-section{
    width: 100%;
    height: auto;
    padding: 200px 0;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
}
.about-counter-section .container{
    /* padding-left: 0; */
}
.about-counter-contents{
    background: rgba(32, 37, 45, 0.93);
    backdrop-filter: blur(2px);
    padding: 97px 120px 110px 0;
    max-width: 1045px;
    position: relative;
}
.about-counter-contents:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(32, 37, 45, 0.93);
    backdrop-filter: blur(2px);
    top: 0;
    left: -100%;
}
.about-counter-contents h2{
    color: #FFF;
    font-size: 39px;
    font-weight: 500;
    line-height: 57px; 
    margin-bottom: 42px;
}
.about-counter-contents p{
    color: #FFF;
    font-size: 23px;
    font-weight: 400;
    line-height: 38px; 
}
.about-counter-contents .home-intro-single-count,
.about-counter-contents .home-intro-single-count .home-intro-count-no {
    color: #FFF;
}
.about-vision-mission-section{
    background: #20252D;
    padding: 110px 0 140px;
    overflow: hidden;
}
.about-vision-mission-section .container{
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
}
.about-vision-mission-contents {
    padding-left: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.vision-mission-contents{
    position: relative;
}
.vision-mission-contents h4{
    color: #FFF;
    font-size: 49px;
    font-weight: 500;
    line-height: 73px;
    letter-spacing: 0.98px;
    margin-bottom: 18px;
}
.vision-mission-contents p{
    color: #FFF;
    font-size: 31px;
    font-weight: 400;
    line-height: 50px;
}
.vision-content{
    padding-bottom: 68px;
    margin-bottom: 47px;
}
.vision-content:before{
    content: '';
    position: absolute;
    width: 82px;
    height: 1px;
    background: #FFF;
    bottom: 0;
    left: 0;
}
.mission-content p{
    font-size: 25px;
    line-height: 43px;
}
.about-vision-mission-picture {
    padding-left: 45px;
}
.about-vision-mission-picture img {
    width: 100%;
    height: auto;
}
.ceo-message-section{
    padding: 110px 0 95px;
    background: #F4F4F4;
}
.ceo-message-contents-block{
    display: flex;
    align-items: center;
    justify-content: center;
}
.ceo-picture{
    position: relative;
    width: 520px;
    z-index: 1;
}
.ceo-picture img{
    width: 100%;
    height: auto;
}
.ceo-message-name {
    position: relative;
    background: #20252D;
    width: fit-content;
    padding: 25px 30px;
    color: #FFF;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    position: absolute;
    bottom: 32px;
    right: -20px;
    display: flex;
    min-width: 405px;
    flex-direction: column;
    justify-content: center;
}
.ceo-message-name::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 47px;
    background: url('../img/ceo-shape.png');
    right: -26px;
}
.ceo-message-name span{
    color: #FFF;
    font-size: 19px;
    font-weight: 500;
    line-height: 34px;
    display: block;
}
.ceo-message-details{
    width: 594px;
    padding: 78px 60px 115px 90px;
    background: #FFF;
    margin-left: -35px;
}
.ceo-message-details h2{
    color: #071522;
    font-size: 39px;
    font-weight: 500;
    line-height: 53px;
    letter-spacing: 0.78px;
    margin-bottom: 24px;
}
.ceo-message-details p{
    color: #0C0C0C;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 18px;
}
.about-bottom-section{
    padding: 65px 0 90px;
}
.about-bottom-section .single-our-business-sector{
    width: 49.5%;
}
.about-bottom-section .single-our-business-sector-detail {
    padding-right: 85px;
}
.about-bottom-section .single-our-business-sector-detail p {
    font-size: 16px;
    line-height: 24px;
}
.about-bottom-section .single-our-business-sector-detail h3 {
    text-transform: capitalize;
}
.about-bottom-section .single-our-business-sector:hover .single-our-business-sector-detail {
    padding-right: 85px;
}
.about-bottom-section .single-our-business-sector-detail img {
    top: unset;
    bottom: 65px;
}
/* End of About us */

/* Our Management */
.our-team-section{
    background: #20252D;
    padding: 75px 0 90px;
}
/* .our-team-section .container {
    padding-left: 200px;
    padding-right: 200px;
} */
.our-team-section .container {
    padding-left: 90px;
    padding-right: 90px;
}
.our-team--wrap{

}
.our-team--wrap > p{
    color: #FFF;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    line-height: 33px; 
    max-width: 1050px;
    margin: auto;
}
.our-team--wrap h2{
    color: #FFF;
    text-align: center;
    font-size: 46px;
    font-weight: 500;
    line-height: 41px; 
    letter-spacing: 0.92px;
    margin-top: 58px;
}
.our-team-contents-block{
    display: flex;
    margin-top: 65px;
}
.our-team-picture{
    position: relative;
}
.our-team-picture img{

}
.our-team-picture .our-team-email {
    position: absolute;
    bottom: 0;
    right: 0;
    background: url('../img/mail-shape.png');
    width: 144px;
    height: 145px;
    background-size: contain;
    display: flex;
    align-items: end;
    justify-content: end;
    padding: 28px;
    transform: translate(18px, 18px);
    transition: .5s;
}
.our-team-picture .our-team-email:hover{
    transform: unset;
}
.our-team-details{
    padding-left: 72px;
    padding-top: 42px;
}
.our-team-mem-name{
    color: #FFF;
    font-size: 39px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 8px;
}
.our-team-mem-pos{
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 42px;
}
.our-team-details p{
    color: #FFF;
    font-size: 19px;
    font-weight: 400;
    line-height: 31px;
}
.bod-member-section{
    padding: 70px 0 75px;
    background: #F5F5F5;
}
.team-member-list-contents{

}
.team-member-list-contents h2{
    color: #071522;
    font-size: 31px;
    font-weight: 500;
    line-height: 41px;
    margin-bottom: 18px;
    text-align: center;
}
.team-members-wrap{

}
.team-members-wrap .col-lg-3 {
    padding-left: 15px;
    padding-right: 15px;
}
.team-member-single{
    margin-top: 38px;
}
.team-member-single-pic{
    position: relative;
    margin-bottom: 15px;
}
.team-member-single-pic img{
    width: 100%;
}
.team-member-mail {
    position: absolute;
    bottom: 0;
    right: 0;
    background: url('../img/other-mem-mail.png');
    width: 72px;
    height: 72px;
    background-size: contain;
    display: flex;
    align-items: end;
    justify-content: end;
    padding: 20px;
    transform: translate(15px, 15px);
    transition: .5s;
}
.team-member-mail:hover{
    transform: unset;
}
.team-member-name{
    color: #071522;
    font-size: 19px;
    font-weight: 500;
    line-height: 33px; 
}
.team-member-position{
    color: #777;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
}
section.member-repeat-layout-section {
    padding-top: 60px;
}
section.member-repeat-layout-section .member-repeat-list-wrap{
    padding-bottom: 60px;
}
/* End of Our Management */

/* Our Sectors */
.our-sectors-section{
    padding: 55px 0 65px;
}
.our-sectors-wrap{

}
.our-sectors-wrap p{
    color: #000;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    line-height: 33px; 
    max-width: 1050px;
    margin: auto;
}
.our-sectors-contents-block{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: auto;
    margin-top: 85px;
}
a.our-sectors-single-box{
    color: #5F6168;
    text-align: center;
    font-size: 31px;
    font-weight: 600;
    line-height: 57px;
    flex: 0 0 33.33%;
    padding: 58px 40px 36px;
    height: 260px;
    transition: .5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #DBDBDB;
}
a.our-sectors-single-box:nth-child(1),
a.our-sectors-single-box:nth-child(2),
a.our-sectors-single-box:nth-child(3){
    border-top: none;
}
a.our-sectors-single-box:hover{
    background: #20252D;
    color: #FFF;
    padding: 48px 40px 36px;
}
a.our-sectors-single-box > img{
    margin-bottom: 22px;
    transition: .5s;
}
a.our-sectors-single-box:hover > img{
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}
a.our-sectors-single-box button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 33px; 
    /* margin-top: 15px; */
    transition: .5s;
}
a.our-sectors-single-box:hover button{
    margin-top: 8px;
}
/* End of Our Sectors */

/* Single Our Sectors */
.single-sector-banner, .single-sector-banner .inner-banner-contents{
    height: 685px;
}
.single-our-sectors-section{
    padding-bottom: 110px;
}
.single-our-sectors-contents{
    padding-top: 68px;
    padding-right: 20px;
}
.single-our-sectors-contents label{
    color: #21272F;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 3.24px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 35px;
    padding-right: 160px;
}
.single-our-sectors-contents label:before{
    content: '';
    position: absolute;
    width: 136px;
    height: 1px;
    background: #423F3F;
    right: 0;
}
.single-our-sectors-contents h2{
    color: #1F3443;
    font-size: 26px;
    font-weight: 500;
    line-height: 43px;
    margin-bottom: 28px;
}
.single-our-sectors-contents p{
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: 31px;
    margin-top: 22px;
}
.single-our-sectors-contents > figure.wp-block-image {
    /* width: 100%;
    height: auto; */
    margin-top: 40px; 
}
.sector-facts-block{
    margin-top: 65px;
}
.sector-fact-counters{
    display: flex;
    gap: 18px;
}
.sector-fact-single-count{
    background: #F3F3F3;
    padding: 35px 32px 25px;
    height: 100%;
    min-width: 244px;
    color: #1F1D2B;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.18px;
}
.sector-fact-count-no{
    color: #294D6F;
    font-family: Roboto;
    font-size: 59px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -1.18px;
}
.sector-projects-block{
    margin-top: 75px;
}
.sector-projects-slider{
    margin-top: 45px;
}
.sector-projects-slider .slick-track {
    left: -8px;
}
.sector-project-slide{
    position: relative;
    margin: 0 8px;
}
.sector-project-slide img{
    height: auto;
    object-fit: cover;
    width: 100%;
}
.sector-project-detail{
    position: absolute;
    bottom: 0;
    left: 0;
    background: #F8F8F8;
    padding: 18px 25px;
    width: 82%;
}
.sector-project-detail span{
    color: #676666;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 2.34px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.sector-project-detail h5{
    color: #000;
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.17px;
}
.slick-next:before, .slick-prev:before {
    content: '' !important;
    font-size: 0;
    opacity: 1 !important;
    width: 16px;
    height: 31px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}
.slick-next:before{
    background: url('../img/sector-project-arrow-right.png');
}
.slick-prev:before{
    background: url('../img/sector-project-arrow-left.png');
}
.slick-prev, .slick-next {
    width: auto;
    height: auto;
}
.sector-projects-slider .slick-prev {
    left: -40px;
}
.sector-projects-slider .slick-next {
    right: -15px;
}
.single-our-sectors-handled {
    position: sticky;
    /* top: 50px; */
    top: 95px;
    padding: 23px 42px 20px;
    background: #F4F9FC;
    width: 100%;
    margin-top: -260px; 
}
.single-our-sectors-handled label {
    height: 37px;
    width: fit-content;
    padding: 0 25px;
    background: #20252D;
    transform: rotate(-90deg);
    position: absolute;
    top: 105px;
    left: -122px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto;
    font-size: 17px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}
/* .sector-handled-logo{
    margin-bottom: 16px;
    position: relative;
    background: #f4f9fc;
} */
.sector-handled-logo {
    margin-bottom: 16px;
    background: #f4f9fc;
    display: flex;
    align-items: center;
    gap: 15px;
}
.sector-handled-logo img {
    mix-blend-mode: multiply;
    width: 185px;
    height: auto;
}
/* .sector-handled-logo span {
    color: #437297;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 2.7px;
    position: absolute;
    bottom: 3px;
    left: 100px;
} */
.sector-handled-logo span {
    color: #1f242c;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 2.7px;
    position: relative;
}
.single-our-sectors-handled p{
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
}
.sector-handled-contacts{
    margin-top: 25px;
    padding-top: 8px;
    position: relative;
}
.sector-handled-contacts:before{
    content: '';
    position: absolute;
    width: 93px;
    height: 1px;
    background: #A5A5A5;
    top: 0;
    left: 0;
}
.sector-handled-contacts h4{
    color: #676666;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 2.34px;
    text-transform: uppercase;
    margin-top: 22px;
}
.sector-handled-contacts a, 
.sector-handled-contacts > div,
.sector-handled-contacts span{
    color: #21272F;
    font-size: 17px;
    font-weight: 500;
    line-height: 33px; 
}
.sector-handled-contacts a:hover{
    color: #000;
}
.sector-handled-contacts > div {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sector-handled-button{
    /* margin-top: 32px; */
    margin-top: 18px;
    padding-top: 17px;
    position: relative;
    border-top: 1px solid #BAB9B9;
}
.sector-handled-button a {
    color: #243D56;
    font-size: 19px;
    font-weight: 600;
    line-height: 51px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sector-handled-button a:hover {
    padding: 3px 25px;
    color: #fff;
    box-shadow: 10px 10px 20px rgb(32 37 45 / 56%);
    background: #20252d;
    border-radius: 35px;
}
.sector-handled-button a i {
    color: #243D56;
    font-size: 19px;
    transition: .5s;
    position: relative;
    right: 20px;
    transform: rotate(45deg);
}
.sector-handled-button a:hover i{
    transform: rotate(0);
    color: #fff;
    right: 5px;
}
.sectors-risk-section{
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    padding: 110px 0;
}
.sectors-risk-block{
    background: rgba(32, 37, 45, 0.93);
    backdrop-filter: blur(5px);
    width: 100%;
    height: auto;
    padding: 76px 82px 90px;
    display: flex;

}
.sectors-risk-title{
    color: #FFF;
    font-size: 39px;
    font-weight: 500;
    line-height: 51px; 
    position: relative;
    max-width: 400px;
    height: fit-content;
}
.sectors-risk-title:before{
    content: '';
    position: absolute;
    width: 140px;
    height: 7px;
    background: #748891;
    left: 0;
    bottom: -32px;
}
.sectors-risk-contents{
    padding-left: 125px;
    max-width: 660px;
    padding-top: 10px;
}
.sectors-risk-contents p{
    color: #FFF;
    font-size: 19px;
    font-weight: 400;
    line-height: 33px;
}
.sectors-risk-contents a{
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: fit-content;
    background: #20252D;
    color: #FFF;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px; 
    text-transform: uppercase;
    padding: 0 28px;
}
.sectors-risk-contents a:hover {
    padding: 3px 32px;
    box-shadow: 10px 10px 20px rgb(77 77 77 / 56%);
    border-radius: 35px;
}
.related-sectors-section{
    padding: 65px 0 100px;
    background: #F6F6F6;
}
.related-sectors-contents h2{
    color: #071522;
    font-size: 31px;
    font-weight: 500;
    line-height: 41px;
    text-align: center;
}
.related-sectors-contents .our-business-sectors-blocks{
    margin-top: 56px;
}
.related-sectors-contents .single-our-business-sector-detail h3 {
    text-transform: capitalize;
}
.single-sector-banner h1{
    position: relative;
}
.single-sector-banner h1:before {
    content: '';
    position: absolute;
    width: 140px;
    height: 7px;
    background: #20252d;
    bottom: -3px;
    left: 0;
}
/* End of Single Our Sectors */

/* Contact us */
.contact-info-section{
    background: #20252D;
    padding: 85px 0 0;
}
.contact-info-contents{
    padding-top: 20px;
}
.contact-info-contents h2{
    color: #FFF;
    font-size: 39px;
    font-weight: 500;
    line-height: 52px; 
}
.contact-info-blocks{
    display: flex;
    flex-wrap: wrap;
}
.contact-infos{
    width: 50%;
    margin-top: 42px;
}
.contact-infos h5{
    color: #D7D7D7;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.contact-infos a{
    color: #FFF;
    font-size: 26px;
    font-weight: 500;
    line-height: 40px;
    display: block;
}
.contact-infos a:hover {
    color: #000000;
}
.contact-infos p{
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    line-height: 45px;
}
.contact-infos:nth-child(4){
    width: 100%;
}
.contact-info-map {
    width: 100%;
    height: 720px;
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
}
.contact-info-map iframe{
    width: 100%;
    height: 100%;
}
.reach-sectors-section{
    background: #F9F9F9;
    padding: 125px 0 30px;
}
.reach-sectors-contents{

}
.reach-sectors-contents h2{
    color: #2D2B2B;
    text-align: center;
    font-size: 39px;
    font-weight: 500;
    line-height: 46px;
    margin-bottom: 10px;
}
.reach-sectors-companies{
   display: flex;
   flex-wrap: wrap; 
   max-width: 1127px;
   margin: auto;
}
.reach-sector-comp{
    width: 33.33%;
    border-top: 1px solid #D1D0D0;
    padding: 45px 25px 38px 75px;
}
.reach-sector-comp:nth-child(1),
.reach-sector-comp:nth-child(2),
.reach-sector-comp:nth-child(3) {
    border-top: none;
}
.reach-sector-comp h6{
    color: #2A5D85;
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 15px;
}
.reach-sector-contact{
    color: #464646;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; 
}
.reach-sector-contact a{
    color: #464646;
}
.reach-sector-contact a:hover {
    color: #000000;
}
.contact-inquiry-section{
    padding: 95px 0 100px;
}
.contact-inquiry-contents{
    max-width: 300px;
}
.contact-inquiry-contents h2{
    color: #0A385C;
    font-size: 39px;
    font-weight: 500;
    line-height: 54px;
    margin-bottom: 30px;
}
.contact-inquiry-contents p{
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px; 
}
.contact-inquiry-contents span{
    display: block;
    color: #2A5D85;
    font-size: 20px;
    font-weight: 500;
    line-height: 52px; 
    margin-top: 120px;
}
.contact-inquiry-contents a{
    display: flex;
    align-items: center;
    gap: 15px;
    color: #303030;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px; 
}
.contact-inquiry-contents a:hover {
    color: #000;
}
.contact-inquiry-contents a i{
    color: #303030;
    font-size: 18px;
    transition: .5s;
}
.contact-inquiry-contents a:hover i{
    color: #000;
}
.contact-inquiry-form{

}
.form-group label{
    color: #262323;
    font-size: 16px;
    font-weight: 500;
    line-height: 33px;
    margin-bottom: 3px;
    margin-top: 15px;
}
.form-group input{
    width: 100%;
    height: 49px;
    border: 1px solid #A3A1A1;
    border-radius: 0;
}
.wpcf7-date {
    background: transparent !important;
    width: 100%;
}
.date-grp-field {
    display: flex;
    flex-direction: column;
}
.date-grp-field span.wpcf7-form-control-wrap {
    width: 100%;
}
.form-group select{
    width: 100%;
    height: 49px;
    border: 1px solid #A3A1A1;
    border-radius: 0;
    appearance: none;
    cursor: pointer;
    padding-left: 12px;
    background: transparent !important;
}
.select-drop-arrow {
    position: relative;
}
.select-drop-arrow::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    right: 24px;
    /* top: 21px; */
    top: 17px;
    transform: rotate(-45deg);
    z-index: 1;
}
.form-group textarea{
    width: 100%;
    height: 154px;
    border: 1px solid #A3A1A1;
    border-radius: 0;
}
.contact-inquiry-btn{
    margin-top: 37px;
    width: fit-content;
    position: relative;
}
.contact-inquiry-btn input{
    width: fit-content;
    height: 54px;
    background: #20252D;
    padding: 0 25px;
    color: #FFF;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    border: none;
}
.contact-inquiry-btn input:hover {
    padding: 5px 25px;
    box-shadow: 10px 10px 20px rgb(32 37 45 / 56%);
    border-radius: 35px;
}
/* End of Contact us */

/* Delmon Foundation */
.delmon-foundation-info-section{
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    padding: 60px 0 75px;
    overflow: hidden;
}
.delmon-foundation-info-contents{

}
.delmon-foundation-card-pics{
    height: 500px;
    position: relative;
}
.delmon-foundation-card-pics h2{
    color: #FFF;
    text-align: center;
    text-shadow: 0px 4px 19px rgba(0, 0, 0, 0.25);
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-transform: uppercase;
    display: none;
}
.stack {
    position: relative;
    width: 400px;
    margin: 0 auto;
}
/* .stack > .sheet {
    position: absolute;
    transition: all 300ms ease-in-out;
    display: block;
    padding: 20px;
    background: white;
    width: 100%;
    height: 300px;
    left: 0;
    overflow: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
} */
.stack > .sheet {
    position: absolute;
    transition: all 300ms ease-in-out;
    display: block;
    padding: 20px;
    width: 100%;
    left: 0;
    overflow: auto;
    text-align: center;
}
.delmon-card-text {
    color: #FFF;
    text-shadow: 0px 4px 19px rgba(0, 0, 0, 0.25);
    font-size: 90px;
    font-weight: 500;
    line-height: 83px;
    text-transform: uppercase;
    position: absolute;
    height: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
}
.delmon-card-text-1{
    text-align: right;
    max-width: 425px;
    left: 0;
}
.delmon-card-text-2{
    text-align: left;
    font-size: 91px;
    line-height: 78px; 
    right: 0;
}
.delmon-foundation-info-contents h3{
    color: #FFF;
    font-size: 25px;
    font-weight: 400;
    line-height: 59px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 12px;
}
.delmon-foundation-info-contents p{
    color: #FFF;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    max-width: 950px;
    margin: auto;
}
.delmon-director-section{
    padding: 80px 0 90px;
    background: #F4F4F4;
}
.delmon-director-contents{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.delmon-director-contents h2{
    color: #2A5D85;
    font-size: 38px;
    font-weight: 500;
    line-height: 57px; 
    margin-bottom: 34px;
}
.delmon-director-contents h4{
    color: #464646;
    font-size: 28px;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 12px;
}
.delmon-director-contents p{
    color: #464646;
    font-size: 19px;
    font-weight: 400;
    line-height: 35px;
}
.delmon-director-contents p a{
    color: #464646;
    text-decoration: underline;
}
.delmon-director-contents p a:hover{
    color: #000;
}
.delmon-director-pic{

}
.delmon-director-pic img{
    width: 100%;
    height: auto;
}
.delmon-how-to-apply-section{
    padding: 70px 0 70px;
}
.delmon-how-to-apply-contents{

}
.delmon-how-to-apply-contents h2{
    color: #0A385C;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 59px;
    margin-bottom: 17px;
}
.delmon-how-to-apply-contents > p{
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    max-width: 900px;
    margin: auto;
}
.delmon-how-to-apply-form{
    width: 1070px;
    height: auto;
    border: 1px solid #949191;
    /* padding: 35px 55px 70px; */
    padding: 0 55px 70px;
    margin: auto;
    margin-top: 50px;
}
.delmon-how-to-apply-form h3{
    color: #464646;
    font-size: 23px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 10px;
    margin-top: 50px;
}
.form-group.address-field textarea {
    height: 150px;
}
.address-field {
    margin-bottom: -100px;
}
.radio-btn-cf7{
    display: flex;
    flex-direction: column;
}
.radio-btn-cf7 span.wpcf7-form-control-wrap{

}
.radio-btn-cf7 span.wpcf7-form-control-wrap .wpcf7-radio {
    display: flex;
    align-items: center;
    gap: 40px;
}
.radio-btn-cf7 span.wpcf7-form-control-wrap span.wpcf7-list-item{
    margin-left: 0;
}
.radio-btn-cf7 span.wpcf7-form-control-wrap span label {
    display: flex;
    align-items: center;
    gap: 10px;
}
.radio-btn-cf7 span.wpcf7-form-control-wrap span label input {
    width: 16.5px;
    height: 16.5px;
    border: 1px solid #8A8A8A;
}
.radio-btn-cf7 span.wpcf7-form-control-wrap span label span {
    color: #434141;
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
}

/* Chrome */
.wpcf7-file::-webkit-file-upload-button {
    display: none;
}
/* Firefox */
.wpcf7-file::file-selector-button{
    display: none;
}
.input-file-field {
    width: 100%;
    height: 49px;
    border-radius: 0;
    border: 1px solid #A3A1A1;
    background: #FFF;
    display: block;
    justify-content: end;
}
.input-file-field span.wpcf7-form-control-wrap {
    width: 100%;
    display: block;
    line-height: 49px;
}
.input-file-field input {
    /* width: 87%; */
    width: 100%;
    height: 49px;
    position: absolute;
    z-index: 1;
    border: none;
    background: transparent;
    /* padding-top: 13px; */
    padding-left: 12px;
}
.input-file-field .wpcf7-form-control-wrap input {
    background: transparent;
    font-size: 12px;
}
.input-file-field label {
    width: 93px;
    height: 37px;
    border-radius: 0;
    background: #ECE9E9;
    text-align: center;
    color: #262323;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
    line-height: 33px;
    position: relative;
    margin-bottom: 0;
    min-width: 93px;
    float: right;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}
.delmon-how-to-apply-form .contact-inquiry-btn {
    display: flex;
    justify-content: center;
    width: fit-content;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0) !important;
}
/* End of Delmon Foundation */

/* Country Field WP */
.country-form-wrap{
    position: relative;
    z-index: 1;
}
.country-field {
    position: relative;
    z-index: 1;
}
.code-num {
    position: relative;
    z-index: 1;
}
span.iti__country-name {
    display: none;
}
.iti__country-list {
    width: 100%;
    overflow-x: hidden;
}
.iti__country-list::-webkit-scrollbar {
    width: 5px;
}
.iti__country-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #ffffff;
}
.iti__country-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgb(41 98 46) 10.8%, rgb(143 186 92) 94.3%);
}
.form-field.country-field label {
    top: 5px;
    font-size: 12px;
    z-index: 20;
}
.country-select.inside .flag-dropdown {
    width: 100%;
}
.country-select.inside .selected-flag {
    width: 100%;
}
.country-select .selected-flag .arrow {
    border-right: none;
    border-top: none;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    right: 22px;
    top: 26px;
    transform: rotate(-45deg);
    width: 8px;
    height: 8px;
}
.country-select .selected-flag .arrow {
    top: 20px;
    transition: .5s;
}
.country-select .selected-flag .arrow.up {
    border-bottom: 1px solid #000;
    transform: rotate(135deg);
    top: 24px;
}
.country-select .flag {
    display: none;
}
.country-select.inside input, .country-select.inside input[type=text] {
    padding-left: 18px;
}
.country-select.inside .flag-dropdown:hover .selected-flag {
    background-color: transparent;
}
.country-select ul.country-list {
    width: 100%;
    overflow-x: hidden;
    z-index: 9999999;
}
.country-select ul.country-list::-webkit-scrollbar {
    width: 10px;
}
.country-select ul.country-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #ffffff;
}
.country-select ul.country-list::-webkit-scrollbar-thumb {
    background: rgb(32 37 45);
}
/* End of Country Field WP */

/* 404 page */
.error-page h1{
    font-size: 75px;
    font-weight: 700;
    line-height: 85px;
}
.error-page > h4{
    color: #071522;
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: 0.78px;
    text-align: center;
    margin: 100px 0;
}
/* End of 404 page */

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff0000;
    text-align: center;
    margin: 25px 0 0;
    font-size: 15px;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    border-color: #ff0000;
    text-align: center;
    margin: 25px 0 0;
    font-size: 15px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    text-align: center;
    margin: 15px 0 0;
    font-size: 15px;
}
.wpcf7-not-valid-tip {
    font-size: 13px;
}
.input-file-field span.wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
    top: 38px;
}
.wpcf7-date {
    padding: 0 12px;
}
.wpcf7-spinner {
    margin: 0 15px;
    position: absolute;
    right: -52px;
    top: 14px;
}

/* Group of Companies */
.group-companies-section{
    background: #EAEBED;
    padding: 55px 0 50px;
}
.group-companies-blocks{
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}
.single-group-company{
    width: 48.6%;
}
.single-group-company h3{
    color: #000;
    font-size: 21px;
    font-weight: 800;
    line-height: 25px; 
    letter-spacing: 0.84px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.6;
}
.group-company-contents{
    background: #FFF;
    padding: 45px 40px 35px;
}
.group-company-contents > img{
    display: none;
}
.group-company-contents h4{
    color: #2A5D85;
    font-size: 19px;
    font-weight: 700;
    line-height: 29px;
    margin-bottom: 20px;
}
.group-company-top{
    display: flex;
    align-items: center;
}
.group-company-top-contents{

}
.group-company-top-contents p{
    color: #464646;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.group-company-top img{
    margin-left: 60px;
}
.group-company-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
}
.group-company-contacts{
    display: flex;
    align-items: center;
    gap: 27px;
}
.group-company-contacts span{
    color: #464646;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    line-height: 35px;
}
.group-company-contacts span a{
    color: #464646;
}
.group-company-contacts span a:hover{
    color: #212632;
}
.group-company-bottom a img{
    transition: .5s;
}
.group-company-bottom a:hover img {
    opacity: .7;
}



/* End of Group of Companies */

.grecaptcha-badge{
    display: none !important;
}