@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto.ttf");


}

@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url('../webfonts/fa-solid-900.woff2') format('woff2');
}

*,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto" !important
}

html,
body {
  scrollbar-width: thin;
  scrollbar-color: var(--main-color-dark) white;
}

:root {
  --main-color: #2C5CC1;
  --main-color-dark: #244281;
  --yellow-color: #C3D451;
  --black-gray: #575757;
  --green-color: #6FB858;
  --black-gray-2: #94A3B8;
  --light-gray: #F7F7FB;
  --light-blue: #DBEAFE;
  --blue-grey: #475569
}

/* Global Classes */
.logo {
  height: 60px;
  width: 163px
}

.rotate-y {
  transform: rotateY(180deg)
}

.not-fixed {
  position: relative !important;
  background-color: var(--main-color) !important
}

.navbar {
  height: 100px;

  display: flex;
  padding: 24px 141.6px 30px 48px;
  align-items: center;
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar-brand img {
  height: 40px;
}

nav .dropdown-toggle::after {
  display: none;
}

.border-b-green {
  border-bottom: 3px solid var(--yellow-color)
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-32 {
  gap: 32px !important;
}

.gap-24 {
  gap: 24px;
}

.gap-38 {
  gap: 38px
}

.gap-12 {
  gap: 12px;
}

.gap-40 {
  gap: 40px;
}


.my-32 {
  margin: 32px 0
}

.mt-24 {
  margin-top: 24px;
}

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

.mt-27 {
  margin-top: 27px
}

.mt-16 {
  margin-top: 16px;
}

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

.mt-32 {
  margin-top: 32px;
}

.mt-64 {
  margin-top: 64px;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.text-green {
  color: var(--green-color)
}

.general-p {
  color: var(--blue-grey);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.main-title-container h2 {
  color: var(--main-color-dark);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.5px;
}


/* Start Navbar */
nav {
  background-color: #FFF
}

header nav .nav-link {
  color: var(--main-color-dark) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
}

header .nav-link {
  gap: 8px;
  display: flex
}

header nav .get-started-btn {
  display: flex;
  padding: 12px 24px !important;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color-dark);
  color: #FFF !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  border-radius: 50px;
}

header nav .login-btn {
  display: flex;
  padding: 12px 24px !important;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 50px;
  border: 1px solid var(--main-color-dark);
  color: var(--main-color-dark) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
}

header nav .language-text {
  color: var(--main-color-dark) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.dropdown-list {
  opacity: 0;
  visibility: hidden;
  /* Hidden but still takes up space */
  transform: translateY(15px);
  /* Move it down for the "fade up" effect */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  /* Delayed visibility toggle */
  position: absolute;
  top: 100%;
  min-width: 222px;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: -1 !important;
}

.dropdown-list a {
  padding: 24px 16px !important;
  display: block;
  color: var(--dark-blue, var(--Dark-Blue-Dark-blue, #103a5d));
  text-align: right;

  /* Titles/Title Regular */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-bottom: 0.5px solid var(--Dark-Blue-Dark-blue, #103a5d);
  transition: all 0.2s ease-in-out;
}

.dropdown-list a:hover {
  background-color: var(--main-color);
  color: #fff;
  padding: 24px 24px !important;
}

.nav-item:hover>.dropdown-list {
  visibility: visible;
  /* Make it visible */
  opacity: 1;
  /* Fully visible */
  transform: translateY(0);
  /* Moves it back to its original position */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
  /* No delay when showing */
}

/* End Navbar */

/* Start BreadCrumb */
.breadcrumb-container {
  padding: 18px 5px;
  background: url('../images/icons/vector.svg'),
    linear-gradient(99.87deg, #244281 0%, #2C5CC1 100%);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.breadcrumb-container .breadcrumb-inner {
  padding-left: 16px;
  position: relative;
}

.breadcrumb-container .breadcrumb-inner::after {
  content: '';
  position: absolute;
  left: 0;
  width: 2px;
  background-color: var(--yellow-color);
  top: 0;
  bottom: 0;
  border-radius: 5px
}

.breadcrumb-container nav {
  background-color: transparent
}

.breadcrumb-container ol {
  gap: 16px;
}

.breadcrumb-container .breadcrumb-item+.breadcrumb-item::before {
  display: none
}

.breadcrumb-container li {
  margin: 0 !important;
  padding: 0 !important
}

.breadcrumb-container li a,
.breadcrumb-container li.active {
  color: #DBEAFE;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 31px;


}

.breadcrumb-container li.active {
  font-weight: 700 !important;
  color: #FFF;
}

/* End Breadcrumb */

/* Start Footer */
footer {
  padding: 80px 0;
  width: 100%;
  bottom: 0;
  background: linear-gradient(100deg, #244281 0%, #2C5CC1 100%);
}

footer .contact-ways-wrapper ul p {
  font-size: 16px;
  font-weight: 700;
}

footer .contact-ways-wrapper ul span {
  font-size: 14px;
  color: #FFF;
}

footer .contact-ways-wrapper ul a {
  font-size: 16px;
  font-weight: 700;
}

footer hr {
  background-color: var(--main-color) !important
}

footer .down-footer .about-text {
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

footer .down-footer h3 {
  color: var(--yellow-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

footer .down-footer .down-footer-links a {
  font-size: 16px;
  font-weight: 400;
}

footer .down-footer .news-letter-wrapper input {
  padding-top: 15px;
  padding-left: 23px;
  padding-bottom: 15px;
  border-radius: 50px;
  border: 0;
  outline: 0
}

footer .down-footer .news-letter-wrapper span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-200%);
  background-color: var(--green-color);
  width: 26px;
  height: 26px;
  border-radius: 50px;
  text-align: center
}

footer .down-footer .news-letter-wrapper input::placeholder {
  color: var(--black-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer .down-footer .social-links {
  margin-top: 46px;
}

footer .down-footer .social-links a {
  border: 1px solid #FFF;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 100%
}

/* End Footer */

/* Start copy-rights */
.copy-rights {
  background-color: var(--main-color-dark);
  padding: 17px 0;
  font-size: 14px;
}

/* End copy-rights */


.bordered-input input {
  border: 0 !important;
  border-radius: 0;
  border-bottom: 1px solid var(--main-color-dark) !important;
  background-color: transparent !important;
  box-shadow: none !important
}

.bordered-input label {
  color: var(--main-color-dark) !important;

  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;

}

.submit-btn {
  padding: 12px 24px;
  border: 0;
  outline: 0;
  background-color: var(--main-color-dark);
  color: #FFF;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;

}


.file-uploader-form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid var(--main-color-dark) !important;
}

/* span {
  font-size: 16px;
  color: #0056b3;
}
 */
.file-input {
  display: none;
}

.browse-btn {
  background-color: #DBEAFE;
  border: 1px solid var(--main-color-dark);
  color: #0056b3;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}



.browse-btn:hover {
  background-color: #cce4ff;
}

.line-h-31 {
  line-height: 31px !important
}

.details-main-title {
  color: var(--main-color-dark);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
}

.second-slogan {
  color: var(--main-color-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}

.second-title {
  color: var(--main-color-dark);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
}

/* Pagination */
.shared-pagination ul {
  gap: 10px;
}

.shared-pagination a {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  border-radius: 100px !important;
}


.shared-pagination .page-item:not(:nth-child(1)) a {
  width: 44px;
  height: 44px;

}

.shared-pagination a:hover {
  background-color: #e9ecef;
  color: var(--main-color-dark);
}

.shared-pagination .page-item:last-child a,
.shared-pagination .page-item:nth-child(1) a {
  width: auto;
  height: 44px
}

.shared-pagination .page-item.active a {
  background-color: var(--green-color);
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.vector-left-container {
  position: relative;
}

.vector-left-container::after {
  content: '';
  position: absolute;
  left: 0;
  top: -3%;
  width: 85px;
  height: 100%;
  z-index: -1;
  background: var(--Linear, linear-gradient(180deg, #6FB858 0%, #C3D451 100%));
}

@media (max-width: 567px) {
  .main-title-container h2 {
    font-size: 20px;
  }
}