/*--------------------------------------------------------------
# CSS Variables (Global)
--------------------------------------------------------------*/
:root {
    /* Font Variables */
    --body-font: "TWK Lausanne Pan 250", san-serif;
    --heading-font: "Reckless Neue", serif;
    --button-font: "TWK Lausanne Pan 450", san-serif;
    --base-font-size: 16px;

    /* Colors */
    --black: #000;
    --white: #fff;
    --primary-color: #FFD48B;
    --primary-color-border: #BEB6A1;
    --secondary-color: #000;
    --button-hover: #768771;
    --background-muted: #F3EDDA;
    --background-primary: #FFD48B;
    --background-secondary: #181918;
    --text-primary: rgba(226, 31, 38, 1);
    --link-color: rgba(60, 60, 60, 0.5);
    --link-hover: rgba(60, 60, 60, 0.8);

    /* Buttons */
    --btn-border: rgba(60, 60, 60, 0.5);
    --btn-padding-x: 28px;
    --btn-padding-x-lg: 24px;
    --btn-padding-y: 10px;
    --btn-height: auto;
    --btn-font-size: 0.725rem;
    --btn-letter-spacing: normal;

    /* Shadows */
    --box-shadow-xl: 0 28px 50px rgba(0, 0, 0, 0.3);

    /* Spacing */
    --section-padding: 80px;
    --section-padding-lg: 140px;
    --container-width: 1340px;
	--min-padding: 15px; 
	--container-padding: 15px;  
	--vh: 1vh; /* Fallback value to reduce content shift */	
}

/*--------------------------------------------------------------
# UIkit Overrides
--------------------------------------------------------------*/
.uk-container {
    max-width: var(--container-width);
}
.uk-container-expand {
    max-width: none;
}
.uk-container-xlarge {
    max-width: 1600px;
}
.uk-navbar-container:not(.uk-navbar-transparent) {
    background: var(--black);
}

.uk-light {
    color: var(--white);
}
a, .uk-link {
    color: var(--link-color);
    transition: all .2s ease-out;
}
a:hover, .uk-link:hover {
    color: var(--link-hover);
}
.uk-box-shadow-xlarge {
    box-shadow: var(--box-shadow-xl);
}
.uk-dotnav {
    margin-left: -22px;
}
.uk-dotnav>* {
    padding-left: 22px;
}
.uk-dotnav>*>* {
    width: 12px;
    height: 12px;
}
.uk-light .uk-dotnav>*>* {
    background-color: var(--black);
    border-color: var(--primary-color);	
}
.uk-light .uk-dotnav>.uk-active>* {
    background-color: var(--primary-color);	
}

.uk-light .uk-slidenav {
	color: var(--primary-color);
	transition: all .4s ease-out;
}
.uk-offcanvas-bar {
    background-color: var(--black);
}
.uk-nav-primary {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    color: var(--white);		
}
.uk-nav-primary>li>a {
	color: var(--white);	
}
.uk-nav-primary>li>a:hover {
	color: var(--primary-color);
	text-decoration: none;	
}
.uk-nav>li>a {
    padding: 6px 0;
}
.uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle {
    min-height: 34px;
	color: #000;
}
.uk-navbar-toggle:hover, .uk-navbar-toggle[aria-expanded=true] {
    color: #000;
}

.uk-modal-close-outside {
	right: 20px;
	top: 20px;
}
.uk-light .uk-navbar-toggle {
    color: var(--white);	
}
.uk-light .uk-navbar-toggle:hover {
    color: var(--primary-color);	
}
.uk-navbar-left, .uk-navbar-right, [class*=uk-navbar-center] {
    gap: 15px;
}
.uk-modal-close-full {
    background: transparent;
}

.uk-tab>*>a {
    padding: 5px 10px;
    color: #000;
    border-bottom: 1px solid transparent;
    font-family: var(--button-font);	
	font-size: 0.8125rem;
	line-height: 1.5;
	letter-spacing: 0.65px;	
}
.uk-tab>.uk-active>a {
    color: #000;
    border-color: transparent;
}

