@charset "UTF-8";
@import url(font.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins';
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    width: 95%;
    margin-right: auto;
    margin-left: auto;
}

.topbar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid black;
    padding: 20px;
}

@media (max-width: 760px) {
    .topbar__content {
        flex-direction: column;
        align-items: start;
    }
}

.topbar__content-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 760px) {
    .topbar__content-block {
        margin-bottom: 40px;
    }
}

.topbar__content-block-location {
    background: #E2725B;
    width: 48px;
    height: 48px;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar__content-block-location i {
    color: white;
    font-size: 24px;
}

.topbar__content-block-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}



.topbar__content-block-info p {
    color: black;
    font-size: 15px;
    font-weight: 700;
}

.topbar__content-block-info a {
    width: 420px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.645);
}
.topbar__content-block-info a {
    width: 100%;
}


.topbar__content-block-info a span {
    color: black;
}

.topbar__content-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar__content-info-phone {
    background: #E2725B;
    width: 48px;
    height: 48px;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar__content-info-phone i {
    color: white;
    font-size: 24px;
}

.topbar__content-info-tel {
    gap: 5px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 470px) {
    .topbar__content-info-tel {
        text-align: center;
    }
}

.topbar__content-info-tel a {
    color: black;
    font-size: 18px;
    font-weight: 700;
}

.topbar__content-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.topbar__content-social i {
    color: rgb(226, 114, 91);
    font-size: 35px;
}

@media (max-width: 900px) {
    .topbar__content-social {
        display: none;
    }
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    /* Новые стили для aside меню */
}

.nav .header-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.nav .header-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(246, 164, 148);
    transform: translateX(100%) scale(0.85);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease, scale 0.5s ease;
    z-index: -1;
    border-radius: 16px;
}

.nav.scrolled .header-container::before {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.nav.scrolled .logo {
    color: white;
}

.nav.scrolled .desktop-nav a {
    color: white;
}

.nav.scrolled .cta-button {
    background-color: white;
    color: black;
}

.nav.scrolled .hamburger span {
    background-color: white;
}

.nav .logo {
    font-weight: bold;
    font-size: 24px;
    color: #000;
    transition: color 0.3s ease;
    z-index: 1;
}

.nav .logo-select select {
    width: 75px;
    height: 40px;
    background: rgb(226, 114, 91);
    border-radius: 15px;
    border: 2px solid rgb(226, 114, 91);
    color: white;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
}

@media (max-width: 355px) {
    .nav .logo-select select {
        width: 65px;
        height: 30px;
    }
}

.nav .desktop-nav {
    display: flex;
    gap: 32px;
}

.nav .desktop-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 20px;
    transition: color 0.3s ease;
    z-index: 1;
}

.nav .button-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav .cta-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.nav .cta-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.nav .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
}

.nav .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #000;
    transition: all 0.3s ease;
}

.nav .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav .hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav .mobile-aside {
    position: fixed;
    top: 0;
    left: -280px;
    /* Меняем right на left */
    width: 280px;
    height: 100vh;
    background: #f8f4f0;
    /* Светлый бежевый фон */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: left 0.3s ease;
    /* Меняем right на left */
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    /* Тень справа */
    -webkit-overflow-scrolling: touch;
    /* Плавный скролл на iOS */
}

.nav .mobile-aside.open {
    left: 0;
    /* Меняем right на left */
}

.nav .mobile-aside::-webkit-scrollbar {
    width: 6px;
}

.nav .mobile-aside::-webkit-scrollbar-thumb {
    background: rgba(226, 114, 91, 0.5);
    border-radius: 3px;
}

