* {
    font-family: 'Montserrat', sans-serif;
    outline: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    height: 100%;
    width: 100%;
}
body {
    font-size: 16px;
}
img {
    display: block;
    max-width: 100%;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}

/* HEADER BEGIN */
.header {
    background: #fff;
    padding: 10px 0;
}
.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .logo .logo__heading {
    font-size: 1.3rem;
    color: #000;
}
.header .logo .logo__img {
    max-width: 200px;
    max-height: 90px;
}
.header .header__contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 3;
}
.header .header__contact__cta, 
.btn-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    cursor: pointer;
    width: 50%;
}
.header .header__contact__cta img, 
.btn-whatsapp img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}
.header .header__contact__cta p, 
.btn-whatsapp p {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}
.header .header__contact__cta p strong, 
.btn-whatsapp p strong {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}
.header .header__contact__cta p span, 
.btn-whatsapp p span {
    display: none;
}
.header .header__contact__cta {
    background: #2862ac;
    position: relative;
}
.header .header__contact__cta.header__contact__cta--full {
    width: 100%;
}
.btn-whatsapp {
    background: #289059;
}
.header .header__contact__cta .popup {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0px;
    bottom: -95px;
    pointer-events: none;
    transition: all 0.6s ease;
    background: url('../images/icons/popup-mobile.png') no-repeat left center;
    background-size: contain;
}
.header .header__contact__cta .popup.popup--show {
    visibility: visible;
    opacity: 1;
    bottom: 52px;
    width: 240px;
    height: 150px;
}
.header .header__contact__cta .popup.popup--show .popup-close {
    font-size: 2.5rem;
    color: #04204c;
    font-weight: 500;
    cursor: pointer;
    pointer-events: auto;
    position: absolute;
    right: 0px;
    top: -25px;
}
@media only screen and (min-width: 768px) {
    .header .header__contact__cta, 
    .btn-whatsapp {
        padding: 10px;
    }
    .header .header__contact__cta img, 
    .btn-whatsapp img {
        width: 35px;
        height: 35px;
    }
    .header .header__contact__cta p, 
    .btn-whatsapp p {
        font-size: 14px;
    }
    .header .header__contact__cta p strong, 
    .btn-whatsapp p strong {
        font-size: 18px;
    }
}
@media only screen and (min-width: 1024px) {
    .header .container {
        justify-content: space-between;
    }
    .header .logo .logo__heading {
        font-size: 1.8rem;
        color: #000;
    }
    .header .header__contact {
        position: static;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: auto;
    }
    .header .header__contact__cta, 
    .btn-whatsapp {
        border-radius: 4px;
        width: auto;
        justify-content: space-between;
    }
    .header .header__contact__cta p span, 
    .btn-whatsapp p span {
        display: inline;
    }
    .header .header__contact__cta {
        margin-right: 10px;
    }
    .header .header__contact__cta .popup {
        left: 10px;
        bottom: -10px;
        background: url('../images/icons/popup.svg') no-repeat center;
        background-size: contain;
    }
    .header .header__contact__cta .popup.popup--show {
        visibility: visible;
        opacity: 1;
        bottom: -80px;
        width: 300px;
        height: 80px;
    }
    .header .header__contact__cta.header__contact__cta--full .popup.popup--show {
        width: 260px;
    }
    .header .header__contact__cta .popup.popup--show .popup-close {
        right: -8px;
        top: -10px;
    }
}
@media only screen and (min-width: 1600px) {
    .header .header__contact__cta.header__contact__cta--full .popup.popup--show {
        width: 300px;
    }
}
/* HEADER END */