@media (min-width: 640px) {
	.uk-modal-close-outside {
		right: 30px;
		top: 30px;
	}
	.uk-nav-primary {
		font-size: 1.5rem;
	}	
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html {
    font-weight: normal;
    color: var(--black);
    line-height: 1.5;
    font-size: var(--base-font-size);
    font-family: var(--body-font);
    background: #F9F6EE;
	overflow-x: hidden;	
}

h1, h2, h3, h4, h5, h6,
.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6,
.uk-heading-small, .uk-heading-medium, .uk-heading-large, .uk-heading-xlarge, .uk-heading-2xlarge {
    font-family: var(--heading-font);
    color: var(--black);
	font-style: normal;	
}
.fw450 {
    font-family: var(--button-font) !important;		
}

@media (min-width: 960px) {
	/* .uk-h3, h3 {
		font-size: 1.875rem;
	}	*/
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.uk-button {
    font-family: var(--button-font);
    font-weight: normal;
    transition: all .4s ease-out;
    letter-spacing: var(--btn-letter-spacing);
    font-size: var(--btn-font-size);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    height: var(--btn-height);
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	line-height: normal;
	min-height: 45px;
	border-radius: 29px;
	position: relative;
}
.uk-button.btn-icon {
    padding-right: calc(57px + 16px);
	text-align: left;	
}
.uk-button.btn-icon svg {
    position: absolute;
    right: 0;
    margin-right: 16px;
	transition: margin-right 0.3s;	
}
.uk-button.btn-icon:hover svg {
    margin-right: 14px;
}
.uk-button.btn-icon svg path {
	transition: fill 0.3s;
}
.uk-button.btn-icon:hover svg path {
	fill: #fff;
}
.uk-button-default, .uk-light .uk-button-default, .uk-button-default:focus {
    border-color: var(--white);
    background-color: var(--white);	
    color: var(--black);	
}
.uk-button-default:hover, .uk-light .uk-button-default:hover, .uk-button-default:hover:focus {
    border-color: var(--black);
    background-color: var(--black);	
    color: var(--white);
}
.uk-button-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}
.uk-button-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.uk-button-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}
.uk-button-secondary:hover {
    background-color: var(--button-hover);
}
.uk-button-dark {
    background-color: #2a3747;
    border: 1px solid #2a3747;
    color: var(--white);
}
.uk-button-dark:hover {
    background-color: transparent;
    border-color: var(--button-hover);
}
.uk-light .uk-button-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}
.uk-light .uk-button-primary:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
}
.uk-button.uk-button-text {
    height: auto;
    min-height: auto;
    padding: 0 0 5px 0;
    width: auto;
}

