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

:root {
    --primary-color: #d39b5c;
    --first-font: 'Montserrat', sans-serif;
    --second-font: 'Bebas Neue', cursive;
    --third-font: 'Myriad Pro';
}

*,
 :after,
 :before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    text-decoration: inherit;
    vertical-align: inherit;
}

.fp-scroller {
    overflow: hidden;
}

.second-section {
    height: auto !important;
}

html {
    overflow-x: hidden;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
em,
strong,
button,
blockquote,
small,
strike,
sub,
sup,
tt,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--black);
    font-family: var(--primary-font);
    font-size: 17px;
    line-height: 1.2;
    background-color: #f7f7f7;
    overflow-x: hidden;
}

svg,
img {
    max-width: 100%;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    outline: none;
}

a {
    color: var(--navy);
}

a,
a:hover,
a:focus,
button,
button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

 ::-webkit-inner-spin-button,
 ::-webkit-outer-spin-button {
    height: auto;
}

 ::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

 :-moz-ui-invalid {
    box-shadow: none;
}

svg:not(:root) {
    overflow: hidden;
}

 ::selection {
    background: rgba(34, 64, 102, 0.5);
    color: var(--l-green);
}

 ::-moz-selection {
    background: var(--l-green);
    color: var(--white);
}

html {
    -webkit-text-size-adjust: 100%;
    outline: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section {
    min-height: 100vh;
    height: auto !important;
    position: relative;
}

.cover-img {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.right-sticky-menu {
    position: fixed;
    width: 4.948vw;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.phone-link,
.down-arrow {
    height: 4.948vw;
    width: 4.948vw;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-link img,
.down-arrow img {
    width: 1.354vw;
}

#moveUp.down-arrow img {
    transform: rotate(180deg);
}

.right-sticky-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right-sticky-menu ul li {
    margin: 10px 0;
}

.right-sticky-menu ul li svg {
    width: 1.250vw;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.page-load-title {
    font-size: 1.198vw;
    letter-spacing: 0.469vw;
    color: #ffffff;
    font-weight: 400;
    font-family: var(--first-font);
    text-align: center;
    text-transform: uppercase;
}

.page-loader-logo img {
    width: 27.604vw;
}

.page-load-mid-img img {
    width: 14.948vw;
}

.section.active .section-text {
    left: 0;
}

.section.active .section-text.right {
    left: unset;
    right: 0;
}

.section-text {
    max-width: 38.542vw;
    width: 100%;
    background: url(../images/text-bg.png);
    background-size: cover;
    padding: 4.688vw 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -38.542vw;
    transition: 1s;
}

.section-text.right {
    right: -38.542vw;
    left: unset;
}

.section-text .section-title {
    font-size: 4.427vw;
    line-height: 4.792vw;
    color: #ffffff;
    font-weight: 400;
    font-family: var(--second-font);
}

.section-content {
    max-width: 22.917vw;
    width: 100%;
    margin: auto;
}

.section-content p {
    font-size: 0.729vw;
    line-height: 1.406vw;
    color: #ffffff;
    font-family: var(--third-font);
}

.section-center-text .section-title {
    font-size: 15.104vw;
    color: #f3f3f3;
    font-weight: 400;
    font-family: var(--second-font);
    text-align: center;
}

.section-main-title {
    text-align: center;
    font-size: 2.188vw;
    color: #ffffff;
    font-weight: 400;
    font-family: var(--second-font);
    text-align: center;
}

.section.active .section-center-text {
    opacity: 1;
    transform: translateY(0);
}

.section-center-text {
    position: relative;
    z-index: 1;
    transform: translateY(50%);
    opacity: 0;
    transition: 1s;
}

.Rectangle_554_copy_3 {
    border-width: 1px;
    border-color: rgb(0, 0, 0);
    border-style: solid;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: -10px;
    top: 2307px;
    width: 1936px;
    height: 1079px;
    z-index: 191;
}

.second-section {
    background-image: url(../images/wave.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section-grid {
    display: flex;
    height: 100%;
}

.section-grid .grid-left,
.section-grid .grid-right {
    flex: 1;
    position: relative;
}

.section-grid .grid-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.broch-section {
    background-color: #e7e7e8;
    min-height: 48.958vw;
    width: 47.083vw;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    margin: auto;
    padding: 20px 0;
}

.broch-content {
    max-width: 19.792vw;
    width: 100%;
    display: none;
}

.broch-content.full-size {
    max-width: 70%;
    margin-left: auto;
    margin-right: 20px;
    height: 48.958vw;
    overflow: auto;
}

.broch-content.full-size::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.broch-content.full-size::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

.broch-content.full-size::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 2px solid #555555;
}

.broch-content.current {
    display: block;
}

.broch-content p {
    font-size: 1.2vw;
    opacity: 0.6;
    margin-bottom: 1.042vw;
    font-family: var(--third-font);
}

.broch-content span {
    font-size: 1.8vw;
    color: #997d78;
    font-family: var(--third-font);
    display: inline-block;
    margin-bottom: 2.604vw;
}

.btn-broch {
    width: 18.542vw;
    height: 4.271vw;
    background-color: #d39b5c;
    font-size: 1.406vw;
    line-height: 1.563vw;
    color: #fefefe;
    font-weight: 400;
    font-family: var(--second-font);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-wave {
    width: 10.938vw;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.left-wave img {
    width: 100%;
}

.btn-links-group {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.btn-group {
    font-size: 1.510vw;
    color: #ffffff;
    font-weight: 400;
    font-family: var(--second-font);
    width: 12.135vw;
    height: 3.281vw;
    background-color: #d39b5c;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.604vw;
}

.btn-group:last-child {
    margin-bottom: 0;
}

.footer-grid {
    height: 100%;
    display: flex;
    background: var(--primary-color);
}

.footer-grid-left,
.footer-grid-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    max-width: 22.917vw;
    width: 100%;
    margin: auto;
}

.footer-content img {
    width: 14.583vw;
    margin-bottom: 1.042vw;
}

.footer-content p {
    font-family: var(--third-font);
    font-size: 0.781vw;
    line-height: 1.406vw;
    color: #ffffff;
}

.footer-grid-right {
    overflow: hidden;
    position: relative;
}

.footer-grid-right img {
    position: absolute;
    height: 101%;
    width: 100%;
    object-fit: cover;
}

.footer-grid-right form {
    position: relative;
}

.footer-grid-right form .form-group {
    margin-bottom: 1.042vw;
}

.footer-grid-right form input {
    height: 3.021vw;
    width: 23.073vw;
    background-color: #ffffff;
    border: 0;
    font-size: 0.938vw;
    color: #282828;
    text-indent: 20px;
    font-family: var(--third-font);
}

.footer-grid-right form textarea {
    width: 23.073vw;
    height: 14.896vw;
    border: 0;
    font-size: 0.938vw;
    color: #282828;
    padding: 0.938vw;
    font-family: var(--third-font);
}

.footer-grid-right form button {
    width: 9.583vw;
    height: 2.813vw;
    background-color: #282828;
    font-size: 0.938vw;
    color: #ffffff;
    font-family: var(--third-font);
    border: 0;
}

.broch-img-grid {
    display: flex;
    flex-wrap: wrap;
}

.broch-img-grid .broch-item {
    width: calc(33.33% - 20px);
    margin: 0 10px 20px 10px;
}

.broch-img-grid .broch-item img {
    width: 100%;
}

@media (max-width: 991px) {
    .section-text {
        max-width: 50.542vw;
        padding: 6.688vw 0;
    }
    .section-content {
        max-width: 32.917vw;
    }
    .section-text .section-title {
        font-size: 6.427vw;
        line-height: 5.792vw;
    }
    .section-content p {
        font-size: 1.6vw;
        line-height: 2vw;
    }
    .broch-content p {
        font-size: 1.6vw;
    }
    .broch-content span {
        font-size: 2.4vw;
    }
    .broch-content {
        max-width: 23.792vw;
    }
    .btn-broch {
        width: 20.542vw;
        height: 5.271vw;
    }
    .btn-broch {
        width: 20.542vw;
        height: 5.271vw;
        background-color: #d39b5c;
        font-size: 2vw;
    }
}

@media (max-width: 767px) {
    .broch-content.full-size {
        max-width: 90%;
        width: 100%;
        margin: auto;
    }
    .section-text {
        max-width: 80%;
        padding: 6.688vw 0;
        margin: auto;
        left: 0;
        right: 0;
    }
    .section-content {
        max-width: 80%;
        text-align: center;
    }
    .section-text .section-title {
        font-size: 50px;
        line-height: 1;
    }
    .section-content p {
        font-size: 14px;
        line-height: 1;
    }
    .section-grid {
        display: flex;
        height: 100%;
        flex-direction: column;
    }
    .broch-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .broch-content {
        max-width: 90%;
    }
    .broch-section {
        background-color: #e7e7e8;
        height: 90%;
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        transform: translateY(-50%);
        position: relative;
        margin: auto;
    }
    .broch-content span {
        font-size: 16px;
    }
    .btn-broch {
        width: 181px;
        height: 40px;
        background-color: #d39b5c;
        font-size: 16px;
    }
    .btn-group {
        font-size: 14px;
        color: #ffffff;
        font-weight: 400;
        font-family: var(--second-font);
        width: 100px;
        height: 30px;
    }
    .btn-links-group {
        position: relative;
        top: 0;
        transform: unset;
        z-index: 1;
        display: flex;
        flex-direction: column;
    }
    .section-grid .grid-left {
        flex: 1.5;
    }
    .section-grid .grid-right {
        flex: 0.5;
        display: none;
    }
    .section.active .section-text.right {
        left: 0;
        right: 0;
    }
    .footer-grid {
        flex-direction: column;
    }
    .footer-grid-left {
        flex: 0.5;
    }
    .footer-content {
        max-width: 80%;
        width: 100%;
        margin: auto;
        text-align: center;
    }
    .footer-content p {
        font-family: var(--third-font);
        font-size: 12px;
        line-height: 1;
        color: #ffffff;
    }
    .footer-content img {
        width: 100px;
        margin: auto;
        margin-bottom: 20px;
    }
    .footer-grid-right form input {
        height: 30px;
        width: 250px;
        background-color: #ffffff;
        border: 0;
        font-size: 12px;
        color: #282828;
        text-indent: 20px;
        font-family: var(--third-font);
    }
    .footer-grid-right form textarea {
        width: 250px;
        height: 80px;
        border: 0;
        font-size: 12px;
        color: #282828;
        padding: 10px 20px;
        font-family: var(--third-font);
    }
    .section-text {
        left: 0 !important;
        right: 0 !important;
    }
    .footer-grid-right form button {
        width: 100px;
        height: 30px;
        background-color: #282828;
        font-size: 14px;
    }
    .right-sticky-menu {
        width: 50px;
    }
    .phone-link,
    .down-arrow {
        width: 50px;
        height: 50px;
    }
    .phone-link img,
    .down-arrow img {
        width: 18px;
    }
    .right-sticky-menu ul li svg {
        width: 20px;
    }
    .page-load-mid-img img {
        width: 60.948vw;
    }
    .page-loader-logo img {
        width: 60.604vw;
    }
    .page-load-title {
        font-size: 14px;
        letter-spacing: 2px;
    }
}

@media (max-width: 420px) {
    .broch-img-grid .broch-item {
        width: calc(50% - 20px);
        margin: 0 10px 20px 10px;
    }
}