/*
Theme Name: EcoVenture
*/

@font-face {
    font-family: Raleway;
    src: url("assets/fonts/Raleway-VariableFont_wght.ttf");
    font-display: swap;
}
@font-face {
    font-family: Oswald;
    src: url("assets/fonts/Oswald-VariableFont_wght.ttf");
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    font-family: Raleway, sans-serif;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    box-sizing: border-box;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    font-variant-numeric: lining-nums;
}

html {
    scroll-behavior: smooth;
}
body {
}
body.active {
    overflow: hidden;
}

.container {
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
    padding: 0 50px;
}
section {
    max-width: 1920px;
}
a {
    text-decoration: none;
}
h1, h2, h3 {
    font-weight: 700;
}
h1 {
}
h2 {
    font-size: clamp(40px, 8vw, 50px);
    margin-bottom: 30px;
}
p, span, a {
    font-weight: 600;
    font-size: 22px;
    display: block;
}
ul, li {
    /* list-style: none; */
    /* counter-reset: my-awesome-counter; */

}
li {
    display: flex;
    gap: 9px;
  }
.btn {
    font-weight: 700;
    font-size: 18px;
    border-radius: 0 20px;
    max-width: max-content;
    padding: 20px;
    box-shadow: 4px 8px 50px 0 rgba(117, 136, 41, 0.25);
    background: #758829;
    transition: all 0.2s ease;
    color: #fff;
}
input::placeholder, textarea::placeholder {
    font-size: inherit;
    font-weight: inherit;
    color: #afb2bf;
}
input:focus, input:active, textarea:focus, textarea:active {
    outline: none;
    background: #f4f4f4;
}

input:active {
    border: none;
}
input:focus {
    border: none;
}
/*------------------------------------------ ANIMATIONS */
@media (hover: hover) {
    .btn:hover {
        box-shadow: 4px 8px 50px 0 rgba(117, 136, 41, 0.5);
        background: #58692e;
    } 
    .header-menu li a:hover {
        opacity: 0.9;
    }
    .tab-nav li:hover {
        color: #7588296b;
    }
    .sticky:hover {
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.56);
    }
}

@media (hover: none) {

}
@keyframes awd {
    from {
      right: -1200px;
    }
  
    to {
      right: 0px;
    }
  }
/*-------------------------------------- HEADER SECTION */
header {
    background-color: #001915;
    padding: 20px 0;
    color: #fff;
    position: relative;
    z-index: 2;
}

.upper-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.upper-header-logo-link {
    display: flex;
    align-items: center;
    gap: 50px;
}
.logo-white {
    width: 167px;
    height: 65px;
}
.logo-text {
    font-weight: 600;
    font-size: 18px;
    width: 150px;
}
.upper-header-socials {
    display: flex;
    align-items: center;
    gap: 25px;
    font-weight: 400;
    font-size: 18px;
}
.upper-header-socials a {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 400;
}
.header-line {
    width: 100%;
    height: 1px;
    background-color: #e8e8e8;
    margin: 20px 0;
}
.header-menu li a {
    transition: all 0.2s ease;
}
.header-menu {
    display: flex;
    align-items: center;
    gap: 55px;
    counter-reset: unset;
}
.menu-opener {
    width: 22px;
    height: 22px;
    display: none;
    text-decoration: none;
    padding: 0;
    border: none;
    background-color: transparent;
    position: relative;
    z-index: 3;
}
.aw{
    background-color: #fff;
    width: 100%;
    height: 2px;
}
.aw::after,  .aw::before {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 22px;
    height: 2px;
    left: 0;
}
.aw::after {
    top: 3px;
}
.aw::before {
    bottom: 3px;
}
.menu-opener-active .aw {
    background-color: transparent;
}
.menu-opener-active .aw::after {
    transform: rotate(45deg);
    top: unset;
}
.menu-opener-active .aw::before {
    transform: rotate(-45deg);
    bottom: unset;
}
.background {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: #75882942;
    display: none;
}
.background-active {
    display: block;
}
.header-line-mobile, .upper-header-socials-mobile {
    display: none;
}

/*-------------------------------------- OFFER SECTION */
.sticky {
    position:fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 110;
    bottom: 50px;
    right: 50px;
    width: 80px;
    height: 80px;
    background-color: #758829;
    border-radius: 100px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0px 9px 35px 0px rgba(0, 0, 0, 0.56);
}

