/* FONT-FACE */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Red+Rose:wght@300..700&display=swap");
/* VARIABLES */
:root {
  --main-bg-color: #FFF6F6;
  --main-text-color: #1E1E1E;
  --main-light-text-color: #F5DEDE;
  --main-title-color: #8A0303;
  --main-dark-blue-color: #00002C;
  --main-dark-red-color: #420000;
  --main-light-red-color: #FB4749;
  --main-gradient-color: var(linear-gradient(180deg, #5E0303 0%, #8A0202 100%));
  --main-white-color: #fff;
}

/* MIXINS */
/* GENERAL */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

img {
  display: block;
  height: auto;
}

body {
  max-width: 100%;
  background-color: var(--main-bg-color);
  background-image: url(../images/ptrn.png);
  background-size: 1440px;
  background-repeat: repeat;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Hide any scrollbars globally */
::-webkit-scrollbar {
  display: none !important;
}

.unscrollbody {
  overflow: hidden;
}

/* VISAULLY-HIDDEN */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: none;
  overflow: hidden;
  -webkit-clip-path: rect(0 0 0 0);
          clip-path: rect(0 0 0 0);
}

/* CONTAINER */
.container {
  max-width: 1248px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: hidden;
}

@media (max-width: 1280px) {
  .container {
    padding: 0 48px;
  }
}
@media (max-width: 1000px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 800px) {
  .container {
    padding: 0 32px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    overflow-x: hidden;
  }
}
@media (min-width: 1860px) {
  .container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    overflow-x: hidden;
  }
}
/* header */
.header {
  position: relative;
  overflow: visible !important;
  background: var(--main-dark-red-color);
}

.header a,
.navbar a,
.navbar__link {
  text-decoration: none !important;
  font-family: "Montserrat", sans-serif !important;
}

.navbar .container {
  overflow: visible !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 60px !important;
}

.header .container {
  overflow: visible !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 60px !important;
}

/* Dot grid pattern on header */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.10) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Diagonal lines on header */
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.035) 20px,
      rgba(255,255,255,0.035) 21px
    );
  pointer-events: none;
}

.header__all {
  width: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__top {
  width: 100%;
  padding: 19px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.header__top__time {
  color: var(--main-light-text-color);
  font-size: 0.875rem;
  font-weight: 400;
}

.header__top__elearning {
  color: var(--main-light-text-color);
  font-size: 0.875rem;
  font-weight: 400;
}

.header__top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}

.header__top-right__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}

.header__top-right__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main-light-text-color);
  font-size: 0.875rem;
  font-weight: 400;
}

.header__top-right__contact::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../images/header/call.svg);
  margin-right: 6px;
}

.header__top-right__calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main-light-text-color);
  font-size: 0.875rem;
  font-weight: 400;
}

.header__top-right__calendar::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../images/header/calendar.svg);
  margin-right: 6px;
}

.header__top__media__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}

.header__top__media__item img {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.header__top__media__item:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.navbar {
  z-index: 999;
  width: 100%;
  position: sticky;
  top: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  background: rgba(94, 3, 3, 0.8);
  -webkit-box-shadow: 0px 5px 10px 0px rgba(66, 0, 0, 0.35);
          box-shadow: 0px 5px 10px 0px rgba(66, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  overflow: visible !important;
}

.nav-bg {
  display: none !important;
}

.navbar__all {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  align-content: center !important;
}

.navbar__logo {
  display: inline-block;
}

.navbar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar__item {
  position: relative !important;
  display: inline-flex;
  align-items: center;
}

.navbar__item__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute !important;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(245,222,222,0.25);
  background: rgba(66, 0, 0, 0.98) !important;
  row-gap: 12px;
  -webkit-box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.4) !important;
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.4) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  top: calc(100% + 8px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: none;
  min-width: 210px !important;
  z-index: 999999 !important;
  white-space: nowrap;
}

.navbar__item.show-dropdown .navbar__item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar__link {
  color: var(--main-light-text-color);
  font-size: 1rem;
  font-weight: 400;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  padding: 16px 0;
}

.navbar__itemm .navbar__link {
  padding: 6px 0;
}

.navbar__itemm .navbar__link:hover {
  color: var(--main-light-red-color);
}

.navbar__link:hover {
  color: var(--main-white-color);
}

.navbar__link__active:hover {
  color: var(--main-light-red-color);
}

.navbar__link__active {
  color: var(--main-light-red-color);
}

