:root {
    /* Font Variables */
    --body-font: "SupremeLLL", serif;
    --heading-font: "SupremeLLR", serif;
    --button-font: "mr-eaves-sans", san-serif;
    --base-font-size: 16px;

    /* Colors */
    --white: #fff;
    --black: #000;
    --blueblack : #2C3243;
    --primary-color: #000000;
    --secondary-color: #334255;
    --button-hover: #768771;
    --background-muted: #C4BFB9;
    --background-primary: #E7E7E7;
    --background-secondary: #000000;
    --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: 24px;
    --btn-padding-x-lg: 24px;
    --btn-padding-y: 10px;
    --btn-height: 44px;
    --btn-font-size: 1rem;
    --btn-letter-spacing: 0;

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

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


/*Fonts*/
@font-face {
    font-family: 'SupremeLLL';
    src: url('./fonts/SupremeLL-Light.woff2') format('woff2'),
        url('./fonts/SupremeLL-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SupremeLLR';
    src: url('./fonts/SupremeLL-Regular.woff2') format('woff2'),
        url('./fonts/SupremeLL-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*Overlay*/
.uk-overlay-default {
  background: rgba(6, 18, 42, 0.45); /* Base colour #06122A with opacity for video visibility */
  mix-blend-mode: multiply;           /* Adds subtle blending with the video */
  /*backdrop-filter: blur(2px);*/         /* Optional – softens video slightly under overlay */
}

/*Common CSS*/

.swal2-styled.swal2-confirm {
    background-color: #2B4A83;
}

.main-banner .hero-content {
  min-height: calc(100vh - 250px);  
}

/*.main-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*CTA*/

.uk-button{
    background-color: #2D4E8B;
    color: #fff;
    border: 1px solid #2D4E8B;
    outline: none;
    text-transform: none;
    font-family: var(--body-font);
    font-size: 1.125rem;
    min-width: 16.625rem;
    text-transform: uppercase;

}

.uk-button-large {
    padding: 0px 1.375rem;
}

.uk-button-secondary{
    background-color: transparent;
    color: #2D4E8B;
    border: 1px solid #2D4E8B;
}

.uk-button-primary:hover{
    background-color: transparent;
}

.uk-dark .uk-button-primary:hover{
    background-color: transparent;
    color: #2D4E8B;
}

.uk-button-secondary:hover{
    color: #fff;
    background-color: #2D4E8B;
    border: 1px solid #2D4E8B;
}

.uk-background-primary{
    background-color: #fff;
}

.uk-background-secondary{
    background-color: rgba(217, 217, 217, 0.5); /* 50% opacity */
}

.main-banner .uk-button-default{
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.main-banner .uk-button-default:hover{
    background: #2B4A83;
    border: 1px solid #2B4A83;
}

.main-banner .uk-button-primary:hover{
    border: 1px solid #ffffff;
}

/*Headings*/
h1{
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 3.6rem;
    line-height: 4.6875rem;
    letter-spacing: 0.01em;
}

h2{
    
    font-family: var(--heading-font);
    color: var(--blueblack);
    font-size: 2.125rem;
}

h3{
    
    font-family: var(--heading-font);
    color: var(--blueblack);
    font-size: 1.75rem;
}

p{
    font-family: var(--body-font);
    color: var(--black);
    font-size: 1.125rem;
}

.main-banner p{
    color: var(--white);
    max-width: 41.18rem;
}


/*Spacing*/
.uk-container {
    max-width: var(--container-width);
}




.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);
}


/*Section 1*/

.top-overlay {
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
    height: 100%; /* Cover the full height of the section */
    width: 100%; /* Cover the full width of the section */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
}

.headerlogo {
   top: 2.8125rem;
   left: 4.6875rem;
  /*z-index: 2; 
    padding: 45px 0 0 75px; */
}

.custom_mainbanner .uk-container{
    z-index: 2;
}

.herocontainer {
    margin-left: -10rem;
}




.overline{
     font-family: "Lato", sans-serif;
     font-size: 18px;
     text-transform: uppercase;
     color: #fff;
     letter-spacing: 1.6px;
}

.custom_mainbanner p,.custom_mainbanner h1{
    color: #fff;
}

.custom_mainbanner h1{
    font-family: TiemposRegular;
    font-size: 4.0625rem;
    margin-top: 10px;
}

.custom_mainbanner p{
    max-width:40%;
    margin-top: 10px;
    margin-bottom: 14px;
    font-size: 1.125rem;
}

.cta a span,.cta button span{
    padding-left: 10px;
}
.cta button{
    width: 100%;
}




/*Section 2*/

.leftcol{
    padding: 228px 150px 228px 202px;
}


.rightcol{
    padding: 202px 150px 202px 175px;
}
/*.copy p{
    font-family: HelveticaNeueR;
    font-size: 1rem;
    color: #000;
}*/

.uk-light .copy p {
    color: #fff;
}


.formpara{
    font-size: 1rem;
    color: #000;
}


.leftcol p,.rightcol p{
    max-width: 79%;
}

.custom_sectionmap .leftcol p{
    max-width: 80%;
}



/*Section 4*/
.custom_section4 p{
    max-width: 83%;
}

.uk-slidenav {
    line-height: 70px;
    height: 70px;
    width: 60px;
    background: #FFFFFF;
    text-align: center;
    opacity: 0.75;
}
a.uk-slidenav-previous.uk-slidenav.uk-icon{
    background: #2B4A83;
    color: #fff;
}

a.uk-slidenav-previous.uk-slidenav.uk-icon:hover {
    background: #fff; /* Background color on hover */
    color: #000; /* Text color on hover */
}



/*Section 7*/
.custom_section7 p{
    width: 70%;
    /*font-size: 1rem;*/
}
.custom_section7 .leftpadding{
    padding-left: 150px;
}



/*Section 8*/
.custom_section8 p {
    max-width: 73%;
}


/*Section 9*/
.custom_section9 p {
    max-width: 70%;
}



/*Section 11*/
/*.custom_section11 {
    height: 44.44rem; 
}*/



/*Sectoin 12*/

.contactformcontainer{
    width: 40.44rem;
}






/*Section 13*/

/* Rectangle 32 */
.bottom-overlay{
    height: 326px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
/*.bottom-bg{
    background-color: #000;
    height: 3.75rem;
}*/
.bottom-bg {
  height: 3.75rem;
  background: linear-gradient(    180deg,    rgba(0, 0, 0, 0.6) 0%,      #000000 100%    );
}
.custom_section12 .copy p{
    font-size: 0.8125rem;
    font-family: var(--body-font);

}

.custom_section12 .copy p a{
    padding: 0 10px 0 10px;
}
   

.custom_section12 .copy p a:hover{
    text-decoration: underline;
    color: rgb(255, 255, 255, 0.6);
    animation: fadeIn 2s ease-in-out;
}



/*Section 14*/


.custom_section14 .leftcol{
    padding: 115px 150px 0px 101px;
}

.halfform {
    padding-right: 101px;
}


/*Forms*/
.uk-input,.uk-select{
    height: 3.75rem !important;
    border: solid 1px #82847F;
}

.halfform .uk-input,.halfform .uk-select{

    background-color: transparent;
}

.uk-form-label{
    font-family: var(--heading-font);
    font-size: 1.125rem;  
    color: #343A3D;
}

.uk-form-label span,.uk-form-label span a{
    font-family: var(--body-font);
    font-size: 1rem;  
    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-input::placeholder {
    font-family: var(--body-font);;
    font-size: 1rem;  
    color: #343A3D;
}

.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;
    color: #ff0634 ;
}

.uk-text-success {
    display: flex;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
    color: #343A3D;
}

.forms .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-selection--single .select2-selection__arrow {
    width: 25px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #2B4A83;
    color: #fff;
    font-family: var(--heading-font);
}

.select2-search--dropdown .select2-search__field {
    height: 30px;
}

span.validation-message.uk-display-block.uk-text-danger.uk-position-absolute {
    font-family: var(--heading-font);
}

.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: 52px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
}
.select2-container .select2-selection--single .select2-selection__rendered
{
    font-family: var(--body-font);
    padding-left: 10px;
}

.select2 {
    width:100%!important;
}


    .desktoponly{
        display: block;
    }
    .mobileonly{
        display: none;
    }

.custom_thankyoupage p{
    color: #000;
}
.custom_thankyoupage p a{
    color: #000;
}

/*Slider*/

/*--------------------------------------------------------------
# Slick
--------------------------------------------------------------*/
.my-slick, .my-slick div, .showdiv {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s linear;
    -webkit-transition: opacity 1s linear;
}

.my-slick.slick-initialized, .my-slick.slick-initialized div, .showdiv.hidedid {
    visibility: visible;
    opacity: 1;
}

.slider *, .slick-slide {
    outline: 0;
    border: 0;
}

.slider {
    width: 50%;
    margin: 0 auto;
}

.sliders02 .slider {
    margin-top: 0;
}

.slick-slide > img {
    width: 100%;
}

.slick-prev:before,
.slick-next:before {
    color: white;
}

.slick-slide {
    transition: all ease-in-out .3s;
}

.slick-prev, .slick-next {
    top: auto;
    bottom: 0;
    width: 50px;
    height: 50px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    transition: all ease-in-out .2s;
    position: relative;
    transform: none;
}

.slick-next:hover, .slick-next:focus {
    background: rgba(255, 255, 255, 1);
}

.slick-prev:hover, .slick-prev:focus {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-nav .slick-prev, .carousel-nav .slick-next {
    left: 0;
    background: #D0103A;
    opacity: 0.5;
}

.slick-prev:before, .slick-next:before {
    font-family: 's9dicons';
    font-size: 24px;
    line-height: 1;
    opacity: 0.8;
    transition: all ease-in-out .2s;
}

.slick-prev:hover:before, .slick-next:hover:before {
    opacity: 1;
}

.slick-prev:before {
    color: #fff;
}

.bottom-nav .slick-prev:before {
    color: #fff;
}

.slick-next {
    right: auto;
    left: 0;
}

.slick-prev:before {
    content: "\e314";
}

.slick-next:before {
    content: "\e315";
}

.sliders02 .slick-slide {
    margin: 0 3px;
    transition: all ease-in-out .3s;
}



.mobilearrowsslick {
    
    width: 100%; /* Ensures the nav takes the full width */
    transform: translateY(-50%); /* Centers the nav vertically */
    top: 50%; /* Positions the nav at the top 50% of the parent */
}


/*Section Map*/
#eapps-google-maps-1.eapps-google-maps {
    max-width: 100%;
    height: 700px !important;
}
.leftcolmap{
    padding: 100px 150px 100px 202px;
}


@media(max-width:1600px){

    .custom_sectionmap .leftcol{
        padding: 120px 150px 228px 202px;
    }
}


/* Accordion Container */
.maphalveswrapper {
    height: auto;
    min-height: 100vh; /* optional */
}

.accordion-container {
    width: 50%;
    overflow-y: auto;
    box-sizing: border-box;
}

.accordion-container .somepadding{
    max-height: 100vh;   /* limit height so it can scroll */
    overflow-y: auto;    /* enable scroll */
    /* Firefox */
    scrollbar-width: auto; /* not thin → thicker */
    scrollbar-color: #2D4E8B #f0f0f0;
}

/* Chrome, Edge, Safari */
.accordion-container .somepadding::-webkit-scrollbar {
    width: 15px; /* exact width */
}

.accordion-container .somepadding::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.accordion-container .somepadding::-webkit-scrollbar-thumb {
    background: #2D4E8B;
    border-radius: 10px;
}

.accordion-container .somepadding::-webkit-scrollbar-thumb:hover {
    background: #1f3a68;
}

.accordion-header {
  cursor: pointer;
  padding: 10px 0px; 
  position: relative;
  color: #2D4E8B;
  transition: color 0.3s ease;
  font-family: var(--heading-font);

}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 10px;
  font-weight: bold;
}

.accordion-header.active::after {
  content: '-';
}

.accordion-content {
  display: none;
}

.accordion-content.active {
  display: block;
}

/* Base list styling */
.accordion-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Main numbered items */
.accordion-content li {
  padding: 5px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #000;
  transition: color 0.3s ease;
  font-family: var(--body-font);
}

.accordion-content li .circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #636569; /* Default grey */
  color: #fff;
  font-size: 12px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

/* Selected / active state */
.accordion-content li.active .circle {
  background: #D0103A;
  /*transform: scale(1.1);*/
}

.accordion-content li:hover .circle {
  background: #D0103A;
  color: #fff;
}

/* Sub-list (un-numbered) items */
.accordion-content ul.sub-list {
  list-style: none;
  margin: 4px 0 0 30px;
  padding: 0;
}

.accordion-content ul.sub-list li {
  font-weight: 400;
  line-height: 1;
  padding-left: 8px;
  margin: 1px 0;
  color: #444;
  cursor: pointer;
  font-family: var(--body-font);
}

.accordion-content ul.sub-list li:hover {
  color: #000;
}

/* Map wrapper takes available space */
.map-wrapper {
  position: relative;
  width: 50%;
  height: 100%;        /* allow inner to scale without overflowing */
  overflow: hidden;    /* prevent image jumping out */
}

/* Make map-inner a fully contained relative box */
.map-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Image ALWAYS fits fully inside without overflow */
.map-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps aspect ratio inside box */
  display: block;
}

/* Pins on Map */
.pin {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #636569; /* Default grey */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.3s ease, background 0.3s ease;
}

.pin.isVisible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
}

.pin.selected {
  background: #D0103A;
  animation: pinPulse 1.2s ease-out infinite;
  z-index: 10;
}

.pin.hovered {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: #D0103A; /* same as selected */
  transition: all 0.3s ease;
  z-index: 10;
}


/* Pin animation */
@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(43, 74, 131, 0.6);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 8px rgba(43, 74, 131, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(43, 74, 131, 0);
  }
}

