* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}

a {
    color: black;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    position: relative;
    width: 100%;
}

#content {
    display: flex;
    flex-flow: column nowrap;
    background: #ffbe42;
    left: 12%;
    top: 0;
    font-size: 15px;
    line-height: 28px;
    padding: 4rem;
    padding-bottom: 2rem;
    position: relative;
    min-height: 100vh;
    width: 28%;
}

h1 {
    border-top: 2px solid black;
    padding-top: 4rem;
    margin-bottom: 3rem;
    font-size: 65px;
    line-height: initial;
    text-transform: uppercase;
    font-weight: 400;
}

.benefits {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 1.5rem;
}

.contact {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 3rem;
}

.contact .email {
    margin-left: 1rem;
}

.contact img + img {
    margin-left: 1.5rem;
}

.footer {
    margin-top: auto;
}

.telegram,
.whatsapp,
.tr {
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    height: 45px;
    transition: background-image 0.3s;
    width: 45px;
}

.telegram {
    background-image: url("img/tg.svg");
}

.whatsapp {
    background-image: url("img/wa.png");
    margin-left: 1.5rem;
}

.tr {
    background-image: url("img/tr.svg");
    margin-left: 1.5rem;
}

.telegram:hover {
    background-image: url("img/tg_w.svg");
}

.whatsapp:hover {
    background-image: url("img/wa_w.png");
}

.tr:hover {
    background-image: url("img/tr_w.svg");
}

.bg {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.logo {
    margin-bottom: 4rem;
    width: 60%;
}

.content-bg {
    background-image: url("img/background.jpg");
    background-size: cover;
    background-position: center;
    display: none;
    margin: 0 -1.5rem 1rem -1.5rem;
    height: 7.5rem;
    overflow: hidden;
    width: calc(100% + 3rem);
}

.content-bg img {
    width: 100%;
}

@media screen and (min-width: 1921px) {
    #content {
        width: 30%;
    }
}

@media screen and (max-width: 1920px) {
    h1 {
        font-size: 56px;
    }

    #content {
        width: 32%;
    }
}

@media screen and (max-width: 1600px) {
    .logo {
        margin-bottom: 2.5rem;
    }
    h1 {
        font-size: 56px;
        padding-top: 2.5rem;
        margin-bottom: 2.5rem;
    }

    #content {
        padding: 3rem;
    }
}

@media screen and (max-width: 1440px) {
    #content {
        width: 40%;
    }
}

@media screen and (max-width: 1280px) {
    #content {
        width: 50%;
    }
}

@media screen and (max-width: 992px) {
    body {
        height: 100%;
    }

    .contact {
        margin-bottom: 3rem;
    }

    #content {
        width: 75%;
        margin: 0 auto;
        left: unset;
        top: unset;
        position: relative;
        min-height: 100vh;
    }
}

@media screen and (max-width: 768px) {
    #content {
        width: 100%;
        padding: 2rem;
    }
}


@media screen and (max-width: 480px) {
    h1 {
        font-size: 52px;
    }

    .tr {
        margin-left: 1rem;
    }

    .contact {
        margin-bottom: 1.5rem;
    }

    .content-bg {
        display: block;
    }

    #content {
        font-size: 14px;
        padding: 1.5rem;
    }
}



@media screen and (max-width: 380px) {
    h1 {
        font-size: 48px;
    }

    .tr {
        margin-left: 1rem;
    }

    .contact {
        margin-bottom: 1.5rem;
    }

    .content-bg {
        display: block;
    }

    #content {
        font-size: 13px;
        padding: 1rem;
    }
}
