/********************************
* Base Styles 
*********************************/
/* reset by boostrap */
html {
  -webkit-font-smoothing: antialiased;
  font-size: 80%;
}

@media (min-width: 768px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Lato", Helvetica, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #337ab7;
  transition: all 0.4s ease;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #23527c;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Francois One", Helvetica, sans-serif;
  line-height: 1.3;
}

h1, .h1 {
  font-size: 2.375rem;
}

@media (min-width: 992px) {
  h1, .h1 {
    font-size: 2.875rem;
  }
}

h2, .h2 {
  font-size: 2rem;
}

@media (min-width: 992px) {
  h2, .h2 {
    font-size: 2.25rem;
  }
}

h3, .h3 {
  font-size: 1.6875rem;
}

@media (min-width: 768px) {
  h3, .h3 {
    font-size: 1.875rem;
  }
}

h4, .h4 {
  font-size: 1.4375rem;
}

@media (min-width: 768px) {
  h4, .h4 {
    font-size: 1.5625rem;
  }
}

h5, .h5 {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  h5, .h5 {
    font-size: 1.375rem;
  }
}

h6, .h6 {
  font-size: 1rem;
}

@media (min-width: 768px) {
  h6, .h6 {
    font-size: 1.125rem;
  }
}

p, ul li, ol li, blockquote {
  font-size: 1.3125rem;
  line-height: 1.3;
}

ol.blue-circle {
  counter-reset: aff-list;
  list-style: none;
  margin: 20px 0;
  font-size: 1.125rem;
}

ol.blue-circle li {
  margin: 0 0 1.25rem 0;
  counter-increment: aff-list;
  position: relative;
}

ol.blue-circle li::before {
  content: counter(aff-list);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  --size: 1.75rem;
  left: calc(-1 * var(--size) - 10px);
  line-height: calc(var(--size) - 1px);
  width: var(--size);
  height: var(--size);
  background: #3660AD;
  border-radius: 50%;
  text-align: center;
}

ol.blue-circle ol {
  counter-reset: aff-nested-list;
  list-style: none;
}

ol.blue-circle ol li {
  margin: 0 0 1.25rem 0;
  counter-increment: aff-nested-list;
  position: relative;
}

ol.blue-circle ol li::before {
  content: counter(aff-nested-list, lower-alpha);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  --size: 28px;
  left: calc(-1 * var(--size) - 10px);
  line-height: calc(var(--size) - 1px);
  width: var(--size);
  height: var(--size);
  top: 0;
  background: #3660AD;
  border-radius: 50%;
  text-align: center;
}

button, a {
  transition: 0.4s ease all;
}

b, strong {
  font-weight: 700;
}

hr {
  background-color: #888;
}

blockquote {
  border-left: 7px solid #3660AD;
  padding: 10px 20px;
}

/* Form */
.form-group {
  margin-bottom: 1.875rem;
}

label {
  padding-top: 0.75rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: 0 0 8px rgba(58, 212, 234, 0.5);
}

.form-text {
  font-size: 1rem;
  color: #ABAFB3;
  margin-top: 0.5rem;
}

textarea {
  width: 100%;
  border: 1px solid #8A939D;
  padding: 12px 16px;
}

.custom-file-label {
  border: 1px solid #8A939D;
  border-radius: 0;
  height: 50px;
  font-size: 1rem;
  padding: 0.625rem 1rem;
}

.custom-file-label:after {
  height: 100%;
  padding: 0.625rem;
}

.form-check {
  padding-left: 23px;
}

.form-check .form-check-input {
  margin-top: 7px;
  left: 0;
  transform: translateX(100%);
}

.form-check .form-check-label {
  padding: 0;
}

.form-check-custom {
  padding-left: 30px;
}

.form-check-custom .form-check-input {
  display: none;
}

.form-check-custom .form-check-label {
  position: relative;
  font-size: 18px;
  font-weight: 400;
}

.form-check-custom .checkbox {
  position: absolute;
  transform: translate(-100%, 4px);
  top: 0;
  left: -1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.25);
  width: 2rem;
  height: 2rem;
  border-radius: 3px;
}

