/*STD*/
html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

@font-face {
    font-family: Roboto;
    src: url('./fonts/roboto/Roboto-Regular.ttf');
}

@font-face {
    font-family: RobotoBold;
    src: url('./fonts/roboto/Roboto-Bold.ttf');
}

@font-face {
    font-family: Arista;
    src: url('./fonts/arista/Arista2.0.ttf');
}

h1, h2, h3, h4, h5 {
    padding: 0;
    margin: 0;
}

div, textarea, input, button {
    box-sizing: border-box;
}

img {
    vertical-align: bottom;
    border: 0;
}

input[type=url], input[type=tel], input[type=number], input[type=color], input[type=email], input[type=submit], input[type=text], input[type=reset] {
    -webkit-appearance: none;
}

div {
    position: relative;
}

button {
    -webkit-appearance: none;
}

textarea {
    -webkit-appearance: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

*:focus {
    outline: none;
}


/*STD END*/

/*CONFIGS*/

body, div, input, textarea {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif, Helvetica, Arial;
    color: #262626;
}

body {
    background-color: #f3f3f3;
}

h1 {
    font-size: 38px;
    font-weight: 300
}

h2 {
    font-size: 26px;
    font-weight: 300;
    color: #009491;
    padding-top: 30px;
}

h3 {
    font-size: 26px;
    font-weight: 300;
    padding-top: 30px;
    color: #009491
}

h4 {
    font-size: 14px;
}

h5 {
    font-size: 12px;
}

table {
    width: 100%;
    border: 1px solid #d0d0d0;
}

td {
    padding: 10px;
}

tr {
}

strong {
    color: #383838;
    font-weight: bold;
}

a {
    color: #262626;
    text-decoration: none;
}

p {
    margin: 10px 0px 0px 0px;
    line-height: 24px;
}

li {
    line-height: 24px;
}

ul {
    padding: 10px 0px 0px 40px;
    margin: 0px;
}

ol {
    padding: 10px 0px 0px 40px;
    margin: 0px;
}

input[type=url], input[type=tel], input[type=number], input[type=color], input[type=email], input[type=submit], input[type=text], input[type=reset], input[type=submit], input[type=datetime-local] {
    background-color: white;
    line-height: 42px;
    height: 42px;
    padding: 0px 12px;
    font-size: 16px;
    border-radius: 0px;
}

input[type=text] {
    background-color: white;
    border: solid 1px #cecece;
    border-radius: 3px;
    width: 100%;
}

input[type=submit] {
    background-color: #dcdcdc;
    border: solid 1px #cecece;
    cursor: pointer;
    border-radius: 3px;
}

input[type=reset] {
    background-color: #dcdcdc;
    border: solid 1px #cecece;
    cursor: pointer;
    border-radius: 3px;
}

input[type=datetime-local] {

}

textarea {
    line-height: 23px;
    padding: 6px 12px;
    font-size: 16px;
    border: solid 1px #cecece;
    border-radius: 3px;
    width: 100%;

}

select {
    height: 42px;
    line-height: 42px;
    padding: 0px 12px;
    font-size: 16px;
    border: solid 1px #cecece;
    border-radius: 3px;
    -webkit-appearance: none;
}

button {
    background-color: #dcdcdc;
    line-height: 42px;
    height: 42px;
    padding: 0px 24px;
    font-size: 16px;
    border: solid 1px #cecece;
    border-radius: 3px;
    cursor: pointer;
}


/*CONFIGS END*/

/*DEFAULT LAYOUT*/

page {
    max-width: 1280px;
    margin: auto;
    display: block;
    box-sizing: border-box;
    position: relative;
}

/*DEFAULT LAYOUT END*/

/*MODAL*/

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 11000; /* Sit on top */
    left: 0;
    top: 0;
    margin: auto;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.input-box {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}


#submit {
    background: #00aead;
    color: white;
    margin: 8px 0;
    padding-bottom: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#modalInfo:hover {
    cursor: pointer;
}


/*PRESET STYLES*/

.clear:after {
    content: '';
    clear: both;
    display: block;
}

.div-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.left {
    float: left;
}

.right {
    float: right;
}


.object {
    display: inline-block;
}


/*.rows li:hover {
transition: background-color 1.5s ease;
  background-color: red;
}
*/

.fullheight {
    height: 100vh;
    width: 100px;
    background-color: grey;
    position: fixed;
    top: 0px;
    left: 0px;
}

