/* GOOGLE FONT */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
}

/* CONTAINER */

.container {
  width: 90%;
  max-width: 1350px;
  margin: auto;
}

/* HEADER */

.header {
  width: 100%;

  background: #fff;

  position: sticky;
  top: 0;
  left: 0;

  z-index: 999;

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* HEADER CONTAINER */

.header-container {
  min-height: 125px;

  padding: 18px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo img {
  height: 100px;
  display: block;
}

/* NAVIGATION */

.nav-links {
  display: flex;
  align-items: center;
  gap: 45px;
  width: 100%;
  list-style: none;
}

/* NAV LINKS */

.nav-links a {
  text-decoration: none;

  font-size: 18px;
  font-weight: 500;

  color: #111;

  transition: 0.3s ease;
}

/* ACTIVE LINK */

.nav-links a.active {
  background: #46c2cb;

  color: #fff;

  padding: 14px 30px;

  border-radius: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* HOVER */

.nav-links a:hover {
  color: #46c2cb;
}

.nav-links a.active:hover {
  background: #46c2cb;
  color: #fff;
}

/* HAMBURGER */

.hamburger {
  width: 32px;

  display: none;
  flex-direction: column;

  gap: 6px;

  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;

  background: #111;

  border-radius: 10px;

  transition: 0.3s;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .header {
    position: relative;
  }

  .header-container {
    min-height: 100px;

    padding: 14px 0;
  }

  .logo img {
    height: 80px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: #fff;

    padding: 35px 0;

    display: none;

    border-top: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  .nav-menu.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;

    gap: 25px;
  }
}

/* HERO */

.hero {
  position: relative;

  width: 100%;
  height: calc(100vh - 125px);

  overflow: hidden;
}

/* HERO SLIDES */

.hero-slide {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;

  transition: 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* HERO IMAGES */

.hero-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* OVERLAY */

.hero-overlay {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.45);
}

/* HERO CONTENT */

.hero-content {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 90%;
  max-width: 1200px;

  text-align: center;

  z-index: 2;
}

/* HERO TITLE */

.hero-content h1 {
  font-size: 72px;
  font-weight: 300;

  line-height: 1.25;

  letter-spacing: 1px;

  color: #fff;

  margin-bottom: 45px;

  max-width: 1100px;

  margin-left: auto;
  margin-right: auto;
}

/* HERO BUTTON */

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #46c2cb;

  color: #fff;

  text-decoration: none;

  padding: 18px 42px;

  border-radius: 50px;

  font-size: 18px;
  font-weight: 600;

  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #36aeb7;
}

/* HERO DOTS */

.hero-dots {
  position: absolute;

  bottom: 40px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  align-items: center;

  gap: 12px;

  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;

  border-radius: 50%;

  border: 2px solid #fff;

  background: transparent;

  cursor: pointer;

  transition: 0.3s ease;
}

.dot.active {
  background: #fff;
}

/* RESPONSIVE HERO */

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 58px;
  }
}

@media (max-width: 992px) {
  .hero {
    height: calc(100vh - 100px);
  }

  .hero-content h1 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;

    line-height: 1.35;

    margin-bottom: 30px;
  }

  .hero-btn {
    padding: 16px 34px;

    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 28px;

    line-height: 1.4;
  }

  .hero-btn {
    padding: 14px 28px;

    font-size: 15px;
  }
}

/* ABOUT SECTION */

.about-section {
  padding: 90px 0;

  background: #f7f7f7;
}

/* ABOUT CONTAINER */

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}
/* ABOUT TEXT */

.about-text h2 {
  font-size: 38px;
  font-weight: 600;

  color: #111;

  margin-bottom: 22px;
}

/* SMALL LINE */

.about-line {
  width: 70px;
  height: 3px;

  background: #46c2cb;

  margin-bottom: 40px;
}

/* PARAGRAPHS */

.about-text p {
  font-size: 17px;

  line-height: 1.9;

  color: #555;

  margin-bottom: 35px;
}

/* ABOUT IMAGE */

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 560px;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  display: block;
}

/* QUOTE BOX */

.quote-box {
  position: absolute;

  right: -30px;
  bottom: 30px;

  width: 320px;
  height: 320px;

  background: #46c2cb;

  padding: 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-box span {
  font-size: 60px;

  line-height: 1;

  display: block;

  margin-bottom: 20px;
}

.quote-box h3 {
  font-size: 24px;
  font-weight: 300;

  line-height: 1.4;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .about-container {
    gap: 60px;
  }

  .quote-box {
    right: -30px;
  }
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .about-text h2 {
    font-size: 40px;
  }

  .about-text p {
    font-size: 17px;
  }

  .about-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;

    gap: 0;
  }

  .about-image img {
    width: 65%;

    max-width: unset;
  }

  .quote-box {
    position: relative;

    right: 35px;
    bottom: 0;
  }

  .quote-box h3 {
    font-size: 18px;
  }

  .quote-box span {
    font-size: 42px;

    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-text p {
    font-size: 16px;

    line-height: 1.8;
  }

  .about-image {
    flex-direction: column;

    align-items: center;
  }

  .about-image img {
    width: 100%;
  }

  .quote-box {
    width: 100%;
    max-width: 320px;

    height: auto;
    min-height: 260px;
  }
}

@media (max-width: 500px) {
  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-image img {
    height: 350px;
  }

  .quote-box h3 {
    font-size: 22px;
  }
}

/* SUPPORT SECTION */

.support-section {
  padding: 100px 0;

  background: #f7f7f7;
}

/* HEADING */

.support-heading {
  max-width: 750px;

  margin-bottom: 70px;
}

.support-heading h2 {
  font-size: 52px;
  font-weight: 600;

  color: #111;

  margin-bottom: 20px;
}

/* LINE */

.support-line {
  width: 70px;
  height: 3px;

  background: #46c2cb;

  margin-bottom: 35px;
}

/* INTRO TEXT */

.support-heading p {
  font-size: 18px;

  line-height: 1.9;

  color: #555;
}

/* SUPPORT ITEMS */

.support-items {
  display: flex;
  flex-direction: column;

  gap: 45px;
}

/* SINGLE ITEM */

.support-item {
  display: flex;
  align-items: flex-start;

  gap: 35px;

  padding-bottom: 45px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ICON */

.support-icon {
  width: 120px;
  height: 120px;

  border: 3px solid #8d939d;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.support-icon img {
  width: 70px;
}

/* TEXT */

.support-text h3 {
  font-size: 34px;
  font-weight: 600;

  color: #111;

  margin-bottom: 18px;
}

.support-text p {
  font-size: 18px;

  line-height: 1.9;

  color: #555;

  max-width: 850px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .support-heading h2 {
    font-size: 42px;
  }

  .support-text h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .support-section {
    padding: 80px 0;
  }

  .support-item {
    flex-direction: column;

    gap: 25px;
  }

  .support-heading h2 {
    font-size: 34px;
  }

  .support-heading p,
  .support-text p {
    font-size: 16px;
  }

  .support-text h3 {
    font-size: 24px;
  }

  .support-icon {
    width: 100px;
    height: 100px;
  }

  .support-icon img {
    width: 45px;
  }
}

@media (max-width: 500px) {
  .support-heading h2 {
    font-size: 28px;
  }
}

/* MISSION SECTION */

.mission-section {
  padding: 100px 0;

  background: #ffffff;
}

/* CONTAINER */

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 90px;
}

/* TITLES */

.mission-left h2,
.values-right h2 {
  font-size: 48px;
  font-weight: 600;

  color: #111;

  margin-bottom: 20px;
}

/* LINE */

.mission-line {
  width: 70px;
  height: 3px;

  background: #46c2cb;

  margin-bottom: 45px;
}

/* MISSION BOX */

.mission-box {
  display: flex;
  align-items: flex-start;

  gap: 25px;

  margin-bottom: 50px;
}

/* ICON */

.mission-icon {
  width: 90px;
  height: 90px;

  border: 2px solid #8d939d;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.mission-icon img {
  width: 38px;
}

/* CONTENT */

.mission-content h3 {
  font-size: 34px;
  font-weight: 600;

  color: #111;

  margin-bottom: 18px;
}

.mission-content p,
.values-intro,
.values-list li {
  font-size: 18px;

  line-height: 1.9;

  color: #555;
}

/* VALUES */

.values-intro {
  margin-bottom: 30px;
}

/* VALUES LIST */

.values-list {
  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 28px;
}

.values-list li {
  position: relative;

  padding-left: 38px;
}

/* CHECK ICON */

.values-list li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  color: #46c2cb;

  font-size: 24px;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mission-container {
    grid-template-columns: 1fr;

    gap: 70px;
  }

  .mission-left h2,
  .values-right h2 {
    font-size: 40px;
  }

  .mission-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    padding: 80px 0;
  }

  .mission-left h2,
  .values-right h2 {
    font-size: 32px;
  }

  .mission-box {
    gap: 18px;
  }

  .mission-icon {
    width: 65px;
    height: 65px;
  }

  .mission-icon img {
    width: 30px;
  }

  .mission-content h3 {
    font-size: 24px;
  }

  .mission-content p,
  .values-intro,
  .values-list li {
    font-size: 16px;

    line-height: 1.8;
  }
}

@media (max-width: 500px) {
  .mission-left h2,
  .values-right h2 {
    font-size: 28px;
  }
}

/* FOOTER */

.footer {
  background: #f3f5f6;

  padding: 55px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
/* FOOTER CONTAINER */

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

/* LOGO */

.footer-logo img {
  height: 95px;

  display: block;
}

/* FOOTER TEXT */

.footer-address,
.footer-contact {
  text-align: center;
}

.footer-address h3,
.footer-contact h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111;

  margin-bottom: 16px;
}

.footer-address p,
.footer-contact p {
  font-size: 17px;

  line-height: 1.9;

  color: #555;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;

    text-align: center;
  }

  .footer-logo img {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 45px 0;
  }

  .footer-address h3,
  .footer-contact h3 {
    font-size: 22px;
  }

  .footer-address p,
  .footer-contact p {
    font-size: 16px;
  }
}

/* COLLABORATION SECTION */

.collaboration-section {
  padding: 100px 0;

  background: #f7f7f7;
}

/* TOP TEXT */

.collaboration-text {
  max-width: 1400px;
}

.collaboration-text p {
  font-size: 18px;
  font-weight: 500;

  line-height: 1.8;

  color: #46c2cb;

  margin-bottom: 18px;
}

.collaboration-text a {
  font-size: 18px;
  font-weight: 600;

  color: #46c2cb;

  text-decoration: none;

  transition: 0.3s ease;
}

.collaboration-text a:hover {
  opacity: 0.7;
}

/* DIVIDER */

.collaboration-divider {
  width: 100%;
  height: 1px;

  background: rgba(0, 0, 0, 0.15);

  margin: 55px 0 70px;
}

/* INTERN CONTAINER */

.intern-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  align-items: center;
}

/* TEXT */

.intern-text h2 {
  font-size: 58px;
  font-weight: 600;

  color: #111;

  margin-bottom: 20px;
}

.intern-text h2 span {
  color: #46c2cb;
}

/* LINE */

.intern-line {
  width: 70px;
  height: 3px;

  background: #46c2cb;

  margin-bottom: 40px;
}

/* PARAGRAPHS */

.intern-text p {
  font-size: 16px;

  line-height: 2;

  color: #555;

  margin-bottom: 25px;
}

/* IMAGE */

.intern-image img {
  width: 100%;
  height: 500px;

  object-fit: cover;

  display: block;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .collaboration-text p,
  .collaboration-text a {
    font-size: 18px;
  }

  .intern-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .intern-text h2 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .collaboration-section {
    padding: 80px 0;
  }

  .collaboration-text p,
  .collaboration-text a {
    font-size: 16px;

    line-height: 1.8;
  }

  .collaboration-divider {
    margin: 45px 0 55px;
  }

  .intern-text h2 {
    font-size: 36px;
  }

  .intern-text p {
    font-size: 16px;

    line-height: 1.9;
  }

  .intern-image img {
    height: 350px;
  }
}

@media (max-width: 500px) {
  .intern-text h2 {
    font-size: 30px;
  }
}

/* CONTACT STRIP */

.contact-strip {
  padding: 0 0 100px;

  background: #f7f7f7;
}

/* CONTAINER */

.contact-strip-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 0;
}

/* BOX */

.contact-strip-box {
  background: #fff;

  padding: 45px 35px;

  text-align: center;

  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* TITLES */

.contact-strip-box h3 {
  font-size: 28px;
  font-weight: 600;

  color: #111;

  margin-bottom: 18px;
}

/* TEXT */

.contact-strip-box p {
  font-size: 17px;

  line-height: 1.8;

  color: #555;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .contact-strip-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-strip {
    padding: 0 0 80px;
  }

  .contact-strip-box {
    padding: 35px 25px;
  }

  .contact-strip-box h3 {
    font-size: 24px;
  }

  .contact-strip-box p {
    font-size: 16px;
  }
}

/* MESSAGE SECTION */

.message-section {
  padding: 0 0 100px;

  background: #f7f7f7;
}

/* HEADING */

.message-heading {
  max-width: 700px;

  margin-bottom: 50px;
}

.message-heading h2 {
  font-size: 48px;
  font-weight: 600;

  color: #111;

  margin-bottom: 20px;
}

/* LINE */

.message-line {
  width: 70px;
  height: 3px;

  background: #46c2cb;

  margin-bottom: 30px;
}

/* TEXT */

.message-heading p {
  font-size: 17px;

  line-height: 1.9;

  color: #555;
}

/* FORM */

.message-form {
  background: #fff;

  padding: 55px;

  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* ROW */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 25px;
}

/* INPUT BOX */

.input-box {
  margin-bottom: 25px;
}

.input-box input,
.input-box textarea {
  width: 100%;

  padding: 18px 22px;

  border: 1px solid rgba(0, 0, 0, 0.12);

  outline: none;

  font-family: "Poppins", sans-serif;

  font-size: 16px;

  color: #111;

  transition: 0.3s ease;
}

/* TEXTAREA */

.input-box textarea {
  height: 180px;

  resize: none;
}

/* FOCUS */

.input-box input:focus,
.input-box textarea:focus {
  border-color: #46c2cb;
}

/* BUTTON */

.message-btn {
  background: #46c2cb;

  color: #fff;

  border: none;

  padding: 18px 38px;

  font-size: 16px;
  font-weight: 600;

  font-family: "Poppins", sans-serif;

  cursor: pointer;

  transition: 0.3s ease;
}

.message-btn:hover {
  background: #36aeb7;
}

/* SUCCESS MESSAGE */

.success-message {
  display: none;

  margin-top: 20px;

  color: #2ca24c;

  font-size: 16px;
  font-weight: 500;
}

