.uk-container {
    max-width: 1400px;
    box-sizing: border-box;
}

/*Fonts*/
@font-face {
    font-family: 'PP Fragment';
    src: url('./fonts/PPFragment-SerifRegular.woff2') format('woff2'),
        url('./fonts/PPFragment-SerifRegular.woff') format('woff');
}

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



/*Animations*/
@keyframes fade-in {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/*CTA*/
.uk-button-default{
    background: #E73C34;
    font-family: 'BrownPro';
    font-weight: 400;
    font-size: .75rem;
    letter-spacing: 1px;
    border-radius: 1px;
    text-transform: uppercase;
    color: #fff;
    outline: none;
    border: none;
    padding: 0 20px;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    width: 15rem;
}

.uk-button-default:hover{
    background: #10211C;
    color: #fff;
    animation: fade-in 1s ease-in-out; /* add animation */
}
.uk-button-default:not(:hover) {
  /* hover-out styles */
  background: #E73C34; /* return to original background color */
  animation: fade-out 1s ease-in-out; /* add animation */
}


/*Form*/
a {
    color: #e73c34;
}
a:hover {
    color: #e21f26;
}

#valid-msg {
    color: #00c900
}

#error-msg {
    color: red
}

input.error {
    border: 1px solid #ff7c7c
}

.hs-input {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
    transition: .2s ease-in-out;
    transition-property: color,background-color,border;
    height: 48px;
    padding-left: 18px;
    padding-right: 18px;
    background-color: initial;
    color: #fff;
    border: 1px solid #a9a79f;
    vertical-align: middle;
    display: inline-block;
    box-sizing: border-box
}

.callicons {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

/* Default scale for all icons */
.icon-link{
    font-family: 'BrownPro';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: uppercase;
}

.icon-link:hover{
    text-decoration: underline;
}


.icon-link .callicons {
    transform: scale(1);
}

/* When hovering on one icon link */
.icon-link:hover .callicons {
    transform: scale(1.3);
}

/* When hovering on the grid, shrink siblings that are NOT hovered */
.uk-grid:hover .icon-link:not(:hover) .callicons {
    transform: scale(0.8);
    opacity: 0.7;
}
/*Thank you page */


@font-face {
    font-family: 'PP Fragment';
    src: url('./fonts/PPFragment-SerifRegular.woff2') format('woff2'),
        url('./fonts/PPFragment-SerifRegular.woff') format('woff');
}

.content h1 {
    font-family: 'PP Fragment';
    font-size: 30px;
    line-height: 50px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    animation: fade-in 2s ease-in-out;
    z-index: 99;
}

.main-banner .center-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6); /* adjust opacity as needed */
    width: 100%; /* adjust width as needed */
    height: 100%; /* adjust height as needed */
    z-index: 0; /* adjust z-index as needed */
}

.uk-button-default:hover {
    background: #10211C !important;
    animation: fade-out 1s ease-in-out;
}
.uk-background-secondary{
    background-color: #10211C ;
}




/*Section 1*/

.hero-banner{
    min-height: 800px !important;
}

.hero-banner h1{
    font-family: 'PP Fragment';
    font-size: 2.75rem;
    line-height: 3.75rem;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    animation: fade-in 2s ease-in-out; /* add animation */
}
.hero-banner h2{
    font-family: 'BrownPro';
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
}
.hero-banner p{
    font-family: 'BrownPro';
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    max-width: 600px;
}
.hero-banner h3{
    font-family: 'BrownPro';
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
}

.hero-banner .left-overlay {

    background: -webkit-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -moz-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -ms-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -o-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);

    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);

    position: absolute;
    width: 90%;
}


.hero-banner a:hover{
    background: #10211C;
    color: #fff;
}

/*Section 2*/
.section2 .textcontainer{
    margin: 0 auto;
}

.section2 h2{
    font-family: 'BrownPro';
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 4px;
    color: #10211C;
    text-transform: uppercase;
}

.section2 h3{
    font-family: 'PP Fragment';
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 2px;
    color: #10211C;
}

/*Section 3*/

.section3bg .left-overlay {
    background: -webkit-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -moz-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -ms-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -o-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);

    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    position: absolute;
    width: 64.58%;
}


.section3bg .right-overlay {
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    transform: rotate(-180deg);
    position: absolute;
    width: 64.58%;
}