/* HERO BEGIN */
.hero {
    min-height: 550px;
    background: #39228f url('../images/backgrounds/mobile.png') no-repeat center;
    background-size: 100%;
}
.hero.hero--seal {
    background-image: url('../images/backgrounds/mobile-seal.png');
}
.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero .hero__call {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 0 0 40px;
    width: 80%;
}
.hero .hero__call .hero__call__title {
    font-size: 20px;
    font-weight: 900;
    line-height: 24px;
    color: #04204c;
    text-transform: uppercase;
}
.hero .hero__call {
    color: #04204c;
}
.hero .hero__call .white {
    color: #f7f8fa;
    margin-bottom: 10px;
}
.hero .hero__info {
    display: none;
}
.hero .btn-whatsapp {
    display: none;
}
@media only screen and (min-width: 768px) {
    .hero {
        min-height: 350px;
        background: #39228f url('../images/backgrounds/desktop.png') no-repeat center;
        background-size: cover;
    }
    .hero.hero--seal {
        background-image: url('../images/backgrounds/desktop-seal.png');
    }
    .hero .container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        min-height: 350px;
    }
    .hero .hero__call {
        width: 46%;
    }
    .hero .btn-whatsapp {
        display: flex;
        width: auto;
    }
}@media only screen and (min-width: 1024px) {
    .hero {
        min-height: 450px;
    }
    .hero .container {
        min-height: 450px;
    }
    .hero .hero__call {
        padding: 20px 0 0 80px;
    }
    .hero .hero__call .hero__call__title {
        font-size: 32px;
        line-height: 43px;
    }
    .hero .hero__info {
        display: block;
        color: #04204c;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        width: 50%;
        text-align: center;
    }
}
@media only screen and (min-width: 1600px) {
    .hero {
        min-height: 700px;
    }
    .hero .container {
        min-height: 700px;
    }
}
/* HERO END */

/* ADDRESS BEGIN */
.address {
    min-height: 300px;
    background: #434343 url('../images/backgrounds/address.png') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.address .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.address__card {
    background: #AEAEAE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    min-height: 156px;
    padding: 10px;
    margin: 0 10px 10px;
}
.address__card .address__card__image {
    width: 76px;
    height: 76px;
    margin: 0 0 10px 0;
}
.address__card .address__card__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-style: normal;
}
.address__card .address__card__title {
    font-size: 16px;
    font-weight: 700;
    color: #3F464C;
}
.address__card .address__card__description {
    font-size: 16px;
    font-weight: 400;
    color: #3f464c;
    text-align: center;
    font-style: normal;
}
@media only screen and (min-width: 768px) {
    .address__card {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .address__card .address__card__image {
        margin: 0 20px 0 0;
    }
    .address__card .address__card__text {
        align-items: flex-start;
    }
    .address__card .address__card__description {
        text-align: left;
    }
}
@media only screen and (min-width: 1024px) {
    .address .container {
        flex-direction: row;
    }
    .address__card {
        justify-content: space-around;
        min-width: 450px;
        max-width: 450px;
        margin-bottom: 0;
    }
    .address__card .address__card__image {
        margin: 0 10px 0 0;
    }
}
/* ADDRESS END */

/* FOOTER BEGIN */
.footer {
    background: #000;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 45px;
}
.footer p {
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}
@media only screen and (min-width: 1024px) {
    .footer {
        margin-bottom: 0px;
    }
}
/* FOOTER END */

/* WHASTAPP MODAL BEGIN */
  #modal-whatsapp {
    display: none;
    transition: all 0.3s ease-in-out;
  }
  #modal-whatsapp.show {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
  }
  #modal-whatsapp .row,
  #modal-whatsapp .col-12 {
    width: 100vw;
    height: 100vh;
  }
  .modal-whatsapp-wrapper {
    width: 400px;
    background: #fff;
    border-radius: 5px;
  }
  .modal-header {
    position: relative;
    background: #0dc143;
    padding: 1.5rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
  }
  .modal-header h3 {
    margin: 0;
    text-align: center;
    color: #fff;
    font-weight: 400;
  }
  .modal-header h3 span {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.7rem;
  }
  #modal-close {
    cursor: pointer;
    position: absolute;
    bottom: 80%;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-body {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .modal-body form {
    width: 100%;
  }
  .modal-body .form-group {
    margin-bottom: 1rem;
  }
  .modal-body .form-control {
    height: 50px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #3f464c;
    color: #3f464c;
    outline: 0;
  }
  .modal-body .form-control.error {
    color: #ff0000;
    margin-top: 0.4rem;
    border-color: #ff0000;
  }
  label.error {
    font-size: 0.8rem;
    color: #ff0000;
  }
  .modal-body button {
    background: #0dc143;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    width: 100%;
    padding: 0.9rem 1.5rem;
    margin-top: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  .modal-body button:hover {
    background: #0dc143cc;
  }
  
  @media (max-width: 767px) {
    .modal-whatsapp-wrapper {
      width: 300px;
    }
  }
  
/* WHASTAPP MODAL END */