/********************************
* Base Styles 
*********************************/
/* reset by boostrap */
:root {
  --bs-gutter-x: 1.5rem;
}

body, html {
  font-family: "Open Sans", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212121;
}

html {
  font-size: 55%;
}

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

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-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

p, ul li, ol li, blockquote {
  font-size: 2.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

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

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

ol.blue-circle li::before {
  content: counter(aff-list);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  --size: 2.8rem;
  left: calc(-1 * var(--size) - 10px);
  line-height: calc(var(--size) - .1rem);
  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 2rem 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: 1.6rem;
  font-weight: bold;
  position: absolute;
  --size: 28px;
  left: calc(-1 * var(--size) - 10px);
  line-height: calc(var(--size) - .1rem);
  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: 3rem;
}

label {
  padding-top: 1.2rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  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: 1.5rem;
  color: #ABAFB3;
  margin-top: .8rem;
}

textarea {
  width: 100%;
  border: 1px solid #8A939D;
  padding: 1.2rem 1.6rem;
}

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

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

.form-check {
  padding-left: 2.3rem;
}

.form-check .form-check-input {
  margin-top: 0.7rem;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

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

.form-check-custom {
  padding-left: 3rem;
}

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

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

.form-check-custom .checkbox {
  position: absolute;
  -webkit-transform: translate(-100%, 4px);
          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;
  -webkit-transform: rotate(45deg);
          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;
}

.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;
  }
}

@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: 975px;
  }
}

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

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

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

.hr-small {
  height: 3px !important;
  width: 25%;
  opacity: 1;
}

.fw-medium {
  font-weight: 500;
}

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

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

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

.text-underline {
  text-decoration: underline;
}

.text-xlarge {
  font-size: 4rem;
}

@media (min-width: 768px) {
  .text-xlarge {
    font-size: 4.5rem;
  }
}

@media (min-width: 992px) {
  .text-xlarge {
    font-size: 7rem;
  }
}

@media (min-width: 768px) {
  .text-large {
    font-size: 4.5rem;
  }
}

@media (min-width: 992px) {
  .text-large {
    font-size: 6rem;
  }
}

.text-large2 {
  font-size: 4rem;
}

@media (min-width: 992px) {
  .text-large2 {
    font-size: 5rem;
  }
}

.text-large3 {
  font-size: 2.6rem;
}

@media (min-width: 992px) {
  .text-large3 {
    font-size: 3.6rem;
  }
}

.text-medium2 {
  font-size: 2.5rem;
}

.text-medium1 {
  font-size: 2rem;
}

.text-medium {
  font-size: 1.8rem;
}

.text-normal {
  font-size: 1.6rem;
}

.text-small {
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .text-small {
    font-size: 1.4rem;
  }
}

.text-xsmall {
  font-size: 1rem;
}

.text-lred {
  color: #f6615f;
}

.text-red {
  color: #D82929;
}

.text-darkred {
  color: #9E2828;
}

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

.text-green {
  color: #14FF00;
}

.text-lyellow {
  color: #fbd277;
}

.text-yellow {
  color: #FFFF00;
}

.text-blue {
  color: #3f51b5;
}

.text-dblue {
  color: #072b59;
}

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

.text-black {
  color: #000;
}

.text-orange {
  color: #FF9717;
}

.text-gray {
  color: #666;
}

.text-lgray {
  color: #4e5f70;
}

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

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

.font-secondary {
  font-family: "Raleway", sans-serif;
}

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

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

.mb-6 {
  margin-bottom: 5rem;
}

.mb-7 {
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .mb-7 {
    margin-bottom: 8rem;
  }
}

.mb-8 {
  margin-bottom: 8rem;
}

@media (min-width: 768px) {
  .mb-8 {
    margin-bottom: 10rem;
  }
}

@media (min-width: 768px) {
  .mb-md-6 {
    margin-bottom: 5rem;
  }
}

.mt-neg-5 {
  margin-top: -5rem;
}

.mt-6 {
  margin-top: 5rem;
}

.mt-7 {
  margin-top: 6rem;
}

@media (min-width: 768px) {
  .mt-7 {
    margin-top: 8rem;
  }
}

.pt-4\.5 {
  padding-top: 2rem;
}

.pt-6 {
  padding-top: 5rem;
}

.pt-7 {
  padding-top: 6rem;
}

@media (min-width: 768px) {
  .pt-7 {
    padding-top: 8rem;
  }
}

.pt-8 {
  padding-top: 8rem;
}

@media (min-width: 768px) {
  .pt-8 {
    padding-top: 10rem;
  }
}

.pb-4\.5 {
  padding-bottom: 2rem;
}

.pb-6 {
  padding-bottom: 5rem;
}

.pb-7 {
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .pb-7 {
    padding-bottom: 8rem;
  }
}

.pb-8 {
  padding-bottom: 8rem;
}

@media (min-width: 768px) {
  .pb-8 {
    padding-bottom: 10rem;
  }
}

.w-250 {
  width: 25rem;
}

.green-button, .purple-button, .yellow-button, .red-button, .orange-button {
  color: #fff;
  background-color: #289E65;
  position: relative;
  display: inline-block;
  max-width: 100%;
  text-align: center;
  line-height: 1.2;
  transition: 0.4s ease all;
  text-decoration: none;
  padding: 1.8rem 2.5rem;
  font-weight: 700;
  border-radius: 9px;
  border: 0 none;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid #000000;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .green-button, .purple-button, .yellow-button, .red-button, .orange-button {
    padding: 2rem 3rem;
  }
}

