@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100,200,300,400,500,600,700,800,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  list-style: none;
}

:root {
  --text-color: #00244d;
  --main-color: #0053f1;
  --bg-color: #ffffff;
  --black-color: #000000;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: #edf5f9;
  color: var(--text-color);
}

img {
  height: 1;
  pointer-events: none;
}

section {
  min-height: 100vh;
  padding: 10rem 9% 2rem;
}

/* ------------------------------------------------------------ */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 9%;
  background: var(--bg-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

#gslogo {
  width: 8rem;
  height: 8rem;
}

#burger-icon {
  display: none;
}

.navbar a {
  font-size: 1.6rem;
  color: var(--main-color);
  margin-left: 4rem;
  text-transform: uppercase;
  font-weight: 700;
}

.icons {
  font-size: 4rem;
  color: var(--text-color);
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

#check:checked ~ .navbar {
  height: 26rem;
}

@media (max-width: 1000px) {
  .icons {
    display: block;
  }

  #check:checked ~ .icons #menu-icon {
    display: none;
  }

  #check:checked ~ .icons #close-icon {
    display: block;
  }

  .icons #close-icon {
    display: none;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--bg-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s ease;
  }

  .navbar a {
    display: block;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
}

/* ------------------------------------------------------------ */

h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1rem;
}

h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--main-color);
}

h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black-color);
}

h5 {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(0, 36, 77, 0.5);
  font-style: italic;
}

p {
  font-size: 2rem;
  line-height: 1.4;
  margin: 1rem 1rem 1rem 0;
}

@media (max-width: 1000px) {
  h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1.5rem 1.5rem 1.5rem 0;
  }

  h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-left: 1.6rem;
  }

  p {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-left: 1.5rem 1.5rem 1.5rem 0;
  }
}

/* ------------------------------------------------------------ */

section.home {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 2rem;
}

.home-img img {
  width: 30vw;
  align-items: center;
}

.home .btn {
  margin: 1rem;
  display: inline-block;
  padding: 1.5rem 1.5rem;
  background: var(--text-color);
  border-radius: 10px;
  font-size: 1.6rem;
  color: var(--bg-color);
  letter-spacing: 0.1rem;
  font-weight: 700;
}

@media (max-width: 1000px) {
  section.home {
    display: block;
  }

  .home-img {
    object-fit: contain;
  }

  .home-img img {
    width: 70vw;
  }
}

/* ------------------------------------------------------------ */

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about iframe {
  margin: 4rem 2rem 2rem;
  aspect-ratio: 16 / 9;
  width: 50vw;
}

@media (max-width: 1000px) {
  .about iframe {
    width: 75vw;
  }
}

/* ------------------------------------------------------------ */

.about2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefits-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
}

.benefits-grid-item {
  padding: 25px;
  border-radius: 30px;
  border: 0.6px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #f3f3f3 0%, #fff 0.01%, #f4f4f4 100%);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

#benefits-grid-item1 {
  grid-column: 1;
  grid-row: 1;
}

#benefits-grid-item2 {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: center;
}

#benefits-grid-item3 {
  grid-column: 3;
  grid-row: 1;
}

.benefits-grid img {
  object-fit: contain;
}

#benefits-grid-item4 {
  grid-column: 1;
  grid-row: 2;
}

#benefits-grid-item5 {
  grid-column: 3;
  grid-row: 2;
}

@media (max-width: 1000px) {
  .benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  #benefits-grid-item2 {
    order: -1;
  }
}

/* ------------------------------------------------------------ */

.projects,
.projects2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.projects-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-item {
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(10px);
}

.project-image {
  width: 400px;
  height: 200px;
  border-radius: 20px 20px 0px 0px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--bg-color);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-image > img {
  height: 300px;
}

#project-item-1 img {
  height: 106px;
}

#project-item-6 img {
  height: 125px;
}

#project-item-7 img {
  height: 125px;
}

#project-item-8 img {
  height: 125px;
}

#project2-item-1 img {
  height: 140px;
}

#project-item-mm img {
  height: 200px;
}

#project2-item-2 img {
  height: 260px;
}

#project2-item-3 img {
  height: 115px;
}

#project2-item-4 img {
  height: 225px;
}

#project2-item-5 img {
  height: 250px;
}

#project2-item-6 img {
  height: 200px;
}

.project-details {
  width: 400px;
  height: 80px;
  border-radius: 0px 0px 20px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--bg-color);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.project-details h4 {
  flex-basis: 100%;
}

