* {
    font-size: 16rem;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Helvetica";
}
html {
    font-size: 1px;
}
body {
    background-color: #00A3D4;
}
.global__wrapper {
    /* overflow-x: hidden; */
}
.container {
    max-width: 1056rem;
    padding-left: 16rem;
    padding-right: 16rem;
    margin: 0 auto;
}
.btn {
    background-color: #fff;
    color: #00A3D4;
    border: none;
    border-radius: 100rem;
    padding: 12rem 66rem 17rem 66rem;
    text-transform: uppercase;
    font-size: 20rem;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-weight: 400;
}
.btn-blue {
    background-color: #00A3D4;
    color: #ffffff;
}
.sec_title {
    font-size: 28rem;
    font-weight: 300;
    text-align: left;
    text-transform: uppercase;
}

.sec_title .mute {
    opacity: 0.5;
}
.sec_title * {
    font-size: 28rem;
}

.sec__content {
    display: grid;
    grid-template-columns: 243rem 1fr;
    grid-gap: 20rem;
}

.separator {
    display: flex;
    align-items: center;
    background-color: #fff;
}

.separator__line {
    height: 1px;
    background-color: #1CC2FA;
    flex-grow: 1;
}
.separator__img {
    width: 96rem;
    height: 79rem;
    margin-left: 19rem;
    margin-right: 19rem;
}
.sec__content__right {
    min-width: 100%;
}

.bg-white {
    background-color: #fff;
}



@media screen and (max-width: 550px) {
    .sec__content {
        grid-template-columns: 1fr;
    }
    .sec_title {
        font-size: 24rem;
    }
    .sec_title * {
        font-size: 24rem; 
    }
    .sec__content {
        grid-gap: 13rem;
    }
    .separator__img {
        width: 70.79rem;
        height: 58.26rem;
        margin-left: 14rem;
        margin-right: 14rem;
    }
}