* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
}

html,
body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.hero .slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    min-height: 100%;
}

.hero .slidhero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero .slidhero.active {
    opacity: 1;
    z-index: 1;
}

.hero .slidhero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .slider__content {
    position: absolute;
    bottom: 42%;
    left: 10%;
    color: #fff;
}

.hero .slider__content h1 {
    font-size: 3rem;
    margin: 10px 0;
}

.btn {
    background: rgb(223, 177, 99);
    color: #302e2e;
    padding: 10px 40px;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.btn:hover {
    background: rgb(105, 81, 38);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Мобільне меню */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 200px;
        display: none;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .nav ul li {
        list-style: none;
        color: #000000;
    }

    .nav ul li a {
        text-decoration: none;
        color: #000000;
    }
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}


.slideser {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
    margin: 10px;
    border-radius: 10px;
}

.slideser img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.header {
    background-color: #000;

}

.header__top .container {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    gap: 20px;
}

.header__top ul {
    display: flex;
    gap: 10px;

}

.header__top ul li {
    color: #fff;
}

.container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 10px;
}

.header__center .container {
    padding: 10px 16px 10px 48px;
    background-color: #252531;
    display: flex;
    align-items: center;
    margin-bottom: -29px;
    position: relative;
    z-index: 11;
    gap: 20px;
    justify-content: space-between;
}

.header__center ul {
    display: flex;
    gap: 20px;
}

.header__center ul li a {
    color: #fff;
}

.logo {
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
}

.logo span {
    color: rgb(223, 177, 99);
    text-transform: lowercase;
}

.header__bottom {
    background-color: #fff;
}

.header__bottom-list {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 40px 0 20px;
}

.header__bottom-item {
    display: flex;
    gap: 20px;

    align-items: center;
}

.header__bottom-content {
    display: flex;
    flex-direction: column;

}

.header__bottom-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.header__bottom-content span {
    font-size: 16px;
    color: #777;
    font-weight: 300;
}

