@font-face {
    font-family: 'andromedamedium';
    src: url('andromeda-webfont.woff2') format('woff2'),
    url('andromeda-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.container {
    max-width: 1806px;
    width: 100%;

    margin-left: auto;
    margin-right: auto;
}

.my-video {
    z-index: -1;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.42);
    position: fixed;
    top: 0;
    left: 0;
}

body, button {
    cursor: none;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    width: 100vw;
    height: 100vh;
    z-index: 100;

    background: #000;
}

.preloader__title {
    margin-bottom: 20px;
    font-size: 20px;
    color: #fff;
}

.preloader__text {
    font-size: 12px;
    color: #fff;
}

body.loaded .preloader {
    opacity: 0;
    z-index: -100;
    transition: all 1s;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    overflow: hidden;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.header__button {
    width: 23px;
    height: 23px;
    position: relative;
    margin-right: 50px;

    background: #D9D9D9;
    border-radius: 50%;
    border: unset;
}

.header__button:after {
    content: '';
    width: 3px;
    height: 3px;

    background: #000;
    position: absolute;
    top: 10px;
    right: 10px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.footer__hr {
    display: none;
}

.footer__button {
    background: transparent;
    border: unset;

    font-size: 14px;
    color: #FFFFFF;
}

#declaimer-open {
    padding-right: 30px;
}
#footer-follow {
    padding-left: 30px;
}

.main {
    display: flex;
    justify-content: center;
    flex-direction: column;
    /*align-items: center;*/
    flex-grow: 1;
    position: relative;
}

.main__title {
    width: 100%;
    text-align: center;
    font-family: 'andromedamedium', sans-serif;
    height: fit-content;
    font-size: 118px;
    color: #fff;
    position: relative;
}

.main__title:after {
    content: '';
    position: absolute;

    top: 64%;
    right: 5%;
    width: 19%;
    height: 1px;
    background: #fff;
    transition: all 0.5s;
}

.main__title.short:after {
    width: 12%;
    /*left: 142%;*/
}

.info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 415px;
    padding-left: 40px;
    /*position: absolute;*/
    /*left: 40px;*/
    /*bottom: 10%;*/
}

.info__button {
    font-size: 5px;
    color: #27879C;
    position: relative;
    z-index: 1;

    margin-bottom: 133px;
}

.info__button span {
    color: #fff;
}

.info__round {

    position: absolute;
    left: 0;
    top: -23px;
    width: 13px;
    height: 13px;
    background: #D9D9D9;
    transition:  transform 5s ease-in-out;
}

.info__round:hover {
    transform: rotate(360deg);
}

.info__round:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;

    width: 1px;
    height: 1px;
    background: #000;
    border-radius: 50%;
    z-index: 1;
}

.info__text {
    display: flex;
    margin-bottom: 64px;
    font-size: 12px;
    color: #fff;
}

.info__block-item {
    display: flex;
    justify-content: space-around;
    padding-right: 20px;
    width: 415px;
    font-size: 12px;
    color: #fff;
    position: relative;
}

.info__block-item span {
    text-transform: uppercase;
}

.info__block-item:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;

    top: 200%;
    left: 0;
    position: absolute;
    transition: all 0.5s;
}
.info__block-item.short:after {
    width: 30%;
}

.info__button--mobile {
    display: none;
}

.header__logo--mobile {
    white-space: nowrap;
    padding-left: 31px;
    display: flex;
    font-size: 12px;
    color: #fff;
    position: relative;
}

.footer {
    margin-top: 100px;
}

.footer__text {
    display: none;
}

.footer__logo {
    display: none;
}