.success-message.show {
  display: block;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .message-section {
    padding: 0 0 80px;
  }

  .message-heading h2 {
    font-size: 34px;
  }

  .message-form {
    padding: 35px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .message-heading h2 {
    font-size: 28px;
  }

  .message-heading p {
    font-size: 16px;
  }
}

/* PROJECTS BANNER */

.projects-banner {
  background: #46c2cb;

  padding: 90px 0;

  text-align: center;
}

/* TITLE */

.projects-banner h1 {
  font-size: 56px;
  font-weight: 600;

  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .projects-banner {
    padding: 70px 0;
  }

  .projects-banner h1 {
    font-size: 40px;
  }
}

@media (max-width: 500px) {
  .projects-banner h1 {
    font-size: 38px;
  }
}

/* PROJECTS SECTION */

.projects-section {
  padding: 100px 0;

  background: #f7f7f7;
}

/* INTRO */

.projects-intro {
  max-width: 850px;

  margin: 0 auto 70px;

  text-align: center;
}

.projects-intro p {
  font-size: 22px;

  line-height: 1.9;

  color: #555;
}

/* GRID */

.projects-grid {
  display: flex;
  flex-direction: column;

  gap: 55px;
}

/* CARD */

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;

  direction: rtl;

  align-items: start;

  background: #fff;

  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.project-content,
.project-card img {
  direction: ltr;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */

.project-card img {
  width: 100%;

  object-fit: cover;

  object-position: center;

  display: block;
}
/* CONTENT */

.project-content {
  padding: 35px;
}

.project-content h3 {
  font-size: 28px;
  font-weight: 600;

  color: #111;

  line-height: 1.4;

  margin-bottom: 18px;
}

.project-hidden {
  display: none;

  margin-top: 0;
}

.project-content p {
  font-size: 15px;

  line-height: 1.9;

  color: #555;
}

/* TOGGLE BUTTON */

.project-toggle {
  width: 55px;
  height: 55px;

  border: none;

  background: #46c2cb;

  color: #fff;

  font-size: 34px;
  font-weight: 300;

  cursor: pointer;

  margin-top: 30px;

  transition: 0.3s ease;
}

.project-toggle:hover {
  background: #36aeb7;
}

.project-hidden p {
  margin-bottom: 18px;
}

.project-hidden.active {
  display: block;

  margin-top: 25px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .project-card {
    grid-template-columns: 1fr;
  }

  .project-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 80px 0;
  }

  .projects-intro p {
    font-size: 17px;
  }

  .project-card img {
    height: 320px;
  }

  .project-content {
    padding: 28px;
  }

  .project-content h3 {
    font-size: 24px;
  }

  .project-content p {
    font-size: 16px;
  }
}

/* WORK HERO */

.work-hero {
  padding: 110px 0;

  background: #f7f7f7;
}

/* CONTAINER */

.work-hero-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 90px;

  align-items: start;
}

/* TITLE */

.work-hero-title h1 {
  font-size: 50px;
  font-weight: 600;

  line-height: 1.1;

  color: #46c2cb;
}

/* TEXT */

.work-hero-text p {
  font-size: 18px;
  font-weight: 500;

  line-height: 1.9;

  color: #222;

  margin-bottom: 30px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .work-hero-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .work-hero-title h1 {
    font-size: 50px;
  }

  .work-hero-text p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .work-hero {
    padding: 80px 0;
  }

  .work-hero-title h1 {
    font-size: 42px;
  }

  .work-hero-text p {
    font-size: 16px;

    line-height: 1.9;
  }
}

@media (max-width: 500px) {
  .work-hero-title h1 {
    font-size: 34px;
  }
}

/* WORK TABS SECTION */

.work-tabs-section {
  position: relative;

  padding: 100px 0;

  background: #f7f7f7;

  overflow: hidden;
}

/* SHAPES */

.shape {
  position: absolute;

  border-radius: 50%;

  background: rgba(70, 194, 203, 0.08);

  z-index: 1;
}

.shape-1 {
  width: 380px;
  height: 380px;

  top: 40px;
  left: -120px;
}

.shape-2 {
  width: 400px;
  height: 400px;

  top: 40px;
  right: -120px;
}

/* CONTAINER */

.work-tabs-section .container {
  position: relative;

  z-index: 2;
}

/* TABS */

.work-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

  margin-bottom: 45px;
}

/* BUTTON */

.tab-btn {
  border: none;

  background: transparent;

  padding: 22px 32px;

  font-size: 18px;
  font-weight: 600;

  font-family: "Poppins", sans-serif;

  color: #111;

  cursor: pointer;

  transition: 0.3s ease;
}

/* ACTIVE */

.tab-btn.active {
  background: #46c2cb;

  color: #fff;
}

/* CONTENT */