.section3 .textcontainer p{
    font-family: 'BrownPro';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #fff;
}

section .textcontainer a{
    margin-top: 30px;
}
.section3 .textcontainer,
.section4 .textcontainer,
.section6 .textcontainer,
.section8 .textcontainer,
.section11 .textcontainer,
.section12 .textcontainer{
   padding: 150px 0px;
   z-index: 99;
}

.section3 .textcontainer h2,
.section4 .textcontainer h2,
.section6 .textcontainer h2,
.section8 .textcontainer h2,
.section11 .textcontainer h2,
.section12 .textcontainer h2{
    font-family: 'PP Fragment';
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.section3 .textcontainer p,
.section4 .textcontainer p,
.section6 .textcontainer p,
.section8 .textcontainer p,
.section11 .textcontainer p,
.section12 .textcontainer p{
    font-family: 'BrownPro';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #fff;
}


.section6 .textcontainer {
  width: 20%;
}

/*Section 4*/

.section4bg .right-overlay {
    background: -webkit-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    background: -moz-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    background: -ms-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    background: -o-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    position: absolute;
    width: 64.58%;
}



.section7{
    background-color: #10211C;
}
.section7 h2{

    font-family: 'PP Fragment';
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.section7 p{
    font-family: 'BrownPro';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: uppercase;
}

/*

.section8 .textcontainer{
    
    padding: 100px 0px;
    z-index: 99;
}*/

.section8 .right-overlay {
    background: -webkit-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    background: -moz-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    background: -ms-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    background: -o-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(118, 110, 100, 0.7) 61.5%);
    position: absolute;
    width: 64.58%;
}

.section8bg .left-overlay {
    background: -webkit-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -moz-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -ms-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -o-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);

    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    position: absolute;
    width: 64.58%;
}


.section8 .section8bg{
     background-position: center;
} 
/*--------------------------------------------------------------
# Hubspot
--------------------------------------------------------------*/
.hs-input {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
    transition: .2s ease-in-out;
    transition-property: color,background-color,border;
    height: 48px;
    padding-left: 18px;
    padding-right: 18px;    
    background-color: transparent;
    color: #fff;
    border: 1px solid #a9a79f;    
    vertical-align: middle;
    display: inline-block;  
    box-sizing: border-box;
}

select {
    background-color: #10211C; 
    color: #fff;
}
select:hover, select:focus {
    background-color: #10211C;
}
select option:hover, select option:focus {
    background-color: #10211C;
}
::selection {
    background: #aca193;
    color: #fff;
    text-shadow: none;
}
.hs-fieldtype-booleancheckbox .hs-form-booleancheckbox-display, .input .hs-form-checkbox-display {
    position: relative;
}
.hs-fieldtype-booleancheckbox .hs-form-booleancheckbox-display span, .input .hs-form-checkbox-display span {
    padding-left: 25px;
    text-transform: none;
    display: block;
}
.hs-fieldtype-booleancheckbox .hs-form-booleancheckbox-display span span, .input .hs-form-checkbox-display span span {
    padding-left: 0;
    display: inline-block;
}
.hbspt-form label {
    font-size: .875rem;
    font-family: "brownpro", san-serif;
    line-height: 1.5;
    margin-bottom: 0;
    display: inline-block;
    width: auto;
    z-index: 1;
    color: #aca193;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    text-transform: capitalize;
}
.hbspt-form label .hs-form-required {
    color: #aca193;
}
.hbspt-form .hs-error-msgs, .inputs-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.hbspt-form .hs-error-msgs li {
    color: #fff;        
}
.hbspt-form .hs-error-msg {
    font-size: 12px;
    color: rgb(255 255 255 / 60%);
    text-transform: none;
}
.hs-button.primary {
    font-family: 'BrownPro';
    font-weight: 400;
    -webkit-transition: all .3s ease-out;
    transition: all .2s ease-out;
    color: #fff;
    font-size: .75rem;
    padding: 0 20px;
    min-width: 240px;
    letter-spacing: 1px;
    border-radius: 1px;
    text-transform: uppercase;
    background: #E73C34;
    border-color: #e73c34;
    line-height: 46px;
    min-height: 0;
    outline: 0;
    border-width: 1px;
    border-style: solid;
    cursor: pointer;
}

