@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #012643;
  --link-color: #447abc;
  --dark-color: #000;
  --white-color: #fff;
  --orange-color: #ff9500;
  --poppins: "Poppins", sans-serif;
  --text-font-size: 15px;
  --primary-header: 33px;
  --secondary-header: 25px;
  --third-header: 22px;
  --sub-header: 18px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--poppins);
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--white-color);
}
.orange {
  color: var(--orange-color);
}
.blue {
  color: #447abc !important;
}
.black {
  color: var(--dark-color) !important;
}
.primary {
  color: var(--primary-color) !important;
}
.gray {
  color: #3c3c3c !important;
}
.bg-color {
  background-color: #0126430d;
}
.fw-500 {
  font-weight: 500 !important;
}
.footer-bg-color {
  background-color: var(--primary-color);
}
.header-bg-color {
  background-color: #d9d9d9;
}
.text-none {
  text-transform: none !important;
}
.list-style-none {
  list-style: none;
}
.arrow-link {
  width: 30px;
}
#carouselBanner .carousel-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
#carouselBanner .carousel-item img {
  width: 100%;
  height: 850px;
}
#carouselBanner .carousel-item {
  transition: transform 2.2s ease-in-out;
}
#carouselBanner .animate-arrow {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: all 3s ease-in-out;
}
#carouselBanner .animate-arrow-over-img {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  z-index: 2;
  opacity: 0.05;
  pointer-events: none;
  transition: opacity 1s linear;
}

#carouselBanner .carousel-item.active .animate-arrow-over-img {
  opacity: 0;
}
.carousel-arrow {
  width: 65px;
  border-radius: 50%;
}
.carousel-arrow rect {
  transition: all 0.3s ease-in-out;
}
.carousel-arrow:hover rect {
  fill: var(--primary-color);
  fill-opacity: 1;
}
#carouselBanner .carousel-control-next,
#carouselBanner .carousel-control-prev {
  width: 6%;
  opacity: 1;
}
/* header  */
a {
  text-decoration: none;
  word-break: break-word;
}
.header-logo {
  width: 170px;
}
.offcanvas.offcanvas-end {
  top: 85px;
  z-index: -1;
  width: 40%;
}
.dropdown-toggle::after {
  display: none;
}
.hamburger-menu {
  width: 40px;
  height: 40px;
}
.opacity-0 {
  opacity: 0;
}
.hamburger {
  transform-origin: left;
  opacity: 1;
  transform: unset;
  transition: transform 0.3s linear, opacity 0.3s linear;
}
.rotate-45 {
  transform: rotate(45deg) translateY(-2px) translateX(-7px);
}
.-rotate-45 {
  transform: rotate(-45deg) translateY(2px) translateX(-7px);
}
.header-social-icon {
  width: 27px;
}
.header-social-icon path,
.header-social-icon rect {
  transition: all 0.3s ease-in-out;
}
.header-social-icon.ok:hover path {
  fill: var(--orange-color);
}
.header-social-icon:hover rect {
  fill: var(--orange-color);
}
.navbar-nav .nav-item {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
}
.navbar-nav .nav-item::before {
  content: "▸";
  font-size: 40px;
  margin-right: 5px;
  color: var(--primary-color);
  transform: rotate(0);
  transition: transform 0.3s linear;
}
.navbar-nav .nav-item .nav-link {
  font-size: var(--text-font-size);
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: bold;
}
.navbar-nav .dropdown-menu {
  border: none;
  list-style: none;
  padding-top: 0;
  margin-top: -5px;
  display: none;
  transition: all 0.4s ease-in-out;
}

