@charset "UTF-8";
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1A1A2E;
  background-color: #fff;
  line-height: 1.6;
  direction: rtl;
}

.StickyLB {
  position: fixed;
  z-index: 9999;
  right: 50%;
  bottom: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 320px;
  max-width: 100vw;
  height: auto;
  max-height: 100px;
  background: #fff;
  overflow: hidden;
}
.StickyLB > .Sticky {
  width: 320px !important;
  max-width: 100% !important;
  height: auto;
  max-height: 100px;
}
.StickyLB iframe {
  max-width: 100% !important;
  max-height: 100px !important;
}

.horizontalTextBlock {
  margin: 20px 0;
  padding: 10px 20px;
  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;
  border: 1px solid rgba(136, 143, 142, 0.1803921569);
  border-radius: 10px;
}
.horizontalTextBlock p {
  font-size: 16px;
  color: #000;
  text-align: justify;
  line-height: 1.8;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

.container {
  margin-inline: auto;
}

/* sm: ≥640px */
@media (min-width: 640px) {
  .container {
    max-width: 100%;
  }
}
/* md: ≥768px */
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
/* lg: ≥1024px */
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
/* xl: ≥1280px */
@media (min-width: 1280px) {
  .container {
    width: calc(100% - 330px);
    max-width: 1400px;
  }
}
/* 2xl: ≥1536px */
@media (min-width: 1536px) {
  .container {
    width: calc(100% - 330px);
    max-width: 1400px;
  }
}
.site-header {
  width: 100%;
  background-color: #fff;
}

.top-header {
  background-color: #3a3a3a;
  color: #ffffff;
  font-size: 14px;
}
.top-header__inner {
  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;
  min-height: 32px;
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: 0.75rem;
}
.top-header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.top-header__social-link {
  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;
  line-height: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.top-header__social-link svg {
  width: 16px;
  height: 16px;
}
.top-header__social-link:hover {
  opacity: 0.75;
}
.top-header__social-link--facebook svg {
  fill: #3b5998;
}
.top-header__social-link--twitter svg {
  fill: #1da1f2;
}
.top-header__social-link--instagram svg {
  fill: #e4405f;
}
.top-header__datetime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #e0e0e0;
  white-space: nowrap;
}
.top-header__datetime span {
  font-size: 14px;
  font-weight: 600;
}
.top-header__separator {
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.35);
}