@media (max-width: 640px) {
	.uk-button {
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Forms & Inputs
--------------------------------------------------------------*/
.uk-select:not([multiple]):not([size]) {
    background-image: url(../img/drop-down-arrow.png) !important;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center !important;
    background-size: 10px !important;
}
.uk-input, .uk-select:not([multiple]):not([size]) {
    height: 48px;
    padding-left: 12px;
    padding-right: 12px;	
}
.uk-form-icon {
    width: 20px;
}
.uk-form-icon:not(.uk-form-icon-flip) ~ .uk-input {
    padding-left: 32px !important;
}
.uk-input, .uk-select, .uk-textarea {
    font-size: 0.875rem;
}
.uk-input, .uk-select, .uk-textarea {
    color: #000;
    border: 1px solid #E9E2CE;
	border-radius: 8px;
	background: #E9E2CE;	
}
.uk-light .uk-input, .uk-light .uk-select, .uk-light .uk-textarea, .uk-light .uk-checkbox {
    background-color: rgb(255,255,255);
    color: #666;
    border-color: var(--primary-color);	
}
.uk-light .uk-input:focus, .uk-light .uk-select:focus {
    background-color: rgb(255,255,255);
    color: #666;
    border-color: #8C6F4F;	
}
label, .uk-form-label {
    font-family: var(--button-font);
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings:"wdth" 100;	
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 5px;
    display: inline-block;
}


.uk-background-primary {
    background-color: var(--background-primary);
}
.uk-background-muted {
    background-color: var(--background-muted);
}
.uk-background-secondary {
    background-color: var(--background-secondary);
}


/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/	
@media (min-width: 960px) {
    .inner-left {
        padding-left: 40px;
    }
    .inner-right {
        padding-right: 40px;
    }	
}
@media (min-width: 1200px) {
    .inner-left {
        padding-left: max(var(--min-padding), calc((100vw - (var(--container-width) + (var(--container-padding) * 2))) / 2));
    }
    .inner-right {
        padding-right: max(var(--min-padding), calc((100vw - (var(--container-width) + (var(--container-padding) * 2))) / 2));
    }
}
@media (max-width: 960px) {
	.inner-left, .inner-right {
		padding: 0 40px;
				
	}
}
@media (max-width: 640px) {
	.inner-left, .inner-right {
		padding: 0 15px;
	}	
}


/*--------------------------------------------------------------
# Page Loading Style
--------------------------------------------------------------*/
.main-loading {
    background-color: var(--white);
    border-radius: 5px;
    background-image: url('../img/spinner.svg');
    background-size: 100%;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
    z-index: 999999;
}

.main-loading:after {
    content:"";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    background-image: url('../img/spinner.svg');
    background-size: 80px;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0 0 40px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 0 40px rgba(0,0,0,0.05);
    -ms-box-shadow: 0 0 40px rgba(0,0,0,0.05);
    -o-box-shadow: 0 0 40px rgba(0,0,0,0.05);
}

/*--------------------------------------------------------------
# Scroll to Top Button
--------------------------------------------------------------*/
.bck {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0,0,0,.8);
    color: rgba(255,255,255,.7) !important;
    visibility: hidden;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align:center;
    transition: all 0.1s ease-in;
    z-index: 999999;
}
.bck:hover {
    color: rgba(255,255,255,1) !important;
}
.bck.bck-on {
    visibility: visible;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
h2, .uk-h2 {
	line-height: 1.2;
}
@media (min-width: 640px) {
	.uk-dotnav {
		margin-left: -44px;
	}
	.uk-dotnav>* {
		padding-left: 44px;
	}	
}
@media (min-width: 960px) {
    h2, .uk-h2 {
        font-size: 2.1875rem;
        line-height: 1.2;
    }	
}
@media (min-width: 1200px) {
    .uk-heading-large {
        font-size: 4.3125rem;
        line-height: 4.875rem;
        margin-bottom: 40px !important;
    }
}

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
.animateInitState {
	visibility: hidden !important; 
	opacity: 0;
}
.animateInitState.uk-scrollspy-inview {
	visibility: visible !important; 
	opacity: 1;	
}

.tm-header {
    position: absolute;
    z-index: 1010;
    left: 0;
    right: 0;
    width: 100%;
}
.top-nav:not(.uk-navbar-sticky) {
	margin-top: 42px;
}
.section-title {
	font-style: normal;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.2;
    margin-bottom: 12px;
}
.section-title02 {
    font-family: var(--button-font);	
	font-size: 0.8125rem;
	line-height: 1.5;
	letter-spacing: 0.65px;	
	text-transform: uppercase;
}
.section-secondary-title{
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 0.65px; 
}
.section-secondary-title a{
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    text-decoration-thickness: 2px !important;
}
.title {
	font-size: 1.875rem;	
}
.subtitle {
	font-size: 0.75rem;
	text-transform: uppercase;	
}


@media (min-width: 640px) {
	.section-title {
		font-size: 3.125rem;	
	}  	
}
@media (min-width: 1200px) {
	.section-title, .switcher h2 {
		font-size: 3.4375rem;	
	}  	
}
@media (max-width: 480px) {
    .uk-logo {
        max-width: 154px;
    }        
}

/*--------------------------------------------------------------
# Main Banner
--------------------------------------------------------------*/
.banner-caption .main-title {
    font-size: 3.125rem;
	text-transform: capitalize;
	font-weight: 325;
	line-height: 1.2;	
}
.main-banner {
    background-color: #000;
    height: 896px; 	
	min-height: 100vh;
}
.main-banner .top-cover {
	background: rgba(0,0,0,0.4);
}
.main-banner .hero-cta {
    margin-top:44px !important; 
}

.banner-caption {
    max-width: 748px;
    padding-top: 74px;
}
.banner-caption .subheading {
	line-height: 1.5;
	margin-bottom: 34px !important;
}
	
@media (min-width: 960px) {
    .banner-caption .main-title {
        font-size: 3.875rem;
		margin-bottom: 24px  !important;
    }
}	
@media (min-width: 1200px) {
    .banner-caption .main-title {
        font-size: 4.0625rem;
    }	
    .main-banner {
		height: 829px; 	
    }
}

@media (max-width: 640px) {
    .hero-cta .uk-button {
        min-width: 260px; 
    }	
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.bordered {
	border-top: 1px solid var(--primary-color-border);
	border-bottom: 1px solid var(--primary-color-border);
}
.remove-top-border {border-top: 0;}
.remove-bottom-border {border-bottom: 0;}

.intro-message-section {
    padding-top: 90px;
    padding-bottom: 122px;
}
.intro-message-wrapper {
    padding-top: 150px;
    padding-bottom: 0;
}
.intro-message-wrapper02 {
	min-height: 390px;
}
.vdivider span {
	width: 1px;
	height: 106px;
	background: var(--primary-color-border);
	display: inline-block;
	transform: translateY(-50%);
}	
hr {
	border-color: var(--primary-color-border);	
}
.featureblocks-section .section-title02 {
    margin-bottom: 40px;
    margin-top: -14px;
}

.source {
	font-size: 0.875rem;
}

.custom-bullet-list {
	list-style: none;         
	padding-left: 0;         
}
.custom-bullet-list li {
	position: relative;
	padding-left: 24px; 
}
.custom-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    background: url('../img/plus.svg') no-repeat center center;
    background-size: contain;
    display: inline-block;
    transform: translateY(100%);
}

.boxed.uk-section  {
	padding-top: 32px;		
	padding-bottom: 40px;		
}
.boxed hr {
	margin: 32px 0;	
}
.boxed .uk-grid-divider>:not(.uk-first-column)::before, .boxed hr {
	border-color: var(--primary-color-border);	
}
.boxed .section-title  {
	margin-top: 20px;	
}
.boxed p {
	margin-bottom: 30px;	
}
.boxed .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before {
    border-top: 0;
}
.boxed .uk-list {
	margin-bottom: 34px;	
}	

.quote-section {
	padding-top: 32px;
	padding-bottom: 32px;
}
.quote-section .inner {
	padding: 108px 30px 114px 30px;
}

.programmes-section .section-title {
	margin-bottom: 54px;		
}
.programmes-section .uk-tab {
    margin: 0;
}
.programmes-section .uk-tab::before {
	display: none;
}
.programmes-section .uk-tab > li {
    border-left: 1px solid var(--primary-color-border);
    border-bottom: 1px solid var(--primary-color-border);
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.programmes-section .uk-tab>li:first-child {
	border-left-color: transparent;
}
.programmes-section .uk-tab>li.uk-active {
	background-color: #F3EDDA;
	position: relative;
}
.programmes-section .uk-tab>li:hover {
	background-color: rgb(243 237 218 / 70%);
}
.programmes-section .uk-tab > li > a::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #000;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.programmes-section .uk-tab > li.uk-active > a::after, .programmes-section .uk-tab > li:hover > a::after {
	opacity: 1;
	transform: translateY(5px);
}

.programmes-section .uk-tab > li > a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px 10px;
	text-align: center;
	color: #000;
	text-decoration: none;
	transition: transform 0.3s ease;
	will-change: transform; 
}

.programmes-section .uk-tab > li.uk-active > a,
.programmes-section .uk-tab > li:hover > a {
	transform: translateY(-3px);
}

.programmes-section .detail .col {
	padding: 0 20px 70px 20px;
}
.programmes-section .detail p {
    font-family: var(--heading-font);	
}
.programmes-section .custom-bullet-list li {
    font-size: 0.875rem;
	margin-top: 8px;
	line-height: 1.2;	
}
.programmes-section .custom-bullet-list li::before {
    transform: translateY(7%);
}	
.programmes-section hr {
    margin-top: 32px;
    margin-bottom: 58px;
}	
.programmes-section .package {
	margin-top: 0;
}
.switcher h2 {
    margin-top: 19px;
    margin-bottom: 5px;
	font-size: 1.875rem;
}
.switcher .uk-button-text::before {
    right: 0;
}
.programmes-section .uk-position-medium {
	margin-top: 56px;
	margin-left: 26px;
	--uk-position-margin-top-offset: 56px;
	--uk-position-margin-left-offset: 26px;
}
.programmes-section .uk-select, .programmes-section .uk-input:focus, .programmes-section .uk-select:focus {
    background-color: #ECE9DF;
    color: #000;
    border-color: #ECE9DF;
	text-transform: uppercase;
	font-size: 0.8125rem;
}
.programmes-section .uk-select:not([multiple]):not([size]) option {
    color: #000;
	font-size: 0.8125rem;
}
.programmes-section .uk-select:not([multiple]):not([size]) {
    background-size: 14px !important;
    background-image: url('../img/select.svg') !important;
    background-repeat: no-repeat;
	display: block;
	background-position: 96% 50% !important;
	height: 50px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;	
}


.expert h3 {
	margin-top: 6px;
}
.expert .section-title02 {
    text-transform: capitalize;
	border-radius: 300px;
	border: 1px solid #FFF;
	padding: 5px 16px 5px 20px;
}
.expert .qualification {
    padding-top: 110px;
}
.expert .uk-button.uk-button-text {
	font-size: 0.8125rem;
}
.expert:hover .uk-button.uk-button-text {
	text-decoration: underline;
	transition: all .4s ease-out;
}
.ourexperts-section .heading  {
	padding-bottom: 60px;
	max-width: 772px;
}
.ourexperts-section .heading .section-title {
    margin-top: 24px;
}
.ourexpertsSwiper {
	padding-left: 10px;
	padding-right: 10px;
}
.ourexpertsSwiper .uk-cover-container {
    background: #000;
	border-radius: 3px;
}
.ourexpertsSwiper .uk-cover-container img {
    opacity: 0.8;
	border-radius: 3px;
}

.yourexperience-section {
	padding-top: 36px;
}
.keyfeatures-section {
    background: #FEE9C0;
}
.keyfeatures-section .wrapper {
    padding: 20px;
}
.keyfeatures-section .section-title {
    margin-bottom: 30px;
}

.ctafooter-section .uk-container {
    max-width: 1124px;
}
.ctafooter-section .section-title {
	margin-bottom: 52px;
}
.ctafooter-section .uk-button:hover {
	border-color: #fff;
}
.ctafooter-section .uk-button {
    justify-content: center;
}
.ctafooter-section .wrapper {
	padding-top: 140px;
}
@media (min-width: 640px) {
	.padding-vertical {
		padding-top: 42px;
		padding-bottom: 42px;		
	}
	.boxed.uk-section {
		padding-top: 0;
		padding-bottom: 0;
	}	
	.quote-section .info-cover-img {
		width: 228px;		
	}
	.quote-section {
		padding-top: 44px;
		padding-bottom: 44px;
	}
	
	.ourexperts-section .heading  {
		padding-bottom: 80px;		
	}
	
	.yourexperience-section {
		padding-top: 0;
	}	
	.keyfeatures-section .wrapper {
		padding: 40px;
	}
	.keyfeatures-section .section-title {
		margin-bottom: 56px;
	}	
	.keyfeatures-section .uk-list>:nth-child(n+2) {
		margin-top: 28px;
	}	
}
@media (min-width: 960px) {
	.intro-message-section {
		padding: 82px 0;
	}
	.intro-message-wrapper {
		padding-top: 158px;
		padding-bottom: 209px;
	}	
	.intro-message-wrapper02 {
		min-height: 488px;
	}
	.interview-section {
		padding-top: 178px;
		padding-bottom: 127px;		
	}	
	.quote-section .info-cover-img {
		width: 328px;		
	}
	.programmes-section {
		padding-top: 104px;
		padding-bottom: 154px;		
	}
	.programmes-section .uk-position-medium {
		margin-top: 72px;
		margin-left: 42px;
		--uk-position-margin-top-offset: 72px;
		--uk-position-margin-left-offset: 42px;
	}
	.programmes-section .switcher-container {
		border: 1px solid var(--primary-color-border);	
	}	
	.programmes-section .detail .col {
		padding-top: 60px;
		padding-bottom: 60px;
		padding-right: 42px;
	}
	.switcher h2 {
		font-size: 3.4375rem;
	}	
	.ourexperts-section {
		padding-bottom: 83px;		
	}
}
@media (min-width: 1200px) {
	.boxed .uk-grid {
		margin-left: -84px;
	}	
	.boxed .uk-grid>* {
		padding-left: 84px;
	}
	.boxed .uk-grid-divider>:not(.uk-first-column)::before {
		left: 42px;
	}	
	.quote-section .inner {
		padding: 150px 134px;
	}
	.quote-section .uk-grid-large {
		margin-left: -120px;
	}	
	.quote-section .uk-grid-large>* {
		padding-left: 120px;
	}
	.programmes-section .package {
		margin-left: -52px;
	}	
	.programmes-section .package>* {
		padding-left: 52px;
	}
	
	.ourexpertsSwiper .swiper-slide .uk-position-large {
		margin-left: 30px;
		--uk-position-margin-left-offset: 30px;
	}
	
	.keyfeatures-section .wrapper {
		padding-left: 76px;
		padding-right: 70px;
	}
	.keyfeatures-section ul {
		margin-left: 10px;
	}
	
	.ctafooter-section  {
		background: linear-gradient(to bottom, #FEE9C0 0%, #FEE9C0 55%, #181918 45%, #181918 100%);
	}	
	.ctafooter-section .wrapper {
		padding: 92px 72px 70px 72px;
	}	
	.ctafooter-section .section-title {
		margin-bottom: 32px;
	}	
	.ctafooter-section .uk-button {
		min-width: 133px;
	}	
}
@media (max-width: 1200px) {
	.ctafooter-section .uk-container {
		padding-left: 0;
		padding-right: 0;
	}
	.ctafooter-section .wrapper {
		padding-bottom: 70px;
	}	
}
@media (max-width: 960px) {
	.programmes-section .uk-container {
		padding-right: 0;		
		padding-left: 0;		
	}	
	.programmes-section hr {
		margin-top: 22px;
		margin-bottom: 38px;
		margin-right: -15px;
		margin-left: -15px;
	}	
	.programmes-section .uk-cover-container {
		height: 400px;
	}	
	.programmes-section .detail .section-title02 {
		min-width: 170px;
	}	
}
@media (max-width: 640px) {
	.intro-message-wrapper02 .wrapper {
		padding-top: 150px;
	}
	.boxed .uk-list {
		margin-bottom: 0;	
	}
	.ourapproach-section {
		padding-bottom: 0 !important;
		border-bottom: 0;
		background: #FAF6EE;
	}
	.quote-section .uk-container {
		padding: 0;
	}
	.quote-section .quote-wrapper {
		max-width: 328px;
	}
	.programmes-section .uk-cover-container {
		height: 267px;
	}	
	.programmes-section .detail .section-title02 {
		min-width: unset;
	}	
	.callinfo {
		margin-top: 40px;
	}
	
	.section-title.full {
		padding: 0 15px;	
	}	
}


/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/
.myFeatureSwiper .swiper-wrapper {
	transition-property: transform !important;
	transition-duration: 0ms !important;
}

.swiper-container {
	max-width: var(--container-width);
	overflow: hidden;
}
.swiper-container .swiper-slide {
    max-width: 390px; 
}
.ourexpertsSwiper .swiper-slide {
    max-width: 433px; 
}
.ourexpertsSwiper .swiper-slide {
	width: 80%;
}
.swiper-controls {
	text-align: center;
}
.swiper-controls .arrow-nav {
	margin-top: 30px !important;
}
.custom-arrow {
	cursor: pointer;
}
.swiper-pagination {
    position: static !important;
    margin-top: 52px;
    text-align: left;
    display: flex;
    gap: 0;
    width: 76% !important;
    max-width: 1240px;
    padding: 0;
}
.swiper-pagination span {
    flex: 1 1 0;
    width: auto;
    height: 2px;
    border-radius: 0;
    background: #BEB6A1;
    margin: 0;
    transition: background 0.2s;
    display: block;
    margin: 0 !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
	background: #5F5B51;
}

@media (min-width: 640px) {
	.swiper-container {
		padding-top: 2rem;
	}	
	.ourexpertsSwiper .swiper-slide {
		width: 45%;
	}
}

@media (min-width: 1600px) {
	.ourexpertsSwiper .swiper-slide {
		width: 30%;
	}
}
@media (max-width: 640px) {
	.keyfeatures img {
		max-width: 70%;
	}	
}

/*--------------------------------------------------------------
# Footer Styles
--------------------------------------------------------------*/
.footer-section {
    font-size: 0.875rem;
    padding-bottom: 140px;
    margin-top: -1px;
	padding-top: 52px;
}
.footer-section a {
	text-transform: none !important;
    font-size: 0.875rem !important;	
}
.footer-section hr {
	border-top-color: #5F5B51 !important;	
}
.footer-section .sitelogo {
	padding-bottom: 70px;		
}
.footer-section .footer-bottom>.uk-grid-margin {
    margin-top: 24px;
}
@media (min-width: 960px) {
	.footer-section .sitelogo {
		padding-bottom: 60px;		
	}
}
@media (max-width: 640px) {
	.footer-section hr {
		margin-bottom: 64px;		
	}
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.uk-light .cform {
	color: #000;
}
.cform {
    max-width: 590px;
    color: #000;
    margin: 0 auto;
    background: #F3EDDA;	
}
.cform .inner-wrapper {
	border-radius: 17px;
}

.cform .uk-grid-small {
    margin-left: -10px;   
}
.cform .uk-grid-small>* {
    padding-left: 10px;    
}
.cform textarea {
    max-height: 97px;
	padding: 10px 12px;
}
.cform .uk-grid-small>.uk-grid-margin {
    margin-top: 14px;
}
.cform .form-title {
	margin-bottom: 30px;	
}
.cform .uk-form-controls {
	position: relative;
}

.cform .uk-checkbox:focus, .uk-radio:focus {
    border-color: #000;
}
.cform .uk-checkbox {
    margin: 0;
    border-color: #000;
    position: relative;
    top: 2px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.cform .uk-checkbox:checked, .cform .uk-checkbox:indeterminate, .cform .uk-radio:checked {
    background-color: #BEB6A1;
	border-color: #000;
}
.cform .uk-button {
    margin-top: 16px;
	color: #fff;
}
.cform a {
    color: #000;
    text-decoration: none;
}
.cform .confirm a {
	text-decoration: underline;
}
.cform .confirm a:hover {
	color: #BEB6A1;
}

.cform .btn {
    font-family: var(--button-font);
    border-radius: 300px;
    border: 1px solid #000;
    display: inline-flex;
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
    font-size: 0.8125rem;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #000;
}
.uk-input:focus, .uk-select:focus, .uk-textarea:focus {
    background: #F9F6EE;
    color: #000;
    border-color: #BEB6A1;
}
.cform  hr.two {
    margin-bottom: 30px;
}

.form-section.uk-modal {
    padding: 0;
}
.form-section .uk-modal-body {
    background: rgba(0, 0, 0, 0.20);
}

.cform .inner-wrapper {
	padding: 40px 30px;
}
@media (min-width: 960px) {
	.form-section .section-title {
		font-size: 2.8125rem;
	}
	.cform .inner-wrapper {
		padding: 44px;
	}	
	.cform .form-title {
		margin-bottom: 32px;	
	}
	.form-section .uk-modal-body {
		padding: 60px;
	}	
}
@media (max-width: 640px) {
	.cform .callinfo {
		margin-top: 30px;
	}
	.cform .callinfo.uk-grid-small>.uk-grid-margin {
		margin-top: 6px;
	}	
	.cform .section-title {
		font-size: 2rem;
	}	
}
/*--------------------------------------------------------------
# Telephone International Code
--------------------------------------------------------------*/
.form .iti--allow-dropdown input, .form .iti--allow-dropdown input[type=text], .form .iti--allow-dropdown input[type=tel], .form .iti--separate-dial-code input, .form .iti--separate-dial-code input[type=text], .form .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0;
	font-size: 0.875rem;
}
.iti {
    width: 100%;
}
.hide {
    display: none;
}
#valid-msg {
    color: #FFFFFF;
	background: #00C900;
}
#error-msg {
    color: red;
}
input.error {
    border: 1px solid #FF7C7C;
}
.form-dark .iti__country-list {
    background-color: #151f28;
}
.iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0);

	font-size: 0.99609375rem;
}
.iti-msg {
    position: absolute;
    left: 0;
    bottom: -19px;
    background: red;
    color: #fff !important;
    padding: 1px 10px;
    font-size: 12px;
    right: 0;
}
.iti__selected-flag {
    padding-left: 10px;
}
.iti__search-input {
    height: 34px;
    padding: 0 10px;
    outline: 0;
}
.iti .iti__selected-dial-code {
    font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Select 2
--------------------------------------------------------------*/
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #666;
    line-height: 48px;
    text-transform: none;
    font-family: var(--button-font);
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings:"wdth" 100;	
    font-weight: 400;	
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 0px;
	height: 48px;
}
.select2-dropdown {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #666 transparent transparent transparent;
    border-width: 6px 6px 0 6px;
    margin-left: -10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: var(--primary-color);
    color: #fff;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #000;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--primary-color);
	color: #fff;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: var(--primary-color);
	outline: 0;
}
.select2-container {
	width: 100% !important;
}