.green-button:hover, .purple-button:hover, .yellow-button:hover, .red-button:hover, .orange-button:hover {
  box-shadow: 1px 1px 10px 1px rgba(255, 255, 255, 0.3);
  color: #fff;
  background-color: #1e754b;
}

.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: #f6615f;
  color: #fff;
  box-shadow: none;
  border-radius: 40px;
  width: 100%;
  font-size: 2.8rem;
  text-shadow: none;
  font-weight: 400;
  border: 0 none;
}

.red-button:hover {
  background-color: #f3312f;
  box-shadow: none;
}

.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: #FFFF02;
  color: #464747;
}

.yellow-button:hover {
  background-color: #e8e800;
  color: #464747;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}

.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-black {
  background-color: #000;
  color: #fff;
}

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

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

.bg-lblue {
  background-color: #28B5E1;
}

.bg-lred {
  background-color: #f6615f;
}

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

.bg-rose {
  background-color: #df83a1;
}

.bg-aqua {
  background-color: #78ccd7;
}

.bg-dark {
  --bs-dark-rgb: 21, 27, 32;
  color: #fff;
}

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

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

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

/* Border */
.bc-gray {
  border-color: #C9C4C4;
}

.bordered-black-transparent {
  background-color: transparent;
  border: 1px solid #000;
}

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

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

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

.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 .accordion-item {
  border: 1px solid #53A2C4;
}

.accordion .accordion-button {
  font-size: 1.8rem;
  background-color: #90D7F6;
  color: #394451;
  font-weight: 600;
  padding: 1.5rem 2rem;
}

@media (min-width: 768px) {
  .accordion .accordion-button {
    font-size: 2rem;
  }
}

.accordion .accordion-body {
  padding-top: 2rem;
}

.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: -2.5rem;
  }
}

.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 .form-group {
  margin-bottom: 2rem;
}

.modal-content input.form-control {
  color: #000;
  background-color: #f5f5f5;
  border: 1px solid #e9e9e9;
  padding: 18px 16px;
  font-size: 2rem;
  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;
  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;
  }
}

.info-wrap {
  position: relative;
}

.info-wrap .info-icon {
  cursor: help;
}

.info-wrap .info-icon:hover + .info-content {
  display: block;
}

.info-wrap .info-content {
  display: none;
  background-color: #333;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 4px;
  height: 20rem;
  overflow: scroll;
  position: absolute;
  top: 3px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  margin-right: -3rem;
  min-width: 20rem;
}

.info-wrap .info-content:hover {
  display: block;
}

.info-wrap .info-content p {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.input-bg-gray {
  background-color: #E1E4ED !important;
}

.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 {
  -webkit-animation: updown 2s infinite;
          animation: updown 2s infinite;
}

/** ANIMATION **/
@-webkit-keyframes updown {
  0%, 100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@keyframes updown {
  0%, 100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-5px);
            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;
}

.navbar .black-button-plain {
  border: 1px solid #000;
  border-radius: 12px;
  background-color: transparent;
  font-weight: 500;
  font-size: 1.8rem;
  padding: .4rem 1.5rem;
  display: inline-block;
  color: #000;
}

.navbar .black-button-plain:hover {
  background-color: #000;
  color: #fff;
}

/* 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;
}

.circle-down {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  width: 170px;
  margin: 0 auto;
}

.circle-up {
  position: absolute;
  top: -65px;
  left: 0;
  right: 0;
  width: 170px;
  margin: 0 auto;
}

/*** Site Footer ***/
.site-footer {
  background-color: #3b3b3b;
  color: #e0e0e0;
}

.site-footer p {
  font-size: 1.6rem;
}

.site-footer a {
  color: #ff8a65;
  text-decoration: none;
  font-weight: 700;
}

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

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

.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;
}

/** Banner **/
.banner {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.banner .footer-row {
  border-top: 1px solid #D4D4D4;
  border-bottom: 1px solid #D4D4D4;
  padding: 30px 0 10px;
}

.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);
}

/** Main Content **/
.icon-red-circle {
  font-size: 4rem;
  color: #f6615f;
  height: 92px;
  width: 92px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  border: 1px solid #f6615f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.img-comment {
  height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.highlight-yellow {
  color: #6c4c41;
  background-color: #ffee58;
  display: inline-block;
  letter-spacing: 5px;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
}

.header-text {
  font-size: 7rem;
}

@media (min-width: 768px) {
  .header-text {
    font-size: 10rem;
  }
}

.custom-countdown {
  justify-content: center;
}

.custom-countdown .timer div {
  font-size: 1.3rem;
}

.custom-countdown .timer div > span {
  font-size: 3rem;
  font-weight: bold;
  border: 1px solid;
  padding: 8px 6px;
  display: block;
  line-height: 1;
  min-width: 55px;
  text-align: center;
  margin-bottom: 5px;
}

.calendar-block {
  display: inline-block;
  border: 1px solid #000;
}

.calendar-block .date {
  color: #000;
  background-color: #D9D9D9;
  font-size: 2.3rem;
  padding: 6px;
}

.calendar-block .date span {
  display: block;
  font-weight: 700;
  font-size: 7rem;
  line-height: 1;
}

.calendar-block .desc {
  background-color: #A04A4A;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 6px 10px;
  border-top: 1px solid #000;
  text-align: center;
}

.bordered-gray {
  border: 1px solid rgba(0, 0, 0, 0.17);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