.header-arrow {
  font-size: 13px;
  line-height: 6px !important;
  margin-left: 4px;
  margin-bottom: 4px;
}
.navbar-nav .dropdown-menu li {
  display: flex;
  align-items: center;
  color: #012643cc;
  padding-left: 37px;
  line-height: 2;
}
.navbar-nav .dropdown-menu .dropdown-item {
  font-size: var(--text-font-size);
  font-weight: bold;
  text-transform: uppercase;
  color: #012643cc;
  white-space: normal;
}
.navbar-nav .dropdown-menu .dropdown-item:active,
.navbar-nav .dropdown-menu .dropdown-item:focus {
  background-color: unset;
}
.navbar-nav .dropdown-menu li::before {
  content: "⏺";
  font-size: 10px;
  color: #012643cc;
}
.dropdown:hover .dropdown-menu {
  display: block !important;
  transition: all 0.4s ease-in-out;
}
.dropdown:hover.nav-item::before {
  transform: rotate(90deg);
}
.offcanvas-logo {
  width: 270px;
}
.youtube-video {
  height: 720px;
}
.testimonial-video{
  aspect-ratio: 3 / 2;
}
/* footer  */
.footer-logo {
  width: 300px;
}
.address-icon {
  width: 25px;
}
.all-text {
  text-decoration: none;
  color: var(--dark-color);
  margin-bottom: 0;
  font-size: var(--text-font-size);
  text-align: justify;
  font-weight: 400;
  line-height: 1.5;
}
footer .all-text {
  color: var(--white-color);
}
.footer-header,
.sub-header {
  color: var(--orange-color);
  font-weight: bold;
  font-size: var(--third-header);
  text-transform: uppercase;
}
.quick-links {
  padding-left: 25px;
}
.quick-links li {
  color: var(--white-color);
  line-height: 2;
}
.footer-social-icon {
  width: 35px;
}
.social-text {
  color: var(--white-color);
  font-size: var(--sub-header);
  font-weight: 500;
  text-decoration: none;
}

/* about us  */
.main-header {
  color: var(--orange-color);
  text-transform: uppercase;
  font-weight: bold;
  font-size: var(--primary-header);
  width: 100%;
}
.read-more-btn {
  color: var(--white-color);
  padding: 12px 35px;
  border: none;
  border-radius: 30px;
  background-color: var(--orange-color);
  font-weight: 300;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: var(--text-font-size);
}
.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: left 0.3s ease-in-out;
}
.read-more-btn:hover::before {
  left: 0;
}
.program-list {
  padding-left: 0;
  list-style: none;
}
.program-list li {
  color: var(--dark-color);
  font-weight: 600;
  font-size: var(--sub-header);
  line-height: 2.6;
  display: flex;
  align-items: center;
}
.program-list li a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: var(--sub-header);
}
.program-list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/mark.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 12px;
}