@media (max-width: 1000px) {
  .projects h1 {
    font-size: 4.5rem;
  }

  .projects-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}

@media (max-width: 725px) {
  section #project {
  }
}

/* ------------------------------------------------------------ */

.shapers {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shapers h2 {
  text-align: center;
}

.shapers-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.shapers-item {
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(10px);
  justify-self: center;
}

.shapers-image {
  width: 240px;
  height: 200px;
  border-radius: 20px 20px 0px 0px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, #184897 0%, #00c2ff 100%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: end;
}

.shapers-image > img {
  height: 200px;
}

.shapers-details {
  width: 240px;
  height: 80px;
  border-radius: 0px 0px 20px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--bg-color);
  padding: 15px 20px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.shapers-details h4 {
  flex-basis: 100%;
}

.socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.in-icon,
.fb-icon {
  height: 30px;
}

.ig-icon {
  height: 27px;
}

.shapers h5 {
  color: rgba(0, 36, 77, 0.5);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
}

#shapers-item-4 > .shapers-image > img {
  height: 250px;
}

#shapers-item-9 > .shapers-image > img {
  height: 250px;
}

#shapers-item-11 > .shapers-image {
  justify-content: start;
}

#shapers-item-12 > .shapers-image > img {
  height: 225px;
}

#shapers-item-14 > .shapers-image {
  padding: 0;
  justify-content: start;
}

#shapers-item-14 > .shapers-image > img {
  height: 260px;
}

#shapers-item-16 > .shapers-image > img {
  height: 220px;
}

#shapers-item-17 > .shapers-image > img {
  height: 220px;
}

#shapers-item-27 > .shapers-image > img {
  height: 270px;
}

#shapers-item-29 > .shapers-image > img {
  height: 220px;
}

@media (max-width: 1000px) {
  .shapers-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}

/* ------------------------------------------------------------ */

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 6rem;
}

.faq h1 {
  text-align: center;
}

.faq h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-color);
  line-height: 125%;
}


.faq p {
  color: var(--black-color);
  font-size: 2rem;
  line-height: 1.4;
  margin: 1rem;
}

.faq-item {
  background: var(--bg-color);
  border-radius: 8px;
  border: 1px solid #d3d3d3;
  width: 60vw;
  margin: 6rem;
}

.faq-heading {
  display: flex;
  padding: 30px;
  border-bottom: 1px solid #d3d3d3;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  cursor: pointer;
}

.faq-heading-close {
  display: flex;
  padding: 30px;
  border-bottom: 1px solid #d3d3d3;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  cursor: pointer;
}

.faq-arrow {
  transform: rotate(270deg);
}

.faq-content {
  display: block;
  padding: 15px 30px;
}


.faq-arrow-close {
  transform: rotate(90deg);
}

.faq-content-close {
  display: none;
}

/* ------------------------------------------------------------ */

footer {
  background: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 9% 4rem;
  gap: 5rem;
}

.logo-pack {
  align-items: center;
  display: flex;
  gap: 2rem;
}

#logo-footer-1 {
  height: 10rem;
}

#logo-footer-2 {
  height: 14rem;
}

.footer-identity {
  flex: 5 1 auto;
}

.footer-identity p {
  color: var(--bg-color);
}

.copyright {
  font-size: 1.5rem;
}

.copyright .link {
  text-decoration: underline;
}

.footer-identity h3 {
  font-size: 2rem;
  text-align: left;
  line-height: 1.2;
  font-weight: 700;
  color: var(--bg-color);
}

#facebook-logo {
  fill: var(--bg-color);
  width: 11.67px;
  height: 22.49px;
  margin: 1rem;
}

#instagram-logo {
  fill: var(--bg-color);
  width: 22.457px;
  height: 22.496px;
  margin: 1rem;
}

#linkedin-logo {
  fill: var(--bg-color);
  width: 23px;
  height: 23px;
  margin: 1rem;
}

.footer-menu h3 {
  font-size: 2.8rem;
  text-align: left;
  line-height: 1.2;
  font-weight: 700;
  color: var(--bg-color);
}

.footer-contact h3 {
  font-size: 2.8rem;
  text-align: left;
  line-height: 1.2;
  font-weight: 700;
  color: var(--bg-color);
}

.footer-socials {
  margin-bottom: 2rem;
}

footer a {
  color: var(--bg-color);
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 2rem 0px;
}

footer > hr {
  border: 1px solid var(--bg-color);
}

@media (max-width: 1000px) {
  footer {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
    align-items: flex-start;
  }
}
