
@font-face {
    font-family: 'HelveticaNowDisplay', sans-serif;
    src: url('/assets/fonts/HelveticaNowDisplay-Regular.ttf');
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'HelveticaNowDisplay', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    text-decoration: none;
}

img {
    pointer-events: none
}

button {
    border: none;
}

#header-container {
    padding: 15px 0;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
    z-index: 10;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 1px solid #9b9b9b;
}

.SABR-logo {
    width: 164px;
    height: 27px;
}

#burger-menu {
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: none;
    cursor: pointer;
}

.line {
    width: 18px;
    border: 1px solid #000000;
    border-radius: 1px;
    transition: 0.2s;
}

.navigation-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

#mini-navigation-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    transition: 0.2s;
}

#navigations {
    display: flex;
    align-items: center;
    list-style-type: none;
    transition: 0.2s;
}

.navigation {
    font-weight: 500;
    font-size: 14px;
    line-height: 15.4px;
}

.navigation-link {
    transition: color 0.3s ease;
    color: #101010;
}

.navigation-link:hover {
    color: #DE0A0A;
}

.navigation {
    margin-right: 50px;
}

.btn {
    width: 114px;
    height: 45px;
    border-radius: 52px;
    font-size: 16px;
    line-height: 17.6px;
    font-weight: 500;
    background: #DE0A0A;
    color: #FFFFFF;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn:hover {
    background: #F08484;
}

.second-btn {
    font-size: 16px;
    line-height: 17.6px;
    font-weight: 500;
    border-radius: 52px;
    height: 45px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.second-btn:hover {
    opacity: 60%;
}

#another-container {
    display: none;
    padding: 0 16px;
    padding-top: 36px;
    padding-bottom: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main-container {
    width: 100%;
    height: 51.5vw;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #555555;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: brightness(45%);
    z-index: 0;
    transition: opacity 0.5s ease;
}

#mini-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#second-mini-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    max-width: 800px;
}

.slide.active {
    opacity: 1;
}

#main-title {
    font-weight: 500;
    font-size: 67px;
    line-height: 73.7px;
    text-align: center;
    color: #FFFFFF;
}

#side-title {
    margin-top: 12px;
    color: #808080;
    font-size: 16px;
    font-weight: 500;
    line-height: 20.8px;
    display: none;
}

.btn-container {
    margin-top: 82px;
    width: 253px;
    height: 102px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.another-special-btn {
    width: 100%;
}

#arrow {
    content: '';
    position: absolute;
    left: 10px;
    width: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

#arrow-sc {
    content: '';
    position: absolute;
    right: 10px;
    width: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.second-line {
    width: 100%;
    height: 3px;
    background: #808080;
    border-radius: 3px;
    transform: rotate(45deg);
    opacity: 70%;
}

.sc-line {
    transform: rotate(-45deg) translate(8.2px, -8.2px);
}

.second-second-line {
    width: 100%;
    height: 3px;
    background: #808080;
    border-radius: 3px;
    transform: rotate(-45deg);
    opacity: 70%;
}

.second-sc-line {
    transform: rotate(45deg) translate(-8.2px, -8.2px);
}

.dots {
    position: absolute;
    bottom: 27px;
    display: flex;
    gap: 8px;
}

.dot {
    cursor: pointer;
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
}

.dot.active {
    background: #FFFFFF;
}

#circle {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #9C3636;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 25px;
    right: 27px;
}

#circle img {
    width: 28px;
}

#about-us-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin-top: 80px;
    padding: 15px;
}

.title-container {
    margin-top: 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 19.8px;
    color: #000000;
}

.text-container {
    max-width: 509px;
    max-height: 180px;
    font-weight: 500;
    font-size: 46px;
    line-height: 59.8px;
    color: #000000;
}

.first-info-container {
    width: 437px;
    display: flex;
    flex-direction: column;
}

.first-info-container-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 23.4px;
    color: #000000;
    margin-top: 28px;
}

.another-info-container {
    width: 380px;
    margin-top: 76px;
}

.another-info-container-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 36.4px;
    margin-top: 25px;
}