.hs-button.primary:hover {
    background: #e21f26;
    border-color: transparent;
}

/* Hide the native checkbox */
.hs-input[type="checkbox"] {
    display: none;
}
.hs-form-booleancheckbox-display span:not(.hs-form-required)::before,
.hs-fieldtype-checkbox .input span:not(.hs-form-required)::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #aca193;
    cursor: pointer;
    margin-right: 8px;
    vertical-align: middle;
    position: absolute;
    left: 0;
}
.hs-input[type="checkbox"]:checked + span:not(.hs-form-required)::before {
    border-color: #aca193;
    background-color: #aca193;
}
.hs-input[type="checkbox"]:checked + span:not(.hs-form-required)::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    position: absolute;
    left: 4px;
    top: 0;
    transform: rotate(41deg);
    margin-top: 1px;
}
.hs-form-booleancheckbox-display .hs-form-required, .hs-fieldtype-checkbox .input .hs-form-required {
    position: relative; 
    left: 5px;
}
.hs_bedrooms.field {
    margin-bottom: 15px;
}
.hs-fieldtype-checkbox .inputs-list.multi-container {
    display: flex;
    margin: 5px 0 10px -15px;
}
.hs-fieldtype-checkbox .inputs-list.multi-container .hs-form-checkbox {
    padding-left: 15px;
}
.hs-fieldtype-checkbox .input .hs-form-checkbox-display span {
    padding-left: 24px;
}

/* Mobile First: 1 column */
.field, .hs_error_rollup, .hs_submit {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.field.hs-fieldtype-select {
    width: 100%;
}
.hs_submit { 
    margin-top: 30px;
    margin-bottom: 0 !important;
    text-align: center;
}

/* Tablet and above: 2 columns */
@media (min-width: 640px) { 
    form {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
    }

    .field, .hs_error_rollup, .hs_submit {
        width: 50%; /* or flex: 0 0 50%; */
        padding-left: 15px;
    }

    .field.fullwidth, .hs_error_rollup, .hs_submit {
        width: 100%; /* or flex: 0 0 100%; */
    }
    .hs_submit { 
        margin-top: 20px;
    }   
}


.section7 .form-dark {
    max-width: 654px;
}

.footertext a,.footertext p{
    color: #ACA193;
}
.footertext a{
    text-decoration: underline;
    font-family: BrownPro;
    font-size: 16px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #A6A598;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    z-index: 1000;
    height: 23px;
    width: 20px;
    padding: 25px;
}
.arrow:hover {
    background: rgba(0, 0, 0, 0.3);
    color: #FFFFFF; /* add this line to change the arrow color to white on hover */
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right: 0;
}

.slick-dots {
    position: absolute;
    bottom: 50px;
    list-style: none;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px #A6A598 solid;
    padding: 0px;
    cursor: pointer;
}

.slick-dots li.slick-active button {
  background-color: #A6A598;
}

.slick-dots li.slick-active button:before {
    color: transparent;
}
.slick-dotted.slick-slider {
     margin-bottom: -10px; 
}

/* Line 3 */

.sections-container {
  position: relative;
}

.vertical-line {
  position: absolute;
  top: -10%; /* adjust this value to change the position of the line */
  left: 50%;
  transform: translateX(-50%);
  height: 150px; /* adjust this value to change the height of the line */
  width: 1px;
  background-color: red;
  z-index: 1;
}
.section4 .vertical-line{
    top: -11%;
}

.section9 .vertical-line{
    top: -8%;
}



.section6 .left-overlay {

    background: -webkit-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -moz-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -ms-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: -o-linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(50, 50, 50, 0.7) 61.5%);

    transform: -webkit-transform: rotate(-180deg);
    transform: -moz-transform: rotate(-180deg);
    transform: -ms-transform: rotate(-180deg);
    transform: -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    position: absolute;
    width: 45%;
    z-index: 96;
}


.mobileonly{ display:none; }

.section5mobile{display: none;}


.slick-dots li button:before {
    opacity: 0 !important;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #1A315B #fff;
}

html::-webkit-scrollbar {
  width: 15px;
}

html::-webkit-scrollbar-track {
  border-radius: 0px;
  background: #fff;
}

html::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background: #1A315B;
}

html::-moz-scrollbar {
  width: 15px;
}

html::-moz-scrollbar-track {
  border-radius: 0px;
  background: #fff;
}

