* {
    box-sizing: border-box;
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

h1 {
    font-weight: 900;
    font-size: 4vw;
    line-height: 130%;
    text-transform: uppercase;
}
h2 {
    font-weight: 700;
    font-size: 3vw;
    line-height: 29px;
    text-transform: uppercase;
}
h3 {
    font-size: 1.5vw;
    line-height: 130%;
}
body {
    height: 100%;
    background-color: var(--bgcolor);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 0;
    margin: 0;
    color: var(--colortext);
    overflow-x: hidden !important;
    margin: auto;
}

:root {
    --bgcolor: #212121;
    --accentcolor: #819B76;
    --colortext: #ffffff;
}
._container {
    max-width: 1270px;
}

.wrapper {
    width: 100%;
    overflow: hidden;
    min-height: 100%;
}

/* --------------------Header------------------ */
.header {
    background: linear-gradient(0deg, rgba(100,119,93,0.1966036414565826) 0%, rgba(129,155,118,0.3982843137254902) 100%);
    backdrop-filter: blur(3px);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-container {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
}

.header__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo img {
    width: 294px;
    height: 69px;
    margin-top: 10px;
}
.btn_header {
    position: relative;
    background: linear-gradient(0deg, rgba(94,112,86,1) 0%, rgba(129,155,118,1) 100%);
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    height: 60px;
}
.btn_header::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 14px;
    z-index: 11;
    width: 4px;
    height: 10px;
    border-radius: 50%;
    transform: rotate(45deg);
    background-color: #ffffff;
    opacity: .3;
}
.btn_header img {
    width: 30px;
    height: 30px;
    margin-right: 10px; 
}
.first_screen__btn_phone_mobile {
    position: relative;
    display: none;
    background: linear-gradient(0deg, rgba(94,112,86,1) 0%, rgba(129,155,118,1) 100%);
}
.first_screen__btn_phone_mobile::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    z-index: 11;
    width: 4px;
    height: 10px;
    border-radius: 50%;
    transform: rotate(45deg);
    background-color: #ffffff;
    opacity: .5;
}
._btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 40px 18px 40px;
    border-radius: 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* ----------First Screen----------- */
.first_screen {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.background {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: color-dodge;
    opacity: .5;
}
.first_screen__container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.first_screen__column {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.first_screen__title {
    text-align: center;
    margin: 0px 0px 0px 0px;
}
.first_screen__subtitle {
    text-align: center;
}
.first_screen__line {
    width: 186px;
    height: 3px;
    background-color: var(--colortext);
    border-radius: 2px;
}
.first_screen__categories_row {
    display: flex;
    gap: 90px;
    margin: 5px 0px 20px 0px ;
}
.first_screen__left_block_categories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
}
.first_screen__right_block_categories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
}
.first_screen__btn {
    position: relative;
    height: 80px;
    background-color: transparent;
    font-size: 18px;
    font-weight: 700;
    overflow: hidden;
    border: 3px solid #819B76;
}
.first_screen__btn:hover .wave {
    top: -155px;
}
.first_screen__btn span {
    position: relative;
    text-transform: uppercase;
  }
.first_screen__btn .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(0deg, #819B76, #242d21);
    transition: .5s ease;
}
  
.first_screen__btn .wave:after, .first_screen__btn .wave:before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}
  
.first_screen__btn .wave:after {
    border-radius: 40%;
    background: rgba(51, 51, 51, 0.5);
    animation: wave 7s linear infinite;
}
  
.first_screen__btn .wave:before {
    border-radius: 45%;
    background: #212121;
    animation: wave 12s linear infinite;
}
.circle {
    position: absolute;
    top: 6px;
    left: 14px;
    z-index: 11;
    width: 4px;
    height: 10px;
    border-radius: 50%;
    transform: rotate(45deg);
    background-color: #ffffff;
    opacity: .3;
}
  
@keyframes wave {
    0% {
      transform: translate(-50%, -75%) rotate(0deg);
    }
    0% {
      transform: translate(-50%, -75%) rotate(360deg);
    }
}

/* -----------Header and First Screen Mobile------------- */

@media (max-width: 1269px) {
    ._container {
        padding: 0px 20px;
    }
}
@media (max-width: 1023px) {
    h1 {
        font-size: 5vw;
    }
    h2 {
        font-size: 4vw;
    }
    h3 {
        font-size: 2.5vw;
    }
    .header-container {
        height: 80px;
    }
    .logo img {
        width: 60%;
        height: 60%;
        object-fit: cover;
    }
}
@media (max-width: 768px) {
    h3 {
        font-size: 4vw;
    }
    .btn_header {
        display: none;
    }
    ._btn {
        height: 60px;
    }
    .first_screen__btn_phone_mobile {
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        background-color: var(--accentcolor);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        padding: 10px;
    }
    .first_screen__btn_phone_mobile img {
        width: 40px;
        height: 40px;
    }
    .first_screen__categories_row {
        display: flex;
        flex-direction: column;
        gap: 0px;
        margin: 20px 0px 20px 0px ;
    }
    .first_screen__right_block_categories {
        margin-top: -30px;
    }
}
@media (max-width: 414px) {
    h1 {
        font-size: 7vw;
    }
    h2 {
        font-size: 5vw;
    }
    h3 {
        font-size: 4vw;
    }
    .header-container {
        height: 80px;
    }
    .logo img {
        width: 70%;
        height: 70%;
        object-fit: cover;
    }
    .first_screen {
        height: 80vh;
    }
    .first_screen__btn {
        font-size: 16px;
    }
}

