@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;
  text-transform: capitalize;
}
body a.text-sky {
  display: inline-block;
  transition: all 0.2s ease;
}
body a.text-sky:hover {
  color: #28A9E0 !important;
  transform: translateY(-2px);
  box-shadow: 0 0 0 0 black;
}
body a.text-blue {
  display: inline-block;
  transition: all 0.2s ease;
}
body a.text-blue:hover {
  color: #0D123D !important;
  transform: translateY(-2px);
  box-shadow: 0 0 0 0 black;
}
body .text-blue {
  color: #0D123D !important;
}
body .text-sky {
  color: #28A9E0 !important;
}
body .text-gray {
  color: #333333 !important;
}
body .text-gray-2 {
  color: #686868 !important;
}
body .font-poppins {
  font-family: "Poppins", sans-serif;
}
body .font-corinthia {
  font-family: "Corinthia", sans-serif;
}
body .fw-medium {
  font-weight: 500;
}
body .btn {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  padding: 14px 70px;
  border-radius: 8px;
  box-shadow: none !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s linear;
}
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 linear;
  pointer-events: none;
  user-select: none;
}
body .btn:hover:before, body .btn:focus:before, body .btn:active:before {
  transform: translate(100%, 0);
}
body .btn-lg {
  font-size: 26px;
  line-height: 30px;
  padding: 24px 80px;
}
body .btn-primary {
  background: #28A9E0;
  color: #ffffff;
  border: solid 1px #28A9E0;
}
body .btn-primary:hover, body .btn-primary:focus, body .btn-primary:active {
  color: #000000;
  background: #28A9E0;
  border: solid 1px #28A9E0;
}
body .btn-outline-primary {
  background: transparent;
  color: #ffffff;
  border: solid 2px #28A9E0;
}
body .btn-outline-primary:hover, body .btn-outline-primary:focus, body .btn-outline-primary:active {
  color: #000000;
  background: #28A9E0;
  border: solid 2px #28A9E0;
}
body .badge {
  font-size: 24px;
  line-height: 34px;
  padding: 4px 16px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  max-width: max-content;
}
body .badge img {
  height: 34px;
  width: 34px;
}
body .badge.bg-primary {
  background: rgb(40, 169, 224);
  background: -moz-linear-gradient(320deg, rgb(40, 169, 224) 0%, rgb(13, 17, 62) 100%);
  background: -webkit-linear-gradient(320deg, rgb(40, 169, 224) 0%, rgb(13, 17, 62) 100%);
  background: linear-gradient(320deg, rgb(40, 169, 224) 0%, rgb(13, 17, 62) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#28a9e0",endColorstr="#0d113e",GradientType=1);
  position: relative;
}
body .badge.bg-primary:after {
  content: "";
  background: #ffffff;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  border-radius: 18px;
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: -1;
}
body .video_wrapper {
  background: rgba(40, 169, 224, 0.3);
  padding: 10px;
  border-radius: 20px;
  position: relative;
  display: flex;
}
body .video_wrapper video {
  border-radius: 12px;
  max-width: 100%;
}
body .video_wrapper button.btn_play {
  background: rgba(40, 169, 224, 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 {
  width: 48px;
}
body .video_wrapper button.btn_play:hover, body .video_wrapper button.btn_play:focus {
  background: #28a9e0;
}
body .video_wrapper.video_played img.main-thumb {
  opacity: 0;
  animation: z_index 0.1s ease forwards;
  animation-delay: 0.5s;
}
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;
  position: relative;
  z-index: 999;
}
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 {
  display: block;
  width: 100%;
  max-width: calc(100% - 126px);
  padding: 0 0 0 126px;
  text-align: center;
}
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: #606060;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px 19px 15px 24px;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.2) !important;
}
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: #606060;
  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;
}

@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: 1704px;
  }
}
@media (max-width: 1780px) {
  body .badge {
    font-size: 20px;
    line-height: 30px;
  }
  body .badge img {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 1580px) {
  body .btn {
    font-size: 20px;
  }
  body .btn-lg {
    padding: 18px 60px;
  }
  body .badge {
    font-size: 18px;
    line-height: 28px;
    padding: 4px 12px;
  }
  body .badge img {
    height: 28px;
    width: 28px;
  }
  body header .navbar .header-top .navbar-brand img {
    height: auto;
    max-width: 264px;
  }
  body header .navbar .header-top .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 20px;
  }
}
@media (max-width: 1380px) {
  body .btn {
    font-size: 18px;
    padding: 10px 20px;
  }
  body .btn-lg {
    padding: 10px 60px;
  }
  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;
  }
  body header .navbar .header-top .navbar-brand img {
    max-width: 264px;
  }
  body header .navbar .header-top .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 18px;
  }
}
@media (max-width: 1180px) {
  body .btn {
    font-size: 16px;
  }
  body header .navbar .header-top .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    padding: 10px 20px 10px 0;
  }
}
@media (max-width: 992px) {
  body header .navbar .header-top {
    padding: 16px 0;
  }
  body header .navbar .header-top .navbar-brand img {
    max-width: 224px;
  }
  body header .navbar .header-bottom {
    padding: 12px 0;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  body .btn-lg {
    padding: 10px 20px;
  }
  body .badge {
    font-size: 16px;
    line-height: 24px;
    padding: 4px 8px;
  }
  body .badge img {
    height: 24px;
    width: 24px;
  }
  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 .video_wrapper button.btn_play {
    height: 74px;
    width: 74px;
  }
  body .video_wrapper button.btn_play img {
    width: 20px;
  }
  body header .navbar .header-top {
    padding: 16px 0;
  }
  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;
  }
  body header .navbar .header-top .navbar-brand img {
    max-width: 150px;
  }
  body header .navbar .header-bottom {
    padding: 10px 0;
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  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;
  }
  body header .navbar .header-top .navbar-brand img {
    max-width: 150px;
  }
  body header .navbar .header-top .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    padding: 10px 8px 10px 0;
  }
  body header .navbar .header-top .btn.btn-primary {
    font-size: 14px;
    padding: 8px 10px;
  }
}

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