@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
body * {
  box-sizing: border-box;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 1px 1px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 5px;
}
.swiper-button-prev::after {
  color: #fff;
  font-size: 21px;
}
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 1px 1px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 5px;
}
.swiper-button-next::after {
  color: #fff;
  font-size: 21px;
}

.header {
  width: 100%;
  height: auto;
  display: block;
  position: fixed;
  top: 0;
  z-index: 10;
  transition: 0.3s ease all;
}
.header__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  height: 40px;
  transition: 0.3s ease all;
}
@media (min-width: 992px) {
  .header__top {
    gap: 15px;
  }
}
.header__top-seperator {
  width: 1px;
  height: 15px;
  background-color: #7f94f5;
  display: none;
}
@media (min-width: 768px) {
  .header__top-seperator {
    display: block;
  }
}
.header__top-item {
  width: auto;
}
@media (max-width: 768px) {
  .header__top-item:nth-child(1) {
    display: none;
  }
  .header__top-item:nth-child(2) {
    display: none;
  }
  .header__top-item:nth-child(3) {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__top-item:nth-child(1) {
    display: block;
  }
  .header__top-item:nth-child(2) {
    display: block;
  }
  .header__top-item:nth-child(3) {
    display: block;
  }
}
.header__top-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  color: #7f94f5;
  text-decoration: none;
}
@media (min-width: 992px) {
  .header__top-link {
    font-size: 14px;
  }
}
.header__top-link--white {
  color: #fff;
}
.header__bottom {
  padding: 15px 0;
  transition: 0.3s ease all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.header__logo {
  width: 200px;
  z-index: 10;
}
@media (min-width: 992px) {
  .header__logo {
    width: 300px;
  }
}
.header__logo img {
  width: 100%;
  display: block;
}
.header__nav {
  width: calc(100% - 200px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .header__nav {
    width: calc(100% - 300px);
  }
}
.header__nav-items {
  display: none;
}
@media (min-width: 992px) {
  .header__nav-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
  }
}
.header__nav-link {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.header__nav-link--active::before {
  content: "";
  width: 100%;
  height: 2px;
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgba(2, 0, 36, 0) 0%, #ff9000 50%, rgba(0, 212, 255, 0) 100%);
  position: absolute;
  left: 0;
  bottom: -5px;
  border-radius: 10px;
}
.header__mobile-nav {
  position: fixed;
  top: -10%;
  height: 100vh;
  background-color: rgba(3, 9, 50, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: 0.3s ease-in-out all;
  pointer-events: none;
}
.header__mobile-nav-opener {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  border: 0;
  z-index: 10;
  cursor: pointer;
  display: block;
}
.header__mobile-nav-opener:after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../img/menu-open.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  filter: brightness(0) saturate(100%) invert(99%) sepia(36%) saturate(231%) hue-rotate(190deg) brightness(113%) contrast(100%);
}
.header__mobile-nav-opener--active:after {
  background-image: url("../img/menu-close.svg");
}
@media (min-width: 992px) {
  .header__mobile-nav-opener {
    display: none;
  }
}
.header__mobile-nav-items {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  margin-top: 150px;
  left: 0;
  padding: 20px 20px;
}
.header__mobile-nav-item {
  width: 100%;
  padding: 10px 0;
}
.header__mobile-nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 125%;
  display: flex;
  align-items: center;
}
.header__mobile-nav-link:before {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 5px;
  background: url("../img/chevron-right.svg") no-repeat center;
  background-size: cover;
}
.header__mobile-nav-link--active {
  color: #ff9000;
}
.header__mobile-nav-link--active:before {
  filter: brightness(0) saturate(100%) invert(63%) sepia(25%) saturate(6329%) hue-rotate(0deg) brightness(104%) contrast(104%);
}
.header__mobile-nav--active {
  top: 0;
  opacity: 1;
  pointer-events: all;
}
.header__mobile-nav .header__nav-link--active {
  color: #ff9000;
}
.header__mobile-nav .header__nav-link--active:before {
  filter: brightness(0) saturate(100%) invert(63%) sepia(25%) saturate(6329%) hue-rotate(0deg) brightness(104%) contrast(104%);
}
.header--sticky {
  background-color: rgba(5, 12, 67, 0.85);
}
.header--sticky .header__top {
  height: 0;
  opacity: 0;
}
.header--sticky .header__bottom {
  padding: 35px 0;
}
.header--sticky::before {
  content: "";
  width: 100%;
  margin: 0 auto;
  height: 2px;
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgba(2, 0, 36, 0) 0%, #ff9000 50%, rgba(0, 212, 255, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0px;
  border-radius: 10px;
}

.hero {
  position: relative;
  width: 100%;
  z-index: 0;
}
.hero__banner {
  width: 100vw;
  height: 100vh;
  background-color: #0f1752;
}
.hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.7;
}
@media (min-width: 992px) {
  .hero__banner img {
    object-position: center;
  }
}
.hero__text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  z-index: 2;
  text-shadow: 0px 0px 10px #4666ff;
  text-align: center;
  padding: 0 50px;
}
@media (min-width: 992px) {
  .hero__text {
    top: 50%;
    padding: 0;
    display: flex;
    align-items: space-between;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.hero__text strong:nth-child(1) {
  font-size: 20px;
  line-height: 125%;
  letter-spacing: -0.5px;
}
@media (min-width: 360px) {
  .hero__text strong:nth-child(1) {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .hero__text strong:nth-child(1) {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .hero__text strong:nth-child(1) {
    font-size: 60px;
  }
}
@media (min-width: 1600px) {
  .hero__text strong:nth-child(1) {
    font-size: 65px;
  }
}
@media (min-width: 1920px) {
  .hero__text strong:nth-child(1) {
    font-size: 70px;
  }
}
.hero__text strong:nth-child(2) {
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 125%;
}
@media (min-width: 360px) {
  .hero__text strong:nth-child(2) {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .hero__text strong:nth-child(2) {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .hero__text strong:nth-child(2) {
    font-size: 60px;
  }
}
@media (min-width: 1600px) {
  .hero__text strong:nth-child(2) {
    font-size: 65px;
  }
}
@media (min-width: 1920px) {
  .hero__text strong:nth-child(2) {
    font-size: 70px;
  }
}
.hero__text span {
  font-weight: 200;
}
.hero__button {
  background-color: #ff9000;
  height: 50px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  color: #0c144c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-top: 20px;
  text-shadow: none;
}

.about-us {
  width: 100%;
  background-color: #0f1753;
  z-index: 1;
}
.about-us__wrapper {
  width: 100%;
  background-color: rgba(1, 8, 61, 0);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .about-us__wrapper {
    padding: 50px 100px 70px 100px;
  }
}
.about-us__title {
  font-size: 20px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .about-us__title {
    font-size: 30px;
  }
}
.about-us__title:after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #ff9000;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  position: relative;
  transform: translateY(10px);
}
.about-us__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  gap: 20px;
  margin-top: 30px;
}
.about-us__content p {
  font-size: 14px;
  color: #fff;
  line-height: 150%;
  font-weight: 400;
  opacity: 0.9;
}
@media (min-width: 992px) {
  .about-us__content p {
    font-size: 16px;
  }
}
.about-us__content strong {
  font-weight: 500;
}

.educations {
  width: 100%;
  background: rgb(4, 11, 54);
  background: linear-gradient(0deg, rgb(4, 11, 54) 0%, rgb(15, 23, 83) 100%);
  z-index: 4;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.educations__wrapper {
  width: 100%;
  padding: 0px;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .educations__wrapper {
    padding: 0px;
  }
}
.educations__title {
  font-size: 20px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-top: -100px;
}
@media (min-width: 992px) {
  .educations__title {
    font-size: 30px;
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .educations__title:before {
    content: "";
    background: url("../img/man-mobile.png") no-repeat center;
    width: 300px;
    height: 300px;
    background-size: cover;
    display: block;
    position: relative;
    z-index: -1;
    pointer-events: none;
    display: block;
    margin: 0 auto;
  }
}
.educations__title:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff9000;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  position: relative;
  transform: translateY(10px);
}
.educations__boxes {
  margin-top: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 50px 0px;
  position: relative;
}
@media (min-width: 992px) {
  .educations__boxes {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px 20px;
  }
}
.educations__box {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  transition: 0.3s ease-in-out all;
  border-radius: 10px 10px;
  border: 1px solid transparent;
  backdrop-filter: blur(100px);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 992px) {
  .educations__box {
    width: calc(25% - 15px);
  }
}
.educations__box-banner {
  width: 100%;
  height: 180px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.educations__box-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s ease-in-out all;
}
.educations__box-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 95%;
  height: 90%;
  z-index: 999;
}
.educations__box-lock-img {
  width: 70px;
}
.educations__box-lock-text {
  color: #fff;
  font-size: 18px;
  line-height: 125%;
  text-align: center;
  width: 100%;
  padding-top: 5px;
}
.educations__box-date {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: rgba(11, 18, 71, 0.75);
  backdrop-filter: blur(10px);
  width: auto;
  padding: 10px 15px;
  position: absolute;
  bottom: 5px;
  left: 5px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0b1247;
  display: none !important;
}
.educations__box-date img {
  width: 20px;
  margin-right: 5px;
  filter: brightness(0) saturate(100%) invert(98%) sepia(3%) saturate(252%) hue-rotate(83deg) brightness(118%) contrast(100%);
}
.educations__box-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  height: 55px;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  pointer-events: none;
}
.educations__box-title span {
  width: calc(100% - 40px);
  font-size: 15px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  transition: 0.3s ease-in-out all;
}
.educations__box-title::before {
  width: calc(100% - 40px);
  height: 1px;
  background-color: #ff9000;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  box-sizing: border-box;
}
.educations__box-desc {
  padding-top: 10px;
  position: relative;
  transition: max-height 0.15s ease-out;
  max-height: 100px;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 11;
  border-radius: 0 0 10px 10px;
}
.educations__box-desc p {
  line-height: 150%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.educations__box-desc ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}
.educations__box-desc ul li {
  color: #00eaff;
  margin-bottom: 5px;
  text-align: left;
}
.educations__box-desc ul li:last-child {
  margin-bottom: 0;
}
.educations__box-desc ul li button {
  line-height: 130%;
  font-size: 14px;
  color: #00eaff;
  text-decoration: underline;
  background-color: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.educations__box-desc:after {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(2, 0, 36);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgb(15, 23, 83) 60%);
  z-index: 1;
  content: "";
  transition: 0.3s ease all;
  opacity: 1;
}
.educations__box-desc-2 {
  padding-top: 10px;
  position: relative;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 11;
  border-radius: 0 0 10px 10px;
}
.educations__box-desc-2 p {
  line-height: 150%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 0;
}
.educations__box-desc-2 a {
  margin-top: 10px;
  margin-bottom: 20px;
}
.educations__box-detail {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  position: absolute;
  z-index: 10;
  bottom: 0px;
  height: 50px;
  left: 0;
  padding: 0 20px;
}
.educations__box-detail-button {
  width: 50%;
  height: 50px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #ff9000;
  z-index: 2;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  letter-spacing: -0.5px;
  cursor: pointer;
  pointer-events: none;
}
.educations__box-detail-button:after {
  transition: 0.3s ease all;
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(90deg) translateX(0px);
  display: block;
  border-radius: 5px;
  background: url("../img/chevron-right.svg") no-repeat center;
  background-size: cover;
  margin-left: 5px;
  filter: brightness(0) saturate(100%) invert(40%) sepia(88%) saturate(430%) hue-rotate(351deg) brightness(100%) contrast(100%);
}
.educations__box-detail-page {
  width: max-content;
  height: 30px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #0c144c;
  z-index: 2;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  letter-spacing: -0.5px;
  padding: 0 15px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #ff9000;
  margin-top: 10px;
  margin-bottom: 20px;
}
.educations__box-close {
  width: 40px;
  height: 30px;
  background-color: rgba(167, 22, 51, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  position: absolute;
  top: 5px;
  right: 5px;
  border: 0;
  font-size: 15px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease all;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: pointer;
}
.educations__box-close:after {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg) translateX(0px);
  display: block;
  border-radius: 5px;
  background: url("../img/chevron-right.svg") no-repeat center;
  background-size: cover;
}
.educations__box--active {
  z-index: 10;
}
.educations__box--active .educations__box-title {
  z-index: 1;
  position: relative;
  pointer-events: all;
}
.educations__box--active .educations__box-title:after {
  transform: rotate(180deg);
}
.educations__box--active .educations__box-desc {
  position: relative;
  border-radius: 0 0 10px 10px;
  background-color: #0f1753;
  backdrop-filter: blur(15px);
  padding-bottom: 50px;
  max-height: 500px;
  transition: max-height 0.3s ease-in-out;
  box-shadow: 0px 30px 100px 0 rgba(156, 173, 229, 0.5);
  z-index: 0;
}
.educations__box--active .educations__box-desc:after {
  opacity: 0;
  pointer-events: none;
}
.educations__box--active .educations__box-detail {
  bottom: 10px;
}
.educations__box--active .educations__box-detail-button {
  pointer-events: all;
}
.educations__box--active .educations__box-detail-button:after {
  transform: rotate(-90deg);
}
@media (min-width: 992px) {
  .educations__box:hover .educations__box-banner {
    width: 100%;
    height: 180px;
    border-radius: 5px;
    overflow: hidden;
  }
  .educations__box:hover .educations__box-banner-img {
    width: 110%;
    height: 110%;
    margin-left: -5%;
    margin-top: -2%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    overflow: hidden;
  }
}
.educations__box--lock {
  pointer-events: none;
}
.educations__box--lock .educations__box-title {
  opacity: 0.6;
}
.educations__box--lock .educations__box-desc-2 {
  opacity: 0.6;
}
.educations__logo {
  display: none;
  pointer-events: none;
}
.educations__figure {
  display: none;
  pointer-events: none;
}
@media (min-width: 992px) {
  .educations {
    padding: 100px 0;
  }
  .educations__logo {
    content: "";
    background: url("../img/logo-a-2.png") no-repeat center;
    width: 648px;
    height: 978px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: -1;
    top: -10%;
    left: 50%;
    transform: translateX(calc(-50% - 500px));
    opacity: 0.1;
    pointer-events: none;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .educations__logo {
    width: 848px;
    height: 1178px;
    top: -10%;
  }
}
@media (min-width: 992px) {
  .educations__figure {
    display: none;
    pointer-events: none;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .educations__figure {
    content: "";
    background: url("../img/man.png") no-repeat center;
    width: 488px;
    height: 837px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: -1;
    top: -10%;
    right: -100px;
    pointer-events: none;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .educations__figure {
    width: 788px;
    height: 1137px;
    top: -50%;
    right: 0;
  }
}
@media (min-width: 2000px) {
  .educations {
    padding: 200px 0 200px 0;
  }
}

.events-ribbon {
  width: 100%;
  background-color: #040b37;
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
.events-ribbon__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  height: 600px;
  gap: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .events-ribbon__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    height: 400px;
    gap: 0;
  }
}
.events-ribbon__left {
  width: 100%;
  gap: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .events-ribbon__left {
    width: calc(100% - 250px);
  }
}
.events-ribbon__right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 992px) {
  .events-ribbon__right {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.events-ribbon__title {
  width: 100%;
  text-align: left;
  font-size: 18px;
  color: #fff;
  line-height: 125%;
  font-weight: 400;
}
@media (min-width: 992px) {
  .events-ribbon__title {
    font-size: 25px;
  }
}
.events-ribbon__desc {
  width: 100%;
  text-align: left;
  font-size: 20px;
  color: #fff;
  line-height: 125%;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.events-ribbon__desc:before {
  content: "";
  position: relative;
  width: 5px;
  height: 10px;
  background-color: #ff9000;
  margin-right: 5px;
  border-radius: 5px;
  display: block;
}
@media (min-width: 992px) {
  .events-ribbon__desc {
    font-size: 20px;
  }
}
.events-ribbon__purchase {
  width: max-content;
  height: 40px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #fff;
  z-index: 2;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  letter-spacing: -0.5px;
  padding: 0 15px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #ff9000;
}
.events-ribbon__details {
  width: max-content;
  height: 40px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #040b37;
  z-index: 2;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  letter-spacing: -0.5px;
  padding: 0 15px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #fff;
}

.triple-box {
  width: 100%;
  background-color: #040b37;
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
.triple-box__main-title {
  font-size: 20px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .triple-box__main-title {
    font-size: 30px;
    margin-top: 0;
  }
}
.triple-box__main-title:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff9000;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  position: relative;
  transform: translateY(10px);
}
.triple-box__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .triple-box__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.triple-box__banner {
  width: 100%;
  height: 100%;
  position: relative;
}
.triple-box__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
  z-index: 0;
  position: relative;
  transition: 0.3s ease-in-out all;
}
.triple-box__item {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 300px;
}
@media (min-width: 992px) {
  .triple-box__item {
    width: calc(33.3% - 14px);
    height: 370px;
  }
}
.triple-box__item:hover .triple-box__banner img {
  transform: scale(1.1);
}
.triple-box__content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .triple-box__content {
    padding: 30px;
  }
}
.triple-box__shadow {
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #253149 100%);
  content: "";
}
.triple-box__line {
  width: 70px;
  height: 5px;
  background-color: #ff6f3a;
}
.triple-box__title {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 125%;
  font-weight: 800;
  color: #fff;
  z-index: 1;
  position: relative;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .triple-box__title {
    font-size: 26px;
  }
}
.triple-box__sub-title {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 125%;
  font-weight: 400;
  color: #fff;
  z-index: 1;
  position: relative;
  margin-top: 2.5px;
}
@media (min-width: 992px) {
  .triple-box__sub-title {
    font-size: 23px;
  }
}

.consultancy {
  width: 100%;
  background: rgb(3, 9, 50);
  background: linear-gradient(0deg, rgb(3, 9, 50) 0%, rgb(4, 11, 54) 100%);
  z-index: 5;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.consultancy__wrapper {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
@media (min-width: 992px) {
  .consultancy__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.consultancy__wrapper--active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(15, 23, 83);
  background: radial-gradient(circle, rgb(15, 23, 83) 0%, rgba(255, 255, 255, 0) 100%);
}
.consultancy__title {
  font-size: 20px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-top: -70px;
}
@media (min-width: 992px) {
  .consultancy__title {
    font-size: 30px;
    margin-top: 0;
  }
}
.consultancy__title:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff9000;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  position: relative;
  transform: translateY(10px);
}
@media (max-width: 992px) {
  .consultancy__title:before {
    content: "";
    background: url("../img/woman-mobile.png") no-repeat center;
    width: 300px;
    height: 300px;
    background-size: cover;
    display: block;
    position: relative;
    z-index: -1;
    pointer-events: none;
    display: block;
    margin: 0 auto;
  }
}
.consultancy__boxes {
  margin-top: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 50px 0;
  position: relative;
}
@media (min-width: 992px) {
  .consultancy__boxes {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px 20px;
  }
}
.consultancy__box {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  transition: 0.3s ease-in-out all;
  border-radius: 10px 10px;
  border: 1px solid transparent;
  backdrop-filter: blur(100px);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 992px) {
  .consultancy__box {
    width: calc(50% - 13px);
  }
}
.consultancy__box-banner {
  width: 100%;
  height: 180px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.consultancy__box-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s ease-in-out all;
}
.consultancy__box-date {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: rgba(11, 18, 71, 0.75);
  backdrop-filter: blur(10px);
  width: auto;
  padding: 10px 15px;
  position: absolute;
  bottom: 5px;
  left: 5px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0b1247;
  display: none !important;
}
.consultancy__box-date img {
  width: 20px;
  margin-right: 5px;
  filter: brightness(0) saturate(100%) invert(98%) sepia(3%) saturate(252%) hue-rotate(83deg) brightness(118%) contrast(100%);
}
.consultancy__box-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  height: 50px;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  pointer-events: none;
}
.consultancy__box-title span {
  width: calc(100% - 40px);
  font-size: 16px;
  color: #fff;
  line-height: 125%;
  transition: 0.3s ease-in-out all;
}
.consultancy__box-title::before {
  width: calc(100% - 40px);
  height: 1px;
  background-color: #ff9000;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  box-sizing: border-box;
}
.consultancy__box-desc {
  padding-top: 10px;
  position: relative;
  transition: max-height 0.15s ease-out;
  max-height: 100px;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 11;
  border-radius: 0 0 10px 10px;
}
.consultancy__box-desc p {
  line-height: 150%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.consultancy__box-desc ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}
.consultancy__box-desc ul li {
  line-height: 130%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 5px;
}
.consultancy__box-desc ul li:last-child {
  margin-bottom: 0;
}
.consultancy__box-desc h5 {
  color: #00deff;
  font-size: 14px;
  font-weight: 600;
  line-height: 125%;
  margin-top: 10px;
}
.consultancy__box-desc h6 {
  color: #ff9c00;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  margin-top: 10px;
}
.consultancy__box-desc:after {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(2, 0, 36);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgb(15, 23, 83) 60%);
  z-index: 1;
  content: "";
  transition: 0.3s ease all;
  opacity: 1;
}
.consultancy__box-desc-2 {
  padding-top: 10px;
  position: relative;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 11;
  border-radius: 0 0 10px 10px;
}
.consultancy__box-desc-2 p {
  line-height: 150%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 0;
}
.consultancy__box-desc-2 a {
  margin-top: 10px;
  margin-bottom: 20px;
}
.consultancy__box-detail {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  position: absolute;
  z-index: 10;
  bottom: 0px;
  left: 0;
  padding: 0 20px;
}
.consultancy__box-detail-button {
  width: 50%;
  height: 50px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #bd6e17;
  z-index: 2;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  letter-spacing: -0.5px;
  cursor: pointer;
  pointer-events: none;
}
.consultancy__box-detail-button:after {
  transition: 0.3s ease all;
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(90deg) translateX(0px);
  display: block;
  border-radius: 5px;
  background: url("../img/chevron-right.svg") no-repeat center;
  background-size: cover;
  margin-left: 5px;
  filter: brightness(0) saturate(100%) invert(40%) sepia(88%) saturate(430%) hue-rotate(351deg) brightness(100%) contrast(100%);
}
.consultancy__box-detail-page {
  width: max-content;
  height: 30px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #0c144c;
  z-index: 2;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  letter-spacing: -0.5px;
  padding: 0 15px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #ff9000;
  margin-top: 10px;
  margin-bottom: 20px;
}
.consultancy__box-close {
  width: 40px;
  height: 30px;
  background-color: rgba(167, 22, 51, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  position: absolute;
  top: 5px;
  right: 5px;
  border: 0;
  font-size: 15px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease all;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: pointer;
}
.consultancy__box-close:after {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg) translateX(0px);
  display: block;
  border-radius: 5px;
  background: url("../img/chevron-right.svg") no-repeat center;
  background-size: cover;
}
.consultancy__box--active {
  z-index: 10;
}
.consultancy__box--active .consultancy__box-title {
  z-index: 1;
  position: relative;
  pointer-events: all;
}
.consultancy__box--active .consultancy__box-title:after {
  transform: rotate(180deg);
}
.consultancy__box--active .consultancy__box-desc {
  position: relative;
  border-radius: 0 0 10px 10px;
  background-color: #0f1753;
  backdrop-filter: blur(15px);
  padding-bottom: 50px;
  max-height: 1200px;
  transition: max-height 0.3s ease-in-out;
  box-shadow: 0px 30px 100px 0 rgba(156, 173, 229, 0.5);
  z-index: 0;
}
@media (min-width: 992px) {
  .consultancy__box--active .consultancy__box-desc {
    max-height: 900px;
  }
}
.consultancy__box--active .consultancy__box-desc:after {
  opacity: 0.2;
  pointer-events: none;
}
.consultancy__box--active .consultancy__box-detail {
  bottom: 10px;
  pointer-events: all;
}
.consultancy__box--active .consultancy__box-detail:after {
  transform: rotate(-90deg);
}
@media (min-width: 992px) {
  .consultancy__box:hover .consultancy__box-banner {
    width: 100%;
    height: 180px;
    border-radius: 5px;
    overflow: hidden;
  }
  .consultancy__box:hover .consultancy__box-banner-img {
    width: 110%;
    height: 110%;
    margin-left: -5%;
    margin-top: -2%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    overflow: hidden;
  }
}
.consultancy__logo {
  display: none;
  pointer-events: none;
}
.consultancy__figure {
  display: none;
  pointer-events: none;
}
@media (min-width: 992px) {
  .consultancy {
    padding: 100px 0;
  }
  .consultancy__logo {
    content: "";
    background: url("../img/logo-a-2.png") no-repeat center;
    width: 948px;
    height: 1278px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: -1;
    top: -20%;
    left: 50%;
    transform: translateX(calc(-50% + 800px));
    opacity: 0.05;
    pointer-events: none;
  }
  .consultancy__figure {
    pointer-events: none;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .consultancy__figure {
    content: "";
    background: url("../img/woman.png") no-repeat center;
    width: 428px;
    height: 826px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: -1;
    top: -50%;
    left: -50px;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .consultancy__figure {
    width: 728px;
    height: 1126px;
    top: -50%;
    left: 0;
  }
}
@media (min-width: 2000px) {
  .consultancy {
    padding: 200px 0 200px 0;
  }
}

.events {
  width: 100%;
  background: rgb(3, 9, 50);
  background: linear-gradient(0deg, rgb(3, 9, 50) 0%, rgb(4, 11, 54) 100%);
  z-index: 4;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.events__wrapper {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
@media (min-width: 992px) {
  .events__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.events__wrapper--active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(15, 23, 83);
  background: radial-gradient(circle, rgb(15, 23, 83) 0%, rgba(255, 255, 255, 0) 100%);
}
.events__title {
  font-size: 20px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin-top: -70px;
}
@media (min-width: 992px) {
  .events__title {
    font-size: 30px;
    margin-top: 0;
  }
}
.events__title:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff9000;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  position: relative;
  transform: translateY(10px);
}
@media (max-width: 992px) {
  .events__title:before {
    content: "";
    background: url("../img/woman-mobile.png") no-repeat center;
    width: 300px;
    height: 300px;
    background-size: cover;
    display: block;
    position: relative;
    z-index: -1;
    pointer-events: none;
    display: block;
    margin: 0 auto;
  }
}
.events__boxes {
  margin-top: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 50px 0;
  position: relative;
}
@media (min-width: 992px) {
  .events__boxes {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px 20px;
  }
}
.events__box {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  transition: 0.3s ease-in-out all;
  border-radius: 10px 10px;
  border: 1px solid transparent;
  backdrop-filter: blur(100px);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 992px) {
  .events__box {
    width: calc(50% - 13px);
  }
}
.events__box-banner {
  width: 100%;
  height: 170px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.events__box-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s ease-in-out all;
}
.events__box-date {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: rgba(11, 18, 71, 0.75);
  backdrop-filter: blur(10px);
  width: auto;
  padding: 10px 15px;
  position: absolute;
  bottom: 5px;
  left: 5px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0b1247;
  display: none !important;
}
.events__box-date img {
  width: 20px;
  margin-right: 5px;
  filter: brightness(0) saturate(100%) invert(98%) sepia(3%) saturate(252%) hue-rotate(83deg) brightness(118%) contrast(100%);
}
.events__box-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  height: 50px;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  pointer-events: none;
}
.events__box-title span {
  width: calc(100% - 40px);
  font-size: 16px;
  color: #fff;
  line-height: 125%;
  transition: 0.3s ease-in-out all;
}
.events__box-title::before {
  width: calc(100% - 40px);
  height: 1px;
  background-color: #ff9000;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  box-sizing: border-box;
}
.events__box-desc {
  padding-top: 10px;
  position: relative;
  transition: max-height 0.15s ease-out;
  max-height: 100px;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 11;
  border-radius: 0 0 10px 10px;
}
.events__box-desc p {
  line-height: 150%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.events__box-desc ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}
.events__box-desc ul li {
  line-height: 130%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 5px;
}
.events__box-desc ul li:last-child {
  margin-bottom: 0;
}
.events__box-desc h5 {
  color: #00deff;
  font-size: 14px;
  font-weight: 600;
  line-height: 125%;
  margin-top: 10px;
}
.events__box-desc h6 {
  color: #ff9c00;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  margin-top: 10px;
}
.events__box-desc:after {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(2, 0, 36);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgb(15, 23, 83) 60%);
  z-index: 1;
  content: "";
  transition: 0.3s ease all;
  opacity: 1;
}
.events__box-desc-2 {
  padding-top: 10px;
  position: relative;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 11;
  border-radius: 0 0 10px 10px;
}
.events__box-desc-2 p {
  line-height: 150%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 0;
}
.events__box-desc-2 a {
  margin-top: 10px;
  margin-bottom: 20px;
}
.events__box-detail {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  position: absolute;
  z-index: 10;
  bottom: 0px;
  left: 0;
  padding: 0 20px;
}
.events__box-detail-button {
  width: 50%;
  height: 50px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #bd6e17;
  z-index: 2;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  letter-spacing: -0.5px;
  cursor: pointer;
  pointer-events: none;
}
.events__box-detail-button:after {
  transition: 0.3s ease all;
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(90deg) translateX(0px);
  display: block;
  border-radius: 5px;
  background: url("../img/chevron-right.svg") no-repeat center;
  background-size: cover;
  margin-left: 5px;
  filter: brightness(0) saturate(100%) invert(40%) sepia(88%) saturate(430%) hue-rotate(351deg) brightness(100%) contrast(100%);
}
.events__box-detail-page {
  width: max-content;
  height: 30px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #0c144c;
  z-index: 2;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  letter-spacing: -0.5px;
  padding: 0 15px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #ff9000;
  margin-top: 10px;
  margin-bottom: 20px;
}
.events__box-close {
  width: 40px;
  height: 30px;
  background-color: rgba(167, 22, 51, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  position: absolute;
  top: 5px;
  right: 5px;
  border: 0;
  font-size: 15px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease all;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: pointer;
}
.events__box-close:after {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg) translateX(0px);
  display: block;
  border-radius: 5px;
  background: url("../img/chevron-right.svg") no-repeat center;
  background-size: cover;
}
.events__box--active {
  z-index: 10;
}
.events__box--active .events__box-title {
  z-index: 1;
  position: relative;
  pointer-events: all;
}
.events__box--active .events__box-title:after {
  transform: rotate(180deg);
}
.events__box--active .events__box-desc {
  position: relative;
  border-radius: 0 0 10px 10px;
  background-color: #0f1753;
  backdrop-filter: blur(15px);
  padding-bottom: 50px;
  max-height: 1200px;
  transition: max-height 0.3s ease-in-out;
  box-shadow: 0px 30px 100px 0 rgba(156, 173, 229, 0.5);
  z-index: 0;
}
@media (min-width: 992px) {
  .events__box--active .events__box-desc {
    max-height: 900px;
  }
}
.events__box--active .events__box-desc:after {
  opacity: 0.2;
  pointer-events: none;
}
.events__box--active .events__box-detail {
  bottom: 10px;
  pointer-events: all;
}
.events__box--active .events__box-detail:after {
  transform: rotate(-90deg);
}
@media (min-width: 992px) {
  .events__box:hover .events__box-banner {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
  }
  .events__box:hover .events__box-banner-img {
    width: 110%;
    height: 110%;
    margin-left: -5%;
    margin-top: -2%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    overflow: hidden;
  }
}
.events__logo {
  display: none;
  pointer-events: none;
}
.events__figure {
  display: none;
  pointer-events: none;
}
@media (min-width: 992px) {
  .events {
    padding: 100px 0;
  }
  .events__logo {
    content: "";
    background: url("../img/logo-a-2.png") no-repeat center;
    width: 948px;
    height: 1278px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: -1;
    top: -20%;
    left: 50%;
    transform: translateX(calc(-50% + 800px));
    opacity: 0.05;
    pointer-events: none;
  }
  .events__figure {
    pointer-events: none;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .events__figure {
    content: "";
    background: url("../img/woman.png") no-repeat center;
    width: 428px;
    height: 826px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: -1;
    top: -50%;
    left: -50px;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .events__figure {
    width: 728px;
    height: 1126px;
    top: -50%;
    left: 0;
  }
}
@media (min-width: 2000px) {
  .events {
    padding: 200px 0 200px 0;
  }
}

.contact {
  width: 100%;
  background: rgb(15, 23, 83);
  background: linear-gradient(0deg, rgb(15, 23, 83) 0%, rgb(3, 9, 50) 100%);
  z-index: 0;
  padding: 50px 0;
}
@media (min-width: 992px) {
  .contact {
    padding: 100px 0;
  }
}
@media (min-width: 2000px) {
  .contact {
    padding: 200px 0 200px 0;
  }
}
.contact__wrapper {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
}
.contact__title {
  font-size: 20px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .contact__title {
    font-size: 30px;
  }
}
.contact__title:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff9000;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  position: relative;
  transform: translateY(10px);
}
.contact__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  gap: 20px;
  margin-top: 30px;
}
.contact__content p {
  font-size: 14px;
  color: #fff;
  line-height: 140%;
  font-weight: 400;
}
@media (min-width: 992px) {
  .contact__content p {
    font-size: 16px;
    padding: 0 200px;
  }
}
.contact__content strong {
  font-weight: 600;
}
.contact__inner-wrapper {
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .contact__inner-wrapper {
    margin-top: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.contact__form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .contact__form {
    width: 75%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.contact__form-item {
  width: 100%;
}
@media (min-width: 992px) {
  .contact__form-item {
    width: 50%;
    padding: 0 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.contact__form-row {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
  position: relative;
}
@media (min-width: 992px) {
  .contact__form-row {
    margin-bottom: 20px;
  }
}
.contact__form-row input {
  width: 100%;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #ff9000;
  height: 45px;
  outline: 0;
  font-size: 14px;
  font-family: inherit;
  color: #fff;
  line-height: 125%;
  font-weight: 400;
  display: block;
  padding: 0 15px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
}
.contact__form-row input::placeholder {
  font-size: 14px;
  color: #fff;
  line-height: 125%;
  font-weight: 400;
  opacity: 0.6;
}
.contact__form-row textarea {
  width: 100%;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #ff9000;
  height: 45px;
  height: 175px;
  outline: 0;
  font-size: 14px;
  color: #fff;
  line-height: 125%;
  font-weight: 400;
  font-family: inherit;
  display: block;
  padding: 15px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
}
.contact__form-row textarea::placeholder {
  font-size: 14px;
  color: #fff;
  line-height: 125%;
  font-weight: 400;
  opacity: 0.6;
}
.contact__form-row--checkbox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.contact__form-row--checkbox input {
  width: 15px;
  height: 15px;
  border-radius: 0;
  outline: 0;
  border: 0;
  background-color: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  font-family: inherit;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s ease all;
}
.contact__form-row--checkbox label {
  width: calc(100% - 25px);
  text-align: left;
  font-size: 11px;
  line-height: 125%;
  font-weight: 400;
  color: #fff;
  opacity: 0.6;
  box-sizing: border-box;
  font-family: inherit;
  padding-left: 5px;
  cursor: pointer;
  transition: 0.3s ease all;
}
.contact__form-row--checkbox:hover input {
  opacity: 0.9;
}
.contact__form-row--checkbox:hover label {
  opacity: 0.8;
}
.contact__form-row--checkbox:first-child {
  margin-bottom: 5px;
}
.contact__form-row--captcha {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.contact__form-row--captcha input {
  width: calc(100% - 130px);
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #ff9000;
  height: 45px;
  outline: 0;
  font-size: 14px;
  font-family: inherit;
  color: #fff;
  line-height: 125%;
  font-weight: 400;
  display: block;
  padding: 0 15px;
  border-radius: 0 5px 5px 0;
  background-color: rgba(255, 255, 255, 0.05);
}
.contact__form-row--captcha input::placeholder {
  font-size: 14px;
  color: #fff;
  line-height: 125%;
  font-weight: 400;
  opacity: 0.6;
}
.contact__form-row--captcha .form-captcha-image {
  width: 130px;
  height: 45px;
  max-width: 130px;
  max-height: 45px;
  border-bottom: 1px solid #ff9000;
  object-fit: cover;
  object-position: center;
  border-radius: 5px 0 0 5px;
}
.contact__form-row--captcha:hover input {
  opacity: 0.9;
}
.contact__form-row--captcha:hover label {
  opacity: 0.8;
}
.contact__form-row button[type=submit] {
  width: 100%;
  height: 45px;
  background-color: #ff9000;
  color: #050c3a;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  border-radius: 5px;
}
.contact__texts {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .contact__texts {
    width: 25%;
    margin-top: 0;
  }
}
.contact__texts-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.contact__texts-row:last-child {
  margin-bottom: 0;
}
.contact__texts-row img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center;
  display: block;
}
.contact__texts-row a {
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 145%;
  text-decoration: none;
  width: calc(100% - 24px);
  padding-left: 10px;
  opacity: 0.9;
}
@media (min-width: 992px) {
  .contact__texts-row {
    padding: 0 10px;
  }
}

.social {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  background-color: #0f1753;
  padding: 50px 0;
}
@media (min-width: 992px) {
  .social {
    gap: 10px;
  }
}
@media (min-width: 2000px) {
  .social {
    padding: 100px 0 100px 0;
  }
}
.social__item a {
  display: block;
  width: 35px;
  height: 35px;
  opacity: 0.8;
  transition: 0.3s ease all;
}
@media (min-width: 992px) {
  .social__item a {
    width: 35px;
    height: 35px;
  }
}
.social__item a:hover {
  opacity: 1;
}
.social__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(125deg) brightness(97%) contrast(108%);
}

.footer {
  background-color: #030932;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px 0;
}
@media (min-width: 992px) {
  .footer {
    padding: 50px 0;
  }
}
@media (min-width: 2000px) {
  .footer {
    padding: 70px 0;
  }
}
.footer a {
  width: 300px;
  display: block;
}
.footer a img {
  display: block;
  width: 100%;
}

.asa-dialog {
  width: 100%;
  max-width: 500px;
  border-radius: 5px !important;
}
.asa-dialog p {
  font-size: 16px;
  line-height: 135%;
  color: #111;
  font-weight: 400;
  margin: 20px 0;
}
.asa-dialog h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 135%;
  color: #7b8fef;
  margin: 0;
}

.fancybox__backdrop {
  background-color: rgba(5, 10, 58, 0.55);
}
.fancybox__content {
  border-radius: 10px !important;
  width: 100%;
}
.fancybox__content p {
  font-size: 14px;
  line-height: 135%;
  color: #777;
  margin: 5px 0;
}
.fancybox__content strong {
  font-weight: 600;
}
.fancybox__content ul {
  margin: 5px 0;
  list-style-type: disc;
  padding-left: 20px;
}
.fancybox__content li {
  font-size: 14px;
  line-height: 135%;
  color: #777;
  margin: 5px 0;
}

.iti {
  width: 100%;
}
.iti__selected-country {
  background-color: rgba(0, 0, 0, 0.2);
  padding-right: 5px;
}
.iti__selected-dial-code {
  color: #fff;
  opacity: 0.7;
  font-size: 14px;
}
.iti__search-input {
  color: #01083d !important;
}

.form-loading {
  position: relative;
}
.form-loading:before {
  content: "";
  z-index: 999;
  background-color: rgba(6, 12, 68, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form-loading:after {
  content: "";
  border: 5px solid #fff;
  border-top: 5px solid #ff9000;
  background-image: url("../img/loading-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: -50px;
  margin-top: -50px;
  z-index: 9999;
}

.alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 12, 68, 0.6);
  z-index: 999999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.alert__wrapper {
  height: 300px;
  width: 85%;
  max-width: 500px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
}
.alert__title {
  font-size: 19px;
  color: #1b262c;
  font-weight: 500;
  text-align: center;
  width: 100%;
  line-height: 125%;
  padding: 0 20px;
  letter-spacing: -0.2px;
}
.alert__icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 20px;
  object-position: center;
}
.alert__icon img {
  width: 100%;
}
.alert--red .alert__wrapper {
  background-color: #f8d7da;
}
.alert--red .alert__title {
  color: #721c24;
}
.alert--green .alert__wrapper {
  background-color: #d4edda;
}
.alert--green .alert__title {
  color: #155724;
}
.alert--yellow .alert__wrapper {
  background-color: #fff3cd;
}
.alert--yellow .alert__title {
  color: #856404;
}
.alert .close {
  position: absolute;
  cursor: pointer;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  background-color: rgba(175, 39, 66, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 7px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 20px;
  color: #fff;
  line-height: 125%;
}
@media (min-width: 992px) {
  .alert .close {
    top: 5px;
    right: 5px;
  }
}

.detail {
  background: rgb(4, 11, 54);
  background: linear-gradient(0deg, rgb(4, 11, 54) 0%, rgb(15, 23, 83) 100%);
  padding-top: 150px;
  padding-bottom: 120px;
  position: relative;
}
.detail__banner {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 150px;
  position: relative;
}
@media (min-width: 992px) {
  .detail__banner {
    height: 300px;
  }
}
.detail__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.detail__banner-date {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: rgba(11, 18, 71, 0.75);
  backdrop-filter: blur(10px);
  width: auto;
  padding: 10px 15px;
  position: absolute;
  bottom: 5px;
  left: 5px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0b1247;
  display: none !important;
}
.detail__banner-date img {
  width: 20px;
  margin-right: 5px;
  filter: brightness(0) saturate(100%) invert(98%) sepia(3%) saturate(252%) hue-rotate(83deg) brightness(118%) contrast(100%);
}
.detail__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: left;
  width: 100%;
  gap: 40px;
  margin-top: 30px;
}
.detail__content p {
  font-size: 14px;
  color: #fff;
  line-height: 140%;
  font-weight: 400;
}
@media (min-width: 992px) {
  .detail__content p {
    font-size: 16px;
  }
}
.detail__content strong {
  font-weight: 600;
  text-shadow: none;
}
.detail__content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: -5px;
}
.detail__content li {
  font-size: 14px;
  color: #fff;
  line-height: 140%;
  font-weight: 400;
}
@media (min-width: 992px) {
  .detail__content li {
    font-size: 16px;
  }
}
.detail__content a {
  text-decoration: underline;
  cursor: pointer;
  z-index: 1;
}
.detail__content h2 {
  color: #00deff;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  margin-top: 5px;
}
.detail__content h3 {
  color: #ff9000;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  margin-top: 5px;
}
@media (min-width: 992px) {
  .detail__content {
    padding-right: 0px;
  }
}
.detail__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.detail__button a, .detail__button button {
  width: auto;
  padding: 0 20px;
  height: 45px;
  background-color: #ff9000;
  color: #050c3a;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.detail__date {
  width: 100%;
  padding: 20px 20px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-color: #eae9e5;
}
@media (min-width: 992px) {
  .detail__date {
    padding: 20px 20px;
  }
}
.detail__date:before {
  background-image: url("../img/gradient.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: blur(50px);
  pointer-events: none;
  display: none;
}
.detail__date-texts {
  position: relative;
  z-index: 1;
  gap: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
.detail__date h1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  color: #0b1140;
  z-index: 1;
}
@media (min-width: 992px) {
  .detail__date h1 {
    font-size: 20px;
  }
}
.detail__date-top {
  position: relative;
  background-color: #f8f8f8;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 10px 15px;
  border-left: 5px solid #ff9000;
  border-radius: 0 10px 10px 0;
  gap: 10px;
}
@media (min-width: 992px) {
  .detail__date-top {
    width: calc(100% + 0px);
    gap: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.detail__date-top p {
  font-size: 16px;
  line-height: 125%;
  color: #0b1140;
  font-weight: 500;
}
@media (min-width: 992px) {
  .detail__date-top p {
    font-size: 24px;
  }
}
.detail__date-bottom {
  width: 100%;
  padding: 0px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 992px) {
  .detail__date-bottom {
    padding: 0px 0 0 20px;
    gap: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.detail__date a, .detail__date button {
  width: auto;
  padding: 0 20px;
  height: 45px;
  background-color: #ff9c1c;
  color: #050c3a;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.detail__boxes {
  width: 100%;
  margin-top: 20px;
  gap: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .detail__boxes {
    gap: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.detail__box {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  transition: 0.3s ease-in-out all;
  border-radius: 10px 10px;
  border: 1px solid transparent;
  backdrop-filter: blur(100px);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  background-color: #b3b7e9;
  padding: 15px;
  text-decoration: none;
}
@media (min-width: 992px) {
  .detail__box {
    width: calc(25% - 15px);
  }
}
.detail__box-banner {
  width: 100%;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.detail__box-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s ease-in-out all;
}
.detail__box-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  height: 50px;
  position: relative;
  padding: 0 0px;
  box-sizing: border-box;
  cursor: pointer;
  pointer-events: none;
}
.detail__box-title span {
  width: calc(100% - 0px);
  font-size: 16px;
  color: #0b1140;
  font-weight: 500;
  line-height: 125%;
  transition: 0.3s ease-in-out all;
}
.detail__box-desc-2 {
  padding-top: 0px;
  position: relative;
  overflow: hidden;
  padding-left: 0px;
  z-index: 11;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
}
.detail__box-desc-2 p {
  line-height: 150%;
  font-size: 14px;
  color: #0b1140;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 0;
  text-decoration: none;
}
.detail__box-desc-2 a {
  margin-top: 20px;
  margin-bottom: 20px;
  text-decoration: none;
}
.detail__box-detail {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  position: absolute;
  z-index: 10;
  bottom: 0px;
  height: 50px;
  left: 0;
  padding: 0 20px;
}
.detail__box-detail-button {
  width: 50%;
  height: 50px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #ff9000;
  z-index: 2;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  letter-spacing: -0.5px;
  cursor: pointer;
  text-decoration: none;
}
.detail__box-detail-button:after {
  transition: 0.3s ease all;
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(90deg) translateX(0px);
  display: block;
  border-radius: 5px;
  background: url("../img/chevron-right.svg") no-repeat center;
  background-size: cover;
  margin-left: 5px;
  filter: brightness(0) saturate(100%) invert(40%) sepia(88%) saturate(430%) hue-rotate(351deg) brightness(100%) contrast(100%);
}
.detail__box-detail-page {
  width: max-content;
  height: 40px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #0c144c;
  z-index: 2;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  letter-spacing: -0.5px;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 10px;
  background-color: #ff9000;
}
.detail__box-detail-page-2 {
  width: max-content;
  height: 40px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #182057;
  z-index: 2;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  letter-spacing: -0.5px;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 10px;
  background-color: white;
}
.detail__box-close {
  width: 40px;
  height: 30px;
  background-color: rgba(167, 22, 51, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  position: absolute;
  top: 5px;
  right: 5px;
  border: 0;
  font-size: 15px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease all;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: pointer;
}
.detail__box-close:after {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg) translateX(0px);
  display: block;
  border-radius: 5px;
  background: url("../img/chevron-right.svg") no-repeat center;
  background-size: cover;
}
.detail__box-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}
.detail__box--active {
  z-index: 10;
}
.detail__box--active .educations__box-title {
  z-index: 1;
  position: relative;
  pointer-events: all;
}
.detail__box--active .educations__box-title:after {
  transform: rotate(180deg);
}
.detail__box--active .educations__box-desc {
  position: relative;
  border-radius: 0 0 10px 10px;
  background-color: #0f1753;
  backdrop-filter: blur(15px);
  padding-bottom: 50px;
  max-height: 500px;
  transition: max-height 0.3s ease-in-out;
  box-shadow: 0px 30px 100px 0 rgba(156, 173, 229, 0.5);
  z-index: 0;
}
.detail__box--active .educations__box-desc:after {
  opacity: 0;
  pointer-events: none;
}
.detail__box--active .educations__box-detail {
  bottom: 10px;
}
.detail__box--active .educations__box-detail-button {
  pointer-events: all;
}
.detail__box--active .educations__box-detail-button:after {
  transform: rotate(-90deg);
}
.detail__box a {
  text-decoration: none !important;
}
.detail__box:hover {
  background-color: #d1d3ee;
}
@media (min-width: 992px) {
  .detail__box:hover .detail__box-banner {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
  }
  .detail__box:hover .detail__box-banner img {
    width: 110%;
    height: 110%;
    margin-left: -5%;
    margin-top: -2%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    overflow: hidden;
  }
}
.detail__title {
  font-size: 20px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
}
@media (min-width: 992px) {
  .detail__title {
    font-size: 30px;
    margin-top: 0;
  }
}
.detail__title:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff9000;
  border-radius: 10px;
  display: block;
  position: relative;
  transform: translateY(10px);
}
.detail__title-2 {
  font-size: 17px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .detail__title-2 {
    font-size: 24px;
    margin-top: 40px;
  }
}
.detail__title-2:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff9000;
  border-radius: 10px;
  display: block;
  position: relative;
  transform: translateY(10px);
}
.detail__carousel {
  width: 100%;
  margin: 75px 0 50px 0;
}
.detail__carousel-title {
  font-size: 17px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .detail__carousel-title {
    font-size: 24px;
    margin-top: 40px;
  }
}
.detail__carousel-title:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff9000;
  border-radius: 10px;
  display: block;
  position: relative;
  transform: translateY(10px);
}
.detail__carousel-boxes {
  margin-top: 40px;
  width: calc(100% + 40px);
  margin-left: -20px;
  position: relative;
}
@media (min-width: 1200px) {
  .detail__carousel-boxes {
    width: calc(100% + 0px);
    margin-left: 0px;
  }
}
.detail__carousel-boxes .swiper-wrapper {
  z-index: 0;
}
.detail__carousel-boxes .swiper-nav {
  display: none;
}
@media (min-width: 1200px) {
  .detail__carousel-boxes .swiper-nav {
    display: block;
    position: absolute;
    top: 50%;
    height: 40px;
    left: 0;
    width: calc(100% + 100px);
    margin-left: -50px;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.detail__carousel-boxes .swiper-nav .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0;
}
.detail__carousel-boxes .swiper-nav .swiper-button-prev {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0;
}
.detail__carousel-box {
  width: 100%;
  background-color: rgba(13, 21, 72, 0.9);
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
.detail__carousel-box-banner {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  height: 150px;
}
.detail__carousel-box-banner img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.detail__carousel-box-title {
  font-size: 16px;
  padding: 15px 0;
  color: white;
  line-height: 125%;
  font-weight: 400;
  border-bottom: 1px solid #ff9000;
  width: 100%;
}
.detail__carousel-box-desc {
  line-height: 150%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 10px 0;
}
.detail__carousel-box-cta a {
  width: max-content;
  height: 30px;
  position: relative;
  border: 0;
  background-color: transparent;
  color: #0c144c;
  z-index: 2;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  letter-spacing: -0.5px;
  padding: 0 15px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #ff9000;
}
.detail__speakers {
  width: 100%;
}
.detail__speakers-title {
  font-size: 17px;
  color: #fff;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .detail__speakers-title {
    font-size: 24px;
    margin-top: 40px;
  }
}
.detail__speakers-title:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ff9000;
  border-radius: 10px;
  display: block;
  position: relative;
  transform: translateY(10px);
}
.detail__speakers-carousel {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .detail__speakers-carousel {
    width: 100%;
    margin-left: 0;
  }
}
.detail__speakers-carousel-item {
  width: 100%;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 75px;
}
@media (min-width: 992px) {
  .detail__speakers-carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.detail__speakers-carousel-item-banner {
  width: 150px;
  height: 150px;
  box-shadow: 0 2px 0px 2px rgba(255, 201, 129, 0.2);
  margin-top: -75px;
  border-radius: 100px;
}
.detail__speakers-carousel-item-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 100px;
}
.detail__speakers-carousel-item-content {
  width: 100%;
  padding: 20px;
}
.detail__speakers-carousel-item-content-title {
  font-size: 17px;
  width: 100%;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 125%;
  display: block;
}
.detail__speakers-carousel-item-content-desc {
  font-size: 14px;
  width: 100%;
  text-align: center;
  font-weight: 500;
  color: #ff9000;
  line-height: 125%;
  margin-top: 5px;
  display: block;
}
.detail__speakers-carousel-item-content-org {
  font-size: 14px;
  width: 100%;
  text-align: center;
  font-weight: 400;
  color: #00d7f9;
  line-height: 125%;
  margin-top: 5px;
  display: block;
}
.detail__speakers-carousel-item-content-biyo {
  width: 100%;
  height: 35px;
  margin-top: 10px;
}
.detail__speakers-carousel-item-content-biyo-button {
  width: calc(100% - 40px);
  margin: 0 20px;
  height: 35px;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  color: #fff;
  background-color: #161e4f;
  border: 1px solid #080f40;
  cursor: pointer;
  transition: 0.3s ease all;
  border-radius: 10px;
}
.detail__speakers-carousel-item-content-biyo-button:hover {
  background-color: #0f1651;
  color: #fff;
}
.detail__tabs {
  width: 100%;
}
.detail__tabs-header {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 10px;
  background-color: #272e62;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  gap: 5px;
}
.detail__tabs-header .detail__tab-header-item {
  cursor: pointer;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s ease all;
  border: 2px solid transparent;
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 7.5px;
  color: #fff;
}
.detail__tabs-header .detail__tab-header-item.active {
  background: #040822;
  border: 2px solid #081042;
  color: #fff;
  border-radius: 7.5px;
}
.detail__tabs-header .detail__tab-header-item:hover:not(.detail__tabs-header .detail__tab-header-item.active) {
  background: #ff9000;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 7.5px;
}
.detail__tabs-content .detail__tabs-content-item {
  display: none;
}
.detail__tabs-content .detail__tabs-content-item.active {
  display: block;
}
.detail__tabs-table-wrapper {
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 20px 0;
}
.detail__tabs-table-title {
  width: calc(100% - 20px);
  margin: 0 auto;
  text-align: center;
  padding: 15px 20px;
  background-color: rgba(31, 37, 79, 0.5);
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail__tabs-table-title span {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 125%;
}
.detail__tabs-table-title-pdf {
  width: auto;
  padding: 7.5px 15px;
  font-size: 14px;
  line-height: 125%;
  font-weight: 500;
  background-color: #ff9000;
  color: #070f3f;
  text-decoration: none !important;
  border-radius: 5px;
}
.detail__tabs-table {
  width: calc(100% - 20px);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
}
.detail__tabs-table thead tr {
  background-color: #040822;
}
.detail__tabs-table thead tr th {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.detail__tabs-table tr {
  background-color: rgba(255, 255, 255, 0.3);
}
.detail__tabs-table tr:nth-child(2n) {
  background-color: rgba(255, 255, 255, 0.4);
}
.detail__tabs-table th {
  padding: 20px;
}
.detail__tabs-table td {
  padding: 20px;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 125%;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.detail__tabs-table td strong {
  color: #efa00b;
}
@media (min-width: 992px) {
  .detail {
    padding-top: 150px;
  }
}

.asg-payment {
  width: 100%;
  position: relative;
  background-color: #f0f0f0;
}
.asg-payment__summary {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #ffd196;
  max-width: 800px;
  margin: 0 auto 50px auto;
  border-radius: 10px;
  border: 1px solid #ff9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  padding: 20px;
  position: sticky;
  top: 10px;
  z-index: 10;
}
@media (min-width: 992px) {
  .asg-payment__summary {
    gap: 0;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.asg-payment__summary-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 992px) {
  .asg-payment__summary-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 10px;
  }
}
.asg-payment__summary-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  border-bottom: 1px solid #e7eff8;
  padding: 0px 0;
  gap: 10px;
}
@media (min-width: 992px) {
  .asg-payment__summary-row {
    gap: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.asg-payment__summary-row:last-child {
  border-bottom: 0 !important;
}
.asg-payment__summary-row--last h3 {
  margin-left: auto;
}
@media (min-width: 992px) {
  .asg-payment__summary-row--last h3 {
    margin-left: 0;
  }
}
.asg-payment__summary-row--last .asg-payment__summary-right {
  text-align: right;
}
.asg-payment__summary-left {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
}
@media (min-width: 992px) {
  .asg-payment__summary-left {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
    width: 75%;
  }
}
.asg-payment__summary-left p {
  font-size: 14px;
  font-weight: 400;
  color: #757e7e;
  width: 100%;
  text-align: left;
  letter-spacing: -0.5px;
  color: #774605;
}
.asg-payment__summary-left h2 {
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  text-align: left;
  letter-spacing: -0.2px;
  line-height: 125%;
  color: #5e3500;
}
.asg-payment__summary-right {
  width: 100%;
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .asg-payment__summary-right {
    width: 25%;
    text-align: right;
    border: 0;
    gap: 5px;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.asg-payment__summary-right strong {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  text-align: right;
  letter-spacing: -0.2px;
  line-height: 125%;
  color: #351e00;
}
@media (min-width: 992px) {
  .asg-payment__summary-right .asg-payment__sub-title {
    width: 100%;
  }
}
.asg-payment__summary-title {
  color: #382000;
  position: relative;
  border-radius: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: -0.2px;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.asg-payment__summary-old-price {
  margin-left: auto;
  opacity: 0.7;
}
.asg-payment__summary-old-price strong {
  text-decoration: line-through;
  font-size: 16px;
}
.asg-payment__summary-hidden {
  display: none;
}
.asg-payment__summary-end-date {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #b82b37;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #b82b37;
  padding: 5px 10px;
  box-shadow: 0 0 5px 0 rgba(184, 43, 55, 0.1);
}
.asg-payment__order-no {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  max-width: 800px;
  margin: 0 auto 20px auto;
  border-radius: 10px;
  border: 1px solid #197bfe;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  padding: 20px;
}
@media (min-width: 992px) {
  .asg-payment__order-no {
    gap: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.asg-payment__order-no p {
  font-size: 18px;
  font-weight: 600;
  line-height: 125%;
  color: #197bfe;
  background-color: rgba(0, 123, 254, 0.1);
  border: 1px solid #197bfe;
  padding: 10px 20px;
  border-radius: 50px;
}
.asg-payment__order-no strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
  color: #197bfe;
  display: flex;
  align-items: center;
}
.asg-payment__order-no strong img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(88%) saturate(1847%) hue-rotate(202deg) brightness(98%) contrast(104%);
}
.asg-payment__success {
  max-width: 800px;
  width: 100%;
  background-color: #d4edda;
  margin: 20px auto;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.asg-payment__success p {
  color: #155724;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.asg-payment__success img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(15%) saturate(2083%) hue-rotate(81deg) brightness(97%) contrast(96%);
  width: 75px;
  display: block;
  margin: 0 auto;
}
.asg-payment__success a {
  width: auto;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  color: #145723;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease-in-out all;
  margin-top: 20px;
  font-weight: 500;
}
.asg-payment__success a:hover {
  background-color: white;
}
.asg-payment__secure-banner {
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
}
.asg-payment__secure-banner img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
  pointer-events: none;
}
.asg-payment__error {
  max-width: 800px;
  width: 100%;
  background-color: #f8d7da;
  margin: 20px auto 20px auto;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.asg-payment__error p {
  color: #721c24;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.asg-payment__error img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(18%) saturate(6817%) hue-rotate(331deg) brightness(120%) contrast(96%);
  width: 75px;
  display: block;
  margin: 0 auto;
}
.asg-payment__error-product {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
  margin-top: 25px;
  padding: 20px 10px;
}
@media (min-width: 1200px) {
  .asg-payment__error-product {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
  }
}
.asg-payment__error-product-banner {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.asg-payment__error-product-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.asg-payment__error-product-content {
  width: 100%;
  padding: 20px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .asg-payment__error-product-content {
    width: calc(100% - 100px - 200px);
    padding: 0 20px;
  }
}
.asg-payment__error-product-title {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  line-height: 135%;
  text-align: center;
  width: 100%;
}
@media (min-width: 1200px) {
  .asg-payment__error-product-title {
    text-align: left;
  }
}
.asg-payment__error-product-desc {
  font-size: 12px;
  font-weight: 500;
  color: #222;
  line-height: 135%;
  text-align: center;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: rgba(255, 144, 0, 0.4);
  border-radius: 10px;
  color: #050b35;
}
@media (min-width: 1200px) {
  .asg-payment__error-product-desc {
    text-align: left;
  }
}
.asg-payment__error-product-desc span {
  font-weight: 300;
  font-style: italic;
}
.asg-payment__error-product-desc strong {
  font-weight: 600;
}
.asg-payment__error-product-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 200px;
}
.asg-payment__error-product-cta-buy {
  width: 200px;
  height: 45px;
  background-color: #ff9000;
  border-radius: 10px;
  font-size: 14px;
  color: #050b35;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.asg-payment__error-product-cta-home {
  width: 200px;
  height: 20px;
  background-color: white;
  border-radius: 10px;
  font-weight: 500;
  font-size: 12px;
  color: #721d24;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.asg-payment__error-form {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 50px;
  background: rgba(248, 215, 218, 0.1);
  border: 1px solid #f8d7da;
  overflow: hidden;
  border-radius: 10px;
}
.asg-payment__wrapper {
  width: 100%;
  background-color: #fff;
  height: auto;
  min-height: calc(100vh - 80px);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
.asg-payment__wrapper-inner {
  width: 100%;
  max-width: 880px;
  padding: 20px;
  margin: 0 auto;
  border-radius: 5px;
  gap: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .asg-payment__wrapper-inner {
    padding: 30px;
    gap: 20px;
  }
}
.asg-payment__wrapper-inner:first-child {
  padding-bottom: 0px;
}
.asg-payment__accordion {
  width: 100%;
  max-width: 880px;
  background-color: #fff;
  margin: 0 auto;
}
.asg-payment__accordion-top {
  width: 100%;
  height: 60px;
  background-color: transparent;
  border: 1px solid #e7eff8;
  border-radius: 10px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease-in-out all;
}
@media (min-width: 1200px) {
  .asg-payment__accordion-top {
    height: 80px;
  }
}
.asg-payment__accordion-title {
  font-size: 14px;
  line-height: 125%;
  font-weight: 500;
  color: #303030;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: center;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .asg-payment__accordion-title {
    font-size: 16px;
  }
}
.asg-payment__accordion-title:after {
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/payment/plus.svg") no-repeat center;
  filter: brightness(0) saturate(100%) invert(35%) sepia(82%) saturate(4653%) hue-rotate(201deg) brightness(106%) contrast(103%);
  content: "";
}
@media (min-width: 1200px) {
  .asg-payment__accordion-title:after {
    right: 20px;
    width: 40px;
    height: 40px;
    background-size: 40px;
  }
}
.asg-payment__accordion-title span {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  border-radius: 100px;
  border: 1px solid #e7eff8;
  background-color: #e7eff8;
  font-size: 15px;
  line-height: 125%;
  font-weight: 600;
  margin-right: 5px;
  color: #303030;
  transition: 0.3s ease-in-out all;
  transform: translateY(-1px);
}
.asg-payment__accordion-bottom {
  border: 1px solid #e7eff8;
  border-top: 0;
  background-color: #fff;
  display: none;
  pointer-events: none;
}
.asg-payment__accordion--active .asg-payment__accordion-top {
  background-color: #e7eff8;
  border: 1px solid #e7eff8;
  border-radius: 10px 10px 0 0;
}
.asg-payment__accordion--active .asg-payment__accordion-title:after {
  background: url("../img/payment/minus.svg") no-repeat center;
}
.asg-payment__accordion--active .asg-payment__accordion-title span {
  background-color: #cee0f8;
  color: #197bfe;
}
.asg-payment__accordion--active .asg-payment__accordion-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  border-radius: 0 0 10px 10px;
  pointer-events: all;
}
.asg-payment__accordion--active .asg-payment__accordion-bottom-inner {
  width: 100%;
}
.asg-payment__accordion:hover .asg-payment__accordion-top {
  background-color: #e7eff8;
  border: 1px solid #e7eff8;
}
.asg-payment__accordion--error {
  border: 2px solid #da5e6b;
  border-radius: 10px;
}
.asg-payment__header {
  width: 100%;
  background-color: #050b35;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.asg-payment__header a {
  display: block;
}
.asg-payment__header a img {
  width: 100%;
  display: block;
  max-width: 200px;
}
@media (min-width: 768px) {
  .asg-payment__header a img {
    max-width: 250px;
  }
}
.asg-payment__container {
  width: 100%;
  margin: 0 auto;
  max-width: 880px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 20px;
}
.asg-payment__back {
  width: max-content;
  padding: 0px;
  height: 40px;
  background-color: transparent;
  border: 0;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease-in-out all;
  display: flex !important;
  align-items: center;
  font-family: inherit;
}
.asg-payment__back-icon {
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dc4753;
  border-radius: 100px;
  margin-left: 5px;
}
.asg-payment__back-icon img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(94%) saturate(22%) hue-rotate(11deg) brightness(105%) contrast(105%);
}
.asg-payment__back-text {
  color: #fff;
  display: none;
}
@media (min-width: 768px) {
  .asg-payment__back-text {
    font-size: 14px;
    font-family: inherit;
    text-decoration: underline;
    font-weight: 400;
    display: block;
  }
}
.asg-payment__title {
  font-size: 16px;
  color: #070707;
  font-weight: 500;
  line-height: 125%;
  font-family: inherit;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .asg-payment__title {
    font-size: 20px;
  }
}
.asg-payment__sub-title {
  font-size: 14px;
  color: #070707;
  font-weight: 500;
  line-height: 125%;
  font-family: inherit;
}
@media (min-width: 1200px) {
  .asg-payment__sub-title {
    font-size: 14px;
  }
}
.asg-payment__row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 1200px) {
  .asg-payment__row {
    gap: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.asg-payment__column {
  width: 100%;
}
@media (min-width: 1200px) {
  .asg-payment__column {
    width: calc(50% - 10px);
  }
}
.asg-payment__column .asg-payment__row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 1200px) {
  .asg-payment__column .asg-payment__row {
    gap: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.asg-payment__column--payment {
  width: 100%;
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .asg-payment__column--payment {
    width: calc(50% - 10px);
    padding: 20px;
  }
}
.asg-payment__column--payment .asg-payment__row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 1200px) {
  .asg-payment__column--payment .asg-payment__row {
    gap: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.asg-payment__form-element {
  width: 100%;
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
.asg-payment__form-element label {
  width: 100%;
  font-size: 13px;
  color: #303030;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 5px;
}
.asg-payment__form-element input[type=text], .asg-payment__form-element input[type=tel], .asg-payment__form-element input[type=email], .asg-payment__form-element textarea {
  width: 100%;
  border: 1px solid #e4e4e4;
  background-color: #fff;
  border-radius: 10px;
  height: 45px;
  padding: 0 15px;
  outline: 0;
  color: #646464;
  font-family: inherit;
  box-sizing: border-box;
  font-size: 14px;
}
.asg-payment__form-element textarea {
  height: 120px;
  padding: 15px 15px;
}
.asg-payment__form-element textarea::placeholder {
  color: #7b7e80;
}
@media (min-width: 992px) {
  .asg-payment__form-element textarea {
    height: 70px;
  }
}
.asg-payment__form-element select {
  width: 100%;
  border: 1px solid #e4e4e4;
  background-color: #fff;
  border-radius: 10px;
  height: 45px;
  padding: 0 15px;
  outline: 0;
  color: #7b7e80;
  font-family: inherit;
  box-sizing: border-box;
}
.asg-payment__form-element input[type=file] {
  margin-top: 5px;
  width: 100%;
  height: 45px;
  border-radius: 10px;
}
.asg-payment__form-element input[type=file]::file-selector-button {
  font-weight: 500;
  font-family: inherit;
  font-size: 14px;
  color: #000;
  padding: 0 20px;
  border: thin solid #fff;
  border-radius: 3px;
  cursor: pointer;
  height: 35px;
  border-radius: 10px;
}
.asg-payment__form-element--file {
  padding: 15px 20px;
  border: 1px solid #e5e5e5;
  background-color: rgba(206, 224, 248, 0.15);
  border-radius: 0 0 10px 10px;
  margin: -6px 5px 5px 5px;
  box-sizing: border-box;
  width: calc(100% - 10px);
}
.asg-payment__form-element--file label {
  font-size: 14px;
  padding-bottom: 5px;
  color: #303030;
  font-weight: 500;
  padding-top: 5px;
}
.asg-payment__form-element--invoice {
  padding: 15px 20px;
  border: 1px solid #e5e5e5;
  background-color: rgba(206, 224, 248, 0.15);
  border-radius: 0 0 10px 10px;
  margin: -6px 5px 5px 5px;
  box-sizing: border-box;
  width: calc(100% - 10px);
  gap: 20px;
}
@media (min-width: 1200px) {
  .asg-payment__form-element--invoice {
    flex-direction: row;
  }
}
.asg-payment__form-element--invoice label {
  width: 100%;
  font-size: 13px;
  color: #303030;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 5px;
}
.asg-payment__form-element--citizenship {
  padding: 15px 20px;
  border: 1px solid #e5e5e5;
  background-color: rgba(206, 224, 248, 0.15);
  border-radius: 0 0 10px 10px;
  margin: -6px 5px 5px 5px;
  box-sizing: border-box;
  width: calc(100% - 10px);
  gap: 20px;
}
@media (min-width: 1200px) {
  .asg-payment__form-element--citizenship {
    flex-direction: row;
  }
}
.asg-payment__form-element--citizenship label {
  width: 100%;
  font-size: 13px;
  color: #303030;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 5px;
  display: block;
}
.asg-payment__form-cta {
  width: 100%;
}
.asg-payment__form-cta button, .asg-payment__form-cta a {
  width: auto;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background-color: #cee0f8;
  color: #007bfe;
  border: 1px solid #cee0f8;
  height: 45px;
  padding: 0 20px 0 20px;
  cursor: pointer;
  min-width: 100px;
  line-height: 125%;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  opacity: 1;
  transition: 0.3s ease-in-out all;
}
.asg-payment__form-cta button img, .asg-payment__form-cta a img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(82%) saturate(4653%) hue-rotate(201deg) brightness(106%) contrast(103%);
}
.asg-payment__form-cta button::before, .asg-payment__form-cta a::before {
  transition: 0.3s ease-in-out all;
}
.asg-payment__form-cta button.button--disabled, .asg-payment__form-cta a.button--disabled {
  background-color: #e6e6eb;
  border: 1px solid #e6e6eb;
  pointer-events: none;
  opacity: 0.5;
  transition: 0.3s ease-in-out all;
}
.asg-payment__form-cta button.button--loading, .asg-payment__form-cta a.button--loading {
  background-color: #e6e6eb;
  border: 1px solid #e6e6eb;
  pointer-events: none;
  opacity: 1;
  transition: 0.3s ease-in-out all;
}
.asg-payment__form-cta button.button--loading::before, .asg-payment__form-cta a.button--loading::before {
  content: "";
  position: relative;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: 5px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><radialGradient id="a11" cx=".66" fx=".66" cy=".3125" fy=".3125" gradientTransform="scale(1.5)"><stop offset="0" stop-color="%23007BFE"></stop><stop offset=".3" stop-color="%23007BFE" stop-opacity=".9"></stop><stop offset=".6" stop-color="%23007BFE" stop-opacity=".6"></stop><stop offset=".8" stop-color="%23007BFE" stop-opacity=".3"></stop><stop offset="1" stop-color="%23007BFE" stop-opacity="0"></stop></radialGradient><circle transform-origin="center" fill="none" stroke="url(%23a11)" stroke-width="30" stroke-linecap="round" stroke-dasharray="200 1000" stroke-dashoffset="0" cx="100" cy="100" r="70"><animateTransform type="rotate" attributeName="transform" calcMode="spline" dur="2" values="360;0" keyTimes="0;1" keySplines="0 0 1 1" repeatCount="indefinite"></animateTransform></circle><circle transform-origin="center" fill="none" opacity=".2" stroke="%23007BFE" stroke-width="30" stroke-linecap="round" cx="100" cy="100" r="70"></circle></svg>');
}
.asg-payment__form-cta button.button--success, .asg-payment__form-cta a.button--success {
  background-color: #d4edda;
  border: 1px solid #d4edda;
  color: #325746;
  pointer-events: none;
  transition: 0.3s ease-in-out all;
}
.asg-payment__form-cta button.button--success::before, .asg-payment__form-cta a.button--success::before {
  content: "";
  filter: brightness(0) saturate(100%) invert(31%) sepia(17%) saturate(850%) hue-rotate(100deg) brightness(90%) contrast(92%);
  background-image: url("../img/payment/save.svg");
  position: relative;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: 5px;
}
@media (min-width: 992px) {
  .asg-payment__form-cta button, .asg-payment__form-cta a {
    font-size: 16px;
  }
}
.asg-payment__form-cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
.asg-payment__form-cols .asg-payment__form-col {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.asg-payment__form-cols .asg-payment__form-col:first-child {
  gap: 10px;
}
.asg-payment__form-cols .asg-payment__form-col:last-child {
  padding-left: 0;
}
@media (min-width: 1200px) {
  .asg-payment__form-cols .asg-payment__form-col:last-child {
    padding-left: 20px;
  }
}
.asg-payment__form-cols .asg-payment__form-col-title {
  font-weight: 600;
  color: #303030;
  font-size: 14px;
  line-height: 125%;
}
@media (min-width: 1200px) {
  .asg-payment__form-cols .asg-payment__form-col {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1200px) {
  .asg-payment__form-cols {
    flex-direction: row;
  }
}
.asg-payment__form-installments {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}
.asg-payment__form-installments .asg-payment__form-installment {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  padding: 5px;
  background-color: #fff;
  border: 1px solid #e7eff8;
}
.asg-payment__form-installments .asg-payment__form-installment input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  z-index: 1;
  opacity: 0;
}
.asg-payment__form-installments .asg-payment__form-installment input[type=radio]:checked + .asg-payment__form-installment-label {
  background-color: #e7eff8;
  color: #007cff;
}
.asg-payment__form-installments .asg-payment__form-installment input[type=radio]:checked + .asg-payment__form-installment-label:before {
  background-color: #007cff;
}
.asg-payment__form-installments .asg-payment__form-installment .asg-payment__form-installment-label {
  width: 100%;
  height: 40px;
  background-color: #fff;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #303030;
  line-height: 125%;
}
.asg-payment__form-installments .asg-payment__form-installment .asg-payment__form-installment-label:before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  display: block;
  border: 1px solid #ddd;
  background-color: transparent;
  transition: 0.3s ease all;
  margin-right: 10px;
  border-radius: 100px;
}
.asg-payment__form-installments .asg-payment__form-installment .asg-payment__form-installment-label span {
  font-weight: 600;
}
.asg-payment__form-installments .asg-payment__form-installment .asg-payment__form-installment-label strong {
  font-weight: 600;
  margin-left: 5px;
}
.asg-payment__form-installments .asg-payment__form-installment .asg-payment__form-installment-label i {
  margin-left: auto;
  font-weight: 600;
  font-size: 13px;
  color: #351e00;
  text-decoration: underline;
}
.asg-payment__form-installments .asg-payment__form-installment .asg-payment__form-installment-label i span {
  font-weight: 400;
}
.asg-payment__tabs {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 5px;
  box-sizing: border-box;
}
.asg-payment__tabs .asg-payment__tab {
  width: 100%;
  height: 40px;
  flex: 1;
  position: relative;
  margin-left: -1px;
}
.asg-payment__tabs .asg-payment__tab input[type=radio] {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}
.asg-payment__tabs .asg-payment__tab input[type=radio] + label {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid #e5e5e5;
}
.asg-payment__tabs .asg-payment__tab input[type=radio] + label::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-right: 10px;
}
.asg-payment__tabs .asg-payment__tab input[type=radio]:checked + label {
  background-color: rgba(0, 123, 254, 0.15);
  border: 1px solid #e5e5e5;
  color: #000;
}
.asg-payment__tabs .asg-payment__tab input[type=radio]:checked + label::before {
  background-color: rgba(0, 123, 254, 0.25);
  border: 1px solid #007bfe;
}
.asg-payment__tabs .asg-payment__tab:first-of-type label {
  border-radius: 5px 0 0 5px;
}
.asg-payment__tabs .asg-payment__tab:last-of-type label {
  border-radius: 0 5px 5px 0;
}
.asg-payment__tabs-2 {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 5px;
  box-sizing: border-box;
}
.asg-payment__tabs-2 .asg-payment__tab-2 {
  width: 100%;
  height: 40px;
  flex: 1;
  position: relative;
  margin-left: -1px;
}
.asg-payment__tabs-2 .asg-payment__tab-2 input[type=radio] {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}
.asg-payment__tabs-2 .asg-payment__tab-2 input[type=radio] + label {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid #e5e5e5;
}
.asg-payment__tabs-2 .asg-payment__tab-2 input[type=radio] + label::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-right: 10px;
}
.asg-payment__tabs-2 .asg-payment__tab-2 input[type=radio]:checked + label {
  background-color: rgba(0, 123, 254, 0.15);
  border: 1px solid #e5e5e5;
  color: #000;
}
.asg-payment__tabs-2 .asg-payment__tab-2 input[type=radio]:checked + label::before {
  background-color: rgba(0, 123, 254, 0.25);
  border: 1px solid #007bfe;
}
.asg-payment__tabs-2 .asg-payment__tab-2:first-of-type label {
  border-radius: 5px 0 0 5px;
}
.asg-payment__tabs-2 .asg-payment__tab-2:last-of-type label {
  border-radius: 0 5px 5px 0;
}
.asg-payment__tabs-3 {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 5px;
  box-sizing: border-box;
}
.asg-payment__tabs-3 .asg-payment__tab-3 {
  width: 100%;
  height: 60px;
  position: relative;
  margin-top: -1px;
}
.asg-payment__tabs-3 .asg-payment__tab-3 input[type=radio] {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}
.asg-payment__tabs-3 .asg-payment__tab-3 input[type=radio] + label {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  padding: 0 20px;
}
.asg-payment__tabs-3 .asg-payment__tab-3 input[type=radio] + label::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-right: 10px;
}
.asg-payment__tabs-3 .asg-payment__tab-3 input[type=radio]:checked + label {
  background-color: rgba(0, 123, 254, 0.15);
  border: 1px solid #e5e5e5;
  color: #000;
}
.asg-payment__tabs-3 .asg-payment__tab-3 input[type=radio]:checked + label::before {
  background-color: rgba(0, 123, 254, 0.25);
  border: 1px solid #007bfe;
}
.asg-payment__tabs-3 .asg-payment__tab-3:first-of-type label {
  border-radius: 5px 5px 0 0px;
}
.asg-payment__tabs-3 .asg-payment__tab-3:last-of-type label {
  border-radius: 0 0px 5px 5px;
}
.asg-payment__tabs-4 {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 5px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .asg-payment__tabs-4 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.asg-payment__tabs-4 .asg-payment__tab-4 {
  width: 100%;
  height: 45px;
  position: relative;
  margin-top: -1px;
}
@media (min-width: 992px) {
  .asg-payment__tabs-4 .asg-payment__tab-4 {
    margin-left: -1px;
    flex: 1;
  }
}
.asg-payment__tabs-4 .asg-payment__tab-4 input[type=radio] {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}
.asg-payment__tabs-4 .asg-payment__tab-4 input[type=radio] + label {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  padding: 0 20px;
}
.asg-payment__tabs-4 .asg-payment__tab-4 input[type=radio] + label::before {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-right: 10px;
}
.asg-payment__tabs-4 .asg-payment__tab-4 input[type=radio]:checked + label {
  background-color: rgba(0, 123, 254, 0.15);
  border: 1px solid #e5e5e5;
  color: #000;
}
.asg-payment__tabs-4 .asg-payment__tab-4 input[type=radio]:checked + label::before {
  background-color: rgba(0, 123, 254, 0.25);
  border: 1px solid #007bfe;
}
.asg-payment__tabs-4 .asg-payment__tab-4:first-of-type label {
  border-radius: 5px 0px 0px 0px;
}
.asg-payment__tabs-4 .asg-payment__tab-4:last-of-type label {
  border-radius: 0 5px 0px 0px;
}
.asg-payment__selectboxes {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.asg-payment__selectboxes .asg-payment__selectbox {
  width: 100%;
  flex: 1;
}
.asg-payment__radios {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.asg-payment__radios .asg-payment__radio {
  width: calc(33.3% - 8px);
  height: 45px;
  position: relative;
}
.asg-payment__radios .asg-payment__radio input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.asg-payment__radios .asg-payment__radio label {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 0px 15px 0 30px;
  font-size: 14px;
  line-height: 125%;
  color: #888f97;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.asg-payment__radios .asg-payment__radio label:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  border-radius: 50px;
  border: 2px solid #f0f0f0;
  background-color: transparent;
}
.asg-payment__radios .asg-payment__radio input[type=radio]:checked + label {
  border: 1px solid #9bd8f1;
  color: #888f97;
}
.asg-payment__radios .asg-payment__radio input[type=radio]:checked + label:before {
  border: 2px solid #9bd8f1;
}
.asg-payment__bank {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}
.asg-payment__bank-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  border: 1px solid #e4e4e4;
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .asg-payment__bank-row {
    padding: 20px;
  }
}
.asg-payment__bank-left {
  width: 50px;
  display: none;
}
@media (min-width: 992px) {
  .asg-payment__bank-left {
    display: block;
  }
}
.asg-payment__bank-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}
@media (min-width: 992px) {
  .asg-payment__bank-right {
    padding-left: 10px;
    width: calc(100% - 50px);
  }
}
.asg-payment__bank-logo {
  pointer-events: none;
  width: 50px;
}
.asg-payment__bank-logo img {
  display: block;
  width: 100%;
}
.asg-payment__bank-title {
  font-size: 14px;
  font-weight: 600;
  color: #565c5c;
  letter-spacing: -0.5px;
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .asg-payment__bank-title {
    font-size: 16px;
  }
}
.asg-payment__bank-name {
  font-size: 14px;
  font-weight: 400;
  color: #3b3330;
  letter-spacing: -0.5px;
}
.asg-payment__bank-iban {
  font-size: 13px;
  font-weight: 600;
  color: #3b3330;
  font-family: inherit;
  letter-spacing: -0.2px;
}
@media (min-width: 992px) {
  .asg-payment__bank-iban {
    font-size: 14px;
  }
}
.asg-payment__bank-desc {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #3b3330;
  font-family: inherit;
}
@media (min-width: 992px) {
  .asg-payment__bank-desc {
    font-size: 14px;
  }
}
.asg-payment__warning {
  width: 100%;
  border: 1px solid #ebddaf;
  background-color: rgba(255, 243, 205, 0.3);
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #856424;
  line-height: 135%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.asg-payment__file-warning {
  width: 100%;
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0);
  padding: 5px 0px;
  font-size: 12px;
  font-weight: 400;
  color: #171b29;
  line-height: 135%;
  border-radius: 10px;
  margin-bottom: 5px;
}
@media (min-width: 1200px) {
  .asg-payment__file-warning {
    position: relative;
    bottom: 0;
  }
}
.asg-payment__file-warning-2 {
  width: 100%;
  border: 1px solid #ebddaf;
  background-color: rgba(255, 243, 205, 0.75);
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 400;
  color: #684d16;
  line-height: 135%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.asg-payment__payment-type-warning {
  border: 1px solid #ebddaf;
  background-color: rgba(255, 243, 205, 0.75);
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #684d16;
  line-height: 145%;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  width: calc(100% - 10px);
  margin: 5px;
}
.asg-payment__payment-type-warning strong {
  font-weight: 600;
  text-decoration: underline;
  display: contents;
}
@media (min-width: 1200px) {
  .asg-payment__payment-type-warning {
    font-size: 16px;
  }
}
.asg-payment .iti__country-container {
  border-radius: 10px 0 0 10px;
}
.asg-payment .iti__selected-country {
  background-color: #f8f8f8;
  border-radius: 10px 0 0 10px;
}
.asg-payment .iti__selected-dial-code {
  color: #222;
}
.asg-payment .iti__selected-country-primary:hover {
  background-color: #f8f8f8 !important;
  border-radius: 10px 0 0 10px;
}
.asg-payment .just-validate-error-label {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 10px));
  right: 10px;
  font-size: 12px;
  color: #831c24 !important;
  background-color: #ffe9eb !important;
  border: 1px solid #f5c6cb !important;
  border-radius: 2px;
  padding: 2px 5px;
  font-weight: 500;
  z-index: 1;
  transition: 0.3s ease-in-out all;
  pointer-events: none;
  border-radius: 2.5px;
}
.contact__form-row--checkbox .asg-payment .just-validate-error-label {
  opacity: 0;
}
.contact-2__form-row--checkbox .asg-payment .just-validate-error-label {
  opacity: 0;
}
.asg-payment .just-validate-error-field {
  box-shadow: 0 0 0px 0px #f5c6cb !important;
  border: 2px solid #da5e6b !important;
}
.contact__form-row--checkbox .asg-payment .just-validate-error-field {
  opacity: 1;
  box-shadow: 0 0 0px 2px #da5e6b !important;
}
.asg-payment input[type=tel] + .just-validate-error-label {
  transform: translateY(calc(-50% - 20px)) !important;
}
.asg-payment textarea + .just-validate-error-label {
  transform: translateY(calc(-50% - 50px)) !important;
}
@media (min-width: 1200px) {
  .asg-payment textarea + .just-validate-error-label {
    transform: translateY(calc(-50% - 25px)) !important;
  }
}
.asg-payment input[type=checkbox] + span + label + .just-validate-error-label {
  display: none;
}
.asg-payment input[type=checkbox].just-validate-error-field + span {
  box-shadow: 0 0 0px 0px #f5c6cb !important;
  border: 2px solid #da5e6b !important;
}
@media (max-width: 1200px) {
  .asg-payment input[type=file] + .just-validate-error-label {
    position: relative !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    margin-top: 10px;
    transform: translate(0) !important;
  }
}
@media (min-width: 1200px) {
  .asg-payment input[type=file] + .just-validate-error-label {
    position: relative !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    margin-top: 10px;
    transform: translate(0) !important;
  }
}
.asg-payment .asg-payment .asg-payment__selectbox .just-validate-error-label {
  display: none;
}
.asg-payment .alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 999999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.asg-payment .alert__wrapper {
  height: 300px;
  width: 85%;
  max-width: 500px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
}
.asg-payment .alert__title {
  font-size: 19px;
  color: #1b262c;
  font-weight: 500;
  text-align: center;
  width: 100%;
  line-height: 125%;
  padding: 0 20px;
  letter-spacing: -0.2px;
}
.asg-payment .alert__icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 20px;
  object-position: center;
}
.asg-payment .alert__icon img {
  width: 100%;
}
.asg-payment .alert--red .alert__wrapper {
  background-color: #f8d7da;
}
.asg-payment .alert--red .alert__title {
  color: #721c24;
}
.asg-payment .alert--green .alert__wrapper {
  background-color: #d4edda;
}
.asg-payment .alert--green .alert__title {
  color: #155724;
}
.asg-payment .alert--yellow .alert__wrapper {
  background-color: #fff3cd;
}
.asg-payment .alert--yellow .alert__title {
  color: #856404;
}
.asg-payment .alert--white {
  background-color: rgba(0, 0, 0, 0.1);
}
.asg-payment .alert--white .alert__wrapper {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid #e4e4e4;
}
.asg-payment .alert--white .alert__title {
  color: #007bfe;
}
.asg-payment .alert .close {
  position: absolute;
  cursor: pointer;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  background-color: rgba(175, 39, 66, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 7px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 20px;
  color: #fff;
  line-height: 125%;
}
@media (min-width: 992px) {
  .asg-payment .alert .close {
    top: 5px;
    right: 5px;
  }
}
.asg-payment__legal {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 0px;
}
.asg-payment__legal:last-child {
  margin-bottom: 0;
}
.asg-payment__legal-title {
  font-size: 13px;
  font-weight: 600;
  color: #303030;
  line-height: 125%;
}
.asg-payment__legal-scroller {
  width: 100%;
  height: 150px;
  overflow-y: auto;
  padding: 15px;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}
.asg-payment__legal-scroller p {
  font-size: 13px;
  font-weight: 400;
  color: #646464;
  line-height: 135%;
}
@media (min-width: 992px) {
  .asg-payment__legal-scroller p {
    font-size: 14px;
  }
}
.asg-payment__legal-scroller ul {
  list-style-type: disc;
  padding-left: 20px;
}
.asg-payment__legal-scroller ul li {
  font-size: 13px;
  font-weight: 400;
  color: #646464;
  line-height: 135%;
}
@media (min-width: 992px) {
  .asg-payment__legal-scroller ul li {
    font-size: 14px;
  }
}
.asg-payment__legal-scroller table {
  width: 100%;
}
.asg-payment__legal-scroller table tr td {
  border: 1px solid #e4e4e4;
  padding: 5px;
  font-size: 13x;
  font-weight: 400;
  color: #646464;
  line-height: 135%;
}
@media (min-width: 992px) {
  .asg-payment__legal-scroller table tr td {
    font-size: 14px;
  }
}
.asg-payment__legal-scroller table th {
  border: 1px solid #e4e4e4;
  padding: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #303030;
  line-height: 135%;
}
@media (min-width: 992px) {
  .asg-payment__legal-scroller table th {
    font-size: 14px;
  }
}
.asg-payment__legal-cb {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: pointer;
}
.asg-payment__legal-cb input {
  position: absolute;
  opacity: 0;
}
.asg-payment__legal-cb input:checked + span {
  background-color: #fff;
  position: relative;
}
.asg-payment__legal-cb input:checked + span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: rgb(106, 216, 111);
}
.asg-payment__legal-cb span {
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border-radius: 2px;
  border: 1px solid #303030;
  display: block;
  pointer-events: none;
}
.asg-payment__legal-cb label {
  font-size: 14px;
  font-weight: 400;
  color: #646464;
  line-height: 135%;
  padding-left: 5px;
  cursor: pointer;
  width: calc(100% - 16px);
}

.prev-page {
  width: max-content;
  padding: 0 20px 0 50px;
  height: 40px;
  background-color: #b0b3d4;
  color: #060d38;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  border-radius: 20px;
  font-family: inherit;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.3s ease-in-out all;
  box-shadow: 0 3px 2px 0 rgba(255, 144, 0, 0.7);
  z-index: 2;
}
.prev-page:after {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 1;
  background-color: #d1d3ee;
  content: "";
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/icons/arrow-left.svg");
}
@media (min-width: 992px) {
  .prev-page:hover {
    transform: translateY(2px);
    box-shadow: 0 0px 0px 0 rgba(255, 144, 0, 0.7);
  }
}

.educations-page .educations {
  padding-top: 100px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .educations-page .educations {
    padding: 150px 0 20px 0;
  }
}
.educations-page .educations .educations__title::before {
  display: none !important;
}
.educations-page .educations .educations__figure {
  display: none;
}
.educations-page .educations .educations__logo {
  display: none;
}
@media (min-width: 992px) {
  .educations-page .educations .educations__logo {
    content: "";
    background: url("../img/logo-a-2.png") no-repeat center;
    width: 648px;
    height: 978px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: 0;
    top: -10%;
    left: 50%;
    transform: translateX(calc(-50% - 500px));
    opacity: 0.1;
    pointer-events: none;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .educations-page .educations .educations__logo {
    width: 848px;
    height: 1178px;
    top: 0%;
  }
}

.consultancy-page .consultancy {
  padding-top: 100px;
  padding-bottom: 50px;
  background: rgb(4, 11, 54) !important;
  background: linear-gradient(0deg, rgb(4, 11, 54) 0%, rgb(15, 23, 83) 100%) !important;
}
@media (min-width: 992px) {
  .consultancy-page .consultancy {
    padding: 150px 0 20px 0;
  }
}
.consultancy-page .consultancy .consultancy__title::before {
  display: none !important;
}
.consultancy-page .consultancy .consultancy__figure {
  display: none;
}
.consultancy-page .consultancy .consultancy__logo {
  display: none;
}
@media (min-width: 992px) {
  .consultancy-page .consultancy .consultancy__logo {
    content: "";
    background: url("../img/logo-a-2.png") no-repeat center;
    width: 648px;
    height: 978px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: 0;
    top: -10%;
    left: 50%;
    transform: translateX(calc(-50% - 500px));
    opacity: 0.1;
    pointer-events: none;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .consultancy-page .consultancy .consultancy__logo {
    width: 848px;
    height: 1178px;
    top: 0%;
  }
}

.events-page .events {
  padding-top: 100px;
  padding-bottom: 20px;
  background: rgb(4, 11, 54) !important;
  background: linear-gradient(0deg, rgb(4, 11, 54) 0%, rgb(15, 23, 83) 100%) !important;
}
@media (min-width: 992px) {
  .events-page .events {
    padding: 150px 0 20px 0;
  }
}
.events-page .events .events__logo {
  display: none;
}
.events-page .events .events__title::before {
  display: none !important;
}
.events-page .events .events__figure {
  display: none;
}
@media (min-width: 992px) {
  .events-page .events .events__logo {
    content: "";
    background: url("../img/logo-a-2.png") no-repeat center;
    width: 648px;
    height: 978px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: 0;
    top: -10%;
    left: 50%;
    transform: translateX(calc(-50% - 500px));
    opacity: 0.1;
    pointer-events: none;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .events-page .events .events__logo {
    width: 848px;
    height: 1178px;
    top: 0%;
  }
}

.about-us-page .about-us {
  background: rgb(4, 11, 54) !important;
  background: linear-gradient(0deg, rgb(4, 11, 54) 0%, rgb(15, 23, 83) 100%) !important;
  padding-top: 100px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .about-us-page .about-us {
    padding: 150px 0 20px 0;
  }
}
.about-us-page .about-us .about-us__title::before {
  display: none !important;
}
.about-us-page .about-us .about-us__figure {
  display: none;
}
.about-us-page .about-us .about-us__content {
  margin-top: 30px;
}
.about-us-page .about-us .about-us__wrapper {
  padding-top: 0;
  z-index: 1;
  backdrop-filter: blur(0);
}
@media (min-width: 992px) {
  .about-us-page .about-us .about-us__logo {
    content: "";
    background: url("../img/logo-a-2.png") no-repeat center;
    width: 648px;
    height: 978px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: 0;
    top: -10%;
    left: 50%;
    transform: translateX(calc(-50% - 500px));
    opacity: 0.1;
    pointer-events: none;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .about-us-page .about-us .about-us__logo {
    width: 848px;
    height: 1178px;
    top: 0%;
  }
}

.detail {
  background: rgb(4, 11, 54) !important;
  background: linear-gradient(0deg, rgb(4, 11, 54) 0%, rgb(15, 23, 83) 100%) !important;
  padding-top: 100px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .detail {
    padding: 150px 0 20px 0;
  }
}
@media (min-width: 992px) {
  .detail__logo {
    content: "";
    background: url("../img/logo-a-2.png") no-repeat center;
    width: 648px;
    height: 978px;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: 0;
    top: -10%;
    left: 50%;
    transform: translateX(calc(-50% - 500px));
    opacity: 0.1;
    pointer-events: none;
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  .detail__logo {
    width: 848px;
    height: 1178px;
    top: 0%;
  }
}

.only-before-md {
  display: block;
}
@media (min-width: 768px) {
  .only-before-md {
    display: none;
  }
}
.only-after-md {
  display: none;
}
@media (min-width: 768px) {
  .only-after-md {
    display: block;
  }
}

.breadcrumb {
  background-color: transparent;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  transition: 0.3s ease all;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  margin-top: 20px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .breadcrumb {
    height: 50px;
  }
}
.breadcrumb__items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 5px;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.breadcrumb__item:after {
  content: "";
  background: url("../img/icons/c-right.svg") no-repeat center;
  background-size: 100%;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: 5px;
  display: block;
}
.breadcrumb__item:last-child:after {
  display: none;
}
.breadcrumb__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 125%;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}
@media (min-width: 768px) {
  .breadcrumb__link {
    font-size: 16px;
  }
}

.just-validate-error-label {
  position: absolute;
  top: -5px;
  right: 10px;
  font-size: 12px;
  color: #831c24 !important;
  background-color: #f8d7da !important;
  border: 1px solid #f5c6cb !important;
  border-radius: 2px;
  padding: 2px 5px;
  font-weight: 500;
  z-index: 1;
  transition: 0.3s ease-in-out all;
  pointer-events: none;
}
.contact__form-row--checkbox .just-validate-error-label {
  opacity: 0;
}
.contact-2__form-row--checkbox .just-validate-error-label {
  opacity: 0;
}
.just-validate-error-field {
  box-shadow: 0 0 0px 0px #f5c6cb !important;
  border: 2px solid #da5e6b !important;
}
.contact__form-row--checkbox .just-validate-error-field {
  opacity: 1;
  box-shadow: 0 0 0px 2px #da5e6b !important;
}
.contact-2__form-row--checkbox .just-validate-error-field {
  opacity: 1;
  box-shadow: 0 0 0px 2px #da5e6b !important;
}

.contact-2 {
  width: 100%;
  z-index: 0;
  padding: 20px 0;
}
@media (min-width: 992px) {
  .contact-2 {
    padding: 20px 0;
  }
}
.contact-2__wrapper {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
}
.contact-2__title {
  font-size: 20px;
  color: #721d24;
  line-height: 125%;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .contact-2__title {
    font-size: 30px;
  }
}
.contact-2__title:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #f8d7da;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  position: relative;
  transform: translateY(10px);
}
.contact-2__inner-wrapper {
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .contact-2__inner-wrapper {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.contact-2__form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .contact-2__form {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.contact-2__form-item {
  width: 100%;
}
@media (min-width: 992px) {
  .contact-2__form-item {
    width: 50%;
    padding: 0 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.contact-2__form-row {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
  position: relative;
}
@media (min-width: 992px) {
  .contact-2__form-row {
    margin-bottom: 20px;
  }
}
.contact-2__form-row input {
  width: 100%;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #f8d7da;
  height: 45px;
  outline: 0;
  font-size: 14px;
  font-family: inherit;
  color: #5a0f14;
  line-height: 125%;
  font-weight: 400;
  display: block;
  padding: 0 15px;
  border-radius: 5px;
  background-color: rgba(90, 15, 20, 0.05);
}
.contact-2__form-row input::placeholder {
  font-size: 14px;
  color: #5a0f14;
  line-height: 125%;
  font-weight: 400;
  opacity: 0.6;
}
.contact-2__form-row textarea {
  width: 100%;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #f8d7da;
  height: 45px;
  height: 175px;
  outline: 0;
  font-size: 14px;
  color: #5a0f14;
  line-height: 125%;
  font-weight: 400;
  font-family: inherit;
  display: block;
  padding: 15px;
  border-radius: 5px;
  background-color: rgba(90, 15, 20, 0.05);
}
.contact-2__form-row textarea::placeholder {
  font-size: 14px;
  color: #5a0f14;
  line-height: 125%;
  font-weight: 400;
  opacity: 0.6;
}
.contact-2__form-row--checkbox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.contact-2__form-row--checkbox input {
  width: 15px;
  height: 15px;
  border-radius: 0;
  outline: 0;
  border: 0;
  background-color: rgba(90, 15, 20, 0.5);
  box-sizing: border-box;
  font-family: inherit;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s ease all;
}
.contact-2__form-row--checkbox label {
  width: calc(100% - 25px);
  text-align: left;
  font-size: 11px;
  line-height: 125%;
  font-weight: 400;
  color: #5a0f14;
  opacity: 0.6;
  box-sizing: border-box;
  font-family: inherit;
  padding-left: 5px;
  cursor: pointer;
  transition: 0.3s ease all;
}
.contact-2__form-row--checkbox:hover input {
  opacity: 0.9;
}
.contact-2__form-row--checkbox:hover label {
  opacity: 0.8;
}
.contact-2__form-row--checkbox:first-child {
  margin-bottom: 5px;
}
.contact-2__form-row--captcha {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.contact-2__form-row--captcha input {
  width: calc(100% - 130px);
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #f8d7da;
  height: 45px;
  outline: 0;
  font-size: 14px;
  font-family: inherit;
  color: #5a0f14;
  line-height: 125%;
  font-weight: 400;
  display: block;
  padding: 0 15px;
  border-radius: 0 5px 5px 0;
  background-color: rgba(90, 15, 20, 0.05);
}
.contact-2__form-row--captcha input::placeholder {
  font-size: 14px;
  color: #5a0f14;
  line-height: 125%;
  font-weight: 400;
  opacity: 0.6;
}
.contact-2__form-row--captcha .form-captcha-image {
  width: 130px;
  height: 45px;
  max-width: 130px;
  max-height: 45px;
  border-bottom: 1px solid #f8d7da;
  object-fit: cover;
  object-position: center;
  border-radius: 5px 0 0 5px;
}
.contact-2__form-row--captcha:hover input {
  opacity: 0.9;
}
.contact-2__form-row--captcha:hover label {
  opacity: 0.8;
}
.contact-2__form-row button[type=submit] {
  width: 100%;
  height: 45px;
  background-color: #f8d7da;
  color: #721d24;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  border-radius: 5px;
}
.contact-2__texts {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .contact-2__texts {
    width: 100%;
    margin-bottom: 40px;
  }
}
.contact-2__texts-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.contact-2__texts-row:last-child {
  margin-bottom: 0;
}
.contact-2__texts-row img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: brightness(0) saturate(100%) invert(12%) sepia(32%) saturate(5969%) hue-rotate(339deg) brightness(92%) contrast(90%);
}
.contact-2__texts-row a {
  color: #5a0f14;
  display: block;
  font-size: 14px;
  line-height: 145%;
  text-decoration: none;
  width: calc(100% - 24px);
  padding-left: 10px;
  opacity: 0.7;
}
@media (min-width: 992px) {
  .contact-2__texts-row {
    padding: 0 10px;
  }
}
.contact-2 .just-validate-error-label {
  position: absolute;
  top: -5px !important;
  right: 5px !important;
  transform: translate(0) !important;
}
.contact-2 textarea + .just-validate-error-label {
  transform: translate(0) !important;
}
.contact-2 input[type=tel] + .just-validate-error-label {
  transform: translateY(0) !important;
}

.legal-modal {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
}
.legal-modal h1 {
  font-size: 18px;
  line-height: 125%;
  color: #333;
  font-weight: 500;
}
.legal-modal h2 {
  font-size: 16px;
  line-height: 125%;
  color: #333;
  font-weight: 500;
}
.legal-modal p {
  font-size: 14px;
  line-height: 135%;
  color: #777;
  font-weight: 400;
}
.legal-modal li {
  font-size: 14px;
  line-height: 135%;
  color: #777;
  font-weight: 400;
}
.legal-modal ol {
  list-style-type: lower-roman;
  padding-left: 20px;
}
.legal-modal ul {
  list-style-type: disc;
  padding-left: 20px;
}
.legal-modal strong {
  font-weight: 600;
}
.legal-modal a {
  font-size: 14px;
  line-height: 135%;
  color: #777;
  font-weight: 400;
  text-decoration: underline;
}
.legal-modal td {
  font-size: 14px;
  line-height: 135%;
  color: #777;
  font-weight: 400;
}

.d-none {
  display: none;
}

/*# sourceMappingURL=style.css.map */