.header__bottom-icon i {
    font-size: 40px;
    color: rgb(223, 177, 99)
}
.about{
    padding-bottom: 50px;
}
.about__items {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.about__item1 {
    width: 100%;
    padding: 40px 20px;
    max-width: 445px;
    display: flex;

    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background-color: rgb(223, 177, 99)
}

.about__item1 i {
    font-size: 96px;
    color: #000;
}

.about__item1 span {
    font-size: 72px;
    color: #050505;
}

.about__item1 h2 {
    font-size: 40px;
}

.about__item2 {
    padding: 40px 0;
}

.sub {
    color: rgb(223, 177, 99);
    font-weight: 400;
    margin-bottom: 16px;
    font-size: 16px;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    padding-left: 20px;
    margin-bottom: 30px;
}

p {
    color: #777;
}

.about__item2 ul {
    display: grid;
    margin-top: 50px;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.about__item2 ul i {
    font-size: 40px;
    color: rgb(223, 177, 99)
}

.about__item2 ul li {
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
}

.service {
    padding: 50px 0;
}

.service .container {
    display: flex;
    gap: 40px;
}

.service__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sliderser {
    flex: 1;
}

.slideser {

    background-color: rgb(243, 246, 255);
    padding: 20px;
    align-items: center;
    border: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slideser i {
    font-size: 72px;
    color: rgb(223, 177, 99);
    margin-bottom: 20px;
}

.slideser span {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.slideser p {
    text-align: center;
    color: #777;
}

.sliderser {
    width: 100%;
    max-width: 500px;
    flex: 1;
}

.choses {
    padding: 50px 0;
}

.chose .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.chose .container img {
    width: 100%;
    display: block;
    flex: 1;
    max-width: 450px;
    height: 620px;
    object-fit: cover;
}

.chose__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chose__content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chose__content ul li {
    display: flex;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    align-items: center;
}

.chose__content ul li i {
    font-size: 21px;
    color: rgb(223, 177, 99);
}

.gallery__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.gallery {
    padding: 100px 0;
}

.gallery__item img {
    height: 275px;
    width: 100%;
    object-fit: cover;
}

.gallery__item a {
    text-decoration: none;
    color: inherit;
    margin: 0;
    padding: 0;
    display: flex;
}

.team .container {
    display: flex;
    gap: 40px;
}

.team__head {
    background-color: #DFB163;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 400px;
    flex-direction: column;
}

.team__head .sub {
    color: #fff;
}

.team .slide {
    display: flex;
    flex-direction: column;
}

.team__slider {
    flex: 1;
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team__wrap {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #000;
}

.team__wrap h4 {
    color: #fff;
    font-size: 20px;
}

.team__wrap span {
    color: #f7f5f5;
    font-size: 16px;
}

.team__slider img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog {
    padding: 50px 0;
}

.blog__items {
    display: flex;
    gap: 30px;
}

.blog__content-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog__content-wrap i {
    font-size: 16px;
    width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 42px;
    height: 42px;
    background-color: #DFB163;
}
.blog__item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.blog__items{
    margin-top: 50px;
}
.blog h2{
    text-align: center;
}
.footer{
    padding: 48px;
    background-color: #181818;
}
.footer__wrap{
    display: flex;
    gap: 40px;
}
.footer__w{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__w h3,
.footer__w span,
.footer__w i,
.copy{
    color: #fff;
}
.footer__w ul li{
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
}
.copy{
    text-align: center;
    margin-top: 40px;
}
@media screen and (max-width:768px) {
    .header__bottom-list{
        display: none;
    }
    .header__center .container {
        padding: 10px;
        background-color: #252531;
        display: flex
    ;
        align-items: center;
        margin-bottom: -29px;
        position: relative;
        z-index: 11;
        gap: 20px;
        justify-content: space-between;
    }
    .header__center ul li a {
        color: #000000;
    }
    .nav.active {
        display: flex
;
        height: 100vh;
    }
    .about__items {
        display: flex
    ;
        gap: 50px;
        align-items: stretch;
        flex-direction: column;
    }
    .service .container {
        display: flex
    ;
        gap: 40px;
        flex-direction: column;
    }
    .chose .container {
        display: flex
    ;
        gap: 40px;
        align-items: center;
        flex-direction: column;
    }
    .gallery__item img {
        height: 155px;
        width: 100%;
        object-fit: cover;
    }
    .gallery__items {
        display: grid
    ;
        grid-template-columns: repeat(2, 1fr);
    }
    .team .container {
        display: flex
    ;
        gap: 40px;
        flex-direction: column;
    }
    .team__slider {
        flex: 1;
        padding: 40px 0;
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .blog__items {
        display: flex
    ;
        gap: 30px;
        flex-direction: column;
    }
    .footer__wrap {
        display: flex
    ;
        gap: 40px;
        /* flex-direction: column; */
        flex-wrap: wrap;
    }
    .footer__w {
        flex: 100%;
        display: flex
    ;
        flex-direction: column;
        gap: 10px;
    }
    
}
.ab .about__items img{
width: 100%;
max-height: 400px;
object-fit: cover;
}
.ab.about .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.ab.about .container p{
    margin-bottom: 10px;
}
.service.ser .sliderser{
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;

}
.about.terms h2{
padding: 0;
margin: 0;
font-size:  28px;
}
.about.terms h1{
    padding: 0;
    margin: 0;
    font-size:  36px;
    }
    .terms .container{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .terms .container ul{
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-left: 20px;
        list-style: decimal;
    }
    .terms .container ul li{
        color: #777;
        font-size: 15px;
    }
    .cookie-banner {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: 400px;
        margin: auto;
        background: #fff;
        color: #333;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
        z-index: 9999;
        font-family: Arial, sans-serif;
        display: none;
        animation: fadeIn 0.3s ease-in-out;
      }
      .cookie-buttons {
        margin-top: 15px;
        display: flex;
        justify-content: space-between;
      }
      .cookie-buttons button {
        padding: 8px 16px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
      }
      #acceptCookies {
        background-color: #4caf50;
        color: white;
      }
      #declineCookies {
        background-color: #f44336;
        color: white;
      }
      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }