* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffff;
}

/* Tablets */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}

/* Small tablets and large phones */
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}

/* Phones */
@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

.fade-in-animation {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.fade-in-animation.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.left-slide-in-animation {
  transform: translateX(-300px);
  transition: transform 1s ease;
}

.left-slide-in-animation.show {
  transform: translateX(0px);
}

.right-slide-in-animation {
  transform: translateX(300px);
  transition: transform 1s ease;
}

.right-slide-in-animation.show {
  transform: translateX(0px);
}

/* Nav Bar  */

.nav-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.nav-header .header-strip {
  background: #183b6e;
  display: flex;
  justify-content: space-between;
  height: 2.5rem;
  align-items: center;
  padding: 0 0.75rem;
}

.nav-header .header-strip .left-side {
  display: flex;
  gap: 0.75rem;
}

.nav-header .header-strip .left-side a {
  text-decoration: none;
}

.nav-header .header-strip .right-side {
  display: flex;
  gap: 1rem;
}

.nav-header .header-strip .right-side .content {
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-header .header-strip .right-side a {
  height: 2.5rem;
  border: none;
  color: #fff;
  font-weight: 700;
  padding-left: 1rem;
  border-left: 2px solid #4f689b;
  display: flex;
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
}

.nav-bar-container {
  background-color: #fff;
  color: #000000;
  box-shadow: 0px 0px 47px -34px rgb(0 0 0);
  display: flex;
  justify-content: center;
  height: 100px;
  width: 100%;
}

.nav-bar {
  display: flex;
  align-items: center;
  max-width: 1200px;
  gap: 3rem;
  width: 100%;
  padding: 1rem 4rem;
}

.nav-bar .logo-container {
  width: auto;
  height: 100%;
}

.nav-bar .logo {
  width: auto;
  height: 100%;
}

.nav-bar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  min-width: 425px;
}

.nav-bar ul li {
  position: relative;
}

.nav-bar ul li::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  border-bottom: 3px solid #183b6e;
  left: 0;
  bottom: 0;
  transition: width 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-bar ul li:hover::before {
  width: 100%;
}

/* .nav-bar ul .active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid #183b6e;
  left: 0;
  bottom: 0;
}
 */
.nav-bar ul li a {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #000000;
  padding: 18px 8px;
  display: block;
  position: relative;
  z-index: 2;
}

.nav-bar .search-container {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-bar .search-container button {
  position: absolute;
  background-color: transparent;
  margin-left: 0.75rem;
  width: 1.2rem;
  height: 1.2rem;
  outline: none;
  border: 0;
}

.nav-bar .search-container svg {
  fill: #00000066;
  width: 1.2rem;
  height: 1.2rem;
}

.nav-bar .search-container input {
  width: 100%;
  background-color: #f0f0f0;
  padding: 12px 8px;
  padding-left: 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  outline: 0;
  border: 0;
  border-radius: 100px;
  color: #000000a3;
}

.nav-bar .search-container input::placeholder {
  color: #00000066;
}

/* nav bar small screen*/
.nav-bar-sm-container {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #00000024;
}

.nav-bar-sm {
  padding: 1rem;
  height: 100%;
  width: 200px;
  background-color: #ffffff;
  animation: nav-bar-sm 0.4s ease forwards;
}

@keyframes nav-bar-sm {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.nav-bar-sm ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  margin: 0;
}

.nav-bar-sm ul li {
  padding: 8px 12px;
}

.nav-bar-sm ul li a {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #000000;
}

.nav-bar-sm .nav-close-btn {
  display: flex;
}

.nav-bar-sm .nav-close-btn button {
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0 0 0 auto;
}

.nav-bar-open-btn-sm {
  display: none;
}

/* media query */
@media (min-width: 1500px) {
  .nav-bar {
    max-width: 1400px;
  }
}

@media (max-width: 800px) {
  .nav-bar ul {
    display: none;
  }

  .nav-bar-sm-container.show {
    display: block;
  }

  .nav-bar-open-btn-sm {
    display: block;
  }

  .nav-bar {
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem;
    flex-direction: column;
  }

  .nav-bar-container {
    height: 150px;
  }

  .nav-bar-container .logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
  }
}

@media (max-width: 550px) {
  .nav-header .header-strip {
    display: none;
  }
}

/* sec 1  */

.sec-1 {
  background-image: url(../assets/sec-1-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: calc(100px + 2.5rem);
  display: flex;
  padding: 3rem;
  position: relative;
  gap: 1rem;
}

.sec-1 .left-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}

.sec-1 .left-side h1 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  color: #fff;
  max-width: 500px;
}

