@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
/* font-family: "Tenor Sans", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* font-family: "DM Sans", sans-serif; */

/* 	-----------------------------------------------------
------------------- General Styles ------------------
----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: 4px-box;
    -moz-box-sizing: 4px-box;
    box-sizing: 4px-box;
}

html {
    overflow-x: hidden !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #262626;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow: hidden !important;
    background-color: #F3E6D9;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #262626;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #395230;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    margin: 0 auto;
    max-width: 1276px;
    padding: 0 15px;
}

.container-fluid {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 15px;
}

/* 	-----------------------------------------------------
-------------------- Enquire Now Styles ------------------
----------------------------------------------------- */
.btn-enquire-now {
    position: fixed;
    top: 150px;
    right: -58px;
    z-index: 99;
    padding: 15px 30px;
    background-color: #395230;
    border: 1px solid #FFFFFF;
    border-radius: 15px 15px 0 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
    transform: rotate(-90deg);
    cursor: pointer;
}

.enquire-form {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 350px;
    min-height: 100vh;
    background-color: #395230;
    padding: 5px 30px;
}

.enquire-form.right {
    right: -350px;
    transition: 0.2s ease;
}

.enquire-form.right.active {
    right: 0;
}

.btn-close {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 99;
    width: 14px;
    height: 14px;
    background: url(../img/menu-close.svg) no-repeat center/cover;
    border: none;
    cursor: pointer;
}

.enquire-form h4 {
    font-family: "Tenor Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #F3E6D9;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.enquire-form .field {
    margin-top: 20px;
}

