body {
    background-color: #ffeeca;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 100%;
    color: #000000;
}
h1 {
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
    color: #001A77;
}
.text {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 26px;
}
.progress {
    font-weight: 600;
}
.btn {
    box-sizing: border-box;
    /*width: 149px;*/
    /*height: 48px;*/
    /*gap: 8px;*/
    padding: 12px 24px;
    border-radius: 4px;
    background-color: #EF6181;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}
.footer {
    font-size: 15px;
    line-height: 100%;
}
.wrapper {
    height: 80%;
    width: 80%;
    display: flex;
    flex-direction: row;
    margin: 10% auto auto;
    max-width: 1280px;
}
.desc {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    overflow: hidden;
    justify-content: space-between;
    width: 50%;
}
.image {
    width: 50%;
    text-align: right;
    position: relative;
}
img.logo {
    width: 130px;
}
.image img {
    max-width: 95%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 50px;
    margin: auto;
}
.btn {
    width: 150px;
    height: 48px;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 48px;
        line-height: 60px;
    }
    .text {
        font-size: 18px;
        line-height: 24px;
    }
}
@media screen and (max-width: 576px) {
    .wrapper {
        flex-direction: column;
        width: 95%;
    }
    .desc {
        width: 100%;
    }
    .image {
        width: 100%;
    }
    .image img {
        max-width: 85%;
        margin-top: 30px;
        position: relative;
        left: 0;
    }
    img.logo {
        width: 110px;
        margin: 0 auto;
    }
    h1 {
        font-size: 36px;
        line-height: 40px;
        margin-top: 30px;
        text-align: center;
    }
    .text {
        font-size: 15px;
        line-height: 21px;
        text-align: center;
    }
    .btn {
        margin: 30px auto;
    }
    .footer {
        font-size: 14px;
        text-align: center;
    }
}