.footerWrapper {
    padding: 50px 80px;
}

.footer {
    border-radius: 50px;
    background: var(--primary-color);
    padding: 50px 8% 20px 8%;
    overflow: hidden;
}

.footerContentWrapper {
    display: flex;
    color: #FFFFFF;
    text-align: left;
}

.footerLogoWrapper {
    flex: 1;
}

.footerLogo {
    height: 100px;
}

.footerContent {
    text-align: justify;
    font-family: sans_regular;
    font-size: 16px;
    line-height: 25px;
    opacity: .8;
    margin-top: 15px;
    max-width: 500px;
}

.footerBtnWrapper {
    padding-left: 40px;
}

.footerBtn {
    font-family: sans_regular;
    font-size: 18px;
    padding: 10px;
    color: #FFFFFF;
    cursor: pointer;
    opacity: .6;
    user-select: none;
    -webkit-user-select: none;
    transition: .4s ease;
}

.footerBtn > a {
    color: #FFFFFF;
}

.footerBtn:hover {
    opacity: 1;
}

.footerBottomWrapper {
    margin-top: 50px;
    text-align: center;
}

.footerSocialBtn {
    display: inline-block;
    margin: 5px;
    font-size: 30px;
    opacity: .5;
    cursor: pointer;
    color: #FFFFFF;
    user-select: none;
    -webkit-user-select: none;
    transition: .4s ease;
}

.footerSocialBtnWrapper {
    padding-bottom: 10px;
}

.footerSocialBtn:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.footerMailAddress {
    color: #FFFFFF;
    font-family: sans_bold;
    border-bottom: 1px solid transparent;
    border-radius: 5px;
    font-size: 18px;
    opacity: .8;
    user-select: none;
    -webkit-user-select: none;
    transition: .4s ease;
}

.footerMailAddress:hover {
    opacity: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

/*-----------Get User Email--------*/
.getEmailContainer {
    margin-top: 100px;
}

.getEmailWrapper {
    background: var(--gradient-color);
    background-blend-mode: var(--gradient-blend-mode);
    display: flex;
}

.getEmailImg {
    height: 400px;
}

.getEmailShapeWrapper {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    perspective: 1px;
}

.getEmailTopShapeWrapper {
    transform: rotateX(180deg);
    margin-bottom: -50px;
}

.getEmailBottomShapeWrapper {
    margin-top: -50px;
}

.getEmailShape {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    border-radius: 100%;
    background: #FFFFFF;
    width: 125%;
    height: 200px;
    margin: auto;
}

.emailContentWrapper {
    flex: 1;
    color: #FFFFFF;
    text-align: center;
    padding-top: 120px;
    margin: 0 10%;
}

.getEmailTitle {
    font-family: bellega;
    font-size: 30px;
}

.getEmailDesc {
    font-family: sans_regular;
    font-size: 25px;
    opacity: .6;
}

.getEmailInputWrapper {
    display: flex;
    margin-top: 30px;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    padding: 8px;
}

.getEmailInput {
    flex: 1;
    background: none;
    border: none;
    font-family: sans_regular;
    color: #FFFFFF;
    font-size: 18px;
    padding-left: 20px;
}

.getEmailInput::placeholder {
    color: #FFFFFF;
}

.getEmailBtn {
    display: inline-block;
    vertical-align: middle;
    font-family: bellega;
    font-size: 16px;
    color: var(--primary-color);
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 100px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: .3s;
    white-space: nowrap;
}

.getEmailBtn:hover {
    background: var(--primary-color);
    color: #FFFFFF;
}

.getEmailBtn > .loadingContainer > .loadingWrapper > .loadingBall{
    background: var(--primary-color)
}

.getEmailBtn:hover > .loadingContainer > .loadingWrapper > .loadingBall{
    background: #FFFFFF !important;
}



/*----------RESPONSIVE-------*/

@media screen and (max-width: 1200px) {

    .getEmailWrapper {
        min-height: 400px;
    }

    .getEmailImg {
        height: 300px;
    }

    .emailContentWrapper {
        margin: 0 30px 0 30px;
    }
}

@media screen and (max-width: 900px) {

    .getEmailWrapper {
        min-height: 450px;
        display: block;
    }

    .getEmailImg {
        display: none;
    }

    .getEmailShape {
        width: 150%;
    }
}
@media screen and (max-width: 700px) {

    .footerWrapper {
        padding: 50px 30px;
    }

    .footer {
        border-radius: 40px;
        padding: 50px 50px 20px 50px;
    }
}

@media screen and (max-width: 600px) {

    .footerContentWrapper {
        display: block;
    }

    .footer {
        border-radius: 40px;
        padding: 50px 30px 20px 30px;
    }

    .footerBtnWrapper {
        margin-top: 40px;
        padding-left: 0;
        text-align: center;
    }

    .footerLogoWrapper {
        text-align: center;
    }

    .footerContent {
        font-size: 15px;
    }

    .footerSocialBtn {
        font-size: 25px;
    }

    .footerMailAddress {
        font-size: 15px;
    }

    .getEmailTitle {
        font-size: 25px;
    }

    .getEmailDesc {
        font-size: 18px;
        opacity: .8;
    }

    .getEmailInputWrapper {
        display: block;
        border-radius: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .getEmailBtn {
        margin-top: 30px;
    }

    .getEmailShape {
        width: 180%;
    }
}

@media screen and (max-width: 400px) {

    .footerWrapper {
        padding: 50px 20px;
    }
}