html::-moz-scrollbar-thumb {
  border-radius: 0px;
  background: #1A315B;
}

html::-ms-scrollbar {
  width: 15px;
}

html::-ms-scrollbar-track {
  border-radius: 0px;
  background: #fff;
}

html::-ms-scrollbar-thumb {
  border-radius: 0px;
  background: #1A315B;
}
@media screen and (max-width: 1920px)
{
    
}
@media screen and (max-width: 1680px)
{
    
}
@media screen and (max-width: 1600px)
{
    .section6 .textcontainer {
      width: 30%;
    }
}
@media screen and (max-width: 1440px)
{
    .section6 .textcontainer {
      width: 30%;
      margin: 0 0 0 40px;
    }
}
@media screen and (max-width: 1400px)
{
    .section3 .textcontainer h2, .section4 .textcontainer h2, .section6 .textcontainer h2, .section8 .textcontainer h2, .section11 .textcontainer h2, .section12 .textcontainer h2 {
        font-size: 20px;
        line-height: 30px;
    }
}




@media screen and (max-width: 1376px)
{
    .hero-banner h1 {
        font-size: calc(2.65rem - (100vw - 1376px) * 0.02);

        line-height: 3.5rem;
    }   
}


@media screen and (max-width: 1360px)
{
    
}

@media screen and (max-width: 1345px) {
    /*.hero-banner h1 {
        font-size: 53px;
    }*/
}

@media screen and (max-width: 1345px) {
    /*.hero-banner h1 {
        font-size: 51px;
    }*/

    .hero-banner p {
        max-width: 400px;
    }
}
@media screen and (max-width: 1280px)
{

    .hero-banner h1 {
      font-size: calc(2.1rem - (100vw - 1376px) * 0.02);
    }   

    .uk-button-default {
        font-size: 12px;
        letter-spacing: 1px;

    }
    
    .section9 .vertical-line {
        top: -13%;
    }
    .vertical-line {
        top: -9%;
    }


}

@media screen and (max-width: 1266px) {
    /*.hero-banner h1 {
        font-size: 49px;
    }*/
}
@media screen and (max-width:1199px){

    .hero-banner h1 {
      font-size: calc(1.9rem - (100vw - 1199px) * 0.02);
    }  

    .vertical-line{
        display: none;
    }

    .section6 .textcontainer {
      width: 30%;
      margin: 0 0 0 25px;
    }

   /* .hero-banner h1 {
        font-size: 46px;
    }*/


    .section3 .textcontainer, 
    .section4 .textcontainer, 
    .section6 .textcontainer, 
    .section8 .textcontainer, 
    .section11 .textcontainer, 
    .section12 .textcontainer {
        padding: 90px 0px;
    }

    .arrow {
        padding: 15px;
    }


}

@media screen and (max-width: 1199px) {
    /*.hero-banner h1 {
        font-size: 44px;
    }*/
}

@media screen and (max-width: 1152px)
{
    .section6 .textcontainer {
      width: 30%;
      margin: 0 0 0 25px;
      padding: 70px 0px;
    }
}

@media screen and (max-width: 1113px) {
   /* .hero-banner h1 {
        font-size: 42px;
    }*/
}
@media screen and (max-width: 1080px) {
    .hero-banner h1 {
      font-size: calc(2rem - (100vw - 1080px) * 0.02);
      line-height: 3rem;
    }  
}
@media screen and (max-width: 1069px) {
    /*.hero-banner h1 {
        font-size: 41px;
    }*/

    .hero-banner p {
        max-width: 380px;
    }

    .section6 .textcontainer {
        width: 30%;
        margin: 0 0 0 25px;
        padding: 20px 0px;
    }

}

@media screen and (max-width: 1047px) {
    /*.hero-banner h1 {
        font-size: 40px;
    }*/
}

@media screen and (max-width: 1025px)
{
    /*.hero-banner h1 {
        font-size: 39px;
    }*/
}