.navbar__down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar__down::after {
  content: "";
  display: block;
  margin-left: 6px;
  width: 16px;
  height: 16px;
  background-image: url(../images/header/arrow-downn.svg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar__link__arrow::after {
  content: "";
  display: block;
  margin-left: 6px;
  width: 16px;
  height: 16px;
  background-image: url(../images/header/arrow-down-active.svg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar__item.show-dropdown .navbar__down::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navbar__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.navbar__search {
  padding: 20px;
  background-color: var(--main-white-color);
  border: none;
  background-image: url(../images/header/search-status.svg);
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  min-height: 40px;
  cursor: pointer;
}

.navbar__search:checked {
  padding: 34px;
}

.navbar__flags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative; /* Added anchor for relative positioning */
  z-index: 1000;
}

.navbar__flag {
  min-height: 40px;
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main-title-color);
  font-weight: 600;
  padding: 10px 12px;
  background-color: var(--main-white-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: border-radius 0.2s ease;
  transition: border-radius 0.2s ease;
}

.navbar__flag::before {
  content: "";
  width: 20px;
  height: 14px;
  display: block;
  background-image: url(../images/header/uz.svg); /* default */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 6px;
}

.navbar__flag::after {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background-image: url(../images/header/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 6px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.navbar__flags:hover .navbar__flag::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navbar__flags__ru {
  display: none;
  top: 40px; /* Positions perfectly below the 40px height button */
  left: 0;
  width: 90px;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 15px 30px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 15px 30px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  z-index: 1000;
}

.navbar__flag.navbar__dropdown-opt {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 90px;
  border-radius: 0px;
  padding-left: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar__flag.navbar__dropdown-opt::after {
  display: none; /* No arrow inside dropdown options */
}

.navbar__flags:hover .navbar__flag {
  border-radius: 4px 4px 0 0;
}

.navbar__flags:hover .navbar__flags__ru {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar__flag__ru::before {
  background-image: url(../images/header/ru.svg) !important;
}

.navbar__flag__eng::before {
  background-image: url(../images/header/en.svg) !important;
}

/* HERO */
.hero {
  padding: 64px 0 130px 0;
}

.hero__all {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__texts {
  position: relative;
}

.hero__title {
  width: 582px;
  color: var(--main-title-color);
  font-family: "Red Rose";
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -1.28px;
}

.title__down__bottom {
  overflow: visible;
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  left: 270px;
  bottom: 20px;
  background-image: url(../images/hero/down.svg);
  background-size: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.title__down__bottom:hover {
  -webkit-transform: rotate(360deg) scale(1.1);
          transform: rotate(360deg) scale(1.1);
}

.hero__bg img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 1860px) {
  .hero__title {
    width: 700px;
    font-size: 4.5rem;
  }
  .hero__bg {
    width: 48%;
  }
  .hero__bg img {
    width: 100%;
  }
  .title__down__bottom {
    width: 56px;
    height: 56px;
    left: 320px;
  }
}
/* aboooooooout */
.about {
  position: relative;
  z-index: 2;
  padding: 270px 0 120px 0;
  border-radius: 0px;
  overflow: visible;
  background:
    linear-gradient(180deg, #5E0303 0%, #8A0202 100%);
}

.about .container {
  overflow: visible;
}

/* Dot grid pattern */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.13) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Diagonal lines pattern - subtle */
.about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(255,255,255,0.04) 18px,
      rgba(255,255,255,0.04) 19px
    );
  pointer-events: none;
}

.about__all {
  width: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about__top {
  z-index: 12;
  max-width: 1248px;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -210px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 50px 64px;
  border-radius: 20px;
  border: 5px solid #FFF;
  background: var(--red, linear-gradient(180deg, #5E0303 0%, #8A0202 100%));
}

.about__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--main-light-text-color);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 140%;
}

.about__item::before {
  content: "";
  display: block;
  width: 76px;
  height: 76px;
  padding: 20px 36px;
  background-image: url(../images/about/malaka.svg);
  background-size: 50px 50px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  border: 2px solid #F5DEDE;
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  margin-right: 16px;
}

.about__item__two::before {
  background-image: url(../images/about/kengqamrov.svg);
}

.about__item__three::before {
  background-image: url(../images/about/amaliyot.svg);
}

.about__bottom {
  width: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.about__bottom__texts {
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__bottom__title {
  color: var(--main-white-color);
  font-family: "Red Rose";
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -1.28px;
  margin-bottom: 16px;
}

.about__bottom__text {
  color: var(--main-white-color);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 145.455%;
  margin-bottom: 40px;
}

.about__bottom__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--main-white-color);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 100%;
  border-radius: 1920px;
  border: 2px solid #FFF;
  background: rgba(255, 255, 255, 0);
  padding: 18px 24px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.about__bottom__link::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/about/arrow.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 18px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.about__bottom__link:hover {
  border-color: var(--main-white-color);
}

.about__bottom__link:hover::after {
  -webkit-transform: rotate(-30deg) scale(1.4);
          transform: rotate(-30deg) scale(1.4);
}

.about__bottom__link__rotate::after {
  -webkit-transform: rotate(90deg) scale(1.4);
          transform: rotate(90deg) scale(1.4);
}

.about__bottom__link__rotate:hover::after {
  -webkit-transform: rotate(90deg) scale(1.6);
          transform: rotate(90deg) scale(1.6);
}

.about__bottom__img {
  width: 30%;
  border-radius: 20px;
  border: 2px solid rgba(245, 222, 222, 0.30);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.about__bottom__img svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.about__bottom__img img {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 14px;
}

@media (min-width: 1600px) {
  .about__top {
    width: 100%;
    max-width: 1300px;
  }
}
@media (min-width: 1860px) {
  .about__top {
    width: 100%;
    max-width: 1600px;
  }
}
/* functions */
.functions {
  padding: 72px 0 42px 0;
}

.functionss {
  padding: 42px 0 42px;
}

.functions__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.functions__title {
  color: var(--main-text-color);
  text-align: center;
  font-family: "Red Rose";
  font-size: 4rem;
  font-weight: 700;
}

.functions__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.functions__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 49%;
  min-width: 595px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #8A0303;
  background: #FFFDFA;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}

.functions__item:hover {
  -webkit-box-shadow: -8px 39px 11px 0px rgba(138, 2, 2, 0), -5px 25px 10px 0px rgba(138, 2, 2, 0.01), -3px 14px 9px 0px rgba(138, 2, 2, 0.03), -1px 6px 6px 0px rgba(138, 2, 2, 0.03), 0px 2px 4px 0px rgba(138, 2, 2, 0.05);
          box-shadow: -8px 39px 11px 0px rgba(138, 2, 2, 0), -5px 25px 10px 0px rgba(138, 2, 2, 0.01), -3px 14px 9px 0px rgba(138, 2, 2, 0.03), -1px 6px 6px 0px rgba(138, 2, 2, 0.03), 0px 2px 4px 0px rgba(138, 2, 2, 0.05);
}

.functions__item img {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  max-width: 180px;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.functions__item:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.functions__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  flex: 1;
  min-width: 0;
  z-index: 2;
}

.functions__item__title {
  width: 90%;
  color: var(--main-text-color);
  font-family: "Red Rose";
  font-size: 2.375rem;
  font-weight: 400;
}

.functions__img {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
  margin-left: 20px;
  z-index: 1;
}

.functions__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 164px;
  color: var(--main-title-color);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 100%;
  border-radius: 1920px;
  border: 2px solid #8A0202;
  background: rgba(255, 255, 255, 0);
  padding: 18px 24px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.functions__btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  font-weight: 500;
  background-image: url(../images/functions/arrow.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 18px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.functions__btn:hover::after {
  -webkit-transform: rotate(-30deg) scale(1.4);
          transform: rotate(-30deg) scale(1.4);
}

/*team our*/
.team {
  padding-bottom: 72px;
}

.team__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.team__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.team__item {
  overflow: hidden;
  position: relative;
  max-width: 48%;
  min-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0 0 40px;
  border-radius: 20px;
  background: #FF4040;
  -webkit-box-shadow: -4px 4px 32px 0px rgba(0, 0, 0, 0.08);
          box-shadow: -4px 4px 32px 0px rgba(0, 0, 0, 0.08);
}

.team__item .team__imgs img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.team__item:hover .team__imgs img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.team__texts {
  z-index: 12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.team__bg {
  position: absolute;
  width: 100%;
  height: 85%;
  background-color: var(--main-dark-blue-color);
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 0 0 32px 32px;
}

.team__name {
  color: #FF4040;
  font-family: "Red Rose";
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1.44px;
  margin-bottom: 22px;
}

.team__name__min {
  font-size: 2rem;
  line-height: 43.2px;
}

.team__info {
  color: var(--main-white-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.48px;
  margin-bottom: 38px;
}

.teammedia__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 80px;
}

.teammedia__item img {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.65;
}

.teammedia__item:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  opacity: 1;
}

.team__imgs {
  z-index: 17;
}

.team__imgs img {
  height: 370px;
}

.team__texts__none {
  display: none;
}

.team__item__none {
  overflow: hidden;
  position: relative;
  max-width: 24%;
  min-width: 296px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 40px 0 0 40px;
  border-radius: 20px;
  background: #FF4040;
  -webkit-box-shadow: -4px 4px 32px 0px rgba(0, 0, 0, 0.08);
          box-shadow: -4px 4px 32px 0px rgba(0, 0, 0, 0.08);
}

.team__item__none .team__bg {
  height: 100%;
  border-radius: 0;
}

@media (min-width: 1600px) {
  .team__item {
    width: 740px;
  }
}
@media (min-width: 1860px) {
  .team__item {
    width: 740px;
  }
}
/***newsssssssssssssss*/
.news {
  padding-bottom: 42px;
}

.news__all {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.news__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.news__list a {
  width: calc((100% - 40px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.news__item {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid #8A0202;
  background: #FFF;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.news__item:hover {
  -webkit-box-shadow: -8px 39px 11px 0px rgba(138, 2, 2, 0), -5px 25px 10px 0px rgba(138, 2, 2, 0.01), -3px 14px 9px 0px rgba(138, 2, 2, 0.03), -1px 6px 6px 0px rgba(138, 2, 2, 0.03), 0px 2px 4px 0px rgba(138, 2, 2, 0.05);
          box-shadow: -8px 39px 11px 0px rgba(138, 2, 2, 0), -5px 25px 10px 0px rgba(138, 2, 2, 0.01), -3px 14px 9px 0px rgba(138, 2, 2, 0.03), -1px 6px 6px 0px rgba(138, 2, 2, 0.03), 0px 2px 4px 0px rgba(138, 2, 2, 0.05);
}

.news__img {
  width: 100%;
  min-height: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px 16px 0px 0px;
}

.news__img .news__img__bgimg {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news__img span {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(109deg, #5E0303 0%, #8A0202 100%);
  top: -450px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.news__item:hover .news__img span {
  top: 0;
}

.news__img__logo {
  width: 80%;
  position: absolute;
  top: -450px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.news__item:hover .news__img__logo {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.news__hashtag {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 16px 0 12px;
  color: var(--main-text-color);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 16px;
  background: #F5DEDE;
}

.news__title {
  overflow: hidden;
  color: var(--main-text-color);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 150%;
}

.news__learnmore {
  color: var(--main-text-color);
  font-size: 1rem;
  font-weight: 400;
  text-decoration-line: underline;
  margin-bottom: 24px;
}

.news__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.news__profile__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news__profile__texts h5 {
  color: var(--main-text-color);
  font-size: 1rem;
  font-weight: 600;
  line-height: 150%;
}

.news__profile__texts p {
  color: #697586;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 1500px) {
  .news__img {
    min-height: 100px;
  }
}
@media (max-width: 1100px) {
  .news__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .news__list a {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 900px) {
  .news__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
  }
  .news__list a {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .news__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
  }
  .news__list a {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .news__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
  }
  .news__list a {
    width: 100%;
  }
}
.e_learning {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(97deg, #5E0303 0%, #8A0202 100%);
}

/* Dot pattern on e_learning */
.e_learning::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Diagonal lines on e_learning */
.e_learning::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 22px,
      rgba(255,255,255,0.04) 22px,
      rgba(255,255,255,0.04) 23px
    );
  pointer-events: none;
}

.e_learning__all {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.e_learning__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.e_learning__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.e_learning__text__link {
  width: 420px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
}

.e_learning__text__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main-white-color);
  font-family: "Red Rose";
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 119.643%;
}

.e_learning__text__title::after {
  position: absolute;
  display: block;
  content: "";
  width: 46px;
  height: 46px;
  background-image: url(../images/e-learning/arroww.svg);
  background-size: cover;
  background-position: center;
  right: -116px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.e_learning__text__link:hover .e_learning__text__title::after {
  right: -60px;
  -webkit-transform: rotate(-390deg);
          transform: rotate(-390deg);
  opacity: 1;
}

.e_learning__text p {
  color: var(--main-white-color);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 48px;
}

.e_learning__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.e__info__one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.e__info__img {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: #FFF;
  margin-bottom: 6px;
}

.e__info__img img {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

.e__info__title {
  color: var(--main-white-color);
  font-size: 1.25rem;
  font-weight: 600;
}

.e__info__text {
  width: 80%;
  color: var(--main-white-color);
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.9;
}

.e_learning__img img {
  width: 700px;
}

/*info use*/
.infouse {
  width: 100%;
  position: relative;
  padding: 72px 0;
}

.infouse__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info__card {
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 6;
}

.infocard__one {
  z-index: -5;
  position: absolute;
  width: 633.59px;
  height: 416.39px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 24px;
  border: 1px solid #E1E9F0;
  background: #FFF;
}

.infocard__two {
  z-index: -4;
  position: absolute;
  width: 587.52px;
  height: 555.19px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 24px;
  border: 1px solid #E1E9F0;
  background: #FFF;
}

.infocard__bg {
  z-index: -10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1210px;
  height: 874px;
  position: absolute;
  background-image: url(../images/info-use/formbg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.info__forms {
  width: 542px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 48px;
  border-radius: 24px;
  border: 1px solid #E1E9F0;
  background: #FFF;
}

.info__forms__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info__forms__title {
  color: var(--main-text-color);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 133.333%;
  letter-spacing: -0.5px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.info__forms__text {
  width: 429px;
  color: var(--main-text-color);
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.formdiv {
  width: 100%;
}

.info__forms__inputs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.form__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.form__email label {
  color: var(--main-text-color);
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.5px;
}

.form__email input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #E1E9F0;
  background: #FFF;
}

.form__email textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #E1E9F0;
  background: #FFF;
  min-width: 445px;
  max-width: 445px;
  min-height: 175px;
}

.form__email input::-webkit-input-placeholder {
  color: #9BADBC;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.form__email input::-moz-placeholder {
  color: #9BADBC;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.form__email input:-ms-input-placeholder {
  color: #9BADBC;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.form__email input::-ms-input-placeholder {
  color: #9BADBC;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.form__email input::placeholder {
  color: #9BADBC;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.form__email textarea::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #9BADBC;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.form__email textarea::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #9BADBC;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.form__email textarea:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #9BADBC;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.form__email textarea::-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #9BADBC;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.form__email textarea::placeholder {
  font-family: "Montserrat", sans-serif;
  color: #9BADBC;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.form__btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4px;
}

.form__btn button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  border: 1px solid #5E0303;
  background: -webkit-gradient(linear, left top, right top, from(#5E0303), to(#8A0202));
  background: linear-gradient(90deg, #5E0303 0%, #8A0202 100%);
}

.form__btn p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: -0.5px;
}

.form__btn p::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/info-use/arrow-right-02.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1800px) {
  .infocard__one {
    width: 733px;
  }
  .infocard__two {
    width: 687px;
  }
  .info__forms {
    width: 622px;
  }
  .form__email textarea {
    max-width: 524px;
    min-width: 524px;
  }
}
/*footer*/
.footer-top {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(95deg, #5E0303 0%, #8A0202 100%);
  overflow: hidden;
}

.footer-top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.11) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.footer-top::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(255,255,255,0.04) 18px,
      rgba(255,255,255,0.04) 19px
    );
  pointer-events: none;
}

.footer-bottom {
  background: #420000;
  padding: 20px 0;
}

.footer-bottom p {
  color: #F5DEDE;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
}

.scroll-TOP {
  position: absolute;
  right: 96px;
  bottom: 48px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-animation: Scrolltop 1.4s infinite ease-in-out both;
          animation: Scrolltop 1.4s infinite ease-in-out both;
  border-radius: 50%;
}

.scroll-TOP:hover {
  -webkit-box-shadow: rgba(38, 57, 77, 0.5) 0px 20px 30px -10px;
          box-shadow: rgba(38, 57, 77, 0.5) 0px 20px 30px -10px;
}

.footer__all {
  position: relative;
  z-index: 28;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__logo {
  z-index: 33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
}

.footer__logo__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 22px;
}

.footer__logo__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo__item::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/footer/Call.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 16px;
}

.footer__logo__item__email::before {
  background-image: url(../images/footer/email.svg);
}

.footer__logo__item__map::before {
  background-image: url(../images/footer/location.svg);
}

.footer__logo__item__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.footer__logo__item__texts h6 {
  width: 100%;
  color: var(--main-white-color);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.32px;
}

.footer__logo__item__texts a {
  color: #F5DEDE;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}

.footer__map iframe {
  border-radius: 12px;
  border: 1px solid #FB4749;
}

.footer__map p {
  width: 310px;
  color: var(--main-light-text-color);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 28px;
}

.footer__nav__title {
  color: var(--main-white-color);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.32px;
}

.footer__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.footer__nav__item a {
  color: var(--main-light-text-color);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer__nav__item a:hover {
  color: var(--main-white-color);
  text-decoration: underline;
}

.footer__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}

.footer__bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__bot h4 {
  color: var(--main-white-color);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 160%;
}

.footer__bot p {
  width: 310px;
  color: var(--main-light-text-color);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 200%;
  margin: 16px 0;
}

.footer__bot_link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 40px;
  background: #FFF;
  padding: 12px 28px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--main-title-color);
}

.footer__media__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-top: 24px;
}

.footer__media__item:hover a img {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.footer__media__item:hover a img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (min-width: 1500px) {
  .scroll-TOP {
    right: 8%;
  }
}
@-webkit-keyframes Scrolltop {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@keyframes Scrolltop {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
.aboutHero {
  padding: 80px 0px;
  position: relative;
  overflow: hidden;
  border-radius: 0px 0px 20px 20px;
  background: var(--red, linear-gradient(180deg, #5E0303 0%, #8A0202 100%));
}

/* Premium dot pattern overlay for aboutHero */
.aboutHero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.11) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.aboutHero::after {
  content: "";
  z-index: 0;
  width: 788px;
  height: 788px;
  position: absolute;
  background-image: url(../images/PAGE_about_images/hero/ellipspattern.svg);
  background-size: cover;
  background-repeat: no-repeat;
  top: calc(50% - 250px);
  left: calc(50% - 900px);
  pointer-events: none;
}

.aboutHero__all {
  position: relative;
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.aboutHero__texts {
  z-index: 21;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 42%;
}

.aboutHero__img {
  width: 48% !important;
  max-width: 500px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.aboutHero__img img {
  width: 100% !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

@media (max-width: 1500px) {
  .aboutHero {
    padding: 80px 0px;
  }
  .aboutHero__texts {
    z-index: 21;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 45%;
  }
  .aboutHero__img {
    width: 54%;
  }
}
@media (max-width: 1050px) {
  .aboutHero__all {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 24px;
  }
  .aboutHero__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .aboutHero__texts {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    z-index: 21;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 86%;
  }
  .about__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
  .about__bottom__texts {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__bottom__img {
    width: 60%;
    max-width: 400px;
  }
  .about__bottom__title {
    text-align: center;
  }
  .about__bottom__text {
    text-align: center;
  }
  .aboutHero__img {
    width: 80%;
  }
}
.aboutServices {
  padding: 72px 0 0 0;
}

.aboutServices__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.aboutServices__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
}

.aboutServices__item {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  min-width: 290px;
  min-height: 430px;
  max-height: 430px;
  width: 23.5%;
  padding: 32px 20px 20px 20px;
  border-radius: 16px;
  border: 1px solid #8A0303;
  background: #FFFDFA;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.aboutServices__item::after {
  content: "";
  width: 100px;
  height: 92.557px;
  position: absolute;
  background-image: url(../images/PAGE_about_images/vazifalar/logoopay.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  top: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.aboutServices__item:hover {
  -webkit-box-shadow: -8px 39px 11px 0px rgba(138, 2, 2, 0), -5px 25px 10px 0px rgba(138, 2, 2, 0.01), -3px 14px 9px 0px rgba(138, 2, 2, 0.03), -1px 6px 6px 0px rgba(138, 2, 2, 0.03), 0px 2px 4px 0px rgba(138, 2, 2, 0.05);
          box-shadow: -8px 39px 11px 0px rgba(138, 2, 2, 0), -5px 25px 10px 0px rgba(138, 2, 2, 0.01), -3px 14px 9px 0px rgba(138, 2, 2, 0.03), -1px 6px 6px 0px rgba(138, 2, 2, 0.03), 0px 2px 4px 0px rgba(138, 2, 2, 0.05);
}

.aboutServices__item:hover::after {
  -webkit-transform: scale(1.1) rotate(15deg);
          transform: scale(1.1) rotate(15deg);
  right: 0;
  top: 0;
}

.aboutServices__number {
  color: var(--main-title-color);
  font-size: 2rem;
  font-weight: 600;
}

.aboutServices__text {
  color: var(--main-text-color);
  font-size: 1rem;
  font-weight: 400;
}

.aboutServices__link {
  color: var(--main-text-color);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration-line: underline;
}

.aboutServices__link:hover {
  color: var(--main-title-color);
}

.aboutServices__img {
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
}

.aboutServices__img img {
  width: 100%;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1300px) {
  .aboutServices__list {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
  .aboutServices__item {
    width: 48%;
    row-gap: 20px;
  }
}
@media (max-width: 600px) {
  .aboutServices__list {
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .aboutServices__item {
    width: 95%;
  }
}
.aboutActivity {
  padding-bottom: 72px;
}

.aboutActivity__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.aboutActivity__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 16px;
}

.aboutActivity__item {
  overflow: hidden;
  position: relative;
  width: 32.5%;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px 28px;
  border-radius: 16px;
  background: linear-gradient(130deg, #5E0303 0%, #8A0202 99.99%);
}

.aboutActivity__item::after {
  content: "";
  position: absolute;
  width: 121px;
  height: 111px;
  background-image: url(../images/PAGE_about_images/huquqiy-asoslar/logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: -100px;
  right: -100px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0.3;
}

.aboutActivity__item:hover .aboutActivity__quote img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.aboutActivity__item:hover::after {
  -webkit-transform: rotate(375deg);
          transform: rotate(375deg);
  top: 0;
  right: 0;
}

.aboutActivity__item__title {
  color: var(--main-white-color);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 30px;
}

.aboutActivity__item__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.aboutActivity__item__texts::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background-image: url(../images/PAGE_about_images/huquqiy-asoslar/lexuzlogo.svg);
}

.aboutActivity__item__title {
  color: var(--main-white-color);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 170%;
  margin-bottom: 2px;
}

.aboutActivity__item__link {
  color: var(--main-white-color);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 171.429%;
  text-decoration-line: underline;
  opacity: 0.7;
  -webkit-transition: all 0.3 ease-in-out;
  transition: all 0.3 ease-in-out;
}

.aboutActivity__item__link:hover {
  opacity: 1;
}

.aboutActivity__item__w50 {
  width: 49.5%;
}

/* aboutComposition */
.aboutComposition {
  padding-bottom: 2px;
}

.aboutComposition__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.aboutComposition__img {
  width: 100%;
}

.aboutComposition__img img {
  width: 99%;
}

.historyHero {
  padding: 80px 0 80px 0;
}

.historyHero__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.historyHero__texts {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}

.historyHero__bottom__title {
  color: var(--main-title-color);
  font-family: "Red Rose";
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -1.28px;
}

.historyHero__bottom__text {
  width: 90%;
  color: var(--main-text-color);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 145.455%;
}

.historyHero__img {
  width: 50%;
  height: 445px;
  border-radius: 16px;
  border: 5px solid #8A0303;
  background: url(_path-to-image.html>) lightgray -242.134px -100.016px/164.795% 144.951% no-repeat;
  overflow: hidden;
}

.historyHero__img img {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.teamHero {
  padding: 72px 0;
}

.teamHeropadding {
  padding: 0;
  padding-bottom: 72px;
}

.teamHero__all {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.teamHero__title {
  text-align: center;
  font-size: 2.5rem;
}

.newspage {
  padding: 72px 0px;
}

.newspage__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 24px;
}

.newspage__all {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.newspage__upload {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--main-title-color);
  padding: 18px 24px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 100%;
  border-radius: 1920px;
  border: 2px solid #8A0303;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.newspage__upload::after {
  content: "";
  display: block;
  width: 18px;
  height: 20px;
  background-image: url(../images/PAGE_news_images/Vector.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.newspage__upload:hover::after {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.allnewspadding0 {
  margin-bottom: 20px;
}

.news__learnmore {
  color: #000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.news__learnmore:hover {
  color: var(--main-title-color);
}

@media (max-width: 600px) {
  .newspage__list {
    row-gap: 12px;
  }
}
.news__inner__hero {
  padding: 72px 0;
}

.news__inner__all {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news__inner__left {
  width: 75.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
  padding: 36px;
  border-radius: 20px;
  border: 1px solid #8A0303;
  background: #FFF;
}

.news__inner__left__title {
  color: var(--main-dark-blue-color);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 150%;
}

.news__inner__views {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.news__inner__calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #697586;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
}

.news__inner__calendar::before {
  content: "";
  display: block;
  margin-right: 6px;
  width: 24px;
  height: 24px;
  background-image: url(../images/PAGE_news_images/calendar.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.news__inner__view::before {
  background-image: url(../images/PAGE_news_images/eye.svg);
}

.news__inner__text {
  color: var(--main-text-color);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 150%;
}

.news__inner__imgs__list {
  margin-top: 8px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news__inner__imgs__item {
  width: 32.5%;
  border-radius: 8px;
  overflow: hidden;
}

.news__inner__imgs__item img {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.news__inner__imgs__item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news__inner__right {
  padding: 20px;
  row-gap: 12px;
}

.news__inner__right {
  width: 23%;
}

.news__inner__right__title {
  color: var(--main-text-color);
  font-size: 1.25rem;
  font-weight: 600;
}

.news__inner__right__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news__inner__right__item {
  padding: 17px 0;
  border-bottom: 1px solid #697586;
}

.news__inner__right__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news__inner__right__img {
  width: 84px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 12px;
}

.news__inner__right__img img {
  width: 84px;
  height: 64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news__inner__right__texts {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news__inner__right__texts h6 {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.news__inner__right__item:hover .news__inner__right__texts h6 {
  color: var(--main-title-color);
}

.news__inner__views__min {
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.news__inner__calendar__min {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 150%;
}

.news__inner__calendar__min::before {
  width: 16px;
  height: 16px;
}

.aboutContacts {
  padding: 72px 0 0;
}

.aboutContacts__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.aboutContacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 72px;
}

.aboutContacts__item {
  overflow: hidden;
  position: relative;
  width: 32.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px;
  border-radius: 12px;
  border: 1px solid #8A0303;
  background: #FFF;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.aboutContacts__item:hover {
  -webkit-box-shadow: -8px 39px 11px 0px rgba(138, 2, 2, 0), -5px 25px 10px 0px rgba(138, 2, 2, 0.01), -3px 14px 9px 0px rgba(138, 2, 2, 0.03), -1px 6px 6px 0px rgba(138, 2, 2, 0.03), 0px 2px 4px 0px rgba(138, 2, 2, 0.05);
          box-shadow: -8px 39px 11px 0px rgba(138, 2, 2, 0), -5px 25px 10px 0px rgba(138, 2, 2, 0.01), -3px 14px 9px 0px rgba(138, 2, 2, 0.03), -1px 6px 6px 0px rgba(138, 2, 2, 0.03), 0px 2px 4px 0px rgba(138, 2, 2, 0.05);
}

.aboutContacts__item::after {
  content: "";
  width: 100px;
  height: 92.557px;
  position: absolute;
  background-image: url(../images/PAGE_about_images/vazifalar/logoopay.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  top: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.aboutContacts__item:hover::after {
  -webkit-transform: scale(1.1) rotate(15deg);
          transform: scale(1.1) rotate(15deg);
  right: 0;
  top: 0;
}

.aboutContacts__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}

.aboutContacts__item__img {
  margin-bottom: 24px;
}

.aboutContacts__item__title {
  color: var(--main-title-color);
  text-align: center;
  font-family: "Red Rose";
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.aboutContacts__item__text {
  color: #697586;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}

.aboutmaps__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.aboutmaps__item {
  width: 25%;
}

.aboutmaps__iframe {
  width: 73%;
  height: 395px;
  border: 1px solid #8A0303;
  border-radius: 12px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}

.aboutmaps__iframe iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.aboutmaps__iframe:hover {
  -webkit-box-shadow: -8px 39px 11px 0px rgba(138, 2, 2, 0), -5px 25px 10px 0px rgba(138, 2, 2, 0.01), -3px 14px 9px 0px rgba(138, 2, 2, 0.03), -1px 6px 6px 0px rgba(138, 2, 2, 0.03), 0px 2px 4px 0px rgba(138, 2, 2, 0.05);
          box-shadow: -8px 39px 11px 0px rgba(138, 2, 2, 0), -5px 25px 10px 0px rgba(138, 2, 2, 0.01), -3px 14px 9px 0px rgba(138, 2, 2, 0.03), -1px 6px 6px 0px rgba(138, 2, 2, 0.03), 0px 2px 4px 0px rgba(138, 2, 2, 0.05);
}

.aboutappeal {
  padding: 0 0 72px 0;
}

.aboutappeal__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.course {
  padding: 72px 0;
}

.course__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.course__list a {
  width: 32.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.course__list {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 16px;
}

.course__item {
  width: 100%;
  padding: 20px;
}

.course__news__img {
  border: 1px solid var(--main-light-red-color);
  border-radius: 16px 16px 16px 16px;
}

.course__liked {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6px;
}

.course__checked__like {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  background-image: url(../images/PAGE_course_images/heart.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.course__checked__like:checked {
  background-image: url(../images/PAGE_course_images/heartcheck.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.course__hashtag {
  color: #8A0303;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 166.667%;
  background: #F5DEDE;
  border-radius: 45px;
  padding: 6px 16px;
}

.course__inner__books::before {
  background-image: url(../images/PAGE_course_images/book.svg);
}

.course__inner__times::before {
  background-image: url(../images/PAGE_course_images/timer-start.svg);
}

.course__news__title {
  margin-bottom: 24px;
}

.course__news__title__h5 {
  color: var(--main-title-color);
  font-size: 1.375rem;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 12px;
}

@media (max-width: 1100px) {
  .course__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course__list a {
    width: 48%;
  }
}
@media (max-width: 900px) {
  .course__list a {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .course__list a {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .course__list a {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */

/* ===== GOOGLE TRANSLATE - Toolbar yashirish ===== */
/* Google Translate yuqoridagi toolbarni yashirish */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

/* Body top offset ni tuzatish (Google toolbar body ga top qo'shadi) */
body.notranslate,
body {
  top: 0 !important;
}

/* Google Translate widget o'zini yashirish */
#google_translate_element {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Google Translate dropdown widget yashirish */
.goog-te-gadget,
.goog-te-combo {
  display: none !important;
}

/* Active til tugmasini ajratib ko'rsatish */
.navbar__flag.lang-active {
  box-shadow: 0 0 0 2px #8A0303 inset;
  font-weight: 700 !important;
}

/* ==========================================
   UX/UI PREMIUM ENHANCEMENTS BY ANTIGRAVITY
   ========================================== */

/* 1. SCROLL REVEAL ANIMATIONS */
.reveal-el {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-el.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delay Utilities for children of reveal-el */
.stagger-parent > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-el.revealed.stagger-parent > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-el.revealed.stagger-parent > *:nth-child(1) { transition-delay: 100ms; }
.reveal-el.revealed.stagger-parent > *:nth-child(2) { transition-delay: 200ms; }
.reveal-el.revealed.stagger-parent > *:nth-child(3) { transition-delay: 300ms; }
.reveal-el.revealed.stagger-parent > *:nth-child(4) { transition-delay: 400ms; }
.reveal-el.revealed.stagger-parent > *:nth-child(5) { transition-delay: 500ms; }
.reveal-el.revealed.stagger-parent > *:nth-child(6) { transition-delay: 600ms; }

/* 2. STATS SECTION */
.stats {
  padding: 80px 0;
  background: #FFF;
}

.stats .container {
  overflow: visible;
}

.stats__all {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.stats__card {
  background: #FFF;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #E1E9F0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stats__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5E0303 0%, #8A0202 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stats__card:hover::before {
  transform: scaleX(1);
}

.stats__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(138, 2, 2, 0.08);
  border-color: rgba(138, 2, 2, 0.15);
}

.stats__number {
  font-size: 3rem;
  font-weight: 700;
  color: #8A0202;
  line-height: 1;
}

.stats__plus {
  font-size: 2rem;
  font-weight: 600;
  color: #8A0202;
  margin-left: 2px;
}

.stats__label {
  font-size: 1rem;
  font-weight: 500;
  color: #4A5568;
  margin-top: 12px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .stats__all {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats__all {
    grid-template-columns: 1fr;
  }
}

/* 3. BACK TO TOP PROGRESS RING */
.scroll-TOP-progress {
  position: fixed;
  right: 48px;
  bottom: 48px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  visibility: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.scroll-TOP-progress.active {
  opacity: 1;
  visibility: visible;
}

.scroll-TOP-progress:hover {
  transform: translateY(-5px);
  background: #FFF;
  box-shadow: 0 8px 30px rgba(138, 2, 2, 0.22);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.1s;
  transform-origin: 50% 50%;
}

.scroll-TOP-icon {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: Scrolltop 1.4s infinite ease-in-out both;
}

.scroll-TOP-icon img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.scroll-TOP-progress:hover .scroll-TOP-icon img {
  transform: scale(1.15);
}

/* ==========================================
   RESPONSIVE NAVBAR & HAMBURGER STYLES
   ========================================== */
.navbar__toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--main-white-color);
  font-size: 1.375rem;
  cursor: pointer;
  padding: 8px 12px;
  line-height: 1;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.navbar__toggle:hover {
  color: var(--main-light-red-color);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1350px) {
  .navbar .container {
    padding: 0 24px;
  }
  .navbar__logo img {
    max-width: 200px;
    height: auto;
  }
  .navbar__list {
    gap: 14px;
  }
  .navbar__link {
    font-size: 0.9375rem;
  }
}

@media (max-width: 1200px) {
  .navbar .container {
    padding: 0 16px !important;
  }
  .navbar__list {
    gap: 12px;
  }
  .navbar__link {
    font-size: 0.875rem;
  }
  .navbar__logo img {
    max-width: 185px;
    height: auto;
  }
  .navbar__btns {
    gap: 10px;
  }
}

@media (max-width: 1100px) {
  .navbar__toggle {
    display: block; /* Show menu toggle */
  }

  .navbar__list {
    display: none; /* Hide default list */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(94, 3, 3, 0.98);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    z-index: 998;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Active state when open */
  .navbar__list.navbar__list--active {
    display: flex;
    animation: slideDownClassic 0.25s ease forwards;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar__down::after {
    margin-left: auto;
  }

  /* Submenus on mobile dropdown style */
  .navbar__item__list {
    position: static;
    display: none;
    width: 100%;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    box-shadow: none;
    margin-top: 4px;
    border-radius: 6px;
    row-gap: 8px;
  }

  .navbar__item.show-dropdown .navbar__item__list {
    display: flex;
  }

  /* Topbar scaling on mobile */
  .header__top {
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
    align-items: center;
  }

  .header__top-left, .header__top-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .header__top-right__contacts {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .navbar__logo img {
    max-width: 160px;
    height: auto;
  }
  .header__top-left, .header__top-right {
    gap: 8px;
  }
  .header__top-right__contacts {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}

@keyframes slideDownClassic {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   PREMIUM DARK THEME & ACCESSIBILITY SYSTEM (INKLYUZIVLIK)
   ========================================================================== */

/* Unified Transitions for Premium feel */
body, section, footer, div, p, span, a, h1, h2, h3, h4, h5, h6, input, textarea, select, button, .navbar, .header, .faq__item, .faq__accordion, .faq__cta, .study-guide__card, .stats__card {
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.3s ease;
}

/* DARK MODE OVERRIDES */
html.dark-theme {
  --main-bg-color: #0c0505;
  --main-text-color: #f7ebeb;
  --main-light-text-color: #f7ebeb; /* Fixed top-bar link text contrast */
  --main-title-color: #ff5254;
  --main-dark-blue-color: #ffffff;
  --main-dark-red-color: #170202;
  --main-light-red-color: #ff6062;
  --main-white-color: #150909;
}

html.dark-theme body {
  background-image: none !important; /* Hide light pattern */
  background-color: #0c0505;
}

html.dark-theme .header {
  background: #170202;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

html.dark-theme .navbar {
  background: #1c0505;
}

html.dark-theme .nav-bg {
  background-color: #170202 !important; /* Fixed salmon pink background in dark mode */
}

html.dark-theme .navbar__link {
  color: #f7ebeb !important;
}

html.dark-theme .navbar__item__list {
  background: #1d0707;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

html.dark-theme .about__bottom, 
html.dark-theme .e_learning__all, 
html.dark-theme .aboutHero__all {
  background: linear-gradient(135deg, #170202 0%, #290808 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

html.dark-theme .study-guide__card,
html.dark-theme .stats__card,
html.dark-theme .faq__accordion,
html.dark-theme .faq__item,
html.dark-theme .faq__cta,
html.dark-theme .infouse__brand-card,
html.dark-theme .infouse__form-card {
  background: #150909 !important;
  color: #f7ebeb !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

html.dark-theme .faq {
  background-color: #0c0505 !important;
}

html.dark-theme .faq__question,
html.dark-theme .faq__cta h4,
html.dark-theme .study-guide__title,
html.dark-theme .stats__number,
html.dark-theme .brand-card__content h5 {
  color: #ffffff !important;
}

html.dark-theme .study-guide__desc,
html.dark-theme .faq__body,
html.dark-theme .faq__desc,
html.dark-theme .stats__label,
html.dark-theme .brand-card__content p {
  color: #bfaaaa !important;
}

html.dark-theme .form__group label {
  color: #e5cccc !important;
}

html.dark-theme .form__input-wrap input,
html.dark-theme .form__input-wrap select,
html.dark-theme .form__input-wrap textarea {
  background: #100606 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

html.dark-theme .form__input-wrap input::placeholder,
html.dark-theme .form__input-wrap textarea::placeholder {
  color: #705858 !important;
}

html.dark-theme footer {
  background: #170202 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* HIGH CONTRAST THEME - INVERT NEGATIVE MODE */
html.high-contrast {
  filter: invert(1) hue-rotate(180deg) !important;
}
html.high-contrast img,
html.high-contrast video,
html.high-contrast iframe,
html.high-contrast svg,
html.high-contrast [style*="background-image"],
html.high-contrast .header__accessibility-btn {
  filter: invert(1) hue-rotate(180deg) !important; /* Re-invert to display media correctly */
}

/* BLUE COLOR THEME REPLACEMENT FILTER */
html.blue-theme {
  --main-dark-red-color: #1e3a8a !important;   /* Deep Blue */
  --main-light-red-color: #3b82f6 !important;  /* Bright Blue */
  --main-title-color: #2563eb !important;      /* Royal Blue */
  --main-btn-color: #2563eb !important;
}
html.blue-theme .navbar,
html.blue-theme .header,
html.blue-theme .nav-bg,
html.blue-theme .study-guide__btn {
  background: var(--main-dark-red-color) !important;
}
html.blue-theme .navbar__btn-link,
html.blue-theme .study-guide__btn:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
}

/* MONOCHROME (RANG AJRATISHDA QIYNALADIGANLAR UCHUN) */
html.monochrome {
  filter: grayscale(100%) !important;
}

/* FONT SIZE SCALING */
html.font-large p,
html.font-large span,
html.font-large li,
html.font-large a,
html.font-large input,
html.font-large textarea,
html.font-large button,
html.font-large div {
  font-size: 116% !important;
  line-height: 1.6 !important;
}
html.font-large h1 { font-size: 125% !important; }
html.font-large h2 { font-size: 122% !important; }
html.font-large h3 { font-size: 120% !important; }

html.font-xlarge p,
html.font-xlarge span,
html.font-xlarge li,
html.font-xlarge a,
html.font-xlarge input,
html.font-xlarge textarea,
html.font-xlarge button,
html.font-xlarge div {
  font-size: 130% !important;
  line-height: 1.7 !important;
}
html.font-xlarge h1 { font-size: 145% !important; }
html.font-xlarge h2 { font-size: 140% !important; }
html.font-xlarge h3 { font-size: 135% !important; }

/* Exclude navigation text scaling from breaking mobile menu layout */
html.font-large .navbar__link,
html.font-xlarge .navbar__link {
  font-size: 0.8438rem !important;
}

/* ACCESSIBILITY TOGGLE PANEL STYLES */
.accessibility-menu {
  position: relative;
  display: inline-block;
  z-index: 100000 !important;
}

.accessibility-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: all 0.3s;
}

.accessibility-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.08);
}

.accessibility-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 280px;
  background: #ffffff;
  border: 1px solid rgba(138, 3, 3, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 10000;
  animation: slideDownClassic 0.25s ease-out;
}

.accessibility-menu.show-panel .accessibility-dropdown {
  display: flex;
}

.accessibility-dropdown h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #00002C;
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 8px;
}

.accessibility-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accessibility-row label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #555555;
}

.accessibility-options {
  display: flex;
  gap: 6px;
}

.access-opt-btn {
  flex: 1;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e1e1e;
  cursor: pointer;
  transition: all 0.25s;
}

.access-opt-btn:hover, .access-opt-btn.active {
  background: #8A0303;
  color: #ffffff;
  border-color: #8A0303;
}

/* Theme toggle btn style */
.theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: all 0.3s;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.08);
}