/*------------------------------------------------------------
# CSS Variables (Global)
--------------------------------------------------------------*/
@font-face {
    font-family: 'SourceSans3';
    src: url('./fonts/SourceSans3-Bold.woff2') format('woff2'),
         url('./fonts/SourceSans3-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'SourceSans3sb';
    src: url('./fonts/SourceSans3-SemiBold.woff2') format('woff2'),
         url('./fonts/SourceSans3-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SourceSans3Reg';
    src: url('./fonts/SourceSans3-Regular.woff2') format('woff2'),
         url('./fonts/SourceSans3-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SourceSans3Light';
    src: url('./fonts/SourceSans3-Light.woff2') format('woff2'),
         url('./fonts/SourceSans3-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SourceSans3Med';
    src: url('./fonts/SourceSans3-Medium.woff2') format('woff2'),
         url('./fonts/SourceSans3-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}




:root {
	--body-font: "SourceSans3sb", serif;
    --heading-font: "SourceSans3", serif;
    --heading3-font: "SourceSans3Reg", serif;
    --headinglight3-font: "SourceSans3Light", serif;


    /* Colors */
    --black: #000;
    --white: #fff;
    --red  : #FF3B30;
    --teal : #143645;


     /* Spacing */
    --container-width: 1520px;

    /* Background */
    --primary: #fff;
    --bgmuted: #EAEAEA;

    /*Font Size*/
    --highlightheading:4rem;
    --sectionheading :3rem; 
    --sectioncopy:1.125rem;

}


.uk-container{
	max-width: var(--container-width) !important;
}

h1{
	font-family: var(--heading-font);
	color: var(--white);
	font-size: 4rem;
}
p{
	font-family: var(--body-font);
	color: var(--white);
	font-size: 1.4rem;
}

.uk-dark p{
	color: var(--black);
}

h2{
	font-family: var(--headinglight3-font);
	color: var(--black);
	font-size: 6rem;
}

h3{
	font-family: var(--heading-font);
	color: var(--black);
	font-size: 3rem;
}

.overline{
    font-family: 'SourceSans3sb' !important;
    color: #000 !important;
    font-size: 1rem !important;
    margin: 0px;
}

.lefttextrightimage .overline{
    color: #fff !important;
}


/*CTA*/

.uk-button{
    min-width: 190px;
    line-height: 48px;
    font-size: 1rem;
    font-family: 'SourceSans3Reg';
}
.uk-button-large {
    padding: 0 20px;
}

.uk-button-default {
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.uk-light .uk-button-default:hover {
    background-color: rgba(0, 128, 128, 0.8); /* Slightly lighter teal */
    color: var(--white);
}

.uk-button-primary{
	background-color: var(--red);
	color: var(--white);
    text-transform: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.uk-button-primary:hover {
    background-color: #d92c24; /* Slightly darker red for hover effect */
    color: var(--white);
}
.uk-light .uk-button-primary:hover {
    background-color: #d92c24; /* Slightly darker red for hover effect */
    color: var(--white);
}

.uk-button-secondary{
	background-color: var(--teal);
	color: var(--white);
    text-transform: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.uk-button-secondary:hover {
    background-color: rgba(0, 128, 128, 0.8); /* Slightly lighter teal */
    color: var(--white);
}
.uk-light .uk-button-secondary:hover {
    background-color: rgba(0, 128, 128, 0.8); /* Slightly lighter teal */
    color: var(--white);
}

.uk-light .uk-button-primary{
    background-color: var(--red);
    color: var(--white);
    text-transform: none;
} 

.uk-light .uk-button-default{
    background-color: transparent;
    color: var(--white);
    text-transform: none;
} 


/*Background*/
.uk-background-muted{
	background-color: var(--bgmuted);
}

.uk-background-secondary{
    background-color: var(--teal);
}
.uk-background-tertiary{
    background-color: var(--black) !important;
}

.inner-left {
        padding-left: calc((100vw - 1500px) / 2);
}
.inner-right {
        padding-right: calc((100vw - 1500px) / 2);
}

/*Autofill*/
.form-dark input:-webkit-autofill,
.form-dark input:-webkit-autofill:hover,
.form-dark input:-webkit-autofill:focus,
.form-dark input:-webkit-autofill:active {
    -webkit-text-fill-color: white !important; /* Ensures text stays white */
    background-color: transparent !important; /* Removes autofill background */
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important; /* Keeps background unchanged */
    transition: background-color 5000s ease-in-out 0s;
}

.form-light input:-webkit-autofill,
.form-light input:-webkit-autofill:hover,
.form-light input:-webkit-autofill:focus,
.form-light input:-webkit-autofill:active {
    -webkit-text-fill-color: black !important; /* Ensures text stays white */
    background-color: transparent !important; /* Removes autofill background */
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important; /* Keeps background unchanged */
    transition: background-color 5000s ease-in-out 0s;
}

input::placeholder,  
textarea::placeholder,  
select::placeholder,  
input:-ms-input-placeholder, /* Internet Explorer 10-11 */  
textarea:-ms-input-placeholder,  
select:-ms-input-placeholder,  
input::-ms-input-placeholder, /* Microsoft Edge */  
textarea::-ms-input-placeholder,  
select::-ms-input-placeholder {  
    color: #555555;  
    opacity: 1; /* Ensures visibility in Firefox */  
}

.uk-text-danger {
    color: var(--red);
    font-size: 13px;
}

/*Popup*/

div#swal2-html-container {
    font-family: 'SourceSans3Med';
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
   background-color: var(--red) !important;
}
h2#swal2-title {
    font-family: 'SourceSans3Reg';
}


/*Loader*/
.main-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgb(0 0 0 / 80%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.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('../images/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);
}


/*Mobile Desktop Classes*/
.desktoponly{
    display: grid;
}
.mobileonly{
    display: none;
}

.uk-grid-divider {
    margin-left: -30px !important;
    margin-right: 30px !important;
}
.uk-grid-divider>* {
    padding-left: 30px !important;
    padding-right: 30px;
}

.uk-grid-divider>:not(.uk-first-column)::before {
    left: 0px !important;
}


.lefttextrightimage .uk-grid-divider>:not(.uk-first-column)::before {
    border-left: 1px solid #fff !important;
}

.leftimagerighttext .uk-grid-divider>:not(.uk-first-column)::before {
    border-left: 1px solid #000 !important;
}


/*Slide Navogation*/

.uk-slidenav {
    line-height: 70px;
    height: 70px;
    width: 60px;
    background: #000;
    text-align: center;
    opacity: 0.50;
}
a.uk-slidenav-previous.uk-slidenav.uk-icon{
    background: #fff;
    color: #000;
}

a.uk-slidenav-previous.uk-slidenav.uk-icon:hover {
    background: #fff; /* Background color on hover */
    color: #000; /* Text color on hover */
}

.bck {
    position: fixed;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0,0,0,.5);
    color: rgba(255,255,255,.7) !important;
    /* visibility: hidden; */
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    transition-property: all;
    text-decoration: none !important;
    transition: all 0.1s ease-in;
    z-index: 999999;
}

/*Custom Section 1*/
.custom_section1 .textctacontainer{
	width: 1160px;
	padding-top: 14.875rem;
    padding-bottom: 7.125rem;
}
.custom_section1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Dark overlay */
    opacity: 0.9; /* Transparency level */
    transform: scaleX(-1); /* Flip horizontally */
    z-index: 1; /* Ensure it’s behind the content */
}
.custom_section1 .textctacontainer p{
	text-align: center;
    max-width: 875px;
    margin: 0 auto;
}



.texttctablock {
    position: relative; /* Needed for the pseudo-element to position absolutely within */
    z-index: 2; /* Above the section gradient */
}

.texttctablock::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg, rgba(0, 0, 0, 0.6) -50%, rgba(0, 0, 0, 0.0) 80%);
    z-index: -1;
    border-radius: 8px;
}

.custom_section1 > .uk-container {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

/*Section Why London*/
.custom_highlightwl .vertical-divider {
  border-left: 1px solid #000;
  height: 100%;
  margin: 0 20px;
}

.custom_highlightwl .info-icon{
    width: 72px; margin-right: 15px; max-width: 75px;
}

.custom_highlightwl .custom_img_margin{
    margin-right: 40px;
} 

.custom_highlightwl h3{
    font-size: var(--sectionheading);
}
.custom_highlightwl h4{
    font-size: 3.125rem;
    font-family: 'SourceSans3Reg';
    line-height: 110%;
    color: #143645;
}

.custom_highlightwl .uk-grid-large{
    padding-left: 40px;
}

.columnwhylondon3 .individualbox{
    padding: 20px;
}

.columnwhylondon3 .uk-margin-large-top.individualbox
{
    margin-top: 50px !important;
}

.columnwhylondon3{
    border-right: 1px solid #000;
    padding: 20px;
}

.columnwhylondon3:last-child {
    border-right: none;
}

/*Section 2*/
.custom_section2 .statsheading h3{
	margin: 0 auto;
}
.custom_section2 .statsheading p{
	margin: 0 auto;
}

.custom_section2 .uk-container{
    padding-left: 0px;
    padding-right: 0px;
}

/*Section 3*/

.whyjllmena p{
    font-family: var(--heading3-font);
    font-size: var(--sectioncopy);
    color: var(--black);
    max-width: 483px;
}

.whyjllmena .overline{
    margin-bottom: 0px;
}

.whyjllmena h3{
    margin-top: 1rem;
}

.whyjllmena .uk-card-body {
    padding: 40px 15px;
}

.whyjllmena .whyjllhighlight_card img{
    width: 100px !important;
}

p.uk-padding-left {
    padding-left: 20px;
}

.custom_highlightwl p{
    color: #143645;
    font-size: 1.4rem;
    font-family: 'SourceSans3sb' ;
    line-height: 110%;
}

.whyjllmenahighlights p{
    color: #143645;
    font-size: 1.4rem;
    font-family: 'SourceSans3sb' ;
    line-height: 110%;
   margin-top: 0px !important;
}

.custom-grid > div:nth-child(2),
.custom-grid > div:nth-child(4) {
    border-left: 1px solid #143645; /* Light grey border */
}

.whyjllmenahighlights .uk-grid-small>.uk-grid-margin {
    margin-top: 0px;
}

.leftimagerighttext{

}

.leftimagerighttext .uk-light h2{
    font-family: var(--heading-font);
    font-size: var(--sectionheading);
    color: var(--white);
    line-height: 120%;
    margin-top: 28px;
    margin-bottom: 30px;
}

.leftimagerighttext .uk-dark h2{
    font-family: var(--heading-font);
    font-size: var(--sectionheading);
    color: var(--black);
    line-height: 120%;
    margin-top: 28px;
    margin-bottom: 30px;
}

.leftimagerighttext .uk-light p{
    font-family: var(--heading3-font);
    font-size: var(--sectioncopy);
    color: var(--white);
    line-height: 150%;
    margin-top: 2rem;
}

.leftimagerighttext .uk-dark p{
    font-family: var(--heading3-font);
    font-size: var(--sectioncopy);
    color: var(--black);
    line-height: 150%;
    margin-top: 2rem;
}

.leftimagerighttext .rightcol {
    padding-left: 7.75rem;
    margin: 0 auto;
    box-sizing: border-box;
}
.twocolumns .uk-grid {
    display: flex;
    align-items: center; /* Vertical centering */
    justify-content: left; /* Horizontal centering if needed */
    min-height: 100%; /* Ensure the section takes full height */
}
.twocolumns .uk-grid .cta{
    margin-top: 50px !important;
}

/*Section 4*/
.custom_highlight h2{
    font-size: var(--highlightheading);
    font-family: var(--heading-font);
    line-height: 111%;
}
.custom_highlight p{
    font-size: 2.25rem;
    font-family: 'SourceSans3Reg';
    color: var(--black);
    padding-left: 7.75rem;
    padding-right: 2.25rem;
}

/*Section 5*/

.lefttextrightimage .uk-light h2{
    font-family: var(--heading-font);
    font-size: var(--sectionheading);
    color: var(--white);
    line-height: 120%;
    margin-top: 28px;
    margin-bottom: 30px;

}

.lefttextrightimage .uk-dark h2{
    font-family: var(--heading-font);
    font-size: var(--sectionheading);
    color: var(--black);
    line-height: 120%;
    margin-top: 28px;
    margin-bottom: 30px;
}

.lefttextrightimage .uk-light p{
    font-family: var(--heading3-font);
    font-size: var(--sectioncopy);
    color: var(--white);
    line-height: 150%;
    margin-top: 2rem;
}

.lefttextrightimage .uk-dark p{
    font-family: var(--heading3-font);
    font-size: var(--sectioncopy);
    color: var(--black);
    line-height: 150%;
    margin-top: 2rem;
}

.lefttextrightimage .leftcol {
    padding-right: 7.75rem;
    margin: 0 auto;
    box-sizing: border-box;
}

/*Section 6*/
.leftimagerighttext .uk-dark .statscontainer p{
    font-family: 'SourceSans3sb';
    line-height: 100%;
    font-size: 1.5rem;
    margin-top: 0px;
}
.leftimagerighttext .uk-light .statscontainer p{
    font-family: 'SourceSans3sb';
    line-height: 100%;
    font-size: 1.5rem;
    margin-top: 0px;
}
.lefttextrightimage .uk-dark .statscontainer p{
    font-family: 'SourceSans3sb';
    line-height: 100%;
    font-size: 1.5rem;
    margin-top: 0px;
}
.lefttextrightimage .uk-light .statscontainer p{
    font-family: 'SourceSans3sb';
    line-height: 100%;
    font-size: 1.5rem;
    margin-top: 0px;
}

.red-strip {
    background-color: #ff3b30;  /* Red background */
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    padding: 10px;
    height: 67px;
    z-index: 1;
    font-family: 'SourceSans3sb';
    font-size: 1.5rem;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Form Section*/

.custom_form h2{
    font-family: var(--heading-font);
    font-size: 4rem;
    color: var(--black);
}


/*Footer*/

.footer-logo {
    position: absolute;
    bottom: 20px; /* Adjust distance from the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 232px; /* Adjust size as needed */
    height: auto;
}

.custom_copyright{
    padding: 20px 0px;
}
.custom_copyright a {
    font-family: 'SourceSans3Med';
    font-size: 1.25rem;
    line-height: 1.5625rem;
    color: var(--white);
    transition: color 0.3s ease-in-out; /* Smooth transition */
}

.custom_copyright a:hover {
    color: rgba(255, 255, 255, 0.7); /* Light shade of white */
    text-decoration: none;
}
.copyright{
    margin-bottom: 0px;
    font-family:SourceSans3Light ;
    font-size: 0.8125rem;
}


/*Forms*/
.contactformcontainer {
    width: 40.5rem;
}
.uk-input,.uk-select{
    height: 3.75rem !important;
    border: solid 1px #82847F;
}
.uk-textarea{
    border: solid 1px #82847F;
}

.uk-form-label{
    font-family: 'SourceSans3Reg';
    font-size: 1rem;  
    color: #343A3D;
    text-align: left;
}

.uk-form-label span,.uk-form-label span a{
    font-family: 'SourceSans3Reg';
    font-size: 0.875rem;  
    color: #343A3D;
}

.uk-form-label span a{
   text-decoration: underline;
}
.uk-form-label span a:hover{
    color: rgba(52, 58, 61, 0.7); /* 50% opacity */
    animation: fadeIn 2s ease-in-out; 
}

.uk-select option {
    color: #343A3D !important;             
}


.hide {
    display: none !important;
}
.iti.iti--allow-dropdown.iti--separate-dial-code{
    width: 100%;
}
.uk-text-danger {
    display: flex;
}

.uk-text-success {
    display: flex;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
    color: #343A3D;
}

.select2-container .select2-selection--single, .forms .select2-container--default .select2-selection--single .select2-selection__arrow {
    outline: 0;
    height: 60px;
    border-radius: 0px;
    background: transparent;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #D0103A;
    color: #fff;
}

.select2-search--dropdown .select2-search__field {
    height: 40px;
}

.select2-results__option {
    padding: 10px;
    user-select: none;
    -webkit-user-select: none;
    height: 30px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 58px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
}

.select2 {
    width:100%!important;
}


@media(max-width:1600px){

    .leftimagerighttext .rightcol {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .lefttextrightimage .leftcol {
        padding-right: 4rem;
        padding-left: 4rem;
    }
    .lefttextrightimage .uk-light .statscontainer p,.leftimagerighttext .uk-dark .statscontainer p {
        font-size: 1rem;
    }

    .custom_highlight h2 {
        font-size: 3rem;
    }
    .custom_form h2 {
        font-size: 3rem;
    }

    .custom_highlight p {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .whyjllmena p {
        max-width: 580px;
    }

    .custom_highlightwl .whylondonheading{
        padding-bottom: 0px;
    }

    .custom_highlightwl p {
        font-size: 1.25rem;
    }
}

@media(max-width:1440px){
    .custom_highlightwl .custom_img_margin {
        margin-right: 20px;
    }
}

@media(max-width:1366px){
    h1 {
        font-size: 3rem;
        text-align: center;
    }

    .custom_section1 .textctacontainer p {
        max-width: 740px;
        font-size: 1.2rem;
    }

    h2 {
        font-size: 4rem;
    }

    .uk-section {
        padding-top: 40px;
        padding-bottom:40px;
    }

    .twocolumns .uk-grid .cta {
        margin-top: 30px !important;
    }
}


@media(max-width:1280px){

    .custom_section1 .textctacontainer {
        padding-top: 6rem;
        padding-bottom: 6rem;
        width: auto;
    }

    .uk-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .leftimagerighttext .uk-light h2 {
        font-size: 2.25rem;
    }
    .leftimagerighttext .uk-dark h2 {
        font-size: 2.25rem;
    }
    .lefttextrightimage .uk-light h2 {
        font-size: 2.25rem;
    }
    .lefttextrightimage .uk-dark h2 {
        font-size: 2.25rem;
    }

    .custom_highlight h2 {
        font-size: 2.5rem;
    }

    .custom_form h2 {
        font-size: 2.5rem;
    }

    .custom_highlight p {
        font-size: 2rem;
    }
    h3 {
        font-size: 2.25rem;
    }
    
    .whyjllmena .uk-card-body {
        padding: 1rem;
    }
    .whyjllmena p {
        width: auto;
    }

    .whyjllmenahighlights p {
        font-size: 1rem;
    }
    .custom_highlightwl p{
        font-size: 1rem;
    }

    .columnwhylondon3 .individualbox {
        padding: 20px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .custom_highlightwl .custom_img_margin {
        margin: 10px auto;
    }

    .custom_highlightwl .info-icon {
        height: 70px;
        margin : 0 auto;
    }

    .custom_highlightwl p {
        font-size: 1rem;
    }

}

@media(max-width:1152px){

    p {
        font-size: 1.2rem;
    }
    .whyjllmena p{
        font-size: 1rem;
    }

    .leftimagerighttext .uk-light p{
         font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0px;
    }

    .leftimagerighttext .uk-dark p{
         font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0px;
    }

    .lefttextrightimage .uk-light p{
         font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0px;
    }

    .lefttextrightimage .uk-dark p{
         font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0px;
    }

    .custom_highlight h2 {
        font-size: 2.25rem;
    }

    .custom_highlight p {
        font-size: 1.5rem;
    }

    .leftimagerighttext .uk-dark h2 {
        margin: 20px 0px;
    }

    .lefttextrightimage .uk-light h2 {
         margin: 20px 0px;
    }

    .logocontainer img,.footer-logo{
        scale: 0.8;
    }

    .leftimagerighttext .rightcol {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lefttextrightimage .leftcol {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .red-strip {
        height: 50px;
        font-size: 1rem;
    }
}


@media(max-width:980px){
    p {
        font-size: 1rem;
    }

    .custom_section1 .textctacontainer p {
        font-size: 1rem;
    }

    .whyjllmena .whyjllhighlight_card img {
        width: 60px !important;
    }

    .whyjllmena p {
        font-size: 0.750rem;
    }
    .custom_highlightwl p{
       font-size: 0.75rem;
    }



    .leftimagerighttext .uk-light h2 {
        font-size: 2rem;
        margin: 10px 0px;
    }
    .lefttextrightimage .uk-light h2 {
        font-size: 2rem;
        margin: 10px 0px;
    }
    .leftimagerighttext .uk-dark h2 {
        font-size: 2rem;
        margin: 10px 0px;
    }
    .lefttextrightimage .uk-dark h2 {
        font-size: 2rem;
        margin: 10px 0px;
    }

    .uk-grid-divider>* {
        padding-left: 20px !important;
        padding-right: 20px;
    }

    .uk-grid-divider {
        margin-left: -20px !important;
        margin-right: -20px !important;
    }

    .custom_highlightwl h4 {
        font-size: 2rem;
    }

    .custom_highlightwl .uk-grid-large {
        padding-left: 6px;
    }
    .custom_highlightwl p {
        font-size: 0.75rem;
    }

    .custom_highlightwl .info-icon {
        height: 50px;
        margin: 0 auto;
    }

    .custom_highlightwl h3 {
        font-size: 2rem;
    }

}


@media(max-width:768px){

    h1{
        font-size: 2.25rem;
        text-align: center;
    }
    p{
        font-size: 1rem;
    }
    h2 {
        font-size: 4rem;
    }
    h3 {
        font-size: 2rem;
    }

    .custom_section1 .textctacontainer p {
        font-size: 0.75rem;
    }

    .whyjllmena .whyjllhighlight_card img{
        width: 80px !important;
    }

    .custom_highlight h2 {
        font-size: 2rem;
        padding: 0px 40px;
    }

    .custom_form h2 {
        font-size: 2.25rem;
    }
    
    
    .custom_highlight p {
        font-size: 1.4rem;
        padding: 0px 40px;
    }

    .custom_section1 .textctacontainer {
        width: auto;
        padding: 6rem 0px
    }

    .custom_section2 {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .custom_section2 .uk-container{
        padding-top: 0px;
    }

    .custom_section2 .statsheading p {
        margin: 0 auto;
        text-align: center;
    }

    .custom_section2 .uk-margin-medium-bottom {
        margin-bottom: 0px !important;
    }

    .custom_section2 .uk-grid {
        display: flex;
        flex-direction: column;
    }

    .custom_section2 .uk-grid > * {
       width: 100%;
    }

    .custom_section2 .uk-grid .uk-width-2-3 {
        padding-top: 40px;
    }
    .custom_section2 .uk-grid .stats {
        padding : 40px 0px 0 0px;
    }

    .custom_section2 .uk-grid .uk-width-1-3 img {
        width: 100%;
    }

    .custom_section3 .mobilegrid{
        display: flex;
        flex-direction: column;
        padding: 0 30px;
    }

    .custom_section2 .cardboxes{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
    .custom_section2 .cardboxes h2{
        min-width: 150px;
        text-align: left;
    }
    .custom_section2 .cardboxes p{
        text-align: left;
    }

    .custom_form{
        padding: 40px 0;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .custom-grid > div:nth-child(2), .custom-grid > div:nth-child(4) {
        border-left: none;
    }

    .leftimagerighttext .rightcol {
        padding : 40px;
        margin: 0 auto;
    }
    .lefttextrightimage .leftcol {
        padding : 40px;
        margin: 0 auto;
    }
    .twocolumns .uk-grid .cta{
        flex-direction: row;
    }

    .custom_section3 .mobilegrid .uk-width-1-2{
        width: 100%;
    }

    .lefttextrightimage .uk-grid{
        display: flex;
        flex-direction: column-reverse;
    }
    .leftimagerighttext .uk-grid{
        display: flex;
        flex-direction: column;
    }
    .lefttextrightimage .uk-grid .uk-width-1-2{
        width: 100%;
    }
    .leftimagerighttext .uk-grid .uk-width-1-2{
        width: 100%;
    }

    .custom_highlight .mobilegrid{
        display: flex;
        flex-direction: column;
    }

    .custom_highlight .mobilegrid .uk-width-1-2{
        width: 100%;
    }


    .statscontainer .uk-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .statscontainer .uk-grid > *{
        width: 33%;
    }
    .lefttextrightimage .uk-dark .statscontainer p {
        font-size: 1rem;
    }
    .lefttextrightimage .uk-light .statscontainer p {
        font-size: 1rem;
    }
    .leftimagerighttext .uk-dark .statscontainer p {
        font-size: 1rem;
    }
    .leftimagerighttext .uk-light .statscontainer p {
        font-size: 1rem;
    }




    .custom_footer{
        min-height: 480px !important;
    }

    .red-strip {
        font-size: 1.3rem;
    }

    .logocontainer img{
        scale: 0.7;
    }

    .footer-logo {
        left: 50%;
        transform: translateX(-50%) scale(0.7);
    }


    .uk-slidenav {
        line-height: 45px;
        height: 45px;
        width: 35px;
        background: #FFFFFF;
        text-align: center;
        opacity: 0.50;
    }
}

@media(max-width:640px){

    .desktoponly{
        display: none;
    }

    .mobileonly{
        display: block;
    }

    .custom_highlightwl .info-icon {
        height: auto;
        display: flex;
    }
    .custom_highlightwl h4 {
        font-size: 2.5rem;
        text-align: center;
    }

    .custom_highlightwl p {
        font-size: 1.4rem;
        text-align: center;
        margin-top: 20px !important;
    }

    .custom_highlightwl .info-icon {
        margin: 20px auto;
    }

    .uk-slider-container-offset {
        margin: -11px -25px 4px -25px;
        padding: 11px 25px 0px 25px;
    }
}


@media(max-width:580px){
    .custom_section2 .uk-grid .stats {
        padding: 40px 30px 0 30px;
    }
}


@media(max-width:480px){

   .ctacontainer{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .ctacontainer .uk-margin-small-left{
        margin-left: 0px !important;
        margin-top: 10px;
    }
    .custom_section1 .textctacontainer {
        padding: 4rem 0px;
    }

    h1 {
        font-size: 2rem;
        text-align: center;
    }
    h2{
        font-size: 3rem;
    }

    .leftimagerighttext .uk-light h2 {
        font-size: 1.70rem;
    }
    .leftimagerighttext .uk-dark h2 {
        font-size: 1.70rem;
    }
    .lefttextrightimage .uk-light h2 {
        font-size: 1.70rem;
    }
    .lefttextrightimage .uk-dark h2 {
        font-size: 1.70rem;
    }
    .red-strip {
        font-size: 1rem;
    }

    .whyjllmena p {
        font-size: 1rem;
    }


    .custom_section2 .uk-grid .uk-width-2-3 {
        padding-top: 20px;
    }
    .custom_section2 .uk-grid .stats {
        padding-top: 20px;
    }
    .custom_section3 .mobilegrid{
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }
    .custom_form{
        padding: 20px 0;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .custom_highlight h2 {
        font-size: 1.70rem;
        padding: 0px 20px;
    }
    .custom_highlight p {
        font-size: 1.2rem;
        padding: 0px 20px;
    }


    .leftimagerighttext .uk-light p{
        font-size: 1rem;
        margin-top: 1rem;
    }

    .leftimagerighttext .uk-dark p{
       
        font-size: 1rem;
        margin-top: 1rem;
    }

    .lefttextrightimage .uk-light p{

        font-size: 1rem;
        margin-top: 1rem;
    }

    .lefttextrightimage .uk-dark p{

        font-size: 1rem;
        margin-top: 1rem;
    }

    .uk-grid-divider>* {
        padding-left: 20px !important;
        padding-right: 20px;
    }

    .uk-grid-divider {
        margin-left: -20px !important;
        margin-right: 20px !important;
    }


    .lefttextrightimage .uk-dark .statscontainer p {
        font-size: 0.75rem;
    }
    .lefttextrightimage .uk-light .statscontainer p {
        font-size: 0.75rem;
    }
    .leftimagerighttext .uk-dark .statscontainer p {
        font-size: 0.75rem;
    }
    .leftimagerighttext .uk-light .statscontainer p {
        font-size: 0.75rem;
    }

    .whyjllmena .whyjllhighlight_card img{
        width: 60px !important;
    }

    .custom_section2 .cardboxes h2 {
        min-width: 100px;
    }



    .custom_copyright .uk-container .uk-flex-left{
        justify-content: center !important;
    }
}