.form-check-custom .checkbox:before {
  content: '';
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: .6rem;
  height: 1.2rem;
  display: block;
  transform: rotate(45deg);
  margin: 2px auto;
  opacity: 0;
}

.form-check-custom input[type="checkbox"]:checked + .form-check-label .checkbox:before {
  opacity: 1;
}

button[disabled], button[disabled]:hover {
  background-color: #eee;
  color: #ccc;
  cursor: not-allowed;
}

.plain-list {
  padding: 0;
  list-style: none;
}

.plain-list li {
  margin-bottom: 0;
}

.plain-list li:before {
  display: none;
}

.fa-list-gray .fa-li {
  margin: 0;
  color: #5c5c5c;
}

.fa-list-lbgreen .fa-li {
  color: #0cc;
}

.fa-ul.fa-list-larger {
  margin-left: 4.5rem;
}

.fa-ul.fa-list-larger .fa-li {
  left: -4.5rem;
}

.fa-ul.fa-list-larger i {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .fa-ul.fa-list-larger {
    margin-left: 6rem;
  }
  .fa-ul.fa-list-larger .fa-li {
    left: -5rem;
  }
  .fa-ul.fa-list-larger i {
    font-size: 3rem;
  }
}

.fa-ul.fa-list-med {
  margin-left: 4.5rem;
}

.fa-ul.fa-list-med .fa-li {
  left: -4.5rem;
}

.fa-ul.fa-list-med i {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .fa-ul.fa-list-med {
    margin-left: 6rem;
  }
  .fa-ul.fa-list-med .fa-li {
    left: -5rem;
  }
  .fa-ul.fa-list-med i {
    font-size: 2.3rem;
  }
}

.container, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 1.875rem;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (min-width: 1650px) {
  .container-lg {
    max-width: 1600px;
  }
}

@media (min-width: 1200px) {
  .container-md {
    max-width: 970px;
  }
}

.container-sm {
  max-width: 770px;
}

@media (max-width: 767px) {
  .container-p-sm {
    padding-left: 0;
    padding-right: 0;
  }
}

[class^="container"] [class^="container"] {
  padding-left: 0;
  padding-right: 0;
}

.fw-semibold {
  font-weight: 600;
}

.fw-extrabold {
  font-weight: 800;
}

.fw-black {
  font-weight: 900;
}

.text-red {
  color: #ff0000;
}

.text-darkred {
  color: #800000;
}

.text-brown {
  color: #6c4c41;
}

.text-green {
  color: #1f9f63;
}

.text-green2 {
  color: #30d684;
}

.text-lyellow {
  color: #fbd277;
}

.text-yellow {
  color: #FFFF00;
}

.text-blue {
  color: #0089ff;
}

.text-lblue {
  color: #a2def8;
}

.text-dblue {
  color: #013776;
}

.text-dblue2 {
  color: #182051;
}

.text-bgreen {
  color: #00f6ef;
}

.text-black {
  color: #000;
}

.text-orange {
  color: #FF9717;
}

.text-gray {
  color: #666;
}

.text-shadow {
  text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.4);
}

.font-primary {
  font-family: "Lato", Helvetica, sans-serif;
}

.font-secondary {
  font-family: "Francois One", Helvetica, sans-serif;
}

.font-tertiary {
  font-family: "Roboto", Helvetica, sans-serif;
}

.link-underline-inherit {
  color: inherit;
  text-decoration: underline;
}

.green-button, .purple-button, .yellow-button, .red-button, .orange-button {
  color: #fff;
  background-color: #1f9f63 !important;
  position: relative;
  display: inline-block;
  max-width: 100%;
  text-align: center;
  line-height: 1.2;
  transition: 0.4s ease all;
  text-decoration: none;
  padding: 20px 30px;
  font-weight: 700;
  border-radius: 6px;
  border: 0 none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px, rgba(0, 0, 0, 0.2) 0px 0px 0px inset;
  font-size: 22px;
  width: 100%;
}

.green-button:hover, .purple-button:hover, .yellow-button:hover, .red-button:hover, .orange-button:hover {
  color: #fff;
  background-color: #177448 !important;
}