/*--------------------------------------------------------------
# Loading - Sweetalert
--------------------------------------------------------------*/
.main-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	background-color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	background-image: url('../img/spinner.svg');
	background-size: 100%;
	width: 80px;
	height: 80px;
	box-shadow: 0 0 40px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0 0 40px rgba(0,0,0,0.05);
	-moz-box-shadow: 0 0 40px rgba(0,0,0,0.05);
	-ms-box-shadow: 0 0 40px rgba(0,0,0,0.05);
	-o-box-shadow: 0 0 40px rgba(0,0,0,0.05);
	z-index: 999999;
}
.swal2-modal {
    font-family: var(--body-font);
    font-style: normal;
} 
.swal2-styled.swal2-confirm {
    background-color: #c8a974 !important;
    font-size: 14px;
    font-weight: 400;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 400;
	margin-bottom: 20px;	
}
.swal2-styled.swal2-confirm:hover, .swal2-styled.swal2-confirm:focus,
.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
    background-color: #9e7f4a  !important;
	box-shadow: none;
}
.swal2-html-container {
    display: block;
    line-height: 1.6;
}
.swal2-html-container a {
    color: #9e7f4a;
	text-decoration: underline;
}


.uk-modal {
	background: rgba(0, 0, 0, 0.80);
	backdrop-filter: blur(5px)
}
.uk-modal-dialog {
    background: none;
}
.uk-close:hover {
    color: #000 !important;
}
.uk-light .uk-close {
	color: #fff !important;
}
.uk-modal .uk-padding {
    padding: 42px;
}
.uk-modal .div02 {
    margin: 32px 0;
}
.uk-modal .modalcontent {
    padding-top: 3px !important;
	max-height: 480px;
	scrollbar-width: auto;	
	-webkit-overflow-scrolling: touch;
}
.uk-modal .title {
	margin-top: 3px;
	margin-bottom: 4px;
}
.uk-modal .match-height {
	max-height: 865px;
}
.uk-modal .modalheading {
	padding-top: 70px;
	padding-bottom: 24px;
}

@media (min-width: 960px) {
	.uk-modal-dialog {
		padding: 50px 100px;
	}	
}
@media (max-width: 640px) {
	.uk-modal .modalcontent {
		max-height: 230px;
	}	
	.uk-modal .uk-cover-container {
		max-height: 365px;
	}	
	.uk-modal .uk-cover-container img {
		object-position: top;
	}	
	.uk-modal .wrapper {
		padding-bottom: 15px;
	}
	.uk-modal .uk-padding {
		padding: 42px 20px;
	}
	.uk-modal .modalheading  {
		padding-bottom: 20px;
	}	
}


.stickybottomcta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999; /* or higher if you want */
  transform: translateY(100%);
  transition: transform 0.3s;
}
.stickybottomcta.visible {
  transform: translateY(0);
}

.stickybottomcta .uk-button {
    min-height: 50px;
    background: #FFD48B;
    color: #000;
	border-color: #000;
}
.stickybottomcta .uk-button:hover {
	background: white;
	color: #000;
	border-color: black;
}

.stickybottomcta .uk-button.btn-icon svg circle {
    stroke: #000;
    transition: stroke 0.3s ease;
}

.stickybottomcta .uk-button.btn-icon svg path {
    fill: #000;
    transition: fill 0.3s ease;
}

.stickybottomcta .uk-button.btn-icon:hover svg circle {
    stroke: black;
}

.stickybottomcta .uk-button.btn-icon:hover svg path {
    fill: black;
}
@media (min-width: 640px) {
	.stickybottomcta .uk-button {
		min-width: 360px;
	}
}




/*──────────────────────────────────────────────────────────────────────────
  Hubspot Variables — customize these once per site or global stylesheet
──────────────────────────────────────────────────────────────────────────*/
:root {
  /* Layout */
  --hb-form-max-width: 100%;
  --hb-form-padding: 12px;
  --hb-form-gap: 1rem;

  /* Typography */
  --hb-font-family: "TWK Lausanne Pan 250", Arial, sans-serif;
  --hb-font-size: 0.875rem;
  --hb-label-color: #000;
  --foot-font-size: 1rem;

  /* Inputs */
  --hb-input-height: 48px;
  --hb-textarea-height: 168px;
  --hb-input-border: #E9E2CE;
  --hb-input-radius: 8px;
  --hb-focus-color: #BEB6A1;
  --hb-error-color: #000;
  --hb-input-bg-color: #E9E2CE;
  --hb-focus-bg-color: #F9F6EE;

  /* Buttons */
  --hb-button-bg: #000;
  --hb-button-bg-hover: #768771;
  --hb-button-color: #fff;

  /* Success message */
  --hb-success-bg: #e6ffed;
  --hb-success-border: #b7eb8f;
  --hb-success-color: #2f855a;
}