.nav .mobile-aside::before {
    content: "";
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav .mobile-aside.open::before {
    opacity: 1;
}

.nav .aside-content {
    padding: 70px 20px 30px;
    /* Увеличиваем нижний отступ */
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: calc(100vh + 1px);
    /* Гарантируем возможность скролла */
}

.nav .aside-content a {
    color: #333;
    /* Тёмный текст */
    text-decoration: none;
    font-size: 18px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav .aside-content a:hover {
    background: rgba(226, 114, 91, 0.1);
    color: #e2725b;
}

.nav .aside-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav .aside-social a {
    color: #555;
    font-size: 22px;
    transition: color 0.2s;
}

.nav .aside-social a:hover {
    color: #e2725b;
}

.nav .close-aside {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #555;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s;
}

.nav .close-aside:hover {
    color: #e2725b;
    transform: rotate(90deg);
}

.nav .aside-content {
    padding: 70px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav .aside-content a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s;
}

.nav .aside-content a:hover {
    color: #e2725b;
}

.nav .aside-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.nav .aside-social a {
    color: white;
    font-size: 22px;
    border: none;
}

.nav .aside-social a:hover {
    color: #e2725b;
}

.nav .close-aside {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s;
}

.nav .close-aside:hover {
    color: #e2725b;
    transform: rotate(90deg);
}

@media (max-width: 900px) {
    .nav .desktop-nav {
        display: none;
    }

    .nav .hamburger {
        display: block;
    }

    .nav .cta-button {
        display: none;
    }

    .nav .header-container {
        padding: 12px 16px;
    }
}

.header {
    height: auto;
    background-image: url(../img/tandiroo.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 10px;
    padding: 100px;
    background-color:black;
}

@media (max-width: 1190px) {
    .header-h1 h1 {
        font-size: 65px;
    }
}

@media (max-width: 481px) {
    .header-h1 h1 {
        font-size: 45px;
        font-weight: 400;
    }
}

@media (max-width: 390px) {
    .header-h1 h1 {
        font-size: 33px;
    }
}

.header__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    z-index: 1;
}

.header__content h3 {
    text-align: center;
    color: white;
    font-size: 40px;
    font-weight: 700;

}

@media (max-width: 1190px) {
    .header__content h3 {
        font-size: 35px;
    }
}

@media (max-width: 892px) {
    .header__content h3 {
        font-size: 25px;
    }
}

@media (max-width: 694px) {
    .header__content h3 {
        font-size: 20px;
        font-weight: 400;
    }
}

@media (max-width: 694px) {
    .header__content h3 {
        font-size: 18px;
        font-weight: 700;
    }
}

.header__content-block {
    width: 756px;
    max-width: 100%;
    height: 61px;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 35px;
    padding: 10px;
}

@media (max-width: 585px) {
    .header__content-block {
        height: 80px;
    }
}

@media (max-width: 474px) {
    .header__content-block {
        width: 400px;
        max-width: 300px;
    }
}

@media (max-width: 474px) {
    .header__content-block {
        width: 400px;
        max-width: 250px;
    }
}

.header__content-block h4 {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

@media (max-width: 841px) {
    .header__content-block h4 {
        font-size: 18px;
    }
}

@media (max-width: 841px) {
    .header__content-block h4 {
        font-size: 15px;
    }
}

@media (max-width: 661px) {
    .header__content-block h4 {
        font-size: 13px;
        font-weight: 700;
        text-align: center;
    }
}

.header__content button {
    width: 330px;
    height: 60px;
    border-radius: 100px;
    background: none;
    color: white;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    margin-top: 60px;
    cursor: pointer;
    gap: 20px;
    transition: 0.3s linear;
}

@media (max-width: 440px) {
    .header__content button {
        width: 280px;
        height: 50px;
        font-size: 20px;
        margin-top: 30px;
    }
}

.header__content button i {
    font-size: 25px;
}

.header__content button:hover {
    box-shadow: -1px 1px 7px 6px;
}

.main .about {
    margin-bottom: 100px;
    margin-top: 150px;
}

.main .about .mySwiper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main .about .swiper-pagination {
    margin-top: 20px;
}

.main .about .swiper {
    width: 505px;
    height: 372px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 40px;
}

.main .about .swiper-wrapper {
    align-items: center;
}

.main .about .swiper-slide {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
}

.main .about .swiper-slide img {
    width: 504px;
    height: 372px;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 1245px) {
    .main .about .swiper-slide img {
        width: 100%;
        height: 600px;
    }
}

.main .about .swiper-slide-img2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 470px;
    height: 349px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 590px) {
    .main .about {
        margin-top: 80px;
    }
}

.main .about__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1235px) {
    .main .about__content {
        flex-direction: column-reverse;
    }
}

.main .about__content-block {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
}

@media (max-width: 380px) {
    .main .about__content-block {
        align-items: center;
        justify-content: center;
    }
}

.main .about__content-block h2 {
    font-size: 30px;
    font-weight: 700;
    color: rgb(26, 32, 44);
}

@media (max-width: 430px) {
    .main .about__content-block h2 {
        font-size: 30px;
    }
}

@media (max-width: 380px) {
    .main .about__content-block h2 {
        font-size: 25px;
        text-align: center;
    }
}

.main .about__content-block p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(168, 128, 120);
    width: 800px;
}
.main .about__content-block h5 {
    font-size: 16px;
    font-weight: 400;


}
@media (max-width:380px) {
    .main .about__content-block h5 {
      text-align: center;


    }
}

