@font-face {
    font-family: 'SegoeUI'; /* Придумайте имя шрифта */
    src: url("/fonts/SegoeUI-Semibold.woff2") format('woff2'), /* Подключаем woff2 */
    url("/fonts/SegoeUI-Semibold.woff") format('woff');   /* Запасной вариант woff */
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SegoeUI'; /* Придумайте имя шрифта */
    src: url("/fonts/SegoeUI.woff2") format('woff2'), /* Подключаем woff2 */
    url("/fonts/SegoeUI.woff") format('woff');   /* Запасной вариант woff */
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SegoeUI'; /* Придумайте имя шрифта */
    src: url("/fonts/SegoeUI-Semilight.woff2") format('woff2'), /* Подключаем woff2 */
    url("/fonts/SegoeUI-Semilight.woff") format('woff');   /* Запасной вариант woff */
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SegoeUI'; /* Придумайте имя шрифта */
    src: url("/fonts/SegoeUI-Light.woff2") format('woff2'), /* Подключаем woff2 */
    url("/fonts/SegoeUI-Light.woff") format('woff');   /* Запасной вариант woff */
    font-weight: 200;
    font-style: normal;
}

*{
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #fff
}



html, body {
    height: 100%;
    margin: 0;
    background: #0B1D26;
    color: #fff;
    font-family: "Inter", "SegoeUI", sans-serif;
    scroll-behavior: smooth;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.wrap{
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
main {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.footer{
    width: 100%;
    background: #0E2531;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.wrap-footer{
    max-width: 1440px;
    width: 100%;
    padding: 30px 120px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
}

@media (max-width: 600px){
    .footer{
        align-items: start;
    }
    .wrap-footer{
        padding: 24px 24px 24px 32px;
        flex-direction: column;
        align-items: start;
        gap: 32px;
    }
    .document-cont-footer{
        flex-direction: column;
        align-items: start;
        gap: 24px;
    }
}

#portfolio {
    scroll-margin-top: 70px;
}

#contact {
    scroll-margin-top: 70px;
}

@media (max-width: 600px) {
    #portfolio {
        scroll-margin-top:10px;
    }

    #contact {
        scroll-margin-top: 10px;
    }
}

.block2{
    padding: 120px 0 0 0;
    max-width: 1440px;
    width: 100%;
}


.swiper1 {
    width: 100%;
    height: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .block2{
        padding: 0;
    }
    .swiper1 {
        display: none !important;
    }
}

.swiper1 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper1 .swiper-slide  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper1 .swiper-button-next,
.swiper1 .swiper-button-prev{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 8px;*/
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
}

.swiper1 .swiper-button-next::after,
.swiper1 .swiper-button-prev::after{
    font-size: 18px !important;
}

/**/

.swiper2 {
    width: 100%;
    height: 210px;
}

.swiper2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper2 .swiper-slide {
    max-width: 280px !important;
    height: 210px;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}