.offer {
    background-image: url(../EcoVenture/assets/img/offer-img.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 245px 0 200px;
    color: #fff;
    margin-bottom: 110px;
}
.offer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}
.offer-text-wrapper {
    max-width: 670px;
}
.offer-title {
    font-size: 80px;
    margin-bottom: 20px;
}
.offer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    counter-reset: my-awesome-counter;
}
.offer-list-item {
    counter-increment: my-awesome-counter;
    display: flex;
    /* align-items: center; */
    gap: 9px;
    font-size: 22px;
    font-weight: 600;
    
}

.offer-list-item::before {
    content: counter(my-awesome-counter);
    background: #c6d978;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    color: transparent;
    margin-top: 8px;
}

.offer-btn {  
}
.offer-advantages-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    row-gap: 25px;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #fff;
    border-radius: 0 40px;
    padding: 25px;
    width: 681px;
    /* flex: 1 0; */
    /* flex-basis: calc(50% - 10px); */
}
.offer-advantages-item {
    width: 303px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.advantage-img {
    width: 60px;
    height: 60px;
}
.advantage-text {
}

/*-------------------------------------- SCHEME SECTION */
.scheme {
    color: #001915;
    display: flex;
    justify-content: start;
    flex: 0 0;
    flex-basis: calc(50% - 10px);
    min-width: calc(50% - 10px);
    position: relative;
}
.scheme .container {
    max-width: 780px;
    margin: 0 auto 0 0;
    padding: 0 0 0 50px;
    box-sizing: content-box;
}
.scheme-title {
}
.scheme-list {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    column-gap: 25px;
}
.scheme-item {
    width: 356px;
    display: flex;
    gap: 20px;
    align-items: end;
}
.scheme-num {
    font-family: Oswald;
    font-weight: 400;
    font-size: 120px;
    height: 144px;
}
.scheme-text {
    font-weight: 400;
    font-size: 18px;
}

  .scheme-img {
    width: calc(50vw + 10px);
	max-width: 975px;
    display: block;
    height: 100%;
    max-height: 530px;
    position: absolute;
    top: 0;
    right: 0;
  }

/*-------------------------------------- FORM SECTION */
.form-section {
    padding: 110px 0 80px;
}
.form-section .container {
    display: flex;
    align-items: center;
    gap: 210px;
    justify-content: center;
}
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
}
.form-logo-img {
    width: 500px;
    height: 190px;
    margin-bottom: 20px;
}
.form-logo-text {
    font-weight: 600;
    font-size: 34px;
    font-size: clamp(23px, 6vw, 34px);
    text-transform: uppercase;
    color: #4b4f4e;
    width: 284px;
}
.form-wrapper {
}
.form-title {
    /* text-align: center; */
}
.form-subtitle {
    margin: 0 auto; 
}
.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
}
.form-input {
    border-radius: 0 15px;
    border: none;
    padding: 25px 50px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
}
.form-submit {
    margin-top: 15px;
    box-shadow: 4px 8px 50px 0 rgba(117, 136, 41, 0.25);
    background: #758829;
    color: #fff;
    font-weight: 700;
    max-width: 100%;
    padding: 20px 0;
}
.form-warn {
    font-weight: 400;
    font-size: 15px;
    color: #4b4f4e;
    margin-top: 15px;
}
.form-warn b {
    color: #758829;
    font-weight: 400;
    font-size: 15px;
}

/*-------------------------------------- FOOTER SECTION */

.footer {
    position: relative;
    z-index: 4;
    background: #001915;
    padding: 50px 0;
    color: #fff;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.footer-logo-link-wrapper {
}
.footer-logo-link {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 25px;
}
.footer-logo {
    max-width: 167px;
    max-height: 65px;
}
.footer-logo-link-text {
    font-weight: 600;
    font-size: 18px;
    width: 150px;
}
.footer-service-manager {
    font-weight: 400;
    font-size: 18px;
    color: #808c8a;
    margin-top: 25px;
}
.footer-qr {
}
.footer-menu {
}
.footer-menu-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}
.footer-menu li {
    counter-reset: unset;
}
.footer-menu li::before {
    content: "";
    display: none;
}
.footer-menu li a {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
}
.footer-menu-link {
    
}
.footer-contacts {
}
.footer-contacts-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}
.footer-contacts-link {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
}
.footer-contacts-link-icon {
    width: 24px;
    height: 24px;
}

