body.no-scroll {
    overflow-y: hidden;
}

section, .main-container {
    padding: 30px 20px
}

@media(min-width:768px) {
    section, .main-container {
        padding: 80px 40px
    }
}

@media(min-width:1024px) {
    section, .main-container {
        padding: 80px 80px
    }
}

@media(min-width:1280px) {
    section, .main-container {
        padding: 110px 80px
    }
}

@media(min-width:1366px) {
    section, .main-container {
        padding: 110px 130px
    }
}

.btn-primary {
    height: fit-content;
    background: #327DE1;
    color: white;
    padding: 12px 20px;
    border-radius: 24px;
    transition: all 300ms ease-in-out;
}

.btn-primary:hover {
    opacity: 0.8;
    transition: all 300ms ease-in-out;
}

.btn-primary.btn-icon {
    padding: 5px 5px 5px 20px;
}

.link {
    transition: all 300ms ease-in-out;
}

.link:hover {
    opacity: 0.6;
    transition: all 300ms ease-in-out;
}

p {
    line-height: 140%;
}

.title {
    font-size: 26px;
    margin-bottom: 40px;
    line-height: 120%;
    text-align: center;
    font-weight: 600;
    font-family: 'Inter Tight', 'sans-serif';
    color: #191919;
}

@media(min-width:1280px) {
    .title {
        font-size: 48px;
        line-height: 140%;
        margin-bottom: 60px;
    }
}

.subtitle {
    font-size: 24px;
    line-height: 140%;
    font-weight: 600;
    color: #191919;
    font-family: 'Inter Tight', 'sans-serif';
}

.card {
    padding: 20px;
    width: 100%;
    position: relative;
    background: #F9F9F9;
    border-radius: 24px;
}

@media(min-width:1280px) {
    .card {
        padding: 30px;
    }
}

.input {
    width: 100%;
    padding: 10px 20px;
    background: white;
    border-radius: 21px;
    outline: none;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
}

.input::placeholder {
    color: #686868;
}

.input:focus {
    border: 1px solid #327DE1;
}

.checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 99999px;
    border: 1px solid #D8D8D8;
    background: white;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    position: relative;
}

.checkbox::after {
    content: url(/img/done.png);
    position: absolute;
    top: -2px;
    left: 4px;
    width: 9px;
    height: 6px;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.checkbox:checked {
    background: #327DE1;
    transition: all 0.2s ease-in-out;
}

.checkbox:checked::after {
    opacity: 1;
    transition: all 0.2s ease-in-out;
}


.btn-burger {
    width: 16px;
    flex-direction: column;
    gap: 6px;
}

.btn-burger span {
    width: 100%;
    height: 1px;
    background: #327DE1;
    transition: all 0.3s ease-in-out;
}

.btn-burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.btn-burger.active span:nth-child(2) {
    opacity: 0;
}

.btn-burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* SWIPER */

.swiper .swiper-slide {
    height: auto;
}

.swiper-action {
    display: flex;
    margin-top: 30px;
    width: 100%;
    justify-content: center;
}

.swiper-pagination-navigation {
    width: fit-content;
    display: flex;
    align-items: center;
}

.swiper-pagination-navigation .swiper-pagination-dots {
    display: flex;
    gap: 6px;
}

.swiper-pagination-navigation .swiper-pagination-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
}

.swiper-pagination-navigation .swiper-button-prev {
    width: 8px;
    height: 12px;
    color: #D8D8D8;
    position: relative;
    top: auto;
    left: auto;
    margin-top: 0;
    margin-right: 12px;
}

.swiper-pagination-navigation .swiper-button-next {
    width: 8px;
    height: 12px;
    color: #D8D8D8;
    position: relative;
    top: auto;
    right: auto;
    margin-top: 0;
    margin-left: 12px;
}

.swiper-pagination-fraction {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    font-size: 14px;
    line-height: 140%;
    color: #393939;
}