@media screen and (max-width: 1003px) {
    /*.hero-banner h1 {
        font-size: 38px;
    }*/
}
@media screen and (max-width: 970px)
{
    .section6 .textcontainer {
        width: 40%;
        /*margin: 0 0 0 25px;*/
        margin: 7% 5%;
        padding: 20px 0px;
    }
}
@media screen and (max-width: 960px)
{

    .section6 .uk-button-default {
        margin-top: 5px;
    }

    .hero-banner h1 {
        font-family: 'PP Fragment';
        font-size: calc(1.8rem - (100vw - 960px) * 0.02);
        line-height: 2.5rem;
        letter-spacing: 2px;
    }

    .section3 .textcontainer h2, .section4 .textcontainer h2, .section6 .textcontainer h2, .section8 .textcontainer h2, .section11 .textcontainer h2, .section12 .textcontainer h2
    {
        font-size: 16px;
        line-height: 28px;
    }

}

@media screen and (max-width: 928px)
{
    
}

@media screen and (max-width: 917px)
{
   /* .hero-banner h1 {
        font-size: 35px;
    }*/
}
@media screen and (max-width: 896px)
{
    .section6 .textcontainer {
      width: 50%;
      margin: 0 0 0 25px;
      padding: 40px 0px;
    }
    /*.hero-banner h1 {
        font-size: 34px;
    }*/

}


@media screen and (max-width: 873px)
{
    .section6 .textcontainer {
      width: 50%;
      margin: 0 0 0 25px;
      padding: 40px 0px;
    }
    /*.hero-banner h1 {
        font-size: 33px;
    }*/
    .hero-banner p {
        max-width: 300px;
    }

}
@media screen and (max-width: 851px) {
    /*.hero-banner h1 {
        font-size: 32px;
    }*/

    .hero-banner h1 {
        font-size: calc(1.4rem - (100vw - 850px) * 0.02);
        line-height: 2.2rem;
        letter-spacing: 2px;
    }
}
@media screen and (max-width: 829px) {
   /* .hero-banner h1 {
        font-size: 31px;
    }*/
}