/*-------------------------------------- SERVICES SECTION */
.services {
    padding: 80px 0;
}
.tab-nav li a[aria-current="page"] {
    color: #758829;
}
.tab-nav {
    display: flex;
    margin-bottom: 50px;
    justify-content: start;
    gap: 50px;
    counter-reset: unset;
}
.tab-nav li {
    counter-reset: unset;
}
.tab-nav li::before {
    content: "";
    display: none;
}
.tab-nav li a{
    font-weight: 500;
    font-size: clamp(18px, 5vw, 30px);
    transition: all 0.18s ease;
}
.tab-top-row {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 95px;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
}
.top-row-text {
    font-size: 18px;
}
.top-row-text.left, .row-cell.left {
    margin-right: auto;
    width: 310px;
}
.top-row-text.right, .row-cell.right {
    margin-left: auto;
    height: auto;
    width: 815px;
    text-align: left;
}
.row-cell, .top-row-text {
    text-align: left;
}
.tab-row {
    display: flex;
    gap: 95px;
    align-items: flex-start;
    padding: 30px 0;
}
.tab-row:not(:last-child) {
    border-bottom: 1px solid #000;
}
.row-cell, .row-cell-item {
    font-weight: 500;
    font-size: 22px;
}
.row-cell-sum, .row-cell-date, .row-cell-sum-title, .row-cell-date-title {
    width: 200px;
    display: block;
}
.row-cell.left {
    width: 310px;
    display: block;
}
.row-cell-item {
    align-items: start;
}
.row-cell-item:not(:last-child) {
    margin-bottom: 10px;
}
.row-cell-item::before {
    content: counter(my-awesome-counter);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 8px;
    color: transparent;
    background: #C6D978;
}
.tab-mobile {
    display: none;
    padding: 5px 0 30px;
    border-bottom: 1px solid #000;
}
.tab-mobile:last-of-type {
    margin-bottom: 50px;
}
.tab-mobile-naming-title, .tab-mobile-price-title, .tab-mobile-time-title, .tab-mobile-result-title  {
    font-family: Raleway;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 25px;
}
.tab-mobile-naming, .tab-mobile-price, .tab-mobile-time, .tab-mobile-result-item {
    font-weight: 500;
    font-size: 22px;
    color: #000;
}
.tab-mobile-price-title {
}
.tab-mobile-price {
}
.tab-mobile-time-title {
}
.tab-mobile-time {
}
.tab-mobile-result-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tab-mobile-result-item {
    align-items: start;

}
.tab-mobile-result-item::before {
    content: counter(my-awesome-counter);
    background: #c6d978;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 8px;
    color: transparent;
}

.tab-er {
    max-width: 907px;
    width: 62%;
}
.tabs-wrapper {
    display: flex;
    justify-content: start;
    align-items: start;
    column-gap: 95px;

}
.tab-result {
}
.tab-result-title {
    font-size: 20px;
    margin-bottom: 60px;
}
.tab-result-text {
}
.tab-result-text-title {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 15px;
}
.tab-result-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tab-result-item {
    font-weight: 500;
    font-size: 22px;
}
.tab-result-item::before {
    content: counter(my-awesome-counter);
    background: #c6d978;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 8px;
    color: transparent;
}
/*-------------------------------------- CONTACTS SECTION */
.contacts {
    padding: 80px 0;
}
.container {
}
.contacts-title {
}
.contacts-wrapper {
    position: relative;
}
.contacts-list {
    display: flex;
    flex-direction: column;
    max-width: max-content;
}
.contacts-list-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 0;
    font-weight: 500;
    font-size: 30px;
}
.contacts-list-item:not(:last-child) {
    border-bottom: 1px solid #808080;
    
}
.contacts-mail-icon {
}
.contacts-tel-icon {
}
.contacts-list-item-socials {
    display: flex;
    align-items: center;
    gap: 25px;
}
.contacts-social-item {
}
.contacts-social-item-img {
}
.contacts-qr {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    margin: auto;
}
.contacts-list-item-manager {
    font-weight: 400;
    font-size: 18px;
}

.private {
    padding: 50px 0;
}

.personal-data-li li::before {
    content: counter(my-awesome-counter);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 8px;
    color: transparent;
    background: #C6D978;
}

.personal-data-wrapper li, .personal-data-wrapper a, .personal-data-wrapper p {
    text-align: justify;
}