.another-info-container-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20.8px;
    margin-top: 10px;
    color: #808080;
}

#partners-container {
    margin-top: 122px;
    padding-top: 20px;
    display: flex;
    max-width: 1200px;
    flex-wrap: wrap;
}

.main-info-container {
    display: flex;
    gap: 95px;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    margin-top: 75px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee {
    display: flex;
    animation: plugin_marquee 120s linear infinite;
}

.marquee.reverse {
    animation-direction: reverse;
}

.marquee.reverse .marquee-content {
    border-bottom: 1px solid #9b9b9b;
}

.marquee-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 227px;
    height: 198px;
    border-left: 1px solid #9b9b9b;
    border-top: 1px solid #9b9b9b;
}

.marquee-content:last-child {
    border-right: 1px solid #9b9b9b;
}

.marquee-img {
    max-width: 80%;
    max-height: 70%;
}

#apply-now-container {
    margin-top: 107px;
    max-width: 1200px;
    padding-top: 15px;
    width: 100%;
}

.apply-partner-main-container {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-top: 19px;
}

.apply-partner-main-container .another-info-container-text {
    margin-top: 0;
}

.apply-partner-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.apply-partner {
    display: flex;
    align-items: center;
    padding: 4.64px 6.96px;
    background: #000000;
    border-radius: 2px;
}

.apply-partner-specific {
    background: #D9D9D9;
}

.partner-img {
    height: 13px;
}

#feedback-form {
    margin-top: 40.55px;
    display: flex;
    flex-wrap: wrap;
    max-width: 585px;
    justify-content: space-between;
    gap: 30px;
}

.mini-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.label-text {
    font-weight: 400;
    font-size: 17px;
    line-height: 22.1px;
}

.label-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-container {
    width: 277.5px;
    padding: 15px;
    border: none;
    background: #EEEEEE;
}

.input-container:focus {
    outline: #DE0A0AB2 solid 1px;
}

.main-radio-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

#birthday {
    accent-color: #808080;
}

.radio-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.radio-content {
    display: flex;
    gap: 16px;
}

.input-radio {
    accent-color: #DE0A0A;
}

.input-radio:hover {
    cursor: pointer;
}

.input-checkbox {
    accent-color: #DE0A0A;
}

.input-checkbox:hover {
    cursor: pointer;
}

.submit-btn {
    width: 176px;
    margin-top: 20px;
}

.submit-btn {
    cursor: pointer;
}

#address-container {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    margin-top: 112px;
    padding-top: 112px;
    border-top: 1px solid #9b9b9b;
}

.mini-address-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 31px;
    height: 236px;
}

.mini-address-container .btn {
    width: 175px;
    font-size: 14px;
    line-height: 18.2px;
}

#footer {
    margin-top: 150px;
    padding: 60px 120px 73px;
    background: #DE0A0A;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
}

.mini-footer-container {
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 23.4px;
}

.footer-navigations {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-navigation {
    font-weight: 500;
    font-size: 16px;
    line-height: 20.8px;
}

.footer-navigation a {
    color: #FFFFFF;
}

.second-mini-footer-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
}

.social-media-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: end;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    width: 48px;
    height: 48px;
    display: inline-block;
    transition: 0.2s;
}

.social-media-media {
    width: 48px;
    height: 48px;
}

.social-media a:hover {
    transform: scale(1.15);
}

.footer-content-container {
    display: flex;
    gap: 16px;
}

@keyframes plugin_marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-1200%);
    }
}

