html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, 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, time, mark, audio, video { margin: 0; padding: 0; font-size: 100%; font: inherit; vertical-align: baseline } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block } body { line-height: 1 } ol, ul { list-style: none } blockquote, q { quotes: none } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none } table { border-collapse: collapse; border-spacing: 0 }

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    /* --main-color: #80643f; */
    /* --main-color: #a38359; */
    --main-color: #cda274;
    --main-black: #2b2b2b;
}

html { height: 100%; min-height: 100%; }
body { min-height: 100%; scroll-behavior: smooth; }
html, html a { -webkit-font-smoothing: antialiased; }

body, select, input, textarea, button {
	font: normal 16px/1.5 'Cera', Arial, Helvetica, sans-serif;
    color: var(--main-black);
    font-weight: 300;
	outline: none;
}
a { 
    outline: none;
    color: #3394e6;
    text-decoration: none;
}
a:hover { text-decoration: underline; }

a img { border: 0 none; }
a > img { vertical-align: bottom; }

img {
    display: block;
    max-width: 100%;
}

/* Заголовки H1-6 */
h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5 {
	margin: 0 0 2rem 0;
	letter-spacing: -0.01em;
	line-height: normal;
	font-weight: bold;
	text-rendering: optimizeLegibility;
}
h1, .h1 { font-size: 38px; }
h2, .h2 { font-size: 32px; }
h3, .h3 { font-size: 26px; }
h4, .h4 { font-size: 22px; }
h5, .h5 { font-size: 18px; }

/* Настройка других элементов */
ul { padding-left: 40px; list-style: disc outside; margin-top: 1em; margin-bottom: 1em;}
ol { padding-left: 40px; list-style: decimal outside; margin-top: 1em; margin-bottom: 1em;}

/* --- Layout --- */
body { 
    display: flex;
    flex-direction: column;
    background: #fff;
    color: var(--main-black);
    min-width: 320px;
}

.reset {
    padding-left: 0;
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
}

.page {
    flex: 1 0 auto;
}
.paddings {
    padding-left: 20px;
    padding-right: 20px;
}
.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.madera-btn {
    display: inline-block;
    background: transparent;
    color: var(--main-black);
    padding: 17px 30px;
    border: 1px solid var(--main-color);
    font-size: 18px;
    transition: .5s;
    position: relative;
    z-index: 1;
    border-radius: 0;
    color: #fff;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.madera-btn:hover {
    text-decoration: none;
}
.madera-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50px;
    z-index: -1;
    transition: .5s;
    background: var(--main-color);
}
.madera-btn:hover::before {
    width: 100%;
}

.section-titles {
    position: relative;
    padding-left: 22px;
}
.section-titles::before {
    position: absolute;
    content: '';
    left: 0;
    top: 5px;
    height: 88%;
    width: 2px;
    background: var(--main-color);
}
.section-titles h5 {
    color: var(--main-color);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.section-titles h3 {
    color: var(--main-black);
    font-size: 42px;
    margin-bottom: 0px;
    text-transform: capitalize;
    margin-top: 0;
    font-weight: 400;
}
.section-titles h3 > span {
    color: var(--main-color);
}
.section-titles h2 {
    color: var(--main-black);
    font-size: 42px;
    margin-bottom: 0px;
    text-transform: capitalize;
    margin-top: 0;
    font-weight: 400;
}
.padding-top {
    padding-top: 80px;
}

/* Header */

#header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    background: transparent;
    height: 80px;
    transition: background .5s;
    border-bottom: 1px solid rgba(255 255 255 / 15%);
}
.scrolled #header,
.not-main #header {
    background: #2b2b2b;
}
#header .header-in {
    height: 100%;
}
#header .header-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
}
#header .header-menu .logo-wrapper {
    flex-grow: 1;
}
#header .header-menu a.logo {
    display: flex;
    align-items: center;
    width: 80px;
}
#header .header-menu a.logo > img {
    max-width: 80px;
    max-width: 80px;
}
#header .header-menu #menu-list {

}
#header #menu-list ul {
    display: flex;
    align-items: center;
}
#header #menu-list ul > li {
    margin-right: 20px;
}
#header #menu-list ul > li:last-child {
    margin-right: 0;
}
#header #menu-list ul > li > a {
    color: #fff;
    text-decoration: none;
    transition: color .3s ease;
}
#header #menu-list ul > li > a:hover {
    color: var(--main-color);
}

