html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #53519F;
}
.main{
    background:
            radial-gradient(89.52% 67.42% at 96.08% 102.67%, #574170 0%, rgba(86, 66, 107, 0) 100%),
            radial-gradient(79.78% 29.5% at 51.35% 100%, #864887 0%, rgba(82, 82, 142, 0) 100%),
            radial-gradient(30.75% 26.17% at 100% 100%, #574170 0%, rgba(86, 66, 107, 0) 100%),
            radial-gradient(56.55% 81.42% at 66.01% 40.25%, rgba(92, 96, 210, 0.7) 0%, rgba(82, 82, 142, 0) 100%),
            linear-gradient(0deg, #53519F, #53519F),
            linear-gradient(105.42deg, #474787 0%, rgba(82, 82, 142, 0) 70.96%);
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
}
@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Regular.eot');
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
    url('../font/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
    url('../font/Gilroy-Regular.woff2') format('woff2'),
    url('../font/Gilroy-Regular.woff') format('woff'),
    url('../font/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Semibold.eot');
    src: local('Gilroy Semibold'), local('Gilroy-Semibold'),
    url('../font/Gilroy-Semibold.eot?#iefix') format('embedded-opentype'),
    url('../font/Gilroy-Semibold.woff2') format('woff2'),
    url('../font/Gilroy-Semibold.woff') format('woff'),
    url('../font/Gilroy-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Bold.eot');
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
    url('../font/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
    url('../font/Gilroy-Bold.woff2') format('woff2'),
    url('../font/Gilroy-Bold.woff') format('woff'),
    url('../font/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
.main {
    min-width: 230px;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}


.container {
    font-family: Gilroy;
    min-height: 405px;
    margin: 0 34px;
    max-width: 1060px;
    background: url("../img/bgearth.png") right no-repeat;
}
.content-left{
    color: #FFF;
    background: url("../img/logo.svg") left top no-repeat;
    margin-top: 20px;
    min-height: 100px;
    margin-right: 400px;
}
.content-left a{
    color: #FFF;
    text-decoration: underline;
}

.content-left-title{
    max-width: 600px;
    font-weight: 600;
    padding-top: 105px;
    line-height: 120%;
    font-size: 48px;
    margin-bottom: 15px;
}
.content-left-description{
    font-weight: 500;
    line-height: 140%;
    font-size: 15px;
    margin-bottom: 15px;
}

.content-left-contact-flex{
    display: flex;
}
.content-left-contact-flex-item a{
    color: #FFF;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
}
.content-left-contact-flex-item a.content-left-contact-email {
    text-decoration: underline;
}
.content-left-contact-flex-item span{
    color: #C7C7D9;
    font-size: 15px;
    font-weight: 500;
    line-height: 130%;
    display: block;
    margin-top: 10px;
}


.content-left-contact-rectangle{
    background: #A8A8BF;
    height: 57px;
    width: 1px;
    margin: 0 20px;
}

@media screen and (max-width: 768px) and (min-width: 520px){
    .container {
        min-height: 405px;
        max-width: 700px;
        background: url("../img/bgearth.png") right no-repeat;
        background-size: 260px 260px;
    }

    .content-left {
        margin-right: 260px;
    }
    .content-left-title{
        padding-top: 90px;
        font-size: 35px;
    }
}
@media screen and (max-width: 520px) {
    html, body{
        overflow: hidden;
        height: 100%;
    }
    .main{
        height: inherit;
        padding-top: 100px;
    }
    .container {
        height: 100%;
        max-width: 520px;
        background: url("../img/bgearth.png") center top no-repeat;
        background-size: 200px 200px;
        background-position-y: 70px;
        margin: 0 10px;
        text-align: center;
        padding-bottom: 100px;
    }
    .content-left{
        text-align: center;
        background-position-x: center;
        margin: 0;
    }
    .content-left-title{
        padding-top: 290px;
        font-size: 24px;
        margin-bottom: 10px;
    }
    .content-left-description{
        font-size: 13px;
    }
    .content-left-contact-flex{
        display: block;
    }
    .content-left-contact-flex-item{
        margin-bottom: 20px;
    }
    .content-left-contact-rectangle {
        display: none;
    }
}
@media screen and (max-height: 405px) {
    html, body, .main {
        height: inherit;
    }
}