@media(max-width:1500px){

    h1 {
        font-size: 3rem;
        line-height: 3.9rem;
        letter-spacing: 0.01em;
    }

    .main-banner p {
        max-width: 32.51rem;
    }



    .uk-button-large {
        padding: 0px 1.2rem;
        min-width: 14.7rem;
        line-height: 47px;
    }
}

@media(max-width:1368px){
    .maphalveswrapper  {
        flex-direction: column;
    }

    .accordion-container {
        width: 100%;
    }

    .map-wrapper {
        width: 100%;
    }

    #ineractivemap .accordiocontainer {
        padding: 0;
    }
    #ineractivemap .headingcontainer {
        padding-left: 0px;
        padding-right: 0px;
    }

    #ineractivemap .somepadding.uk-padding {
        padding-bottom: 40px !important;
    }
}

@media (max-width: 1280px) {

    h1 {
        font-size: 2.56rem;         /* 3rem × 0.853 */
        line-height: 3.32rem;       /* 3.9rem × 0.853 */
        letter-spacing: 0.01em;
    }

    .main-banner p {
        max-width: 27.74rem;        /* 32.51rem × 0.853 */
    }


    .uk-button-large {
        padding: 0px 1rem;          /* scaled down slightly */
        min-width: 12.55rem;        /* 14.7rem × 0.853 */
        line-height: 40px;          /* 47px × 0.853 */
    }
}