@media (max-width: 776px) {
    .main .about__content-block p {
        width: auto;
    }
}

@media (max-width: 555px) {
    .main .about__content-block p {
        font-size: 17px;
    }
}

@media (max-width: 380px) {
    .main .about__content-block p {
        font-size: 15px;
        text-align: center;
    }
}

.main .about__content-btn button {
    background: white;
    width: 212px;
    color: rgb(226, 114, 91);
    font-size: 18px;
    font-weight: 400;
    border-radius: 10px;
    height: 35px;
    cursor: pointer;
    border: 1px solid white;
    margin-top: 30px;
}

.main .about__content-block-bg {
    width: 69px;
    height: 4px;
    background: linear-gradient(225deg, #FFAE9D 0%, #E2725B 100%);
}

.main .about__content-radial {
    position: relative;
}

.main .about__content-radial-bg1 {
    position: absolute;
    bottom: 610px;
    z-index: -1;
    width: 72px;
    height: 72px;
    background: linear-gradient(225deg, #FFAE9D 0%, #E2725B 100%);
    border-radius: 50px;
}

@media (max-width: 1245px) {
    .main .about__content-radial-bg1 {
        display: none;
    }
}

.main .types {
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
   height: auto;
    padding: 30px;
}

@media (max-width: 1061px) {
    .main .types {
        height: auto;
        padding: 40px;
    }
}

.main .types h2 {
    text-align: center;
    color: white;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
}

.main .types__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}






.main .types__content-block {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    width: 255px;
    height: 241px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 15px;
    background: rgb(255, 255, 255);
    cursor: pointer;
    transition: 0.3s linear;
}
.main .types__content-block>img{
    width: 101px;
    height: 101px;
}

.main .types__content-block:hover {
    transform: translateY(-10px);
}

.main .types__content-block p {
    font-size: 20px;
    font-weight: 700;
}

.main .size {
    margin-top: 70px;
    margin-bottom: 100px;
}

.main .size h1 {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
}

.main .size__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 100px;
}

@media (max-width: 935px) {
    .main .size__content {
        flex-direction: column;
    }
}

.main .size__content-block {
    width: 447px;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 100%;
    height: 775px;
    border: 2px solid rgb(170, 170, 170);
    border-radius: 15px;

}

@media (max-width: 410px) {
    .main .size__content-block {
        height: auto;
    }
}

.main .size__content-block h2 {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
}

.main .size__content-block h4 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: rgb(255, 94, 0);
    margin-bottom: 20px;
}

.main .size__content-info {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

.main .size__content-info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main .size__content-info-block p {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;

    gap: 10px;
    font-size: 20px;
    font-weight: 400;
    color: rgb(168, 128, 119);
}

@media (max-width: 405px) {
    .main .size__content-info-block p {
        font-size: 15px;
    }
}

.main .size__content-info-block p i {
    color: rgb(0, 186, 12);
}

.main .swiper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.main .swiper-wrapper {
    display: flex;
}

.main .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 370px;
}