.tab-content {
  display: none;

  grid-template-columns: 1fr 1fr;

  gap: 40px;

  align-items: start;
}

.tab-content.active {
  display: grid;
}

/* IMAGE */

.tab-image img {
  width: 100%;
  height: 480px;

  object-fit: cover;

  display: block;
}

/* TEXT */

.tab-text p {
  font-size: 18px;

  line-height: 2;

  color: #555;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .tab-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .work-tabs-section {
    padding: 80px 0;
  }

  .tab-btn {
    width: 100%;

    font-size: 16px;
  }

  .tab-image img {
    height: 320px;
  }

  .tab-text p {
    font-size: 16px;
  }
}

/* SYSTEMIC SECTION */

.systemic-section {
  position: relative;

  padding: 110px 0;

  background: #f7f7f7;

  overflow: hidden;
}

/* TITLE */

.systemic-heading {
  text-align: center;

  max-width: 1200px;

  margin: 0 auto 80px;
}

.systemic-heading h2 {
  font-size: 58px;
  font-weight: 600;

  color: #111;

  margin-bottom: 22px;
}

.systemic-heading h2 span {
  color: #46c2cb;
}

/* LINE */

.section-line {
  width: 90px;
  height: 3px;

  background: #46c2cb;

  margin: 0 auto 35px;
}

/* PARAGRAPH */

.systemic-heading p {
  font-size: 19px;

  line-height: 2;

  color: #555;
}

/* CONTENT */

.systemic-content {
  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 70px;
}

/* IMAGE */

.systemic-image img {
  width: 100%;
  height: 520px;

  object-fit: cover;

  border-radius: 120px 0 120px 0;

  display: block;
}

/* TEXT */

.systemic-text h3 {
  font-size: 42px;
  font-weight: 600;

  color: #111;

  margin-bottom: 30px;
}

.systemic-text p {
  font-size: 18px;

  line-height: 2;

  color: #555;

  margin-bottom: 25px;
}

/* DECORATIONS */

.systemic-circle {
  position: absolute;

  border-radius: 50%;

  background: rgba(70, 194, 203, 0.08);

  z-index: 0;
}

.circle-one {
  width: 260px;
  height: 260px;

  top: 40px;
  left: -90px;
}

.circle-two {
  width: 320px;
  height: 320px;

  bottom: -100px;
  right: -100px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .systemic-content {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .systemic-heading h2 {
    font-size: 44px;
  }

  .systemic-text h3 {
    font-size: 34px;
  }

  .systemic-image img {
    height: 430px;
  }
}

@media (max-width: 768px) {
  .systemic-section {
    padding: 80px 0;
  }

  .systemic-heading {
    margin-bottom: 60px;
  }

  .systemic-heading h2 {
    font-size: 36px;

    line-height: 1.3;
  }

  .systemic-heading p {
    font-size: 16px;
  }

  .systemic-text h3 {
    font-size: 28px;
  }

  .systemic-text p {
    font-size: 16px;
  }

  .systemic-image img {
    height: 340px;

    border-radius: 70px 0 70px 0;
  }
}

@media (max-width: 500px) {
  .systemic-heading h2 {
    font-size: 30px;
  }

  .systemic-image img {
    height: 280px;
  }
}

/* REFLECTION SECTION */

.reflection-section {
  padding: 110px 0;

  background: #f7f7f7;
}

/* WRAPPER */

.reflection-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 420px;

  gap: 80px;

  align-items: center;

  margin-bottom: 70px;
}

/* CONTENT */

.reflection-content h2 {
  font-size: 48px;
  font-weight: 600;

  color: #111;

  margin-bottom: 28px;
}

.reflection-content p {
  font-size: 19px;

  line-height: 2;

  color: #555;

  max-width: 900px;
}

/* IMAGE */

.reflection-image img {
  width: 100%;
  height: 420px;

  object-fit: cover;

  border-radius: 120px 0 120px 0;

  display: block;
}

/* BOXES */