@media (max-width: 1199px) {

    .carousel{
        padding: 0px;
    }

    .carousel .uk-container {
        padding: 0px;
    }

    .carousel .leftandright > * {
        width: 50%;
    }

    .carousel .leftandright .leftcopy  {
        padding: 90px;
    }

    .carousel .leftandright .rightimage  {
        padding-right: 90px;
    }
}


@media (max-width: 1024px) {

    h1 {
        font-size: 2.04rem;        /* 3rem × 0.68 */
        line-height: 2.65rem;      /* 3.9rem × 0.68 */
        letter-spacing: 0.01em;
    }

    .main-banner p {
        max-width: 22.1rem;        /* 32.51rem × 0.68 */
    }

    .custom_section7 .leftpadding {
        padding-left: 90px;
    }

}


@media (min-width: 960px) {
    .slick-prev, .slick-next {
        width: 70px;
        height: 70px;
    }

    .sliders02 .slick-list {
        padding: 0 26% 0 0 !important;
    }

    .sliders02 .slick-slide {
        padding: 0 18px 0 0;
        transition: all ease-in-out .3s;
        margin: 0;
    }


}

@media (min-width: 1600px) {
    .sliders02 .slick-list {
        padding: 0 8% 0 0 !important;
    }
}

@media (max-width: 960px) {
    .sliders02 .slick-list {
        padding-right: 10% !important;
        padding-left: 10% !important;
    }

    .sliders02 .slick-slide {
        padding: 10px;
    }


    .custom_section4 .uk-width-1-2{
        width: 100%;
    }

    .carousel .leftandright  {
        flex-direction: column-reverse;

    }

    .carousel .leftandright .leftcopy  {
        padding: 40px;
        width: 100%;
    }

    .carousel .leftandright .rightimage  {
        padding: 40px;
        width: 100%;
    }

    .custom_section7 .leftpadding {
        padding-left: 40px;
    }
}

