* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
    display: flex;
}


.left {
    width: 50%;
    background-color: #FF454A;
    position: relative;
    overflow: hidden;
}

.right {
    width: 50%;
    background-color: #ffffff;
    position: relative;
}


.left-bg-image {
    position: relative;
    width: 100%;
    height: 239px;
    top: 400px;
    bottom: 424px;
    background-image: url('./img/ic_left_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.ic-logo {
    position: absolute;
    top: 76px;
    left: 84px;
    width: 72px;
    height: 72px;
    background-image: url('./img/ic_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}


.ic-phone {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

.ic-phone img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;

}


.right-content {
    position: absolute;
    left: 103px;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}


.top-links {
    position: absolute;
    top: 94px;
    left: 0;
    font-family: 'Lato', sans-serif;
    pointer-events: auto;
    white-space: nowrap;
}

.top-links a {
    text-decoration: none;
    cursor: pointer;
    font-family: Lato, Lato;
    font-weight: 700;
    font-size: 30px;
    color: #999999;
    line-height: 36px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.top-links a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 6px;
    font-family: Lato, Lato;
    font-weight: 700;
    font-size: 30px;
    color: #999999;
    line-height: 36px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}


.title-block {
    position: absolute;
    left: 0;
    top: 352px;
    pointer-events: none;
}

.line-easy {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 80px;
    color: #272727;
    line-height: 70px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.line-bp {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: #272727;
    line-height: 1.2em;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 23px;
    padding: 0;
    white-space: nowrap;
}


.description {
    position: absolute;
    left: 0;
    top: 540px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: #7C7C7C;
    line-height: 42px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    pointer-events: auto;
    max-width: 700px;
}


.getapp-btn {
    position: absolute;
    left: 0;
    top: 732px;
    min-width: 463px;
    max-width: 540px;
    height: 110px;
    background: #FF454A;
    border-radius: 165px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 50px;
    color: #FFFFFF;
    line-height: 110px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    pointer-events: auto;
    cursor: pointer;
    border: none;
    transition: filter 0.2s;
    display: block;
    text-decoration: none;
    user-select: none;
}

.getapp-btn:hover {
    filter: brightness(0.95);
}


.privacy-link,
.terms-link {
    cursor: pointer;
}