.sec-1 .left-side .content {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 200;
  margin-bottom: 1rem;
}

.sec-1 .left-side button {
  background-color: #00497c;
  outline: 0;
  border: none;
  width: 130px;
  color: #fff;
  font-weight: 500;
  padding: 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.sec-1 .left-side .count-container {
  display: flex;
}

.sec-1 .left-side .count-container .count {
  margin-right: 14px;
  padding-right: 14px;
  border-right: 1px solid #ffffff1a;
}

.sec-1 .left-side .count-container .count:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.sec-1 .left-side .count-container .count span {
  font-size: 1.6rem;
  color: #fff;
}

.sec-1 .left-side .count-container .count p {
  color: #ffffff99;
  font-size: 1rem;
}

.sec-1 .right-side {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-1 .right-side .dec {
  position: absolute;
  right: 0;
  top: 0;
}

.sec-1 .right-side .dec-2 {
  position: absolute;
  left: 0;
  top: 20%;
}

.sec-1 .right-side img {
  width: 100%;
}

@media (max-width: 900px) {
  .sec-1 {
    flex-direction: column;
  }

  .sec-1 .left-side {
    width: 100%;
  }

  .sec-1 .left-side h1 {
    text-align: center;
    margin: auto;
    max-width: 550px;
  }

  .sec-1 .left-side .content {
    max-width: 500px;
    text-align: center;
    margin: auto;
    margin-bottom: 1rem;
  }

  .sec-1 .left-side button {
    margin: auto;
    margin-bottom: 1rem;
  }

  .sec-1 .left-side .count-container {
    justify-content: center;
  }

  .sec-1 .right-side {
    margin: auto;
    width: 100%;
    max-width: 550px;
  }
}

@media (max-width: 800px) {
  .sec-1 {
    margin-top: calc(150px + 2.5rem);
  }
}

@media (max-width: 550px) {
  .sec-1 {
    margin-top: 150px;
  }

  .sec-1 .right-side .dec {
    display: none;
  }

  .sec-1 .right-side .dec-2 {
    display: none;
  }
}

/* sec-2  */
.sec-2 {
  display: flex;
  width: 100%;
}

.sec-2-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.sec-2-container h2 {
  margin-bottom: 1rem;
  color: #4d4d4d;
  font-weight: 600;
}

.sec-2-container .row-container {
  position: relative;
  margin: 0px 32px;
}

.sec-2-container .row-1 {
  display: flex;
}

.sec-2-container .row-1 img {
  display: inline-block;
  padding: 0 10px;
  max-height: 80px;
  height: 70px;
}

.sec-2-container .row-2 {
  display: flex;
  margin: 20px 0;
}

.sec-2-container .row-2 img {
  display: inline-block;
  padding: 0 10px;
  max-height: 80px;
  height: 70px;
  margin: 20px 0;
}

.sec-2-container .master-prev,
.sec-2-container .master-next {
  position: absolute;
  background: #ffffff;
  border: none;
  font-size: 20px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 30px;
  height: 30px;
  padding: 0px 0px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 5;
  border: 1px solid #717171;
}

.sec-2-container .master-prev {
  top: calc(50% - 15px);
  left: -30px;
}

.sec-2-container .master-next {
  top: calc(50% - 15px);
  right: -30px;
}

.sec-2-container .master-prev svg,
.sec-2-container .master-next svg {
  width: 12px;
  height: 12px;
  fill: #717171;
  margin: auto;
}

/* sec-3  */
.sec-3 {
  display: flex;
  width: 100%;
}

.sec-3-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.sec-3-container h2 {
  margin-bottom: 1rem;
  color: #4d4d4d;
  font-weight: 600;
}

.sec-3-container .tabs-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  overflow: auto;
}

.sec-3-container .tabs-container::-webkit-scrollbar {
  background-color: transparent;
}

.sec-3-container .tabs-container::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.sec-3-container .tabs-container {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.sec-3-container .tabs-container .tabs {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1rem;
  background-color: #163a6e;
  padding: 1rem 2rem 1rem 2rem;
  width: 100%;
  min-width: 300px;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}

@media (max-width: 767px) {
  .sec-3-container .tabs-container {
    display: flex;
  }
}

/* sec-4  */
.sec-4 {
  display: flex;
  width: 100%;
}

.sec-4-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.sec-4-container .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.sec-4-container h2 {
  color: #4d4d4d;
  font-weight: 600;
}

.sec-4-container .head button {
  background-color: transparent;
  border: 1px solid #000;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
}

.sec-4-container .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.sec-4-container .grid-item {
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid #0000004d;
  transition: transform 0.2s ease;
  text-decoration: none;
/*   min-height: 250px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec-4-container .grid-item:hover {
  transform: translateY(-5px);
}

.sec-4-container .grid-item img {
  max-width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.sec-4-container .grid-item span {
  display: block;
  font-size: 1rem;
  color: #000000;
  word-break:break-all;
}

/* sec-5  */
.sec-5 {
  display: flex;
  width: 100%;
  background-color: #163a6e;
}

.sec-5-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: flex;
}

.sec-5-container .left-side {
  width: 60%;
  margin-right: 2rem;
  padding-right: 3rem;
  border-right: 3px solid #ffb600;
  color: #fbfbfb;
}

.sec-5-container .left-side h1 {
  max-width: 400px;
  font-size: 2.2rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
}

.sec-5-container .left-side p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.9rem;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

.sec-5-container .left-side button {
  background-color: #00497c;
  color: #ffffff;
  border: 0;
  outline: 0;
  padding: 1rem 2.5rem;
  border-radius: 50px;
}

.sec-5-container .right-side {
  width: 40%;
  color: #fbfbfb;
}

.sec-5-container .right-side .content {
  margin-bottom: 1rem;
}

.sec-5-container .right-side .head {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.sec-5-container .right-side .head h5 {
  font-size: 1.4rem;
  margin-left: 0.75rem;
}

.sec-5-container .right-side .head img {
  width: 1.75rem;
  height: 1.75rem;
}

.sec-5-container .right-side .content p {
  margin-left: 2.5rem;
  font-size: 1rem;
  line-height: 1.4rem;
}

@media (max-width: 800px) {
  .sec-5-container {
    flex-direction: column;
  }

  .sec-5-container .left-side {
    width: 100%;
    margin-right: 0rem;
    padding-right: 0rem;
    border-right: none;
    color: #fbfbfb;
    text-align: center;
    margin-bottom: 3rem;
  }

  .sec-5-container .left-side h1 {
    margin: auto;
    margin-bottom: 1rem;
  }

  .sec-5-container .left-side p {
    margin: 0 auto 1.5rem auto;
  }

  .sec-5-container .right-side {
    width: 100%;
    max-width: 550px;
    margin: auto;
  }
}

/* sec-6  */
.sec-6 {
  display: flex;
  width: 100%;
}

.sec-6-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.sec-6-container h2 {
  color: #4d4d4d;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sec-6-container .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.sec-6-container .grid-item {
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid #e8e8ea;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.sec-6-container .grid-item:hover {
  transform: translateY(-5px);
}

.sec-6-container .grid-item .hero-image {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.sec-6-container .grid-item button {
  background-color: #4b6bfb0d;
  color: #4b6bfb;
  border: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.sec-6-container .grid-item p {
  color: #181a2a;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}

.sec-6-container .grid-item .person {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.sec-6-container .grid-item .person img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.sec-6-container .grid-item .person span {
  color: #97989f;
  font-size: 1rem;
}

@media (max-width: 500px) {
  .sec-6-container .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

/* footer  */
.footer {
  width: 100%;
  padding: 1rem;
}

.footer-container {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: #f0f0f0;
  display: flex;
  border-radius: 12px;
}

.footer-container .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  padding: 2rem 0rem;
}

.footer-container .logo {
  width: 300px;
  min-width: 300px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container .logo img {
  width: 200px;
  height: auto;
}

.footer-container .grid-container h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #323232;
}

.footer-container .grid-container .list {
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  display: block;
  text-decoration: none;
  color: #323232;
  transform: translateX(0);
  transition: all 0.3s ease-in-out;
}

.footer-container .grid-container .list:hover {
  transform: translateX(5px);
}

.footer-container .grid-container p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  color: #323232;
}

.footer-container .grid-container .icon-container {
  display: flex;
  gap: 0.6rem;
}

.footer-container .grid-container .icon-container .icon {
  background-color: #323232;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.footer-container .grid-container .icon-container .icon:hover {
  transform: scale(1.1);
}

.footer-container .grid-container .icon-container .icon img {
  width: 1rem;
  height: 1rem;
}

.footer .copy-right {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
  color: #00000099;
  font-weight: 400;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    padding: 3rem;
  }

  .footer-container .logo {
    width: 100%;
  }

  .footer-container .grid-container {
    text-align: center;
  }

  .footer-container .grid-container .icon-container {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 450px) {
  .footer-container .logo {
    min-width: 100%;
  }

  .footer-container .logo img {
    width: 100%;
    height: auto;
  }

  .footer-container .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 1.5rem;
  }
}
