@import "./variable.css";

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--black);
  color: var(--text-color);
  font-family: var(--inter);
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 1.3;
  overflow-x: hidden;
}

/* Better media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button:focus,
button {
  cursor: pointer;
  outline: none;
}

input,
select,
textarea {
  outline: none;
}

a {
  color: var(--primary);
  transition: all 0.3s linear;
  outline: none;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

/* --- container ---*/
.container {
  max-width: 1304px;
}

.container1340 {
  max-width: 1340px;
}

.container1424 {
  max-width: 1424px;
}

.container1390 {
  max-width: 1390px;
}

/* --- title ---*/
.section-title {
  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-bold);
  font-size: 42px;
  line-height: 147%;
}

.sub-title {
  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-semi-bold);
  font-size: 24px;
  line-height: 31px;
}

.box-title {
  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-bold);
  font-size: 26px;
  line-height: 120%;
}

.card-title {
  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-bold);
  font-size: 32px;
  line-height: 147%;
}

.section-text {
  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-regular);
  font-size: 18px;
  line-height: 147%;
}

/* --- buttons ---*/
.primary-btn {
  display: inline-block;
  background-color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s linear;
  border-radius: 100px;
  padding: 16px 35px;
  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-medium);
  font-size: 16px;
  line-height: 150%;
  border: none;
}

.primary-btn:hover {
  color: var(--black);
  background-color: var(--white);
}

.secondary-btn {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--white);
  text-decoration: none;
  transition: all 0.3s linear;
  border-radius: 100px;
  padding: 16px 25px;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-medium);
  font-size: 16px;
  line-height: 150%;
}

.secondary-btn:hover {
  color: var(--black);
  background-color: var(--white);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  background: linear-gradient(206.46deg, var(--primary-color) -0.77%, var(--secondary-color) 87.05%);
  text-decoration: none;
  transition: all 0.3s linear;
  border-radius: 100px;
  padding: 14px 30px 16px;

  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-medium);
  font-size: 16px;
  line-height: 150%;
  position: relative;
  z-index: 0;
}

.contact-btn::before {
  content: "";
  background-color: var(--black);
  border-radius: 100px;
  position: absolute;
  inset: 3px;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s linear;
}

.contact-btn:hover::before {
  opacity: 1;
}

/* ----- header css start ----- */
.header {
  padding: 15px 0;
  background-color: transparent;
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 999;
}

.header.header-fixed {
  top: 0;
}

.header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border: 2px solid var(--border-color);
  background-color: rgba(0, 0, 0, 0.8);
  /* backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(10px); */
  padding: 0 30px;
  border-radius: 100px;
}

.header .navbar::before {
  content: "";
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(10px);
  --tw-backdrop-blur: blur(100px);
  border-radius: 100px;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.header .navbar-brand {
  margin-right: 0;
  padding: 0;
  width: 74px;
}

.header .navbar-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header .navbar-collapse {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 75.35%;
  margin-left: auto;
  padding: 12px 0;
}

.header .navbar-nav {
  gap: 20px;
}

.header .navbar-nav .nav-item {
  border-radius: 100px;
}

.header .navbar-nav .nav-item .nav-link {
  padding: 12px 16px;
  border-radius: 100px;

  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 150%;
  transition: all 0.3s linear;
  position: relative;
  box-shadow: none;
  outline: none;
}

.header .navbar-nav .nav-item.current-menu-item,
.header .navbar-nav .nav-item:hover .nav-link,
.header .navbar-nav .nav-item .nav-link:hover {
  background-color: var(--border-color);
}

.header .navbar-nav .nav-item.dropdown .nav-link {
  padding-right: 51px;
}

.header .navbar-nav .nav-item.dropdown .dropdown-toggle {
  width: 24px;
  height: 24px;
  background: transparent;
  outline: none;
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto 0;
  padding: 0;
}

.header .navbar-nav .nav-item.dropdown .dropdown-toggle picture {
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .navbar-nav .nav-item.dropdown .dropdown-toggle[aria-expanded="true"] picture {
  transform: rotateX(180deg);
}

.header .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
  display: none;
}

.header .navbar-nav .nav-item.dropdown .dropdown-menu {
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 15%);
  background-color: transparent;
  --tw-backdrop-blur: blur(50px);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  top: 55px;
  overflow: hidden;
}

.header .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 0;
  color: var(--white);
  font-family: var(--inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255 255 255 / 25%);
}

.header .navbar-nav .nav-item.dropdown .dropdown-menu .menu-item.current-menu-item,
.header .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: transparent !important;
  color: var(--info-color) !important;
}
.header .navbar-nav .nav-item.dropdown .dropdown-menu .menu-item.current-menu-item .dropdown-item{
  color: var(--info-color) !important;
}

.header .navbar-nav .nav-item.dropdown .dropdown-menu li:first-child .dropdown-item {
  padding-top: 0;
}

.header .navbar-nav .nav-item.dropdown .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 0;
  border-bottom: none;
}

.header .navbar-toggler {
  width: 30px;
  height: 30px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  position: relative;
}

.header .navbar-toggler .nav-icon-line {
  width: 27px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--white);
  transition: all 0.3s linear;
}

.header .navbar-toggler[aria-expanded="true"] .nav-icon-line:first-child {
  transform: rotate(45deg) translate(3px, 2px);
}

.header .navbar-toggler[aria-expanded="true"] .nav-icon-line:nth-child(2) {
  display: none;
}

.header .navbar-toggler[aria-expanded="true"] .nav-icon-line:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* hero-cta */
.hero-cta {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 20px;
  padding: 8px 8px 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.071);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0px 8px 10.9px 0px #0003121F, 0px 1px 1px 0px #0003124D;

  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-regular);
  font-size: 17px;
  line-height: 150%;
  text-align: center;
}

.hero-cta p {
  margin-bottom: 0;
}

/* news-card */
.news-card {
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card .news-card-img {
  position: relative;
  width: 100%;
  padding-bottom: 60.4%;
  overflow: hidden;
  border-radius: 20px;
}

.news-card .news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

.news-card .news-card-data {
  margin-top: -63px;
  padding: 83px 20px 30px;
  background: linear-gradient(180deg, rgba(29, 217, 183, 0.3) 21.56%, rgba(2, 10, 6, 0.3) 65.68%);
  border: 1px solid rgba(29, 217, 183, 0.2);
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.news-card .news-card-data span {
  color: var(--info-color);
  font-family: var(--inter);
  font-weight: var(--fw-regular);
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.28px;
  display: inline-block;
  margin-bottom: 14px;
}

.news-card .news-card-data p {
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card .news-card-data a {
  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-semi-bold);
  font-size: 14px;
  line-height: 100%;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.news-card .news-card-data a:hover {
  color: var(--primary-color);
}

/* reports-card */
.reports-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-weight: var(--fw-semi-bold);
}

.reports-card .reports-card-img {
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 245px;
  width: 100%;
}

.reports-card span {
  color: var(--white);
  font-family: var(--inter);
  font-weight: var(--fw-regular);
  font-size: 14px;
  line-height: 147%;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.20);
  padding: 1px 9px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.reports-card p {
  margin-bottom: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.content-wrapper {
  padding-top: 182px;
}

/* ----- pagination css ----- */

.pagination-section .pagination {
  gap: 5px;
}

.pagination-section .pagination .page-link-item,
.pagination-section .pagination .page-link {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  color: var(--lightgrey-color);
  text-decoration: none;
}

.pagination-section .pagination .page-link-item:focus,
.pagination-section .pagination .page-link:focus {
  box-shadow: none;
}

.pagination-section .pagination .page-item.active .page-link-item,
.pagination-section .pagination .page-item.active a.page-link {
  background: var(--info-color);
  color: var(--black);
}

.pagination-section .pagination .page-link-item:hover,
.pagination-section .pagination .page-link:hover {
  background: var(--info-color);
  color: var(--black);
}

.pagination-section .pagination .page-link-item:hover img,
.pagination-section .pagination .page-link:hover img {
  filter: invert(1) brightness(0.2);
}

.pagination-section .pagination .page-item {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----- main-banner-section ----- */
.main-banner-section .banner-container {
  max-width: 1404px;
}

.main-banner-section .banner-container .main-banner-img {
  position: relative;
  padding-bottom: 43.479%;
  border-radius: 15px;
  overflow: hidden;
}

.main-banner-section .banner-container .main-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

/* ----- footer ----- */

.footer-section {
  background: radial-gradient(100% 100% at 50% 0%, #1e1e1e 0%, #121212 100%);
  padding: 15px 0;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  padding-bottom: 20px;
}

.footer-menu .menu-link {
  display: flex;
  gap: 15px 24px;
  margin-bottom: 0;
}

.footer-wrapper .footer-btn {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  background: linear-gradient(206.46deg, #00b08b -0.77%, #9f4e9e 87.05%);
  padding: 15px 31px;
  border-radius: 100px;
  transition: all 0.3s linear;
}

.footer-wrapper .footer-btn:hover {
  background: linear-gradient(122.21deg, #00b08b 7.79%, #9f4e9e 90.05%);
}

.footer-wrapper .menu-link .menu-item a {
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 150%;
  color: var(--grey-color);
  text-decoration: none;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.footer-wrapper .menu-link .menu-item a:hover {
  background: var(--border-color);
}

.footer-section .copy-right {
  text-align: center;
  padding: 15px 0 0 0;
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
  line-height: 20px;
}

.footer-wrapper .footer-logo {
  width: 74px;
  height: 60px;
  min-width: 74px;
}

@media (min-width: 992px) {
  .home-header {
    position: absolute;
  }

  .home-header .navbar {
    border: none;
    background-color: transparent;
  }

  .home-header .navbar::before {
    display: none;
  }

  .home-header .navbar-nav {
    border: 2px solid var(--border-color);
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 100px;
    padding: 17px 8px;
    position: relative;
  }

  .home-header .navbar-nav::before {
    content: "";
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(10px);
    --tw-backdrop-blur: blur(100px);
    border-radius: 100px;
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  .home-header .navbar-collapse {
    padding: 0;
  }
}

@media (max-width: 1366px) {
  .content-wrapper {
    padding-top: 150px;
  }

  .main-banner-section .banner-container .main-banner-img {
    padding-bottom: 33.92%;
  }
}

@media (max-width: 1279px) {
  .header .navbar-collapse {
    max-width: 80%;
  }

  .secondary-btn {
    padding: 12px 20px;
  }

  .primary-btn {
    padding: 12px 25px;
  }
}

@media (max-width: 1199px) {
  .header .navbar-collapse {
    max-width: 83%;
    padding: 10px 0;
    gap: 25px;
  }

  .header .navbar {
    padding: 0 20px;
  }

  .header .navbar-nav {
    gap: 10px;
  }

  .header .navbar-nav .nav-item .nav-link {
    padding: 10px 15px;
  }

  .header .navbar-nav .nav-item.dropdown .nav-link {
    padding-right: 35px;
  }

  .header .navbar-nav .nav-item.dropdown .dropdown-toggle {
    right: 8px;
  }

  .pagination-section .pagination .page-link {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .section-title {
    font-size: 38px;
  }
}

@media (max-width: 1024px) {
  .header .navbar-collapse {
    max-width: 85%;
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 34px;
  }

  .sub-title {
    font-size: 20px;
    line-height: 28px;
  }

  .card-title {
    font-size: 26px;
  }

  .section-text {
    font-size: 16px;
  }

  .hero-cta {
    margin-bottom: 15px;
  }

  .header {
    top: 0;
    padding: 10px 0;
  }

  .header .navbar {
    padding: 10px 20px;
  }

  .header .navbar-brand {
    width: 65px;
  }

  .header .navbar-toggler {
    display: flex;
  }

  .header .navbar-collapse {
    display: none;
    border: 2px solid var(--border-color);
    background-color: var(--black);
    border-radius: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    flex-direction: column;
    height: calc(100dvh - 110px);
    max-width: 100%;
    align-items: flex-start;
    margin: 0 auto;
    padding: 20px;
  }

  .header .navbar-collapse.show {
    display: flex;
  }

  .header .navbar-nav {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }

  .header .contact-btn {
    margin: 0 auto;
  }

  .header .navbar-nav .nav-item.dropdown .dropdown-menu {
    top: 0;
    padding: 20px;
  }

  .header .navbar-nav .nav-item.dropdown .dropdown-toggle {
    top: 11px;
    bottom: auto;
    margin: 0;
  }

  .footer-menu .menu-link {
    gap: 10px;
  }

  .footer-wrapper .menu-link .menu-item a {
    padding: 8px;
  }

  .footer-wrapper .footer-btn {
    padding: 11px 17px;
  }

  .footer-wrapper .contact-btn {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-wrapper {
    padding-top: 120px;
  }

  .main-banner-section .banner-container .main-banner-img {
    padding-bottom: 47.1%;
  }

  .pagination-section .pagination {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }

  .sub-title {
    font-size: 18px;
    line-height: 26px;
  }

  .card-title {
    font-size: 22px;
  }

  .footer-wrapper {
    gap: 20px;
  }

  .footer-wrapper .footer-btn {
    padding: 10px 15px;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-menu {
    width: 100%;
  }

  .footer-menu .menu-link {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pagination-section .pagination .page-link {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
}

@media (max-width: 575px) {
  .footer-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-menu .menu-link {
    gap: 5px;
  }
}

@media (max-width: 479px) {
  .section-title {
    font-size: 26px;
  }

  .card-title {
    font-size: 18px;
  }

  .box-title {
    font-size: 20px;
  }

  .main-banner-section .banner-container .main-banner-img {
    padding-bottom: 62.4%;
    border-radius: 12px;
  }

  .secondary-btn {
    padding: 9px 16px 10px;
    line-height: 21px;
  }
}