.header-banner {
  padding-block: 6px;
}
.header-banner__inner {
  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;
}
.header-banner__img {
  width: 728px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.middle-header {
  padding-block: 8px 10px;
}
.middle-header__inner {
  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;
  gap: 1rem;
}
.middle-header__ad {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.middle-header__ad img {
  width: 468px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.middle-header__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
  margin-left: auto;
}
.middle-header__logo-link {
  display: block;
  line-height: 0;
}
.middle-header__logo-link img {
  display: block;
  width: auto;
  max-width: 170px;
}

.hero-banner {
  line-height: 0;
}
.hero-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-banner__img {
  width: 100%;
  max-width: 1560px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.main-nav {
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), color-stop(162.5%, #F5F5F5));
  background: linear-gradient(360deg, #FFFFFF 0%, #F5F5F5 162.5%);
  padding: 12px 0;
}
@media (max-width: 768px) {
  .main-nav {
    padding: 12px 1.5rem;
  }
}
.main-nav__inner {
  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;
  gap: 0.75rem;
  padding: 13px 30px;
  border: 1px solid rgba(187, 187, 187, 0.2588235294);
  border-radius: 33554400px;
}
.main-nav__cta {
  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;
  gap: 0 8px;
  background: -webkit-gradient(linear, left top, right top, from(#E63946), color-stop(7.69%, #E33743), color-stop(15.38%, #E03440), color-stop(23.08%, #DD313E), color-stop(30.77%, #DB2F3B), color-stop(38.46%, #D82C38), color-stop(46.15%, #D52935), color-stop(53.85%, #D22732), color-stop(61.54%, #CF242F), color-stop(69.23%, #CC212C), color-stop(76.92%, #C91D29), color-stop(84.62%, #C71A26), color-stop(92.31%, #C41622), to(#C1121F));
  background: linear-gradient(90deg, #E63946 0%, #E33743 7.69%, #E03440 15.38%, #DD313E 23.08%, #DB2F3B 30.77%, #D82C38 38.46%, #D52935 46.15%, #D22732 53.85%, #CF242F 61.54%, #CC212C 69.23%, #C91D29 76.92%, #C71A26 84.62%, #C41622 92.31%, #C1121F 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  height: 45px;
  width: 210px;
}
.main-nav__cta p {
  font-size: 18px;
  font-weight: 700;
}
.main-nav__cta--active {
  -webkit-box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.18);
          box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.18);
}
.main-nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 7rem;
}
.main-nav__links li a {
  font-size: 18px;
  font-weight: 500;
}
.main-nav__links li.active .main-nav__link {
  color: #C1121F;
  background-color: rgba(193, 18, 31, 0.09);
  font-weight: 700;
}
.main-nav__links li.active img {
  -webkit-filter: invert(15%) sepia(94%) saturate(4123%) hue-rotate(348deg) brightness(78%) contrast(102%);
          filter: invert(15%) sepia(94%) saturate(4123%) hue-rotate(348deg) brightness(78%) contrast(102%);
}
.main-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A2E;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 20px;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

@media (max-width: 768px) {
  .top-header__datetime {
    font-size: 12px;
    gap: 8px;
  }
  .header-banner__img {
    width: 100%;
    max-width: 728px;
    height: auto;
    aspect-ratio: 728/90;
  }
  .middle-header__inner {
    -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;
  }
  .middle-header__ad img {
    width: 100%;
    max-width: 468px;
    height: auto;
    aspect-ratio: 468/110;
  }
  .middle-header__logos {
    margin-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .hero-banner__img {
    height: auto;
    aspect-ratio: 970/250;
  }
  .main-nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 10px;
    gap: 10px;
  }
  .main-nav__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 14px;
  }
  .main-nav__links li a {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .top-header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    padding-block: 6px;
    min-height: auto;
  }
  .top-header__datetime {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
  }
  .top-header__datetime .top-header__separator {
    display: none;
  }
}
.intro-section {
  margin-bottom: 30px;
  position: relative;
}
.intro-section__inner {
  background-color: #141414;
  position: relative;
  padding: 48px;
  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;
  text-align: center;
  gap: 0;
}
.intro-section__label {
  font-size: 12px;
  font-weight: 500;
  color: #e62117;
  margin-bottom: 12px;
}
.intro-section__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 12px;
}
.intro-section__divider {
  display: block;
  width: 48px;
  height: 2px;
  background-color: #e62117;
  margin-bottom: 12px;
}
.intro-section__desc {
  max-width: 640px;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 1.8;
}

@media (max-width: 576px) {
  .intro-section {
    padding-block: 36px 5px;
    margin-bottom: 20px;
  }
  .intro-section__inner {
    padding: 5px 48px;
  }
  .intro-section__label {
    margin-bottom: 10px;
  }
  .intro-section__title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .intro-section__divider {
    margin-bottom: 14px;
  }
}
.site-main {
  position: relative;
}

.site-main__content {
  position: relative;
  z-index: 1;
}

.guttersBlocks {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 340px + 340px);
  max-width: calc(1400px + 340px);
  height: 100%;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 1280px) {
  .guttersBlocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.rightgt,
.leftgt {
  position: sticky;
  top: 0px;
  width: 160px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  pointer-events: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.rightgt img,
.leftgt img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 0px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.main-body__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 35px;
  align-items: start;
}
.main-body__sidebar {
  width: 300px;
  min-width: 300px;
}
.main-body__content {
  width: calc(100% - 300px);
  min-width: 0;
}
.main-body .rowUnderForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-top: 30px;
}
.main-body .rowUnderForm img {
  max-width: 300px;
}

.universityLogosBlock {
  padding: 65px 80px;
  background: #FAFAFA;
  margin-bottom: 30px;
}
.universityLogosBlock__title {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 130%;
  color: #000135;
  text-align: center;
  margin-bottom: 25px;
}
.universityLogosBlock__divider {
  font-family: "Cairo", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 100%;
  text-align: center;
  color: #6B7280;
  display: block;
  margin-bottom: 36px;
}
.universityLogosBlock__inner {
  gap: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
.universityLogosBlock .oneUniversityLogo {
  background: #FFFFFF;
  padding: 0 32px;
  height: 120px;
  width: 264px;
  max-width: 100%;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  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;
}
.universityLogosBlock .oneUniversityLogo a {
  position: static;
  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;
  width: 100%;
  height: 100%;
}
.universityLogosBlock .oneUniversityLogo img {
  max-width: 200px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  position: relative;
  display: block;
}

.adName {
  position: absolute;
  z-index: 9;
  color: #000;
  background: #fff;
  padding: 0;
  line-height: 30px;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 250px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.videoBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100px;
  position: relative;
}

.nativeBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100px;
  position: relative;
}

.pagesplitbanner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
  position: relative;
}
.pagesplitbanner img {
  width: 970px;
  height: 250px;
}

.pageSplitThreeBanners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 30px;
}
.pageSplitThreeBanners img {
  width: 300px;
  height: 250px;
}

.showcase300 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  position: relative;
}
.showcase300 img {
  width: 300px;
  height: 250px;
}