@media (max-width:1575px) {
    .scheme .container {
    }
    .scheme-img {
    }
    .form-section .container {
        flex-wrap: wrap;
        gap: 0;
        column-gap: 10px;
        justify-content: space-between;
    }
    .tab-link {
        font-size: 25px;
    }
    .scheme-img {
        width: calc(45vw - 10px);
    }
    .scheme-item {
        /* flex-basis: 48%; */
    }
}
@media (max-width:1505px) {
    .offer-advantages-wrapper {
        width: 100%;
        padding: 25px 20px;
        /* column-gap: 10px; */
    }
    .offer-advantages-item {
        flex-basis: 48%;
    }
    .tab-nav {
        flex-direction: column;
        gap: 20px;
        border-bottom: 1px solid #000;
        padding-bottom: 50px;
    }
    
}
@media (max-width:1400px) {
    .scheme .container {
        width: 100%;
        max-width: unset;
        padding: 0 50px;
    }
    .scheme-img {
        position: static;
        width: 100%;
        height: auto;
        max-height: unset;
        margin-top: 70px;
    }
    .contacts-qr {
        display: none;
    }

}
@media (max-width:1200px) {
    .container {
        padding: 0 15px !important;
    }
    .offer {
        padding: 60px 0 80px;
    }
    .form-section .container {
        flex-direction: column-reverse;
        gap: 80px;
    }
    .footer-qr {
        display: none;
    }
    .footer .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    .form-logo-img {
        width: 100%;
        height: auto;
    }
    .offer-text-wrapper {
        width: 100%;
    }
    .upper-header-socials {
        display: none;
    }
    .offer-title {
        font-size: clamp(36px, 7vw, 80px);
    }
    .scheme-list {
        column-gap: 0;
        justify-content: space-between;
    }
    .scheme-item {
        flex-basis: 50%;
    }
    .logo-white, .footer-logo {
        width: 126px;
        height: 49px;
    }
    .upper-header-logo-link, .footer-logo-link {
        gap: 15px;
    }
    .header-line, .header-lower {
        display: none;
    }
    .menu-opener {
        display: block;
    }
    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-lower-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        z-index: 2;
        right: 0;
        top: 89px;
        background-color: #001915;
        width: 100%;
        height: 110vh;
        max-width: 900px;
        padding: 20px 15px;
        animation: awd 0.3s ease;
    }

    .header-menu {
        flex-direction: column;
        gap: 15px;
        align-items: start;
    }
    .header-line-mobile {
        display: block;
        width: 100%;
        height: 1px;
        margin: 30px 0;
        background-color: #fff;
    }
    .upper-header-socials-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .tab-nav {
        margin-bottom: 0;
    }
    .tab-content {
        display: none;
    }
    .tab-mobile {
        display: flex;
        flex-direction: column;
    }
    .tabs-wrapper {
        flex-direction: column;
    }
    .tab-result {
        padding: 30px 0;
        border-bottom: 1px solid #000;
    }
    .tab-result-title {
        margin-bottom: 10px;
    }
    .tab-result-text {
    }
    .tab-result-text-title {
    }
    .tab-result-list {
    }
    .tab-result-item {
    }
}
@media (max-width:550px) {
    .sticky {
        display: none;
    }
    .offer-advantages-wrapper {
        flex-direction: column;
    }
    .offer-advantages-item, .scheme-item  {
        flex-basis: 100%;
        width: 100%;
    }
    .scheme-item {
        width: 100%;
    }
    h2 {
       
    }
    .form-warn {
        width: 100%;
    }
    .btn {
        font-weight: 600;
        font-size: 16px;
        max-width: unset;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }
    .scheme-img {
        display: none;
    }
    .form-logo-text {
        width: auto;
    }
    .form-title {
        text-align: center;
    }
    .header-menu li,  .upper-header-mail, .upper-header-tel {
        font-size: 16px;
    }
    .contacts-list-item {
        font-size: 21px;
    }
}
@media (max-width:400px) {
    .logo-text, .footer-logo-link-text {
        display: none;
    }
    .footer-logo-link {
        align-items: start;
        justify-content: start;
    }
    .contacts-list-item {
        font-size: 16px;
    }
    .private p {
        font-size: 18px;
    }
    .form-input {
        padding: 25px;
    }
    .form-submit {
        padding: 15px 0;
    }
}