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

body {
    color: #1c1c1c;
    background-color: #fcfcfc;
    font-size: 16px;
    font-weight: 200;
    font-family: "Oswald", sans-serif;
    letter-spacing: .5px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

.container,
.hero .hero__caption {
    max-width: 1440px;
    padding: 0 32px;
    margin: 0 auto;
}

.section__pt {
    padding-top: 96px;
}

.section__pb {
    padding-bottom: 96px;
}

.section__row:not(:last-child) {
    margin-bottom: 64px;
}

.section__header > *:not(:last-child) {
    margin-bottom: 16px;
}

.section__title {
    font-size: 48px;
}

.section__subtitle {
    /* opacity: .5; */
}

.section__desc > *:not(:last-child) {
    margin-bottom: 32px;
}

.section__desc ul,
.section__desc ol {
    padding-left: 20px;
}

.section__desc li:not(:last-child) {
    margin-bottom: 8px;
}

.section__btn {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 400;
    gap: 16px;
}

.section__btn--primary,
.section__btn--secondary {
    padding: 16px 32px;
}

.section__btn--primary.section__btn--dark {
    border: 2px solid #e1cfc2; 
    background-color: #e1cfc2;
    color: #fcfcfc;
}

.section__btn--primary.section__btn--blue {
    border: 2px solid #C2D4E1; 
    background-color: #C2D4E1;
    color: #fcfcfc;
}

.section__btn--primary.section__btn--light {
    border: 2px solid #fcfcfc;
    background-color: #fcfcfc;
    color: #1c1c1c;
}

.section__btn--secondary.section__btn--dark {
    border: 2px solid #e1cfc2;
    background-color: transparent;
    color: #e1cfc2;
}

.section__btn--secondary.section__btn--light {
    border: 2px solid #fcfcfc;
    background-color: transparent;
    color: #fcfcfc;
}

.section__btn > img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
}

.section__btn--primary.section__btn--dark > img,
.section__btn--primary.section__btn--blue > img,
.section__btn--secondary.section__btn--light > img {
    filter: brightness(0%) invert(100%);
}

.header {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    color: #fcfcfc;
}

.header .header__columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.header .header__logo > img {
    width: auto;
    height: 64px;
    filter: brightness(0%) invert(100%);
}

.header .header__nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 64px;
}

.header .header__nav li.header__btn > a {
    border: 2px solid #C2D4E1; 
    background-color: #C2D4E1;
    color: #fcfcfc;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 400;
    gap: 16px;
}

.header .header__nav a {
    text-transform: uppercase;
    font-weight: 400;
}

.header .header__phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 400;
}

.header .header__phone > img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0%) invert(100%);
}

.hero .hero__img {
    position: relative;
}

.hero .hero__img::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(28, 28, 28, .5);
    /* background: linear-gradient(to top, rgba(225, 207, 194, 0) 0%, rgba(225, 207, 194, 1) 100%); */
}

.hero .hero__img::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    background-color: rgba(225, 207, 194, .5);
    /* background: linear-gradient(to bottom, rgba(225, 207, 194, 0) 0%, rgba(225, 207, 194, 1) 100%); */
}

.hero .hero__img > img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.hero .hero__caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 300;
    left: 0;
    right: 0;
    text-align: center;
    color: #fcfcfc;
}

.hero .hero__caption > *:not(:last-child) {
    margin-bottom: 32px;
}

.hero .hero__title {
    font-size: 64px;
}

.hero .hero__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.hero .hero__suptitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}

.about-us .about-us__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.about-us .about-us__column {
    width: 50%;
    padding: 16px;
}

.about-us .about-us__img {
    padding-left: 32px;
    padding-bottom: 32px;
    position: relative;
}

.about-us .about-us__img::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 50%;
    background-color: #e1cfc2;
}

.about-us .about-us__img > img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 100;
}

.about-us .about-us__row:not(:last-child) {
    margin-bottom: 32px;
}

.offer .section__header {
    text-align: center;
}

.offer .offer__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -24px -16px;
}

.offer .offer__column {
    width: 25%;
    padding: 24px 16px;
}

.offer .offer__img > img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

.offer .offer__caption {
    text-align: center;
    margin-top: 24px;
}

.blog .section__header {
    text-align: center;
}

.blog .blog__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.blog .blog__column {
    width: 33.3333%;
    padding: 16px;
}

.blog .blog__img > *:not(:last-child) {
    margin-bottom: 24px;
}

.blog .blog__img > a {
    display: block;
    overflow: hidden;
}

.blog .blog__img > a > img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}

.blog .blog__caption > *:not(:last-child) {
    margin-bottom: 16px;
}

.blog .blog__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.blog .blog__tags > * {
    display: inline-block;
    padding: 8px 16px;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid rgba(0,0,0, .5);
}