#header #menu-btn {
    display: none;
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
#header #menu-btn > span {
    position: absolute;
    top: 2px;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    transform-origin: center center;
    transition: all .25s;
}
#header #menu-btn > span:nth-child(1) {
    margin-top: 0;
}
#header #menu-btn > span:nth-child(2) {
    margin-top: 10px;
}
#header #menu-btn > span:nth-child(3) {
    margin-top: 20px;
}

.menu_opened #header #menu-btn > span:nth-child(1) {
    margin-top: 10px;
    transform: rotate(-45deg);
}
.menu_opened #header #menu-btn > span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.menu_opened #header #menu-btn > span:nth-child(3) {
    margin-top: 10px;
    transform: rotate(45deg);
}
/* Header */

/* Home */

#hero-section {
    position: relative;
    min-height: 900px;
}
#hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid rgba(255 255 255 / 15%);
    z-index: 1;
}
#hero-section .container {
    
}
#hero-section .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../images/home/hero.jpg?x=1') no-repeat center center / cover;
}
#hero-section .image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0 0 0 / 50%);
}
#hero-section .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    color: #fff;
}
#hero-section .hero-subtitle {
    margin-bottom: 6px;
    font-size: 16px;
    letter-spacing: .45px;
}
#hero-section .hero-title {
    color: var(--main-color);
    margin-bottom: 30px;
    font-size: calc(clamp(4.25em, 7vw, 7.55em)*0.8);
    text-transform: uppercase;
    letter-spacing: .85px;
    line-height: .8;
}
#hero-section .hero-text {
    max-width: 580px;
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: .45px;
}
#hero-section .hero-buttons {
    display: flex;
    align-items: center;
}
#hero-section .hero-buttons > .button-more {
    margin-right: 20px;
}
#hero-section .hero-buttons > .call {
    display: flex;
    align-items: center;
    color: #fff;
}
#hero-section .hero-buttons > .call > img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

#hero-section .hero-animate {
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: transform .5s ease, opacity .5s ease;
}
#hero-section .hero-animate.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
#hero-section .hero-animate:nth-child(1) {
    
}
#hero-section .hero-animate:nth-child(2) {
    transition-delay: .3s;
}
#hero-section .hero-animate:nth-child(3) {
    transition-delay: .4s;
}
#hero-section .hero-animate:nth-child(4) {
    transition-delay: .5s;
}

#hero-section .hero-social {
    position: absolute;
    height: 100%;
    border-right: 1px solid rgba(255 255 255 / 15%);
}
#hero-section .social-in {
    width: 120px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#hero-section .social-top {
    color: #fff;
    transform: rotate(-90deg);
}
#hero-section .hero-social .middle-line {
    height: 80px;
    border-left: 1px solid var(--main-color);
    margin: 42px 0 10px 0;
}
#hero-section .hero-social .links {

}
#hero-section .hero-social .links > li {
    margin-bottom: 16px;
}
#hero-section .hero-social .links > li:last-child {
    margin-bottom: 0;
}
#hero-section .hero-social .links > li > a {
    display: block;
    width: 16px;
    height: 16px;
}
#hero-section .hero-social .links > li > a > svg {
    color: #999999;
    fill: #999999;
    transition: .3s ease;
}
#hero-section .hero-social .links > li > a:hover > svg {
    color: var(--main-color);
    fill: var(--main-color);
}

/* Benefits */

