@import url(https://use.typekit.net/rvz3jgb.css);
@import url(https://fonts.googleapis.com/css2?family=Barlow: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);
@import url(https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Work+Sans: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);
@import url(https://fonts.cdnfonts.com/css/bw-nista-geometric-demo);
@import url(https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&display=swap);
@import url(https://unpkg.com/ionicons@4.2.2/dist/css/ionicons.min.css);
.header__area {
  background-color: #ffffff;
  padding: 16px 0;
  position: static;
  width: 100%;
  z-index: 9;
  margin: 0 auto;
  top: 0px;
  left: 0;
  right: 0;
  transition: transform 0.5s ease-out;
}
.header__area .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__area--logo {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.header__area--logo img {
  height: 65px;
  transition: transform ease-in 0.4s;
}
.header__area--logo img:hover {
  transform: scale(1.05);
  transition: transform ease-in 0.4s;
}
@media (max-width: 991px) {
  .header__area--logo img {
    height: 45px;
  }
}
@media (max-width: 600px) {
  .header__area--logo img {
    height: 40px;
  }
}
@media (max-width: 590px) {
  .header__area--logo img {
    height: 36px;
    width: auto;
  }
}
.header__area--actions {
  width: auto;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
@media (max-width: 1024px) {
  .header__area--actions {
    width: auto;
  }
}
.header__area--actions .drawer--btn {
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header__area--actions .drawer--btn {
    display: flex;
  }
}
.header__area--menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 50%;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
}
@media (max-width: 1299px) {
  .header__area--menu {
    width: 60%;
  }
}
@media (max-width: 1140px) {
  .header__area--menu {
    gap: 8px;
  }
}
@media (max-width: 1024px) {
  .header__area--menu {
    display: none;
  }
}
.header__area--menu .menu--item .link {
  color: #231F20;
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 16px 0;
  position: relative;
  transition: 0.5s ease-in-out;
}
.header__area--menu .menu--item .link:hover {
  color: #eb222d;
  transition: ease-in 0.3s;
}
.header__area--menu .menu--item .link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60%;
  height: 2px;
  background: #EB222D;
  transform: scaleX(0);
  transform-origin: center;
  transition: ease-in 0.3s;
  border-radius: 10px;
}
.header__area--menu .menu--item .link:hover::after {
  transform: scaleX(1);
}
.header__area--menu .menu--item .active {
  color: #eb222d;
  transition: ease-in 0.3s;
  font-weight: 900;
}
.header__area--menu .menu--item .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60%;
  height: 2px;
  background: #EB222D;
  transform: scaleX(1);
  transform-origin: left;
  transition: ease-in 0.3s;
  border-radius: 10px;
}
.header__area--menu .menu--item:hover .mega--menu {
  display: block;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.header__area--menu .mega--menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  width: 80%;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0px 8px 16px 0px rgba(144, 144, 144, 0.2);
  z-index: 1;
  padding: 16px;
  border-radius: 16px;
  opacity: 0;
  transform: translate3d(-200px, 0, 0);
  transition: 0.5s all ease-in-out;
}
@media (max-width: 1199px) {
  .header__area--menu .mega--menu {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  .header__area--menu .mega--menu {
    display: none;
  }
}
.header__area--menu .mega--menu .item {
  background-color: #f5f8ff;
  border-bottom: 4px solid transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 100%;
  color: #231F20;
  padding: 16px;
  font-weight: 600;
  text-align: center;
  font-size: clamp(16px, 3vw, 18px);
  transition: all ease-in-out 0.4s;
}
.header__area--menu .mega--menu .item:hover {
  border-bottom: 4px solid #231F20;
  background-color: rgba(250, 210, 45, 0.8);
  color: #231F20;
  transition: all ease-in-out 0.4s;
}
.header__area--menu .mega--menu .wrap {
  content: "";
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14%, 1fr));
  grid-gap: 16px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  width: 80%;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0px 8px 16px 0px rgba(144, 144, 144, 0.2);
  z-index: 1;
  padding: 16px;
  border-radius: 16px;
}
.dropdown-content .item {
  background-color: #f5f8ff;
  border-bottom: 4px solid transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 100%;
  color: #231F20;
  padding: 16px;
  font-weight: 600;
  text-align: center;
  font-size: clamp(16px, 3vw, 18px);
  transition: all ease-in-out 0.4s;
}
.dropdown-content .item:hover {
  border-bottom: 4px solid #231F20;
  background-color: rgba(250, 210, 45, 0.8);
  color: #231F20;
  transition: all ease-in-out 0.4s;
}
.dropdown-content .wrap {
  content: "";
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14%, 1fr));
  grid-gap: 16px;
}

.showDropdown {
  display: block;
}

.sticky {
  position: sticky;
  top: 0;
  transform: translateY(0);
  transition: transform 0.5s ease-out;
  z-index: 10;
  box-shadow: rgba(235, 34, 45, 0.09) 0px 0px 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
}

.--mobile {
  display: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Khand", sans-serif;
}

a {
  text-decoration: none;
  color: #EB222D;
}

a:hover {
  text-decoration: none;
}

::-moz-selection {
  background-color: rgba(250, 210, 45, 0.7);
  color: white;
}

::selection {
  background-color: rgba(250, 210, 45, 0.7);
  color: white;
}

figure {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 10px;
  margin-inline-end: 0;
}

body {
  /* overflow: hidden; */
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Khand", sans-serif;
  font-weight: 400;
  background-color: #ffffff;
  color: #3E4871;
}

.sticky-top {
  top: 8rem;
  z-index: 0;
}
@media (max-width: 991px) {
  .sticky-top {
    position: static;
  }
}

@media (max-width: 1299px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
@media (max-width: 400px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
.header__area {
  background-color: #ffffff;
  padding: 16px 0;
  position: static;
  width: 100%;
  z-index: 9;
  margin: 0 auto;
  top: 0px;
  left: 0;
  right: 0;
  transition: transform 0.5s ease-out;
}
.header__area .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__area--logo {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.header__area--logo img {
  height: 65px;
  transition: transform ease-in 0.4s;
}
.header__area--logo img:hover {
  transform: scale(1.05);
  transition: transform ease-in 0.4s;
}
@media (max-width: 991px) {
  .header__area--logo img {
    height: 45px;
  }
}
@media (max-width: 600px) {
  .header__area--logo img {
    height: 40px;
  }
}
@media (max-width: 590px) {
  .header__area--logo img {
    height: 36px;
    width: auto;
  }
}
.header__area--actions {
  width: auto;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
@media (max-width: 1024px) {
  .header__area--actions {
    width: auto;
  }
}
.header__area--actions .drawer--btn {
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header__area--actions .drawer--btn {
    display: flex;
  }
}
.header__area--menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 50%;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
}
@media (max-width: 1299px) {
  .header__area--menu {
    width: 60%;
  }
}
@media (max-width: 1140px) {
  .header__area--menu {
    gap: 8px;
  }
}
@media (max-width: 1024px) {
  .header__area--menu {
    display: none;
  }
}
.header__area--menu .menu--item .link {
  color: #231F20;
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 16px 0;
  position: relative;
  transition: 0.5s ease-in-out;
}
.header__area--menu .menu--item .link:hover {
  color: #eb222d;
  transition: ease-in 0.3s;
}
.header__area--menu .menu--item .link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60%;
  height: 2px;
  background: #EB222D;
  transform: scaleX(0);
  transform-origin: center;
  transition: ease-in 0.3s;
  border-radius: 10px;
}
.header__area--menu .menu--item .link:hover::after {
  transform: scaleX(1);
}
.header__area--menu .menu--item .active {
  color: #eb222d;
  transition: ease-in 0.3s;
  font-weight: 900;
}
.header__area--menu .menu--item .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60%;
  height: 2px;
  background: #EB222D;
  transform: scaleX(1);
  transform-origin: left;
  transition: ease-in 0.3s;
  border-radius: 10px;
}
.header__area--menu .menu--item:hover .mega--menu {
  display: block;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.header__area--menu .mega--menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  width: 80%;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0px 8px 16px 0px rgba(144, 144, 144, 0.2);
  z-index: 1;
  padding: 16px;
  border-radius: 16px;
  opacity: 0;
  transform: translate3d(-200px, 0, 0);
  transition: 0.5s all ease-in-out;
}
@media (max-width: 1199px) {
  .header__area--menu .mega--menu {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  .header__area--menu .mega--menu {
    display: none;
  }
}
.header__area--menu .mega--menu .item {
  background-color: #f5f8ff;
  border-bottom: 4px solid transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 100%;
  color: #231F20;
  padding: 16px;
  font-weight: 600;
  text-align: center;
  font-size: clamp(16px, 3vw, 18px);
  transition: all ease-in-out 0.4s;
}
.header__area--menu .mega--menu .item:hover {
  border-bottom: 4px solid #231F20;
  background-color: rgba(250, 210, 45, 0.8);
  color: #231F20;
  transition: all ease-in-out 0.4s;
}
.header__area--menu .mega--menu .wrap {
  content: "";
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14%, 1fr));
  grid-gap: 16px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  width: 80%;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0px 8px 16px 0px rgba(144, 144, 144, 0.2);
  z-index: 1;
  padding: 16px;
  border-radius: 16px;
}
.dropdown-content .item {
  background-color: #f5f8ff;
  border-bottom: 4px solid transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 100%;
  color: #231F20;
  padding: 16px;
  font-weight: 600;
  text-align: center;
  font-size: clamp(16px, 3vw, 18px);
  transition: all ease-in-out 0.4s;
}
.dropdown-content .item:hover {
  border-bottom: 4px solid #231F20;
  background-color: rgba(250, 210, 45, 0.8);
  color: #231F20;
  transition: all ease-in-out 0.4s;
}
.dropdown-content .wrap {
  content: "";
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14%, 1fr));
  grid-gap: 16px;
}

.showDropdown {
  display: block;
}

.sticky {
  position: sticky;
  top: 0;
  transform: translateY(0);
  transition: transform 0.5s ease-out;
  z-index: 10;
  box-shadow: rgba(235, 34, 45, 0.09) 0px 0px 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
}

.--mobile {
  display: none;
}

.footer__area {
  border-radius: 16px;
  background-color: #f5f8ff;
  padding: 24px;
  border: 1px solid #f5f8ff;
  margin-top: 40px;
}
@media (max-width: 520px) {
  .footer__area {
    padding: 16px;
  }
}
.footer__area--grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 1;
}
@media (max-width: 991px) {
  .footer__area--grid {
    flex-wrap: wrap;
  }
}
.footer__area .widget {
  width: 50%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .footer__area .widget {
    border-bottom: 1px solid rgba(153, 162, 198, 0.3);
    width: 100%;
    padding-bottom: 8px;
  }
}
.footer__area .widget--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.footer__area .widget--head h4 {
  color: #231F20;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 16px;
}
.footer__area .widget--head i {
  display: none;
}
@media (max-width: 991px) {
  .footer__area .widget--head i {
    display: block;
  }
}
.footer__area .widget--content {
  margin-top: 16px;
}
@media (max-width: 991px) {
  .footer__area .widget--content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
}
.footer__area .widget--content p {
  font-size: clamp(16px, 3vw, 20px);
  color: #3E4871;
  line-height: 28px;
  font-weight: 500;
}
.footer__area .widget--content .line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
}
.footer__area .widget--content .line h6 {
  color: #EB222D;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 500;
}
.footer__area .widget--content .line a {
  font-size: clamp(16px, 3vw, 18px);
  color: #3E4871;
  line-height: 28px;
  text-decoration: none;
  font-weight: 500;
}
.footer__area .widget--content .social h6 {
  margin-bottom: 16px;
  color: #EB222D;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}
.footer__area .widget--content .social .items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.footer__area .widget--content .social .items a {
  text-decoration: none;
  color: #EB222D;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-items: center;
  border-radius: 8px;
  background-color: rgba(235, 34, 45, 0.1);
  transition: background ease-in 0.4s;
}
.footer__area .widget--content .social .items a i {
  margin: 0 auto;
}
.footer__area .widget--content .social .items a:hover {
  color: #ffffff;
  background-color: #eb222d;
  transition: background ease-in 0.4s;
}

.copyright {
  text-align: center;
  padding: 24px 0;
}
.copyright p {
  text-align: center;
  font-size: clamp(14px, 3vw, 16px);
  color: #3E4871;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.copyright p img {
  height: 32px;
  margin: 0 4px;
}
.copyright small {
  color: #99A2C6;
}
.copyright small a {
  color: rgb(255, 200, 0);
}
.copyright small a:last-child {
  color: #f0b670;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}
@keyframes shadow-pulse-big {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: 0 0 0 70px rgba(0, 0, 0, 0);
  }
}
.notif-whatsapp {
  background-color: #08c718;
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  bottom: 24px;
  left: 0.88em;
  border-radius: 100px;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
  animation: shadow-pulse 1s infinite;
  display: flex;
  align-content: center;
  justify-content: center;
}

.notif-whatsapp .icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 16px;
}

.notif-whatsapp .icon a span {
  padding-left: 8px;
  font-weight: 600;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1499px) {
  .container {
    max-width: 1320px;
    margin: 0 auto;
  }
}
@media (max-width: 1399px) {
  .container {
    max-width: 100%;
    padding: 0 64px;
  }
}
@media (max-width: 1299px) {
  .container {
    max-width: 1140px;
    padding: 0 32px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
@media (max-width: 400px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
.fronty--btn {
  height: 40px;
  min-width: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  padding: 0 32px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border: none;
  font-size: clamp(14px, 3vw, 16px);
}
@media (max-width: 676px) {
  .fronty--btn {
    padding: 16px 16px;
    height: auto;
  }
}
.fronty--btn span {
  margin: 0 8px;
}

.primary {
  background-color: #EB222D !important;
  border: none;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 45px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  text-decoration: none;
}
.primary:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #231F20;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.primary:hover {
  color: #fff !important;
}
.primary:hover:after {
  left: 0;
  width: 100%;
}
.primary:active {
  top: 2px;
}

.primary--outlined {
  background: white !important;
  border: 1px solid #eb222d !important;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 45px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  color: #EB222D;
}
.primary--outlined:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #EB222D;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.primary--outlined:hover {
  color: #ffffff !important;
  border: 1px solid #eb222d !important;
}
.primary--outlined:hover:after {
  left: 0;
  width: 100%;
}
.primary--outlined:active {
  top: 2px;
}

.second {
  background: #FAD22D;
  border: none;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 45px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  color: #231F20;
}
@media (max-width: 676px) {
  .second {
    min-width: auto;
    height: auto;
  }
}
.second:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #EB222D;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.second:hover {
  color: #fff;
}
.second:hover:after {
  left: 0;
  width: 100%;
}
.second:active {
  top: 2px;
}

.tertiary {
  background: #231f20 !important;
  border: 1px solid #231f20 !important;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 45px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  color: #ffffff;
}
.tertiary:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #FAD22D;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.tertiary:hover {
  color: #231F20 !important;
}
.tertiary:hover:after {
  left: 0;
  width: 100%;
}
.tertiary:active {
  top: 2px;
}

.tertiary--outlined {
  background: white !important;
  border: 1px solid #231f20 !important;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 45px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  color: #231F20;
}
.tertiary--outlined:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #231F20;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.tertiary--outlined:hover {
  color: #ffffff !important;
  border: 1px solid #231f20 !important;
}
.tertiary--outlined:hover:after {
  left: 0;
  width: 100%;
}
.tertiary--outlined:active {
  top: 2px;
}