.main .swiper-slide-img2 {
    padding-top: 10px;
    width: 370px;
    height: 249px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .swiper-slide-img2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 430px) {
    .main .swiper-slide,
    .main .swiper-slide-img2 {
        width: 300px;
        height: 200px;
    }
}

.main .gallery .accordion {
    max-width: 1200px;
    margin: 0 auto;

h1 {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 50px;
}

}
.main .gallery .accordion-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.15);
    overflow: hidden;
}

.main .gallery .accordion-item.active .accordion-header {
    border-bottom: 2px solid #3498db;
}

.main .gallery .accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.main .gallery .accordion-item.active .accordion-content {
    max-height: 5000px;
    padding: 30px;
}

.main .gallery .accordion-header {
    padding: 1.5rem;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.main .gallery .accordion-header:hover {
    background-color: #f8f9fa;
}

.main .gallery .accordion-header h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    width: 100%;
}

.main .gallery .accordion-arrow {
    font-size: 0.8rem;
    color: #3498db;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.main .gallery .accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.main .gallery .accordion-content .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.main .gallery .accordion-content .image-grid img {
    width: 260px;
    height: 345px;

    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.main .gallery .accordion-content .image-grid img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .main .gallery .accordion-content .image-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        justify-items: center;
    }

    .main .gallery .accordion-content .image-grid img {
        height: 250px;
        width: 100%;
        max-width: 250px;
        -o-object-fit: contain;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .main .gallery .accordion-content .image-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
    }

    .main .gallery .accordion-content .image-grid img {
        width: 200px;
        height: auto;
        max-height: 200px;
        margin: 0 auto;
    }
}

