/* Start Gradient card css */

.gradient_cards_wrapper {
  padding: 20px;
  position: relative;
  background-color: var(--color-white);
}

.gradient_cards_wrapper h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  color: #2f484a;
  margin-top: 0;
}

.gradient_cards_wrapper .subtitle {
  font-size: 26px;
  text-align: center;
  margin-bottom: 48px;
  opacity: 0.8;
  color: #2f484a;
}

.gradient_cards_wrapper .cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  perspective: 1000px;
}

.gradient_cards_wrapper .card {
  position: relative;
  height: 320px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
}

.gradient_cards_wrapper .card-content {
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  color: #2f484a;
}

.gradient_cards_wrapper .card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.gradient_cards_wrapper .card p {
  margin-bottom: 24px;
  font-size: 14px;
  opacity: 0.8;
}

.gradient_cards_wrapper .card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gradient_cards_wrapper .hero-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.gradient_cards_wrapper .hero-btn:hover {
  transform: translateY(-4px);
}

.gradient_cards_wrapper .card-icon {
  font-size: 20px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.gradient_cards_wrapper .card:hover .card-icon {
  transform: translateX(5px);
  opacity: 1;
}

/* End Gradient card css */

/* Start overlaps cards */

.overlaps_cards {
  display: flex;
  justify-content: center;
  background-image: url("../../img/blueBlurred.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.overlaps_cards .card {
  background-image: linear-gradient(90deg, #3d71f5, #0d4ef2);
  border-radius: 1em;
  box-shadow: 0 0.25em 0.375em hsla(0, 0%, 0%, 0.1);
  position: absolute;
  top: calc(32px * 6);
  left: calc(32px * 5);
  width: 337px;
  height: 205px;
  transform: translate(-50%, -50%);
  position: relative;
}

[dir="rtl"] .overlaps_cards .card {
  background-image: linear-gradient(-90deg, #3d71f5, #0d4ef2);
  left: 32px;
}

.overlaps_cards .card--glass {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  color: transparent;
  top: calc(32px * 0.5);
  left: calc(32px * 6);
}

.overlaps_cards .card--glass::before,
.overlaps_cards .card--glass::after {
  border-radius: inherit;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
}

.overlaps_cards .card--glass::before {
  border: 1px solid var(--color-white);
  mask-image: linear-gradient(135deg, var(--color-white), rgba(255, 255, 255, 0) 50%);
}

.overlaps_cards .card--glass::after {
  border: 1px solid #0d4ef2;
  mask-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, var(--color-white));
}

[dir="rtl"] .overlaps_cards .card--glass {
  background-image: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  left: calc(32px * -1);
}

[dir="rtl"] .overlaps_cards .card--glass::before {
  mask-image: linear-gradient(-135deg, var(--color-white), rgba(255, 255, 255, 0) 50%);
}

[dir="rtl"] .overlaps_cards .card--glass::after {
  mask-image: linear-gradient(-135deg, rgba(255, 255, 255, 0) 50%, var(--color-white));
}

.overlaps_cards .card__content {
  background: linear-gradient(
        rgba(255, 255, 255, 0) 3.125em,
        #6e95f7 3.375em,
        #9efaf7 4.5em
      )
      0 0 / calc(337px - 32px * 2) 50%,
    linear-gradient(
        90deg,
        #9efaf7 13em,
        #6e95f7 calc(337px - 32px * 2),
        rgba(255, 255, 255, 0) 19.1em
      )
      0 100% / 100% 50%,
    linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.5) 4em,
        rgba(255, 255, 255, 0.2)
      )
      0 0 / 100% 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25em 1.5em;
  position: relative;
  height: 100%;
  z-index: 1;
  -webkit-background-clip: text;
  background-clip: text;
  background-repeat: no-repeat;
}

[dir="rtl"] .overlaps_cards .card__content {
  background: linear-gradient(
        rgba(255, 255, 255, 0) 3.125em,
        #6e95f7 3.375em,
        #9efaf7 4.5em
      )
      100% 0 / calc(337px - 32px * 2) 50%,
    linear-gradient(
        -90deg,
        #9efaf7 13em,
        #6e95f7 calc(337px - 32px * 2),
        rgba(255, 255, 255, 0) 19.1em
      )
      100% 100% / 100% 50%,
    linear-gradient(
        -90deg,
        rgba(255, 255, 255, 0.5) 4em,
        rgba(255, 255, 255, 0.2)
      )
      100% 0 / 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  background-repeat: no-repeat;
}

.overlaps_cards .card__logo,
.overlaps_cards .card__title {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.17;
}

.overlaps_cards .card__logo {
  text-align: end;
  width: 25%;
}

.overlaps_cards .card__title {
  width: 75%;
}

.overlaps_cards .card__url {
  font-size: 10px;
  align-self: flex-end;
  margin-inline-start: auto;
}

/* End overlaps cards */

/* Start explore tabs */

.cloneable_wrapper {
  padding: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  font-size: 1.1vw;
  background-color: var(--color-white);
}

.cloneable_wrapper .tab-container {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 80%;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 26px;
  display: flex;
}

.cloneable_wrapper .tab-layout-container {
  width: 100%;
  max-width: 380px;
  height: 100%;
  margin-right: 0;
}

.cloneable_wrapper .tab-container-bottom {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.cloneable_wrapper .tab-container-top {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.cloneable_wrapper .tab-layout-col {
  width: 50%;
}

.cloneable_wrapper .tab-content-wrap {
  width: 100%;
  min-width: 212px;
  position: relative;
}

.cloneable_wrapper .content-p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.cloneable_wrapper .tab-button__bg {
  z-index: 0;
  background-color: rgba(239, 238, 236, 0.059);
  border: 1px solid rgba(239, 238, 236, 0.078);
  border-radius: 2px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cloneable_wrapper .tab-content-item {
  z-index: 1;
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  visibility: hidden;
  flex-flow: column;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  color: #2f484a;
}

.cloneable_wrapper .tab-content-item.active {
  visibility: visible;
}

.cloneable_wrapper .tab-layout {
  z-index: 1;
  grid-row-gap: 26px;
  flex-flow: wrap;
  width: 100%;
  min-height: 330px;
  display: flex;
  position: relative;
}

.cloneable_wrapper .filter-bar {
  background-color: rgba(239, 238, 236, 0.059);
  border: 1px solid rgba(239, 238, 236, 0.078);
  border-radius: 4px;
  padding: 4px;
  display: flex;
}

.cloneable_wrapper .filter-button {
  background-color: #b0d2da;
  padding: 10px;
  border-style: none;
  transition: all 0.2s ease-in-out;
  position: relative;
  font-size: inherit;
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f484a;
}

.cloneable_wrapper .filter-button.active {
  background-color: #3a78c2;
  border-radius: 2px;
  color: var(--color-white);
}

.cloneable_wrapper .filter-button__p {
  z-index: 1;
  font-size: 16px;
  position: relative;
}

.cloneable_wrapper .tab-visual-wrap {
  border-radius: 4px;
  width: 100%;
  height: 500px;
  max-height: 80vh;
  position: relative;
  overflow: hidden;
}

.cloneable_wrapper .tab-visual-item {
  visibility: hidden;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.cloneable_wrapper .tab-visual-item.active {
  visibility: visible;
}

.cloneable_wrapper .tab-image {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  max-width: none;
  height: 100%;
}

.cloneable_wrapper .tab-content__heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.cloneable_wrapper .tab-layout-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: #2f484a;
}

/* End explore tabs */

/* Starts our team part */

/* .our_team_wrapper {
  background-color: #e6f3f5;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 140px 20px 20px 20px;
  overflow: hidden;
}

.our_team_wrapper .about-title {
  font-size: 7.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  background: linear-gradient(
    to bottom,
    rgb(8 42 123 / 35%) 30%,
    rgb(255 255 255 / 0%) 76%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 30px;
}

.our_team_wrapper .carousel-container {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  position: relative;
  perspective: 1000px;
}

.our_team_wrapper .carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.our_team_wrapper .card {
  position: absolute;
  width: 280px;
  height: 380px;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.our_team_wrapper .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.our_team_wrapper .card.center {
  z-index: 10;
  transform: scale(1.1) translateZ(0);
}

.our_team_wrapper .card.center img {
  filter: none;
}

.our_team_wrapper .card.left-2 {
  z-index: 1;
  transform: translateX(-400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.our_team_wrapper .card.left-2 img {
  filter: grayscale(100%);
}

.our_team_wrapper .card.left-1 {
  z-index: 5;
  transform: translateX(-200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.our_team_wrapper .card.left-1 img {
  filter: grayscale(100%);
}

.our_team_wrapper .card.right-1 {
  z-index: 5;
  transform: translateX(200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.our_team_wrapper .card.right-1 img {
  filter: grayscale(100%);
}

.card.right-2 {
  z-index: 1;
  transform: translateX(400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.our_team_wrapper .card.right-2 img {
  filter: grayscale(100%);
}

.our_team_wrapper .card.hidden {
  opacity: 0;
  pointer-events: none;
}

.our_team_wrapper .member-info {
  text-align: center;
  margin-top: 40px;
  transition: all 0.5s ease-out;
}

.our_team_wrapper .member-name {
  color: rgb(8, 42, 123);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.our_team_wrapper .member-name::before,
.our_team_wrapper .member-name::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 100px;
  height: 2px;
  background: rgb(8, 42, 123);
}

.our_team_wrapper .member-name::before {
  left: -120px;
}

.our_team_wrapper .member-name::after {
  right: -120px;
}

.our_team_wrapper .member-role {
  color: #848696;
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 0;
  margin-top: -15px;
  position: relative;
}
.our_team_wrapper .dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.our_team_wrapper .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(8, 42, 123, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.our_team_wrapper .dot.active {
  background: rgb(8, 42, 123);
  transform: scale(1.2);
}

.our_team_wrapper .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 42, 123, 0.6);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  border: none;
  outline: none;
  padding-bottom: 4px;
}

.our_team_wrapper .nav-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.our_team_wrapper .nav-arrow.left {
  left: 20px;
  padding-right: 3px;
}

.our_team_wrapper .nav-arrow.right {
  right: 20px;
  padding-left: 3px;
} */

/* End our team part */

/* Start department cards part */

.department_cards_wrapper {
  gap: 40px;
  position: relative;
  z-index: 10;
  align-items: center;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.department_cards_wrapper .card {
  position: relative;
  z-index: 555;
  max-width: 20rem;
  min-height: 20rem;
  width: 90%;
  display: grid;
  place-content: center;
  place-items: center;
  text-align: center;
  box-shadow: 0.063em 0.75em 1.563em rgb(0 0 0 / 78%);
  border-radius: 2.25rem;
  background-color: #4b6e72;
}

.department_cards_wrapper .card-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8em 0.5em 0em 1.5em;
}

.department_cards_wrapper .card-header .date {
  color: #ddd;
}

.department_cards_wrapper .card-header svg {
  color: var(--color-white);
  width: 2.5rem;
  cursor: pointer;
}

.department_cards_wrapper .card-body {
  position: absolute;
  width: 100%;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.7em 1.25em 0.5em 1.5em;
}

.department_cards_wrapper .card-body h3 {
  color: var(--color-white);
  font-size: 1.375rem;
  margin-top: 0.625em;
  margin-bottom: 0.188em;
  text-transform: capitalize;
  font-weight: 600;
}

.department_cards_wrapper .card-body p {
  color: #ddd;
  font-size: 1rem;
  letter-spacing: 0.031rem;
}

.department_cards_wrapper .card-body .progress {
  margin-top: 0.938rem;
}

.department_cards_wrapper .card-body .progress .progress-bar {
  position: relative;
  width: 100%;
  background: #363636;
  height: 5px;
  display: block;
  border-radius: 3.125rem;
}

.department_cards_wrapper .card-body .progress .progress-bar:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  display: block;
  border-radius: 100px;
  width: 50%;
  background-color: #6fa3a4;
}

.department_cards_wrapper .card-body .progress span:first-of-type {
  color: var(--color-white);
  text-align: left;
  font-weight: 600;
  width: 100%;
  display: block;
  margin-bottom: 5px;
}

.department_cards_wrapper .card-body .progress span {
  margin: 5px 0;
  text-align: right;
  display: block;
  color: var(--color-white);
}

.department_cards_wrapper .card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-top: 0.063rem solid #292929;
  display: flex;
  justify-content: space-between;
  padding: 0.7em 1.25em 0.5em 1.5em;
  border-bottom-left-radius: 2.25rem;
  border-bottom-right-radius: 2.25rem;
}

.department_cards_wrapper .card-footer ul {
  display: flex;
  align-items: center;
  padding: 0;
}

.department_cards_wrapper .card-footer ul li {
  list-style-type: none;
  display: flex;
  margin-right: -0.625rem;
}

.department_cards_wrapper .card-footer ul li img {
  border-radius: 50%;
  width: 1.875rem;
  height: 1.875rem;
  object-fit: cover;
}

.department_cards_wrapper .card-footer .btn-add {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  color: #2f484a;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
}

.department_cards_wrapper .card-footer .btn-add svg {
  width: 1rem;
}

.department_cards_wrapper a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* End department cards part */

/* Start more info details part */

.more_details_info_wrapper {
  background-color: #e6f3f5;
}

.info_container {
  margin: auto;
}

.info_header {
  background: url("hero-image.jpg") center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: var(--color-white);
  background-color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info_container_fluid {
  max-width: 1000px;
  padding: 0 20px 40px;
  margin: 0 auto;
}

.info_header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-align: center;
  max-width: 1000px;
}
.info_header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 1000px;
}

.more_details_info_wrapper .roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.more_details_info_wrapper .roadmap-card {
  background: var(--color-white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.more_details_info_wrapper .roadmap-card:hover {
  transform: translateY(-5px);
}

/* End more info details part */

/* Start overlay card */
.separated_block {
  padding-top: 30px;
}

.overlay_card_separated_block {
  padding: 5px 25px 45px 10px;
}

.overlay_card_wrapper {
  width: 100%;
  height: 300px;
  background: linear-gradient(90deg, #3d71f5, #0d4ef2);
  box-shadow: 0 0.25em 0.375em hsla(0, 0%, 0%, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.overlay_card {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(96, 165, 250, 0.1)
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  width: 100%;
  height: 300px;
  position: relative;
  top: 15px;
  left: 15px;
}

.overlay_card_centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-white);
}

/* End overlay card */

/* Start focus on a mission block */

.focus_on_mission_wrapper {
  position: relative;
  background: url("../../img/newGP.webp") center/cover no-repeat;
  padding: 40px;
}

.focus_on_mission_subtitle {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 10px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 1);
}

.focus_on_mission_title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 40px;
  max-width: 500px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.focus_on_mission_cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  max-width: 70%;
  margin-left: auto;
}

.focus_on_mission_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 20px 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.focus_on_mission_card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: inherit;
}

.focus_on_mission_card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
}