.disabled {
  background: rgba(153, 162, 198, 0.1) !important;
  border: none;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 50px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  color: #99A2C6;
  cursor: not-allowed;
}
@media (max-width: 676px) {
  .disabled {
    min-width: auto;
    height: auto;
  }
}
.disabled:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: rgba(153, 162, 198, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.disabled:hover {
  color: #99A2C6 !important;
}
.disabled:hover:after {
  left: 0;
  width: 100%;
}
.disabled:active {
  top: 2px;
}

.forth {
  background: rgba(250, 210, 45, 0.1) !important;
  border: 1px solid #fad22d !important;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 50px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  color: #FAD22D;
}
@media (max-width: 676px) {
  .forth {
    min-width: auto;
    height: auto;
  }
}
.forth:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #FAD22D;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.forth:hover {
  color: #ffffff !important;
}
.forth:hover:after {
  left: 0;
  width: 100%;
}
.forth:active {
  top: 2px;
}

.danger-btn {
  background: rgba(242, 73, 90, 0.1) !important;
  border: none;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 50px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  color: #f2495a;
}
@media (max-width: 676px) {
  .danger-btn {
    min-width: auto;
    height: auto;
  }
}
.danger-btn:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #f2495a;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.danger-btn:hover {
  color: #ffffff !important;
}
.danger-btn:hover:after {
  left: 0;
  width: 100%;
}
.danger-btn:active {
  top: 2px;
}

.fifth {
  background: rgba(250, 222, 198, 0.08) !important;
  border: none;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 40px;
  width: 40px;
  padding: 8px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  color: #fadec6;
}
@media (max-width: 676px) {
  .fifth {
    min-width: auto;
    height: auto;
  }
}
.fifth:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #fadec6;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.fifth:hover {
  color: #ffffff !important;
}
.fifth:hover:after {
  left: 0;
  width: 100%;
}
.fifth:active {
  top: 2px;
}

.white-btn {
  background: transparent !important;
  border: 1px solid white;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  color: #ffffff;
}
@media (max-width: 676px) {
  .white-btn {
    min-width: auto;
    height: auto;
  }
}
.white-btn:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #ffffff;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.white-btn:hover {
  color: #EB222D !important;
}
.white-btn:hover:after {
  left: 0;
  width: 100%;
}
.white-btn:active {
  top: 2px;
}

.whatsapp {
  background: #22d0c0 !important;
  border: none;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 40px;
  width: 40px;
  padding: 8px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  color: #ffffff;
}
@media (max-width: 676px) {
  .whatsapp {
    min-width: auto;
    height: auto;
  }
}
.whatsapp:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #22D0C0;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.whatsapp:hover {
  color: #ffffff !important;
}
.whatsapp:hover:after {
  left: 0;
  width: 100%;
}
.whatsapp:active {
  top: 2px;
}

.btn--height-60 {
  height: 60px;
}

.btn--height-50 {
  height: 50px;
}

.btn--height-32 {
  height: 32px;
  font-size: 14px !important;
}

.btn--height-40 {
  height: 40px;
  font-size: 14px !important;
}

.btn--height-40-40 {
  height: 40px;
  width: 40px;
}

.btn--height-50-50 {
  height: 50px !important;
  width: 50px !important;
  padding: 0;
}

.btn--full {
  width: 100%;
}

.btn--half {
  width: 30%;
}

.btn--grow {
  width: -moz-fit-content;
  width: fit-content;
  flex-grow: 1;
}

.btn--max {
  width: -moz-max-content;
  width: max-content;
}

.btn--min {
  min-width: 180px !important;
}

.box__item {
  padding: 32px;
  border-radius: 16px;
  background-color: #f5f8ff;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .box__item {
    padding: 16px;
  }
}
.box__item .media {
  margin-bottom: 8px;
}
.box__item .media img {
  height: 220px;
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.box__item .circle img {
  height: 150px;
  width: 150px;
  border-radius: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.box__item h3 {
  padding: 24px 0;
  font-size: clamp(32px, 3vw, 40px);
  line-height: clamp(32px, 3vw, 64px);
  font-weight: 600;
  margin-bottom: 0;
  color: #231F20;
}
.box__item .subtitle {
  font-size: clamp(18px, 3vw, 24px);
}
.box__item p {
  margin-top: 12px;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 32px;
  margin-bottom: 32px;
}
.box__item .list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  height: 210px;
  overflow-y: scroll;
}
@media (max-width: 991px) {
  .box__item .list {
    height: 200px;
  }
}
.box__item .list i {
  font-size: 8px;
  color: #FAD22D;
}
.box__item .list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
}
.box__item .action {
  flex-grow: 1;
  width: 100%;
}
.box__item.center {
  text-align: center !important;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-wrapper .faq-item {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-wrapper .faq-item:last-child {
  margin-bottom: 0;
}
.faq-wrapper .faq-item .faq-question {
  padding: 16px;
  cursor: pointer;
  background-color: rgba(250, 210, 45, 0.06);
  border: 1px solid rgb(250, 210, 45);
  color: #231F20;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-wrapper .faq-item .faq-question i {
  color: #EB222D;
}
.faq-wrapper .faq-item .faq-question:hover {
  background-color: rgba(250, 210, 45, 0.2);
}
.faq-wrapper .faq-item .faq-answer {
  padding: 24px 16px;
  display: none;
  border-radius: 8px;
  background-color: white;
  border: 1px solid rgb(250, 210, 45);
}
.faq-wrapper .faq-item .faq-answer ul {
  list-style: square;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-wrapper .faq-item .faq-answer ul,
.faq-wrapper .faq-item .faq-answer ol {
  padding-left: 24px !important;
  margin: 16px 0;
}
.faq-wrapper .faq-item.active .faq-answer {
  display: block;
}
.faq-wrapper .faq-item.active .faq-question {
  background-color: rgba(250, 210, 45, 0.1);
}

.block__one .text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.block__one .image {
  height: 100%;
}
.block__one .image img {
  height: 100%;
  width: 100%;
  border-radius: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}

.block__two {
  background-color: #f5f8ff;
  border-radius: 16px;
  padding: 40px 24px;
}
.block__two .text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.block__two .text p {
  text-align: center;
}

.block__three .box {
  margin-bottom: 40px;
}
.block__three .box:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .block__three .box {
    text-align: center;
  }
}
.block__three .text {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 991px) {
  .block__three .text {
    text-align: center;
    align-items: center;
  }
}
.block__three .text h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
}
.block__three .text p {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .block__three .text p {
    text-align: center;
  }
}
.block__three .image img {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .block__three .image img {
    width: 70%;
    margin: auto;
  }
}

.block__four {
  background-color: #f5f8ff;
  border-radius: 16px;
  padding: 40px 24px;
}
.block__four .box {
  margin-bottom: 40px;
}
.block__four .box:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .block__four .box {
    text-align: center;
  }
}
.block__four .text {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 991px) {
  .block__four .text {
    text-align: center;
    align-items: center;
  }
}
.block__four .text h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
}
.block__four .text p {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .block__four .text p {
    text-align: center;
  }
}
.block__four .image img {
  height: 100px;
  width: 100px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .block__four .image img {
    height: 100px;
    width: 100px;
    margin: auto;
  }
}

.bg--light {
  background-color: #f5f8ff;
}

.bg--light2 {
  background-color: rgba(245, 248, 255, 0.6);
}

.grid-8-4 {
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 16px;
}
@media (max-width: 1199px) {
  .grid-8-4 {
    grid-template-columns: 1fr 30%;
  }
}
@media (max-width: 991px) {
  .grid-8-4 {
    grid-template-columns: 1fr;
    flex-direction: column-reverse;
    display: flex;
  }
}

.grid--center {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .grid--center {
    width: 100%;
  }
}

.grid-4-8 {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 16px;
}
@media (max-width: 1199px) {
  .grid-4-8 {
    grid-template-columns: 30% 1fr;
  }
}
@media (max-width: 991px) {
  .grid-4-8 {
    grid-template-columns: 1fr;
    flex-direction: column-reverse;
    display: flex;
  }
}

.grid-7-5 {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 16px;
}
@media (max-width: 1199px) {
  .grid-7-5 {
    grid-template-columns: 1fr 50%;
  }
}
@media (max-width: 991px) {
  .grid-7-5 {
    grid-template-columns: 1fr;
  }
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 16px;
}
@media (max-width: 1199px) {
  .grid-1-2 {
    grid-template-columns: 1fr 50%;
  }
}
@media (max-width: 991px) {
  .grid-1-2 {
    grid-template-columns: 1fr;
  }
}

.grid-5-7 {
  display: grid;
  grid-template-columns: 1fr 60%;
  gap: 16px;
}
@media (max-width: 991px) {
  .grid-5-7 {
    grid-template-columns: 1fr;
    flex-direction: column-reverse;
    display: flex;
  }
}

.grid-1-11 {
  display: grid;
  grid-template-columns: 10% 1fr;
  gap: 16px;
}
@media (max-width: 1199px) {
  .grid-1-11 {
    grid-template-columns: 20% 1fr;
  }
}
@media (max-width: 991px) {
  .grid-1-11 {
    grid-template-columns: 1fr;
  }
}