/*PRESET STYLES END*/
/*NAVIGATION*/
.nav {
    /*background-color: #00afab;*/
    height: 90px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 90;
}

.navW {
    /*margin-left: 20px;*/
    width: 100%;
    display: flex;
    padding-left: 100px;
    padding-right: 100px;
    background: #00aead;
    justify-content: space-between
}

.navL {
    height: 9.5rem;
    background: #00aead;
    /*position: absolute;*/
    left: 15px;
    top: 5px;
}

.navMi {
    width: auto;
    float: left;
    font-size: 15px;
    color: white;
    letter-spacing: 0.8px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    padding: 0px 20px;
}

.chev-image {
    top: 5px;
}

#login {
    border: 1px solid white;
    border-radius: 25px;
}

.navMi a {
    color: white;
}

.navMi:hover {
    border-top: solid 2px white;
    transition-delay: 300;
}

.navMi img {
    width: 13px;
    position: absolute;
    left: 0px;
    top: 20px;
}

.navMiEmp {
    width: auto;
    float: left;
    font-size: 15px;
    color: white;
    background-color: #414141;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    letter-spacing: 0.8px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    cursor: pointer;
    padding: 0px 20px;
}

.navMiEmp a {
    color: white;
}

.navMiEmp:hover {
    border-top: solid 2px white;
    transition-delay: 300;
}

.navMiEmp img {
    width: 13px;
    position: absolute;
    left: 0px;
    top: 39px;
}


.navMime {
    width: 80%;
    font-size: 20px;
    color: black;
    letter-spacing: 0.8px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    display: inline-block;
    border-bottom: solid 1px rgb(239, 239, 239);
}

.navMime a {
    color: black;
}

.navMime a:hover {
    border-bottom: solid 2px #00aead;
}

.navMime img {
    width: 17px;
    position: absolute;
    top: 36px;
    left: 15%;
}

.navMime div {
    font-size: 20px;
}


.navMim2 {
    position: absolute;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 125px;
    margin: 0px 0px 0px -15px;
    border-radius: 0px 0px 7px 7px;
    z-index: -9;
}

.navM ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.navMi.navMim {
    font-weight: 400;
}

.navM {
    display: flex;
    margin-top: 20px;
    padding-left: 20px;
    /*position: absolute;*/
    /*right: 0px;*/
    /*top: 0px;*/
    /*display: inline;*/
}

@media (max-width: 768px) {
    .navM {
        display: none;
    }
}

#navMp {
    position: fixed;
    left: 0px;
    top: 0px;
    display: none;
    z-index: 99;
    background-color: rgba(255, 255, 255, 1);
    height: 100vh;
    width: 100%;
    text-align: center;
    /*overflow: auto;*/
}

#navMp ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.navH img {
    width: 43px;
    position: absolute;
    top: 24px;
    right: 15px;
}

.navH {
    display: none;
    z-index: 999;
}

@media (max-width: 768px) {
    .navH {
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
        height: 80px;
        width: 80px;
    }
}

.navHtt {
    position: absolute;
    top: 38px;
    right: 73px;
    font-size: 12px;
    font-weight: 500;
}

#navMm {
    display: none;
    z-index: 999;
    background-color: white;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 91px;
    left: 0px;
    overflow: auto;
}

.navMmt {
    height: 100vh;
    float: left;
    font-size: 26px;
    line-height: 37px;
    padding: 0px 0px 0px 40px;
}

@media (max-width: 768px) {
    .navMmt {
        height: auto;
        float: none;
        width: 100%;
        font-size: 24px;
        line-height: 45px;
        padding: 0px 0px 40px 40px;
    }

    #navMm {
        height: 700px;
        position: fixed;
        overflow: auto;
    }
}

.navMmt ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.navMmt img {
    height: 15px;
    display: inline-block;
    margin-bottom: 12px;
    margin-right: 8px;
}

.navMmRp {
    max-width: 1280px;
    margin: auto;
}

.navMmi img {
    width: auto;
    max-height: 450px;
}

.navMmi {
    width: 50%;
    float: right;
    display: block;
}

@media (max-width: 768px) {
    .navMmi {
        display: none;
    }
}

.navMmh {
    font-size: 15px;
    margin: 40px 0px 0px 0px;
}

.navMmt a:hover, a:focus {
    border-bottom: solid 2px #00aead;
}

.navMmt li {
    line-height: 40px;
}