.main .order {
    margin-top: 50px;
    background-image: url(../img/forests.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main .order__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    /* Уменьшаем отступ между заголовком и кнопкой */
    padding: 80px 20px;
    /* Уменьшаем padding (сверху-снизу 80px, по бокам 20px) */
}

@media (max-width: 900px) {
    .main .order__content {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .main .order__content {
        padding: 40px 15px;
        gap: 15px;
    }
}

@media (max-width: 375px) {
    .main .order__content {
        padding: 30px 10px;
        gap: 12px;
    }
}

.main .order__content h1 {
    color: white;
    font-size: 35px;
    width: 879px;
    max-width: 100%;
    font-weight: 700;
    text-align: center;
    margin: 0;
    /* Убираем лишние отступы */
    line-height: 1.3;
    /* Оптимальный межстрочный интервал */
}

@media (max-width: 900px) {
    .main .order__content h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .main .order__content h1 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .main .order__content h1 {
        font-size: 22px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .main .order__content h1 {
        font-size: 20px;
    }
}

@media (max-width: 375px) {
    .main .order__content h1 {
        font-size: 18px;
    }
}

@media (max-width: 320px) {
    .main .order__content h1 {
        font-size: 17px;
        /* Минимальный читаемый размер */
    }
}

.main .order__content button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 330px;
    max-width: 100%;
    /* Чтобы не вылезал за экран */
    height: 60px;
    background: none;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 100px;
    color: white;
    font-size: 22px;
    font-weight: 400;
    transition: 0.3s linear;
    padding: 0 20px;
    /* Добавляем внутренние отступы */
}

@media (max-width: 768px) {
    .main .order__content button {
        width: 280px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .main .order__content button {
        width: 240px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .main .order__content button {
        width: 200px;
        height: 40px;
        font-size: 12px;
    }
}

.main .order__content button:hover {
    box-shadow: -1px 1px 7px 6px rgba(255, 255, 255, 0.3);
}

.main .advantages {
    margin-top: 100px;
    background: #FDFBFB;
    max-height: auto;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25) inset;
    padding: 40px;
}

.main .advantages h1 {
    padding-top: 50px;
    text-align: center;
    font-size: 45px;
    font-weight: 700;
}

.main .advantages__content {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

@media (max-width: 1105px) {
    .main .advantages__content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.main .advantages__content img {
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.main .advantages__content-block {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
}

.main .advantages__content-block h2 {
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 475px) {
    .main .advantages__content-block h2 {
        text-align: center;
    }
}

.main .advantages__content-block h2 span {
    color: rgb(226, 114, 91);
}

.main .advantages__content-block-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.main .advantages__content-block-info i {
   color: lightgreen;
    font-size: 35px;
}



@media (max-width: 475px) {
    .main .advantages__content-block-info-bg {
        max-width: 100%;
    }
}

.main .advantages__content-block-info-bg i {
    font-size: 30px;
    color: white;
}

.main .advantages__content-block-info p {
    font-size: 25px;
    font-weight: 700;
    color: rgb(0, 0, 0);
}

@media (max-width: 475px) {
    .main .advantages__content-block-info p {
        font-size: 20px;
    }
}

.main .advantages-images {
    position: relative;
}

.main .advantages-images-img1 {
    position: absolute;
    bottom: 100px;
}

.main .advantages-images-img2 {
    position: absolute;
    right: 100px;
    bottom: 50px;
}

.main .advantages-images-img3 {
    position: absolute;
    right: 50px;
    bottom: 400px;
}

.main .advantages-images-img4 {
    position: absolute;
    bottom: 670px;
    left: 350px;
}

@media (max-width: 560px) {
    .main .advantages-images-img4 {
        display: none;
    }
}

.main .information h1 {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    margin-top: 100px;
    margin-bottom: 90px;
}

@media (max-width: 383px) {
    .main .information h1 {
        font-size: 40px;
    }
}

.main .information__content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 40px;
}

@media (max-width: 1115px) {
    .main .information__content {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }
}

.main .information__content img {
    max-width: 100%;
}

.main .information__content-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main .information__content-block h2 {
    font-size: 35px;
    font-weight: 700;
}

@media (max-width: 470px) {
    .main .information__content-block h2 {
        font-size: 30px;
    }
}

@media (max-width: 378px) {
    .main .information__content-block h2 {
        font-size: 25px;
    }
}

.main .information__content-block h2 span {
    color: rgb(226, 114, 91);
}

.main .information__content-block-link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    list-style-position: inside;
}

@media (max-width: 470px) {
    .main .information__content-block-link {
        font-size: 15px;
    }
}

.main .pitzza {
    margin-top: 50px;
}

.main .pitzza__content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (max-width: 1115px) {
    .main .pitzza__content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

.main .pitzza__content img {
    max-width: 100%;
}

.main .pitzza__content-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main .pitzza__content-block h2 {
    font-size: 35px;
    font-weight: 700;
}

@media (max-width: 470px) {
    .main .pitzza__content-block h2 {
        font-size: 30px;
    }
}

@media (max-width: 378px) {
    .main .pitzza__content-block h2 {
        font-size: 25px;
    }
}

.main .pitzza__content-block h2 span {
    color: rgb(226, 114, 91);
}

.main .pitzza__content-block-link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    list-style-position: inside;
}

@media (max-width: 470px) {
    .main .pitzza__content-block-link {
        font-size: 15px;
    }
}

.main .oven {
    margin-top: 100px;
    background: rgb(253, 251, 251);
}

.main .oven__content {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.main .oven__content-block {
    width: 700px;
    max-width: 100%;
    position: relative;
    padding-bottom: 52%;
    height: 0;
}

.main .oven__content-block iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.main .oven__content-info {
    width: 700px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.main .oven__content-info h2 {
    font-size: 35px;
    font-weight: 700;
}

@media (max-width: 485px) {
    .main .oven__content-info h2 {
        font-size: 30px;
    }
}

.main .oven__content-info h4 {
    font-size: 25px;
    font-weight: 700;
}

@media (max-width: 485px) {
    .main .oven__content-info h4 {
        font-size: 22px;
    }
}

.main .oven__content-info p {
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 1285px) {
    .main .oven__content {
        flex-direction: column;
        padding: 30px;
    }

    .main .oven__content-block, .main .oven__content-info {
        width: 100%;
        max-width: 100%;
    }

    .main .oven__content-block {
        padding-bottom: 56.25%;
    }
}

@media (max-width: 768px) {
    .main .oven__content {
        padding: 20px;
        gap: 20px;
    }

    .main .oven__content-info {
        gap: 20px;
    }

    .main .oven__content-info h2 {
        font-size: 28px;
    }

    .main .oven__content-info h4 {
        font-size: 20px;
    }

    .main .oven__content-info p {
        font-size: 16px;
    }

    .main .oven__content-block {
        padding-bottom: 56.25%;
    }
}

@media (max-width: 480px) {
    .main .oven__content {
        padding: 15px;
    }

    .main .oven__content-info h2 {
        font-size: 24px;
    }

    .main .oven__content-info h4 {
        font-size: 18px;
    }

    .main .oven__content-info p {
        font-size: 14px;
    }

    .main .oven__content-block {
        padding-bottom: 56.25%;
    }
}

.contact__content {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-top: 70px;
}

@media (max-width: 1025px) {
    .contact__content {
        flex-direction: column;
    }
}

.contact__content-block {
    max-width: 100%;
    width: 792px;
    height: 506px;
    border-radius: 0px 15px 15px 0px;
    background: rgba(226, 114, 91, 1);
    display: flex;
    padding-top: 50px;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    position: absolute;
    left: 0;
    z-index: 1;
}

@media (max-width: 1325px) {
    .contact__content-block {
        width: 500px;
    }
}

@media (max-width: 1025px) {
    .contact__content-block {
        position: relative;
        width: 100%;
        border-radius: 15px !important;
        text-align: center;
        justify-content: space-evenly;
        gap: 15px;
        padding-top: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 565px) {
    .contact__content-block {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .contact__content-block {
        height: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.contact__content-block-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 565px) {
    .contact__content-block-info {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

.contact__content-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.contact__content-block p {
    width: 480px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: white;
    font-weight: 400;
    z-index: 1;
}

@media (max-width: 1025px) {
    .contact__content-block p {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 460px) {
    .contact__content-block p {
        flex-direction: column;
    }
}

.contact__content-block p i {
    font-size: 24px;
}

.contact__content-block a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: white;
    font-weight: 400;
}
.contact__content-block-info-href{
    width: 500px;
}
@media (max-width:565px) {
    .contact__content-block-info-href{
        width: 100%;
    }
}

@media (max-width: 1025px) {
    .contact__content-block a {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 460px) {
    .contact__content-block a {
        flex-direction: column;
    }
}

.contact__content-block a i {
    font-size: 24px;
}

.contact__content-block-icon {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.contact__content-block-icon i {
    font-size: 35px;
    color: white;
}

.contact__content-block-bg {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: -1;
}

@media (max-width: 520px) {
    .contact__content-block-bg {
        top: 80px;
    }
}

.contact__content-block-bg > img:nth-child(1) {
    height: 450px;
}

@media (max-width: 520px) {
    .contact__content-block-bg > img:nth-child(1) {
        width: 200px;
        height: 100%;
    }
}

@media (max-width: 440px) {
    .contact__content-block-bg > img:nth-child(1) {
        width: 150px;
    }
}

.contact__content-block-bg > img:nth-child(2) {
    top: 100px;
    right: -200px;
    position: absolute;
}

@media (max-width: 440px) {
    .contact__content-block-bg > img:nth-child(2) {
        top: 180px;
    }
}

@media (max-width: 380px) {
    .contact__content-block-bg > img:nth-child(2) {
        width: 100px;
        right: -100px;
    }
}

.contact__content .singup {
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-weight: bold;
    font-size: 15px;
    margin-top: 1.5em;
}

.contact__content .card {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    width: 100%;
    max-width: 700px;
    flex-direction: column;
    gap: 35px;
    border-radius: 8px;
    padding: 0 15px;
}

@media (max-width: 1580px) {
    .contact__content .card {
        max-width: 500px;
    }
}

@media (max-width: 1025px) {
    .contact__content .card {
        max-width: 100%;
        margin-top: 50px;
    }
}

.contact__content .card .inputBox,
.contact__content .card .inputBox1 {
    position: relative;
    width: 100%;
}

.contact__content .card .inputBox input,
.contact__content .card .inputBox1 input {
    width: 100%;
    padding: 10px;
    outline: none;
    border: none;
    color: #000;
    font-size: 1em;
    background: transparent;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transition: 0.1s;
    border-bottom-left-radius: 8px;
}

.contact__content .card .inputBox input::placeholder,
.contact__content .card .inputBox1 input::placeholder {
    opacity: 0;
    transition: opacity 0.3s;
}

.contact__content .card .inputBox input:focus::placeholder,
.contact__content .card .inputBox input:valid::placeholder,
.contact__content .card .inputBox1 input:focus::placeholder,
.contact__content .card .inputBox1 input:valid::placeholder {
    opacity: 1;
}

.contact__content .card .inputBox input:valid,
.contact__content .card .inputBox input:focus,
.contact__content .card .inputBox1 input:valid,
.contact__content .card .inputBox1 input:focus {
    border: 2px solid #000;
    border-radius: 8px;
}

.contact__content .card .inputBox input ~ span,
.contact__content .card .inputBox1 input ~ span {
    margin-top: 5px;
    position: absolute;
    left: 0;
    transform: translateY(-4px);
    margin-left: 10px;
    padding: 10px;
    pointer-events: none;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 3px;
    border-radius: 8px;
}

.contact__content .card .inputBox input:valid ~ span,
.contact__content .card .inputBox input:focus ~ span,
.contact__content .card .inputBox1 input:valid ~ span,
.contact__content .card .inputBox1 input:focus ~ span {
    transform: translateY(-25px);
    font-size: 0.8em;
    padding: 5px 10px;
    background: #000;
    letter-spacing: 0.2em;
    color: #fff;
}

.contact__content .enter {
    height: 45px;
    width: 150px;
    border-radius: 25px;
    border: 1px solid blue;
    background-color: #f4f4f4;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    align-self: flex-start;
}

.contact__content .enter:hover {
    background: rgba(66, 117, 250, 1);
    color: white;
}

@media (max-width: 480px) {
    .contact__content .card {
        width: 100%;
        padding: 0 10px;
        gap: 20px;
    }

    .contact__content .card .inputBox input,
    .contact__content .card .inputBox1 input {
        font-size: 0.9em;
        padding: 8px;
    }

    .contact__content .card .inputBox input ~ span,
    .contact__content .card .inputBox1 input ~ span {
        font-size: 10px;
        padding: 4px 8px;
        letter-spacing: 1px;
    }

    .contact__content .enter {
        width: auto;
        padding: 10px 20px;
        font-size: 12px;
    }

    .contact__content .singup {
        font-size: 13px;
        margin-top: 1em;
    }
}

.main .map {
    margin-top: 100px;
}

.main .map iframe {
    width: 100%;
}

.main .map a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: black;
}

.main .map a i {
    font-size: 20px;
}

.footer {
    background: rgb(34, 34, 34);
    height: auto;
}

.footer .powered {
    margin-top: 60px;
    width: 100%;
}

.footer .powered__content {
    padding: 60px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@media (max-width: 1160px) {
    .footer .powered__content {
        flex-direction: column;
        gap: 25px;
    }
}

.footer .powered__content h1 {
    font-size: 90px;
    font-weight: 700;
    color: white;
}

@media (max-width: 425px) {
    .footer .powered__content h1 {
        font-size: 68px;
    }
}

.footer .powered__content-block, .footer .powered__content-info, .footer .powered__content-info2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 200px;
}

.footer .powered__content-block p, .footer .powered__content-block a, .footer .powered__content-info p, .footer .powered__content-info a, .footer .powered__content-info2 p, .footer .powered__content-info2 a {
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
}

.footer .powered__content-block a, .footer .powered__content-info a, .footer .powered__content-info2 a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .powered__content-block a i, .footer .powered__content-info a i, .footer .powered__content-info2 a i {
    font-size: 34px;
}

.footer .powered__content-block p, .footer .powered__content-info p, .footer .powered__content-info2 p {
    font-weight: 600;
}

.footer .powered h5 {
    text-align: center;
    color: white;
    padding: 10px 0;
}

/*# sourceMappingURL=style.css.map */