#benefits-section {
    margin-top: -91px;
    margin-bottom: 70px;
}
#benefits-section .benefits-in {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
#benefits-section .benefits-in > .item {
    padding: 10px;
    width: 33.333%;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: transform .5s ease, opacity .5s ease;
}
#benefits-section .benefits-in > .item.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
#benefits-section .benefits-in > .item:nth-child(1) {
    transition-delay: .3s;
}
#benefits-section .benefits-in > .item:nth-child(2) {
    transition-delay: .5s;
}
#benefits-section .benefits-in > .item:nth-child(3) {
    transition-delay: .7s;
}
#benefits-section .benefits-in > .item:hover {

}
#benefits-section .benefits-in > .item > .in {
    position: relative;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    padding: 50px 15px;
    transition: .5s;
    z-index: 1;
    background: #fff;
    height: 100%;
}
#benefits-section .benefits-in > .item > .in::before {
    background: linear-gradient(180deg, rgba(205, 162, 116, 0.9), rgba(205, 162, 116, 0.9)), url('../images/home/benefits/benefit-bg.png') no-repeat center/ cover scroll;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: .5s;
    opacity: 0;
    z-index: -1;
}
#benefits-section .benefits-in > .item:hover > .in::before {
    opacity: 1;
}
#benefits-section .benefits-in > .item > .in > .icon {
    margin-bottom: 30px;
}
#benefits-section .benefits-in > .item > .in > .icon > img.first {
    display: block;
    max-width: 100%;
    max-height: 1000px;
    height: auto;
    margin: 0 auto;
    transition: opacity .8s ease, visibility .8s ease;
}
#benefits-section .benefits-in > .item:hover > .in > .icon > img.first {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
}
#benefits-section .benefits-in > .item > .in > .icon > img.hover {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
}
#benefits-section .benefits-in > .item:hover > .in > .icon > img.hover {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}
#benefits-section .benefits-in > .item > .in > h2 {
    text-align: center;
    font-weight: 400;
    transition: color .5s ease;
}
#benefits-section .benefits-in > .item:hover > .in > h2 {
    color: #fff;
}
#benefits-section .benefits-in > .item > .in > p {
    color: #919191;
    font-size: 14px;
    text-align: center;
    transition: color .5s ease;
}
#benefits-section .benefits-in > .item:hover > .in > p {
    color: #fff;
}

/* Benefits */

/* About Us */

#about-us-section {
    position: relative;
    margin-bottom: 70px;
}
#about-us-section > .container {
    display: flex;
}
#about-us-section .about-img {
    width: 50%;
    padding-left: 10px;
    padding-right: 52px;
}
#about-us-section .about-img > img {
    width: 100%;
}
#about-us-section .about-content {
    width: 50%;
}
#about-us-section .about-content .section-titles {
    margin-bottom: 30px;
}
#about-us-section .about-content .about-text {
    color: #616161;
}
#about-us-section .about-content .about-text > span {
    color: var(--main-color);
}

/* About Us */

/* Our Services */

#our-services-section {
    padding: 70px 0;
    background: url('../images/home/services/services.jpg');
}
#our-services-section > .container {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
#our-services-section > .container > .item {
    padding: 10px;
    width: 33.333%;
}
#our-services-section > .container > .item:hover {

}
#our-services-section > .container > .item > .in:not(.item.item-title > .in) {
    padding: 38px 30px 30px;
    text-align: left;
    position: relative;
    background: transparent;
    z-index: 1;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    height: 200px;
}
#our-services-section > .container > .item > .in::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    border: 1px solid #594c3e;
    transition: border .5s ease;
    z-index: 1;
}
#our-services-section > .container > .item > .in::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100px;
    width: 100px;
    border: 1px solid #594c3e;
    transform: rotate(50deg) translate(85px, -5px);
    transition: transform .5s ease;
    background: #272727;
    z-index: 2;
}
#our-services-section > .container > .item:hover > .in::before {
    border-color: var(--main-color);
}
#our-services-section > .container > .item:hover > .in::after {
    transform: rotate(50deg) translate(120px, -5px);
}
#our-services-section > .container > .item.item-title > .in::before,
#our-services-section > .container > .item.item-title > .in::after {
    display: none;
}
#our-services-section > .container > .item:hover > .in:not(.item.item-title > .in) {

}
#our-services-section > .container > .item > .in > .section-titles {

}
#our-services-section > .container > .item > .in > .section-titles > h5 {

}
#our-services-section > .container > .item > .in > .section-titles > h3 {
    color: #fff;
    font-size: 30px;
}
#our-services-section > .container > .item > .in > img {
    max-width: 100%;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 16px;
}
#our-services-section > .container > .item > .in > h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
}

/* Our Services */

/* Our Partners */

#partners-section {
    padding: 70px 0;
    background: #f7f7f7;
}
#partners-section > .container {

}
#partners-section > .container .section-titles {
    margin-bottom: 40px;
}
#partners-section > .container .section-titles > h3 {
    color: var(--main-black);
}
#partners-section > .container .partners-carousel {

}
#partners-section > .container .partners-carousel .item {
    display: flex;
    width: 100%;
    height: 150px;
    align-items: center;
    justify-content: center;
    margin: auto;
    background: #fff;
}
#partners-section > .container .partners-carousel .item > .in {

}
#partners-section > .container .partners-carousel .item > .in > img {
    /* width: 200px; */
    margin: auto;
}

/* Our Partners */

/* Works */


#works-section {
    padding: 70px 0;
    background: #272727;
}
#works-section > .container {

}
#works-section > .container > .section-titles {
    margin-bottom: 40px;
}
#works-section > .container > .section-titles > h3 {
    color: #fff;
}
#works-section > .container > .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
#works-section > .container > .items > .item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
#works-section > .container > .items > .item:hover {

}
#works-section > .container > .items > .item > img {
    transition: transform .2s ease;
}
#works-section > .container > .items > .item:hover > img {
    transform: scale(1.05);
}
#works-section .more-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

/* Works */

/* Contact */

#contact-section {
    position: relative;
    padding: 70px 0;
    background: url('../images/home/contact/map.svg') no-repeat center center / cover;
    z-index: 2;
}
#contact-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
    opacity: 0.9;
}

#contact-section > .in {
    padding: 0 20px;
}
#contact-section .container {
    display: flex;
    align-items: unset;
    justify-content: center;
    padding: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    overflow: hidden;
}
#contact-section .contact-left {
    flex-basis: 50%;
    overflow: hidden;
    background: url('../images/home/contact/contact.jpg') no-repeat center center / cover;
}
#contact-section .contact-right {
    flex-basis: 50%;
    height: 100%;
    padding: 30px 30px 80px;
    background: #f7f7f7;
}
#contact-section .section-titles {
    margin-bottom: 30px;
}
#contact-section .section-titles > h3 {
    font-size: calc(clamp(2.25em, 3vw, 3.55em)*0.8);
}
#contact-section #contact-form {

}
#contact-section #contact-form > .field {
    margin-bottom: 20px;
}
#contact-section #contact-form > .field > input {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    border: 1px solid #ccc;
    outline: none;
    appearance: textfield;
    transition: .3s ease
}
#contact-section #contact-form > .field > textarea {
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    border: 1px solid #ccc;
    outline: none;
    appearance: textfield;
    transition: .3s ease
}
#contact-section #contact-form > .field > input:focus,
#contact-section #contact-form > .field > textarea:focus,
#contact-section #contact-form > .field > input:hover,
#contact-section #contact-form > .field > textarea:hover {
    border-color: var(--main-color);
}
#contact-section #contact-form > .send-btn-wrap {

}
#contact-section #contact-form > .send-btn-wrap > button {
    background: var(--main-color);
    transition: .3s ease;
}
#contact-section #contact-form > .send-btn-wrap > button:hover {
    color: var(--main-color);
    background: #fff;
}
#contact-section #contact-form > .send-btn-wrap > button::before {
    display: none;
}

/* Contact */

/* Home */

/* Gallery */

#gallery {
    margin: 80px 0;
    padding: 0 30px;
}
#gallery h1 {

}
#gallery .gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}
#gallery .gallery > .picture {
    max-height: 230px;
}
#gallery .picture > .in {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}
#gallery .picture > .in > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}
#gallery .picture:hover > .in > img {
    transform: scale(1.05);
}

/* Gallery */

/* Footer */

#footer {
    padding: 70px 0 10px 0;
    background: #272727;
}
#footer > .container:first-child {
    display: flex;
    justify-content: space-between;
}
#footer .foot-logo {
    padding-right: 30px;
}
#footer .foot-logo > a {
    display: block;
    margin-bottom: 20px;
}
#footer .foot-logo > a > img {
    width: 110px;
}
#footer .foot-logo > p {
    color: #919191;
    max-width: 400px;
    margin-bottom: 20px;
}
#footer .foot-logo > .foot-social {
    display: flex;
    align-items: center;
    gap: 12px;
}
#footer .foot-logo > .foot-social > a {
    display: block;
}
#footer .foot-logo > .foot-social > a > svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: var(--main-color);
    transition: fill .3s ease;
}
#footer .foot-logo > .foot-social > a:hover > svg {
    fill: #fff;
}
#footer .foot-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
#footer .foot-sections > .foot-block {
    display: flex;
    flex-direction: column;
}
#footer .foot-block > h4 {
    color: #fff;
    margin-bottom: 12px;
}
#footer .foot-block > a {
    display: inline-block;
    width: fit-content;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 6px;
    transition: color .3s ease;
}
#footer .foot-block > a:hover {
    color: var(--main-color);
}
#footer .foot-block > a:last-child {
    margin-bottom: 0;
}
#footer .foot-block.foot-contact {

}
#footer .foot-block.foot-contact > a {
    display: flex;
    align-items: center;
}
#footer .foot-block.foot-contact > a > img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

#footer > .container:nth-child(2) {
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    margin-top: 40px;
    border-top: 1px solid #393939;
}
/* Footer */