/*NAVIGATION - END*/

/*IMAGE FADER*/
.img-container {
    height: 100%;
    position: relative;
    width: 100vw !important;
    font-family: Arista, serif;
}

.bg-transparent-v1 {
    position: absolute;
    color: white;
    z-index: 10;
    top: 9.3rem;
    height: 100%;
    background: black;
    opacity: 0.7;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .img-container {
        height: 100vh;
        width: 100vw;
    }
}

.img-container img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: -1;
}

@media (max-width: 768px) {

    .img-container img {
        height: 100%;
        left: 0;
        object-fit: cover;
        object-position: 60%;
        opacity: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }

}


.img-container img.next {
    opacity: 1;
    z-index: 1;
}

.img-container img.prev {
    opacity: 1;
    z-index: 2;
}

.img-container img.fade-out {
    opacity: 0;
    transition: visibility 0s .5s, opacity .5s linear;
    visibility: hidden;
}

/*IMAGE FADER - END*/

/*FOOTER*/
.footW {
    width: 100%;
    background-color: #f3f3f3;
}

.footI {
    max-width: 1280px;
    margin: auto;
}

.footIi img {
    width: 75px;
}

.footIi {
    position: absolute;
    top: 32px;
    left: 15px;
}

.footIm {
    position: absolute;
    top: 50px;
    left: 170px;
    font-size: 12px;
    width: 220px;
    line-height: 22px;
    letter-spacing: 0.3px;
    font-weight: 400;
    display: block;
}

@media (max-width: 768px) {
    .footIm {
        display: none;
    }
}

.footIm ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footIm ul a:hover {
    border-bottom: solid 2px #00aead;
}

.footIs {
    position: absolute;
    right: 20px;
    top: 45px;
    text-align: right;
}

.footIs img {
    width: 46px;
    margin: 0px 0px 0px 20px;
}

.footIsi {
    margin-top: 25px;
}