.banner {
  background-image: url("../images/banner/bg-banner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-img {
  height: 355px;
}
.header-icon {
  width: 32px;
  height: 32px;
}
.program-icon {
  width: 40px;
}
.body-header {
  color: var(--dark-color);
  font-weight: 700;
  font-size: var(--secondary-header);
  text-transform: uppercase;
}
.body-sub-header {
  color: var(--dark-color);
  font-weight: 700;
  font-size: var(--sub-header);
}
.body-bg-header {
  color: var(--white-color);
  font-weight: 700;
  font-size: var(--secondary-header);
  text-transform: uppercase;
  background-color: var(--primary-color);
  border-radius: 5px;
  padding: 15px 30px;
}
.contact-box {
  background-color: #e6e6ee;
  padding: 15px 40px;
  text-align: center;
  border-radius: 8px;
}
.contact-box * {
  color: var(--dark-color);
  font-weight: 700;
  font-size: var(--text-font-size);
}
.deadline {
  max-width: max-content;
}
.deadline-list li {
  font-size: var(--text-font-size);
  color: var(--dark-color);
  line-height: 1.9;
}
.payment-photo {
  aspect-ratio: 2 / 1;
}
.note {
  color: #8f8f8f;
  font-style: italic;
  font-weight: 300;
}
.payment-title {
  color: #447abc;
  font-weight: bold;
}
.teacher-img {
  aspect-ratio: 1 / 1;
}

.degree-table th,
.degree-table td {
  width: 50%;
  text-align: center;
  color: var(--dark-color);
  font-size: var(--text-font-size);
  border: 0.115rem solid #cbd5e19a;
  padding: 14px;
}
.program-table th,
.program-table td {
  text-align: center;
  color: var(--dark-color);
  font-size: var(--text-font-size);
  border: 0.115rem solid #cbd5e19a;
  padding: 14px;
}
.university-table th,
.university-table td {
  color: var(--dark-color);
  font-size: var(--text-font-size);
  border: 0.115rem solid #cbd5e19a;
  padding: 14px;
}
.degree-table thead th,
.program-table thead th,
.university-table thead th {
  background-color: #f1f5f9;
}
.program-table thead th {
  text-transform: uppercase;
}
.degree-table tbody tr td:first-child {
  color: #447abc;
  font-weight: 500;
  font-size: var(--text-font-size);
}
.program-table tbody tr td:first-child {
  text-align: start;
  font-size: var(--text-font-size);
}
.university-table tbody tr td:first-child {
  text-align: start;
  font-size: var(--text-font-size);
  width: 20%;
}
.program-table tbody tr td:first-child a {
  color: #447abc;
  font-weight: 600;
  font-size: var(--text-font-size);
}
.university-table tbody tr td:first-child a {
  color: #447abc;
  font-weight: 400;
  font-size: var(--text-font-size);
  text-decoration: underline;
}
.contact-banner {
  background-color: var(--primary-color);
  padding: 10px 20px;
}
.contact-banner .arrow {
  width: 220px;
  mix-blend-mode: soft-light;
}
@media screen and (max-width: 992px) {
  :root {
    --text-font-size: 14px;
    --primary-header: 23px;
    --secondary-header: 20px;
    --third-header: 18px;
    --sub-header: 16px;
  }
  .offcanvas.offcanvas-end {
    width: 90%;
  }
  .offcanvas-logo {
    width: 230px;
  }
  .footer-logo {
    width: 200px;
  }
  .read-more-btn {
    padding: 10px 30px;
  }
  .banner-img {
    height: 255px;
  }
  .contact-box {
    padding: 13px 15px;
  }
  .youtube-video {
    height: 468px;
  }
  .contact-banner .arrow {
    width: 157px;
  }
  .contact-banner .main-header {
    font-size: 20px;
  }
  .contact-banner .body-header {
    font-size: 16px;
  }
  #carouselBanner .carousel-item img {
    height: unset;
    aspect-ratio: 2 / 1.3;
  }
  .body-bg-header {
    padding: 12px 25px;
  }
  .header-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --text-font-size: 13px;
    --primary-header: 17px;
    --secondary-header: 16px;
    --third-header: 15px;
    --sub-header: 14px;
  }
  .hamburger-menu {
    width: 25px;
    height: 25px;
  }
  .header-social-icon {
    width: 20px;
  }
  .header-logo {
    width: 125px;
  }
  .offcanvas.offcanvas-end {
    top: 65px;
    width: 100%;
  }
  .offcanvas-logo {
    width: 150px;
  }
  .offcanvas-body {
    padding-top: 0;
    padding-left: 3px;
    padding-right: 0;
  }
  .offcanvas-header {
    padding-bottom: 0;
    padding-right: 0;
  }
  .navbar-nav .nav-item::before {
    font-size: 30px;
    margin-right: 2px;
    margin-top: -4px;
  }
  .navbar-nav .nav-item {
    display: flex;
    align-items: start;
  }
  .navbar-nav .dropdown-menu li {
    padding-left: 27px;
    align-items: start;
  }
  .navbar-nav .dropdown-menu li::before {
    margin-top: 8px;
  }
  .navbar-nav .dropdown-menu .dropdown-item {
    padding-left: 8px;
  }
  .footer-social-icon {
    width: 30px;
  }
  .read-more-btn {
    padding: 9px 23px;
  }
  .banner-img {
    height: 155px;
  }
  .contact-box {
    padding: 10px;
  }
  .youtube-video {
    height: 200px;
  }
  .contact-banner .arrow {
    width: 50px;
  }
  .contact-banner .main-header {
    font-size: 10px;
  }
  .contact-banner .body-header {
    font-size: 8px;
    margin-bottom: 0;
  }
  .contact-banner {
    padding: 4px 10px;
    border-radius: 10px !important;
  }
  .header-arrow {
    font-size: 11px;
    margin-bottom: 5px;
  }
  #carouselBanner .carousel-item img {
    height: unset;
    aspect-ratio: 2 / 1;
  }
  .awards .rounded-4 {
    border-radius: 10px !important;
  }
  .program-icon {
    width: 30px;
  }
  ul,
  ol {
    padding-left: 19px;
  }
  .body-bg-header {
    padding: 10px 15px;
  }
  .header-icon {
    width: 25px;
    height: 25px;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 0.8s both linear;
}
