@charset "UTF-8";

@import "./fonts.css?v=1.047";
@import "./../assets/icons/icons.css?v=1.047";
@import "./uikit.css?v=1.047";
@import "./reset.css?v=1.047";

body {
    background-color: rgb(242, 242, 242);
    font-family: 'Neue Montreal', sans-serif;
    opacity: 0;
    animation-name: showPage;
    animation-delay: 300ms;
    animation-fill-mode: forwards;
    animation-duration: 1200ms;
}

@keyframes showPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* скелетон заглушка для img */
img[src=''] {
    background-color: #e2e5e7;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background-size: 60px 100%;
    background-repeat: no-repeat;
    background-position: left -40px top 0;
    -webkit-animation: shine 1s ease-in-out infinite;
    animation: shine 1s ease infinite;
}

@keyframes shine {
    to {
        background-position: right -40px top 0;
    }
}

.no-scroll {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scroll::-webkit-scrollbar {
    width: 0;
}

.no-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.G-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 185px;
    padding-right: 20px;
}

@media (max-width: 1500px) {
    .G-container {
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .G-container {
        padding-left: 20px;
    }
}

.G-header {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.G-header .row-container {
    background-color: #FAFAFA;
    border-radius: 30px;
    margin: 20px;
    margin-bottom: 0;
    padding: 40px 40px 40px 168px;
}

.G-header .row-container .top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
}

.G-header .row-container .top-container .social-networks {
    display: flex;
    align-items: center;
    grid-gap: 23px;
}

.G-header .row-container .top-container .social-networks .icon {
    font-size: 26px;
}

.G-header .row-container .top-container .logo-container {
    display: flex;
    align-content: center;
    align-items: center;
}

.G-header .row-container .top-container .logo-container .logo {
    width: 43px;
    aspect-ratio: 1 / 1;
    margin-right: 20px;

    animation: rotateAnimation 2s infinite; /* Время одного цикла анимации (4 секунды анимации + 1 секунда паузы) */
    animation-delay: 2s;
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(45deg);
    }
    50% {
        transform: rotate(45deg);
    }
    75% {
        transform: rotate(90deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.G-header .row-container .top-container .logo-container .title {
    display: flex;
    flex-direction: column;

    font-size: 24px;
    font-weight: 500;
    line-height: 90%;
    text-align: left;
    text-transform: uppercase;
    color: #1E1E20;
}

.G-header .row-container .top-container .logo-container .title .word {
    color: #7B7B81;
    font-weight: 400;
}

.G-header .row-container .index-heading {
    background: linear-gradient(180.00deg, rgb(30, 30, 32),rgb(123, 123, 129));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 137px;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
}

.G-header .row-container .desc {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    color: #1E1E20;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
    opacity: 0.8;
    margin-top: 243px;
}

@media (max-width: 1700px) {
    .G-header .row-container .index-heading {
        font-size: 8.5vw;
    }
}

@media (max-width: 1500px) {
    .G-header .row-container {
        padding: 40px;
    }
}

@media (max-width: 1400px) {
    .G-header .row-container .index-heading {
        font-size: 9.3vw;
    }
}

@media (max-width: 1300px) {
    .G-header .row-container .desc {
        margin-top: 166px;
    }
}

@media (max-width: 991px) {
    .G-header {
        height: 100vh;
        height: 95svh;
    }

    .G-header .row-container {
        padding: 20px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .G-header .row-container .index-heading {
        font-size: 60px;
    }

    .G-header .row-container .desc {
        margin-top: auto;
        font-size: 18px;
    }

    .G-header .row-container .top-container {
        margin-bottom: 29px;
    }

    .G-header .row-container .top-container .logo-container .logo {
        width: 37px;
    }

    .G-header .row-container .top-container .logo-container .title {
        font-size: 21px;
    }
}