@media (max-width: 480px) {
    .sliders02 {
        margin-left: 0;
    }

    .sliders02 .slick-list {
        padding-right: 10% !important;
        padding-left: 10% !important;
    }

    .sliders02 .slick-slide {
        padding: 0;
        margin: 10px;
    }

    #ineractivemap .topcontainer {
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .inner-left {
        padding-left: calc((100vw - 1600px) / 2);
    }
}

@media (min-width: 1199px) {
    .carousel-nav{
        margin-top: -70px;
    }
}

@media (min-width: 1200px) {
    .carousel-section {
        background: rgba(217, 217, 217, 0.5);
    }

    .carousel-section .content-wrapper p {
        padding-right: 70px;
    }

    .carousel-section .info-cover-img {
        width: 60.5%;
    }
}



@media (min-width: 1900px) {

    .leftcol {
        padding-left: calc((100vw - 1520px) / 2);
    }

    .rightcol{
        padding-right: calc((100vw - 1520px) / 2);
    }
}

@media(max-width:1900px){
    .herocontainer {
        margin-top: 130px;
    }
}


@media(max-width:1700px){
    .herocontainer {
        margin-left: 0rem;
    }
    .custom_mainbanner {
        flex-direction: column;
    }
}


@media(max-width:1500px){
    .headerlogo {
        top: 2.8125rem;
        left: 2.65rem;
    }


    .leftcol {
        padding: 130px;
    }
    .rightcol {
         padding: 130px;
    }


    .custom_section14 .leftcol {
        padding: 130px;
    }

    .custom_mainbanner h1 {
        font-size: 3.2rem;
    }

    .custom_sectionmap .leftcol{
       padding: 130px 100px 130px 130px;
    }



    
}


