@keyframes z_index {
  0% {
    z-index: 2;
  }
  100% {
    z-index: -2;
  }
}
body {
  background-color: #ffffff;
  color: #333333;
  font-family: "Poppins", sans-serif;
  margin: 0 !important;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-weight: 700;
}
body .text-blue {
  color: #0D123D !important;
}
body .text-sky {
  color: #28A9E0 !important;
}
body .text-yellow {
  color: #FFCC33 !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}
body .text-success {
  color: #60BF99 !important;
}
body .fw-medium {
  font-weight: 500;
}
body .btn {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 15px;
  box-shadow: none !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
  text-transform: uppercase;
}
body .btn:before {
  content: "";
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-100%, 0);
  z-index: -1;
  transition: all 0.4s ease;
  pointer-events: none;
  user-select: none;
}
body .btn:hover:before, body .btn:focus:before, body .btn:active:before {
  transform: translate(100%, 0);
}
body .btn-primary {
  background: #28A9E0;
  color: #ffffff;
  border: solid 1px #28A9E0;
}
body .btn-primary:hover, body .btn-primary:focus, body .btn-primary:active {
  background: #28A9E0;
  color: #ffffff;
  border: solid 1px #28A9E0;
}
body .btn-red {
  background: #EC3E3C;
  color: #ffffff;
  border: solid 1px #EC3E3C;
}
body .btn-red:hover, body .btn-red:focus, body .btn-red:active {
  color: #ffffff;
  background: #EC3E3C;
  border: solid 1px #EC3E3C;
}
body .btn-yellow {
  background: #FFCC33;
  color: #000000;
  border: solid 1px #FFCC33;
}
body .btn-yellow:hover, body .btn-yellow:focus, body .btn-yellow:active {
  color: #ffffff;
  background: #FFCC33;
  border: solid 1px #FFCC33;
}
body .f-oswald {
  font-family: "Oswald", sans-serif;
}
body .video_wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
}
body .video_wrapper video {
  width: 100%;
  max-width: 100%;
}
body .video_wrapper button.btn_play {
  background: rgba(255, 204, 51, 0.5);
  padding: 0;
  height: 124px;
  width: 124px;
  border: solid 2px #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}
body .video_wrapper button.btn_play img {
  height: auto;
  width: 50px;
  margin-left: 10px;
}
body .video_wrapper button.btn_play:hover, body .video_wrapper button.btn_play:focus {
  background: #28a9e0;
}
body .video_wrapper.video_played button.btn_play {
  opacity: 0;
  animation: z_index 0.1s ease forwards;
  animation-delay: 0.5s;
}
body header {
  background: #ffffff;
  position: relative;
  z-index: 999;
}
body header .navbar {
  padding: 0;
  display: block;
}
body header .navbar .header-top {
  padding: 20px 0;
}
body header .navbar .header-top > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body header .navbar .header-top > .container > div {
  width: 100%;
  max-width: max-content;
}
body header .navbar .header-top .navbar-brand {
  padding: 0;
  display: block;
  max-width: max-content;
}
body header .navbar .header-top .navbar-brand img {
  height: auto;
  width: 100%;
  max-width: 284px;
}
body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle {
  background-color: #ffffff;
  color: rgba(51, 51, 51, 0.5);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px 19px 15px 24px;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 12px;
}
body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle img {
  height: auto;
  width: 24px;
}
body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle:before {
  display: none;
}
body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle:after {
  background: url("../../img/webp/arrow-up-country.webp") no-repeat center/cover;
  height: 24px;
  width: 24px;
  border: none;
  margin: 0 0 0 auto;
  transition: all 0.2s ease;
}
body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle[aria-expanded=false]:after {
  transform: rotate(180deg);
}
body header .navbar .header-top .dropdown.country-selector ul {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  min-width: 130px;
  border: none;
  box-shadow: 0 2px 10px -3px rgba(0, 0, 0, 0.1);
  margin: 12px 0 0;
}
body header .navbar .header-top .dropdown.country-selector ul li a {
  background-color: #ffffff;
  color: rgba(51, 51, 51, 0.5);
  font-size: 16px;
  text-transform: uppercase;
  padding: 13px 27px 13px 24px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}
body header .navbar .header-top .dropdown.country-selector ul li a img {
  height: auto;
  width: 24px;
}
body header .navbar .header-top .dropdown.country-selector ul li a.checked {
  background: #ECF0F6;
}
body header .navbar .header-top .dropdown.country-selector ul li a.checked:after {
  content: "";
  background: url("../../img/webp/check-circle-selected-country.webp") no-repeat center/cover;
  height: 16px;
  width: 16px;
  margin: 0 0 0 4px;
  display: block;
}
body header .navbar .header-top .dropdown.country-selector ul li a:hover {
  background: #ECF0F6;
}
.modal#thank_you .modal-dialog {
  max-width: 540px;
}
.modal#thank_you .modal-dialog .modal-content {
  position: relative;
  background-color: transparent;
  overflow: hidden;
  border: solid 3px #28A9E0;
  border-radius: 16px;
}
.modal#thank_you .modal-dialog .modal-content .modal-header {
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}
.modal#thank_you .modal-dialog .modal-content .modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}
.modal#thank_you .modal-dialog .modal-content .modal-header .btn-close:hover, .modal#thank_you .modal-dialog .modal-content .modal-header .btn-close:focus {
  opacity: 1;
}
.modal#thank_you .modal-dialog .modal-content .modal-body {
  padding: 60px 12px 24px;
}
.modal#thank_you .modal-dialog .modal-content .modal-body img {
  height: 108px;
  width: 108px;
}
.modal#thank_you .modal-dialog .modal-content .modal-footer {
  border: none;
  justify-content: center;
  padding: 0;
}
.modal#thank_you .modal-dialog .modal-content .modal-footer img {
  margin: 0;
  width: 100%;
  max-width: 366px;
}
.modal#thank_you .modal-dialog .modal-content > img.bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (min-width: 992px) {
  .order-lg-6 {
    order: 6 !important;
  }
}
@media (min-width: 1180px) {
  body .container {
    max-width: 1084px;
  }
}
@media (min-width: 1380px) {
  body .container {
    max-width: 1284px;
  }
}
@media (min-width: 1580px) {
  body .container {
    max-width: 1484px;
  }
}
@media (min-width: 1780px) {
  body .container {
    max-width: 1624px;
  }
}
@media (max-width: 1780px) {
  body .btn {
    font-size: 24px;
  }
}
@media (max-width: 1580px) {
  body .btn {
    font-size: 20px;
  }
  body header .navbar .header-top .navbar-brand img {
    height: auto;
    max-width: 264px;
  }
  .modal#thank_you .modal-dialog {
    max-width: 500px;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-body {
    padding: 40px 12px 24px;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-body img {
    height: 98px;
    width: 98px;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-footer img {
    max-width: 300px;
  }
}
@media (max-width: 1380px) {
  body .btn {
    font-size: 18px;
    padding: 16px 100px;
  }
  body header .navbar .header-top .navbar-brand img {
    max-width: 264px;
  }
  body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle {
    font-size: 14px;
    padding: 10px 15px 10px 20px;
  }
  body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle img {
    width: 20px;
  }
  body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle:after {
    height: 20px;
    width: 20px;
  }
  body header .navbar .header-top .dropdown.country-selector ul {
    min-width: 110px;
  }
  body header .navbar .header-top .dropdown.country-selector ul li a {
    font-size: 14px;
    padding: 10px 23px 10px 20px;
  }
  body header .navbar .header-top .dropdown.country-selector ul li a img {
    height: auto;
    width: 20px;
  }
  body header .navbar .header-top .dropdown.country-selector ul li a.checked:after {
    height: 12px;
    width: 12px;
  }
  .modal#thank_you .modal-dialog {
    max-width: 420px;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-body {
    padding: 30px 12px 24px;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-body img {
    height: 78px;
    width: 78px;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-footer img {
    max-width: 240px;
  }
}
@media (max-width: 1180px) {
  body .btn {
    font-size: 16px;
    padding: 16px 80px;
  }
}
@media (max-width: 992px) {
  body .btn {
    padding: 16px 60px;
  }
  body header .navbar .header-top {
    padding: 16px 0;
  }
  body header .navbar .header-top .navbar-brand img {
    max-width: 224px;
  }
  .modal#thank_you .modal-dialog {
    max-width: 380px;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-body {
    padding: 20px 12px 24px;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-body img {
    height: 68px;
    width: 68px;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-footer img {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  body .btn {
    padding: 16px 40px;
  }
  body .video_wrapper button.btn_play {
    height: 80px;
    width: 80px;
  }
  body .video_wrapper button.btn_play img {
    width: 24px;
    margin-left: 4px;
  }
  body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle {
    padding: 6px 5px 6px 10px;
    text-indent: -200px;
    border-radius: 8px;
  }
  body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle:after {
    margin: 0;
  }
  body header .navbar .header-top .dropdown.country-selector ul {
    min-width: 86px;
    left: unset;
    right: 0;
  }
  body header .navbar .header-top .dropdown.country-selector ul li a {
    padding: 10px 9px 10px 10px;
  }
}
@media (max-width: 567px) {
  body .btn {
    padding: 16px 20px;
  }
  body header .navbar .header-top {
    padding: 16px 0;
  }
  body header .navbar .header-top .navbar-brand img {
    max-width: 150px;
  }
  body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle {
    padding: 4px 4px 4px 6px;
    border-radius: 6px;
  }
  body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle img {
    width: 16px;
  }
  body header .navbar .header-top .dropdown.country-selector button.dropdown-toggle:after {
    height: 16px;
    width: 16px;
  }
  .modal#thank_you .modal-dialog {
    max-width: 380px;
    margin: 8px auto;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-body img {
    height: 54px;
    width: 54px;
  }
  .modal#thank_you .modal-dialog .modal-content .modal-footer img {
    max-width: 200px;
  }
}

/*# sourceMappingURL=header.css.map */