.focus_on_mission_card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-white);
  max-width: 300px;
}

/* End focus on a mission block  */

/* Start shining block */

.shining_block_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
  padding: 40px;
  background: linear-gradient(90deg, #3d71f5, #0d4ef2);
}

.shining_block_card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.shining_block_card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(25deg);
  animation: shine 3s infinite;
  pointer-events: none;
}

.shining_block_card h3 {
  margin: 0 0 10px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--color-white);
}

.shining_block_card p {
  font-size: 0.9em;
  line-height: 1.4;
  color: var(--color-white);
}

.shining_block_card.large {
  grid-column: span 2;
}

.shining_block_card.tall {
  grid-row: span 2;
}

.shining_block_card.wide {
  grid-column: span 2;
}

.shining_block_card_icon {
  font-style: normal;
}

.shining_block_card.icon {
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
}

.shining_block_search-bar {
  margin: 10px 0;
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  height: 40px;
}

.shining_block_search-bar input {
  flex: 1;
  border: none;
  padding: 10px;
  background: transparent;
  color: var(--color-white);
  outline: none;
}

.shining_block_search-bar input::placeholder {
  color: var(--color-white);
}

.shining_block_search-icon {
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes shine {
  0% {
    transform: rotate(25deg) translate(-100%, -100%);
  }
  100% {
    transform: rotate(25deg) translate(100%, 100%);
  }
}

/* End shining block */

/* Start browser styales */

.window_browser_wrapper {
  background: radial-gradient(circle at top left, #004080, #210038);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.window {
  width: 90%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.window_top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 10px;
}

.window_top-bar_circles {
  display: flex;
  gap: 8px;
}

.window_top-bar_circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-white);
}

