* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    position: relative;
    min-height: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135.58deg, #43C4DA 0%, #15E1DC 100%);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
	background-attachment: fixed;
}

img {
    max-width: 100%;
}

h4 {
    font-family: Montserrat;
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    padding: 10px 0;
}

a{
    text-decoration: none;
}

h4 span {
    font-weight: 400;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #393939;
}


/* Header */
.header-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 25px 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* content wrapper */

.content-wrapper {
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column;
    position: relative;
    padding: 0 30px;
    border-bottom: 112px solid #fff;
}

.bottom-fill {
    background: #fff;
    min-height: calc(100% - 80px - 870px);
}

.content {
    width: 100%;
    max-width: 870px;

    padding: 60px;
    border-radius: 10px;

    background: #fff;
    box-shadow: 0px 0px 40px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    flex-flow: column;
    gap: 20px;

    position: relative;
    z-index: 9;
}

.content a {
    color: #2B70FF;
}

.content a:hover,
.content a:focus {
    text-decoration: underline;
}

.regards-block {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.regards-block h4 {
    font-size: 18px;
}

.regards-block h4+h4 {
    padding-top: 0;
}

/* footer */
.footer-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-wrapper img {
    position: relative;
    top: 2px;
    object-fit: cover;
    width: 100%;
}

.footer-wrapper img.mob {
    display: none;
}

/* Responsive */
@media only screen and (max-width: 870px) {
    body {
        background: linear-gradient(169.87deg, #43C4DA 0%, #15E1DC 100%);
        border-bottom: none;
    }

    p {
        font-size: 16px;
    }

    .content-wrapper {
        margin: 20px auto 0;
        border-bottom: 0 solid #fff;
    }

    .content {
        padding: 30px 20px; 
        gap: 10px;
    }

    .regards-block h4 {
        font-size: 16px;
        padding-bottom: 0;
    }

    .bottom-fill {
        background: #fff;
        min-height: calc(100% - 80px - 600px);
    }
}

@media only screen and (max-width: 480px) {
    body {
        background: linear-gradient(90deg, #43C4DA 0%, #15E1DC 100%);
        min-height: unset;
        height: unset;
    }

    .footer-wrapper {
        bottom: -50px;
    }

    .footer-wrapper img{
        display: none;
    }

    .footer-wrapper img.mob {
        display: block;
    }
}