* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
}

body {
    background: url('./img/ic_bg.png') no-repeat center center;
    background-size: cover;
    font-family: Lato, Lato, sans-serif;
    overflow-x: hidden;
    position: relative;
}


.main-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}


.left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
}

.desc-wrapper {
    position: relative;
    width: 100%;
    max-width: 763px;
}

.ic-desc {
    width: 100%;
    max-width: 763px;
    display: block;
}

.ic-bt {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    width: 63.83%;
    max-width: 487px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ic-bt:hover {
    transform: translateX(-50%) scale(1.03);
}


.right-section {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: 32px;
}

.ic-phone {
    max-width: 564px;
    width: 100%;
    display: block;
}


.bottom-links {
    position: absolute;
    left: 300px;
    bottom: 40px;
    font-family: Lato, Lato, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #041B38;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.bottom-links a {
    color: #041B38;
    text-decoration: none;
    cursor: pointer;
    margin-left: 19px;
    margin-right: 19px;
}

.bottom-links a:hover {
    text-decoration: underline;
}

.bottom-links span {
    color: #041B38;
}


@media (max-width: 1480px) {
    .desc-wrapper {
        max-width: 713px;
    }

    .ic-desc {
        max-width: 713px;
    }

    .ic-bt {
        max-width: 437px;
        width: 61.29%;
    }

    .ic-phone {
        max-width: 514px;
    }
}

@media (max-width: 899px) {
    body {
        background-size: cover;
    }

    .main-container {
        flex-direction: column;
        min-height: auto;
        padding-bottom: 20px;
    }

    .left-section {
        justify-content: center;
        align-items: center;
        padding-right: 0;
        padding-top: 40px;
    }

    .desc-wrapper {
        max-width: 90%;
    }

    .right-section {
        justify-content: center;
        align-items: center;
        padding-left: 0;
        margin-top: 20px;
    }

    .ic-phone {
        max-width: 80%;
    }

    .bottom-links {
        position: relative;
        left: auto;
        bottom: auto;
        text-align: center;
        margin: 30px 0 20px;
    }
}