.red {
  background: #ff5f57;
}
.yellow {
  background: #ffbd2e;
}
.green {
  background: #28c940;
}

.window_title {
  flex: 1;
  text-align: center;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
}

.fake-input {
  width: 140px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}

.window_icon {
  font-size: 14px;
}

.window_nav {
  display: flex;
  justify-content: space-around;
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.window_nav span {
  color: var(--color-white);
}

.window_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.window_content_left {
  max-width: 55%;
}

.window_content_left h1 {
  font-size: 40px;
  font-weight: 200;
  color: var(--color-white);
  margin-bottom: 0;
}

.window_content_left h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--color-white);
  margin-top: 0;
}

.window_content_left p {
  font-size: 16px;
  color: #eee;
  margin-bottom: 20px;
}

.window_content_btn {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  color: var(--color-white);
  cursor: pointer;
  font-weight: bold;
  box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.window_content_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.window_content_image-box {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-white);
}

.window_content_mockup {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  color: var(--color-white);
  font-size: 13px;
  cursor: pointer;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.5),
    0 3px 6px rgba(0, 0, 0, 0.2);
}

/* End browser styles */

@media (max-width: 768px) {
  /* Start Gradient card css */

  .gradient_cards_wrapper .cards-container {
    grid-template-columns: 1fr;
  }

  /* End Gradient card css */

  /* Start our team part */

  .our_team_wrapper {
    padding-top: 0;
  }

  .our_team_wrapper .about-title {
    font-size: 4.5rem;
    margin-top: 0;
  }

  .our_team_wrapper .card {
    width: 200px;
    height: 280px;
  }

  .our_team_wrapper .carousel-container {
    overflow: hidden;
  }

  .our_team_wrapper .card.left-2 {
    transform: translateX(-250px) scale(0.8) translateZ(-300px);
  }

  .our_team_wrapper .card.left-1 {
    transform: translateX(-120px) scale(0.9) translateZ(-100px);
  }

  .our_team_wrapper .card.right-1 {
    transform: translateX(120px) scale(0.9) translateZ(-100px);
  }

  .our_team_wrapper .card.right-2 {
    transform: translateX(250px) scale(0.8) translateZ(-300px);
  }

  .our_team_wrapper .member-name {
    font-size: 2rem;
  }

  .our_team_wrapper .member-role {
    font-size: 1.2rem;
  }

  .our_team_wrapper .member-name::before,
  .our_team_wrapper .member-name::after {
    width: 50px;
  }

  .our_team_wrapper .member-name::before {
    left: -70px;
  }

  .our_team_wrapper ß.member-name::after {
    right: -70px;
  }

  /* End our team part */

  /* Start explore tab  */

  .cloneable_wrapper {
    min-height: fit-content;
    font-size: larger;
  }

  .cloneable_wrapper .tab-layout-heading {
    font-size: 28px;
  }

  .cloneable_wrapper .tab-layout {
    flex-direction: column;
  }

  .cloneable_wrapper .tab-layout-col {
    width: 100%;
  }

  .cloneable_wrapper .tab-layout-container {
    margin-left: 0;
    padding-bottom: 0;
    max-width: fit-content;
  }

  .cloneable_wrapper .tab-container {
    padding-right: 0;
  }

  .cloneable_wrapper .tab-container-bottom {
    margin-top: 80px;
  }

  /* End explore tab */

  /* Start more info details part */

  .info_header {
    padding: 20px;
  }

  .info_header h1 {
    margin-top: 0;
  }

  /* End more info details part */

  /* Start dynamic text with image */

  .dynamic_image_with_text_title {
    font-size: 30px;
    background-color: var(--color-white);
    padding: 50px 20px;
  }

  /* End dynamic text with image */

  /* Start focus on a mission block */

  .focus_on_mission_cards {
    max-width: 100%;
  }

  /* End focus on a mission block  */

  /* Start shining block */

  .shining_block_container {
    grid-template-columns: repeat(2, 1fr);
  }

  .shining_block_card.wide {
    grid-column: auto;
  }

  /* End shining block */

  /* Start browser styles */

  .window_content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .window_content_left {
    max-width: 100%;
  }

  .window {
    width: 100%;
  }

  /* End browser styles */
}

@media screen and (max-width: 479px) {
  /* Start focus on a mission block */

  .focus_on_mission_wrapper {
    padding: 20px;
  }

  .focus_on_mission_card {
    flex-direction: column;
    text-align: center;
    padding: 10px 20px;
  }

  .focus_on_mission_card p {
    max-width: 100%;
  }

  /* End focus on a mission block  */

  /* Start shining block */

  .shining_block_container {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
    grid-auto-rows: auto;
  }

  .shining_block_card.wide,
  .shining_block_card.large {
    grid-column: auto;
  }

  /* End shining block */

  /* Start browser styles */

  .window_browser_wrapper {
    padding: 20px;
  }

  .window {
    padding: 20px 10px;
  }

  .window_nav {
    flex-wrap: wrap;
  }

  .window_top-bar {
    align-items: flex-start;
  }

  .window_title {
    padding-top: 35px;
    white-space: nowrap;
  }

  /* End browser styles */
}