.marginBottom30 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .main-body__layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .main-body__sidebar {
    width: 100%;
    min-width: 0;
    max-width: 300px;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .showcase300 {
    margin-bottom: 15px;
  }
  .main-nav__links {
    margin-right: 0;
  }
  .main-body__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 1.5rem;
  }
  .main-body__content {
    width: 100%;
  }
  .main-body__sidebar {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }
  .main-body .rowUnderForm {
    -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;
  }
  .pageSplitThreeBanners {
    -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;
  }
  .universityLogosBlock {
    padding: 0 1.5rem 65px;
  }
  .universityLogosBlock__inner {
    gap: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .universityLogosBlock .oneUniversityLogo {
    width: calc(50% - 8px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 8px);
            flex: 0 0 calc(50% - 8px);
    padding: 0 8px;
  }
  .universityLogosBlock .oneUniversityLogo img {
    max-width: 100%;
  }
}
.inquiry-form {
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 32px 32px;
  margin-bottom: 30px;
}
.inquiry-form .ehdaaText {
  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;
  gap: 0 10px;
  font-size: 17px;
}
.inquiry-form .ehdaaImg {
  max-width: 100px;
}
.inquiry-form__header {
  margin-bottom: 24px;
}
.inquiry-form__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 6px;
}
.inquiry-form__subtitle {
  font-size: 14px;
  color: #888888;
}
.inquiry-form__group {
  margin-bottom: 18px;
}
.inquiry-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 8px;
}
.inquiry-form__required {
  color: #e62117;
}
.inquiry-form__input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: #1A1A2E;
  background-color: #f5f5f5;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  outline: none;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.inquiry-form__input::-webkit-input-placeholder {
  color: #b0b0b0;
}
.inquiry-form__input::-moz-placeholder {
  color: #b0b0b0;
}
.inquiry-form__input:-ms-input-placeholder {
  color: #b0b0b0;
}
.inquiry-form__input::-ms-input-placeholder {
  color: #b0b0b0;
}
.inquiry-form__input::placeholder {
  color: #b0b0b0;
}
.inquiry-form__input:focus {
  border-color: #e62117;
  background-color: #fff;
}
.inquiry-form__input--error {
  border-color: #e62117;
  background-color: #fff;
}
.inquiry-form__error {
  margin-top: 6px;
  font-size: 14px;
  color: #e62117;
}
.inquiry-form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.inquiry-form__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.inquiry-form__radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #1A1A2E;
}
.inquiry-form__radio input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #1A1A2E;
  cursor: pointer;
}
.inquiry-form__methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 16px;
}
.inquiry-form__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.inquiry-form__tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.inquiry-form__tab-label {
  display: block;
  position: relative;
  height: 100%;
  padding: 12px 14px;
  text-align: center;
  background-color: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.inquiry-form__tab-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.inquiry-form__tab-label:has(input:checked) {
  border-color: #e62117;
  background-color: #fff8f8;
}
.inquiry-form__tab-text {
  font-size: 14px;
  font-weight: 500;
  color: #1A1A2E;
}
.inquiry-form__method {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  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;
  gap: 12px;
  padding: 16px 18px;
  background-color: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  font-family: inherit;
  text-align: inherit;
  width: 100%;
}
.inquiry-form__method:hover {
  border-color: #d8d8d8;
}
.inquiry-form__method input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.inquiry-form__method:has(input:checked) {
  border-color: #e62117;
  background-color: #fff8f8;
}
.inquiry-form__method:has(input:checked) .inquiry-form__method-icon {
  background-color: #e62117;
}
.inquiry-form__method:has(input:checked) .inquiry-form__method-icon svg {
  fill: #fff;
}
.inquiry-form__method-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.inquiry-form__method-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 4px;
}
.inquiry-form__method-desc {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #888888;
  margin-bottom: 6px;
}
.inquiry-form__method-badge {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.inquiry-form__method-badge--free {
  color: #22c55e;
}
.inquiry-form__method-badge--paid {
  color: #e62117;
}
.inquiry-form__method-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 44px;
  height: 44px;
  background-color: #f0f0f0;
  border-radius: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.inquiry-form__method-icon svg {
  width: 22px;
  height: 22px;
  fill: #999;
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
}
.inquiry-form__submit {
  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;
  gap: 10px;
  width: 100%;
  height: 52px;
  margin-top: 24px;
  padding: 0 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background-color: #e62117;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.inquiry-form__submit p {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.inquiry-form__submit:hover {
  background-color: #c91c13;
}
.inquiry-form__submit:disabled {
  cursor: not-allowed;
  background-color: #999;
  opacity: 0.7;
}
.inquiry-form .comingsoonBlock {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px 0;
}
.inquiry-form .comingsoonBlock .comingsoonH2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fd0013;
}
.inquiry-form .comingsoonBlock .comingsoonBlocHeader .comingsoonBlocHeadersubtitle {
  text-align: center;
}
.inquiry-form .comingsoonBlock .comingsoonBlocHeader .comingsoonBlocHeadertitle {
  margin-bottom: 30px;
  text-align: center;
}
.inquiry-form .student-rank__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.inquiry-form .student-rank__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.inquiry-form .student-rank__name {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
  line-height: 1.3;
}
.inquiry-form .student-rank__school {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  margin-bottom: 4px;
}
.inquiry-form .student-rank__admin {
  font-size: 12px;
  font-weight: 400;
  color: #888888;
}
.inquiry-form .student-rank__download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 38px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A2E;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.inquiry-form .student-rank__download svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.inquiry-form .student-rank__download:hover {
  border-color: #ccc;
  background-color: #fafafa;
}
.inquiry-form .student-rank__section-head {
  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;
  gap: 16px;
  margin-bottom: 20px;
}
.inquiry-form .student-rank__section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A2E;
}
.inquiry-form .student-rank__back {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.inquiry-form .student-rank__back svg {
  width: 20px;
  height: 20px;
  fill: #1A1A2E;
}
.inquiry-form .student-rank__back:hover {
  background-color: #eee;
}
.inquiry-form .student-rank__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.inquiry-form .student-rank__card {
  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;
  text-align: center;
  padding: 22px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.inquiry-form .student-rank__card-label {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
}
.inquiry-form .student-rank__card-rank {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 1.35px;
  direction: ltr;
}
.inquiry-form .student-rank__card-total {
  font-size: 12px;
  font-weight: 400;
}
.inquiry-form .student-rank__card--gold {
  background-color: #fffbeb;
  border-color: #fde68a;
}
.inquiry-form .student-rank__card--gold .student-rank__card-label,
.inquiry-form .student-rank__card--gold .student-rank__card-total {
  color: #a16207;
}
.inquiry-form .student-rank__card--gold .student-rank__card-rank {
  color: #92400e;
}
.inquiry-form .student-rank__card--blue {
  background-color: #eff6ff;
  border-color: #dbeafe;
}
.inquiry-form .student-rank__card--blue .student-rank__card-label,
.inquiry-form .student-rank__card--blue .student-rank__card-total {
  color: #1d4ed8;
}
.inquiry-form .student-rank__card--blue .student-rank__card-rank {
  color: #1e40af;
}
.inquiry-form .student-rank__card--green {
  background-color: #f0fdf4;
  border-color: #dcfce7;
}
.inquiry-form .student-rank__card--green .student-rank__card-label,
.inquiry-form .student-rank__card--green .student-rank__card-total {
  color: #15803d;
}
.inquiry-form .student-rank__card--green .student-rank__card-rank {
  color: #166534;
}
.inquiry-form .student-rank__actions {
  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;
}
.inquiry-form .student-rank__actions-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.inquiry-form .student-rank__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  -webkit-transition: opacity 0.2s ease, background-color 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.inquiry-form .student-rank__btn img {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.inquiry-form .student-rank__btn:hover {
  opacity: 0.9;
}
.inquiry-form .student-rank__btn--primary {
  color: #ffffff;
  background-color: #e62117;
  border: none;
}
.inquiry-form .student-rank__btn--outline {
  color: #1A1A2E;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}
.inquiry-form .student-rank__btn--full {
  width: 100%;
}
.inquiry-form .student-coordination__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.inquiry-form .student-coordination__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.inquiry-form .student-coordination__name {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
  line-height: 1.3;
}
.inquiry-form .student-coordination__school {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  margin-bottom: 4px;
}
.inquiry-form .student-coordination__admin {
  font-size: 12px;
  font-weight: 400;
  color: #888888;
}
.inquiry-form .student-coordination__download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 38px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A2E;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.inquiry-form .student-coordination__download svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.inquiry-form .student-coordination__download:hover {
  border-color: #ccc;
  background-color: #fafafa;
}
.inquiry-form .student-coordination__section-head {
  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;
  gap: 16px;
  margin-bottom: 20px;
}
.inquiry-form .student-coordination__section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A2E;
}
.inquiry-form .student-coordination__back {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.inquiry-form .student-coordination__back svg {
  width: 20px;
  height: 20px;
  fill: #1A1A2E;
}
.inquiry-form .student-coordination__back:hover {
  background-color: #eee;
}
.inquiry-form .student-coordination__panel {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.inquiry-form .student-coordination__panel-header {
  padding: 18px 22px;
  background-color: #1a1c2e;
  color: #ffffff;
}
.inquiry-form .student-coordination__panel-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.inquiry-form .student-coordination__panel-title span {
  font-size: 16px;
  font-weight: 700;
}
.inquiry-form .student-coordination__panel-title svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.inquiry-form .student-coordination__panel-score {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}
.inquiry-form .student-coordination__list {
  list-style: none;
}
.inquiry-form .student-coordination__item {
  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;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid #eee;
}
.inquiry-form .student-coordination__item:nth-child(odd) {
  background-color: #ffffff;
}
.inquiry-form .student-coordination__item:nth-child(even) {
  background-color: #fafafa;
}
.inquiry-form .student-coordination__item:last-child {
  border-bottom: none;
}
.inquiry-form .student-coordination__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.inquiry-form .student-coordination__faculty {
  font-size: 14px;
  font-weight: 500;
  color: #1A1A2E;
}
.inquiry-form .student-coordination__university {
  font-size: 12px;
  font-weight: 400;
  color: #888888;
}
.inquiry-form .student-coordination__percent {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
}
.inquiry-form .student-coordination__percent--high {
  color: #ef233c;
}
.inquiry-form .student-coordination__percent--low {
  color: #22c55e;
}
.inquiry-form .student-coordination__actions {
  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;
}
.inquiry-form .student-coordination__actions-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.inquiry-form .student-coordination__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  -webkit-transition: opacity 0.2s ease, background-color 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.inquiry-form .student-coordination__btn img {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.inquiry-form .student-coordination__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.inquiry-form .student-coordination__btn:hover {
  opacity: 0.9;
}
.inquiry-form .student-coordination__btn--primary {
  color: #ffffff;
  background-color: #e62117;
  border: none;
}
.inquiry-form .student-coordination__btn--outline {
  color: #1A1A2E;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}
.inquiry-form .student-coordination__btn--full {
  width: 100%;
}

@media (max-width: 768px) {
  .inquiry-form {
    padding: 5px 18px;
    margin-bottom: 15px;
  }
  .inquiry-form__row, .inquiry-form__methods {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .inquiry-form .student-rank__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .inquiry-form .student-rank__download {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .inquiry-form .student-rank__actions-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .inquiry-form .student-coordination__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .inquiry-form .student-coordination__download {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .inquiry-form .student-coordination__actions-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.success-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
}
.success-popup.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.success-popup--no-header-title .success-popup__header {
  padding-bottom: 24px;
}
.success-popup__simple-message {
  font-family: "Cairo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 24px;
  line-height: 1.4;
}
.success-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.success-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: #fff;
}
.success-popup__header {
  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;
  text-align: center;
  padding: 32px 24px 28px;
  background: -webkit-gradient(linear, left top, left bottom, from(#34c759), to(#28a745));
  background: linear-gradient(180deg, #34c759 0%, #28a745 100%);
}
.success-popup__icon {
  margin-bottom: 16px;
}
.success-popup__icon-badge {
  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;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  color: #28a745;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.success-popup__icon-badge svg {
  width: 34px;
  height: 34px;
}
.success-popup__title {
  font-family: "Cairo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
.success-popup__body {
  padding: 28px 24px 32px;
  text-align: center;
}
.success-popup__info-box {
  padding: 20px 16px;
  margin-bottom: 20px;
  background: #f0fff4;
  border: 1px solid #c3e6cb;
  border-radius: 12px;
}
.success-popup__info-line {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1e7e34;
  margin: 0 0 6px;
  line-height: 1.5;
}
.success-popup__info-line--muted {
  font-weight: 400;
  color: #4caf50;
  margin-bottom: 10px;
}
.success-popup__phone {
  font-family: "Cairo", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #155724;
  margin: 0;
  line-height: 1.4;
  direction: ltr;
}
.success-popup__info-box--fawry {
  background: #fff8f0;
  border-color: #f0d9b5;
}
.success-popup__fawry {
  font-family: "Cairo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #b45309;
  margin: 0;
  line-height: 1.4;
  direction: ltr;
  letter-spacing: 1px;
}
.success-popup__note {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  line-height: 1.7;
  margin: 0 0 24px;
}
.success-popup__btn {
  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;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Cairo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #e62117;
  -webkit-box-shadow: 0 4px 14px rgba(230, 33, 23, 0.35);
          box-shadow: 0 4px 14px rgba(230, 33, 23, 0.35);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.success-popup__btn:hover {
  background-color: #c91c13;
}

@media (max-width: 640px) {
  .success-popup {
    padding: 16px;
  }
  .success-popup__header {
    padding: 28px 20px 24px;
  }
  .success-popup__body {
    padding: 24px 20px 28px;
  }
  .success-popup__title {
    font-size: 20px;
  }
}
.student-result__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.student-result__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.student-result__name {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
  line-height: 1.3;
}
.student-result__school {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  margin-bottom: 4px;
}
.student-result__seat {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  margin-bottom: 4px;
}
.student-result__admin {
  font-size: 12px;
  font-weight: 400;
  color: #888888;
}
.student-result__download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 38px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A2E;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.student-result__download svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.student-result__download:hover {
  border-color: #ccc;
  background-color: #fafafa;
}
.student-result__table-wrap {
  display: block;
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.student-result__table {
  width: 100%;
  border-collapse: collapse;
}
.student-result__table thead {
  background: #f1f3f5;
}
.student-result__table thead th {
  padding: 14px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A2E;
  text-align: right;
}
.student-result__table thead th:nth-child(2) {
  text-align: center;
}
.student-result__table thead th:nth-child(3) {
  text-align: left;
}
.student-result__table tbody tr {
  border-bottom: 1px solid #eee;
}
.student-result__table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.student-result__table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.student-result__table tbody tr:last-child {
  border-bottom: none;
}
.student-result__table tbody td {
  padding: 14px 20px;
  font-size: 18px;
  font-weight: 400;
  color: #1A1A2E;
}
.student-result__table tbody td:first-child {
  text-align: right;
}
.student-result__table tbody td:nth-child(2) {
  text-align: center;
}
.student-result__table tbody td:nth-child(3) {
  text-align: left;
  font-weight: 700;
  color: #00bcd4;
}
.student-result__cards {
  display: none;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.student-result__card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
}
.student-result__card-title {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #1A1A2E;
  text-align: center;
  background-color: #f1f3f5;
  line-height: 1.4;
}
.student-result__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
.student-result__card-stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.student-result__card-stat:first-child {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: right;
}
.student-result__card-stat:last-child {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: left;
}
.student-result__card-label {
  font-size: 12px;
  font-weight: 400;
  color: #888888;
}
.student-result__card-value {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.2;
}
.student-result__card-value--percent {
  color: #00bcd4;
}
.student-result__summary {
  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;
  gap: 20px;
  padding: 20px 28px;
  background-color: #1a233a;
  border-radius: 12px;
  margin-bottom: 20px;
}
.student-result__summary-item {
  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;
}
.student-result__summary-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}
.student-result__summary-value {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.student-result__summary-value--marks {
  color: #ffffff;
}
.student-result__summary-value--percent {
  color: #00bcd4;
}
.student-result__actions {
  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;
}
.student-result__actions-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.student-result__action-form {
  margin: 0;
}
.student-result__action-form button.student-result__btn {
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}
.student-result__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  -webkit-transition: opacity 0.2s ease, background-color 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.student-result__btn img {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.student-result__btn:hover {
  opacity: 0.9;
}
.student-result__btn--primary {
  color: #ffffff;
  background-color: #e62117;
  border: none;
}
.student-result__btn--outline {
  color: #1A1A2E;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}
.student-result__btn--full {
  width: 100%;
}

@media (max-width: 991px) {
  .student-result__table-wrap {
    display: none;
  }
  .student-result__cards {
    display: -ms-grid;
    display: grid;
  }
  .student-result__admin {
    display: none;
  }
  .student-result__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .student-result__download {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .student-result__summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
  .student-result__actions-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .student-result__cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .student-result__name {
    font-size: 20px;
  }
}
.universities-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
  padding: 30px 0;
}
@media (max-width: 1024px) {
  .universities-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .universities-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
}

.university-card {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 24px;
  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;
  text-align: center;
}
.university-card__logo {
  height: 80px;
  width: 100%;
  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;
  margin-bottom: 16px;
}
.university-card__logo a {
  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;
}
.university-card__logo img {
  max-height: 60px;
  max-width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
.university-card__title {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1A1A2E;
  margin: 0 0 12px;
  line-height: 1.4;
}
.university-card__title a {
  color: inherit;
  text-decoration: none;
}
.university-card__title a:hover {
  color: #e62117;
}
.university-card__desc {
  font-family: "Cairo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .universities-grid {
    padding-inline: 1.5rem;
  }
}
.university-detail {
  padding: 40px 0 60px;
}
.university-detail__hero {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 420px;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 56px;
}
.university-detail__intro {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: right;
}
.university-detail__logo {
  margin-bottom: 24px;
}
.university-detail__logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.university-detail__logo img {
  max-height: 72px;
  max-width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
.university-detail__title {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #000135;
  margin: 0 0 24px;
  line-height: 1.4;
}
.university-detail__title a {
  color: inherit;
  text-decoration: none;
}
.university-detail__title a:hover {
  color: #e62117;
}
.university-detail__text p {
  font-family: "Cairo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin: 0 0 16px;
  text-align: right;
}
.university-detail__text p:last-child {
  margin-bottom: 0;
}
.university-detail__media {
  width: 100%;
}
.university-detail__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.details {
  padding: 40px 0 60px;
}
.details__hero {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 420px;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 32px;
}
.details__intro {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: right;
}
.details__logo {
  margin-bottom: 24px;
}
.details__logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.details__logo img {
  max-height: 72px;
  max-width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
.details__title {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #000135;
  margin: 0 0 24px;
  line-height: 1.4;
}
.details__title a {
  color: inherit;
  text-decoration: none;
}
.details__title a:hover {
  color: #e62117;
}
.details__text p {
  font-family: "Cairo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin: 0 0 16px;
  text-align: right;
}
.details__text p:last-child {
  margin-bottom: 0;
}
.details__media {
  width: 100%;
}
.details__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.details__overview, .details__video, .details__admission, .details__location, .details__contact {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.details__overview-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.details__overview-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 72px;
  height: 72px;
  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;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 8px;
}
.details__overview-logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.details__overview-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.details__overview-title {
  font-family: "Cairo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000135;
  margin: 0 0 10px;
  line-height: 1.4;
}
.details__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.details__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.details__tag--code {
  background: #000135;
  color: #fff;
}
.details__tag--type {
  background: #fce4ec;
  color: #c2185b;
}
.details__tag--featured {
  background: #fff8e1;
  color: #f57f17;
}
.details__overview-desc {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.8;
  margin: 0 0 24px;
  text-align: right;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.details__stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.details__stat-value {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #e62117;
  line-height: 1.2;
  margin-bottom: 6px;
  direction: ltr;
}
.details__stat-label {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888888;
  line-height: 1.4;
}
.details__section-title {
  font-family: "Cairo", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000135;
  margin: 0 0 20px;
  line-height: 1.4;
  text-align: right;
}
.details__video-player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  min-height: 280px;
}
.details__video-player.is-playing .details__video-thumb,
.details__video-player.is-playing .details__video-play,
.details__video-player.is-playing .details__video-caption {
  display: none;
}
.details__video-player.is-playing.is-youtube .details__video-iframe,
.details__video-player.is-playing.is-mp4 .details__video-file {
  display: block;
}
.details__video-iframe,
.details__video-file {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.details__video-file {
  -o-object-fit: contain;
     object-fit: contain;
}
.details__video-thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.85;
}
.details__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: #e62117;
  color: #fff;
  cursor: pointer;
  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;
  -webkit-box-shadow: 0 4px 20px rgba(230, 33, 23, 0.5);
          box-shadow: 0 4px 20px rgba(230, 33, 23, 0.5);
}
.details__video-play svg {
  width: 32px;
  height: 32px;
  margin-right: -4px;
}
.details__video-caption {
  position: absolute;
  bottom: 16px;
  right: 16px;
  left: 16px;
  margin: 0;
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-align: right;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.details__admission-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.details__admission-list li {
  position: relative;
  padding-right: 18px;
  margin-bottom: 14px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  text-align: right;
}
.details__admission-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e62117;
}
.details__admission-list li strong {
  color: #1A1A2E;
  font-weight: 600;
}
.details__admission-list li:last-child {
  margin-bottom: 0;
}
.details__info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.details__location, .details__contact {
  margin-bottom: 0;
}
.details__map {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.details__map img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.details__coordinates {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  color: #888888;
  margin: 0;
  text-align: right;
  direction: ltr;
}
.details__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.details__contact-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  text-align: right;
}
.details__contact-list li:last-child {
  margin-bottom: 0;
}
.details__contact-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #666666;
}
.details__contact-icon svg {
  width: 18px;
  height: 18px;
}
.details__branches, .details__faculties {
  margin-bottom: 32px;
}
.details__branches-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.details__branch-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
  text-align: right;
}
.details__branch-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.details__branch-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
}
.details__branch-title-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.details__branch-title {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000135;
  margin: 0;
  line-height: 1.4;
}
.details__branch-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: #fce4ec;
  color: #c2185b;
  line-height: 1.4;
}
.details__branch-address {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  color: #888888;
  line-height: 1.6;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.details__branch-meta {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  color: #e62117;
  margin: 0;
  line-height: 1.4;
}
.details__branch-meta strong {
  font-weight: 700;
}
.details__faculties-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.details__faculty-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 18px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.details__faculty-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.details__faculty-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}
.details__faculty-title {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000135;
  margin: 0;
  line-height: 1.4;
}
.details__faculty-meta {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  color: #888888;
  line-height: 1.6;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.details__faculty-min {
  color: #e62117;
  font-weight: 600;
}
.details__faculty-sep {
  margin: 0 4px;
}
.details__faculty-link {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #e62117;
  text-decoration: none;
}
.details__faculty-link:hover {
  text-decoration: underline;
}
.details__faculties-btn {
  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;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  background: #e62117;
  color: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 14px rgba(230, 33, 23, 0.35);
          box-shadow: 0 4px 14px rgba(230, 33, 23, 0.35);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.details__faculties-btn:hover {
  background: #c91c13;
  color: #fff;
}

@media (max-width: 1024px) {
  .university-detail__hero {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .university-detail__media {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .details__hero {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .details__media {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .details__stats {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .details__info-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .details__branches-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .details__faculties-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .university-detail {
    padding-inline: 1.5rem;
  }
  .details {
    padding-inline: 1.5rem;
  }
  .details__overview, .details__video, .details__admission, .details__location, .details__contact {
    padding: 20px 18px;
  }
  .details__stats {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .details__faculties-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.college-details {
  padding: 40px 0 60px;
}
.college-details__breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #888888;
}
.college-details__breadcrumbs a {
  color: #e62117;
  text-decoration: none;
}
.college-details__breadcrumbs a:hover {
  text-decoration: underline;
}
.college-details__breadcrumbs span:last-child {
  color: #1A1A2E;
  font-weight: 500;
}
.college-details__hero, .college-details__about, .college-details__gallery, .college-details__departments, .college-details__tansiq, .college-details__skills, .college-details__requirements {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.college-details__video {
  margin-bottom: 24px;
}
.college-details__hero-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.college-details__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 72px;
  height: 72px;
  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;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 8px;
}
.college-details__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.college-details__logo-fallback {
  font-size: 32px;
  line-height: 1;
}
.college-details__hero-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.college-details__title {
  font-family: "Cairo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000135;
  margin: 0 0 12px;
  line-height: 1.4;
}
.college-details__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.college-details__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.college-details__tag--division {
  background: #fce4ec;
  color: #c2185b;
}
.college-details__tag--campus {
  background: #fff8e1;
  color: #f57f17;
}
.college-details__tag--university {
  background: #f5f5f5;
  color: #666666;
}
.college-details__tag--category {
  background: #e3f2fd;
  color: #1565c0;
}
.college-details__short-desc {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin: 0 0 12px;
  text-align: right;
}
.college-details__short-desc--en {
  color: #888888;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.college-details__stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.college-details__stat-value {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #e62117;
  line-height: 1.2;
  margin-bottom: 6px;
}
.college-details__stat-label {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  color: #888888;
  line-height: 1.4;
}
.college-details__section-title {
  font-family: "Cairo", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000135;
  margin: 0 0 20px;
  line-height: 1.4;
  text-align: right;
}
.college-details__text p {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
  text-align: right;
}
.college-details__gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.college-details__gallery-grid img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
}
.college-details__departments-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.college-details__department-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.college-details__department-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.college-details__department-icon {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.college-details__department-icon-fallback {
  font-size: 24px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.college-details__department-title {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000135;
  margin: 0;
  line-height: 1.4;
}
.college-details__department-desc {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  color: #888888;
  line-height: 1.6;
  margin: 0 0 14px;
}
.college-details__department-meta {
  margin: 0 0 14px;
  padding: 0 0 14px;
  border-bottom: 1px solid #eee;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.college-details__department-meta div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}
.college-details__department-meta div:last-child {
  margin-bottom: 0;
}
.college-details__department-meta dt {
  color: #1A1A2E;
  font-weight: 600;
}
.college-details__department-meta dd {
  margin: 0;
  color: #666666;
  text-align: left;
}
.college-details__department-link {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #e62117;
  text-decoration: none;
}
.college-details__department-link:hover {
  text-decoration: underline;
}
.college-details__table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
}
.college-details__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  text-align: right;
}
.college-details__table thead th {
  background: #000135;
  color: #fff;
  padding: 14px 16px;
  font-weight: 600;
}
.college-details__table thead th:first-child {
  border-radius: 0 8px 0 0;
}
.college-details__table thead th:last-child {
  border-radius: 8px 0 0 0;
}
.college-details__table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  color: #666666;
}
.college-details__table tbody tr:nth-child(even) {
  background: #fafafa;
}
.college-details__table-highlight {
  color: #e62117 !important;
  font-weight: 700;
}
.college-details__eligible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
}
.college-details__eligible p {
  margin: 0;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #15803d;
  line-height: 1.5;
}
.college-details__eligible-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28px;
  height: 28px;
  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;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.college-details__skills-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.college-details__skill-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  text-align: right;
}
.college-details__skill-card img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.college-details__skill-card h3 {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000135;
  margin: 14px 16px 4px;
  line-height: 1.4;
}
.college-details__skill-en {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  color: #888888;
  margin: 0 16px 8px;
  line-height: 1.4;
}
.college-details__skill-desc {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  color: #666666;
  line-height: 1.6;
  margin: 0 16px 16px;
}
.college-details__requirements-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.college-details__requirements-list li {
  position: relative;
  padding-right: 18px;
  margin-bottom: 14px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  text-align: right;
}
.college-details__requirements-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e62117;
}
.college-details__requirements-list li strong {
  color: #000135;
  font-weight: 600;
}
.college-details__requirements-list li:last-child {
  margin-bottom: 0;
}
.college-details__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 8px;
}
.college-details__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  font-family: "Cairo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.college-details__btn--primary {
  background: #e62117;
  color: #fff;
  border: 2px solid #e62117;
  -webkit-box-shadow: 0 4px 14px rgba(230, 33, 23, 0.35);
          box-shadow: 0 4px 14px rgba(230, 33, 23, 0.35);
}
.college-details__btn--primary:hover {
  background: #c91c13;
  color: #fff;
}
.college-details__btn--outline {
  background: #fff;
  color: #e62117;
  border: 2px solid #e62117;
}
.college-details__btn--outline:hover {
  background: #fff8f8;
}

@media (max-width: 1024px) {
  .college-details__stats {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .college-details__gallery-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .college-details__departments-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .college-details__skills-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .college-details {
    padding-inline: 1.5rem;
  }
  .college-details__hero, .college-details__about, .college-details__gallery, .college-details__departments, .college-details__tansiq, .college-details__skills, .college-details__requirements {
    padding: 20px 18px;
  }
  .college-details__stats {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .college-details__gallery-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .college-details__departments-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .college-details__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .college-details__btn {
    width: 100%;
  }
}
.department-details {
  padding: 40px 0 60px;
}
.department-details__breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #888888;
}
.department-details__breadcrumbs a {
  color: #e62117;
  text-decoration: none;
}
.department-details__breadcrumbs a:hover {
  text-decoration: underline;
}
.department-details__breadcrumbs span:last-child {
  color: #1A1A2E;
  font-weight: 500;
}
.department-details__hero, .department-details__about, .department-details__info, .department-details__skills, .department-details__gallery {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.department-details__hero-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.department-details__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 72px;
  height: 72px;
  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;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 8px;
}
.department-details__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.department-details__icon-fallback {
  font-size: 32px;
  line-height: 1;
}
.department-details__hero-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.department-details__title {
  font-family: "Cairo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000135;
  margin: 0 0 12px;
  line-height: 1.4;
  text-align: right;
}
.department-details__subtitle {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
  text-align: right;
}
.department-details__section-title {
  font-family: "Cairo", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000135;
  margin: 0 0 20px;
  line-height: 1.4;
  text-align: right;
}
.department-details__text p {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
  text-align: right;
}
.department-details__info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 24px 28px;
}
.department-details__info-list {
  margin: 0;
  padding: 0;
}
.department-details__info-list div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.department-details__info-list div:last-child {
  margin-bottom: 0;
}
.department-details__info-list dt {
  color: #1A1A2E;
  font-weight: 600;
  text-align: right;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.department-details__info-list dd {
  margin: 0;
  color: #666666;
  text-align: left;
}
.department-details__skills-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.department-details__skill-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  text-align: right;
}
.department-details__skill-card img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.department-details__skill-card h3 {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000135;
  margin: 14px 16px 4px;
  line-height: 1.4;
}
.department-details__skill-en {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  color: #888888;
  margin: 0 16px 8px;
  line-height: 1.4;
}
.department-details__skill-desc {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  color: #666666;
  line-height: 1.6;
  margin: 0 16px 16px;
}
.department-details__gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.department-details__gallery-grid img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
}

@media (max-width: 1024px) {
  .department-details__info-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .department-details__skills-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .department-details__gallery-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .department-details {
    padding-inline: 1.5rem;
  }
  .department-details__hero, .department-details__about, .department-details__info, .department-details__skills, .department-details__gallery {
    padding: 20px 18px;
  }
  .department-details__info-grid {
    padding: 18px;
  }
  .department-details__gallery-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-top: 48px;
}
.site-footer__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 40px 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
.site-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e62117;
}
.site-footer__logo img {
  height: 48px;
  width: auto;
}
.site-footer__desc {
  font-size: 14px;
  font-weight: 400;
  color: #b3b3b3;
  line-height: 1.8;
}
.site-footer__contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.site-footer__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #b3b3b3;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.site-footer__contact-item:hover {
  color: #ffffff;
  opacity: 1;
}
.site-footer__contact-icon {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.site-footer__contact-icon svg {
  width: 14px;
  height: 14px;
  fill: #b3b3b3;
}
.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.site-footer__social-link {
  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;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.site-footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.site-footer__social-link:hover {
  opacity: 0.8;
}
.site-footer__social-link--youtube {
  background-color: #ff0000;
}
.site-footer__social-link--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.site-footer__social-link--twitter {
  background-color: #1da1f2;
}
.site-footer__social-link--facebook {
  background-color: #3b5998;
}
.site-footer__newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
  max-width: 100%;
}
.site-footer__email-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  background-color: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 0 8px 8px 0;
  outline: none;
}
.site-footer__email-input::-webkit-input-placeholder {
  color: #666;
}
.site-footer__email-input::-moz-placeholder {
  color: #666;
}
.site-footer__email-input:-ms-input-placeholder {
  color: #666;
}
.site-footer__email-input::-ms-input-placeholder {
  color: #666;
}
.site-footer__email-input::placeholder {
  color: #666;
}
.site-footer__email-input:focus {
  border-color: #555;
}
.site-footer__subscribe-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 44px;
  padding: 0 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #e62117;
  border: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.site-footer__subscribe-btn:hover {
  background-color: #b71c1c;
}
.site-footer__divider {
  height: 1px;
  background-color: #2a2a2a;
  margin-bottom: 28px;
}
.site-footer__legal {
  font-size: 12px;
  font-weight: 400;
  color: #b3b3b3;
  line-height: 1.9;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  padding-bottom: 32px;
}
.site-footer__credits {
  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;
  gap: 8px;
  padding-bottom: 28px;
  font-size: 12px;
  font-weight: 400;
  color: #b3b3b3;
}
.site-footer__credits img {
  height: 22px;
  width: auto;
}

@media (max-width: 992px) {
  .site-footer__top {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__about {
    grid-column: 1/-1;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 36px 2rem;
  }
  .site-footer__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__newsletter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .site-footer__email-input {
    border-radius: 8px;
  }
  .site-footer__subscribe-btn {
    border-radius: 8px;
    width: 100%;
  }
}