.call-to-action {
    background-color: #C2D4E1;
    text-align: center;
    color: #fcfcfc;
}

.call-to-action .section__row:not(:last-child) {
    margin-bottom: 32px;
}

.call-to-action .section__desc {
    width: 50%;
    margin: 0 auto;
}

.faq .section__header {
    text-align: center;
}

.faq .accordion {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width : 768px) {
    .faq .accordion {
        width: 100%;
    }
}

.faq .accordion .accordion__desc {
    margin-top: 16px;
    display: none;
}

.faq .accordion .accordion__desc > *:not(:last-child) {
    margin-bottom: 16px;
}

.faq [data-accordion] {
    line-height: 1.5;
    background-color: transparent;
    border-bottom: 1px solid #1c1c1c;
    padding: 16px 0;
}

.faq [data-accordion]:not(:last-child) {
    margin-bottom: 16px;
}

.faq [data-control],
.faq [data-content] > * {
    border-bottom: 0;
    padding: 0;
}

.faq [data-content] [data-accordion] {
    border: 0;
    padding: 0;
}

.faq [data-accordion] [data-control] {
    position: relative;
    padding-right: 40px;
}

.faq [data-accordion] > [data-control]:after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    height: 20px;
    width: 20px;
    background: url('../img/down.png') center center no-repeat;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all .5s;
}

.faq [data-accordion].open > [data-control]:after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}

.contact-us .contact-us__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.contact-us .contact-us__column {
    width: 50%;
    padding: 16px;
}

.contact-us .contact-us__row:not(:last-child) {
    margin-bottom: 32px;
}

.contact-us .contact-us__form p:not(:last-of-type) {
    margin-bottom: 16px;
}

.contact-us .contact-us__form input[type="text"],
.contact-us .contact-us__form input[type="email"],
.contact-us .contact-us__form input[type="tel"],
.contact-us .contact-us__form textarea {
    padding: 16px 0;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #1c1c1c;
    width: 100%;
    display: block;
    font-family: "Oswald", sans-serif;
    font-weight: 200;
    font-size: 16px;
    color: #1C1C1C;
}

.contact-us .contact-us__form textarea {
    height: 128px;
}

.contact-us .contact-us__form input[type="text"]::placeholder,
.contact-us .contact-us__form input[type="email"]::placeholder,
.contact-us .contact-us__form input[type="tel"]::placeholder,
.contact-us .contact-us__form textarea::placeholder {
    font-family: "Oswald", sans-serif;
    font-weight: 200;
    font-size: 16px;
    color: #1C1C1C;
}

.contact-us .contact-us__form input[type="submit"] {
    font-size: 16px;
    margin-top: 16px;
    display: inline-flex;
    padding: 16px 32px;
    font-weight: 400;
    line-height: 1.5;
    border: 2px solid #e1cfc2;
    background-color: #e1cfc2;
    color: #fcfcfc;
    transition: all .5s;
}

.contact-us .contact-us__form .wpcf7-response-output {
    margin: 32px 0 0 0;
    padding: 16px;
    border: 2px solid #00a0d2;
    font-size: 14px;
}

.contact-us .contact-us__form .wpcf7-not-valid-tip {
    font-size: 12px;
}

.contact-us .contact-us__form .wpcf7-list-item {
    display: block;
    margin: 16px 0 0 0;
}

.contact-us .contact-us__form .wpcf7-list-item a {
    margin: 16px 0 0 0;
}

.contact-us .contact-us__form a {
    text-decoration: underline;
    transition: all .5s;
}

.contact-us .contact-us__form a:hover {
    color: #CCBA78;
}

.contact-us .contact-us__details ul {
    list-style-type: none;
}

.contact-us .contact-us__details li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-us .contact-us__details li:not(:last-child) {
    margin-bottom: 16px;
}

.contact-us .contact-us__details img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center;
}

.hot-menu {
    background-color: #e1cfc2;
    color: #fcfcfc;
}

.hot-menu .hot-menu__columns {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.hot-menu .hot-menu__logo > img {
    width: auto;
    height: 64px;
    filter: brightness(0%) invert(100%);
}

.hot-menu .hot-menu__row:not(:last-child) {
    margin-bottom: 32px;
}

.hot-menu .hot-menu__details ul {
    list-style-type: none;
}

.hot-menu .hot-menu__details li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hot-menu .hot-menu__details li:not(:last-child) {
    margin-bottom: 16px;
}

.hot-menu .hot-menu__details img {
    filter: brightness(0%) invert(100%);
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
}

.hot-menu .hot-menu__nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.hot-menu .hot-menu__nav a {
    text-transform: uppercase;
}

.hot-menu .hot-menu__socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hot-menu .hot-menu__socials img {
    filter: brightness(0%) invert(100%);
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center; 
}

.footer {
    padding: 16px 0;
    font-size: 14px;
}

.footer .footer__columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}