.hero__sectiosn {
  margin-top: 16px;
  margin-bottom: 60px;
  position: relative;
  border-radius: 24px;
  z-index: -1;
}
.hero__sectiosn--image {
  height: 560px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media (max-width: 991px) {
  .hero__sectiosn--image {
    height: 460px;
  }
}
.hero__sectiosn--overlay {
  background-image: linear-gradient(to left, rgba(235, 34, 45, 0.4), rgba(250, 210, 45, 0.4));
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 24px;
  z-index: 1;
}
.hero__sectiosn--caption {
  position: absolute;
  right: 10%;
  left: 10%;
  bottom: 6%;
  margin: auto;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  animation-duration: 1s;
  animation-delay: 2s;
}
@media (max-width: 767px) {
  .hero__sectiosn--caption {
    right: 4%;
    left: 4%;
    padding: 0;
  }
}
.hero__sectiosn--caption .img {
  height: 28px;
}
.hero__sectiosn--caption--title {
  --minFontSize: 24px;
  --maxFontSize: 36px;
  --scaler: 4vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  padding: 16px 0 0;
  color: #ffffff;
  animation-duration: 1s;
  animation-delay: 1.5s;
  font-weight: 700;
  line-height: clamp(40px, 5vw, 56px);
  margin-bottom: 0;
}
.hero__sectiosn--caption--subtitle {
  --minFontSize: 16px;
  --maxFontSize: 20px;
  --scaler: 4vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  font-weight: 400;
  animation-duration: 0.5s;
  animation-delay: 1.4s;
  color: #ffffff;
  line-height: 32px;
  margin-bottom: 0;
}
.hero__sectiosn--caption--actions {
  display: flex;
  align-items: center;
  justify-content: center;
  animation-duration: 1s;
  animation-delay: 2.2s;
  margin: 16px 0 8px;
}

.hero__section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__section--item {
  position: relative;
}
.hero__section--image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2/1;
  height: calc(100vh - 100px);
}
@media (max-width: 991px) {
  .hero__section--image {
    height: calc(80vh - 0px);
    aspect-ratio: 2/1;
  }
}
@media (max-width: 767px) {
  .hero__section--image {
    height: 360px;
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.hero__section--caption {
  position: absolute;
  right: 6%;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 16px 16px;
  text-align: left;
  animation-duration: 1s;
  animation-delay: 2s;
  width: 40%;
}
@media (max-width: 991px) {
  .hero__section--caption {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .hero__section--caption {
    width: 100%;
    right: 0%;
    position: static;
    padding: 24px 16px;
    background: linear-gradient(to bottom, #FAD22D, #fdb814);
    border-top: 6px solid;
    -o-border-image: linear-gradient(to right, #EB222D, #FAD22D 40%);
       border-image: linear-gradient(to right, #EB222D, #FAD22D 40%);
    border-image-slice: 1;
    align-items: center;
    text-align: center;
    height: 300px;
  }
}
.hero__section--caption svg {
  margin-bottom: 24px;
}
.hero__section--caption--title {
  --minFontSize: 32px;
  --maxFontSize: 72px;
  --scaler: 4vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  color: #ffffff;
  animation-duration: 1s;
  animation-delay: 1.5s;
  font-weight: 500;
  line-height: clamp(40px, 4vw, 72px);
  margin-bottom: 16px;
}
.hero__section--caption--subtitle {
  --minFontSize: 20px;
  --maxFontSize: 32px;
  --scaler: 4vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  font-weight: 400;
  animation-duration: 0.5s;
  animation-delay: 1.4s;
  color: #ffffff;
  line-height: clamp(24px, 4vw, 32px);
  margin-bottom: 0;
}
.hero__section--caption--actions {
  display: flex;
  align-items: center;
  justify-content: center;
  animation-duration: 1s;
  animation-delay: 2.2s;
  margin-top: 16px;
}

.--right--bg {
  -o-object-position: left;
     object-position: left;
}

.--left--bg {
  -o-object-position: right;
     object-position: right;
}

.--right {
  right: 10%;
  left: auto;
}
@media (max-width: 767px) {
  .--right {
    right: 0%;
  }
}

.--left {
  left: 10%;
  right: auto;
}
@media (max-width: 767px) {
  .--left {
    left: 0%;
    background: linear-gradient(to bottom, #FAD22D, #fdb814);
    border-top: 6px solid;
    -o-border-image: linear-gradient(to right, #FAD22D 30%, #EB222D);
       border-image: linear-gradient(to right, #FAD22D 30%, #EB222D);
    border-image-slice: 1;
  }
}

.page__area--items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .page__area--items {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}
@media (max-width: 767px) {
  .page__area--items {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.page__area--item {
  background-color: #f5f8ff;
  border-radius: 16px;
  padding: 16px;
  width: 100%;
  border: 1.5px solid rgba(153, 162, 198, 0.1);
}
.page__area--item .image {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.page__area--item .image img {
  width: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}
.page__area--item .title {
  padding: 16px 0 0;
  text-align: center;
}
.page__area--item .title h3 {
  font-size: clamp(18px, 3vw, 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  line-height: 32px;
  font-weight: 600;
  color: #231F20;
  text-align: center;
}
.page__area--item .title p {
  color: #3E4871;
  font-size: clamp(12px, 3vw, 14px);
  margin-top: 16px;
}
.page__area--item:hover {
  border: 1.5px solid rgba(235, 34, 45, 0.2);
  transition: border 1s ease, background 1s ease;
  -ms-transition: border 1s ease, background 1s ease;
}
.page__area--item:hover .image img {
  transform: scale(1.12) rotate(1deg);
  transition: transform 1s ease;
  -ms-transition: transform 1s ease;
}
.page__area--single {
  padding: clamp(16px, 3vw, 24px);
  background-color: #f5f8ff;
  width: 70%;
  border-radius: 8px;
  margin: auto;
}
@media (max-width: 1199px) {
  .page__area--single {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .page__area--single {
    width: 100%;
  }
}
.page__area--head img {
  min-height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
.page__area--body {
  margin-bottom: 24px;
}
.page__area--body--title {
  color: #231F20;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: clamp(32px, 3vw, 56px);
  padding: 24px 0;
}
.page__area--body .list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.page__area--body .list i {
  font-size: 8px;
  color: #FAD22D;
}
.page__area--body .list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-size: clamp(16px, 3vw, 20px);
  line-height: clamp(24px, 3vw, 28px);
}
.page__area--body .paragraph--main > * {
  font-size: clamp(18px, 3vw, 24px) !important;
  line-height: clamp(32px, 3vw, 48px) !important;
  color: #231F20;
}
.page__area--body .paragraph--main > * p {
  font-size: clamp(18px, 3vw, 24px) !important;
  line-height: clamp(32px, 3vw, 48px) !important;
  color: #231F20;
}
.page__area--body .paragraph--main > * ul {
  padding-left: 24px;
  line-height: clamp(32px, 3vw, 48px) !important;
}
.page__area--body img {
  border-radius: 16px;
  padding: 8px;
  width: -moz-max-content;
  width: max-content;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .page__area--body img {
    width: 100%;
  }
}
.page__area--nextPrev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.page__area--nextPrev .item {
  background-color: white;
  border: 1px solid rgba(35, 31, 32, 0.2);
  padding: 12px 16px;
  border-radius: 6px;
  flex-grow: 1;
  width: 42%;
  text-align: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 800px) {
  .page__area--nextPrev .item {
    width: 49%;
    height: auto;
  }
}
.page__area--nextPrev .item .a {
  text-decoration: none;
  color: #231F20 !important;
  font-size: 18px;
}
.page__area--nextPrev .item p {
  margin-bottom: 0;
}
.page__area--nextPrev .txt--right {
  text-align: right;
}

.blog--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 1199px) {
  .blog--grid {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}
@media (max-width: 991px) {
  .blog--grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.sectors__area {
  margin-bottom: 60px;
}
.sectors__area--item {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .sectors__area--item {
    height: 260px;
  }
}
@media (max-width: 500px) {
  .sectors__area--item {
    height: 200px;
  }
}
.sectors__area--item a {
  text-decoration: none;
}
.sectors__area--item img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform ease-in 0.5s;
  z-index: 0;
}
.sectors__area--item .overlay {
  position: absolute;
  border-radius: 16px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(235, 34, 45, 0.6);
  z-index: 1;
}
.sectors__area--item .title {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  transition: background ease-in 0.2s;
  height: 50px;
  z-index: 2;
}
@media (max-width: 991px) {
  .sectors__area--item .title {
    width: 90%;
    padding: 16px 16px;
    bottom: 16px;
  }
}
.sectors__area--item .title h3 {
  margin-bottom: 0;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  color: #3E4871;
  text-align: center;
}
.sectors__area--item:hover img {
  transform: scale(1.2);
  transition: transform ease-in 0.5s;
  z-index: 0;
}
.sectors__area--item:hover .title {
  z-index: 2;
}
.sectors__area--item:hover .title h3 {
  color: #FAD22D;
}
.sectors__area--item:hover .overlay {
  z-index: 1;
}

.--yellow {
  background-color: rgba(248, 212, 114, 0.6) !important;
}

.--orange {
  background-color: rgba(236, 147, 109, 0.6) !important;
}

.--green {
  background-color: rgba(34, 208, 192, 0.6) !important;
}

.--blue {
  background-color: rgba(104, 185, 249, 0.6) !important;
}

.bg--main {
  background-color: #eb222d;
}

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

.bg--orange {
  background-color: #ec936d;
}

.bg--green {
  background-color: #22d0c0;
}

.bg--blue {
  background-color: #68b9f9;
}

.custom--alert--success {
  background-color: rgba(0, 177, 102, 0.2);
  border: 1px solid #00B166;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 16px 0;
  color: #00814b;
}
.custom--alert--success svg {
  margin-right: 16px;
}

.custom--alert--danger {
  background-color: rgba(234, 70, 70, 0.2);
  border: 1px solid #EA4646;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 16px 0;
  color: #8f1d1d;
}
.custom--alert--danger svg {
  margin-right: 16px;
}
.custom--alert--danger ul {
  margin-left: 24px;
}
.custom--alert--danger ul li {
  color: #8f1d1d;
}

.tabbed .tab-content {
  padding: 48px 0;
  border-radius: 8px;
  width: 100%;
}
@media (max-width: 991px) {
  .tabbed .tab-content {
    width: 100%;
    padding: 32px 0;
  }
}
.tabbed .tab-content .item {
  margin-bottom: 32px;
}
.tabbed .tab-content .item:last-child {
  margin-bottom: 0;
}
.tabbed .tab-content .item ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tabbed .tab-content .item ul li {
  font-size: clamp(16px, 3vw, 18px);
  line-height: clamp(24px, 3vw, 32px);
  color: #231F20;
}
.tabbed .p-0-24 {
  padding: 32px 24px;
}
@media (max-width: 991px) {
  .tabbed .p-0-24 {
    padding: 24px 16px;
  }
}

.tabbed [type=radio] {
  display: none;
}

.tabs--nav {
  display: flex;
  align-items: stretch;
  list-style: none;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .tabs--nav {
    margin-bottom: 16px;
    padding: 16px 8px;
    /* overflow-x: auto; */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
  }
}
.tabs--nav .tab {
  flex-grow: 1;
}
.tabs--nav .tab label {
  padding: 24px 16px;
  box-shadow: rgba(165, 173, 182, 0.2) 0px 8px 24px;
  border-radius: 8px;
  background: #ffffff;
  border-bottom: 4px solid transparent;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #231F20;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
@media (max-width: 991px) {
  .tabs--nav .tab label {
    padding: 16px 16px;
  }
}
.tabs--nav .tab:hover label {
  border-bottom: 4px solid #EB222D;
  color: #EB222D;
}

.tab-content {
  display: none;
}

.tabbed [type=radio]:nth-of-type(1):checked ~ .tabs--nav .tab:nth-of-type(1) label,
.tabbed [type=radio]:nth-of-type(2):checked ~ .tabs--nav .tab:nth-of-type(2) label,
.tabbed [type=radio]:nth-of-type(3):checked ~ .tabs--nav .tab:nth-of-type(3) label,
.tabbed [type=radio]:nth-of-type(4):checked ~ .tabs--nav .tab:nth-of-type(4) label,
.tabbed [type=radio]:nth-of-type(5):checked ~ .tabs--nav .tab:nth-of-type(5) label {
  border-color: #EB222D;
  color: #EB222D;
}

.tabbed [type=radio]:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
.tabbed [type=radio]:nth-of-type(2):checked ~ .tab-content:nth-of-type(2),
.tabbed [type=radio]:nth-of-type(3):checked ~ .tab-content:nth-of-type(3),
.tabbed [type=radio]:nth-of-type(4):checked ~ .tab-content:nth-of-type(4) {
  display: block;
}

.h-img {
  width: 100%;
}

.about__area {
  background-color: #EB222D;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
  margin-bottom: 60px;
}
.about__area .video--image {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px;
}
.about__area .video--image img {
  width: 100%;
  border-radius: 16px;
  border: 4px solid #f5f8ff;
  height: 360px;
}
@media (max-width: 767px) {
  .about__area .video--image img {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .about__area .video--image {
    padding: 0px;
  }
}
.about__area .video--image button {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  right: 0;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background-color: #ffffff;
  color: #FAD22D;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.annonces__area {
  background-color: #ffffff;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
  margin-bottom: 60px;
}
.annonces__area .item {
  background-color: #ffffff;
  border: 1px solid rgba(153, 162, 198, 0.2);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 120px;
}
.annonces__area .item .media {
  height: 100px;
  width: 100px;
  overflow: hidden;
  margin-right: 16px;
}
.annonces__area .item .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.annonces__area .item .content {
  width: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-direction: column;
  height: 100%;
}
.annonces__area .item .content h3 {
  margin-bottom: 8px;
  color: #3E4871;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
}
.annonces__area .item .content .action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.annonces__area .item .content .action span {
  color: #99A2C6;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 400;
}

.testmoinals__area {
  background-color: #FAD22D;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
  margin-bottom: 60px;
}
.testmoinals__area--item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
}
.testmoinals__area--item--image {
  position: relative;
  width: 100%;
  height: 100%;
}
.testmoinals__area--item--image img {
  width: 100%;
  border-radius: 10px;
  height: 260px;
}
.testmoinals__area--item--image button {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  right: 0;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #ffffff;
  color: #FAD22D;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.testmoinals__area--item--title {
  padding-top: 16px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testmoinals__area--item--title h4 {
  margin-bottom: 0;
  font-size: 16px;
  color: #3E4871;
  text-align: center;
  line-height: 24px;
  font-weight: 600;
}

.hidden {
  display: none;
}

.cours__area {
  margin: 16px 0 60px 0;
}
.cours__area .--bg-1 {
  background-color: #ffffff;
  border: 1px solid #ecf7ff;
}
.cours__area .--bg-2 {
  background-color: rgb(226, 242, 255);
  border: 1px solid rgb(188, 225, 255);
}
.cours__area .--bg-3 {
  background-color: #d5fff2;
  border: 1px solid #a9ffe4;
}
.cours__area .--bg-4 {
  background-color: #fffaca;
  border: 1px solid rgb(255, 244, 161);
}
.cours__area .--bg-5 {
  background-color: #f1ebff;
  border: 1px solid #dcceff;
}
.cours__area .--bg-6 {
  background-color: #fdeaff;
  border: 1px solid #fbccff;
}
.cours__area .card--item {
  border-radius: 16px;
  padding: 16px;
  text-align: left;
}
.cours__area .card--item h3 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  color: #231f20;
  margin-bottom: 8px;
}
.cours__area .card--item .details {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767px) {
  .cours__area .card--item .details {
    justify-content: center;
  }
}
.cours__area .card--item .details .badge {
  background-color: rgba(235, 34, 45, 0.08);
  border-radius: 8px;
  padding: 8px 16px;
  color: #EB222D;
  font-size: 16px;
  font-weight: 600;
}
.cours__area .card--item p {
  margin-bottom: 0;
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 400;
  color: #3E4871;
  line-height: 24px;
}
.cours__area .card--item ul {
  padding-left: 0;
  list-style: none;
}
.cours__area .card--item ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.cours__area .card--item ul li:last-child {
  margin-bottom: 0;
}
.cours__area .card--item ul li i {
  margin-right: 8px;
  color: #FAD22D;
}
.cours__area .card--item ul li span {
  color: #3E4871;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
}
.cours__area .item--check {
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid rgba(62, 72, 113, 0.2);
}
.cours__area .item--check h3 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  color: #231f20;
  margin-bottom: 8px;
}
.cours__area .item--check .details {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767px) {
  .cours__area .item--check .details {
    justify-content: center;
  }
}
.cours__area .item--check .details .badge {
  background-color: rgba(235, 34, 45, 0.08);
  border-radius: 8px;
  padding: 8px 16px;
  color: #EB222D;
  font-size: 16px;
  font-weight: 600;
}
.cours__area .item--check ul {
  padding-left: 0;
  list-style: none;
}
.cours__area .item--check ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.cours__area .item--check ul li:last-child {
  margin-bottom: 0;
}
.cours__area .item--check ul li i {
  margin-right: 8px;
  color: #FAD22D;
}
.cours__area .item--check ul li span {
  color: #3E4871;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
}
.cours__area .item--check .button {
  width: 100%;
  height: 40px;
  position: relative;
  background: rgba(250, 210, 45, 0.08);
  border: 1px solid #FAD22D;
  cursor: pointer;
  border-radius: 8px;
}
.cours__area .item--check .button label,
.cours__area .item--check .button input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cours__area .item--check .button input[type=radio],
.cours__area .item--check .button input[type=checkbox] {
  opacity: 0.011;
  z-index: 1;
  background: rgba(250, 210, 45, 0.08);
  border: 1px solid #FAD22D;
}
.cours__area .item--check .button input[type=radio]:checked + label,
.cours__area .item--check .button input[type=checkbox]:checked + label {
  background: #FAD22D;
  border-radius: 8px;
  color: #ffffff;
}
.cours__area .item--check .button label {
  cursor: pointer;
  z-index: 0;
  color: #FAD22D;
  font-weight: 600;
}
.cours__area .card--certif {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 16px;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(224, 224, 224, 0.2) 0px 0px 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .cours__area .card--certif {
    padding: 16px 16px;
  }
}
.cours__area .card--certif img {
  height: 120px;
  width: auto;
  margin-bottom: 32px;
}
.cours__area .card--certif h4 {
  color: #FAD22D;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 24px;
}
.cours__area .card--certif p {
  margin-bottom: 0;
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 400;
  color: #3E4871;
  line-height: 24px;
}
.cours__area .dates__area {
  text-align: left;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: rgba(224, 224, 224, 0.2) 0px 0px 10px;
}
.cours__area .dates__area h3 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  color: #231f20;
  margin-bottom: 16px;
}
.cours__area .actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cours__area .actions a {
  flex-grow: 1;
}

.row__area {
  margin: 60px 0;
}
.row__area .head {
  margin-bottom: 16px;
}
.row__area .head h3 {
  font-size: clamp(16px, 3vw, 24px);
  line-height: clamp(24px, 3vw, 38px);
  color: #EB222D;
  font-weight: 700;
}

.image__border {
  position: relative;
  text-align: left;
  border-radius: 16px;
  transition: border ease-in 0.4s;
}
.image__border::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6%;
  background-color: transparent;
  border: 1px solid #FAD22D;
  border-radius: 16px;
  height: 380px;
  width: 96%;
  z-index: -1;
}
.image__border:hover::after {
  border: 1px solid #EB222D;
  transition: border ease-in 0.4s;
}
.image__border img {
  height: 380px;
  width: 96%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
  z-index: 0;
  transition: transform ease-in 0.4s;
}
.image__border img:hover {
  transform: scale(1.02);
  transition: transform ease-in 0.4s;
}

.image__border--right {
  position: relative;
  text-align: right;
  border-radius: 16px;
  transition: border ease-in 0.4s;
}
.image__border--right::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6%;
  background-color: transparent;
  border: 1px solid #FAD22D;
  border-radius: 16px;
  height: 380px;
  width: 96%;
  z-index: -1;
}
.image__border--right:hover::after {
  border: 1px solid #EB222D;
  transition: border ease-in 0.4s;
}
.image__border--right img {
  height: 380px;
  width: 96%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
  z-index: 0;
  transition: transform ease-in 0.4s;
}
.image__border--right img:hover {
  transform: scale(1.02);
  transition: transform ease-in 0.4s;
}

.form__book {
  margin-top: 16px;
  background-color: #ffffff;
  border: 1px solid rgba(153, 162, 198, 0.5);
  border-radius: 8px;
  padding: 16px;
  text-align: flex-start;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.form__book .form--wrap {
  width: 100%;
}
.form__book h3 {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 600;
  color: #231f20;
  margin-bottom: 16px;
}

.checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checks .item input[type=radio] {
  position: absolute;
  opacity: 0;
}
.checks .item {
  cursor: pointer;
  width: 100%;
}
.checks .item:last-child {
  margin-bottom: 0;
}
.checks .item .plan-content {
  display: flex;
  padding: 16px;
  background: rgba(245, 248, 255, 0.5);
  border: 1px solid rgba(153, 162, 198, 0.4);
  border-radius: 10px;
  transition: box-shadow 0.4s;
  position: relative;
}
.checks .item .plan-content .plan-details {
  text-align: left;
  padding-left: 0;
}
.checks .item .plan-content .plan-details span {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  color: #231f20;
}
.checks .item .plan-content .plan-details p {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 500;
  color: #3e4871;
  margin-bottom: 0;
  margin-top: 8px;
}
.checks .item .plan-content:hover {
  box-shadow: 0px 3px 5px 0px #e8e8e8;
}
.checks .item input[type=radio]:checked + .plan-content:after {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  background: #f5f8ff;
  border: 1px solid #EB222D;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  box-shadow: 0px 0px 0px 2px #EB222D;
}
.checks .item input[type=radio]:checked + .plan-content {
  border: 1px solid #eb222d;
  background: rgba(235, 34, 45, 0.04);
  transition: ease-in 0.3s;
}

.grid--2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .grid--2 {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}

.grid--02 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .grid--02 {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.grid--2-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .grid--2-responsive {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}
@media (max-width: 767px) {
  .grid--2-responsive {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.grid--3-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .grid--3-responsive {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}
@media (max-width: 767px) {
  .grid--3-responsive {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.grid--3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
  }
}
@media (max-width: 600px) {
  .grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

.d-flex {
  display: flex;
  gap: 8px;
}

.align--center {
  align-items: center;
}

.align--start {
  align-items: flex-start !important;
}

.align--end {
  align-items: end;
}

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

.flex--grow-1 {
  flex-grow: 1;
}

.justify--end {
  justify-content: flex-end;
}

.justify--between {
  justify-content: space-between;
}

.justify--start {
  justify-content: flex-start;
}

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

.checkout__area .heading {
  margin-bottom: 24px;
}
.checkout__area .heading img {
  height: 160px;
}
.checkout__area .heading h3 {
  font-size: clamp(16px, 3vw, 24px);
  color: #231F20;
  font-weight: 500;
}
.checkout__area .heading h3 span {
  font-size: clamp(14px, 3vw, 18px);
  color: #3E4871;
}
.checkout__area--box {
  background-color: #f5f8ff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(153, 162, 198, 0.4);
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .checkout__area--box {
    width: 100%;
  }
}
.checkout__area--box .checkout--calc {
  background-color: #ffffff;
  border: 1px solid rgba(153, 162, 198, 0.2);
}
.checkout__area--box .checkout--item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
  margin-bottom: 16px;
  background-color: #ffffff;
  border: 1px solid rgba(153, 162, 198, 0.2);
  box-shadow: rgba(206, 206, 206, 0.1) 0px 0px 5px 0px, rgba(214, 214, 214, 0.1) 0px 0px 1px 0px;
  border-radius: 16px;
}
@media (max-width: 700px) {
  .checkout__area--box .checkout--item {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.checkout__area--box .checkout--item--left {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 70%;
}
@media (max-width: 900px) {
  .checkout__area--box .checkout--item--left {
    flex-wrap: wrap;
  }
}
.checkout__area--box .checkout--item--left img {
  width: 120px;
  height: 70px;
  border-radius: 16px;
  border: 1px solid #f5f8ff;
}
.checkout__area--box .checkout--item--left--content {
  margin-left: 16px;
  text-align: left;
}
@media (max-width: 767px) {
  .checkout__area--box .checkout--item--left--content {
    margin-left: 0;
    margin-top: 16px;
  }
}
.checkout__area--box .checkout--item--left--content h3 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 800;
  color: #000000;
  margin-bottom: 0;
}
.checkout__area--box .checkout--item--left--content h3 span {
  color: #99A2C6;
  font-weight: 500;
  font-size: 16px;
}
.checkout__area--box .checkout--item--left--content .date {
  display: flex;
  align-items: center;
  padding: 16px 0 0 0;
  color: #99A2C6;
  font-weight: 500;
  font-size: 16px;
}
.checkout__area--box .checkout--item--left--content .date i {
  padding-right: 8px;
}
.checkout__area--box .checkout--item--left--content .prepa {
  padding-top: 16px;
  color: #EB222D;
  font-size: 16px;
}
.checkout__area--box .checkout--item--right {
  width: 30%;
}
.checkout__area--box .checkout--item--right .price {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  color: #3E4871;
  margin-bottom: 0;
}
.checkout__area--box .checkout--calc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 16px;
  background-color: #ffffff;
  border: 1px solid rgba(153, 162, 198, 0.2);
  box-shadow: rgba(206, 206, 206, 0.1) 0px 0px 5px 0px, rgba(214, 214, 214, 0.1) 0px 0px 1px 0px;
  border-radius: 16px;
}
.checkout__area--box .checkout--calc .left input[type=checkbox], .checkout__area--box .checkout--calc .left input[type=radio] {
  display: none;
}
.checkout__area--box .checkout--calc .left input[type=checkbox] + label,
.checkout__area--box .checkout--calc .left input[type=radio] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  color: #231F20;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.checkout__area--box .checkout--calc .left input[type=radio] + label:last-child,
.checkout__area--box .checkout--calc .left input[type=checkbox] + label:last-child {
  margin-bottom: 0;
}
.checkout__area--box .checkout--calc .left input[type=radio] + label:before,
.checkout__area--box .checkout--calc .left input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid #FAD22D;
  position: absolute;
  border-radius: 50px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  transition: all 0.12s, border-color 0.08s;
}
.checkout__area--box .checkout--calc .left input[type=radio]:checked + label:before,
.checkout__area--box .checkout--calc .left input[type=checkbox]:checked + label:before {
  width: 12px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}
.checkout__area--box .checkout--calc .left label {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  color: #000000;
  margin-bottom: 0;
}
.checkout__area--box .checkout--calc h3 {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  color: #EB222D;
  margin-bottom: 0;
}
.checkout__area--box .checkout--calc .price {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 600;
  color: #EB222D;
  margin-bottom: 0;
}
.checkout__area--box .checkout--calc .total {
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 700;
  color: #EB222D;
  margin-bottom: 0;
}
.checkout__area--box .checkout--bank {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  padding: 16px;
  margin-bottom: 16px;
  background-color: #ffffff;
  border: 1px solid rgba(153, 162, 198, 0.2);
  box-shadow: rgba(206, 206, 206, 0.1) 0px 0px 5px 0px, rgba(214, 214, 214, 0.1) 0px 0px 1px 0px;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .checkout__area--box .checkout--bank {
    justify-content: center;
    flex-direction: column;
  }
}
.checkout__area--box .checkout--bank img {
  width: 120px;
  height: 70px;
  border-radius: 16px;
  border: 1px solid #f5f8ff;
}
@media (max-width: 767px) {
  .checkout__area--box .checkout--bank img {
    width: 220px;
    height: 100px;
    margin-bottom: 16px;
  }
}
.checkout__area--box .checkout--bank--content {
  margin-left: 16px;
  text-align: left;
  width: 80%;
}
@media (max-width: 767px) {
  .checkout__area--box .checkout--bank--content {
    width: 100%;
  }
}
.checkout__area--box .checkout--bank--content h3 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}
.checkout__area--box .checkout--bank--content h3 span {
  color: #99A2C6;
  font-size: 16px;
  letter-spacing: 3px;
}
@media (max-width: 767px) {
  .checkout__area--box .checkout--bank--content h3 span {
    letter-spacing: 0px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .checkout__area--box .checkout--bank--content h3 {
    text-align: center;
  }
}
.checkout__area--box .checkout--bank--content table {
  border: none;
  padding: 4px 0 !important;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .checkout__area--box .checkout--bank--content table {
    font-size: 12px;
  }
}
.checkout__area--box .checkout--bank--content table th {
  color: #99A2C6;
  font-weight: 400;
}
.checkout__area--box .checkout--bank--content table td {
  color: #3E4871;
  font-weight: 600;
}
.checkout__area--box .checkout--bank--content table th,
.checkout__area--box .checkout--bank--content table td {
  border-bottom: none;
  padding: 4px 0;
}

.thanks--area .heading {
  margin-bottom: 24px;
}
.thanks--area .heading h3 {
  font-size: clamp(16px, 3vw, 24px);
  color: #231F20;
  font-weight: 600;
}
.thanks--area .heading p {
  font-size: clamp(14px, 3vw, 16px);
  color: #EB222D;
  margin-bottom: 4px;
}
.thanks--area .heading p b {
  color: rgb(127, 0, 0);
}
.thanks--area .infos {
  margin: 16px 0;
}
.thanks--area .infos p {
  font-size: clamp(14px, 3vw, 16px);
  color: #3E4871;
  margin-bottom: 4px;
  font-weight: 400;
}

.partners__area {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .partners__area {
    margin-bottom: 32px;
    margin-top: 32px;
  }
}
.partners__area--item {
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border ease-in 0.4s;
  padding: 8px;
  height: 160px;
  border: 1px solid rgba(153, 162, 198, 0.2);
  overflow: hidden;
}
@media (max-width: 767px) {
  .partners__area--item {
    height: 100%;
  }
}
.partners__area--item img {
  height: auto;
  border-radius: 4px;
  width: 100%;
  opacity: 1;
  transition: transform ease-in 0.4s;
}
.partners__area--item:hover {
  border: 1px solid rgba(250, 210, 45, 0.4);
  transition: border ease-in 0.4s;
}
.partners__area--item:hover img {
  transform: scale(1.05);
  transition: transform ease-in 0.4s;
}

.shape--hero--right {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 38%;
}
@media (max-width: 800px) {
  .shape--hero--right {
    width: 80%;
  }
}

.shape--hero--left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: auto;
}
@media (max-width: 800px) {
  .shape--hero--left {
    width: 30%;
    display: none;
  }
}

.shape--rh--left {
  position: absolute;
  left: 0;
  top: 25%;
  z-index: -1;
  width: auto;
}
@media (max-width: 800px) {
  .shape--rh--left {
    width: 70%;
  }
}

.pattern--001 {
  background-image: url("/assets/images/patern--03.svg");
}

.pattern--002 {
  background: url("/assets/images/bg.png") 50% repeat;
  position: relative;
}
.pattern--002:before, .pattern--002:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100vw;
  height: 50px;
  margin: 0 calc(-50vw + 50%);
}
.pattern--002:before {
  top: 0;
  background: transparent url("/assets/images/shap01.png") 50% repeat-x;
  background-size: cover;
}
.pattern--002:after {
  bottom: 0;
  background: transparent url("/assets/images/shap01.png") 50% repeat-x;
  background-size: cover;
  transform: rotate(180deg);
}

.pattern--003 {
  background: url("/assets/images/bg.png") 50% repeat;
  position: relative;
}
.pattern--003:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100vw;
  height: 50px;
  margin: 0 calc(-50vw + 50%);
}
.pattern--003:after {
  bottom: 0;
  background: transparent url("/assets/images/shap01.png") 50% repeat-x;
  background-size: cover;
  transform: rotate(180deg);
}

.pattern--004 {
  background: url("/assets/images/bg.png") 50% repeat;
  position: relative;
}
.pattern--004:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100vw;
  height: 50px;
  margin: 0 calc(-50vw + 50%);
}
.pattern--004:before {
  top: 0;
  background: transparent url("/assets/images/shap01.png") 50% repeat-x;
  background-size: cover;
}

.bg--3 {
  background-image: url("/assets/images/right-bg.svg");
  background-size: cover;
  position: relative;
}
.bg--3:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100vw;
  height: 50px;
  margin: 0 calc(-50vw + 50%);
}
.bg--3:after {
  bottom: 0;
  background: transparent url("/assets/images/shap01.png") 50% repeat-x;
  background-size: cover;
  transform: rotate(180deg);
}

.bg-light {
  background-color: rgba(11, 4, 44, 0.02) !important;
}

.bg-green {
  background-image: url("/assets/images/right-bg.svg");
  background-size: cover;
}

.bg-left {
  background-image: url("/assets/images/left-bg.svg");
  background-size: cover;
  position: relative;
}
@media (max-width: 767px) {
  .bg-left {
    background-position: center;
  }
}

.bg-right {
  background-image: url("/assets/images/right-bg.svg");
  background-size: cover;
  position: relative;
}
@media (max-width: 767px) {
  .bg-right {
    background-position: center;
  }
}

.bg--001 {
  background-image: url("/assets/images/bg--01.jpg");
  background-size: cover;
  background-position: 50% 70%;
  background-attachment: scroll;
  height: clamp(250px, 3vw, 200px) !important;
}

.bg--0 {
  background-image: url("/assets/images/alaei-b3.jpg");
  background-size: cover;
  background-position: 50% 70%;
  background-attachment: scroll;
  height: clamp(250px, 3vw, 200px) !important;
}

.bg--002 {
  background-image: url("/assets/images/alaei-b1.jpg");
  background-size: cover;
  background-position: center 22%;
  height: clamp(290px, 3vw, 200px) !important;
}

.bg--003 {
  background-image: url("/assets/images/about/about-3.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  height: clamp(450px, 3vw, 300px) !important;
}
@media (max-width: 767px) {
  .bg--003 {
    background-attachment: initial;
    background-position: center center;
  }
}

.bg--004 {
  background-image: url("/assets/images/bg--01.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  height: clamp(450px, 3vw, 300px) !important;
}
@media (max-width: 767px) {
  .bg--004 {
    background-attachment: initial;
    background-position: 25% center;
  }
}

.b--image {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: auto;
}
@media (max-width: 767px) {
  .b--image {
    text-align: center;
    padding-bottom: 16px;
  }
}
.b--image img {
  border-radius: 16px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s;
}
@media (max-width: 767px) {
  .b--image img {
    width: 70%;
  }
}

.s--image {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px;
  height: auto;
}
.s--image:hover img {
  transform: scale(1.5);
}
.s--image img {
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s;
}

.s2--image {
  width: 80%;
  padding: 12px;
  height: auto;
}

.s--image-2 {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px;
}
.s--image-2:hover img {
  transform: scale(1.5);
}
.s--image-2 img {
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s;
}
@media (max-width: 800px) {
  .s--image-2 {
    width: 200px;
    margin: 0 auto;
  }
}

.s--image--90 {
  width: 90%;
  padding: 12px;
}

.image--random {
  position: relative;
}
.image--random--01 {
  transition: all 0.5s;
  transition-property: transform;
  padding-left: 80px;
}
.image--random--01:hover {
  transform: scale(1.1) rotate(1.5deg) translateY(-12px) translateX(-2px);
}
.image--random--02 {
  position: absolute;
  bottom: -114px;
  left: 7%;
  width: 70%;
  border-radius: 12px;
  transform-origin: left bottom;
  transition: all 0.5s;
  transition-property: transform;
}
.image--random--02:hover {
  transform: scale(1.1) rotate(1.5deg) translateX(12px) translateY(-12px);
}
@media (max-width: 800px) {
  .image--random--02 {
    bottom: -90px;
    left: 4%;
    width: 70%;
  }
}
.image--random--03 {
  position: absolute;
  right: -40px;
  width: 30%;
  border-radius: 12px;
  transition: all 0.5s;
  transition-property: transform;
}
.image--random--03:hover {
  transform: scale(1.15) rotate(-2deg);
}
@media (max-width: 800px) {
  .image--random--03 {
    right: 0;
    width: 35%;
  }
}

.heading__primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.heading__primary h2 {
  color: #231F20;
  font-weight: 600;
  margin-bottom: 0;
  font-size: clamp(32px, 3vw, 54px);
  line-height: clamp(48px, 3vw, 72px);
}
.heading__primary p {
  color: #99A2C6;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 300;
  padding-top: 16px;
}
@media (max-width: 991px) {
  .heading__primary svg {
    height: 8px;
  }
}

.heading__second {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 16px;
}
.heading__second h2 {
  color: #231F20;
  font-weight: 600;
  margin-bottom: 0;
  font-size: clamp(32px, 3vw, 54px);
  line-height: clamp(48px, 3vw, 72px);
}
@media (max-width: 991px) {
  .heading__second {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .heading__second svg {
    height: 8px;
  }
}

.heading__third {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 16px;
}
.heading__third h2 {
  color: #231F20;
  font-weight: 600;
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: clamp(32px, 3vw, 48px);
}
@media (max-width: 991px) {
  .heading__third {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .heading__third svg {
    height: 8px;
  }
}

.heading__subtitle {
  color: #231F20;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: clamp(32px, 3vw, 48px);
}

.heading__medium {
  color: #231F20;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: clamp(20px, 3vw, 24px);
  line-height: clamp(32px, 3vw, 38px);
}

.paragraph--main {
  --minFontSize: 12px;
  --maxFontSize: 16px;
  --scaler: 3vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  font-weight: 400;
  line-height: clamp(28px, 3vw, 38px);
  color: #3E4871;
  padding-bottom: 8px;
  margin-bottom: 0;
  text-align: justify;
}

.paragraph--medium {
  --minFontSize: 14px;
  --maxFontSize: 20px;
  --scaler: 3vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  font-weight: 400;
  line-height: clamp(24px, 3vw, 32px);
  color: #231F20;
  padding-bottom: 8px;
  text-align: justify;
}
@media (max-width: 1366px) {
  .paragraph--medium {
    --minFontSize: 16px;
    --maxFontSize: 20px;
    --scaler: 5vw;
    font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
    line-height: 36px;
  }
}

.paragraph--large {
  --minFontSize: 16px;
  --maxFontSize: 24px;
  --scaler: 3vw;
  font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
  font-weight: 400;
  line-height: 40px;
  color: #231F20;
  padding-bottom: 8px;
  text-align: justify;
}
@media (max-width: 1366px) {
  .paragraph--large {
    --minFontSize: 16px;
    --maxFontSize: 20px;
    --scaler: 5vw;
    font-size: clamp(var(--minFontSize), var(--scaler), var(--maxFontSize));
    line-height: 36px;
  }
}

.section--large {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .section--large {
    padding: 60px 0;
  }
}

.section--medium {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .section--medium {
    padding: 40px 0;
  }
}

.section--small {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .section--small {
    padding: 20px 0;
  }
}

:focus {
  outline: none;
}

.subscribe--input {
  padding: 16px 0;
}
.subscribe--input label {
  color: #99A2C6;
}
.subscribe--input--container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subscribe--input--container i {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  color: #99A2C6;
  opacity: 0.5;
  margin: auto 0;
  line-height: 56px;
}
.subscribe--input--container .button {
  position: absolute !important;
  padding: 0 16px;
  right: 8px;
  top: 0;
  bottom: 0;
  line-height: 56px;
  margin: auto;
  text-transform: capitalize;
}
.subscribe--input--container input {
  height: 56px;
  padding-left: 40px;
  font-weight: 600;
}
.subscribe--input--container ::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 400;
  opacity: 0.7;
}
.subscribe--input--container ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 400;
  opacity: 0.7;
}
.subscribe--input--container :-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-weight: 400;
  opacity: 0.7;
}
.subscribe--input--container ::-ms-input-placeholder { /* Microsoft Edge */
  font-weight: 400;
  opacity: 0.7;
}

.input--col {
  position: relative;
  letter-spacing: 1px;
}
.input--col input {
  width: 100%;
  height: 45px;
  border: 1px solid #ECEFF4;
}

.alert--notice {
  background-color: #FFFAED;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 24px;
}
@media (max-width: 767px) {
  .alert--notice {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.alert--notice p {
  text-align: center;
  color: #3E4871;
  margin-bottom: 0;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
}
.alert--notice .button--simple {
  margin-top: 8px;
}

.alert--notice--success {
  background-color: rgb(220, 255, 220);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert--notice--success p {
  text-align: center;
  color: green;
  margin-bottom: 0;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 500;
  line-height: 28px;
}

.alert--notice--danger {
  background-color: rgb(255, 213, 220);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.alert--notice--danger ul {
  padding: 0;
  padding-left: 24px !important;
}
.alert--notice--danger ul li, .alert--notice--danger p {
  text-align: center;
  color: #f2495a;
  margin-bottom: 0;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 500;
  line-height: 28px;
}

.custom--alert--success {
  background-color: rgba(0, 177, 102, 0.2);
  border: 1px solid #00B166;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 16px 0;
  color: #00814b;
}
.custom--alert--success svg {
  margin-right: 16px;
}

.custom--alert--danger {
  background-color: rgb(255, 220, 220);
  border: 1px solid #EA4646;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 16px 0;
  color: #EA4646;
  text-align: left;
}
.custom--alert--danger svg {
  margin-right: 16px;
}
.custom--alert--danger ul {
  margin-left: 24px;
}
.custom--alert--danger ul li {
  color: #8f1d1d;
}

.width-50 {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .width-50 {
    width: 100%;
  }
}

.border--gray {
  border: 1px solid rgba(153, 162, 198, 0.6);
}

.form--area .heading {
  margin-bottom: 16px;
}
.form--area .heading h4 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  margin-bottom: 4px;
  color: #EB222D;
}
.form--area .verify--text {
  padding: 10px 0;
}
.form--area .verify--text--p {
  text-align: center;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 400;
  color: #99A2C6;
  line-height: 24px;
  margin-bottom: 4px;
}

.form--wrap {
  text-align: center;
}
.form--wrap .group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .form--wrap .group {
    flex-wrap: wrap;
  }
}
.form--wrap .field--input {
  flex-grow: 1;
  margin-right: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  text-align: left;
}
@media (max-width: 700px) {
  .form--wrap .field--input {
    margin-right: 0;
  }
}
.form--wrap .field--input:last-child {
  margin-right: 0;
}
.form--wrap .field--input label {
  color: #231F20;
  font-weight: 400;
  font-size: 14px;
}
.form--wrap .field--input select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 8px;
  height: 50px;
  border-radius: 8px;
  border: 1.2px solid rgba(153, 162, 198, 0.3);
  padding: 0 16px;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  font-size: clamp(20px, 3vw, 24px);
}
.form--wrap .field--input input {
  margin-top: 8px;
  height: 50px;
  border-radius: 8px;
  padding: 0 16px;
  border: 1.2px solid rgba(153, 162, 198, 0.3);
  background-color: rgba(255, 255, 255, 0.8);
  font-size: clamp(20px, 3vw, 24px);
}
.form--wrap .field--input textarea {
  margin-top: 8px;
  border-radius: 8px;
  padding: 8px 16px;
  border: 1.2px solid rgba(153, 162, 198, 0.3);
  background-color: rgba(255, 255, 255, 0.8);
  font-size: clamp(20px, 3vw, 24px);
}
.form--wrap .field--input .checkbox {
  display: flex;
  align-items: center;
}
.form--wrap .field--input .checkbox input {
  margin-top: 0;
  margin-right: 8px;
  height: 40px;
}

@media (max-width: 800px) {
  .subscribe--section--area {
    padding: 20px 0;
  }
}
.subscribe--section--area--icon {
  padding-right: 16px;
  width: 100%;
}
@media (max-width: 900px) {
  .subscribe--section--area--icon {
    padding-right: 0;
    text-align: center;
  }
}

.subscribe--input {
  padding: 24px 0;
}
.subscribe--input--container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subscribe--input--container i {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  color: #99A2C6;
  opacity: 0.5;
  margin: auto 0;
  line-height: 56px;
}
.subscribe--input--container .button--simple {
  position: absolute !important;
  padding: 0 32px;
  right: 8px;
  top: 0;
  height: 45px;
  bottom: 0;
  margin: auto;
  text-transform: capitalize;
}
@media (max-width: 500px) {
  .subscribe--input--container .button--simple {
    padding: 0 16px;
  }
}
.subscribe--input--container input {
  height: 56px;
  padding-left: 40px;
  font-weight: 600;
}
.subscribe--input--container ::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 400;
  opacity: 0.7;
}
.subscribe--input--container ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 400;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .subscribe--input--container ::-moz-placeholder {
    font-size: 12px;
  }
  .subscribe--input--container ::placeholder {
    font-size: 12px;
  }
}
.subscribe--input--container :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-weight: 400;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .subscribe--input--container :-ms-input-placeholder {
    font-size: 12px;
  }
}
.subscribe--input--container ::-ms-input-placeholder {
  /* Microsoft Edge */
  font-weight: 400;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .subscribe--input--container ::-ms-input-placeholder {
    font-size: 12px;
  }
}

.breadcrumb__area {
  background-size: cover;
  background-position: right;
  background-image: url("/assets/images/breadcrumb.svg");
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .breadcrumb__area {
    background-position: center;
  }
}
.breadcrumb__area--content {
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  text-align: left;
}
@media (max-width: 991px) {
  .breadcrumb__area--content {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .breadcrumb__area--content {
    width: 95%;
  }
}
.breadcrumb__area--content img {
  height: 3%;
}
@media (max-width: 991px) {
  .breadcrumb__area--content img {
    height: 2.5%;
  }
}
.breadcrumb__area--content h1,
.breadcrumb__area--content h2 {
  font-size: clamp(32px, 3vw, 72px);
  line-height: clamp(56px, 3vw, 88px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 24px;
}
.breadcrumb__area--content p {
  color: white;
  padding-top: 16px;
  font-size: clamp(16px, 3vw, 24px);
  line-height: clamp(24px, 3vw, 32px);
}

.categories__area--item {
  border-radius: 16px;
  position: relative;
  padding: 16px;
  height: 300px;
  background-size: cover;
  margin-bottom: 10%;
  transition: transform ease-in 0.4s;
}
@media (max-width: 1024px) {
  .categories__area--item {
    height: 360px;
  }
}
@media (max-width: 991px) {
  .categories__area--item {
    height: 300px;
    margin-bottom: 14%;
  }
}
@media (max-width: 500px) {
  .categories__area--item {
    height: 320px;
    margin-bottom: 60px;
  }
}
@media (max-width: 350px) {
  .categories__area--item {
    height: 384px;
    margin-bottom: 16px;
  }
}
.categories__area--item img {
  position: absolute;
  top: -18%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 120px;
  height: 120px;
  border: 2px solid #ffffff;
  border-radius: 100px;
  transition: transform ease-in 0.4s;
}
@media (max-width: 350px) {
  .categories__area--item img {
    width: 100px;
    height: 100px;
    top: 4%;
  }
}
.categories__area--item .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 24px;
}
@media (max-width: 500px) {
  .categories__area--item .content {
    padding: 0 16px;
  }
}
.categories__area--item h2 {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #ffffff;
  transition: transform ease-in 0.4s;
}
.categories__area--item p {
  text-align: center;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
  transition: transform ease-in 0.4s;
}
@media (max-width: 500px) {
  .categories__area--item p {
    line-height: 18px;
  }
}
.categories__area--item:hover {
  transform: scale(1.01);
  transition: transform ease-in 0.6s;
}
.categories__area--item:hover h2 {
  transform: scale(1.04);
  transition: transform ease-in 0.6s;
}
.categories__area--item:hover img {
  transform: rotate(360deg) scale(1.2);
  transition: transform ease-in 0.6s;
}
.categories__area--box {
  border-radius: 16px;
  position: relative;
  padding: 16px;
  height: 300px;
  background-size: cover;
  margin-bottom: 10%;
  transition: transform ease-in 0.4s;
}
.categories__area--box a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 16px;
}
.categories__area--box img {
  width: 64px;
  height: 64px;
  border: 1px solid #ffffff;
  border-radius: 100px;
  transition: transform ease-in 0.4s;
}
.categories__area--box h2 {
  text-align: center;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 700;
  color: #ffffff;
  transition: transform ease-in 0.4s;
}
.categories__area--box:hover h2 {
  transform: scale(1.04);
  transition: transform ease-in 0.6s;
}
.categories__area--box:hover img {
  transform: rotate(360deg) scale(1.2);
  transition: transform ease-in 0.6s;
}

.exams__area--item {
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: rgba(221, 221, 221, 0.1) 0px 0px 5px 0px, rgba(212, 212, 212, 0.1) 0px 0px 1px 0px;
  border-radius: 16px;
  border: 1px solid rgba(153, 162, 198, 0.5);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  .exams__area--item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
.exams__area--item--media {
  text-align: center;
  width: 25%;
}
@media (max-width: 768px) {
  .exams__area--item--media {
    width: 100%;
  }
}
.exams__area--item--media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 1px solid #f5f8ff;
}
.exams__area--item--content {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .exams__area--item--content {
    width: 100%;
  }
}
.exams__area--item--content h3 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 800;
  color: #000000;
  margin-bottom: 0;
}
.exams__area--item--content h3 span {
  color: #3E4871;
  font-weight: 500;
  font-size: 16px;
}
.exams__area--item--content--date {
  color: #3E4871;
  font-size: clamp(12px, 3vw, 16px);
  padding-top: 16px;
  display: flex;
  align-items: center;
}
.exams__area--item--content--date b {
  color: #3E4871;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  padding-right: 8px;
}
.exams__area--item--content .date-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .exams__area--item--content .date-price {
    flex-wrap: wrap;
  }
}
.exams__area--item--content--places {
  display: flex;
  align-items: center;
  padding: 16px 0;
  color: #3E4871;
  font-weight: 500;
  font-size: 16px;
}
.exams__area--item--content .--status .badge--danger,
.exams__area--item--content .--status .badge--success {
  padding: 2px 10px;
  border-radius: 4px;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 500;
}
.exams__area--item--content .--status .badge--danger {
  background-color: rgba(242, 73, 90, 0.1);
  color: #f2495a;
  border: 1px solid #f2495a;
}
.exams__area--item--content .--status .badge--success {
  background-color: rgba(34, 208, 124, 0.1);
  color: #22d07c;
  border: 1px solid #22d07c;
}
.exams__area--item--content .price {
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 700;
  color: #EB222D;
  margin-bottom: 0;
}
.exams__area--item--content .action {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(153, 162, 198, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exams__area--item:hover {
  box-shadow: rgba(144, 144, 144, 0.1) 0px 4px 6px -1px, rgba(144, 144, 144, 0.06) 0px 2px 4px -1px;
}
.exams__area .exams--web {
  display: flex;
}
@media (max-width: 1199px) {
  .exams__area .exams--web {
    display: none;
  }
}
.exams__area .exams--mobile {
  display: none;
}
@media (max-width: 1199px) {
  .exams__area .exams--mobile {
    display: block;
  }
  .exams__area .exams--mobile .exams__area--item {
    margin: 4px 0;
  }
}

.gall--area {
  margin-bottom: 60px;
}
.gall--area .m-p-g {
  max-width: 100%;
  margin: 0 auto;
}
.gall--area .m-p-g__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .gall--area .m-p-g__thumbs {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}
.gall--area .m-p-g__thumbs-img {
  margin: 0;
  vertical-align: bottom;
  width: 100% !important;
  height: 300px !important;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  z-index: 1;
  position: relative;
  opacity: 0;
  filter: brightness(100%);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  will-change: opacity, transform;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 16px;
  border: 2px solid #FFFAED;
}
@media (max-width: 1199px) {
  .gall--area .m-p-g__thumbs-img {
    width: 32% !important;
  }
}
@media (max-width: 991px) {
  .gall--area .m-p-g__thumbs-img {
    width: 32% !important;
  }
}
@media (max-width: 767px) {
  .gall--area .m-p-g__thumbs-img {
    width: 49% !important;
    height: 300px !important;
  }
}
.gall--area .m-p-g__thumbs-img.active {
  z-index: 50;
}
.gall--area .m-p-g__thumbs-img.layout-completed {
  opacity: 1;
}
.gall--area .m-p-g__thumbs-img.hide {
  opacity: 0;
}
.gall--area .m-p-g__thumbs-img:hover {
  filter: brightness(110%);
}
.gall--area .m-p-g__fullscreen {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  transition: background 0.25s ease-out, visibility 0.01s 0.5s linear;
  will-change: background, visibility;
  backface-visibility: hidden;
}
.gall--area .m-p-g__fullscreen.active {
  transition: background 0.25s ease-out, visibility 0.01s 0s linear;
  visibility: visible;
  background: rgba(0, 0, 0, 0.95);
}
.gall--area .m-p-g__fullscreen-img {
  pointer-events: none;
  position: absolute;
  transform-origin: left top;
  top: 50%;
  left: 50%;
  max-height: 100vh;
  max-width: 100%;
  visibility: hidden;
  will-change: visibility;
  transition: opacity 0.5s ease-out;
}
.gall--area .m-p-g__fullscreen-img.active {
  visibility: visible;
  opacity: 1 !important;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease-out;
}
.gall--area .m-p-g__fullscreen-img.almost-active {
  opacity: 0;
  transform: translate3d(0, 0, 0) !important;
}
.gall--area .m-p-g__controls {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  height: 20vh;
  background: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.gall--area .m-p-g__controls.active {
  opacity: 1;
  visibility: visible;
}
.gall--area .m-p-g__controls-close, .gall--area .m-p-g__controls-arrow {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
}
.gall--area .m-p-g__controls-close:focus, .gall--area .m-p-g__controls-arrow:focus {
  outline: none;
}
.gall--area .m-p-g__controls-arrow {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 20%;
  height: 100vh;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0;
}
.gall--area .m-p-g__controls-arrow:hover {
  opacity: 1;
}
.gall--area .m-p-g__controls-arrow--prev {
  left: 0;
  padding-left: 3vw;
  justify-content: flex-start;
}
.gall--area .m-p-g__controls-arrow--next {
  right: 0;
  padding-right: 3vw;
  justify-content: flex-end;
}
.gall--area .m-p-g__controls-close {
  position: absolute;
  top: 3vh;
  left: 3vw;
  z-index: 5;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.gall--area .m-p-g__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  transition: all 0.25s ease-out;
}
.gall--area .m-p-g__btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.gall--area .m-p-g__alertBox {
  position: fixed;
  z-index: 999;
  max-width: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 25px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
  color: grey;
}
.gall--area .m-p-g__alertBox h2 {
  color: red;
}
.gall--area .demo-btn {
  display: inline-block;
  margin: 0 2.5px 4vh 2.5px;
  text-decoration: none;
  color: grey;
  padding: 15px;
  line-height: 1;
  min-width: 140px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 6px;
}
.gall--area .demo-btn:hover {
  background: rgba(0, 0, 0, 0.12);
}
@media (max-width: 640px) {
  .gall--area .demo-btn {
    min-width: 0;
    font-size: 14px;
  }
}
.gall--area .signle--image {
  overflow: hidden;
  border-radius: 8px;
}
.gall--area .signle--image img {
  height: 380px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
  transition: 1s all ease-in;
}
.gall--area .signle--image img:hover {
  transform: scale(1.1);
}

.language--test .grid--02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 8px;
}
@media (max-width: 1199px) {
  .language--test .grid--02 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 991px) {
  .language--test .grid--02 {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
@media (max-width: 767px) {
  .language--test .grid--02 {
    margin-top: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
.language--test .item {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(153, 162, 198, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 16px;
}
.language--test .item img {
  height: 90px;
  margin-right: 8px;
  object-view-box: inset(5%);
  border-radius: 100px;
}
.language--test .item h3 {
  margin-bottom: 0;
  padding-top: 16px;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 600;
  color: #EB222D;
}

.fronty--contact--area .--head {
  width: 100%;
  padding-bottom: 16px;
}
.fronty--contact--area .--head h4 {
  font-size: 24px;
  font-weight: 600;
  color: #FAD22D;
}
.fronty--contact--area--inputs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 248, 255, 0.1);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #f5f8ff;
}
.fronty--contact--area--infos {
  background-color: rgba(245, 248, 255, 0.1);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #f5f8ff;
}
@media (max-width: 767px) {
  .fronty--contact--area--infos {
    margin-top: 16px;
  }
}
.fronty--contact--area--infos .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
}
.fronty--contact--area--infos .item:hover {
  background-color: #f5f8ff;
}
.fronty--contact--area--infos .item svg {
  height: 48px;
  width: 48px;
}
.fronty--contact--area--infos .item span {
  color: #0b042c;
  padding-left: 8px;
}

.box--light {
  background-color: #FAFBFF;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
}

.box--light-blue {
  background-color: #f5f8ff;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
}

.box--light-yellow {
  background-color: #FFFAED;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
}
.box--light-yellow b {
  color: #FAD22D;
}

.box--light-red {
  background-color: #FFF2F2;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
}

.swiper-3 .swiper-wrapper {
  margin-bottom: 48px;
}
.swiper-3 .swiper-pagination {
  bottom: 0px;
}
.swiper-3 .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 6px;
  background-color: #EB222D;
  border-radius: 4px;
}
.swiper-3 .swiper-button-prev:after,
.swiper-3 .swiper-button-next:after {
  content: "";
}
.swiper-3 .swiper-button-prev,
.swiper-3 .swiper-button-next {
  top: 96%;
}
.swiper-3 .swiper-button-prev i,
.swiper-3 .swiper-button-next i {
  color: #EB222D;
}

.image--box {
  padding: 24px;
}
.image--box img {
  width: 100%;
  border-radius: 16px;
  border: 4px solid rgba(250, 210, 45, 0.1);
}

.image--box--2 {
  padding: 0px;
}
.image--box--2 img {
  width: 100%;
  border-radius: 16px;
  border: 4px solid rgba(235, 34, 45, 0.1);
}

.modal-dialog {
  max-width: 991px;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.modal-dialog .modal-body {
  position: relative;
  padding: 0px;
}
.modal-dialog .btn-close {
  position: absolute;
  right: -30px;
  top: 0;
}

.videos--swiper--item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
}
.videos--swiper--item--image {
  position: relative;
  width: 100%;
  height: 100%;
}
.videos--swiper--item--image img {
  width: 100%;
  border-radius: 10px;
  height: 260px;
}
.videos--swiper--item--image button {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  right: 0;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #ffffff;
  color: #FAD22D;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.videos--swiper--item--title {
  padding-top: 16px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videos--swiper--item--title h4 {
  margin-bottom: 0;
  font-size: 16px;
  color: #EB222D;
  text-align: center;
  line-height: 24px;
  font-weight: 600;
}

.cours--area .title--cours {
  background-color: #FFFAED;
  padding: 16px;
  color: #eb222d;
  text-align: center;
  margin-bottom: 0;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 600;
  border: 1px solid rgba(250, 210, 45, 0.4);
  border-radius: 8px;
}
.cours--area .--bg-1 {
  background-color: #f5f8ff;
}
.cours--area .--bg-2 {
  background-color: #e3efff;
}
.cours--area .--bg-3 {
  background-color: #f6e3ff;
}
.cours--area .--bg-4 {
  background-color: rgba(153, 162, 198, 0.06);
}
.cours--area .--bg-5 {
  background-color: #fff1f1;
}
.cours--area .--bg-6 {
  background-color: #effffc;
}
.cours--area .card--item {
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}
.cours--area .card--item h3 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  color: #eb222d;
  margin-bottom: 0;
}
.cours--area .card--item .details {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.cours--area .card--item .details .badge {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 8px 10px;
  color: #99A2C6;
  font-size: 14px;
}

.pagination--custom {
  padding-top: 24px;
}
.pagination--custom ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
}

.swiper__arrows .swiper-wrapper {
  margin-bottom: 40px;
  height: auto !important;
}
.swiper__arrows .swiper-button-prev {
  left: 40%;
}
@media (max-width: 991px) {
  .swiper__arrows .swiper-button-prev {
    left: 40%;
  }
}
@media (max-width: 600px) {
  .swiper__arrows .swiper-button-prev {
    left: 0%;
  }
}
.swiper__arrows .swiper-button-next {
  right: 40%;
}
@media (max-width: 991px) {
  .swiper__arrows .swiper-button-next {
    right: 40%;
  }
}
@media (max-width: 600px) {
  .swiper__arrows .swiper-button-next {
    right: 0%;
  }
}
.swiper__arrows .swiper-button-prev:after,
.swiper__arrows .swiper-button-next:after {
  content: "";
}
.swiper__arrows .swiper-button-prev i,
.swiper__arrows .swiper-button-next i {
  position: relative;
  z-index: 1;
  color: #99A2C6;
}
.swiper__arrows .swiper-button-prev i:after,
.swiper__arrows .swiper-button-next i:after {
  content: "";
  background-color: rgba(153, 162, 198, 0.5);
  opacity: 0.5;
  width: 24px;
  height: 16px;
  z-index: -1;
  position: absolute;
  border-radius: 50px;
}
.swiper__arrows .swiper-button-prev i:after {
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.swiper__arrows .swiper-button-next i:after {
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.swiper__arrows .swiper-button-prev,
.swiper__arrows .swiper-button-next {
  top: 96%;
}
.swiper__arrows .swiper-button-prev i,
.swiper__arrows .swiper-button-next i {
  color: #99A2C6;
}

.swiper__arrows--inside .swiper-button-prev,
.swiper__arrows--inside .swiper-button-next {
  background-color: rgba(235, 34, 45, 0.4);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper__arrows--inside .swiper-button-prev {
  left: 24px;
}
.swiper__arrows--inside .swiper-button-next {
  left: 92px;
}
.swiper__arrows--inside .swiper-button-prev:after,
.swiper__arrows--inside .swiper-button-next:after {
  content: "";
}
.swiper__arrows--inside .swiper-button-prev i,
.swiper__arrows--inside .swiper-button-next i {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.swiper__arrows--inside .swiper-button-prev,
.swiper__arrows--inside .swiper-button-next {
  top: 88%;
}
.swiper__arrows--inside .swiper-button-prev i,
.swiper__arrows--inside .swiper-button-next i {
  color: #ffffff;
}

.swiper--inside .swiper-prev, .swiper--inside .swiper-next {
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
}
.swiper--inside .swiper-prev {
  position: absolute;
  left: 4%;
}
.swiper--inside .swiper-next {
  position: absolute;
  right: 0;
}
.swiper--inside .swiper-prev:after,
.swiper--inside .swiper-next:after {
  content: none !important;
}
.swiper--inside .swiper-prev i,
.swiper--inside .swiper-next i {
  position: relative;
  z-index: 1;
  color: #EB222D;
}
.swiper--inside .swiper-prev i:after,
.swiper--inside .swiper-next i:after {
  content: "";
  background-color: rgba(235, 34, 45, 0.5);
  opacity: 0.5;
  width: 32px;
  height: 16px;
  z-index: -1;
  position: absolute;
  border-radius: 50px;
}
.swiper--inside .swiper-prev i:after {
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.swiper--inside .swiper-next i:after {
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.swipper--pagination .slider__controls {
  position: relative;
  z-index: 12;
}
.swipper--pagination .slider__controls .slider__pagination {
  text-align: center;
  left: 0;
  right: 0;
  margin: 16px auto 0 auto;
  transform: translateX(0%);
}
.swipper--pagination .slider__controls .slider__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #99A2C6;
  opacity: 0.2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}
.swipper--pagination .slider__controls .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swipper--pagination .slider__controls .slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #99A2C6;
  width: 30px;
  transition-delay: 0s;
}

.swiper-wrapper {
  height: auto !important;
}

.nav__hero {
  z-index: 2;
}
.nav__hero .swiper-button-prev,
.nav__hero .swiper-button-next {
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav__hero .swiper-button-prev svg,
.nav__hero .swiper-button-next svg {
  width: 100%;
}
.nav__hero .swiper-button-prev {
  left: 32px;
}
@media (max-width: 767px) {
  .nav__hero .swiper-button-prev {
    left: 16px;
  }
}
@media (max-width: 500px) {
  .nav__hero .swiper-button-prev {
    left: 8px;
  }
}
.nav__hero .swiper-button-next {
  right: 32px;
}
@media (max-width: 767px) {
  .nav__hero .swiper-button-next {
    right: 16px;
  }
}
@media (max-width: 500px) {
  .nav__hero .swiper-button-next {
    right: 8px;
  }
}
.nav__hero .swiper-button-prev:after,
.nav__hero .swiper-button-next:after {
  content: "";
}
.nav__hero .swiper-button-prev svg,
.nav__hero .swiper-button-next svg {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
@media (max-width: 600px) {
  .nav__hero .swiper-button-prev svg,
  .nav__hero .swiper-button-next svg {
    height: 24px;
  }
}
.nav__hero .swiper-button-prev svg:after,
.nav__hero .swiper-button-next svg:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  width: 32px;
  height: 16px;
  z-index: -1;
  position: absolute;
  border-radius: 50px;
}
.nav__hero .swiper-button-prev svg:after {
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav__hero .swiper-button-next svg:after {
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav__hero .swiper-pagination-bullets-dynamic {
  transform: none !important;
}
.nav__hero .slider__controls {
  z-index: 1;
  position: absolute;
  bottom: 2%;
  right: 0;
  left: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__hero .slider__controls .slider__pagination {
  text-align: center;
  margin-top: 16px;
}
.nav__hero .slider__controls .slider__pagination .swiper-pagination-bullet {
  width: 16px;
  height: 8px;
  display: inline-block;
  background: #ffffff;
  opacity: 0.5;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}
.nav__hero .slider__controls .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.nav__hero .slider__controls .slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
  width: 40px;
  transition-delay: 0s;
}

/* Slick Slider Css Ruls */
.slick-slide {
  margin: 0 8px;
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.arrows-slick-1,
.arrows-slick-2,
.arrows-slick-3,
.arrows-slick {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding-top: 24px;
}
.arrows-slick-1 .slick-prev,
.arrows-slick-1 .slick-next,
.arrows-slick-2 .slick-prev,
.arrows-slick-2 .slick-next,
.arrows-slick-3 .slick-prev,
.arrows-slick-3 .slick-next,
.arrows-slick .slick-prev,
.arrows-slick .slick-next {
  height: 40px;
  z-index: 9;
  width: 40px;
  border-radius: 20px;
  background-color: #f5f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arrows-slick-g,
.arrows-slick-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  position: absolute;
  bottom: 16px;
  right: 16px;
  margin: auto;
}
.arrows-slick-g .slick-prev,
.arrows-slick-g .slick-next,
.arrows-slick-hero .slick-prev,
.arrows-slick-hero .slick-next {
  height: 40px;
  z-index: 9;
  width: 40px;
  border-radius: 120px;
  background-color: #f5f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 991px) {
  .arrows-slick-g .slick-prev,
  .arrows-slick-g .slick-next,
  .arrows-slick-hero .slick-prev,
  .arrows-slick-hero .slick-next {
    height: 32px;
    width: 32px;
  }
  .arrows-slick-g .slick-prev i,
  .arrows-slick-g .slick-next i,
  .arrows-slick-hero .slick-prev i,
  .arrows-slick-hero .slick-next i {
    font-size: 20px;
  }
}

.slick-carousel-hero {
  position: relative;
}
.slick-carousel-hero .slick-slide {
  margin: 0;
  width: 100%;
}

.arrows-slick-single {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.arrows-slick-single .slick-prev,
.arrows-slick-single .slick-next {
  height: 45px;
  width: 50px;
  background-color: #f5f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.arrows-slick-single .slick-prev {
  left: auto;
}
.arrows-slick-single .slick-next {
  right: auto;
}

/**
 * MODAL 
 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsla(0, 0%, 0%, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  animation: popup 0.2s ease-in-out 5s forwards;
}

@keyframes popup {
  0% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.modal.closed {
  display: none;
}

.modal-close-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.modal__content {
  position: relative;
  width: 40%;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  z-index: 12;
  animation: scaleUp 0.5s ease-in-out 5s forwards;
}
@media (max-width: 991px) {
  .modal__content {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .modal__content {
    width: 95%;
  }
}
.modal__content .wrapper {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.modal__content .wrapper .form--container {
  width: 100%;
}
.modal__content .wrapper .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 8px;
  width: 100%;
}
.modal__content .wrapper .choice {
  margin-bottom: 8px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background-color: #f5f8ff !important;
  border: 1px solid transparent;
  color: #231F20;
  font-size: clamp(18px, 3vw, 20px);
  border: 1px solid rgba(153, 162, 198, 0.5);
  width: 100%;
}
.modal__content .wrapper .choice:hover {
  border: 1px solid #EB222D;
}
.modal__content .wrapper h2 {
  color: #231F20;
  font-size: clamp(24px, 3vw, 32px);
  line-height: clamp(40px, 3vw, 56px);
}
.modal__content .wrapper img {
  height: 120px;
  width: 120px;
  margin: 24px 0;
}
.modal__content .wrapper p {
  color: #231F20;
  font-size: clamp(18px, 3vw, 24px);
  line-height: clamp(24px, 3vw, 32px);
  font-weight: 600;
  text-align: center;
}

@keyframes scaleUp {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #231F20;
  color: #f5f8ff;
  font-size: 16px;
  padding: 6px;
  border-radius: 16px;
  cursor: pointer;
}

.modal-close-btn:hover {
  opacity: 0.9;
}

.no-scroll {
  overflow: hidden;
}

.modal__area {
  background: #ffffff;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  min-width: 33%;
  height: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  z-index: 20;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .modal__area {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .modal__area {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .modal__area {
    min-width: 90%;
  }
}
.modal__area .--btn {
  cursor: pointer;
}
.modal__area .--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}
.modal__area .--top img {
  height: 32px;
}
.modal__area .--body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-height: 100px;
  max-height: 300px;
  overflow: scroll;
}
.modal__area .--body .--title {
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 700;
  color: #EB222D;
  position: relative;
}
.modal__area .--body .--title::after {
  content: "";
  left: 0;
  bottom: -10px;
  position: absolute;
  margin: auto;
  background-color: #FAD22D;
  height: 2px;
  width: 16px;
}
.modal__area .--body .p__large {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  color: #000000;
  text-align: center;
}
.modal__area .--footer {
  padding: 16px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.modal__area.active {
  visibility: visible;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: 0.5s ease;
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: 0.5s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-navigation-menu {
  background: #ffffff;
  position: fixed;
  top: 0;
  right: -100%;
  width: 500px;
  height: 100vh;
  padding: 16px;
  box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
  overflow-y: scroll;
  overscroll-behavior: contain;
  visibility: hidden;
  transition: 0.5s ease;
  z-index: 12;
}
@media (max-width: 676px) {
  .mobile-navigation-menu {
    width: 90%;
  }
}

.mobile-navigation-menu.active {
  right: 0;
  visibility: visible;
}

.menu-top {
  padding-bottom: 15px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(153, 162, 198, 0.5);
}

.menu-top .menu-title {
  color: #EB222D;
  font-size: 16px;
  font-weight: 600;
}

.menu-close-btn {
  color: #EB222D;
  font-size: 22px;
  background-color: transparent;
  border: none;
}

.mobile-menu-category-list {
  margin-bottom: 30px;
}

.mobile-menu-category-list {
  margin-bottom: 30px;
}

.menu-category .accordion-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-category-list .menu-category {
  border-bottom: 1px solid #99A2C6;
}

.mobile-menu-category-list .menu-title {
  color: #3E4871;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
}

.accordion-menu > div {
  font-size: 14px;
}

.accordion-menu i {
  color: #3E4871;
  --ionicon-stroke-width: 90px;
}

.accordion-menu.active .add-icon,
.accordion-menu .remove-icon {
  display: none;
}

.accordion-menu .add-icon,
.accordion-menu.active .remove-icon {
  display: block;
}

.menu-category .submenu-category-list {
  margin-left: 10px;
}

.submenu-title {
  padding: 6px 0;
  font-size: 16px;
  color: #99A2C6;
  font-weight: 300;
}

.submenu-title:hover {
  color: #99A2C6;
}

.submenu-category-list {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.5s ease-in-out;
}

.submenu-category-list.active {
  max-height: 148px;
  visibility: visible;
}

.menu-bottom .menu-category-list {
  margin-bottom: 20px;
}

.menu-bottom .menu-category {
  border-bottom: none;
}

.menu-bottom .menu-title {
  font-size: 16px;
  font-weight: 500;
  color: #231F20;
  padding: 12px 0;
}

.accordion-menu.active .caret-back {
  transform: rotate(-0.25turn);
}

.menu-bottom .submenu-category-list {
  border: 1px solid #99A2C6;
  border-radius: 8px;
  padding: 0 15px;
  margin-left: 0;
  box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.05);
}

.menu-bottom .submenu-category:not(:last-child) {
  border-bottom: 1px solid #99A2C6;
}

.menu-social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.menu-social-container .social-link {
  background: #99A2C6;
  color: #231F20;
  font-size: 20px;
  padding: 10px;
  border-radius: 8px;
}

.mini_cart_inner {
  height: 90vh;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-direction: column;
}

.empty--cart {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px;
}
.empty--cart img {
  height: 90px;
  margin-bottom: 24px;
}

/*-----------------------------------*\
#SIDEBAR
\*-----------------------------------*/
.sidebar {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  padding: 16px;
  overflow-y: scroll;
  overscroll-behavior: contain;
  visibility: hidden;
  transition: 0.5s ease;
  z-index: 20;
}

.sidebar.active {
  left: 0;
  visibility: visible;
}

.sidebar-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-category ul li {
  border-radius: 8px;
}
.sidebar-category ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  color: #EB222D;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background-color: rgba(235, 34, 45, 0.04);
  border-radius: 8px;
  border: 1px solid transparent;
}
.sidebar-category ul li a img {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  border-radius: 50px;
}
.sidebar-category ul .active {
  border: 1px solid #FAD22D;
}
.sidebar-category .menu {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-category .menu li {
  border-radius: 8px;
}
.sidebar-category .menu li a {
  width: 100%;
  display: flex;
  align-items: center;
  color: #3E4871;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background-color: rgba(235, 34, 45, 0.02);
  border-radius: 8px;
  border: 1px solid transparent;
}
.sidebar-category .menu .active {
  border: 1px solid #EB222D;
}

.sidebar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.sidebar-title {
  color: #3E4871;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.sidebar-close-btn {
  color: #231F20;
  font-size: 22px;
  font-weight: 600;
  background: transparent;
  border: none;
}

.sidebar-accordion-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
}

.sidebar .menu-title-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar .menu-title {
  font-size: 16px;
  color: #99A2C6;
  font-weight: 500;
}

.sidebar-accordion-menu i {
  color: #99A2C6;
  font-size: 14px;
  --ionicon-stroke-width: 70px;
}

.sidebar-submenu-category-list {
  border-top: 1px solid #99A2C6;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.5s ease-in-out;
}

.sidebar-submenu-category-list.active {
  padding: 16px 0 8px;
  max-height: 100%;
  visibility: visible;
}

.sidebar-submenu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #99A2C6;
  font-size: 16px;
  padding: 2px 0;
}

.sidebar-submenu-title:hover {
  color: #231F20;
}

.sidebar .product-name {
  text-transform: capitalize;
}

.sidebar-accordion-menu.active .add-icon,
.sidebar-accordion-menu .remove-icon {
  display: none;
}

.sidebar-accordion-menu .add-icon,
.sidebar-accordion-menu.active .remove-icon {
  display: block;
}

.sidebar .showcase-heading {
  font-size: 16px;
  font-weight: 600;
  color: #3E4871;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 15px;
}

.sidebar .showcase {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sidebar .showcase:not(:last-child) {
  margin-bottom: 15px;
}

.sidebar .showcase-img {
  border-radius: 4px;
}

.sidebar .showcase-content {
  width: calc(100% - 90px);
}

.sidebar .showcase-title {
  color: #3E4871;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
}

.sidebar .showcase-rating {
  display: flex;
  align-items: center;
  color: #EB222D;
  font-size: 13px;
  padding: 4px 0;
}

.sidebar .price-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sidebar .price-box del {
  color: #99A2C6;
  font-size: 13px;
}

.sidebar .price-box .price {
  font-size: 16px;
  font-weight: 600;
  color: #99A2C6;
}

.packs__area--items {
  padding: 64px 0 0 0;
}
.packs__area .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .packs__area .grid {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}
@media (max-width: 767px) {
  .packs__area .grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.preparation__area .img {
  width: 70%;
  display: flex;
  margin: auto;
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .preparation__area .img {
    width: 100%;
  }
}
.preparation__area--items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .preparation__area--items {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}
@media (max-width: 767px) {
  .preparation__area--items {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.exams__area--items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .exams__area--items {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}
@media (max-width: 767px) {
  .exams__area--items {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.quiz__area .content {
  margin-bottom: 32px;
}
.quiz__area .content img {
  width: 70%;
  margin: 32px auto;
  display: flex;
}
@media (max-width: 991px) {
  .quiz__area .content img {
    width: 100%;
  }
}
.quiz__area .content .list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.quiz__area .content .list i {
  font-size: 8px;
  color: #FAD22D;
}
.quiz__area .content .list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-size: clamp(16px, 3vw, 20px);
  line-height: clamp(24px, 3vw, 28px);
}
.quiz__area--items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .quiz__area--items {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}
@media (max-width: 767px) {
  .quiz__area--items {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.quiz__area--test {
  width: 80%;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid #231f20;
  padding: 32px 24px;
  background-color: rgba(245, 248, 255, 0.8);
}
.quiz__area--test .result {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.quiz__area--test .result .head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quiz__area--test .result .head--img {
  height: 60px;
  width: 60px;
}
.quiz__area--test .result .result--img {
  height: 100px;
  width: 100px;
}
.quiz__area--test .result h2 {
  font-size: clamp(32px, 3vw, 40px);
  margin-bottom: 32px;
}
.quiz__area--test .result span {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: #EB222D;
  margin-bottom: 32px;
}
.quiz__area--test ul {
  list-style: none;
}
.quiz__area--test ul li {
  flex-direction: column;
}
.quiz__area--test ul li h3 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 24px;
  color: #231f20;
}
.quiz__area--test ul li .choice {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid transparent;
}
.quiz__area--test ul li .choice:hover {
  border: 1px solid #FAD22D;
}
.quiz__area--test .submit {
  display: none;
}

.stepper--form .groups {
  width: 100%;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #99A2C6;
}
.stepper--form .groups h3 {
  font-size: clamp(14px, 3vw, 18px);
  line-height: clamp(20px, 3vw, 26px);
  font-weight: 500;
  margin-bottom: 24px;
  color: #231f20;
}
.stepper--form .groups .wrap {
  height: 300px;
  overflow-y: scroll;
  display: flex;
  justify-content: flex-start;
  gap: 4px;
}
.stepper--form .groups .choice {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid transparent;
}
.stepper--form .groups .choice:hover {
  border: 1px solid #FAD22D;
}
.stepper--form .form-navigation {
  position: sticky;
  top: 100%;
  width: 100%;
}
.stepper--form .form-section {
  display: none;
  min-height: 350px;
}
.stepper--form .form-section.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.stepper--form .parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  color: red;
}

::-webkit-scrollbar {
  width: 4px;
  height: 2px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: rgba(153, 162, 198, 0.6);
  border: 0px none #ffffff;
}

::-webkit-scrollbar-thumb:active {
  background: rgba(153, 162, 198, 0.2);
}

::-webkit-scrollbar-track {
  background: #f5f8ff;
  border: 0px none #ffffff;
}

::-webkit-scrollbar-track:active {
  background: #99A2C6;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.has-scrollbar {
  padding-bottom: 16px;
}

.has-scrollbar::-webkit-scrollbar {
  width: 2px;
  /* for vertical scroll */
  height: 2px;
  /* for horizontal scroll */
  background: rgba(235, 34, 45, 0.06);
  border-radius: 24px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 24px;
  background: #eb222d;
}

.has-scrollbar:hover::-webkit-scrollbar-thumb {
  background: #eb222d;
}

.has-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #eb222d;
}

.joinus__area {
  position: relative;
}
.joinus__area .wrapper {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .joinus__area .wrapper {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .joinus__area .wrapper {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .joinus__area .wrapper {
    width: 100%;
  }
}
.joinus__area .absolute--image {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  z-index: -1;
}
@media (max-width: 1099px) {
  .joinus__area .absolute--image {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .joinus__area .absolute--image {
    width: 40%;
    height: auto;
    bottom: 0;
    top: unset;
  }
}
.joinus__area .absolute--shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: auto;
  z-index: -1;
}
@media (max-width: 1024px) {
  .joinus__area .absolute--shape {
    width: 20px;
  }
}

.newsletter__area {
  background-color: #FAD22D;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 40px;
  height: 520px;
}
@media (max-width: 991px) {
  .newsletter__area {
    grid-template-columns: 1fr;
    height: auto;
    gap: 0;
  }
}
.newsletter__area .media {
  height: 100%;
  width: 100%;
  background-color: #FFF8E4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter__area .media img {
  width: 100%;
  height: 240px;
}
@media (max-width: 991px) {
  .newsletter__area .media img {
    height: 100px;
  }
}
@media (max-width: 991px) {
  .newsletter__area .media {
    padding: 24px;
  }
}
.newsletter__area .content {
  padding: 80px 0;
  padding-right: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  .newsletter__area .content {
    padding: 32px 24px;
  }
}

.form__newsletter {
  width: 100%;
}
.form__newsletter .field {
  position: relative;
}
.form__newsletter .field input {
  height: 64px;
  width: 100%;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(35, 31, 32, 0.5);
  font-size: 24px;
  font-weight: 600;
}
.form__newsletter .field input::-moz-placeholder {
  color: rgba(153, 162, 198, 0.5);
}
.form__newsletter .field input::placeholder {
  color: rgba(153, 162, 198, 0.5);
}
.form__newsletter .field .fronty--btn {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.account__area {
  padding: 40px 0;
}
.account__area .infos {
  margin-bottom: 32px;
}
.account__area .infos h3 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
}
.account__area .infos h3 span {
  color: #231F20;
}

.orders__area {
  padding: 16px;
  border-radius: 16px;
}

.orders__area_2 .group {
  margin-bottom: 40px;
}
.orders__area_2 .group h3 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  margin-bottom: 24px;
  color: #231F20;
}
.orders__area_2 .--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  grid-gap: 16px;
}
@media (max-width: 991px) {
  .orders__area_2 .--grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
@media (max-width: 767px) {
  .orders__area_2 .--grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.orders__area_2 .box {
  border: 1px solid rgba(153, 162, 198, 0.4);
  border-bottom: 4px solid #EB222D;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.orders__area_2 .box .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.orders__area_2 .box .wrap .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 210px;
}
@media (max-width: 520px) {
  .orders__area_2 .box .wrap .col {
    min-width: 100px;
  }
}
.orders__area_2 .box .wrap .col label {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  color: #99A2C6;
}
.orders__area_2 .box .wrap .col span {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  color: #231F20;
}
.orders__area_2 .box .wrap .btn {
  min-width: auto;
}
.orders__area_2 .box .wrap .actions {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.orders__area_2 .box .details {
  display: flex;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
.orders__area_2 .box .details .content {
  padding: 24px 0 0 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
.orders__area_2 .box .details .line {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(153, 162, 198, 0.2);
  flex-wrap: wrap;
}
.orders__area_2 .box .details .line label {
  color: #231F20;
  font-size: clamp(14px, 3vw, 16px);
  min-width: 200px;
}

.result--area .heading {
  text-align: center;
  margin-bottom: 24px;
}
.result--area .heading h3 {
  font-size: 24px;
  font-weight: 600;
  color: #231F20;
  margin-bottom: 0;
}
.result--area .box {
  background-color: #ffffff;
  padding: 24px 0;
  border-radius: 16px;
}
.result--area .search--bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  width: 100%;
}
.result--area .search--bar input {
  height: 60px;
  border-radius: 8px;
  border: 1.2px solid #d8ddf2;
  padding: 0 16px;
  background-color: #ffffff;
  margin-right: 8px;
  min-width: 280px;
  width: 80%;
}
.result--area .search--bar button {
  background-color: #FAD22D;
  border-radius: 4px;
  border: 0;
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.result--area .search--bar button:hover {
  background-color: #EB222D;
}
.result--area .result--list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #99A2C6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(153, 162, 198, 0.2);
}
.result--area .result--list .item:last-child {
  border-bottom: none;
}
.result--area .pdf--list .item {
  padding: 16px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.result--area .pdf--list .item i {
  color: #ed6f6f;
}
.result--area .pdf--list .item span {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #99A2C6;
}

.m0auto {
  margin: 0 auto !important;
}

.no-decoration {
  text-decoration: none;
}

.mr-6 {
  margin-right: 6px;
}

.h-100-100 {
  height: 100%;
}

.w-100-100 {
  width: 100%;
}

.m-top-0 {
  margin-top: 0;
}

.m-top-5 {
  margin-top: 5px;
}

.m-top-10 {
  margin-top: 10px;
}

.m-top-15 {
  margin-top: 15px;
}

.m-top-20 {
  margin-top: 20px;
}

.m-top-25 {
  margin-top: 25px;
}

.m-top-30 {
  margin-top: 30px;
}

.m-top-35 {
  margin-top: 35px;
}

.m-top-40 {
  margin-top: 40px;
}

.m-top-45 {
  margin-top: 45px;
}

.m-top-50 {
  margin-top: 50px;
}

.m-top-55 {
  margin-top: 55px;
}

.m-top-60 {
  margin-top: 60px;
}

.m-top-65 {
  margin-top: 65px;
}

.m-top-70 {
  margin-top: 70px;
}

.m-top-75 {
  margin-top: 75px;
}

.m-top-80 {
  margin-top: 80px;
}

.m-top-85 {
  margin-top: 85px;
}

.m-top-90 {
  margin-top: 90px;
}

.m-top-95 {
  margin-top: 95px;
}

.m-top-100 {
  margin-top: 100px;
}

.m-top-105 {
  margin-top: 105px;
}

.m-top-110 {
  margin-top: 110px;
}

.m-top-115 {
  margin-top: 115px;
}

.m-top-120 {
  margin-top: 120px;
}

.m-top-125 {
  margin-top: 125px;
}

.m-top-130 {
  margin-top: 130px;
}

.m-top-135 {
  margin-top: 135px;
}

.m-top-140 {
  margin-top: 140px;
}

.m-top-145 {
  margin-top: 145px;
}

.m-top-150 {
  margin-top: 150px;
}

.m-right-0 {
  margin-right: 0;
}

.m-right-5 {
  margin-right: 5px;
}

.m-right-10 {
  margin-right: 10px;
}

.m-right-15 {
  margin-right: 15px;
}

.m-right-20 {
  margin-right: 20px;
}

.m-right-25 {
  margin-right: 25px;
}

.m-right-30 {
  margin-right: 30px;
}

.m-right-35 {
  margin-right: 35px;
}

.m-right-40 {
  margin-right: 40px;
}

.m-right-45 {
  margin-right: 45px;
}

.m-right-50 {
  margin-right: 50px;
}

.m-right-55 {
  margin-right: 55px;
}

.m-right-60 {
  margin-right: 60px;
}

.m-right-65 {
  margin-right: 65px;
}

.m-right-70 {
  margin-right: 70px;
}

.m-right-75 {
  margin-right: 75px;
}

.m-right-80 {
  margin-right: 80px;
}

.m-right-85 {
  margin-right: 85px;
}

.m-right-90 {
  margin-right: 90px;
}

.m-right-95 {
  margin-right: 95px;
}

.m-right-100 {
  margin-right: 100px;
}

.m-right-105 {
  margin-right: 105px;
}

.m-right-110 {
  margin-right: 110px;
}

.m-right-115 {
  margin-right: 115px;
}

.m-right-120 {
  margin-right: 120px;
}

.m-right-125 {
  margin-right: 125px;
}

.m-right-130 {
  margin-right: 130px;
}

.m-right-135 {
  margin-right: 135px;
}

.m-right-140 {
  margin-right: 140px;
}

.m-right-145 {
  margin-right: 145px;
}

.m-right-150 {
  margin-right: 150px;
}

.m-bottom-0 {
  margin-bottom: 0 !important;
}

.m-bottom-5 {
  margin-bottom: 5px;
}

.m-bottom-10 {
  margin-bottom: 10px;
}

.m-bottom-15 {
  margin-bottom: 15px;
}

.m-bottom-20 {
  margin-bottom: 20px;
}

.m-bottom-25 {
  margin-bottom: 25px;
}

.m-bottom-30 {
  margin-bottom: 30px;
}

.m-bottom-35 {
  margin-bottom: 35px;
}

.m-bottom-40 {
  margin-bottom: 40px;
}

.m-bottom-45 {
  margin-bottom: 45px;
}

.m-bottom-50 {
  margin-bottom: 50px;
}

.m-bottom-55 {
  margin-bottom: 55px;
}

.m-bottom-60 {
  margin-bottom: 60px;
}

.m-bottom-65 {
  margin-bottom: 65px;
}

.m-bottom-70 {
  margin-bottom: 70px;
}

.m-bottom-75 {
  margin-bottom: 75px;
}

.m-bottom-80 {
  margin-bottom: 80px;
}

.m-bottom-85 {
  margin-bottom: 85px;
}

.m-bottom-90 {
  margin-bottom: 90px;
}

.m-bottom-95 {
  margin-bottom: 95px;
}

.m-bottom-100 {
  margin-bottom: 100px;
}

.m-bottom-105 {
  margin-bottom: 105px;
}

.m-bottom-110 {
  margin-bottom: 110px;
}

.m-bottom-115 {
  margin-bottom: 115px;
}

.m-bottom-120 {
  margin-bottom: 120px;
}

.m-bottom-125 {
  margin-bottom: 125px;
}

.m-bottom-130 {
  margin-bottom: 130px;
}

.m-bottom-135 {
  margin-bottom: 135px;
}

.m-bottom-140 {
  margin-bottom: 140px;
}

.m-bottom-145 {
  margin-bottom: 145px;
}

.m-bottom-150 {
  margin-bottom: 150px;
}

.m-left-0 {
  margin-left: 0;
}

.m-left-5 {
  margin-left: 5px;
}

.m-left-10 {
  margin-left: 10px;
}

.m-left-15 {
  margin-left: 15px;
}

.m-left-20 {
  margin-left: 20px;
}

.m-left-25 {
  margin-left: 25px;
}

.m-left-30 {
  margin-left: 30px;
}

.m-left-35 {
  margin-left: 35px;
}

.m-left-40 {
  margin-left: 40px;
}

.m-left-45 {
  margin-left: 45px;
}

.m-left-50 {
  margin-left: 50px;
}

.m-left-55 {
  margin-left: 55px;
}

.m-left-60 {
  margin-left: 60px;
}

.m-left-65 {
  margin-left: 65px;
}

.m-left-70 {
  margin-left: 70px;
}

.m-left-75 {
  margin-left: 75px;
}

.m-left-80 {
  margin-left: 80px;
}

.m-left-85 {
  margin-left: 85px;
}

.m-left-90 {
  margin-left: 90px;
}

.m-left-95 {
  margin-left: 95px;
}

.m-left-100 {
  margin-left: 100px;
}

.m-left-105 {
  margin-left: 105px;
}

.m-left-110 {
  margin-left: 110px;
}

.m-left-115 {
  margin-left: 115px;
}

.m-left-120 {
  margin-left: 120px;
}

.m-left-125 {
  margin-left: 125px;
}

.m-left-130 {
  margin-left: 130px;
}

.m-left-135 {
  margin-left: 135px;
}

.m-left-140 {
  margin-left: 140px;
}

.m-left-145 {
  margin-left: 145px;
}

.m-left-150 {
  margin-left: 150px;
}

.p-left-0 {
  padding-left: 0;
}

.p-left-5 {
  padding-left: 5px;
}

.p-left-10 {
  padding-left: 10px;
}

.p-left-15 {
  padding-left: 15px;
}

.p-left-20 {
  padding-left: 20px;
}

.p-left-25 {
  padding-left: 25px;
}

.p-left-30 {
  padding-left: 30px;
}

.p-left-35 {
  padding-left: 35px;
}

.p-left-40 {
  padding-left: 40px;
}

.p-left-45 {
  padding-left: 45px;
}

.p-left-50 {
  padding-left: 50px;
}

.p-left-55 {
  padding-left: 55px;
}

.p-left-60 {
  padding-left: 60px;
}

.p-left-65 {
  padding-left: 65px;
}

.p-left-70 {
  padding-left: 70px;
}

.p-left-75 {
  padding-left: 75px;
}

.p-left-80 {
  padding-left: 80px;
}

.p-left-85 {
  padding-left: 85px;
}

.p-left-90 {
  padding-left: 90px;
}

.p-left-95 {
  padding-left: 95px;
}

.p-left-100 {
  padding-left: 100px;
}

.p-left-105 {
  padding-left: 105px;
}

.p-left-110 {
  padding-left: 110px;
}

.p-left-115 {
  padding-left: 115px;
}

.p-left-120 {
  padding-left: 120px;
}

.p-left-125 {
  padding-left: 125px;
}

.p-left-130 {
  padding-left: 130px;
}

.p-left-135 {
  padding-left: 135px;
}

.p-left-140 {
  padding-left: 140px;
}

.p-left-145 {
  padding-left: 145px;
}

.p-left-150 {
  padding-left: 150px;
}

.p-right-0 {
  padding-right: 0;
}

.p-right-5 {
  padding-right: 5px;
}

.p-right-10 {
  padding-right: 10px;
}

.p-right-15 {
  padding-right: 15px;
}

.p-right-20 {
  padding-right: 20px;
}

.p-right-25 {
  padding-right: 25px;
}

.p-right-30 {
  padding-right: 30px;
}

.p-right-35 {
  padding-right: 35px;
}

.p-right-40 {
  padding-right: 40px;
}

.p-right-45 {
  padding-right: 45px;
}

.p-right-50 {
  padding-right: 50px;
}

.p-right-55 {
  padding-right: 55px;
}

.p-right-60 {
  padding-right: 60px;
}

.p-right-65 {
  padding-right: 65px;
}

.p-right-70 {
  padding-right: 70px;
}

.p-right-75 {
  padding-right: 75px;
}

.p-right-80 {
  padding-right: 80px;
}

.p-right-85 {
  padding-right: 85px;
}

.p-right-90 {
  padding-right: 90px;
}

.p-right-95 {
  padding-right: 95px;
}

.p-right-100 {
  padding-right: 100px;
}

.p-right-105 {
  padding-right: 105px;
}

.p-right-110 {
  padding-right: 110px;
}

.p-right-115 {
  padding-right: 115px;
}

.p-right-120 {
  padding-right: 120px;
}

.p-right-125 {
  padding-right: 125px;
}

.p-right-130 {
  padding-right: 130px;
}

.p-right-135 {
  padding-right: 135px;
}

.p-right-140 {
  padding-right: 140px;
}

.p-right-145 {
  padding-right: 145px;
}

.p-right-150 {
  padding-right: 150px;
}

.p-top-0 {
  padding-top: 0;
}

.p-top-2 {
  padding-top: 2px;
}

.p-top-5 {
  padding-top: 5px;
}

.p-top-10 {
  padding-top: 10px;
}

.p-top-15 {
  padding-top: 15px;
}

.p-top-20 {
  padding-top: 20px;
}

.p-top-25 {
  padding-top: 25px;
}

.p-top-30 {
  padding-top: 30px;
}

.p-top-35 {
  padding-top: 35px;
}

.p-top-40 {
  padding-top: 40px;
}

.p-top-45 {
  padding-top: 45px;
}

.p-top-50 {
  padding-top: 50px;
}

.p-top-55 {
  padding-top: 55px;
}

.p-top-60 {
  padding-top: 60px;
}

.p-top-65 {
  padding-top: 65px;
}

.p-top-70 {
  padding-top: 70px;
}

.p-top-75 {
  padding-top: 75px;
}

.p-top-80 {
  padding-top: 80px;
}

.p-top-85 {
  padding-top: 85px;
}

.p-top-90 {
  padding-top: 90px;
}

.p-top-95 {
  padding-top: 95px;
}

.p-top-100 {
  padding-top: 100px;
}

.p-top-105 {
  padding-top: 105px;
}

.p-top-110 {
  padding-top: 110px;
}

.p-top-115 {
  padding-top: 115px;
}

.p-top-120 {
  padding-top: 120px;
}

.p-top-125 {
  padding-top: 125px;
}

.p-top-130 {
  padding-top: 130px;
}

.p-top-135 {
  padding-top: 135px;
}

.p-top-140 {
  padding-top: 140px;
}

.p-top-145 {
  padding-top: 145px;
}

.p-top-150 {
  padding-top: 150px;
}

.p-bottom-0 {
  padding-bottom: 0;
}

.p-bottom-5 {
  padding-bottom: 5px;
}

.p-bottom-10 {
  padding-bottom: 10px;
}

.p-bottom-15 {
  padding-bottom: 15px;
}

.p-bottom-20 {
  padding-bottom: 20px !important;
}

.p-bottom-25 {
  padding-bottom: 25px;
}

.p-bottom-30 {
  padding-bottom: 30px;
}

.p-bottom-35 {
  padding-bottom: 35px;
}

.p-bottom-40 {
  padding-bottom: 40px;
}

.p-bottom-45 {
  padding-bottom: 45px;
}

.p-bottom-50 {
  padding-bottom: 50px;
}

.p-bottom-55 {
  padding-bottom: 55px;
}

.p-bottom-60 {
  padding-bottom: 60px;
}

.p-bottom-65 {
  padding-bottom: 65px;
}

.p-bottom-70 {
  padding-bottom: 70px;
}

.p-bottom-75 {
  padding-bottom: 75px;
}

.p-bottom-80 {
  padding-bottom: 80px;
}

.p-bottom-85 {
  padding-bottom: 85px;
}

.p-bottom-90 {
  padding-bottom: 90px;
}

.p-bottom-95 {
  padding-bottom: 95px;
}

.p-bottom-100 {
  padding-bottom: 100px;
}

.p-bottom-105 {
  padding-bottom: 105px;
}

.p-bottom-110 {
  padding-bottom: 110px;
}

.p-bottom-115 {
  padding-bottom: 115px;
}

.p-bottom-120 {
  padding-bottom: 120px;
}

.p-bottom-125 {
  padding-bottom: 125px;
}

.p-bottom-130 {
  padding-bottom: 130px;
}

.p-bottom-135 {
  padding-bottom: 135px;
}

.p-bottom-140 {
  padding-bottom: 140px;
}

.p-bottom-145 {
  padding-bottom: 145px;
}

.p-bottom-150 {
  padding-bottom: 150px;
}

.h-5 {
  height: 5px;
}

.h-10 {
  height: 10px;
}

.h-15 {
  height: 15px;
}

.h-20 {
  height: 20px;
}

.h-25 {
  height: 25px;
}

.h-30 {
  height: 30px;
}

.h-35 {
  height: 35px;
}

.h-40 {
  height: 40px;
}

.h-45 {
  height: 45px;
}

.h-50 {
  height: 50px;
}

.h-55 {
  height: 55px;
}

.h-60 {
  height: 60px;
}

.h-65 {
  height: 65px;
}

.h-70 {
  height: 70px;
}

.h-75 {
  height: 75px;
}

.h-80 {
  height: 80px;
}

.h-85 {
  height: 85px;
}

.h-90 {
  height: 90px;
}

.h-95 {
  height: 95px;
}

.h-100 {
  height: 100px;
}

.h-105 {
  height: 105px;
}

.h-110 {
  height: 110px;
}

.h-115 {
  height: 115px;
}

.h-120 {
  height: 120px;
}

.h-125 {
  height: 125px;
}

.h-130 {
  height: 130px;
}

.h-135 {
  height: 135px;
}

.h-140 {
  height: 140px;
}

.h-145 {
  height: 145px;
}

.h-150 {
  height: 150px;
}

.clear {
  clear: both;
}

.no-mar {
  margin: 0 !important;
}

.no-mar-bot {
  margin: 0px !important;
}

.no-pad {
  padding: 0 !important;
}
