* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-image: url('./img/ic_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.left-section {
    width: 40%;
    position: relative;
}

.right-section {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-image {
    width: auto;
    margin-top: 64px;
    max-width: 860px;
    height: auto;
    display: block;
    object-fit: contain;
}

.left-assets {
    position: absolute;
    left: 340px;
    top: 240px;
}

.logo-img {
    width: 90px;
    height: 90px;
    display: block;
    object-fit: contain;
}

.desc-img {
    display: block;
    max-width: 420px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    object-fit: contain;
}

.bt-img {
    display: block;
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-top: 110px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    object-fit: contain;
}

.bt-img:hover {
    opacity: 0.85;
}

.footer-links {
    position: absolute;
    top: 37px;
    right: 270px;
    z-index: 20;
    font-family: 'Lato', Lato, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #525152;
    line-height: 19px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    gap: 16px;
}

.footer-links a {
    text-decoration: none;
    color: #525152;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-links a:hover {
    color: #2c2c2c;
    text-decoration: underline;
}

@media (max-width: 1580px) {

    .left-section {
        width: 35%;
    }

    .left-assets {
        left: 200px;
    }

    .right-section {
        width: 65%;
    }


    .phone-image {
        max-width: 660px;
    }

    .footer-links {
        right: 200px;
    }
}


@media (max-width: 1300px) {

    .left-section {
        width: 35%;
    }

    .left-assets {
        left: 100px;
    }

    .right-section {
        width: 65%;
    }


    .phone-image {
        max-width: 660px;
    }

    .footer-links {
        right: 200px;
    }
}


@media (max-width: 1200px) {
    body {
        display: flex;
        flex-direction: column;
    }

    .container {
        order: 2;
        min-height: auto;
    }

    .left-section {
        display: none;
    }

    .right-section {
        width: 100%;
        padding: 40px;
        margin-top: 0;
    }

    .left-assets {
        position: relative;
        order: 1;
        left: auto;
        top: auto;
        margin: 0 auto;
        padding: 130px 60px 20px 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .footer-links {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .logo-img {
        width: 70px;
        height: 70px;
    }

    .desc-img {
        max-width: 90%;
        margin-top: 20px;
    }

    .bt-img {
        max-width: 260px;
        margin-top: 60px;
    }

    .phone-image {
        max-width: 610px;
        margin-top: 0;
    }
}

.left-section,
.right-section {
    background: transparent;
}