@media screen and (max-width: 829px) {
    /*.hero-banner h1 {
        font-size: 30px;
    }*/
}
@media screen and (max-width: 1280px) {
    .uk-button-default {
        font-size: 11px;
        letter-spacing: 1px;
    }
}
@media screen and (max-width: 800px)
{
    .section6 .textcontainer {
      width: 70%;
      margin: 0 0 0 25px;
      padding: 20px 0px;
    }
}
@media screen and (max-width: 768px)
{
    .hbspt-form label {
        font-size: .850rem;
    }

    .mobileonly{
        display: block;
    }
    .footertext{
        flex-direction: column;
    }
    span.separator {
        display: none;
    }

    .slick-dots {
        position: absolute;
        bottom: 5px;
        list-style: none;
        z-index: 99;
    }


    .arrow {
        padding: 15px;
    }

    .hero-banner h1 {
        font-size: calc(1.1rem - (100vw - 768px) * 0.02);
        line-height: 2rem;
        letter-spacing: 2px;
    }
/*
    .hero-banner .textcontainer h1{
        font-size: 31px;
        line-height: 40px;
        letter-spacing: normal;
    }*/
    .hero-banner .textcontainer h2{
        font-size: 18px;
    }
    .hero-banner p {
        max-width: 320px;
    }

    .section6 .left-overlay {
/*        margin-top: 30px;*/
    }

    .section8 .section8bg {
        background-position: left;
    }

    .section11 .section8bg {
        background-position: center;
    }

    .uk-button-default {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .section5{ display:none; }
    .section5mobile{display: block;}
    .section4 .textcontainer{
        display: none;
    }
    .section4bg .right-overlay{
        display: none;
    }
    .section8bg .textcontainer {
        display: none;
    }
    .section8 .right-overlay{
        display: none;
    }
    .section8bg .left-overlay {
        display: none;
    }

    .section4 .mobileonly .textcontainerm,
    .section6 .mobileonly .textcontainerm,
    .section8 .mobileonly .textcontainerm {
        background-color: #10211C;
        padding: 31px;
    }

    .uk-container.mobileonly {
        padding: 0px;
    }
    .section4 .mobileonly .textcontainerm h2,
    .section6 .mobileonly .textcontainerm h2,
    .section8 .mobileonly .textcontainerm h2{

        font-family: 'PP Fragment';
        font-size: 24px;
        line-height: 36px;
        /* or 150% */
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #FFFF
    }

    .section4 .mobileonly .textcontainerm p,
    .section6 .mobileonly .textcontainerm p,
    .section8 .mobileonly .textcontainerm p{

        font-family: 'BrownPro';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        /* or 125% */
        letter-spacing: 2px;
        color: #FFFFFF;
    }

    .section6 .textcontainer,.section6 .left-overlay { 
        display: none;
    }

    .section4 .section4bg,.section8bg{
        min-height: 500px;
    }




}

@media screen and (max-width: 740px) {
    /*.hero-banner .textcontainer h1 {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: normal;
    }*/
}
@media screen and (max-width: 718px) {
   /* .hero-banner .textcontainer h1 {
        font-size: 29px;
    }*/
}

@media screen and (max-width: 696px) {
    /*.hero-banner .textcontainer h1 {
        font-size: 28px;
    }*/

    .uk-button-default {
        font-size: 8px;
        letter-spacing: 1px;
    }

}
@media screen and (max-width: 680px)
{
    .section2 .textcontainer{
        width: 100%;
    }

    .section6 .textcontainer {
      width: 80%;
      margin: 0 0 0 25px;
      padding: 5px 0px;
    }
}
@media screen and (max-width: 674px) {
   /* .hero-banner .textcontainer h1 {
        font-size: 27px;
    }*/
}
@media screen and (max-width: 660px) {
    .uk-button-default {
        font-size: 12px;
        letter-spacing: 1px;
        width: 15rem;
        padding: 0 10px;
    }

    .uk-position-relative.uk-width-1-2.textcontainer {
        width: 100%;
    }

    .hero-banner p {
        max-width: 100%;
    }

}
@media screen and (max-width: 640px)
{
    .uk-margin-small-top {
        margin-top: 5px !important;
    }
    
}

@media screen and (max-width: 639px)
{
    .hero-banner .textdivcontainer .textcontainer{
        
        width: 100%;
        margin-top: 120px;
    }

    .hero-banner .textdivcontainer .textcontainer h1{
        font-family: 'PP Fragment';
        font-style: normal;
        font-weight: 400;
        font-size: 1.5rem;
        line-height: 40px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    .hero-banner .textdivcontainer .textcontainer h2,
    .hero-banner .textdivcontainer .textcontainer h3  {
        font-family: 'BrownPro';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 2px;
    }


    .hero-banner .textdivcontainer .textcontainer p{
        font-family: 'BrownPro';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        max-width: 100%;
    }


    .section2 .textcontainer h3{
        font-family: 'PP Fragment';
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        letter-spacing: 2px;
        color: #10211C;
    }

    .section2 .textcontainer h2{
        font-family: 'BrownPro';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        letter-spacing: 2px;
    }

    section.uk-section.uk-padding-large.section2 {
        padding: 30px;
    }

    .section3 .textcontainer h2{

        font-family: 'PP Fragment';
        font-style: normal;
        font-weight: 500;
        font-size: 24px;
        line-height: 36px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    .section7 h2 {
        font-family: 'PP Fragment';
        font-size: 24px;
        line-height: 36px;
        letter-spacing: 2px;
        color: #fff;
        text-transform: uppercase;
    }

    .section3 .textcontainer {
        padding: 200px 0px 0px 0px;
        z-index: 99;
    }


    
    .slide01 {
        height: 100%; /* adjust the height value as needed */
    }
      .slick-slide {
        height: 100%; /* adjust the height value as needed */
    }



    .actions {
        float: left !important;
    }



}
 
@media screen and (max-width: 540px)
{
    
}


 
@media screen and (max-width: 480px)
{

    .hero-banner .textdivcontainer .textcontainer h1 {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .hero-banner .textdivcontainer .textcontainer p {
        font-family: 'BrownPro';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        max-width: 100%;
    }
        
    section#enquiry,section#brochure{
        padding: 15px;
    }

}
@media screen and (max-width: 414px)
{
    
}
@media screen and (max-width: 375px)
{
    
}

@media screen and (max-width: 371px)
{
    .hero-banner .textdivcontainer .textcontainer h1 {
        font-size: 27px;
    }
}
@media screen and (max-width: 360px)
{
    .hero-banner .textdivcontainer .textcontainer h1 {
        font-size: 26px;
    }
}
@media screen and (max-width: 349px)
{
    .hero-banner .textdivcontainer .textcontainer h1 {
        font-size: 25px;
    }
}
@media screen and (max-width: 320px)
{
    
}