@media (max-width: 1301px) {
    #about-us-container {
        margin-top: 33px;
        flex-direction: column;
        align-items: center;
    }

    .another-info-container {
        width: 343px;
        margin-top: 40px;
    }

    .another-info-container-title {
        margin-top: 16px;
    }

    .first-info-container {
        width: 343px;
        margin-bottom: 40px;
    }

    .first-info-container-text {
        font-weight: 400;
        font-size: 14px;
        line-height: 18.2px;
        color: #000000;
        margin-top: 10px;
    }

    .title-container {
        margin-top: 15px;
        font-size: 14px;
        line-height: 15.4px;
        color: #000000;
        margin-top: 0;
    }

    .text-container {
        max-width: 331px;
        text-align: center;
        font-weight: 500;
        font-size: 28px;
        line-height: 36.4px;
        color: #000000;
        margin-top: 16px;
        margin-bottom: 40px;
    }

    .info-img {
        width: 343px;
    }

    #partners-container {
        margin-top: 80px;
        padding-top: 20px;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .main-info-container {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .mrgn95 {
        margin: 0;
    }

    .marquee-container {
        margin-top: 52px;
    }
    
    .marquee-content {
        min-width: 114px;
        height: 100px;
    }
    
    @keyframes plugin_marquee {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-550%);
        }
    }

    .apply-partner-main-container {
        gap: 10px;
    }

    .apply-partner-main-container .another-info-container-text {
        font-size: 14px;
        line-height: 18.2px;
    }

    .mini-info-container {
        align-items: center;
    }
    
    .mini-info-container .text-container {
        margin: 0;
    }

    #address-container {
        display: flex;
        flex-direction: column;
        max-width: 343px;
        margin-top: 50px;
        padding-top: 20px;
        border-top: none;
    }
    
    #address-container iframe {
        width: 344px;
        height: 256px;
    }

    #address-container .text-container {
        text-align: left;
    }
    
    .mini-address-container {
        margin-top: 26px;
        margin-left: 0;
        height: 179px;
    }
    
    .mini-address-container .btn {
        width: 100%;
    }

    #footer {
        margin-top: 82px;
    }
}

@media (max-width: 901px) {
    #burger-menu {
        display: flex;
    }

    #header-container {
        height: auto;
    }

    .logo-and-burger-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navigation-container {
        flex-direction: column;
        align-items: start;
    }

    #navigations {
        margin-top: 50px;
        width: 100%;
        flex-direction: column;
        align-items: start;
    }

    #mini-navigation-container {
        height: 0;
        overflow: hidden;
        align-items: start;
        justify-content: space-between;
    }

    .navigation {
        border-bottom: 2.8px solid #000000;
        padding: 20px 0;
        width: 100%;
        margin: 0;
        font-size: 36px;
        line-height: 39.6px;
    }

    #btn-in-nav {
        margin-top: 5%;
        width: 100%;
        height: 45px;
    }

    .special-btn {
        width: 100%;
    }

    #another-container {
        display: flex;
    }

    #second-mini-main-container {
        max-width: 400px;
    }

    #main-title {
        font-size: 36px;
        line-height: 46.8px;
        color: #000000;
        font-weight: 500;
        text-align: left;
    }

    #side-title {
        display: block;
    }

    .btn-container {
        margin-top: 42px;
        width: 100%;
    }

    .second-btn {
        border: 1px solid #000000;
        color: #000000;
    }

    .dots {
        bottom: 13px;
    }

    #circle {
        display: none;
    }
}

@media (max-width: 750px) {
    .apply-partner-main-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .apply-partner-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    #footer {
        padding: 32px 16px 73px;
    }

    .footer-container {
        flex-direction: column;
        gap: 78px;
    }

    .mini-footer-container .footer-title {
        font-size: 24px;
        line-height: 31.2px;
    }

    .second-mini-footer-container {
        align-items: center;
        gap: 90px;
    }

    .social-media-container .footer-title {
        font-size: 16px;
        line-height: 20.8px;
    }

    .social-media-container {
        align-items: center;
    }

    .footer-content-container .footer-navigation {
        opacity: 50%;
    }
}

@media (max-width: 650px) {
    .main-info-container {
        padding: 15px;
    }

    #feedback-form {
        margin-top: 20px;
        width: 100%;
    }

    .label-input {
        width: 100%;
    }

    .input-container {
        width: 100%;
    }
    
    .main-radio-container {
        gap: 25px;
    }

    .radio-container {
        flex-direction: column;
        gap: 10px;
    }

    .radio-text {
        font-size: 14px;
        line-height: 18.2px;
    }

    .checkbox-text {
        font-size: 14px;
        line-height: 18.2px;
    }

    .submit-btn {
        width: 100%;
        margin-top: 10px;
    }
}