/*──────────────────────────────────────────────────────────────────────────
  Wrapper: center & constrain
──────────────────────────────────────────────────────────────────────────*/
.form-section {
  max-width: var(--hb-form-max-width);
  margin: 0 auto;
  padding: var(--hb-form-padding);
  font-family: var(--hb-font-family);
  font-size: var(--hb-font-size);
}

/*──────────────────────────────────────────────────────────────────────────
  Form container: grid layout
  - 1 column on mobile, 2 on desktop
──────────────────────────────────────────────────────────────────────────*/
.form-section .hs-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hb-form-gap);
}

@media (min-width: 640px) {
  .form-section .hs-form {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Explicit full-width for select & textarea fields */
  .form-section .hs-form-field.hs-fieldtype-select,
  .form-section .hs-form-field.hs-fieldtype-textarea {
    grid-column: 1 / -1;
  }
}

/*──────────────────────────────────────────────────────────────────────────
  Field wrapper
──────────────────────────────────────────────────────────────────────────*/
.form-section .hs-form-field {
  display: flex;
  flex-direction: column;
}

/*──────────────────────────────────────────────────────────────────────────
  Label & required indicator
  - Hide default labels, show only on error
──────────────────────────────────────────────────────────────────────────*/
.form-section .hs-form-field label {
  display: none;
  margin-bottom: 0.5rem;
  font-weight: normal;
  font-size: var(--hb-font-size);
  color: var(--hb-label-color);

}
.form-section .hs-form-field.hs-error label {
  display: block;
}
.form-section .hs-form-required:after {
  content: "*";
  color: var(--hb-error-color);
  margin-left: 0.25rem;
}

/*──────────────────────────────────────────────────────────────────────────
  Inputs, selects, textareas
──────────────────────────────────────────────────────────────────────────*/
.form-section .hs-form-field input[type="text"],
.form-section .hs-form-field input[type="email"],
.form-section .hs-form-field input[type="tel"],
.form-section .hs-form-field select,
.form-section .hs-form-field textarea {
  width: 100%;        /* fill grid cell */
  max-width: none;    /* override HubSpot default */
  box-sizing: border-box; /* include padding in width */
  font-family: var(--body-font);

  padding: 0.75rem 1rem;
  height: var(--hb-input-height);
  border: 1px solid var(--hb-input-border);
  border-radius: var(--hb-input-radius);
  background: var(--hb-input-bg-color);
  font-size: var(--hb-font-size);
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/*──────────────────────────────────────────────────────────────────────────
  Override textarea height
──────────────────────────────────────────────────────────────────────────*/
.form-section .hs-form-field textarea {
  height: var(--hb-textarea-height);
}

/* Focus state */
.form-section .hs-form-field input:focus,
.form-section .hs-form-field select:focus,
.form-section .hs-form-field textarea:focus {
  outline: none;
  border-color: var(--hb-focus-color);
  box-shadow: 0;
  background: var(--hb-focus-bg-color);
}

/*──────────────────────────────────────────────────────────────────────────
  Override HubSpot defaults for textarea placeholder
──────────────────────────────────────────────────────────────────────────*/
.form-section .hs-form-field textarea.hs-input::placeholder {
  font-family: var(--hb-font-family);
  color: var(--hb-label-color);
}

/*──────────────────────────────────────────────────────────────────────────
  Error state
──────────────────────────────────────────────────────────────────────────*/
.form-section .hs-form-field.hs-error input,
.form-section .hs-form-field.hs-error select,
.form-section .hs-form-field.hs-error textarea,
.form-section .hs-form-field.hs-error label {
  border-color: var(--hb-error-color);
  color: var(--hb-error-color);
}
.form-section .hs-error-msgs {
    margin-top: 0.25rem;
    color: var(--hb-error-color);
    font-size: 0.875rem;
    margin-left: 0;
    padding-left: 15px;
	margin-bottom: 0;
}
/* Ensure error message labels are visible */
.form-section .hs-error-msgs label {
  display: block !important;
  font-size: 0.75rem;
}

/*──────────────────────────────────────────────────────────────────────────
  Submit button
──────────────────────────────────────────────────────────────────────────*/
.form-section .hs-form input[type="submit"],
.form-section .hs-form button {
	align-self: flex-start;
	background-color: var(--hb-button-bg);
	color: var(--hb-button-color);
	border: none;
	border-radius: var(--hb-input-radius);
	cursor: pointer;
	transition: background-color 0.2s ease;
	min-width: 115px;
	font-family: var(--button-font);
	letter-spacing: var(--btn-letter-spacing);
	font-size: var(--btn-font-size);
	padding: var(--btn-padding-y) var(--btn-padding-x);
	height: var(--btn-height);
	text-transform: uppercase;
	line-height: normal;
	min-height: 45px;
	border-radius: 29px;
}
.form-section .hs-form input[type="submit"]:hover,
.form-section .hs-form button:hover {
  background-color: var(--hb-button-bg-hover);
}

/*──────────────────────────────────────────────────────────────────────────
  Success message (after submit)
──────────────────────────────────────────────────────────────────────────*/
.form-section .hs-form .hs-form-success {
  padding: 1rem;
  background-color: var(--hb-success-bg);
  border: 1px solid var(--hb-success-border);
  border-radius: var(--hb-input-radius);
  color: var(--hb-success-color);
  font-size: var(--hb-font-size);
}


/*──────────────────────────────────────────────────────────────────────────
  Move select dropdown icon further inside
──────────────────────────────────────────────────────────────────────────*/
.form-section .hs-form-field select.hs-input {
  padding-right: 1.5rem; 
  background-position: calc(100% - 12px) center; 
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/select.svg) !important;
  background-repeat: no-repeat;
  background-size: 12px 12px;  
}


/*Footer Punchline*/
.punchline{
    font-size: var(--foot-font-size);
    margin-bottom: 30px;
}
.punchline2{
    margin-bottom: 48px;
}
.punchline2 a{
    font-size: var(--foot-font-size) !important;
}

@media (max-width: 640px) {
    .section-secondary-title {
        font-size: 18px;
        line-height: 1.5;
        letter-spacing: 0.65px;
    }

    .cform .form-title {
        margin-bottom: 20px;
    }
}