.footIc {
    position: absolute;
    right: 20px;
    bottom: 56px;
    text-align: right;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.footI {
    width: 100%;
    height: 240px;
}

.footIsi {
    font-size: 14px;
    font-weight: 400;
    margin-left: 60px;
}

/*FOOTER - END*/
.topSpacer {
    height: 90px;
    width: 100%;
}

a.anchor {
    display: block;
    position: relative;
    top: -90px;
    visibility: hidden;
}

.imgTx {
    position: absolute;
    top: 450px;
    z-index: 20;
    width: 100%;
}

.modalInput {
    display: flex;
    justify-content: space-between
}

.changeText {
    color: #00aead;
    font-size: 8rem;
    margin-bottom: 3rem;
    font-family: 'Arista', serif;
    width: 1000px;
}

.imgTxh {
    position: absolute;
    top: 300px;
    left: 20px;
    z-index: 30;
    width: 95%;
}

.modalInfo {
    background: #00aead;
    width: 200px;
    height: 40px;
    margin-right: 20px;
    border-radius: 50px;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    padding-top: 15px;
}

.whatsapp {
    display: flex;
    float: right;
    margin-top: 10rem;
    margin-left: auto;
    margin-right: 100px;
}

.thankYouMessage{
    width: 100%;
    background: #C7F6B6;
    border-radius: 1rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 1rem;
    padding-top: 1rem;
    display: none;
}

.whatsAppText {
    width: 100%;
    border: none
}

.secondaryText {
    font-family: 'Arista', serif;
    margin-bottom: 40px;
    font-size: 80px;
    margin-top: 6rem;
    min-width: 500px;
}

.imgTxt {
    width: auto;
    margin-left: 60px;
    padding: 20px;
    font-size: 33px;
    display: flex;
    flex-direction: column;
    color: white;
    background: rgba(0, 174, 172, 0.0);
}

.imgTxt h1 {
    font-size: 33px;
    color: white;
}

.sayEhe {
    font-size: 2rem;
    margin-top: 7rem;
}


.whatsapp-section {
    display: flex;
    justify-content: flex-end;
}


.whatsapp-button {
    flex-grow: 1;
}
@media (max-width: 768px) {
    .imgTx {
        top: 476px;
    }

    .landing-text {
        display: flex;
        flex-direction: column;
        margin-left: 0 !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .navW {
        /*margin-left: 20px;*/
        width: 100%;
        display: flex;
        padding-left: 2rem;
        padding-right: 100px;
        background: #00aead;
        justify-content: space-between
    }


    .navL {
        height: 5.5rem;
        background: #00aead;
        padding-top: 2rem;
        padding-bottom: 2rem;
        left: 0;
        top: 5px;
    }

    .img-container-v1 img {
        width: 100%;
        height: 100%;
        left: 0;
        object-fit: scale-down;
        object-position: 60%;
        opacity: 0;
        position: absolute;
        top: 0;
        z-index: -1;
    }

    .whatsapp-container {
        width: 80% !important;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .whatsapp-button {
        flex-grow: unset;
    }

    .whatsapp-section {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
    }

    .whatsapp-controls {
        display: flex;
        flex-grow: 1;
        height: 5rem;
        width: 50%;
        background: white;
        padding: 1rem;
        border-radius: 3rem;
        margin-right: 2rem
    }

    .secondaryText {
        font-family: 'Arista', serif;
        margin-bottom: 4rem;
        font-size: 3rem;
        text-align: center;
        margin-top: 3rem;
        width: auto;
    }

    .modalInput {
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }

    .whatsapp {
        display: flex;
        float: left;
        margin-top: 15rem;
        margin-right: 0;
        margin-left: unset;
    }

    .whatsappDiv {
        display: flex;
        height: 50px;
        background: white;
        padding: 10px;
        border-radius: 30px;
        margin-right: 20px;
    }

    .sayEhe {
        font-size: 2rem;
        margin-top: 4rem;
        margin-bottom: 2rem;
    }

    .changeText {
        color: #00aead;
        font-size: 3rem;
        margin-bottom: 0;
        width: auto;
        font-family: 'Arista', serif;
    }

    .imgTxh {
        top: 100px;
        position: absolute;
        left: 0;
        z-index: 30;
        height: 100vh;
        width: 100vw;
    }

    .imgTxt {
        margin-left: 0;
        background: rgba(34, 38, 38, 0.5);
        font-size: 17px;
    }

    .imgTxt h1 {
        font-size: 17px;
        font-weight: 400;
    }
}

@media (max-width: 430px) {
    .imgTx {
        top: 200px;
    }

    .landing-text {
        display: flex !important;
        flex-direction: column !important;
        margin-left: 0 !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .whatsapp-container {
        width: 80% !important;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .secondaryText {
        font-family: 'Arista', serif;
        margin-bottom: 4rem;
        font-size: 5rem;
        margin-top: 3rem;
        width: auto !important;
    }

    .changeText {
        color: #00aead;
        font-size: 3rem !important;
        margin-bottom: 0 !important;
        width: auto !important;
        font-family: 'Arista', serif;
    }

    .whatsapp-button {
        flex-grow: unset;
    }

    .whatsapp-section {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
    }

    .whatsapp-container {
        width: 80% !important;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .bg-transparent-v1 {
        position: absolute;
        color: white;
        z-index: 10;
        top: 8rem;
        height: 100%;
        background: black;
        opacity: 0.7;
        width: 100vw;
        display: flex;
        flex-direction: column;
    }

    .navW {
        width: 100%;
        display: flex;
        padding-left: 4rem;
        padding-right: 2rem;
        background: #00aead;
        justify-content: space-between
    }


    .navL {
        height: 5.5rem;
        background: #00aead;
        padding-top: 2rem;
        padding-bottom: 1rem;
        left: 0;
        top: 5px;
    }

    .secondaryText {
        font-family: 'Arista', serif;
        margin-bottom: 40px;
        font-size: 50px;
        width: 400px;
    }

    .whatsapp-container {
        width: unset;
        color: white;
        display: flex;
    }

    .whatsapp-controls {
        display: flex;
        flex-grow: 1;
        height: 5rem;
        width: 50%;
        background: white;
        padding: 1rem;
        border-radius: 3rem;
        margin-right: 2rem
    }

    .modalInput {
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }

    .whatsapp {
        display: flex;
        float: left;
        margin-top: 10rem;
        margin-right: 0;
        margin-left: unset;
    }

    /*.whatsAppText {*/
    /*    width: 6rem;*/
    /*    border: none*/
    /*}*/

    /*.whatsappText {*/
    /*    display: flex;*/
    /*    height: 50px;*/
    /*    background: white;*/
    /*    padding: 10px;*/
    /*    border-radius: 30px;*/
    /*    margin-right: 20px;*/
    /*}*/
    .changeText {
        color: #00aead;
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-top: 10rem;
        width: 1400px;
        font-family: 'Arista', serif;
    }

    .imgTxh {
        top: 100px;
        position: absolute;
        left: 0;
        z-index: 30;
        height: 100vh;
        width: 100vw;
    }

    .imgTxt {
        margin-left: 0;
        background: rgba(34, 38, 38, 0.5);
        font-size: 17px;
    }

    .imgTxt h1 {
        font-size: 17px;
        font-weight: 400;
    }

    .imgTxh {
        top: 100px;
        position: absolute;
        left: 0;
        z-index: 30;
        height: calc(100% - 100px);
        width: 100%;
    }

    .imgTxt {
        height: calc(100% - 100px);
        font-size: 16px;
    }

    .imgTxt h1 {
        font-size: 16px;
        font-weight: 400;
    }

    .footIsi {
        margin-top: 14px;
    }

    .img-container img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -1;
    }
}

.pageRp {
    width: 100%;
    background-color: white;
}

.pageIn {
    max-width: 1280px;
    margin: auto;
    padding: 10px 15px 60px 15px;
}

.pageIn a {
    border-bottom: solid 2px #00afab;
    font-weight: 400;
    transition: all 0.2s linear;
}

.pageIn a:hover, a:focus {
    color: #009e9b;
}


.sepH {
    background-color: #f3f3f3;
    padding: 0px 15px 15px 15px;
}

.colu {
    float: left;
    width: 50%;
}

hide {
    display: none;
}

.payLogoS {
    position: absolute;
    right: 20px;
    top: 20px;
    margin: 20px 0px 0px 0px;
    width: 250px;
}

@media (max-width: 768px) {
    .colu {
        float: none;
        width: 100%;
    }

    ul {
        padding: 10px 0px 0px 20px;
        margin: 0px;
    }

    ol {
        padding: 10px 0px 0px 20px;
        margin: 0px;
    }

    hide {
        display: inline;
    }

    img.payLogoS {
        position: inherit;
        right: 0px;
        top: 0px;
        margin: 20px 0px 0px 0px;
        width: 200px;
    }
}

.logoRow img {
    height: 40px;
    margin-right: 20px;
}

.tbarWr {
    background-color: #009e9b;
}

.tbarIn {
    margin: auto;
    max-width: 1280px;
    padding: 40px 15px 40px 15px;
}

.tbarIn p {
    color: rgba(255, 255, 255, 0.9);
}

.tbarIn h1 {
    color: white;
}

.tbarIn strong {
    color: rgb(255, 255, 255);
}

.tbarIn ul {
    color: white;
}

.tbarIn a {
    color: white;
    text-decoration: none;
}

.logoRow {
    border-top: solid 1px #00afab;
    margin: 5px 0px -20px 0px;
    padding: 20px 0px 0px 0px;
    text-align: right;
}

.prlo {
    display: inline-block;
    height: 50px;
}


/*NEW DESIGN*/


* {
    margin: 0;
    padding: 0;
}

body {
    color: white;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper > * {
    /*padding: 20px;*/
    overflow: hidden
}

.page-header {
    border: 1px red solid;
    /*background: #592E83;*/
}

.page-main {
    flex-grow: 1;
    position: relative;
    /*background: #331E4D;*/
}

.page-footer {
    background: #9984D4;
}

.img-container-v1 {
    width: 100%;
    height: 100%;
    background-color: #999999;
    position: absolute;
    top: 0;
    left: 0;
}

.img-container-v1 img {
    object-fit: fill;
    object-position: 60%;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.img-container-v1 img.next {
    opacity: 1;
    z-index: 1;
}

.img-container-v1 img.prev {
    opacity: 1;
    z-index: 2;
}

.img-container-v1 img.fade-out {
    opacity: 0;
    transition: visibility 0s .5s, opacity .5s linear;
    visibility: hidden;
}

.landing-text {
    flex-grow: 1;
    color: white;
    margin-left: 10rem;
}

.landing-text-parent {
    position: absolute;
    color: white;
    z-index: 11;
    top: 9.3rem;
    height: 100%;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.whatsapp-container {
    width: 40%;
    color: white;
    display: flex;
}

.whatsapp-controls {
    display: flex;
    flex-grow: 1;
    height: 5rem;
    width: 40%;
    background: white;
    padding: 1rem;
    border-radius: 3rem;
    margin-right: 2rem
}

html {
    font-size: 10px;
}