/*@font-face {
    font-family: "Cambon";
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Cambon-Medium.ttf') format('truetype');
}*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i');
/*@font-face {
    font-family: "LustText";
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/LustText-Light.woff') format('woff')
}
@font-face {
    font-family: "LustText";
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/LustText-LightItalic.woff') format('woff')
}
@font-face {
    font-family: "LustText";
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/LustText-Book.woff') format('woff')
}
@font-face {
    font-family: "LustText";
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/LustText-Italic.woff') format('woff')
}*/


:root{

    /**** Color variables ****/
    --primary-color: #038464;
    --primary-dark-color: #075142;
    --primary-light-color: #E3F2EA;
    --primary-border-color: #B9ECE8;
    --secondary-color: #EDE7D2;
    --secondary-light-color: #F7F0EA;
    --secondary-light-text-color: #F0F3CB;
    --secondary-border-color: #F0DBBD;
    --black-color: #292626;
    --white-color: #FFFFFF;
    --white-smoke-color: #F8F6F5;
    --coffee-color: #372324;
    --gray-color: #EDEAEF;

    /**** Font family variables ****/
    --primary-font: "lust-text", sans-serif;
    --secondary-font: Roboto, sans-serif;

    /**** Font weight variables ****/
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

/* GLobal css start */
.container{
    max-width: 1240px;
}
body{
    background-color: var(--white-smoke-color);
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    line-height: 32px;
    color: var(--black-color);
}
h1{
    font-family: var(--primary-font);
    font-size: 68px;
    font-weight: var(--font-weight-regular);
    line-height: 84px;
    letter-spacing: -3.04px;
    color: var(--black-color);
    margin-top: 0;
}
h2{
    font-family: var(--primary-font);
    font-size: 57px;
    font-weight: var(--font-weight-regular);
    line-height: 64px;
    letter-spacing: -3.04px;
    color: var(--primary-dark-color);
}
h3, h4, h5, h6{
    margin-bottom: 0px;
    font-family: var(--primary-font);
}
p{
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    line-height: 32px;
    color: var(--black-color);
    margin-bottom: 20px;
}
ul, ol, li, span, a{
    color: var(--black-color);
}
ul{
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
}
a{
    text-decoration: none;
}
a:visited{
    color: var(--black-color);
}
.post, .page{
    margin-bottom: 0px;
}
.img-fluid{
    width: 100%;
}
.global-btn,
.wpcf7-form input[type="submit"]{
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    font-weight: var(--font-weight-regular);
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color) !important;
    color: var(--white-color) !important;
    border-radius: 4px;
    padding: 16px 48px !important;
    text-transform: capitalize;
    transition: all 0.3s ease;
    min-width: fit-content;
}
.global-btn:hover,
.wpcf7-form input[type="submit"]:hover,
button.global-btn:hover{
    background: none;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.global-btn.secondary-btn{
    background: none;
    color: var(--primary-color) !important;
}
.global-btn.secondary-btn:hover{
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}
.global-btn.btn-white{
    background-color: var(--white-color) !important;
    color: var(--coffee-color) !important;
    border-color: var(--white-color);
}
.global-btn.btn-white:hover{
    background: none !important;
    color: var(--white-color) !important;
}
.global-btn.secondary-white{
    background: none !important;
    color: var(--white-color) !important;
    border-color: var(--white-color) !important;
}
.global-btn.secondary-white:hover{
    background-color: var(--white-color) !important;
    color: var(--primary-color) !important;
}
input, select, textarea{
    border-radius: 4px !important;
    border: none !important;
    padding: 12px 22px !important;
    color: var(--black-color) !important;
    font-family: var(--secondary-font);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 28px;
}
input::placeholder, select::placeholder, textarea::placeholder{
    color: #BBC8D4 !important;
}
input:focus, select:focus, textarea:focus{
    box-shadow: none !important;
}
.primary-img-border{
    background-color: var(--primary-border-color);
    padding: 10px;
    border-radius: 10px;
}
.secondary-img-border{
    background-color: var(--secondary-border-color);
    padding: 10px;
    border-radius: 10px;
}
.primary-img-border img,
.secondary-img-border img{
    border-radius: 10px;
}
.title-area .title{
    margin-bottom: 30px;
}
.title-area.white .apply-title.title{
    color: var(--secondary-light-text-color);
}
.title-area .desc{
    margin-bottom: 30px;   
}
.title-area.white .desc{
    color: var(--white-color);
}
.hero-sec.white :where(.hero-title, .hero-desc){
    color: var(--white-color) !important;
}

.hero-sec.business_hero {margin-top:-80px; height:100vh;}
.business_hero > .hero-content.v-center{height:100vh; top: 0px !important; transform: translateY(0%); padding: 0px !important;}
.business_hero > .hero-content.v-center > .container{height:100vh;}
.business_hero > .hero-content.v-center > .container > .row{height:100vh;}
.business_hero > .hero-content.v-center > .container > .row .img-part{height:100vh;}
.business_hero > .hero-content.v-center > .container > .row .img-part img{position: absolute; bottom:0px; transform: scale(1.2);}

.hero-sec.cyber_hero {margin-top:-80px; height:100vh;}
.cyber_hero > .hero-content.v-center{height:100vh; top: 0px !important; transform: translateY(0%); padding: 0px !important;}
.cyber_hero > .hero-content.v-center > .container{height:100vh;}
.cyber_hero > .hero-content.v-center > .container > .row{height:100vh;}
.cyber_hero > .hero-content.v-center > .container > .row .img-part{}
.cyber_hero > .hero-content.v-center > .container > .row .img-part img{transform: scale(1.1);}


/*.page-template-tp-wo-we-are .header-area .main-navigation .nav-menu li a{
    color: var(--white-color) !important;
}
.page-template-tp-wo-we-are .header-area .main-navigation ul .sub-menu li a{
    color: var(--black-color) !important;
}
.page-template-tp-wo-we-are .dark-logo{
    display: none;
}
.page-template-tp-wo-we-are .light-logo{
    display: block !important;
}*/
ul.sub-menu span.back-btn{display:none;}
ul.sub-menu span.parent-title{display:none;}

.site-header.light .header-area .main-navigation .nav-menu li a{
    color: var(--white-color) !important;
}
.site-header.light .header-area .main-navigation ul .sub-menu li a{
    color: var(--black-color) !important;
}
.site-header.light .dark-logo{
    display: none;
}
.site-header.light .light-logo{
    display: block !important;
}
.site-header.light .menu-item-has-children::after{ content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3E%3C/svg%3E");
}

.w-60{
    width: 60%;
}
/* Global css end */

/* Header css start */
.header-area{
    padding: 10px 0;  
    z-index: 99;
    position: relative;
	height:80px;
}
.header-area .logo img{
    min-width: 214px; width:202px;
}
.header-area .main-navigation .nav-menu{
    justify-content: center;
}
.header-area .main-navigation .nav-menu li{
    padding: 0 30px;
    font-size: 16px; 
    line-height: 16px;
	font-family: var(--secondary-font);
    font-weight: var(--font-weight-regular);
}
.menu-item-has-children::after{
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    width: 1em;
    transform: rotate(90deg);
    display: block;
    position: absolute;
    top: 14px;
    right: 10px;
}
/* .page-template-tp-wo-we-are .menu-item-has-children::after{
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='#fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
} */
.header-area .main-navigation .nav-menu li a{
    color: var(--black-color) !important;
}
.header-area .main-navigation .nav-menu li:hover a{
    color: var(--primary-color);
}
.header-area .main-navigation ul .sub-menu{
    display: block;
    padding: 10px 20px !important;
    border-radius: 13px;
    background-color: var(--white-color);
}
.header-area .current-menu-parent a{
    color: var(--primary-color);
}
.header-area .main-navigation ul .sub-menu li{
    padding: 12px 0 !important;
}
.header-area .main-navigation ul .sub-menu li a{
    color: var(--black-color) !important;
}
.header-area .main-navigation ul .sub-menu li:hover a{
    color: var(--primary-color) !important;
}
/* Header css end */

/* Hero css start */
.hero-sec.top_0.relative-sec {margin-top: -120px;}
.hero-sec.top_0.relative-sec > img{height: 100vh;}
.hero-sec{
    /*margin-top: -120px;*/
    padding-left: 0px;
    padding-right: 0px;
}
.hero-sec .hero-content{
    position: absolute;
    /*top: 0;*/
    width: 100%;
    /*padding: 230px 0px 0px;*/
	top: 56% !important;
	transform: translateY(-50%);
}
.hero-content.v-center{
    top: 56% !important;
    transform: translateY(-50%);
    padding: 0px !important;
}
.page-template-tp-cyber-security .hero-content.v-center{
    top: 60% !important;
}
.hero-sec > img{
    height: calc(100vh - 80px);
    min-height: 600px;
    object-fit: cover;
    object-position: center center;
}
.hero-sec .hero-content .hero-title{
    margin-bottom: 22px;
    color: var(--black-color);
}
.hero-sec .hero-content img.banner_logo{margin-bottom:22px;}
.hero-content .tag{
    font-weight: var(--font-weight-regular);
    font-size: 23px;
    line-height: 23px;
    background: rgba(41, 38, 38, 0.27);
    color: var(--white-color);
    max-width: fit-content;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 25px;
}
.hero-content .tag.white{
    background: rgba(255, 255, 255, 0.3);
    color: var(--black-color);
}
.hero-content .tag.primary{
    background: rgba(3, 132, 100, 0.15);
    color: var(--black-color);
}
.hero-content .tag.secondary{
    background: #EBD4B5;
    color: var(--black-color);
}
.hero-desc{
    color: var(--black-color);
    font-weight: var(--font-weight-regular);
    font-size: 23px;
    line-height: 34px;
    margin-bottom: 40px !important;
}

.parallax_banner{ background-attachment: fixed; background-size: cover; background-repeat: no-repeat; background-position: center; -o-background-size:cover;  -moz-background-size:cover;  -webkit-background-size:cover; }
.parallax_banner .hero-img{opacity:0;}

@supports (-webkit-touch-callout: none) {
	.parallax_banner{ background-attachment: scroll;}
}
/* Hero css end */

/* Icon sec css start */
.icon-sec{
    /*position: relative;*/
    display: block;
    width: 100%;
    height: auto;
    padding: 100px 0px;
}
.icon-sec .icon-box > img{
    margin-right: 18px;
    max-width: 110px;
}
.icon-box .icon-box-title{
    font-family: var(--primary-font);
    font-weight: var(--font-weight-medium);
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 0px;
	color: var(--primary-color);
}
/* Icon sec css end */

/* zic sec css start */
.zic-sec{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.img-box-area{
    /*padding-bottom: 20px;*/
}
.img-box-area.right-img-box .img-box-content{ margin-right: 70px; }
.img-box-area.left-img-box .img-box-content{margin-left:80px;}

.img-box-content.max-90{
    max-width: 90%;
}
/* zic sec css end */

.lr-sec{padding:70px 0px;}
.lr-sec .img-box-area .img-box-content{margin-top:100px;}

/* fnl sec css start */
.fnl-sec{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.fnl-container{
    padding: 100px 0 100px 70px;
    background-color: var(--primary-light-color);
    border-radius: 10px;
}
.fnl-container .fnl-img{
    max-width: 95%;
}
.fnl-container .title{
    font-size: 50px;
}
.fnl-container .title .italic{
    font-style: italic;
}
/* fnl sec css end */

/* Find package sec css start */
.find-package-sec{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 100px 0px;
}
.find-package-sec .title-area p{font-size:20px; line-height:32px;}
/* Find package sec css end */

/* Images cta css start */
.img-cta-sec{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-left: 0px;
    padding-right: 0px;
}
.img-cta-sec .cta-img-area img{
    /*height: 100vh;*/
	height:650px;
    object-fit: cover;
    object-position: center center;
	opacity:0;
}
.img-cta-sec .cta-img-area{ background-attachment: fixed; background-size: cover; background-repeat: no-repeat; background-position:center; -o-background-size: cover; -moz-background-size: cover; -webkit-background-size: cover;}
@supports (-webkit-touch-callout: none) {
	.img-cta-sec .cta-img-area{ background-attachment: scroll;}
}
.img-cta-content{
    padding: 200px 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 20px;
    padding-right: 20px;
}
.img-cta-content .title{
    font-size: 72px;
    line-height: 64px;
    font-style: italic;
    letter-spacing: -3.04px;
    font-weight: var(--font-weight-regular);
    color: var(--white-color);
}
.img-cta-content .desc, .img-cta-content p{
    color: var(--white-color);
}
.img-cta-sec.img-cta-sec-bg .title-area{background:#fff;}
.img-cta-sec.img-cta-sec-bg .img-cta-content .title{
	 font-size: 57px;
    line-height: 64px;
	font-style: normal;
    letter-spacing: -2.04px;
    font-weight: var(--font-weight-regular); 
    color: var(--primary-dark-color);	
}
.img-cta-sec.img-cta-sec-bg .img-cta-content .desc, .img-cta-sec.img-cta-sec-bg .img-cta-content p {
    color: var(--black-color);
}
.img-cta-sec.img-cta-sec-bg .img-cta-content{max-width:700px; padding: 0px; top: calc(50% - 150px); transform: translate(-50%); left: 50%;}
.img-cta-sec.img-cta-sec-bg .img-cta-content .title-area{padding:50px 70px;}
/* Images cta css end */

/* Footer css start */
.site-footer{
    background-color: var(--primary-dark-color);
    padding: 100px 0 80px 0;
}
.site-footer .footer-logo{
    margin-bottom: 36px;
}
.site-footer .footer-logo img{
    max-width: 252px;
}
.site-footer .footer-social-links li{
    margin-right: 36px;
}
.site-footer .footer-social-links li a{
    color: var(--secondary-light-text-color);
    font-size: 17px;
}
.site-footer .footer-link-area{
    padding-top: 110px;
}
.site-footer .footer-link-area .footer-title{
    font-weight: var(--font-weight-regular);
    color: var(--secondary-light-text-color);
    font-size: 17px;
    line-height: 16px;
    margin-bottom: 28px;
    font-family: var(--secondary-font);
    text-transform: uppercase;
}
.site-footer .footer-links li{
    margin-bottom: 11px;
}
.site-footer .footer-links li a{
    font-family: var(--secondary-font);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--white-color);
    width: fit-content;
}
.site-footer .footer-links li a:hover{
    color: var(--secondary-light-text-color);
}
.site-footer .copyright-area{
    color: var(--white-smoke-color);
    padding-top: 100px;
    font-weight: var(--font-weight-regular);
    font-size: 19px;
    line-height: 26px;
}
/* Footer css end */

/* About us page css start */
.feature-icon-sec{
    padding: 120px 0px;
}
.feature-icon-box-area{
    max-width: 90%;
}
.feature-icon-sec .feature-icon-box{
    width: 100%;
    /* height: 100%; */
    background-color: var(--primary-light-color);
    border-radius: 10px;
    padding: 46px 30px;
    margin-bottom: 30px;
}
.feature-icon-sec .feature-icon-box img{
    max-height: 143px;
    margin-bottom: 30px;
}
.feature-icon-sec .feature-icon-box .feature-icon-box-title{
    font-weight: var(--font-weight-medium);
    font-size: 31px;
    line-height: 42px;
	letter-spacing:-1.04px;
    margin-bottom: 10px;
    color: var(--black-color);
}
.feature-icon-sec .feature-icon-box .feature-icon-box-desc{
    font-weight: var(--font-weight-regular);
    font-size: 20px;
    line-height: 28px;
    color: var(--black-color);
    margin-bottom: 0px;
}

/* our story sec css start */
.our-story-sec{
    padding-bottom: 160px;
}
.founder-sec{
    background-color: var(--secondary-light-color);
    padding: 110px 0px;
}
.founder-desc-area{
    padding: 90px 70px 120px;
    background-color: var(--coffee-color);
    border-radius: 10px;
}
.founder-desc-area .name{
    font-weight: var(--font-weight-medium);
    font-size: 23px;
    line-height: 32px;
    margin-bottom: 40px;
    color: var(--secondary-light-text-color);
}
.founder-desc-area .founder-desc{
    font-weight: var(--font-weight-medium);
    font-size: 27px;
    line-height: 32px;
    color: var(--white-color);
}
.founder-img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 10px;
}
/* our story sec css end */

/* Grid icon sec css start */
.grid-icon-sec{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 120px 0;
}
.grid-icon-sec .grid-icon-box{
    padding: 40px 40px 36px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    height: 100%;
}
.grid-icon-box img{
    max-height: 148px;
    margin-bottom: 40px;
}
.grid-icon-box .grid-icon-box-title{
    font-weight: var(--font-weight-medium);
    font-size: 22px;
    line-height: 32px;
    color: var(--black-color);
    margin-bottom: 0px;
    letter-spacing: -1.04px;
}
/* Grid icon sec css end */

/* Apply sec css start */
.apply-sec{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 160px 0;
}
.apply-box-area{
    background-color: var(--coffee-color);
    padding: 66px 100px;
    border-radius: 10px;
}
.apply-box-area.primary-dark{
    background-color: var(--primary-dark-color);
}
/* Apply sec css end */
/* About us page css end */

/* Cyber Security page css start */
.challenges-sec{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 130px 0;
}
.challenges-box-area{
    max-width: 60%;
}
.title-area.challenges :where(.title, .desc){
    margin-bottom: 56px;
}
.option-feature-list-sec{
    padding-bottom: 160px;
}
.option-feature-list-box{
    padding: 80px;
    background-color: var(--primary-light-color);
    border-radius: 10px;
}
.option-feature-list-box.secondary{
    background-color: var(--secondary-color) !important;
}
.option-feature-list-img-box{
    max-width: 85%;
}
.option-feature-list-content .option-feature-list-title{
	font-family: var(--primary-font);
    font-weight: var(--font-weight-medium);
    font-size: 22px;
    line-height: 29px;
    margin-bottom: 35px;
}
.option-feature-list li{
    margin-bottom: 15px;
    background-color: var(--white-color);
    padding: 12px 17px;
    border-radius: 5px;
}
.option-feature-list li p{
    margin-bottom: 0px;
    font-weight: var(--font-weight-regular);
    font-size: 17px;
    line-height: 20px;
	padding-left: 30px;
}
.option-feature-list li p svg{
    color: var(--primary-color);
    margin-right: 13px;
    margin-left: -30px;
}
/* Cyber Security page css end */

/* FAQ page css start */
.faq-sec{
    padding-top: 70px;
}
.faq-sec .faq-area{
    max-width: 800px;
}
.faq-sec .faq-area .faq-title{
    font-size: 85px;
    line-height: 64px;
    margin-bottom: 50px;
}
.faq-sec .faq-area .faq-desc{
    margin-bottom: 80px;
}
.faq-accordion .accordion-item{
    background: none;
    border: none;
}
.faq-accordion .accordion-item:first-of-type,
.faq-accordion .accordion-item:first-of-type .accordion-button,
.faq-accordion .accordion-item:last-of-type .accordion-button.collapsed,
.faq-accordion .accordion-item:last-of-type{
    border-radius: 0px;
}
.faq-accordion .accordion-item .accordion-body{
    padding: 0px;
    text-align: start;
}
.faq-accordion .accordion-item .accordion-body p:last-child{
    margin-bottom: 0px;
}
.faq-accordion .accordion-item .accordion-body p{
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
}
.faq-accordion .accordion-button:not(.collapsed),
.faq-accordion .accordion-button.collapsed{
    background: none;
    box-shadow: none;
    font-weight: var(--font-weight-semibold);
    font-size: 18px;
    line-height: 28px;
    color: var(--black-color);
}
.faq-accordion .accordion-button{
    padding: 0px;
}
.faq-accordion .accordion-button:not(.collapsed)::after{
    background-image: url(../images/accordion-minus.png);
}
.faq-accordion .accordion-button::after{
    background-image: url(../images/accordion-plus.png);
}
.faq-accordion .accordion-item:first-child{
    padding-top: 0px;
}
.faq-accordion .accordion-item{
    padding: 24px 0px 32px;
    border-bottom: 1px solid #95989A;
}
.faq-accordion .accordion-collapse{
    margin-top: 8px;
}
.cta-still-sec{
    padding: 160px 20px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}
.cta-still-sec .cta-still-area{
    background-color: var(--gray-color);
    border-radius: 10px;
    padding: 50px 20px;
}
.cta-still-sec .cta-still-area .cta-still-content{
    max-width: 810px;
}
.cta-still-sec .cta-still-area .cta-still-content .cta-still-title{
    font-weight: var(--font-weight-medium);
    font-size: 29px;
    line-height: 30px;
    letter-spacing: -1px !important;
    margin-bottom: 14px;
}
/* FAQ page css end */

/* Contact page css start */
.contact-sec{
    padding: 120px 16px 170px;
}
.contact-form-area{
    max-width: 1090px;
}
.contact-left-col{
    background-color: var(--primary-dark-color);
    padding: 180px;
    border-radius: 10px;
}
.contact-left-col img{
    max-width: 254px;
}
.contact-right-col{
    background-color: var(--secondary-light-color);
    border-radius: 10px;
    padding: 40px 55px 60px;
}
.title-area .contact-form-title{
    font-weight: var(--font-weight-regular);
    font-size: 34px;
    line-height: 54px;
    letter-spacing: -1.04px;
    margin-bottom: 8px;
}
.contact-form-area .title-area .desc{
    margin-bottom: 44px;
}
.contact-left-col .contact-title{
    font-weight: var(--font-weight-regular);
    font-size: 63px;
    line-height: 64px;
    letter-spacing: -3.04px;
    color: var(--secondary-light-text-color);
    margin-bottom: 100px;
}
/* Contact page css end */

/* Apply now page css start */
.apply-now-sec{
    padding: 210px 14px 280px;
    background-color: var(--secondary-light-color);
    margin-top: -120px;
}
.post-code-area{
    max-width: 740px;
}
.post-code-area .postal-code-title{
    font-weight: var(--font-weight-regular);
    font-size: 72px;
    line-height: 84px;
    letter-spacing: -3.04px;
    margin-bottom: 40px;
    color: var(--primary-dark-color);
}
.post-code-area > p{
    font-weight: var(--font-weight-regular);
    font-size: 19px;
    line-height: 32px;
    margin-bottom: 45px;
}
.postal-code-form-area button {
    min-width: 224px !important;
}
.postal-code-form-area :where(input, select){
    text-transform: uppercase;
}
.postal-code-form-area{
    max-width: 633px;
}
.package-sec{
    margin-top: -200px;
    padding-bottom: 150px;
}
.package-area{
    padding: 128px 65px 88px;
    background-color: var(--secondary-color);
    border-radius: 10px;
}
.form-check .form-check-input {
    padding: 7px !important;
    border-radius: 50px !important;
}
.form-check-input{
    position: relative;
}
.form-check-input:checked::before{
    content: '';
    background: var(--primary-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.form-check-input:checked{
    background-color: var(--secondary-color);
}
.form-check-input{
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color) !important;
}
.package-radio-area label{
    font-family: var(--secondary-font);
    font-weight: var(--font-weight-medium);
    font-size: 19px;
    line-height: 20px;
    color: var(--black-color);
	margin-top:4px;
}
.package-box-area{
    background: rgb(240,219,189);
    background: linear-gradient(90deg, rgba(240,219,189,1) 0%, rgba(184,149,116,1) 100%);
    padding: 86px 26px 30px;
	border-radius:10px;
}
.package-box-area.active{
    background: rgb(194,156,151);
    background: linear-gradient(90deg, rgba(194,156,151,1) 0%, rgba(160,83,80,1) 100%);
}

.package-box-area.active .package-img-box{
    background-color: #A45A57;
}
.package-box-area .package-title{
    font-weight: var(--font-weight-medium);
    font-size: 30px;
    line-height: 64px;
    letter-spacing: -2.04px;
    color: var(--black-color);
    margin-bottom: 3px;
}
.package-box-area .package-desc{
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 13px;
}
.package-box-area .package-price{
	font-family:var(--secondary-font);
    font-weight: var(--font-weight-regular);
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 24px;
}
.package-box-area .package-seprator{
    margin-bottom: 22px;
    border-top: 1px solid var(--black-color);
}
.package-box-area .package-list{
    margin-bottom: 38px;
}
.package-box-area .package-list .check-icon-box{
    width: 15px;
    height: 15px;
    min-width: 15px;
    border-radius: 50%;
    background-color: #BD9B7A;
    position: relative;
    margin-right: 8px;
}
.package-box-area.active .package-list .check-icon-box{
    background-color: #C29C97;
}
.package-box-area .package-list .check-icon-box svg{
    fill: var(--black-color);
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.package-box-area .package-list p{
    font-weight: var(--font-weight-medium);
    font-size: 13px;
    line-height: 27px;
    margin-bottom: 0px;
}
.package-box-area .package-btn{
    padding: 3px 30px;
    border-radius: 4px;
    background-color: var(--secondary-color);
    font-weight: var(--font-weight-regular);
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    display: block;
}
.package-box-area .package-btn:hover{
	background-color: var(--black-color);
	color: var(--white-color);
}

.apply-today-form-sec{
    padding: 66px 0;
    background-color: var(--primary-dark-color);
}
.apply-today-img{
    border-radius: 10px;
}
.apply-today-form-area{padding-left:80px;}
.apply-today-form-area .title-area .title{
    margin-bottom: 20px;
    color: var(--secondary-light-text-color);
} 
.apply-today-form-area .title-area .desc{
	font-size:19px;
	margin-bottom:50px;
    color: var(--white-color);
}
/* Apply now page css end */

/* Global form css start */
.wpcf7-form :where(input, select){
    width: 100%;
    /* margin-bottom: 18px; */
}
.wpcf7-form :where(.col-6, .col-12) {
    margin-bottom: 18px;
}
.wpcf7-form select{
    height: 52px;
}
.wpcf7-form input[type="checkbox"] {
    width: unset;
    margin-bottom: 0px;
}
.wpcf7-acceptance > span{
    margin-left: 0px;
}
.form-instruction{
    margin-top: 17px;
    margin-bottom: 17px;
    color: var(--white-color);
    font-size: 13px;
    line-height: 23px;
}
.wpcf7-acceptance :where(.wpcf7-list-item-label, .wpcf7-list-item-label a){
    color: var(--white-color);
    font-size: 16px;
    line-height: 24px;
}
.apply-today-form-area .wpcf7-acceptance :where(.wpcf7-list-item-label, .wpcf7-list-item-label a){
    color: var(--white-color) !important;
}
.wpcf7-acceptance{
    margin-bottom: 16px;
    display: block;
}
.wpcf7-form[aria-label="Contact form"] .wpcf7-acceptance :where(.wpcf7-list-item-label, .wpcf7-list-item-label a){
    color: var(--black-color);
}

.slick-slider.single-item .slick-list{
    overflow: visible !important;
}
/* Global form css end */

.fnl-sec .title-area img.logo_grid { margin-right: 40px; vertical-align: text-top;}

.product_sec{position: relative; display: block; width: 100%; height: auto; padding: 100px 0px;}
.product_sec .row{--bs-gutter-x:2.0rem !important; --bs-gutter-y:2.0rem !important;}
.product_sec .product-grid-box{background:#fff; padding:30px; border-radius:10px; box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.25); height:100%; display:grid;}
.product_sec .product-grid-box:hover{box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.25);}
.product_sec .product-grid-box h3.grid-icon-box-title{font-size:22px; line-height:26px; font-weight:500; margin-top: 25px; margin-bottom: 15px;}
.product_sec .product-grid-box p.price_txt{font-size:28px; line-height:32px; font-weight:600; margin-bottom: 15px;}
.product_sec .product-grid-box p.price_txt span.vat_txt{font-size:18px; line-height:28px; font-weight:400; color:#707070;}
.product_sec .product-grid-box a.global-btn{width:100%; align-self: flex-end !important; display: inline-block;}
.product_sec .product-grid-box img.pro_img{max-height:250px; margin:0 auto;}

.package-swiper {
    overflow: hidden;
}

.swiper-wrapper {
    display: flex !important;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.swiper-pagination {
    position: absolute;
    bottom: 10px; /* Move pagination to the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.swiper-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Ensure space for pagination */
}

.package-img-box {
    display: flex;
    align-items: center; /* Ensures proper vertical alignment */
    justify-content: center;
    max-height: 150px; /* Adjust based on logo size */
    overflow: visible; /* Allow image visibility inside its container */
}

.package-swiper {
    overflow: hidden !important; /* Prevents full section overflow */
}

.swiper-slide {
    overflow: visible !important; /* Allows only the slides to show overflowing content */
    padding-top: 50px; 
}

.package-box-area {
    position: relative;
    padding-top: 120px; /* Ensures space for the floating logo */
}

.package-img-box {
    max-width: 120px;
    padding: 24px 9px;
    background-color: #BD9B7A;
    margin-top: -146px; /* Keep this to maintain original position */
    position: relative; /* Keeps positioning without being cut */
    z-index: 10; /* Ensures it stays above other elements */
}
.p-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.loader {
    text-align: center;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.loader::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 4px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.package-sec {
    position: relative; /* Ensure the overlay is positioned correctly */
}
.package-sec:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}