.modal-window {
    display: none;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 100vh;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.modal-window.open {
    display: flex;
}

.modal-window__content {
    display: flex;
    justify-content: center;
    align-items: center;


    width: 70vw;
    height: 60%;

    background: rgba(0, 0, 0, 0.63);
    border-radius: 119px;

    position: relative;
}

.modal-window__content:after {
    content: '';
    width: 35%;
    height: 1px;

    background: #fff;
    position: absolute;
    left: 10%;
    bottom: 20%;
    animation-duration: 1s;
    animation-name: slidein;
}
@keyframes slidein {
    from {

        width: 0;
    }

    to {

        width: 35%;
    }
}

.modal-window__close {
    position: absolute;
    right: 50px;
    top: 80px;
    width: 32px;
    height: 32px;

}

.modal-window__close:after, .modal-window__close:before {
    content: '';
    width: 32px;
    height: 1px;
    background: #000;

    position: absolute;
    top: 15px;
    right: 0;
}

.modal-window__close:after {
    transform: rotate(45deg);
}

.modal-window__close:before {
    transform: rotate(315deg);
}

.modal-window__link {
    text-decoration: unset;
    color: #fff;
}

.modal-window__wrapper {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.modal-window__wrapper span {
    margin-bottom: 15px;
}

.declaimer-modal {
    display: none;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.52);

    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
}

.declaimer-modal.open {
    display: flex;
}

.cursor-tray {
    z-index: 999;
    position: fixed;
    display: block;
    width: 8px;
    height: 8px;
    background-color: rgba(220, 90, 90, 0.4);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.15s ease-in-out 0s, height 0.2s ease-in-out 0s, width 0.2s ease-in-out 0s;
}

.cursor-tray.big {
    width: 48px;
    height: 48px;
}

.cursor {
    z-index: 999;
    position: fixed;
    display: block;
    width: 8px;
    height: 8px;
    background-color: rgb(220, 90, 90);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.15s ease-in-out 0s, height 0.2s ease-in-out 0s, width 0.2s ease-in-out 0s;
}

.cursor.big {
    width: 4px;
    height: 4px;
}

.declaimer-modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 70%;
    background: rgba(0, 0, 0, 0.53);
    padding: 40px;
    color: #fff;
    border-radius: 12px;
    overflow: auto;
}

.declaimer-modal__content h3 {
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
}

.declaimer-modal__content span {
    font-size: 18px;
    text-align: center;
    line-height: 2;
}

.main__contact {
    display: none;
    flex-direction: column;
    justify-content: center;

    padding-left: 40px;
    padding-right: 40px;
    
    background: rgba(0, 0, 0, 0.64);

    border-radius: 59px;
   
}

.main__contact span, .main__contact a {
    color: #fff;
    text-decoration: unset;
    font-size: 12px;
    font-weight: 400;
}

.main__contact span {
    margin-bottom: 20px;
}

.main.contact .main__contact {
    display: flex;
}

.main.contact .main__title {
    display: none;
}

.main.hide .main__title {
    color: transparent;

}

.footer__button--mobile {
    display: none;
}

@media (max-width: 1600px) {
    .main__title:after {
        display: none;
    }
}

@media (max-width: 990px) {

    .main__title {
        font-size: 92px;
    }

    .info {
        margin-top: 40px;
    }

    .info__button {
        margin-bottom: 75px;
    }

    .wrapper {
        height: 100%;
    }

    .declaimer-modal__content h3 {
        font-size: 18px;
    }

    .declaimer-modal__content span {
        font-size: 12px;
        line-height: 1.2;
    }
}

@media (max-width: 475px) {
    #myVideo {
        /*display: none;*/
    }
    
    .cursor, .cursor-tray {
        display: none;
    }
    
    body {
        background: #000;
    }
    .info__block {
        display: none;
    }

    .info__button {
        margin-bottom: 0;
    }

    .info {
        display: none;
        width: fit-content;
        left: unset;
    }
    
    .info__button--mobile {
        display: flex;
        position: absolute;
        right: 25px;
        top: 95%;
    }

    .main {
        width: 100%;
        height: 200px;
        flex-grow: unset;
    }

    .main__title {
        text-align: center;
        height: 172px;
        font-size: 98px;
    }

    .main__contact {
        align-items: center;
        width: 60vw;
        height: 50vh;
        margin-left: auto;
        margin-right: auto;
    }

    .main__contact div {
        display: flex;
        flex-direction: column;
    }
    
    .info__round:after {
        top: -2px;
        border-radius: 50%;
        background: #d9d9d94d;

    }

    .info__button:before {
        display: none;
    }
    
    
    .header__button {
        /*display: none;*/
    }
    
    .header__logo {
        /*display: none;*/
    }
    
    .header__logo--mobile {

    }

    .footer {
        z-index: 2;
    }

    
    .footer__button {
        display: none;
    }
    
    .footer__text {
        padding-left: 31px;
        display: flex;
    }

    .footer__hr {
        display: flex;
        width: 98px;
        height: 1px;

        background: #fff;

        transform: rotate(90deg);
    }
    
    #declaimer-open {
        display: flex;
        padding-right: 31px;
    }
    
    .footer__button--mobile {
        display: flex;
        padding-left: 31px;
        font-size: 15px;
        color: #27879C;
    }

    .footer__button--mobile span {
        margin-left: 5px;
        color: #fff;
    }
 /* 620 */
    .wrapper {
        height: 95vh;
    }

    .main__title {
        padding-top: 0;
        font-size: 86px;
    }

    .footer {
        margin-top: 50px;
    }

    .main {
        padding-top: 50px;
    }



    .footer__text {
        width: 35%;
    }
}