/* --------UTP---------- */
.utp {
    display: flex;
    justify-content: center;
    background-color: #212121;
}
.utp_row {
    display: flex;
    gap: 30px;
    margin-top: -30px;
}
.utp__block {
    position: relative;
    background: linear-gradient(0deg, rgba(94,112,86,1) 0%, rgba(129,155,118,1) 100%);
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    border-radius: 30px;
    padding: 30px 20px;
    backdrop-filter: blur(4px);
}
.utp__block::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 12px;
    z-index: 11;
    width: 4px;
    height: 10px;
    border-radius: 50%;
    transform: rotate(45deg);
    background-color: #ffffff;
    opacity: .5;
}
.icon {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}
@media (max-width: 1023px) {
    .utp_row {
        flex-direction: column;
    }
}
@media (max-width: 414px) {
    .utp__block {
        font-size: 18px;
    }
    .icon {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
}

/* -------About------- */
.about {
    display: flex;
    justify-content: center;
    background-color: #212121;
}
.about__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    margin: 120px 0px;
}
@media (max-width: 414px) {
    .about__text {
        margin: 60px 0px;
        font-size: 16px;
    }
}

/* ------------USLUGI------------- */
.uslugi {
    display: flex;
    justify-content: center;
    background-color: #819B76;
    padding: 0px 0px 120px 0px;
}
.uslugi_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.uslugi__title {
    margin: 60px 0px;
    text-align: center;
}
.uslugi__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
    justify-content: center;
}
.uslugi__block {
    padding: 0px 10px;
    flex: 0 1 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.uslugi__img {
    position: relative;
    z-index: 5;
}
.uslugi__content {
    position: relative;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    padding: 60px 30px 60px 30px;
    margin: -40px;
    background-color: rgba(129, 155, 118, .5);
    backdrop-filter: blur(4px);
    border-radius: 30px 30px 30px 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: .5s;
}
.uslugi__title_content {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}
.uslugi__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 200%;
    text-align: center;
    line-height: 180%;
    margin-top: 20px;
    color: #ffffff;
}
._line_uslugi {
    margin-top: 20px;
}
.uslugi__price {
    position: relative;
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #819B76;
    border-radius: 40px;
    margin-top: 20px;
}

.uslugi__price span {
    font-weight: 700;
    font-size: 32px;
}

.uslugi_btn {
    margin-top: 20px;
    width: 260px;
}

@media (max-width: 1269px) {
    .uslugi__title {
        margin: 40px 0px;
    }
}
@media (max-width: 414px) {
    .uslugi__block {
        padding: 0px 10px;
        flex: 0 1 100%;
    }
    .uslugi__img img {
        width: 100%;
        height: 100%;
    }
    .uslugi__content {
        padding: 40px 10px 40px 10px;
        border-radius: 15px;
        width: 100%;
    }
    .uslugi__title_content {
        font-size: 18px;
    }
    .uslugi__price span {
        font-size: 24px;
    }
}

/* ---------Gallery---------- */
.galleryOll {
    display: flex;
    justify-content: center;
    padding: 60px 0px 120px 0px;
}
.galleryOll__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery__title {
    margin-bottom: 40px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.gallery_img {
 width: 293px;
 height: 220px;
 border-radius: 15px;
}
.overlay {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 33, 33, 0.7);
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}
.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.overlay-image {
    max-height: 90%;
    max-width: 90%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    z-index: 1000;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 649px) {
    .gallery_img {
        width: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
    .galleryOll {
        padding: 40px 0px;
    }
}

/* ----------LAST SCREEN----------- */
.last {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}
.last_bgimg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.last_background {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.last_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.last__title {
    text-align: center;
}
.last__title h3 {
    font-size: 3vw;
}
@media (max-width: 1023px) {
    .last__title h3 {
        font-size: 5vw;
    }
}
@media (max-width: 767px) {
    .last__title h3 {
        font-size: 6vw;
    }
}
@media (max-width: 414px) {
    .last__title h3 {
        font-size: 8vw;
    }
}

/* -------------FOOTER-------------- */
.footer {
    background-color: #819B76;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px 0px;
}
.footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer__text {
    text-align: center;
    line-height: 150%;
}
.footer__private_policy {
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 700;
}

/* ----------POLICY-------------- */
.policy {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    padding: 90px 0px;
    
}
.policy_container p {
    line-height: 150%;
    
}