@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100%;
}

body {
    display: block;
    position: relative;
    width: 100%;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 150%;
}

body:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    min-height: 100%;
    background-image: url("../img/bg-right.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    z-index: -1;
}

.lavna-content{
    display: block;
    position: relative;
    width: 100%;
    max-width: 50vw;
    min-height: 100vh;
    padding: 0;
    background-image: url("../img/bg-left.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}

.lavna-content__main{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 45px 20% 35px;
    width: 60%;
    min-height: calc(100vh - 80px);
}

.lavna-content__prehead {
    font-size: 16px;
}

h1,
h2 {
    display: block;
    position: relative;
    color: #7dffc7;
}

h1 {
    font-size: 30px;
    margin-bottom: 40px;
    line-height: 40px;
}

h2 {
    font-size: 18px;
    margin-bottom: 25px;
    margin-top: 25px;
}

p{
    margin-bottom: 20px;
}

a {
    color: #00ddff;
}

a:hover {
    text-decoration: none;
}

.lavna-content__logos {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 20px;
}

.lavna-content__logos img {
    margin-left: 60px;
    width: auto;
    max-width: 100%;
    height: auto;
}
.lavna-content__logos img:first-child {
    margin-left: 0;
}

.lavna-content__copy {
    display: block;
    position: relative;
    margin-top: 40px;
}

.lavna-content__top {
    display: block;
    position: relative;
}

@media screen and (max-width: 1600px) {
    .lavna-content{
        max-width: 60vw;
    }
    .lavna-content__main{
        padding: 45px 17% 35px;
        width: 66%;
    }
}

@media screen and (max-width: 1366px) {
    .lavna-content{
        max-width: 70vw;
    }
    .lavna-content__main{
        padding: 45px 16% 35px;
        width: 68%;
    }
}

@media screen and (max-width: 1024px) {
    .lavna-content{
        max-width: 75vw;
    }
    .lavna-content__main{
        padding: 45px 15% 35px;
        width: 70%;
    }

    .lavna-content__logos img {
        margin-left: 30px;
        width: auto;
        max-width: 85%;
        height: auto;
    }
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .lavna-content{
        max-width: 80vw;
    }
    .lavna-content__main{
        padding: 45px 10% 35px;
        width: 80%;
    }

    .lavna-content__logos img {
        margin-left: 20px;
        max-width: 60%;
    }
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .lavna-content{
        max-width: 100vw;
    }
    .lavna-content__main{
        padding: 45px 5% 35px;
        width: 90%;
    }
    body {
        font-size: 16px;
    }
}