.bg-img {
    background: url("../../general/images/bg.png");
    background-size: cover;
    background-position: center top;

    width: 100%;
    height: 600px;
}

.bg-div {
    background: var(--main-color-3);

    width: 100%;
    height: 200px;

    margin-top: 100px;

    transform: rotate(2deg) scale(1.5);
}

.bg-div-wrapper {
    width: 100%;
    height: 400px;

    position: relative;
    margin-top: -100px;

    overflow: hidden;
    z-index: 1;
}

.page {
    top: 70px;
}

.info {
    background: var(--main-color-3);
    border-radius: 9px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);

    width: 300px;
    padding: 25px;

    margin-top: 220px;
    margin-bottom: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.info-logo {
    -webkit-filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.13));
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.13));

    width: 95px;
    height: 95px;

    margin-top: -65px;
}

.info-logotext {
    height: 50px;
    width: auto;
}

.telegram-info {
    background: var(--main-color-3);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.06);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.06);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.06);
    border-radius: 9px;

    width: 100%;
    box-sizing: border-box;
    padding: 20px;

    cursor: pointer;
    user-select: none;

    transform: scale(1);
    transition: transform 0.2s ease-in-out;
}

.telegram-info:hover {
    transform: scale(1.05);
}

.telegram-info-wrapper {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.telegram-info-logo {
    border-radius: 100px;

    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.telegram-info-wrapper2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.telegram-info-wrapper3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.telegram-info-telegram {
    width: 20px;
    height: 20px;
}

.news {
    background: var(--main-color-3);
    border-radius: 9px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);

    width: calc(100% - 40px);
    max-width: 500px;
    box-sizing: border-box;
    margin-bottom: 40px;
    margin-left: 20px;
    margin-right: 20px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    padding: 15px;
}

.news-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.news-wrapper2 {
    display: flex;
    flex-direction: column;
}

.news img {
    width: 33px;
    height: 33px;

    padding-right: 15px;
    padding-left: 7px;
}

.news a {
    padding-right: 7px;
}

@media only screen and (max-width: 700px) {
    .bg-img {
        height: 300px;
    }

    .info {
        margin-top: 80px;
    }
}