/*---------------------- VARIABLES ----------------------*/
:root {
    --black: #1A1E21;
    --gray: #666666;
    --light-gray: #B8B8B8;
    --yellow: #D6DF78;
    --error: #F9335E;
    --container-1720-width: 1720px;
    --fira-sans: 'Fira Sans';
    --panel-height: 39px;
    --header-height: 107px;
}

@media screen and (max-width: 1800px) {
	:root {
		--container-1720-width: 1550px;
	}
}

@media screen and (max-width: 1600px) {
	:root {
		--container-1720-width: 1320px;
	}
}

@media screen and (max-width: 1400px) {
	:root {
		--container-1720-width: 1140px;
	}
}

@media screen and (max-width: 1200px) {
    :root {
        --container-1720-width: 960px;
    }
}

@media screen and (max-width: 992px) {
    :root {
        --container-1720-width: 720px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --container-1720-width: 540px;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --container-1720-width: 100%;
        --header-height: 70px;
    }
}

.not-scrollable {
    overflow: hidden;
    height: 100dvh;
}

/*---------------------- CONTAINER-1720 ----------------------*/

.container-1720 {
    width: 100%;
    max-width: var(--container-1720-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
    padding-right: 0px;
}

@media screen and (max-width: 576px) {
    .container-1720 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.container-1720 .container-1720 {
    padding-left: 0;
    padding-right: 0;
}

/*---------------------- FONT-STYLES ----------------------*/

.fira-sans-70 {
    font-family: var(--fira-sans), sans-serif;
    font-size: 70px;
    font-weight: 900;
    line-height: 130%;
}

.fira-sans-60 {
    font-family: var(--fira-sans), sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 140%;
}

.fira-sans-50 {
    font-family: var(--fira-sans), sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 140%;
}

@media screen and (max-width: 1200px) {
    .fira-sans-70,
    .fira-sans-60,
    .fira-sans-50 {
        font-size: 40px;
    }
}

@media screen and (max-width: 576px) {
    .fira-sans-70,
    .fira-sans-60,
    .fira-sans-50 {
        font-size: 25px;
    }
}

.fira-sans-40 {
    font-family: var(--fira-sans), sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 140%;
}

@media screen and (max-width: 576px) {
    .fira-sans-40 {
        font-size: 25px;
    }
}

.fira-sans-38 {
    font-family: var(--fira-sans), sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 140%;
}

@media screen and (max-width: 576px) {
    .fira-sans-38 {
        font-size: 25px;
    }
}

.fira-sans-22 {
    font-family: var(--fira-sans), sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
}

@media screen and (max-width: 576px) {
    .fira-sans-22 {
        font-size: 20px;
    }
}

.fira-sans-20 {
    font-family: var(--fira-sans), sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
}

@media screen and (max-width: 576px) {
    .fira-sans-20 {
        font-size: 16px;
    }
}

.fira-sans-18 {
    font-family: var(--fira-sans), sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}

@media screen and (max-width: 576px) {
    .fira-sans-18 {
        font-size: 16px;
    }
}

.fira-sans-16 {
    font-family: var(--fira-sans), sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.uppertitle {
    text-transform: uppercase;
}

/*---------------------- BUTTONS ----------------------*/

.yellow-btn,
.black-btn {
    max-width: max-content;
    max-height: max-content;
    padding: 15px 25px;

    font-family: var(--fira-sans), sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none !important;
    border: none;

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}


.yellow-btn svg,
.black-btn svg {
    margin-left: 15px;
}

.yellow-btn svg path,
.black-btn svg path {
    transition: .3s;
}

.yellow-btn {
    background-color: var(--yellow);
    color: var(--black);
}

.black-btn {
    background-color: var(--black);
    color: #fff;
}

@media screen and (hover:hover) {
    .yellow-btn:hover,
    .yellow-btn:focus-visible {
        background-color: var(--black);
        color: #fff;
    }

    .yellow-btn:hover path,
    .yellow-btn:focus-visible path {
        fill: #fff;
        stroke: #fff;
    }

    .black-btn:hover,
    .black-btn:focus-visible {
        background-color: var(--yellow);
        color: var(--black);
    }

    .black-btn:hover path,
    .black-btn:focus-visible path {
        fill: var(--black);
        stroke: var(--black);
    }
}

/*---------------------- MM-SECTION ----------------------*/

.mm-section {
    margin-top: 100px;
}

@media screen and (max-width: 576px) {
    .mm-section {
        margin-top: 60px;
    }
}

.mm-section__heading {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 576px) {
    .mm-section__heading {
        margin-bottom: 20px;
    }
}

.mm-section__title {
    margin: 0;
    color: var(--black);
}

.mm-section__link {
    max-width: max-content;
    margin-left: 20px;
    color: var(--gray);
    display: block;
    text-decoration: none !important;
    transition: .3s;
}

.mm-section__link:hover,
.mm-section__link:focus-visible {
    color: var(--black);
}

/*---------------------- SWIPER ----------------------*/

.swiper-btns {
    display: flex;
}

.swiper-btn {
    width: 55px;
    height: 55px;
    padding: 0;
    border: none;
    cursor: pointer;
    transition: .3s;
}

.swiper-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.swiper-btn svg {
    width: 100%;
    height: 100%;
}

.swiper-btn rect,
.swiper-btn path {
    transition: .3s;
}

.swiper-btn:hover rect,
.swiper-btn:focus-visible rect {
    fill: var(--black);
}

.swiper-btn:hover path,
.swiper-btn:focus-visible path {
    stroke: #fff;
}

.pagination {
    width: 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
}

.swiper-pagination-bullets-dynamic.pagination {
    margin-left: auto;
    margin-right: auto;
    transform: none !important;
    display: block;
    
}

@media screen and (max-width: 576px) {
    .pagination {
        margin-top: 20px;
    }
}

.pagination__item {
    height: 8px;
    margin-right: 30px;
    flex: 1 1 0px;
    display: block;
    background: rgba(0, 0, 0, 0.10);
    cursor: pointer;
    transition: .3s;
}


.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--yellow) !important;
}

.swiper-pagination-bullets-dynamic .pagination__item {
    min-width: unset;
    width: 140px;
    height: 4px;
    margin: 0 15px;
    display: inline-block;
    flex: unset;
    position: relative;
}


.swiper-pagination-bullets-dynamic .active-prev,
.swiper-pagination-bullets-dynamic .active-next {
    height: 6px;
}

.swiper-pagination-bullets-dynamic .active-main {
   height: 8px;
}

@media screen and (max-width: 1800px) {
	.swiper-pagination-bullets-dynamic .pagination__item {
        width: 125px;
    }
}

@media screen and (max-width: 1600px) {
	.swiper-pagination-bullets-dynamic .pagination__item {
        width: 100px;
    }
}

@media screen and (max-width: 1400px) {
	.swiper-pagination-bullets-dynamic .pagination__item {
        width: 80px;
    }
}

@media screen and (max-width: 1200px) {
    .swiper-pagination-bullets-dynamic .pagination__item {
        width: 90px;
    }
}

@media screen and (max-width: 992px) {
    .swiper-pagination-bullets-dynamic .pagination__item {
        width: 60px;
    }
}

@media screen and (max-width: 768px) {
    .pagination__item {
        height: 5px;
        margin-right: 10px;
    }

    .swiper-pagination-bullets-dynamic .pagination__item {
        width: 70px;
        height: 2px;
        margin: 0 10px;
    }

    .swiper-pagination-bullets-dynamic .active-prev,
    .swiper-pagination-bullets-dynamic .active-next {
        height: 4px;
    }

    .swiper-pagination-bullets-dynamic .active-main {
        height: 6px;
    }
}

@media screen and (max-width: 576px) {
    .swiper-pagination-bullets-dynamic .pagination__item {
        width: 40px;
    }
}

.pagination__item:last-of-type {
    margin-right: 0;
}

.pagination__item:hover {
    background: rgba(214, 223, 120, .3);
}

.pagination__item.active {
    background: var(--yellow);
}