@charset "UTF-8";

/* CSS Document */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  counter-reset: counter-faq;
}
ul,
li {
  list-style-type: none;
}
a,
button,
input[type="submit"] {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
a,
img,
a:hover,
button {
  text-decoration: none;
  outline: none !important;
}
img {
  max-width: 100%;
  height: auto;
}
:focus,
:hover,
:active {
  outline: none !important;
}
p {
  color: #494948;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Montserrat Light";
}

/* --- FONTS --- */

@font-face {
  font-family: "Ubuntu Light";
  src: url("../fonts/ubuntu-light.woff2") format("woff2"),
    url("../fonts/ubuntu-light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Ubuntu Medium";
  src: url("../fonts/ubuntu-medium.woff2") format("woff2"),
    url("../fonts/ubuntu-medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Ubuntu Regular";
  src: url("../fonts/ubuntu-regular.woff2") format("woff2"),
    url("../fonts/ubuntu-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Ubuntu Bold";
  src: url("../fonts/ubuntu-bold.woff2") format("woff2"),
    url("../fonts/ubuntu-bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* --- END FONTS --- */

/* --- BODY --- */

html,
body {
  background-color: #f9f9f9;
}
main {
  margin-top: 100px;
  padding: 40px 30px 50px;
}

/* --- END BODY --- */

/* --- HEADER --- */

header {
  background: #ffffff;
  height: 100px;
}
header .title h1 {
  font-family: "Ubuntu Medium";
  color: #505050;
  font-size: 18px;
  text-align: right;
}

/* LOGO */

.logo {
  display: flex;
  height: 60px;
}

/* --- END HEADER --- */

/* --- BUTTON --- */

.button {
  width: auto;
  display: inline-block;
  background-color: #d60b52;
  border: 1px solid transparent;
  color: #ffffff !important;
  border-radius: 15px;
  padding: 15px 35px;
  font-size: 16px;
  font-family: "Ubuntu Medium";
  text-align: center;
}
.button:hover {
  color: #d60b52 !important;
  background-color: transparent;
  border: 1px solid #d60b52;
}

/* --- END BUTTON --- */

/* --- CARD --- */

.card {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  box-shadow: 0px 8px 15px -7px rgb(0 0 0 / 25%);
  border: 0;
  border-radius: 16px;
  padding: 50px;
}
.card .image img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
}
.card .icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.card .content a,
.card .content button {
  font-size: 14px;
  line-height: 150%;
  font-family: "Ubuntu Regular";
  color: #d60b52;
  text-decoration: underline;
}
.card .content button {
  text-decoration: none;
}
.card .content a:hover,
.card .content button:hover {
  color: #505050;
}
.card .content p,
.card .content label,
.card .content li {
  font-size: 14px;
  line-height: 150%;
  font-family: "Ubuntu Regular";
  color: #505050;
}
.card .content strong,
.card .content h3 {
  font-family: "Ubuntu Bold";
  font-size: 14px;
  color: #505050;
}
.card .content p:last-child {
  margin-bottom: 0;
}
.card .content ul {
  padding: 0 0 0 13px;
}
.card .content ul,
.card .content ul li {
  list-style-type: decimal;
}
.card .content ul li {
  margin-bottom: 20px;
}
.card .content ul:last-child,
.card .content ul li:last-child {
  margin-bottom: 0;
}

.card .content .title {
  text-align: center !important;
}
.card .content .title h2 {
  font-size: 22px;
  line-height: 150%;
  font-family: "Ubuntu Medium";
  color: #505050;
}

/* BULLETS */

.bullets {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bullets .bullet {
  display: flex;
  align-items: center;
  margin: 0 20px;
}
.bullets .bullet:last-child {
  margin-bottom: 0px;
}
.bullets .bullet a {
  font-size: 14px;
  color: #505050;
  display: flex;
  align-items: center;
}
.bullets .bullet a:hover {
  color: #d60b52;
}
.bullets .bullet a img {
  margin-right: 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.bullets .bullet a:hover img {
  transform: scale(0.9);
}

/* --- END CARD --- */

.privacy-policy p {
  font-family: "Ubuntu Medium";
  font-size: 14px;
  color: #505050;
}
.privacy-policy a {
  font-family: "Ubuntu Medium";
  color: #d60b52;
  text-decoration: underline;
}
.privacy-policy a:hover {
  color: #505050;
}

/* MODAL */

.modal-dialog .modal-content {
  border-radius: 30px;
  border: 0;
  padding: 30px;
}
.success .modal-dialog .modal-content .modal-body {
  text-align: center;
}
.signup .modal-dialog .modal-content .modal-body {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* padding-top: 56.25%; */
  margin-top: 20px;
}
.signup .modal-dialog .modal-content .modal-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.modal-dialog .modal-content .modal-header {
  border-bottom: 0;
  padding: 0;
}
.modal-dialog .modal-content .modal-footer {
  border-top: 0;
  padding: 0;
}
.modal-dialog .modal-content h2 {
  font-size: 30px;
  font-family: "Montserrat Bold";
  color: #d60b52;
}
.modal-dialog .modal-content p {
  font-size: 14px;
  color: #494948;
  font-family: "Montserrat Light";
}

/* END MODAL */

/* --- FOOTER --- */

footer {
  background-color: #000000;
  padding: 40px;
}
footer h3,
footer p,
footer a {
  font-size: 12px;
  color: #ffffff;
  font-family: "Ubuntu Light";
}
footer a {
  font-family: "Ubuntu Bold";
}
footer a:hover {
  font-family: "Ubuntu Bold";
  color: #d60b52;
}
footer p {
  margin-bottom: 3px;
}
footer p strong {
  font-family: "Ubuntu Bold";
}
.footer .row > div:nth-child(1) {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer .row > div:nth-child(1) a {
  width: 56px;
  margin-right: 20px;
  display: inline-block;
}

/* --- END FOOTER --- */

/* RESPONSIVE */

@media (max-width: 1400px) {
}
@media (max-width: 1200px) {
}
@media (max-width: 1100px) {
}
@media (max-width: 992px) {
  /* --- CONTAINER --- */

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }

  /* --- END CONTAINER --- */

  /* --- HEADER --- */

  header {
    height: 100px;
  }
  header .row > div:nth-child(1) .logo {
    justify-content: center;
  }
  header .title h1 {
    text-align: center;
  }

  /* --- END HEADER --- */

  /* --- MAIN --- */

  main {
    margin-top: 80px;
  }

  /* --- END MAIN --- */

  /* --- CARD --- */

  /* CONTENT */

  .card {
    padding: 40px 30px;
  }
  .card .content > div {
    text-align: left !important;
  }

  /* BULLETS */

  .bullets {
    flex-direction: column;
    align-items: flex-start;
  }
  .bullets .bullet {
    margin: 0 0 20px;
  }
  .bullets .bullet:last-child {
    margin-bottom: 0;
  }

  /* --- END CARD --- */

  /* --- FOOTER --- */

  .footer .row > div:nth-child(1) {
    flex-direction: column;
  }
  .footer .row > div {
    margin-bottom: 25px;
  }

  /* --- END FOOTER --- */
}
@media (max-width: 767px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 850px;
  }

  /* --- BUTTON --- */

  .button {
    width: 100%;
  }

  /* --- END BUTTON --- */

  /* --- FOOTER --- */

  footer div {
    text-align: center;
  }
  .footer .row > div {
    margin-bottom: 20px;
  }
  .footer .row > div:last-child {
    margin-bottom: 0;
  }
  .footer .row > div:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .footer .row > div:nth-child(1) a {
    margin-right: 0;
    margin-bottom: 20px;
  }

  /* --- END FOOTER --- */
}
@media (max-width: 600px) {
}
@media (max-width: 470px) {
}
@media (max-width: 360px) {
}
