@font-face {
    font-family: 'HW Atlantic';
    src: url('../fonts/HWAtlantic-Thin.woff2') format('woff2'),
        url('../fonts/HWAtlantic-Thin.woff') format('woff'),
        url('../fonts/HWAtlantic-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sackers Heavy Gothic';
    src: url('../fonts/SackersHeavyGothic.woff2') format('woff2'),
        url('../fonts/SackersHeavyGothic.woff') format('woff'),
        url('../fonts/SackersHeavyGothic.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sackers Gothic';
    src: url('../fonts/SackersGothicMedium.woff2') format('woff2'),
        url('../fonts/SackersGothicMedium.woff') format('woff'),
        url('../fonts/SackersGothicMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sackers Gothic';
    src: url('../fonts/SackersGothicLight.woff2') format('woff2'),
        url('../fonts/SackersGothicLight.woff') format('woff'),
        url('../fonts/SackersGothicLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --maroon: #441919;
    --maroonLight: #AF360D;
    --saffron: #fa8445;
    --black: #000000;
    --lightBlack: #333333;
    --gray: #707070;
    --white: #ffffff;
    --bodyBg: #F0EDE6;
    --bodyBgLight: #E7DCCE
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    margin-top: 0 !important;
}

html,
body {
    width: 100%;
    height: 100vh;
    padding: 0px;
    margin: 0 !important;
    overflow-x: hidden;
}

body {
    font-size: max(18px, min(18px + (25 - 18) * ((100vw - 1280px) / (1920 - 1280)), 25px));
    line-height: 32px;
    line-height: 1.29;
    letter-spacing: 0px;
    overflow-x: visible !important;
    font-family: 'Sackers Gothic';
    font-display: auto;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    font-stretch: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: var(--maroon);
    background: var(--bodyBg);
    min-width: 320px;

}

.bgImage {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

body .bgImage {
    opacity: 1;
}

.imgHolder {
    position: relative;
    overflow: hidden;
}

.imgHolder::before {
    content: "";
    width: 100%;
    display: block;
}

.imgHolder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.loader {
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 6px dotted var(--maroon);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    -webkit-animation: rotation 2s linear infinite;
    animation: rotation 2s linear infinite;
    z-index: -1;
}

.imgLoaded + .loader {
    display: none;
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.textCenter {
    text-align: center;
}

.animate {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
    -webkit-transition: opacity 1s ease 0.2s, -webkit-transform 1s ease 0.2s;
    transition: opacity 1s ease 0.2s, -webkit-transform 1s ease 0.2s;
    -o-transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s, -webkit-transform 1s ease 0.2s;
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s,
        -webkit-transform 1s ease 0.2s;
}

.animate.animateMe {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    text-align: center;
    padding: max(74px, min(74px + (110 - 74) * ((100vw - 1280px) / (1920 - 1280)), 110px)) 30px 50px;
    opacity: 0;
    -webkit-transition: opacity 0.35s ease;
    -o-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
}

.docReady header {
    opacity: 1;
}

header a {
    display: inline-block;
    text-align: center;
}

header a img {
    display: block;
    height: auto;
    width: max(240px, min(240px + (304 - 240) * ((100vw - 1280px) / (1920 - 1280)), 304px));
}

.enquiry {
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    font-size: 15px;
    line-height: 2.485;
    right: 53px;
    top: 32px;
    color: var(--maroonLight);
    -webkit-transition: color 0.35s ease;
    -o-transition: color 0.35s ease;
    transition: color 0.35s ease;
}

.enquiry span {
    position: relative;
}

.enquiry span::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    display: inline-block;
    background-color: var(--maroonLight);
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: width 0.35s ease;
    -o-transition: width 0.35s ease;
    transition: width 0.35s ease;
}

.enquiry:hover {
    color: var(--maroon);
}

.no-touch .enquiry:hover span::after {
    width: 48px;
}

.topSection {
    background-color: var(--bodyBg);
    position: relative;
    min-height: 100vh;
    padding: max(200px, min(200px + (250 - 200) * ((100vw - 1280px) / (1920 - 1280)), 250px)) 0 max(175px, min(175px + (200 - 175) * ((100vw - 1280px) / (1920 - 1280)), 200px));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bgImage {
    position: absolute;
    left: 0;
    top: 0;
}

.topSection div {
    position: relative;
    margin: 0 auto;
}

.mainTitle {
    text-align: center;
    font-family: 'HW Atlantic';
    font-weight: 100;
    text-transform: none;
    font-size: max(125px, min(125px + (169 - 125) * ((100vw - 1280px) / (1920 - 1280)), 169px));
    line-height: 175px;
    line-height: 0.7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: max(950px, min(950px + (1310 - 950) * ((100vw - 1280px) / (1920 - 1280)), 1310px));
    margin: 0 auto;
    padding-right: max(20px, min(20px + (54 - 20) * ((100vw - 1280px) / (1920 - 1280)), 54px));
    letter-spacing: -4.225px;
}

.mainTitle .smallText {
    font-size: max(18px, min(18px + (25 - 18) * ((100vw - 1280px) / (1920 - 1280)), 25px));
    line-height: 32px;
    line-height: 1.29;
    font-family: 'Sackers Gothic';
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    padding-right: max(12px, min(12px + (20 - 12) * ((100vw - 1280px) / (1920 - 1280)), 20px));
    padding-top: 0;
}

.mainTitle > span:nth-child(3) {
    display: block;
    width: 100%;
    text-align: right;
    padding-right: 55px;
}

.mainTitle > span:nth-child(4) {
    display: block;
    width: 100%;
    text-align: left;
    padding-left: 65px;
}
.mainTitle > span:nth-child(2), .mainTitle > span:nth-child(3), .mainTitle > span:nth-child(4) {
    height: max(126px, min(126px + (181 - 126) * ((100vw - 1280px) / (1920 - 1280)), 181px));
}
.mainTitle > span {
    position: relative;
    overflow: hidden;
}

.mainTitle > span > span {
    position: relative;
    -webkit-transform: translateY(110%);
        -ms-transform: translateY(110%);
            transform: translateY(110%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    display: inline-block;
}
.mainTitle > span:not(:nth-child(1)) > span {
    position: relative;
    -webkit-transform: translateY(165%);
        -ms-transform: translateY(165%);
            transform: translateY(165%);
}
.loaded .mainTitle > span:nth-child(1) > span {
    -webkit-transition-delay: 0.5s;
         -o-transition-delay: 0.5s;
            transition-delay: 0.5s;
}

.loaded .mainTitle > span:nth-child(2) > span {
    -webkit-transition-delay: 0.7s;
         -o-transition-delay: 0.7s;
            transition-delay: 0.7s;
}

.loaded .mainTitle > span:nth-child(3) > span {
    -webkit-transition-delay: 0.9s;
         -o-transition-delay: 0.9s;
            transition-delay: 0.9s;
}

.loaded .mainTitle > span:nth-child(4) > span {
    -webkit-transition-delay: 1.1s;
         -o-transition-delay: 1.1s;
            transition-delay: 1.1s;
}

.loaded .mainTitle > span > span {
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
}

h2 {
    font-size: max(18px, min(18px + (25 - 18) * ((100vw - 1280px) / (1920 - 1280)), 25px));
    line-height: 32px;
    line-height: 1.29;
}

h3 {
    font-size: max(17px, min(17px + (23 - 17) * ((100vw - 1280px) / (1920 - 1280)), 23px));
    line-height: 30px;
}

.title {
    position: relative;
    text-align: center;
    padding-bottom: 33px;

    font-weight: 500;
}

.title::after {
    content: "";
    background-color: var(--maroonLight);
    display: inline-block;
    height: 2px;
    width: 48px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
}
.offCover {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
}

.w1_threeImg {
    background-color: var(--bodyBg);
}
.w1_threeImg .rippleBg  {
    object-position: 0% 100%;opacity: 0.5;
}
.w1_threeImg .w1box {
    background-color: var(--bodyBgLight);
    text-align: center;
    position: relative;
    padding: max(110px, min(110px + (140 - 110) * ((100vw - 1280px) / (1920 - 1280)), 140px)) 0 max(120px, min(120px + (149 - 120) * ((100vw - 1280px) / (1920 - 1280)), 149px));
}

.w1box svg {
    margin-right: max(60px, min(60px + (80 - 60) * ((100vw - 1280px) / (1920 - 1280)), 80px));
    height: auto;
    width: max(780px, min(780px + (1099 - 780) * ((100vw - 1280px) / (1920 - 1280)), 1099px));
}

.w1box .titleBox {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    padding: 50px;
    padding: 50px 50px 50px;
}

.threeImages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    gap: 30px;
    padding: 30px 0;
    margin-bottom: max(190px, min(190px + (328 - 190) * ((100vw - 1280px) / (1920 - 1280)), 328px));
}

.threeImages > div {
    width: calc(31.67% - 20px);
}

.threeImages > div.portraitImg {
    width: calc(36.66% - 20px);
    position: absolute;
    left: 50%;
    top: calc(50% - max(28px, min(28px + (41 - 28) * ((100vw - 1280px) / (1920 - 1280)), 41px)));
    -webkit-transform: translate(-50%, calc(-50% + 30px));
        -ms-transform: translate(-50%, calc(-50% + 30px));
            transform: translate(-50%, calc(-50% + 30px));
}

.threeImages > div.portraitImg.animateMe {
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.threeImages .imgHolder::before {
    padding-top: 66.69%;
}

/* .threeImages .imgHolder::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--white);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    opacity: 0.29;
} */

.threeImages .imgHolder.portraitImg::before {
    padding-top: 124.927%;
}

.w1_threeImg .galleryTitle {
    padding-bottom: max(80px, min(80px + (132 - 80) * ((100vw - 1280px) / (1920 - 1280)), 132px));
}

.gellerySection {
    position: relative;
    padding: max(30px, min(30px + (58 - 30) * ((100vw - 1280px) / (1920 - 1280)), 58px)) 4.5% 0;
}

.gellerySection::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 50%;
    background-color: var(--bodyBgLight);
    display: block;
    position: absolute;
    left: 0;
    z-index: 0;
}

.gellerySection > div {
    position: relative;
max-width: 1746px;
    margin: 0 auto;
    padding: 0 106px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.swiper-slide img {
    display: inline-block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.sliderBox {
    position: relative;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: unset;
}

.gellerySection .imgHolder {
    width: 100%;
}

.gellerySection .imgHolder::before {
    padding-top: 60.518%;
}

.swiper-button-next,
.swiper-button-prev {
    top: calc(50% - max(52px, min(52px + (58 - 52) * ((100vw - 1681px) / (1920 - 1681)), 58px)));
    width: 56px;
    height: 56px;
    margin-top: 0;
}

.swiper-button-prev {
    left: 25px;
}

.swiper-button-next {
    right: 25px;
}

.swiper-button-next path,
.swiper-button-prev path {
    -webkit-transition: .35s all;
    -o-transition: .35s all;
    transition: .35s all;
}
.swiper-button-next .circlePath,
.swiper-button-prev .circlePath {fill: transparent;}

.no-touch .swiper-button-next:hover path,
.no-touch .swiper-button-prev:hover path,
.touch .swiper-button-next:active path,
.touch .swiper-button-prev:active path {
    fill: #707070;
}

.no-touch .swiper-button-next:hover .arrow path,
.no-touch .swiper-button-prev:hover .arrow path,
.touch .swiper-button-next:active .arrow path,
.touch .swiper-button-prev:active .arrow path {
    fill: #fff;
}

.buildingSection {
    background-color: var(--bodyBgLight);
    position: relative;
    padding: max(80px, min(80px + (93 - 80) * ((100vw - 1280px) / (1920 - 1280)), 93px)) 0 max(75px, min(75px + (86 - 75) * ((100vw - 1280px) / (1920 - 1280)), 86px));
}

.buildingSection .building {
    padding: max(60px, min(60px + (79 - 60) * ((100vw - 1280px) / (1920 - 1280)), 79px)) 24% max(50px, min(50px + (52 - 50) * ((100vw - 1280px) / (1920 - 1280)), 52px));
}

.buildingSection .building img {
    max-width: 100%;
    height: auto;
}

.positionRelative {
    position: relative;
}

footer {
    font-size: 15px;
    line-height: 1.535;
    background: url(../images/patternpaper.png) no-repeat center center;
    background-size: cover;
    position: relative;
}

footer > div {
    padding: max(70px, min(70px + (90 - 70) * ((100vw - 1280px) / (1920 - 1280)), 90px)) max(80px, min(80px + (140 - 80) * ((100vw - 1280px) / (1920 - 1280)), 140px)) max(65px, min(65px + (80 - 65) * ((100vw - 1280px) / (1920 - 1280)), 80px));
    max-width: 1920px;
    margin: 0 auto;
}

footer .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: max(30px, min(30px + (57 - 30) * ((100vw - 1280px) / (1920 - 1280)), 57px));
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

footer .row > .contactDetails {
    padding-top: 7px;
}
footer .row > .contactDetails p {
    padding-top: 20px;
}
footer .row > .contactDetails .footerLogo {display: inline-block;}
footer .row > .contactDetails a img {
    display: block;
    max-width: 100%;height: auto;
}
footer .row > .formBox {
    width: max(320px, min(320px + (420 - 320) * ((100vw - 1280px) / (1920 - 1280)), 420px));
}
footer .row > div:last-child {
    margin-left: auto;
    padding-right: max(0px, min(0px + (103 - 0) * ((100vw - 1280px) / (1920 - 1280)), 103px));
}

footer .row > div:last-child p {
    padding-bottom: 15px;
}

footer a {
    display: block;
    color: var(--maroon);
    text-decoration: none;
    -webkit-transition: color 0.35s ease;
    -o-transition: color 0.35s ease;
    transition: color 0.35s ease;
}

footer a:hover {
    color: var(--maroonLight);
}

.footerScrollIcon {
    position: absolute;
    top: min(-60px, max(-60px + (-85 - -60) * ((100vw - 1280px) / (1920 - 1280)), -85px));
    right: max(28px, min(28px + (46 - 28) * ((100vw - 1280px) / (1920 - 1280)), 46px));
    height: 56px;
    width: 56px;
    cursor: pointer;
    outline: none;
}
.footerScrollIcon .circlePath {fill: transparent;}
.footerScrollIcon path,
.footerScrollIcon circle {
    -webkit-transition: .35s all;
    -o-transition: .35s all;
    transition: .35s all;
}
.gform_title {
    font-size: 15px;
    line-height: 1.535;
    font-weight: 500;
    padding-bottom: 10px
}
.gform_fields > .gfield {
    margin-bottom: 0;
}
label.gfield_label {
    display: none;
}
input, select, textarea {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--maroonLight);
    width: 100%;
    font-size: 15px;
    line-height: 1.535;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 0;
    font-family: 'Sackers Gothic';
}
input:focus, select:focus, textarea:focus {
outline: none;
border-color: var(--maroon);
}
input::placeholder, select::placeholder, textarea::placeholder {
    color: rgba(68, 25, 25, 0.21);
    text-transform: uppercase;
}
.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
    border: none !important;
    border-bottom: 2px solid #ff2929 !important;
}
.gfield--input-type-consent {
    border: none;
}
.gfield--input-type-consent legend, .gfield--type-honeypot, .gfield--input-type-captcha,
.gform_validation_errors, .validation_message {
    display: none;
}
.gfield--input-type-consent input {
    display: inline-block;
    width: 0;
    height: 0;position: absolute;
    opacity: 0;visibility: hidden;
}
.gfield--input-type-consent {
    padding: 15px 0 5px !important;
}
.gfield--input-type-consent label {
    position: relative;
    padding: 5px 0 5px 30px;
    display: block;
    font-size: 8px;
    font-weight: 300;
    cursor: pointer;font-family: 'Sackers Gothic';
}
.gfield--input-type-consent label .gfield_required {display: none !important; }
.gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label, .gform_wrapper.gravity-theme .gfield_error label, .gform_wrapper.gravity-theme .gfield_error legend, .gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message, .gform_wrapper.gravity-theme [aria-invalid="true"] + label, .gform_wrapper.gravity-theme label + [aria-invalid="true"]
{
  color: #ff2929 !important;
}

.gfield--input-type-consent label::before {
    content: "";
    width: 17px;
    height: 17px;
    display: inline-block;
    border: 2px solid var(--maroon);
    position: absolute;
    left: 0;
    top: 0;
}
.gfield_error .gfield--input-type-consent label::before { border: 2px solid #ff2929; }
.gfield--input-type-consent label::after {
    content: "";
    width: 10px;
    height: 4px;
    display: inline-block;
    border: 2px solid var(--maroon);
    border-top: none;
    border-right: none;
    position: absolute;
    left: 5px;
    top: 6px;
    opacity: 0;
    transform: rotate(-55deg);
    transition: opacity 0.3s ease;
}
.gfield_error  .gfield--input-type-consent label::after {
    border: 2px solid #ff2929;
    border-top: none;
    border-right: none; }
.gfield--input-type-consent input:checked ~ label::after {opacity: 1;}
.gform_footer .button {
    border: 2px solid var(--maroonLight);
    color: var(--maroon);
    width: auto;
    text-transform: uppercase;
    padding: 8px 15px;
    cursor: pointer;
    transition: 0.5s all;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
         border-radius: 0;font-family: 'Sackers Gothic';
}
.gform_footer .button:hover, .gform_footer .button:focus {
    border: 2px solid var(--maroonLight);
    background-color: var(--maroonLight);
    color: var(--white);
}
.no-touch .footerScrollIcon:hover path,
.touch .footerScrollIcon:active path {
    fill: var(--white);
}

.no-touch .footerScrollIcon:hover circle,
.touch .footerScrollIcon:active circle {
    fill: #707070
}

.hiddenItem.animate {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
                   .shapeOne {
                    stroke-dasharray:2957;
                    stroke-dashoffset:2957;
                    }
                    .hiddenItem.animateMe ~ svg .shapeOne {
                    -webkit-animation: shapeOne 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
                    animation: shapeOne 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
                    -webkit-animation-delay:0.2s;
                    animation-delay:0.2s;
                    
                    }
                    #pPath_576, #pPath_577 {opacity: 0;}
                    
                    .hiddenItem.animateMe ~ svg #pPath_577 {
                        -webkit-animation: oneShow 0s linear 0.2s 1 normal forwards;
                                animation: oneShow 0s linear 0.2s 1 normal forwards;
                    }
                    .hiddenItem.animateMe ~ svg #pPath_576 {
                        -webkit-animation: oneShow 0s linear 1.4s 1 normal forwards;
                                animation: oneShow 0s linear 1.4s 1 normal forwards;
                    }
                    @-webkit-keyframes oneShow {
                        to { opacity: 1; }
                    }
                    @keyframes oneShow {
                        to { opacity: 1; }
                    }
                    @-webkit-keyframes shapeOne{
                    0%{stroke-dashoffset:0;}
                    100%{stroke-dashoffset:2957;}
                    }
                    @keyframes shapeOne {
                    0%{stroke-dashoffset:0;}
                    100%{stroke-dashoffset:2957;}
                    }
                    .shapeTwo {
                    stroke-dasharray:826;
                    stroke-dashoffset:0;
                    }
                    .hiddenItem.animateMe ~ svg .shapeTwo {
                    -webkit-animation: shapeTwo 0.85s cubic-bezier(0.33, 1, 0.68, 1) forwards;
                    animation: shapeTwo 0.85s cubic-bezier(0.33, 1, 0.68, 1) forwards;
                    -webkit-animation-delay:1.4s;
                    animation-delay:1.4s;
                    }
                    @-webkit-keyframes shapeTwo{
                    0%{stroke-dashoffset:0;}
                    100%{stroke-dashoffset:826;}
                    }
                    @keyframes shapeTwo {
                    0%{stroke-dashoffset:0;}
                    100%{stroke-dashoffset:826;}
                    }
                    .hiddenItem.animateMe ~ .titleBox .title.animate {
                        -webkit-transition-delay: 2s;
                             -o-transition-delay: 2s;
                                transition-delay: 2s;
                    }
/* @-moz-document url-prefix() {
    img:-moz-loading {
      visibility: hidden;
    }
  } */
  [data-cky-tag="detail-powered-by"] {display: none !important;}
  body .cky-notice-des *, body .cky-preference-content-wrapper *, body .cky-dma-content-wrapper *, body .cky-accordion-header-des *, body .cky-gpc-wrapper .cky-gpc-desc *
  {
    font-size: 12px;
    line-height: 1.4;
  }
  .cky-notice .cky-title {display: none !important;}
  .cky-notice-btn-wrapper .cky-btn, .cky-prefrence-btn-wrapper .cky-btn {
    border: 2px solid var(--maroonLight) !important;
    color: var(--maroonLight) !important;
    font-family: 'Sackers Gothic' !important;
    font-style: normal !important;
    font-variant-numeric: lining-nums;
    font-variant-caps: all-petite-caps !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 10px 10px 13px;
    line-height: 1 !important;
    border-radius: 0;
  }
  .cky-notice-btn-wrapper .cky-btn.cky-btn-accept, .cky-prefrence-btn-wrapper .cky-btn.cky-btn-accept {
    background-color: var(--maroonLight) !important;
    color: var(--white) !important;
  }
  body .cky-accordion-header .cky-accordion-btn, body .cky-preference-content-wrapper .cky-show-desc-btn{
    font-variant-numeric: lining-nums;
    font-variant-caps: all-petite-caps !important;
  }

  .gform_confirmation_message {
    border: 1px solid;
    padding: 20px 15px;
    margin-bottom: 20px;
}
.downloadLink a.locked {display: none;}
.downloadLink a {
    display: inline-block;
    border: 2px solid var(--maroonLight);
    color: var(--maroonLight);
    width: auto;
    text-transform: uppercase;
    padding: 8px 15px;
    cursor: pointer;
    transition: 0.5s all;
}
.downloadLink a:hover, .downloadLink a:focus {
    border: 2px solid var(--maroonLight);
    background-color: var(--maroonLight);
    color: var(--white);
}
.gform_wrapper.gravity-theme .gform_footer {padding-bottom: 0 !important;}
@media (orientation:portrait) {
    .topSection {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 200px 0;
    }

}

@media (max-width:1680px) {
.gellerySection > div {
        padding: 0 98px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        top: calc(50% - max(46px, min(46px + (48 - 46) * ((100vw - 1537px) / (1680 - 1537)), 48px)));
        width: 50px;
        height: 50px;
    }

    /* .swiper-button-next {
        right: -75px;
    }

    .swiper-button-prev {
        left: -75px;
    } */

    .footerScrollIcon {
        height: 50px;
        width: 50px;
    }
}

@media (max-width:1536px) {
    .threeImages {
        padding: 24px 0;
    }

    .threeImages > div {
        width: calc(31.67% - 14px);
    }
.gellerySection > div {
        padding: 0 92px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        top: calc(50% - max(37px, min(37px + (42 - 37) * ((100vw - 1200px) / (1536 - 1200)), 42px)));
        width: 44px;
        height: 44px;
    }

    /* .swiper-button-next {
        right: -70px;
    }

    .swiper-button-prev {
        left: -70px;
    } */

    .footerScrollIcon {
        height: 44px;
        width: 44px;
    }
}

@media (max-width:1440px) {

    footer,
    .enquiry, .gform_title  {
        font-size: 14px;
    }
    .buildingSection .building {
        padding-left: 20%;
        padding-right: 20%;
    }
}

@media (max-width:1200px) {
    .threeImages {
        padding: 20px 0;
    }

    .threeImages > div {
        width: calc(31.67% - 10px);
    }
    .swiper-button-next,
    .swiper-button-prev {
        top: calc(50% - 37px); }
}

@media (max-width:1200px) {
    .footerScrollIcon {
        top: 20px; }
    footer .row {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 30px;
    }

    footer > div {
        padding: 60px 40px 80px;
    }

    footer .row > div {
        width: calc(50% - 15px);
    }

    footer .row > div:nth-child(1),
    footer .row > div:nth-child(4) {
        width: calc(50% - 15px);
    }

    footer .row > div:last-child , footer .row > div:nth-child(3){
        border-top: 1px solid #000000;
        padding-top: 30px;
    }

    .w1_threeImg .w1box {
        padding: 80px 40px;
    }

    .w1box svg {
        margin-right: 5%;
        height: auto;
        width: 60%;
    }

    .mainTitle {
        font-size: 100px;
    }

    .mainTitle > span:nth-child(2), .mainTitle > span:nth-child(3), .mainTitle > span:nth-child(4) {
        height: 100px;
    }
    .buildingSection .building {
        padding-left: 15%;
        padding-right: 15%;
    }
}
@media (max-width: 1080px) {
.gellerySection {
        padding: max(30px, min(30px + (58 - 30) * ((100vw - 1280px) / (1920 - 1280)), 58px)) 0 0;
    }
    .topSection {padding: 140px 0 120px;}
}
@media (max-width: 880px) {
    header a img {
        width: 200px;
    }

    .w1box svg {
        width: 70%;
    }

    .threeImages {
        padding: 15px 0;
    }

    .threeImages > div {
        width: calc(31.67% - 7.5px);
    }

    .threeImages > div.portraitImg {
        width: calc(36.66% - 15px);
    }

    .mainTitle {
        font-size: 90px;
        padding: 20px;
    }
    .mainTitle > span:nth-child(2), .mainTitle > span:nth-child(3), .mainTitle > span:nth-child(4) {
        height: 88px;
    }
    /* .swiper-button-next {
        right: -55px;
    }
    .swiper-button-prev {
        left: -55px;
    } */
}

@media (max-width: 767px) {
    .mainTitle .smallText {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 0 20px;
    }

    .mainTitle > span:nth-child(2) {
        display: block;
        width: 100%;
        text-align: left;
        padding-left: 55px;
    }

    .threeImages {
        gap: 15px;
    }

    .threeImages > div {
        width: calc(50% - 7.5px);
    }

    .threeImages > div.portraitImg {
        width: calc(50% - 7.5px);
        position: relative;
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        -webkit-transform: translateY(30px);
            -ms-transform: translateY(30px);
                transform: translateY(30px);
        left: unset;
        top: unset;
        margin: 0 auto;
    }

    .threeImages > div.portraitImg.animateMe {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }

    .threeImages {
        margin-bottom: 60px;
    }

    .w1_threeImg .w1box {
        padding: 60px 40px;
    }

    .w1_threeImg .galleryTitle {
        padding-bottom: 40px;
    }

    .buildingSection {
        padding: 70px 0 60px;
    }

    .buildingSection .building {
        padding: 60px 40px 40px;
    }

    .buildingSection h2,
    .w1_threeImg h2,
    .w1_threeImg h3 {
        padding-left: 20px;
        padding-right: 20px;
    }


    .gellerySection {
        position: relative;
        padding: 20px 0 0;
    }
.gellerySection > div {
        padding: 0 70px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        top: calc(50% - 30px);
        width: 40px;
        height: 40px;
    }

    .swiper-button-prev {
        left: 15px;
    }

    .swiper-button-next {
        right: 15px;
    }

    footer .row > div:nth-child(2),
    footer .row > div:nth-child(3) {
        width: 100%;
    }
    footer .row > div:nth-child(2){
        border-top: 1px solid #000000;
        padding-top: 30px;
    }
    .footerScrollIcon {
        height: 40px;
        width: 40px;
    }
    footer .row > div:nth-child(1), footer .row > div:nth-child(4) {
        width: 100%;
    }
}

@media (max-width: 525px) {

    header a img {
        width: 184px;
    }

    .enquiry {
        right: 15px;
        top: 15px;
    }

    footer, .gform_title  {
        font-size: 12px;
    }

    .mainTitle {
        font-size: 60px;
    }

    .mainTitle > span:nth-child(3) {
        display: block;
        width: 100%;
        text-align: right;
        padding-right: 0;
    }

    .mainTitle .smallText {
        width: 100%;
        padding: 0;
        margin: 0 0 10px;
    }

    .mainTitle > span:nth-child(2) {
        text-align: center;
        padding-left: 0;
    }

    .mainTitle > span:nth-child(2) {
        text-align: center;
    }

    .mainTitle > span:nth-child(3) {
        text-align: center;
        padding-right: 0;
    }

    .mainTitle > span:nth-child(4) {
        text-align: center;
        padding-left: 0;
    }
    .mainTitle > span:nth-child(2), .mainTitle > span:nth-child(3), .mainTitle > span:nth-child(4) {
        height: 60px;
    }
    .w1_threeImg .w1box {
        padding: 60px 15px;
    }

    .w1box .titleBox {
        padding: 50px 0px 50px;
    }

    footer > div {
        padding: 80px 15px;
    }

    footer .row {
        gap: 35px;
    }

    footer .row > div {
        width: 100%;
    }

    footer .row > div:last-child {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }

    footer .row > div:last-child p {
        padding-bottom: 10px;
    }
    .w1_threeImg .galleryTitle {
        padding-bottom: 60px;
    }
    .gellerySection, .gellerySection > div {
        padding: 0;
    }

    .swiper-button-next {
        right: 15px;
    }

    .swiper-button-prev {
        left: 15px;
    }

    .swiper-button-next, .swiper-button-prev {
        top: calc(50% - 20px); }
.swiper-button-next .circlePath, .swiper-button-prev .circlePath {
            fill: #fff;
        }
    .w1box svg {
        width: 100%;
        margin-right: 0;
    }
    .buildingSection .building {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .threeImages > div {
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    .threeImages > div.portraitImg {
        width: calc(100% - 30px);
        -webkit-box-ordinal-group: unset;
            -ms-flex-order: unset;
                order: unset;
    }
}

@media (max-height: 480px),
(max-width: 525px) {

    h2,
    h3,
    .mainTitle .smallText {
        font-size: 16px;line-height: 28px;
    }

    .title {
        padding-bottom: 20px;
    }
    .title::after { bottom: 10px; }
}

@media (orientation:landscape) and (max-height: 480px) {
    header {
        padding: 30px;
    }

    .enquiry {
        right: 30px;
    }

    .topSection {
        background-color: var(--bodyBg);
        position: relative;
        min-height: 100vh;
        padding: 80px 0 60px;
    }

    .threeImages {
        margin-bottom: 140px;
    }

    .w1_threeImg h3 {
        margin-bottom: 60px;
    }

    .buildingSection {
        padding: 60px 0;
    }

    .buildingSection .building {
        padding: 50px 40px 40px;
    }
    
    .mainTitle {
        font-size: 60px;
    }
    .mainTitle > span:nth-child(3) {
        display: block;
        width: 100%;
        text-align: right;
        padding-right: 0;
    }

    .mainTitle .smallText {
        width: 100%;
        padding: 0;
        margin: 0 0 10px;
    }

    .mainTitle > span:nth-child(2) {
        text-align: center;
        padding-left: 0;
    }

    .mainTitle > span:nth-child(2) {
        text-align: center;
    }

    .mainTitle > span:nth-child(3) {
        text-align: center;
        padding-right: 0;
    }

    .mainTitle > span:nth-child(4) {
        text-align: center;
        padding-left: 0;
    }
    .mainTitle > span:nth-child(2), .mainTitle > span:nth-child(3), .mainTitle > span:nth-child(4) {
        height: 60px;
    }
    
}

@media (orientation:landscape) and (max-height: 480px) and (min-width: 881px) {
    .topSection {
        padding: 120px 0 60px;
    }
} 