.slider-main {
    width: 100%;
    height: 500px;
    position: relative;
}

.swiper {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 6/2;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-slide picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customButton {
    width: 45px;
    height: 45px;
    background: #F56800;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: .4s;
}

.customButton img {
    width: 14px;
    height: 14px;
    transition: .4s;
}

.customButton:hover {
    background: #d75400;
}

.customButtonPrev {
    left: 15px;
}

.customButtonNext {
    right: 15px;
}

.slideText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
}

.slideTitle {
    font-size: 42px;
    margin-bottom: 15px;
    width: 540px;
}

.slideTitle span {
    color: #F56800;
}

.slideSubtitle {
    font-size: 16px;
    margin-bottom: 25px;
}

.slideBtnContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (min-width: 320px) and (max-width: 640px) {
    .swiper {
        aspect-ratio: 3/4;
    }
}

@media (max-width: 768px) {
    .slideText {
        width: calc(100% - 40px);
        padding: 0 20px;
    }

    .slideTitle {
        font-size: 24px;
        width: 100%;
    }

    .slideSubtitle {
        font-size: 14px;
    }

    .customButtonPrev,
    .customButtonNext {
        display: none;
    }
}

.swiper-pagination-bullet {
    background: #F56800 !important;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #F56800;
}

/* меню */

.menuTagContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.menuTagItem{
    padding: 8px 16px;
    background: #E6E9DB;
    border-radius: 100px;
    font-size: 14px;
    color: #154746;
    transition: .4s;
    cursor: pointer;
}

.menuTagItem:hover{
    background: #103a39;
    color: #fff;
}

.menuTagItemActive{
    background: #103a39;
    color: #fff;
}

@media(min-width: 320px) and (max-width: 550px){
    .menuTagContainer{
        gap: 10px;
    }
}

.aboutContainer{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.aboutInfo{
    flex: 1;
}

.aboutInfo h2{
    color: #131313;
    font-size: 36px;
    margin-bottom: 10px;
}

.aboutInfo p{
    font-size: 16px;
    color: #575757;
    margin-top: 20px;
}

.aboutImg{
    width: 520px;
}

.aboutImg img{
    width: 100%;
    border-radius: 10px;
}

.aboutMap{
    margin-top: 25px;
    overflow: hidden;
    border-radius: 20px;
    height: 360px;
}

@media(min-width: 320px) and (max-width: 720px){
    .aboutContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .aboutInfo{
        text-align: center;
        width: 100%;
        flex: 1;
    }

    .aboutInfo h2{
        font-size: 24px;
        margin-bottom: 10px;
    }

    .aboutInfo p{
        font-size: 14px;
        margin-top: 10px;
    }

    .aboutImg{
        width: 100%;
    }

    .aboutImg img{
        width: 100%;
    }

    .aboutMap{
        margin-top: 25px;
        overflow: hidden;
        border-radius: 20px;
        height: 360px;
    }
}

@media(min-width: 720px) and (max-width: 980px){
    .aboutImg{
        width: 320px;
    }
}