.reflection-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 28px;
}

/* BOX */

.reflection-box {
  background: #fff;

  padding: 50px 25px;

  text-align: center;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);

  transition: 0.3s ease;
}

.reflection-box:hover {
  transform: translateY(-5px);
}

.reflection-box i {
  font-size: 48px;

  color: #46c2cb;

  margin-bottom: 28px;
}

.reflection-box h3 {
  font-size: 18px;
  font-weight: 600;

  line-height: 1.5;

  color: #46c2cb;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .reflection-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .reflection-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .reflection-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .reflection-section {
    padding: 80px 0;
  }

  .reflection-content h2 {
    font-size: 32px;
  }

  .reflection-content p {
    font-size: 16px;

    line-height: 1.9;
  }

  .reflection-image img {
    height: 320px;
  }

  .reflection-box {
    padding: 40px 20px;
  }

  .reflection-box h3 {
    font-size: 15px;
  }
}

@media (max-width: 500px) {
  .reflection-boxes {
    grid-template-columns: 1fr;
  }

  .reflection-image img {
    height: 260px;
  }
}

/* POLICIES SECTION */

.policies-section {
  padding: 110px 0;

  background: #f7f7f7;
}

/* TITLE */

.policies-heading {
  text-align: center;

  margin-bottom: 40px;
}

.policies-heading h2 {
  font-size: 58px;
  font-weight: 600;

  color: #111;

  margin-bottom: 20px;
}

.policies-heading h2 span {
  color: #46c2cb;
}

/* INTRO */

.policies-intro {
  max-width: 1400px;

  margin: 0 auto 55px;
}

.policies-intro p {
  font-size: 30px;
  font-weight: 500;

  line-height: 1.8;

  color: #46c2cb;
}

/* LIST */

.policies-list {
  display: flex;
  flex-direction: column;

  gap: 28px;
}

/* ITEM */

/* POLICY ITEM */

.policy-item {
  display: grid;
  grid-template-columns: 190px 1fr;

  gap: 25px;

  align-items: start;

  padding: 0 0 28px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* TITLE */

.policy-item h3 {
  font-size: 20px;
  font-weight: 600;

  color: #333;

  margin: 0;

  line-height: 1.5;
}

/* TEXT */

.policy-item p {
  font-size: 18px;

  line-height: 1.95;

  color: #666;

  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .policies-heading h2 {
    font-size: 46px;
  }

  .policies-intro p {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .policies-section {
    padding: 80px 0;
  }

  .policies-heading h2 {
    font-size: 36px;
  }

  .policies-intro p {
    font-size: 20px;
  }

  .policy-item h3,
  .policy-item p {
    font-size: 16px;
  }
  .policy-item {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .policy-item h3 {
    font-size: 18px;
  }

  .policy-item p {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .policies-heading h2 {
    font-size: 30px;
  }

  .policies-intro p {
    font-size: 18px;
  }
}

/* OTHER PROJECTS */

.other-projects {
  padding: 100px 0;

  background: #f7f7f7;
}

/* TITLE */

.other-projects-heading {
  margin-bottom: 50px;

  text-align: center;
}

.other-projects-heading h2 {
  font-size: 52px;
  font-weight: 600;

  color: #111;
}

/* GRID */

.other-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 35px;
}

/* CARD */

.other-project-card {
  background: #fff;

  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.other-project-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */

.other-project-card img {
  width: 100%;
  height: 300px;

  object-fit: cover;

  display: block;
}

/* TITLE */

.other-project-card h3 {
  font-size: 22px;
  font-weight: 500;

  line-height: 1.7;

  color: #444;

  padding: 28px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .other-projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .other-projects {
    padding: 80px 0;
  }

  .other-projects-heading h2 {
    font-size: 38px;
  }

  .other-project-card img {
    height: 240px;
  }

  .other-project-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .other-projects-heading h2 {
    font-size: 30px;
  }

  .other-project-card h3 {
    font-size: 16px;

    line-height: 1.6;
  }
}