.enquire-form input[type="text"],
.enquire-form input[type="email"],
.enquire-form input[type="tel"],
.enquire-form select,
.enquire-form textarea {
    margin: 0;
    padding: 10px;
    width: 100%;
    height: auto;
    background: none;
    border: none;
    border-bottom: 1px solid #707070;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.enquire-form select {
    background: url(../img/dd-arrow.png) no-repeat right;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.enquire-form textarea {
    height: 80px;
    overflow: auto;
    resize: none;
}

.enquire-form input[type="submit"] {
    margin: 0px 0 0 0;
    padding: 15px;
    width: 100%;
    height: auto;
    background: none;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.enquire-form input[type="submit"]:hover,
.enquire-form input[type="submit"]:active,
.enquire-form input[type="submit"]:focus {
    background: #FFFFFF;
    color: #000000;
    transition: all .4s ease-in-out;
}

.enquire-form input[type="text"]:focus,
.enquire-form input[type="email"]:focus,
.enquire-form input[type="tel"]:focus,
.enquire-form select:focus,
.enquire-form textarea:focus {
    border-bottom: 1px solid #FFFFFF;
    transition: all .4s ease-in-out;
}

.enquire-form ::placeholder {
    color: #FFFFFF;
    opacity: 1;
}

.enquire-form ::-ms-input-placeholder {
    color: #FFFFFF;
}

@media only screen and (max-width:760px) {
    .btn-enquire-now {
        top: 200px;
        right: -44px;
        padding: 10px 20px;
        border-radius: 10px 10px 0 0;
        font-size: 12px;
    }

    .enquire-form {
        width: 300px;
        min-height: auto;
        padding: 20px;
    }

    .enquire-form.right {
        top: 68px;
        right: -300px;
        transition: 0.2s ease;
    }

    .btn-close {
        position: absolute;
        top: 10px;
        right: 13px;
    }

    .enquire-form h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .enquire-form .field {
        margin-top: 10px;
    }

    .enquire-form input[type="text"],
    .enquire-form input[type="email"],
    .enquire-form input[type="tel"],
    .enquire-form select,
    .enquire-form textarea {
        font-size: 14px;
    }

    .enquire-form input[type="submit"] {
        margin: 30px 0 0 0;
        padding: 10px;
        font-size: 14px;
    }
}

/* 	-----------------------------------------------------
-------------------- Header Styles ------------------
----------------------------------------------------- */
.header-section {
    padding: 25px 15px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    transition: all .4s ease-in-out;
}

.header-section.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
    background-color: #FFFFFF;
}

.header-section .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-section .logo {
    opacity: 0;
}

.header-section.sticky .logo {
    opacity: 1;
}

.main-menu {
    margin: 0;
    padding: 20px;
    position: fixed;
    left: -350px;
    top: 0;
    width: 350px;
    height: 100%;
    background-color: #395230;
    border-radius: 0;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-menu.oppenned {
    left: 0;
}

.main-menu ul.page-links {
    margin: 100px 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.main-menu ul.page-links li {
    margin: 50px 0;
    display: block;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: "Tenor Sans", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #F3E6D9;
    text-transform: uppercase;
}

.main-menu ul.page-links li a {
    color: #F3E6D9;
    display: block;
    transition: all .4s ease-in-out;
}

.main-menu ul.page-links li a:hover {
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.main-menu ul.social-links {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.main-menu ul.social-links li {
    margin: 0 10px;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.c-hamburger {
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 2;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.c-hamburger:focus {
    outline: none;
}

.c-hamburger span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: url(../img/menu-open.svg) no-repeat center;
}

.c-hamburger.is-active span {
    background: url(../img/menu-close.svg) no-repeat center;
}

.header-section.sticky .c-hamburger span {
    background: url(../img/skicky-bar.svg) no-repeat center;
}

.header-section.sticky .c-hamburger.is-active span {
    background: url(../img/menu-close.svg) no-repeat center;
}

@media only screen and (max-width:760px) {
    .header-section {
        padding: 15px 0;
        background-color: #FFFFFF;
    }

    .header-section .logo {
        opacity: 1;
    }

    .header-section .c-hamburger span {
        background: url(../img/skicky-bar.svg) no-repeat center;
    }

    .header-section .c-hamburger.is-active span {
        background: url(../img/menu-close.svg) no-repeat center;
    }
}

/* 	-----------------------------------------------------
-------------------- Banner Styles ------------------
----------------------------------------------------- */
.banner-section {
    background: url(../img/banner-img.png) no-repeat center/cover;
    position: relative;
}

.banner-section video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-section .container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.inner-banner-section {
    min-height: 440px;
    position: relative;
    z-index: 1;
}


@media only screen and (max-width:760px) {
    .banner-section .container {
        margin-top: 68px;
        min-height: 60vh;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .banner-section .container {
        min-height: 60vh;
    }
}

/* 	-----------------------------------------------------
------------------- Content Styles ------------------
----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #5A5A5A;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 50px;
}

.content-section h2 {
    font-size: 40px;
    text-transform: uppercase;
}

.content-section h3 {
    font-size: 36px;
    text-transform: uppercase;
}

.content-section h4 {
    font-size: 30px;
    text-transform: uppercase;
}

.content-section h5 {
    font-size: 24px;
}

.content-section h6 {
    font-size: 20px;
}

.content-section p {
    font-size: 20px;
    font-weight: 200;
    line-height: 1.5;
    color: #262626;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 20px;
    font-weight: 200;
    line-height: 1.5;
    color: #262626;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 10px 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 20px;
    font-weight: 200;
    line-height: 1.5;
    color: #262626;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-01 a {
    margin: 15px 0;
    padding: 10px 50px;
    width: auto;
    height: auto;
    background: transparent;
    border: 1px solid #262626;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    color: #262626;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .4s ease-in-out;
    display: inline-block;
}

.btn-01 a:hover {
    background: #262626;
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .content-section h1 {
        font-size: 28x;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 24px;
    }

    .content-section h4 {
        font-size: 22px;
    }

    .content-section h5 {
        font-size: 20px;
    }

    .content-section h6 {
        font-size: 18px;
    }

    .content-section p {
        font-size: 16px;
    }

    .content-section ul li {
        font-size: 16px;
    }

    .content-section ol li {
        font-size: 16px;
    }

    .sub-heading {
        font-size: 14px !important;
    }

    .btn-01 a {
        padding: 5px 10px;
        font-size: 14px;
        border-radius: 5px;
    }
}

.welcome-section {
    margin-top: -30px;
    padding: 80px 0;
    background-color: #FFF2E5;
    border-radius: 30px 30px 0 0;
    position: relative;
    text-align: center;
    z-index: 9;
}

.welcome-section h3 {
    text-transform: uppercase;
}

.welcome-section h6 {
    padding: 0;
}

.welcome-section p {
    margin: 50px auto 0 auto;
    max-width: 900px;
}

.welcome-section p span {
    display: block;
}

@media only screen and (max-width:760px) {
    .welcome-section {
        padding: 40px 15px;
        border-radius: 15px 15px 0 0;
    }

    .welcome-section p {
        margin: 20px auto 0 auto;
    }

    .welcome-section p span {
        display: inline;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .welcome-section {
        padding: 80px 15px;
    }

    .welcome-section p span {
        display: inline;
    }
}

.difference-section {
    padding: 80px 0 60px 0;
    background-color: #F3E6D9;
}

.difference-section h4 {
    text-transform: uppercase;
    margin-bottom: 50px;
}

.slider {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    padding: 0 !important;
}

.slider li {
    position: relative;
    background: none no-repeat center/cover;
    min-height: 100%;
    overflow: hidden;
    flex-grow: 1;
    transition: 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider li:hover {
    flex-grow: 2;
}

.slider li:hover p {
    transform: translateY(calc((100% + 1rem) * -1)) rotateZ(0);
}

.slider a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.slider h6 {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #FFFFFF;
    text-transform: uppercase;
}

.slider p {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    font-size: 16px;
    color: #FFFFFF;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.6);
}

.slider .one {
    background-image: url(../img/slider-01.png);
}

.slider .two {
    background-image: url(../img/slider-02.png);
}

.slider .three {
    background-image: url(../img/slider-03.png);
}

.slider .four {
    background-image: url(../img/slider-04.png);
}

.for-desktop {
    display: block;
}

.for-mobile {
    display: none;
}

.difference-js .item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.difference-js .item article {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 30px 15px;
}

.difference-js .item article h6 {
    color: #FFFFFF;
    font-weight: 600;
}

.difference-js .item article p {
    color: #FFFFFF;
    font-size: 14px;
}

@media only screen and (max-width:760px) {
    .difference-section {
        padding: 30px 0;
    }

    .difference-section h4 {
        margin-bottom: 20px;
    }

    .slider {
        height: 300px;
    }

    .slider h6 {
        top: .5rem;
        left: .5rem;
        font-size: 14px !important;
    }

    .slider p {
        font-size: 12px;
        right: .5rem;
        left: .5rem;
    }

    .for-desktop {
        display: none;
    }

    .for-mobile {
        display: block;
    }
}

.offering-section section {
    padding: 150px 80px;
    background: #395230 url(../img/graphic-top.png) repeat-x top;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
}

.offering-section section::after {
    content: "";
    width: 100%;
    min-height: 283px;
    background: #395230 url(../img/graphic-bot.png) repeat-x bottom;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.offering-section section h2 {
    text-transform: uppercase;
    color: #FFF2E5;
}

.offering-section section p {
    margin: 0 auto;
    max-width: 740px;
    color: #FFFFFF;
}

.offering-section section h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
}

.offering-section section figure {
    margin: 0 0 30px 0;
}

.offering-section section .btn-01 a {
    margin-top: 30px;
}

.offering-section .two-columns {
    margin-top: 80px;
    display: flex;
    justify-content: space-around;
    align-items: start;
}

.offering-section .two-columns .first-column {
    padding: 80px 0 50px 0;
    width: 100%;
    max-width: 390px;
    min-height: 630px;
    overflow: hidden;
    background-color: #FFF2E5;
    border-radius: 200px 200px 0 0;
    transition: all .4s ease-in-out;
}

.offering-section .two-columns .first-column:hover {
    box-shadow: -20px 20px 0 0 #000000;
    transition: all .4s ease-in-out;
}

.offering-section .two-columns .first-column:hover .btn-01 a {
    background: #FFF2E5;
    color: #000000;
    transition: all .4s ease-in-out;
}

.offering-section .two-columns .first-column .btn-01 a:hover {
    background: #000000;
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.offering-section .two-columns .first-column:hover .btn-01 a:focus,
.offering-section .two-columns .first-column:hover .btn-01 a:active {
    background: #000000;
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.offering-section .two-columns .second-column {
    padding: 80px 0 50px 0;
    width: 100%;
    max-width: 390px;
    min-height: 630px;
    overflow: hidden;
    background-color: #FFF2E5;
    border-radius: 200px 200px 0 0;
    transition: all .4s ease-in-out;
}

.offering-section .two-columns .second-column:hover {
    box-shadow: 20px -20px 0 0 #000000;
    transition: all .4s ease-in-out;
}

.offering-section .two-columns .second-column:hover .btn-01 a {
    background: #FFF2E5;
    color: #000000;
    transition: all .4s ease-in-out;
}

.offering-section .two-columns .second-column .btn-01 a:hover {
    background: #000000;
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.offering-section .two-columns .second-column:hover .btn-01 a:focus,
.offering-section .two-columns .second-column:hover .btn-01 a:active {
    background: #000000;
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .offering-section .container {
        padding: 0;
    }

    .offering-section section {
        padding: 70px 0;
        border-radius: 15px;
        background-size: 50% 20%;
    }

    .offering-section section::after {
        min-height: 80px;
        background-size: 100% 20%;
    }

    .offering-section section p {
        padding: 10px 30px;
    }

    .offering-section section h6 {
        font-size: 14px;
    }

    .offering-section section figure {
        margin: 0;
    }

    .offering-section section .btn-01 a {
        margin-top: 10px;
        font-size: 12px;
    }

    .offering-section .two-columns {
        margin-top: 40px;
        flex-wrap: wrap;
        gap: 50px;
    }

    .offering-section .two-columns .first-column {
        margin-right: 15px;
        padding: 10px 0;
        max-width: 100%;
        min-height: auto;
        border-radius: 0 200px 200px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }

    .offering-section .two-columns .first-column figure {
        width: 60%;
    }

    .offering-section .two-columns .first-column article {
        width: 40%;
        text-align: left;
        padding: 15px;
    }

    .offering-section .two-columns .second-column {
        margin-left: 15px;
        padding: 10px 0;
        max-width: 100%;
        min-height: auto;
        border-radius: 200px 0 0 200px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .offering-section .two-columns .second-column figure {
        width: 60%;
    }

    .offering-section .two-columns .second-column article {
        width: 40%;
        text-align: left;
        padding: 15px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .offering-section section {
        padding: 150px 30px;
    }

    .offering-section .two-columns {
        gap: 30px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1200px) {
    .offering-section section {
        padding: 150px 30px;
    }
}

.legacy-section {
    padding: 50px 0 100px 0;
}

.legacy-section figure {
    margin: 50px 0;
    min-height: 400px;
    position: relative;
    z-index: 1;
}

.legacy-section article {
    margin: 0 auto 50px auto;
    max-width: 764px;
    text-align: center;
}

.legacy-js .item {
    padding: 0 15px;
}

@media only screen and (max-width:760px) {
    .legacy-section {
        padding: 30px 0;
    }

    .legacy-section figure {
        margin: 20px 0;
        min-height: 200px;
    }

    .legacy-section article {
        margin: 0 auto 20px auto;
        padding: 0 15px;
    }

    .legacy-js .item {
        padding: 0;
    }
}

.team-section {
    padding: 150px 0 100px 0;
    background: #395230 url(../img/graphic-top.png) repeat-x top;
    border-radius: 30px 30px 0 0;
    text-align: center;
}

.team-section h2 {
    text-transform: uppercase;
    color: #FFF2E5;
}

.team-section p {
    margin: 0 auto 50px auto;
    max-width: 740px;
    color: #FFFFFF;
}

.advisors-section {
    margin-bottom: -30px;
    padding: 50px 0 100px 0;
    background: #395230 url(../img/graphic-bot.png) repeat-x bottom;
    border-radius: 0 0 30px 30px;
    position: relative;
    text-align: center;
}

.advisors-section h2 {
    text-transform: uppercase;
    color: #FFF2E5;
}

.advisors-section p {
    margin: 0 auto 50px auto;
    max-width: 740px;
    color: #FFFFFF;
}

.team-card {
    margin: 0 auto;
    padding: 0;
    max-width: 450px;
    min-height: 580px;
    background-color: #FFFFFF;
    border-radius: 250px 250px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.team-card .content {
    padding: 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 580px;
    background-color: #FFF2E5;
    border-radius: 250px 250px 0 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -580px, 0);
    transform: translate3d(0, -580px, 0);
    transition: all .4s ease-in-out;
    
}

.team-card .content h5 {
    font-size: 30px;
}

.team-card .content p {
    font-size: 14px;
    color: #262626;
    text-align: left;
    margin: 0;
}

.team-card:hover .content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .team-section {
        padding: 50px 0;
        background-size: 50% 20%;
        border-radius: 15px 15px 0 0;
    }

    .team-section p {
        margin: 0 auto 20px auto;
    }

    .advisors-section {
        margin-bottom: -30px;
        padding: 0 0 50px 0;
        background-size: 50% 20%;
        border-radius: 0 0 15px 15px;
    }

    .advisors-section h2 {
        text-transform: uppercase;
        color: #FFF2E5;
    }

    .advisors-section p {
        margin: 0 auto 20px auto;
    }

    .team-card .content {
        padding: 57px 16px;
        margin-top: -131px;
    }

    .team-card .content h5 {
        font-size: 20px;
    }
    
    .team-card {
    margin: 0 auto;
    padding: 0;
    max-width: 322px;
    min-height: 418px;
    background-color: #FFFFFF;
    border-radius: 350px 350px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* padding: 11px; */
}
}

 @media only screen and (max-device-width: 480px) {
       .team-card {
    margin: 0 auto;
    padding: 0;
    max-width: 269px;
    min-height: 418px;
    background-color: #FFFFFF;
    border-radius: 350px 350px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* padding: 11px; */
}
    }

.cta-section {
    padding: 180px 0 150px 0;
    position: relative;
    z-index: 1;
}

.cta-section section {
    margin: 0 auto;
    padding: 70px 70px 30px 70px;
    max-width: 580px;
    background-color: #FFF2E5;
    border-radius: 300px 300px 0 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cta-section section h4 span {
    display: block;
}

@media only screen and (max-width:760px) {
    .cta-section {
        padding: 80px 0 50px 0;
    }

    .cta-section section {
        padding: 30px 50px 10px 50px;
    }

    .cta-section section h4 {
        font-size: 18px;
    }
}

.instagram-section {
    padding: 80px 0;
}

.instagram-section h4 {
    margin-bottom: 50px;
}

.instagram-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.instagram-wrapper .left {
    width: 41.7%;
}

.instagram-wrapper .right {
    width: 58%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.instagram-wrapper .right div {
    width: 31.4%;
}

.instagram-wrapper .right div.tall {
    width: 65.75%;
}


@media only screen and (max-width:760px) {
    .instagram-section {
        padding: 30px 0;
    }

    .instagram-section h4 {
        margin-bottom: 20px;
    }

    .instagram-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
    }

    .instagram-wrapper .left {
        width: 52.5%;
    }

    .instagram-wrapper .right {
        width: 47.5%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .instagram-wrapper .right div {
        width: 46.8%;
    }

    .instagram-wrapper .right div.tall {
        display: none;
    }

}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .instagram-wrapper .right div {
        width: 30%;
    }

    .instagram-wrapper .right div.tall {
        width: 64.5%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1270px) {
    .instagram-wrapper .right div {
        width: 31%;
    }

    .instagram-wrapper .right div.tall {
        width: 65%;
    }
}

/* 	-----------------------------------------------------
-------------------- Footer Styles ------------------
----------------------------------------------------- */
.footer-section {
    background-color: #395230;
    text-align: center;
}

.footer-section .logo {
    padding: 40px 0 20px 0;
}

.footer-section .social {
   
    border: 1px solid #707070;
    border-width: 1px 0;
}

.footer-section .social ul {
    margin: 15px;
    padding: 0;
    list-style: none;
}

.footer-section .social ul li {
    margin: 0 10px;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-section .social ul li img {
    height: 16px;
}

.footer-section .links {
    padding: 20px 0;
}

.footer-section .links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.footer-section .links ul li {
    margin: 0 15px;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #F3E6D9;
    text-transform: uppercase;
}

.footer-section .links ul a {
    color: #F3E6D9;
    display: block;
    transition: all .4s ease-in-out;
}

.footer-section .links ul li a:hover {
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.footer-section .copyright {
    padding: 20px 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #F3E6D9;
}

.footer-section .copyright a {
    color: #F3E6D9;
    transition: all .4s ease-in-out;
}

.footer-section .copyright a:hover {
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .footer-section .logo {
        padding: 20px 0 15px 0;
    }

    .footer-section .social {
        padding: 15px 15px 10px 15px;
    }

    .footer-section .links {
        padding: 15px;
    }

    .footer-section .links ul li {
        margin: 5px;
        font-size: 12px;
    }

    .footer-section .copyright {
        padding: 15px;
        font-size: 10px;
    }

    .footer-section .copyright span {
        display: block;
    }
}

/* 	-----------------------------------------------------
------------------ Go to top Styles -----------------
----------------------------------------------------- */
.cd-top {
    display: inline-block;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #395230 url(../fonts/cd-top-arrow.svg) no-repeat center;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    visibility: hidden;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: 1;
}

.no-touch .cd-top:hover {
    opacity: 1;
}

@media only screen and (max-width:760px) {
    .cd-top {
        display: none;
    }
}

.four-difference-section {
    padding: 100px 0;
    background-color: #F3E6D9;
}

.four-difference-section img {
    border-radius: 20px;
}

.four-difference-section .difference-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.four-difference-section .difference-wrapper .difference {
    position: relative;
    width: 48.7%;
}

.four-difference-section .difference article {
    width: 100%;
    height: 100%;
    background-color: rgba(57, 82, 48, 0.9);
    border-radius: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.four-difference-section .difference article h6 {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
}

.four-difference-section .difference article p {
    color: #FFFFFF;
    font-size: 18px;
    padding: 10px 15%;
}

.four-difference-section .difference:hover article {
    opacity: 1;
    transition: all .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .four-difference-section {
        padding: 20px 0;
        background-color: #F3E6D9;
    }

    .four-difference-section img {
        border-radius: 10px;
    }

    .four-difference-section .item {
        border-radius: 10px;
        overflow: hidden;
    }

    .four-difference-section article {
        background-color: rgba(57, 82, 48, 0.9);
        border-radius: 10px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .four-difference-section article p {
        font-size: 14px;
        padding: 10px 0;
    }
}

.number-section {
    padding: 170px 0;
    background: #395230 url(../img/graphic-top.png) repeat-x top;
    position: relative;
    z-index: 1;
}

.number-section::after {
    content: "";
    width: 100%;
    min-height: 283px;
    background: #395230 url(../img/graphic-bot.png) repeat-x bottom;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.number-section section {
    height: 620px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.number-section section::-webkit-scrollbar {
    display: none;
}

.number-section .number-one,
.number-section .number-two,
.number-section .number-three,
.number-section .number-four,
.number-section .number-five,
.number-section .number-six,
.number-section .number-seven {
    height: 620px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.number-section aside {
    width: 50%;
    padding: 160px 0;
}

.number-section aside h2 {
    color: #FFFFFF;
    padding: 10px 0 10px 70px;
    position: relative;
}

.number-section aside h2 span {
    display: block;
}

.number-section aside h2::before {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #FFFFFF;
    position: absolute;
    left: 0;
    top: 50%;
}

.number-section article {
    width: 50%;
}

.number-section p {
    color: #FFFFFF;
    font-size: 16px;
}

.content-one {
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
}

.content-one .image {
    width: 340px;
    margin-left: 40px;
}

.content-one .content {
    width: calc(100% - 380px);
    padding-left: 30px;
}

.content-one .number {
    position: absolute;
    left: 0;
    bottom: -70px;
    font-family: "Tenor Sans", sans-serif;
    font-size: 130px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
}

.content-two {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    position: relative;
    padding-top: 70px;
}

.content-two .image {
    max-width: 536px;
}

.content-two .content {
    max-width: 536px;
}

.content-two .number {
    position: absolute;
    right: 130px;
    top: 0px;
    font-family: "Tenor Sans", sans-serif;
    font-size: 130px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
}

.content-three {
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
}

.content-three .image {
    width: 330px;
}

.content-three .content {
    width: calc(100% - 330px);
    padding-left: 30px;
    padding-right: 30px;
}

.content-three .number {
    position: absolute;
    left: -75px;
    bottom: 10px;
    font-family: "Tenor Sans", sans-serif;
    font-size: 130px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
}

.content-four {
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
}

.content-four .image {
    width: 330px;
}

.content-four .content {
    width: calc(100% - 330px);
    padding-left: 30px;
    padding-right: 70px;
    padding-top: 150px;
}

.content-four .number {
    position: absolute;
    left: 255px;
    top: 10px;
    font-family: "Tenor Sans", sans-serif;
    font-size: 130px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
}

.content-five {
    display: flex;
    justify-content: flex-end;
    align-items: start;
    flex-direction: column;
    position: relative;
}

.content-five .image {
    width: 100%;
    text-align: right;
}

.content-five .content {
    padding-left: 45%;
    padding-top: 10px;
    margin-right: 30px;
}

.content-five .number {
    position: absolute;
    left: 100px;
    bottom: 110px;
    font-family: "Tenor Sans", sans-serif;
    font-size: 130px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
}

.content-six {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    position: relative;
    padding-top: 70px;
}

.content-six .image {
    max-width: 540px;
}

.content-six .content {
    max-width: 540px;
    padding: 0 20%;
}

.content-six .number {
    position: absolute;
    right: 40px;
    top: 0px;
    font-family: "Tenor Sans", sans-serif;
    font-size: 130px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
}

.content-seven {
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
}

.content-seven .image {
    width: 340px;
    margin-left: 40px;
}

.content-seven .content {
    width: calc(100% - 380px);
    padding-left: 30px;
}

.content-seven .number {
    position: absolute;
    left: 0;
    bottom: -70px;
    font-family: "Tenor Sans", sans-serif;
    font-size: 130px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
}

@media only screen and (max-width:760px) {
    .number-section {
        padding: 70px 0;
        background-size: 50% 20%;
    }

    .number-section::after {
        background-size: 50% 20%;
    }

    .number-section section {
        height: 620px;
    }

    .number-section .number-one,
    .number-section .number-two,
    .number-section .number-three,
    .number-section .number-four,
    .number-section .number-five,
    .number-section .number-six,
    .number-section .number-seven {
        height: auto;
        border-left: none;
        flex-wrap: wrap;
    }

    .number-section aside {
        width: 100%;
        padding: 0;
    }

    .number-section aside h2 {
        padding: 0;
        text-align: center;
    }

    .number-section aside h2::before {
        display: none;
    }

    .number-section article {
        width: 100%;
    }

    .number-section p {
        font-size: 12px;
    }

    .content-one {
        padding: 30px 30px 60px 30px;
    }

    .content-one .image {
        width: 50%;
        margin-left: 0;
    }

    .content-one .content {
        width: 50%;
        padding-left: 15px;
    }

    .content-one .number {
        left: 10px;
        bottom: 50px;
        font-size: 40px;
    }

    .content-two {
        padding: 30px 30px 60px 30px;
    }

    .content-two .image {
        max-width: 100%;
    }

    .content-two .content {
        max-width: 100%;
    }

    .content-two .number {
        right: 30px;
        top: 10px;
        font-size: 40px;
    }

    .content-three {
        padding: 30px 30px 60px 30px;
    }

    .content-three .image {
        width: 50%;
    }

    .content-three .content {
        width: 50%;
        padding-left: 15px;
        padding-right: 0;
    }

    .content-three .number {
        position: absolute;
        left: 5px;
        bottom: 150px;
        font-size: 40px;
    }

    .content-four {
        padding: 30px 30px 60px 30px;
    }

    .content-four .image {
        width: 50%;
    }

    .content-four .content {
        width: 50%;
        padding-left: 15px;
        padding-right: 0;
        padding-top: 0px;
    }

    .content-four .number {
        position: absolute;
        left: 40%;
        top: 10px;
        font-size: 40px;
    }

    .content-five {
        padding: 30px 30px 60px 30px;
    }

    .content-five .image {
        width: 100%;
        text-align: center;
    }

    .content-five .content {
        width: 100%;
        padding-left: 30px;
        padding-top: 0;
        margin-right: 0;
    }

    .content-five .number {
        position: absolute;
        left: 10px;
        bottom: 160px;
        font-size: 40px;
    }

    .content-six {
        padding: 30px 30px 60px 30px;
    }

    .content-six .image {
        max-width: 100%;
    }

    .content-six .content {
        max-width: 100%;
        padding: 0 30px;
    }

    .content-six .number {
        position: absolute;
        right: 40px;
        top: 10px;
        font-size: 40px;
    }

    .content-seven {
        padding: 30px 30px 60px 30px;
    }

    .content-seven .image {
        width: 50%;
        margin-left: 0;
    }

    .content-seven .content {
        width: 50%;
        padding-left: 15px;
    }

    .content-seven .number {
        left: 10px;
        bottom: 50px;
        font-size: 40px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {

    .number-section .number-one,
    .number-section .number-two,
    .number-section .number-three,
    .number-section .number-four,
    .number-section .number-five,
    .number-section .number-six,
    .number-section .number-seven {
        height: auto;
        border-left: none;
        flex-wrap: wrap;
    }

    .number-section aside {
        width: 100%;
        padding: 0;
    }

    .number-section aside h2 {
        padding: 0;
        text-align: center;
    }

    .number-section aside h2::before {
        display: none;
    }

    .number-section article {
        width: 100%;
    }

    .content-one {
        padding: 30px 30px 100px 30px;
    }

    .content-one .image {
        width: 50%;
    }

    .content-one .content {
        width: 50%;
    }

    .content-one .number {
        bottom: 70px;
    }

    .content-two {
        padding: 30px 30px 100px 30px;
        flex-direction: row;
    }

    .content-two .image {
        max-width: 50%;
    }

    .content-two .content {
        max-width: 50%;
        padding-left: 30px;
    }

    .content-two .number {
        right: auto;
        left: 60px;
        top: -40px;
    }

    .content-three {
        padding: 30px 30px 100px 30px;
    }

    .content-three .image {
        width: 50%;
    }

    .content-three .content {
        width: 50%;
    }

    .content-three .number {
        left: 0;
        bottom: 100px;
    }

    .content-four {
        padding: 30px 30px 100px 30px;
    }

    .content-four .image {
        width: 50%;
    }

    .content-four .content {
        width: 50%;
    }

    .content-four .number {
        position: absolute;
        left: 35%;
        top: 10px;
    }

    .content-five {
        padding: 30px 30px 100px 30px;
        flex-direction: row;
    }

    .content-five .image {
        width: 50%;
        text-align: center;
    }

    .content-five .content {
        width: 50%;
        padding-left: 30px;
    }

    .content-five .number {
        position: absolute;
        left: 10px;
        bottom: 60px;
    }

    .content-six {
        padding: 30px 30px 100px 30px;
        flex-direction: row;
    }

    .content-six .image {
        max-width: 50%;
    }

    .content-six .content {
        max-width: 50%;
        padding: 0 30px;
    }

    .content-six .number {
        position: absolute;
        right: 40%;
        top: 50%;
    }

    .content-seven {
        padding: 30px 30px 100px 30px;
    }

    .content-seven .image {
        width: 50%;
    }

    .content-seven .content {
        width: 50%;
    }

    .content-seven .number {
        bottom: 70px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1246px) {
    .content-four .content {
        padding-right: 0;
    }

    .content-five .number {
        left: 50px;
        bottom: 150px;
    }
}

.network-section {
    padding: 80px 0;
    background-color: #F3E6D9;
    text-align: center;
}

.network-section p {
    margin: 0 auto 70px auto;
    max-width: 680px;
}

.network-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

@media only screen and (max-width:760px) {
    .network-section {
        padding: 30px 0;
    }

    .network-section p {
        margin: 0 auto 20px auto;
        padding: 10px 10%;
    }

    .network-section ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .network-section ul li {
        margin: 0;
        width: 30%;
    }
}

.min-height-section {
    min-height: 500px;
}

.cms-section {
    min-height: 800px;
    padding: 130px 0;
    background-color: #FFFFFF;
}

.cms-section .container {
    max-width: 1020px;
}

.cms-section h4 {
    margin-bottom: 30px;
}

.cms-section p {
    font-size: 16px;
}

.d-block {
    display: block;
}

@media only screen and (max-width:760px) {
    .cms-section {
        min-height: inherit;
        padding: 80px 0 30px 0;
    }

    .cms-section .container {
        padding: 0 35px;
    }

    .cms-section h4 {
        margin-bottom: 0px;
    }

    .cms-section p {
        font-size: 14px;
    }
}

@media only screen and (min-width:761px) and (max-width:1080px) {
    .cms-section .container {
        padding: 0 50px;
    }
}

.contact-section {
    padding: 130px 0;
    background-color: #FFF2E5;
}

.contact-page .c-hamburger span,
.cms-page .c-hamburger span {
    background: url(../img/skicky-bar.svg) no-repeat center;
}

.contact-page .c-hamburger.is-active span,
.cms-page .c-hamburger.is-active span {
    background: url(../img/menu-close.svg) no-repeat center;
}

.contact-page .logo,
.cms-page .logo {
    opacity: 1 !important;
}

.contact-section .container {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.contact-section .container article {
    width: 40%;
    padding: 0 100px;
}

.contact-section .container article ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-section .container article ul li {
    margin: 0 0 30px 0;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    gap: 15px;
}

.contact-section .container article ul li img {
    margin-top: 3px;
}

.contact-section .container aside {
    width: 60%;
    padding: 0 100px;
}

.contact-section .container aside h5 {
    text-transform: uppercase;
    padding: 0;
    margin-bottom: 50px;
}

.contact-section .field {
    margin-top: 20px;
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section input[type="tel"],
.contact-section select,
.contact-section textarea {
    margin: 0;
    padding: 10px;
    width: 100%;
    height: auto;
    background: none;
    border: none;
    border-bottom: 1px solid #707070;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
    color: #262626;
}

.contact-section select {
    background: url(../img/dd-arrow2.png) no-repeat right;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-section textarea {
    height: 80px;
    overflow: auto;
    resize: none;
}

.contact-section input[type="submit"] {
    margin: 24px 0 0 0;
    padding: 15px;
    width: 100%;
    max-width: 300px;
    height: auto;
    background: none;
    border: 1px solid #262626;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #262626;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.contact-section input[type="submit"]:hover,
.contact-section input[type="submit"]:active,
.contact-section input[type="submit"]:focus {
    background: #000000;
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.contact-section ::placeholder {
    color: #262626;
    opacity: 1;
}

.contact-section ::-ms-input-placeholder {
    color: #262626;
}

.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section input[type="tel"]:focus,
.contact-section select:focus,
.contact-section textarea:focus {
    border-bottom: 1px solid #000000;
    color: #000000;
    transition: all .4s ease-in-out;
}

.input-group>.intl-tel-input.allow-dropdown {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
}

.input-group>.intl-tel-input.allow-dropdown>.flag-container {
    z-index: 4;
}

.iti-flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags.png");
}

.intl-tel-input {
    position: relative;
    display: block;
}

.intl-tel-input.separate-dial-code .selected-flag {
    background-color: transparent !important;
    border-radius: 0;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
    color: #262626;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
    .iti-flag {
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags@2x.png");
    }
}

.enquire-form .intl-tel-input.separate-dial-code .selected-dial-code {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.4;
    color: #FFFFFF;
}

.enquire-form .intl-tel-input .selected-flag .iti-arrow {
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #FFFFFF;
}

@media only screen and (max-width:760px) {
    .contact-section {
        padding: 100px 0;
    }

    .contact-section .container {
        flex-wrap: wrap;
    }

    .contact-section .container article {
        width: 100%;
        padding: 0;
    }

    .contact-section .container article ul li {
        margin: 0 0 10px 0;
        font-size: 14px;
    }

    .contact-section .container aside {
        width: 100%;
        padding: 20px 0;
    }

    .contact-section .container aside h5 {
        margin-bottom: 20px;
    }

    .contact-section .field {
        margin-top: 10px;
    }

    .contact-section input[type="submit"] {
        max-width: 200px;
    }
}

@media only screen and (min-width:761px) and (max-width:1080px) {
    .contact-section .container article,
    .contact-section .container aside {
        padding: 0 50px;
    }
}

.thank-you-section {
    padding: 80px 0;
    background-color: #FFF2E5;
    text-align: center;
}

.thank-you-section h3 {
    text-transform: uppercase;
}

.thank-you-section h6 {
    padding: 0;
}

@media only screen and (max-width:760px) {
    .thank-you-section {
        padding: 40px 15px;
        border-radius: 15px 15px 0 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .thank-you-section {
        padding: 80px 15px;
    }
}