* {
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color:#333;
}
.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

body {
    background: #fff;
    overflow: hidden;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}
.logo-img {
    height: 315px;
}
.wrap {
    background: rgba(14, 14, 14, 0.65);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    background-color: #fff;
    width: 980px;
    border-radius: 16px;
    padding: 52px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.data {
    display: flex;
    flex-direction: column;
}
.violet {
    color:#A520E3
}
.contact-as {
    display: flex;
    max-width: 163px;
    width: 100%;
    justify-content: space-between;
}

@media only screen and (max-width: 768px) {
    body{
        overflow: auto;
    }
    .wrap{
        height: auto;
    }
}