@font-face {
    font-family: Roboto;
    font-weight: 400;
    src: url("../../fonts/Roboto-Regular.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto;
}

.wrapper {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.wrapper .container {
    max-width: 1280px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 60px;
}

.content {
    padding-bottom: 60px;
}

.logo img {
    width: 256px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 8px;
}

.text {
    max-width: 650px;
    font-weight: 300;
    font-size: 22px;
    color: #fff;
    text-align: center;
}

.contacts {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 8px;
}

.contacts a span {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.info__popup{
    position: absolute;
    right: 32px;
    top: 48px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 288px;
    height: 265px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 100px 80px rgba(0, 0, 0, 0.05), 0 41.7776px 33.4221px rgba(0, 0, 0, 0.03), 0 22.3363px 17.869px rgba(0, 0, 0, 0.02), 0 12.5216px 10.0172px rgba(0, 0, 0, 0.01), 0 6.6501px 5.32008px rgba(0, 0, 0, 0.0083);
    border-radius: 16px;
    font-family: Helvetica Neue, Arial, sans-serif;
    transition: opacity .5s;
    opacity: 0;
    pointer-events: none;
}

.info__popup-wrapper{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 0 32px;
    box-sizing: border-box;
}

.info__popup-logo{
    margin: -24px 0 22px;
}

.info__popup-bg{
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}

.info__popup-arrow{
    position: absolute;
    top: -7px;
    right: 15px;
}

.info__popup-title{
    width: 100%;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
    text-align: left;
    color: #000;
}

.info__popup p{
    font-size: 14px;
    line-height: 24px;
    color: #616161;
    margin: 0;
}

.info__popup-close{
    position: absolute;
    right: 13px;
    top: 13px;
    display: none;
}

.info__popup-active{
    opacity: 1;
    pointer-events: auto;
}

@media screen and (max-width: 968px){
    .info__popup{
        top: auto;
        bottom: 16px;
        right: 50%;
        left: 50%;
        transform: translateX(-50%);
        height: 196px;
    }

    .info__popup-wrapper{
        padding: 41px 32px 24px;
    }

    .info__popup-logo{
        margin: 0;
        position: absolute;
        left: 25px;
        top: -20px;
    }

    .info__popup-bg{
        left: auto;
        right: -60px;
        transform: rotate(-45deg);
    }

    .info__popup-arrow{
        display: none;
    }

    .info__popup-title{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
        color: #000;
    }

    .info__popup-close{
        display: block;
    }
}