@media(max-width:1368px){

    .leftcol {
        padding: 90px;
    }
    .rightcol {
         padding: 90px;
    }

    .herocontainer {
        margin-top: 110px;
    }


    .custom_section14 .leftcol {
        padding: 90px;
    }

    .custom_sectionmap .leftcol{
       padding: 90px;
    }

    .custom_mainbanner.uk-height-viewport {
        min-height: auto;
    }

    .herocontainer {
        padding: 60px 0px;
    }
    
}

@media(max-width:1200px){
    .custom_mainbanner h1 {
        font-size: 3.0625rem;
        margin-top: 20px;
    }

    .custom_mainbanner p {
        max-width: 50%;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .leftcol p, .rightcol p {
        max-width: 100%;
    }

    .custom_section7 p {
        width: 80%;
        font-size: 1rem;
    }
    
}



@media (max-width: 1152px) {
  .copyrightpolicy.uk-flex-between {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 15px;
    padding: 10px 0;
  }
  .copyrightpolicy .copy {
    margin: 0;
    font-size: 1rem;
    width: 100%;
    padding: 0;
    text-align: center;
    z-index: 9;
  }
  .copyrightpolicy a {
    display: inline-block;
    margin: 0 3px;
    font-size: 1rem;
    word-break: break-word;
  }

  .copyrightpolicy p {
    display: inline-block;
    margin: 0 3px;
    font-size: 1rem;
    word-break: break-word;
  }
  .custom_section12 .copy p {

    font-size: 1rem;
   }

  .uk-margin-large-bottom {
    margin-bottom: 18px !important;
  }

  .uk-light .copy p {
        margin-bottom: 0px;
    }
}



@media(max-width:980px){

    .copy p {
        font-size: 0.875rem; 
    }

    .accordion-content li
    {
        font-size: 0.875rem; 
    }

    h3 {
        font-size: 1.55rem;
    }

    .leftcol {
        padding: 60px;
    }

    .rightcol {
        padding: 60px;
    }

    .custom_sectionmap .leftcol{
       padding: 60px;
    }

    .uk-slidenav {
        line-height: 40px;
        height: 40px;
        width: 30px;
    }

    .carousel .leftandright .leftcopy {
        padding: 60px;
    }

    .uk-form-label {

        font-size: 0.875rem; 
    }
    .uk-form-label span, .uk-form-label span a {

        font-size: 0.875rem; 
    }
    .uk-input::placeholder {
        font-size:  0.875rem;  
    }

    .copyrightpolicy .copy p,.copyrightpolicy .copy p a{
         font-size:  0.875rem; 
    }

}

@media(max-width:960px){
    .custom_mainbanner h1 {
        font-family: TiemposRegular;
        font-size: 2.2rem;
    }

    .custom_mainbanner p {
        max-width: 50%;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .leftcol {
        padding: 30px;
    }
    .rightcol {
         padding: 30px;
    }

    .carousel .leftandright .leftcopy {
        padding: 30px;
    }
    .carousel .leftandright .rightimage {
        padding: 30px;
    }

    .custom_section14 .leftcol {
        padding:30px;
    }

    .custom_sectionmap .leftcol {
        padding: 30px;
    }

    .twocolumn .uk-background-cover {
        width: 100%;
        min-height: 950px;
    }

            
}


@media (max-width: 880px) {
    .custom_section7 p {
        width: 90%;
    }

    .halfform {
        padding-right: 0px;
    }

    .twocolumn .uk-background-cover {
        width: 100%;
        min-height: 800px;
    }

}

@media(max-width:768px){
   
    .twocolumn .uk-background-cover{
        width: 100%;
        min-height: 400px;
    }

    .twocolumn .uk-background-cover{
        width: 100%;
        min-height: 700px;
    }

    .twocolumn .uk-width-1-2{
        width: 100%;
    }

    .custom_section9 .twocolumn ,.custom_section4 .twocolumn,.custom_section8 .twocolumn,.custom_section14 .twocolumn{
        flex-direction: column;
    }

    .custom_section2 .twocolumn,.custom_section9 .twocolumn{
        flex-direction: column-reverse;
    }

    .custom_section7 p {
        width: 100%;
    }

    .custom_section7 h3{
        text-align: left;
    }
    .custom_section7 .cta{
        text-align: left;
    }

    .shorttwocol{
        padding-right: 0px;
        padding-left: 0px;    
    }


    .custom_section14 .leftcol {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-right: 0px;
        padding-left: 0px;
    }
    .custom_section14 .twocolumn{
        text-align: center;
    }
    .custom_section14{
        padding-top: 0px;
    }
    div#carousel {
        padding-top: 0;
    }
}


@media(max-width:680px){

    .main-banner.uk-height-viewport{
        min-height: auto;
    }
    .main-banner .hero-content {
        min-height: calc(100vh - 350px);
    }


    .shorttwocol{
        flex-direction: column;
    }
    .shorttwocol .uk-width-1-2{
        width: 100%;
    }

    /*.shorttwocol{
        padding-right: 30px;
        padding-left: 30px;    
    }*/

    .shorttwocol .uk-dark{
        margin-bottom: 30px;
    }

    .custom_mainbanner h1 {
        font-size: 2rem;
    }

    .custom_mainbanner p {
        max-width: 100%;
    }

    .twocolumn .uk-background-cover {
        width: 100%;
        min-height: 670px;
    }

    .custom_section7 .shorttwocol{
        flex-direction: column-reverse;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .uk-button{
        font-size: 0.875rem;
        min-width: 14.625rem;

    }

    .headerlogo {
        top: 2.8125rem;
        left: 1rem;
    }
    .headerlogo img{
        transform: scale(0.8);
    }

    .uk-button-large {
        padding: 0px 1rem;
        line-height: 40px;
    }
    .halfform .uk-button-large{
        line-height: 52px;
    }
    .contactformcontainer .uk-button-large{
        line-height: 52px;
    }

    .desktoponly{
        display: none;
    }
    .mobileonly{
        display: block;
    }




    .custom_section7 .leftpadding {
        padding: 0px;
    }

    .custom_section7.uk-padding-large{
        padding: 30px;
    }

    .grecaptcha-badge{
        display: none;
    }


    .main-banner {
        height: auto;
    }

    .main-banner video{
        max-height: auto;
    }
}


@media(max-width:640px){

    .threeboxes .uk-width-1-3{
        width: 100%;
    }


    .custom_section12 .copyrightpolicy{
        flex-direction: column-reverse;
        align-items: center;
    }

    .twocolumn .uk-background-cover {
        width: 100%;
        min-height: 630px;
    }

}


@media(max-width:580px){

    h1 {
        font-size: 2rem;
        line-height: 2.3rem;
    }


     .twocolumn .uk-background-cover {
        width: 100%;
        min-height: 550px;
    }


    .custom_section12 .uk-margin-large-top, .custom_section12 .uk-margin-large-bottom 
    {
       margin-top: 15px !important;
       margin-bottom: 15px !important;
    }

    .bottom-bg {
        background-color: #000;
        height: 1.75rem;
    }

    .sliders02 .slick-slide {
        padding: 10px;
        text-align: center;
        justify-content: center;
        display: flex;
    }

    .carousel .leftandright .rightimage {
        padding: 0px;
    }

    .custom_section12 .footerbg{

        min-height: 400px;
        object-fit: cover;
    }

}

@media(max-width:560px){

    .main-banner .hero-content .uk-first-column{
        margin-top: 20px;
    }

     .main-banner .cta a {
        min-width: 270px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}


@media(max-width:480px){


    h1 {
        font-size: 1.5rem;
        line-height: 2.3rem;
    }

    .threeboxes .uk-width-1-3 {
        width: 50%;
    }

    .uk-button{
        font-size: 0.85rem;
    }



    .uk-button .uk-icon svg{
        width: auto;
    }

    .uk-icon svg{
        width: 10px;
    }

    .uk-slidenav {
        line-height: 30px;
        height: 30px;
        width: 20px;
    }

    .custom_mainbanner h1{
        font-size:1.7rem;
        margin-top: 20px;
    }
    .custom_mainbanner p {
        font-size: 0.875rem;
    }

    .twocolumn .uk-background-cover {
        width: 100%;
        min-height: 470px;
    }

    .footerlogo{
        width: 40%;
    }

    .logo{
        transform: scale(0.8);
    }

    .cta a span, .cta button span {
        margin-left: 0px;
    }
    .main-banner .cta a {
        min-width: 240px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

}

@media(max-width:400px){
    .threeboxes .uk-width-1-3 {
        width: 100%;
    }

    .twocolumn .uk-background-cover {
        width: 100%;
        min-height: 390px;
    }

    .custom_section12 .uk-margin-large-top, .custom_section12 .uk-margin-large-bottom {
    
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }
}

@media(max-width:375px){
    .twocolumn .uk-background-cover {
        width: 100%;
        min-height: 365px;
    }

}