@media (min-width: 768px) {
  .green-button, .purple-button, .yellow-button, .red-button, .orange-button {
    padding: 15px 30px;
    width: auto;
  }
}

.green-button-plain {
  background-color: #289E65;
  font-size: 27px;
  font-weight: 700;
  border-radius: 5px;
  border: 0;
  color: white;
  text-transform: uppercase;
  padding: 12px;
  transition: 0.4s ease all;
}

.green-button-plain:hover {
  background-color: #238a58;
}

.green-button-white-border {
  border-color: #fff;
}

.orange-button {
  background-color: #f28614;
}

.orange-button:hover {
  background-color: #e0790c;
}

.red-button {
  background-color: #ff004f;
  color: #fff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.red-button:hover {
  background-color: #cc003f;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.red-button .icon {
  height: 40px;
  width: 40px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 100px;
  padding: 10px 5px;
  margin-right: 1.5rem;
}

.bgreen-button-plain {
  color: #fff;
  background-color: #1acae0;
  font-weight: 700;
  text-transform: uppercase;
  border: 0 none;
  padding: 1rem 2rem;
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  .bgreen-button-plain {
    font-size: 3rem;
  }
}

.bgreen-button-plain:hover {
  background-color: #17b5c9;
}

.yellow-button {
  background-color: #ffc828;
  color: #000;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.yellow-button:hover {
  background-color: #ffc828;
  color: #000;
  box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, 0.22), 0 233px 233px 0 rgba(255, 255, 255, 0.12) inset;
}

.yellow-button-big {
  background: linear-gradient(25deg, #ba4d20, #cf701f, #e3911c, #f6b313);
  border: 5px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  width: 100%;
  padding: 20px 40px;
  font-size: 3.4rem;
  color: #fff;
  transition: all ease 0.2s;
}

.yellow-button-big:hover {
  box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, 0.22), 0 233px 233px 0 rgba(255, 255, 255, 0.12) inset;
}

@media (max-width: 767px) {
  .yellow-button-big {
    font-size: 2.2rem;
  }
  .yellow-button-big .text-medium2 {
    font-size: 1.4rem;
  }
}

.purple-button {
  background-color: #7c36e1;
  color: #fff;
}

.purple-button:hover {
  background-color: #6e21dd;
  color: #fff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}

.btn {
  padding: 1.3rem 3rem;
  border-radius: 30px;
  line-height: 1.25;
  font-size: 1.6rem;
  font-weight: 600;
}

.btn-big {
  font-size: 2.4rem;
  padding: 1.2rem 2.4rem;
  margin: 2rem 0;
  border-radius: 4px;
  line-height: 1.25;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-unstyled {
  padding: 0;
  border: 0;
  background: none;
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.section-title-big {
  font-size: 3.6rem;
}

.title-line {
  position: relative;
  padding-bottom: 1.5rem;
}

.title-line:after {
  content: "";
  width: 30%;
  height: 3px;
  display: block;
  position: absolute;
  left: 0;
  margin: auto;
  bottom: 0;
  background-color: #dcdcdc;
}

.bg-gray {
  background-color: #F7F7F7;
}

.bg-dgray {
  background-color: #747579;
  color: #fff;
}

.bg-yellow {
  background-color: #ffc828;
}

.bg-lyellow {
  background-color: #f7fdb5;
}

.bg-dblue {
  background-color: #101a2b;
}

.bg-dblue1 {
  background-color: #071e2b;
}

.bg-dblue2 {
  background-color: #011436;
}

.bg-lblue {
  background-color: #a2def8;
}

.bg-dark {
  --bs-dark-rgb: 70, 71, 71;
  color: #fff;
}

.bg-light {
  --bs-light-rgb: 241, 241, 241;
}

.bg-purple {
  background-color: #6a12e8;
}

.bg-green {
  background-color: #228f58;
}

.bg-img-default {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.bg-img-default-bottom {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.bg-img-default-center {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Border radius */
.rounded-3px {
  border-radius: 3px;
}

.rounded-10px {
  border-radius: 10px;
}

.rounded-15px {
  border-radius: 15px;
}

.rounded-20px {
  border-radius: 20px;
}

/* Positioning */
.absolute-full {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* COMPONENTS */
.accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBVcGxvYWRlZCB0bzogU1ZHIFJlcG8sIHd3dy5zdmdyZXBvLmNvbSwgR2VuZXJhdG9yOiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIGZpbGw9IiMwMDAwMDAiIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgDQoJIHdpZHRoPSI4MDBweCIgaGVpZ2h0PSI4MDBweCIgdmlld0JveD0iMCAwIDMwLjcyNyAzMC43MjciDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGcgZmlsbD0iI2EyZGVmOCI+DQoJPHBhdGggZD0iTTI5Ljk5NCwxMC4xODNMMTUuMzYzLDI0LjgxMkwwLjczMywxMC4xODRjLTAuOTc3LTAuOTc4LTAuOTc3LTIuNTYxLDAtMy41MzZjMC45NzctMC45NzcsMi41NTktMC45NzYsMy41MzYsMA0KCQlsMTEuMDk1LDExLjA5M0wyNi40NjEsNi42NDdjMC45NzctMC45NzYsMi41NTktMC45NzYsMy41MzUsMEMzMC45NzEsNy42MjQsMzAuOTcxLDkuMjA2LDI5Ljk5NCwxMC4xODN6Ii8+DQo8L2c+DQo8L3N2Zz4=");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBVcGxvYWRlZCB0bzogU1ZHIFJlcG8sIHd3dy5zdmdyZXBvLmNvbSwgR2VuZXJhdG9yOiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIGZpbGw9IiMwMDAwMDAiIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgDQoJIHdpZHRoPSI4MDBweCIgaGVpZ2h0PSI4MDBweCIgdmlld0JveD0iMCAwIDMwLjcyNyAzMC43MjciDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGcgZmlsbD0iI2EyZGVmOCI+DQoJPHBhdGggZD0iTTI5Ljk5NCwxMC4xODNMMTUuMzYzLDI0LjgxMkwwLjczMywxMC4xODRjLTAuOTc3LTAuOTc4LTAuOTc3LTIuNTYxLDAtMy41MzZjMC45NzctMC45NzcsMi41NTktMC45NzYsMy41MzYsMA0KCQlsMTEuMDk1LDExLjA5M0wyNi40NjEsNi42NDdjMC45NzctMC45NzYsMi41NTktMC45NzYsMy41MzUsMEMzMC45NzEsNy42MjQsMzAuOTcxLDkuMjA2LDI5Ljk5NCwxMC4xODN6Ii8+DQo8L2c+DQo8L3N2Zz4=");
  --bs-accordion-active-color: #000;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-padding-y: 1.5625rem;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1.5625rem;
  --bs-accordion-color: #000;
}

.accordion .accordion-item {
  border-radius: 0;
}

.accordion .accordion-header button {
  font-size: 1.3125rem;
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 700;
}

.accordion .accordion-collapse {
  visibility: visible;
}

.accordion .accordion-body {
  background-color: rgba(0, 0, 0, 0.03);
}

.accordion .accordion-body p, .accordion .accordion-body ol li, .accordion .accordion-body ul li {
  font-size: 1rem;
}

.accordion .accordion-body ol {
  list-style: decimal;
  padding-left: 2.25rem;
  margin-bottom: 1.75rem;
}

.accordion .accordion-body ol li {
  margin-bottom: 0;
}

.countdown {
  display: flex;
  justify-content: center;
}

.countdown p {
  font-size: 2rem;
  margin: 0;
}

.countdown .timer {
  display: flex;
  text-align: center;
}

.countdown .timer div {
  font-size: 1.4rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .countdown .timer div {
    font-size: 1.6rem;
  }
}

.countdown .timer div > span {
  display: block;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.2;
}

.countdown-horizontal {
  flex-wrap: wrap;
  align-items: center;
}

.countdown-horizontal p {
  margin-right: 1rem;
}

.countdown-vertical {
  flex-wrap: wrap;
}

.countdown-vertical p {
  margin-bottom: .5rem;
  width: 100%;
}

.countdown-blocks .timer div {
  color: #424242;
  padding: 0 0.3rem;
}

@media (min-width: 768px) {
  .countdown-blocks .timer div {
    padding: 0 1rem;
  }
}

.countdown-blocks .timer div span {
  position: relative;
  display: inline-block;
  background-color: #fff;
  color: #212121;
  border-radius: 4px;
  padding: 6px 0px 6px 6px;
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 8px;
}

@media (min-width: 768px) {
  .countdown-blocks .timer div span {
    padding: 10px 0px 10px 13px;
    letter-spacing: 16px;
  }
}

.countdown-blocks .timer div span:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 50%;
  display: block;
  background-color: black;
}

.countdown-blocks .timer div > div {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
}

.modal .btn-close {
  position: relative;
  font-size: 1.5rem;
  margin-left: auto;
  right: -0.5rem;
}

@media (min-width: 768px) {
  .modal .btn-close {
    right: -25px;
  }
}

.modal-dialog {
  margin-top: 4rem;
}

.modal-title {
  font-size: 2.6rem;
  color: #242741;
}

.modal-content {
  color: #000;
}

@media (min-width: 768px) {
  .modal-content {
    padding: 10px 50px 16px;
  }
}

.modal-content label {
  margin-bottom: 5px;
  padding-top: 0;
}

.modal-content input.form-control {
  color: #000;
  background-color: #f5f5f5;
  border: 1px solid #e9e9e9;
  padding: 18px 16px;
  font-size: 20px;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 5px;
}

.modal-content .green-button-plain {
  margin-top: 15px;
}

.modal-header {
  border-bottom: 0;
  padding-bottom: 0;
}

.modal.blue-custom .btn-close {
  position: absolute;
  right: 0;
  margin-top: 1rem;
  margin-right: 1rem;
}

.modal.blue-custom .modal-content {
  padding: 0;
}

.modal.blue-custom .modal-body form {
  max-width: 70rem;
}

.modal-reg .modal-dialog {
  margin: 4rem 0.5rem;
}

@media (min-width: 576px) {
  .modal-reg .modal-dialog {
    margin: 4rem auto;
    max-width: 600px;
  }
}

.modal-reg .modal-content {
  color: #38395E;
  border-radius: 8px;
  padding: 10px;
}

@media (min-width: 768px) {
  .modal-reg .modal-content {
    padding: 15px 40px;
  }
}

.modal-reg .modal-content label {
  margin-bottom: 5px;
}

.modal-reg .modal-content input.form-control {
  color: #000;
  background-color: transparent;
  padding: 1.6rem;
  font-size: 1.6rem;
  width: 100%;
  border-radius: 5px;
  border: 0;
  border: 1px solid #EAE9F2;
  margin-bottom: 0;
}

.modal-reg .modal-content p {
  font-size: 1.4rem;
  line-height: 1.4;
}

.modal-reg .btn-close {
  position: relative;
  font-size: 1.5rem;
  margin-left: auto;
  right: -.5rem;
}

@media (min-width: 768px) {
  .modal-reg .btn-close {
    right: -2.5rem;
  }
}

.modal-reg .modal-title {
  color: #000;
  font-size: 2.4rem;
  line-height: 1.2;
}

.modal-reg .mmodal-header {
  border-bottom: 0;
}

.modal-reg.success .modal-dialog {
  max-width: 480px;
}

@media (min-width: 768px) {
  .modal-reg.success .modal-content {
    padding: 15px 30px;
  }
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.white-rounded-box {
  border-radius: 15px;
  box-shadow: 20px 33px 66px rgba(0, 0, 0, 0.06);
  background-color: #fff;
}

.updown-animation {
  animation: updown 2s infinite;
}

/** ANIMATION **/
@keyframes updown {
  0%, 100% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* PAGE SECTION STYLES */
/*** Site Menu ***/
.navbar {
  padding-top: 1.7rem;
  padding-bottom: 1rem;
}

.navbar .navbar-brand {
  font-size: 2.4rem;
  letter-spacing: 1px;
}

@media (min-width: 992px) {
  .navbar .navbar-brand {
    font-size: 3rem;
  }
}

.navbar .nav-link, .navbar .nav-link.active {
  font-size: 1.8rem;
  padding: 1rem;
  font-weight: 500;
  color: #000;
  display: inline-block;
}

.navbar .nav-link:hover {
  text-decoration: underline;
}

.navbar .nav-link.active {
  font-weight: 600;
}

.navbar .nav-link.active:hover {
  text-decoration: none;
}

/* MASK */
.default-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../images/jv-banner-mask.svg);
  mask-image: url(../images/jv-banner-mask.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
  mask-position: bottom;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #1A9DE4;
  top: 0;
  left: 0;
}

.default-mask img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*** Site Footer ***/
.site-footer {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer p {
  color: #fff;
  font-size: 1rem;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
}

.site-footer .social-icons a {
  color: #fff;
}

.site-footer .social-icons a:hover {
  color: #e6e6e6;
}

.site-footer .svg-inline--fa, .site-footer .fas {
  margin-right: 2px;
}

.site-footer svg + svg, .site-footer .fas + .fas {
  margin-left: 10px;
}

.site-footer.bg-black a {
  color: #fff;
}

.site-footer.bg-black a:hover {
  color: #cccccc;
}

.site-footer .footer-logo {
  width: 10rem;
  position: absolute;
  top: 0;
  transform: translateY(-38%);
  left: 0;
  right: 0;
  margin: 0 auto;
}

.circle-img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
}

/** CUSTOM SECTIONS **/
/*********************/
.green-num-circle {
  display: inline-block;
  font-family: "Roboto", Helvetica, sans-serif;
  border-radius: 50%;
  background-color: #228f58;
  font-weight: 700;
  font-size: 2.5rem;
  padding: 20px;
  line-height: 1;
  width: 80px;
  height: 80px;
}

.border-lblue, .border-lblue-dashed {
  border-radius: 6px;
  border: 3px solid #a2def8;
  padding: 24px 20px;
}

.border-lblue-dashed {
  background-color: #fff;
  border: 2px dashed #a2def8;
}

.lblue-icon-circle {
  width: 92px;
  height: 92px;
  border: 2px solid #a2def8;
  color: #a2def8;
  border-radius: 50%;
  text-align: center;
  padding: 14px;
  font-size: 40px;
  line-height: 1.5;
}

.lblue-box-dark, .lblue-box-light {
  border: 3px solid #a2def8;
}

.lblue-box-dark .title, .lblue-box-light .title {
  background-color: #a2def8;
  color: #000;
  text-align: center;
  font-size: 1.9375rem;
  font-family: "Francois One", Helvetica, sans-serif;
  padding: 15px 1.5625rem;
}

.lblue-box-dark .content, .lblue-box-light .content {
  padding: 25px 1.5625rem 10px;
  background-color: #101a2b;
}

.lblue-box-light .content {
  background-color: #fff;
}

.lblue-img-circle-border {
  border: 2px solid #a2def8;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 50px;
  border-radius: 50%;
}

.modal-custom .btn-close {
  background-image: none;
  width: 40px;
  position: absolute;
  opacity: 1;
  top: -22px;
  right: -30px;
}

.modal-custom .btn-close img {
  height: 38px;
  width: 38px;
}

.modal-custom .modal-dialog {
  max-width: 760px;
}

.modal-custom .modal-content {
  border: 5px #101a2b solid;
  border-radius: 10px;
}

.modal-custom .modal-content input.form-control {
  margin-bottom: 0;
  border-radius: 6px;
  padding: 10px 18px;
  background: linear-gradient(to bottom, #ebebeb 0%, #f6f6f6 9%, white 100%);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Email intro styling */
.email-intro {
  position: relative;
}

.email-intro .subject {
  position: absolute;
  right: 0;
  top: 43%;
  font-size: clamp(6px, 1.3vw, 20px);
  font-weight: bold;
  max-width: 43%;
  width: 435px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #1d1d1e;
  font-family: "Roboto", Helvetica, sans-serif;
}

.footnotes {
  background-color: black;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footnotes p {
  font-size: 1rem;
}