:root {
  --theme-color: #81c0e6;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: black;
  color: white;
  padding-top: 6vw;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 8vw;
  }
}
@media screen and (max-width: 480px) {
  body {
    padding-top: 10vw;
  }
}

/* Hero */
.hero {
  padding-inline: 4vw;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  /* flex-direction: row-reverse; */
}
.hero-top {
  padding-inline: 4vw;
  padding-right: 0;
  display: flex;
  justify-content: flex-end;
}

.hero-top .right {
  padding: 1.5vw;
  border: 2px solid white;
  border-right: none;
  font-size: 0.9vw;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: baseline;
}

.hero-main {
  position: relative;
  padding: 0 2vw;
  padding-right: 20%;
  display: flex;
  justify-content: space-between;
}
.hero-main .content {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  padding: 2vw 0;
}

.hero-main .content .heading {
  display: flex;
  align-items: flex-end;
}
.hero-main .content .heading h1 {
  font-size: 5vw;
  font-weight: 900;
  position: relative;
}
.hero-main .content .heading .square {
  position: absolute;
  left: 110%;
  top: 55%;
  width: 1.2vw;
  height: 1.2vw;
  background-color: var(--theme-color);
}
.hero-main .content > p {
  margin-top: -1vw;
  font-size: 1.8vw;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-main img {
  width: 50%;
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .hero-main .content .heading h1 {
    font-size: 6vw;
  }
  .hero-main .content > p {
    font-size: 2vw;
    font-weight: 600;
    text-transform: uppercase;
  }
  .hero-top .right {
    font-size: 1.8vw;
    line-height: 1.3;
  }
}

@media screen and (max-width: 480px) {
  .hero-main {
    justify-content: space-between;
    gap: 10vw;
  }
  .hero-main .content {
    width: 60%;
  }
  .hero-main .content .heading h1 {
    font-size: 8vw;
  }
  .hero-main .content > p {
    font-size: 2.5vw;
    font-weight: 600;
    text-transform: uppercase;
  }
  .hero-main img {
    width: 40%;
  }
  .hero-top .right {
    font-size: 2.2vw;
  }
}

/* about */
.about {
  padding: 8vw 1.5rem;
  padding-bottom: 0;
}

.about-top {
  display: flex;
  gap: 2vw;
  justify-content: space-between;
}

.about .about-top .vertical-text {
  writing-mode: vertical-rl;
  margin: auto;
  font-size: 1.5vw;
  font-family: Arial, sans-serif;
  transform: rotate(-180deg);
  align-self: flex-start;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  text-transform: uppercase;
}

.about .about-top .v2 {
  text-transform: uppercase;
  transform: rotate(0deg);
}

.about .about-top .heading {
  flex: 1;
  padding: 4vw;
  margin: 1vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  background-image: url("../assets/about-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.about .about-top .heading h1 {
  font-size: 8vw;
  font-weight: 600;
  width: 40%;
  line-height: 1.5;
}
.about .about-top .heading h1:nth-child(2) {
  color: var(--theme-color);
  font-size: 12vw;
  font-weight: 800;
  margin-bottom: -1rem;
}
.square {
  width: 1vw;
  height: 1vw;
  background-color: white;
}

.about p {
  margin: auto;
  width: 80%;
  text-align: center;
  font-size: 1.4vw;
}

@media screen and (max-width: 768px) and (min-width: 480px) {
  .about .about-top .vertical-text {
    font-size: 3vw;
  }
  .about p {
    font-size: 2vw;
  }
}

@media screen and (max-width: 480px) {
  .about .about-top .vertical-text {
    font-size: 3.5vw;
  }
  .about p {
    font-size: 2.5vw;
  }
}
.section {
  padding: 3vw 5vw;
}
.section .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}
.section .content .text {
  width: 50%;
}
.section .content .text h1 {
  color: var(--theme-color);
  font-size: 4vw;
}
.section .content .text p {
  font-size: 1.4vw;
}
.section hr {
  width: 50%;
  font-size: 5rem;
  height: 2px;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  margin: auto;
  margin-top: 2vw;
}

@media screen and (max-width: 768px) and (min-width: 481px) {
  .section .content .text h1 {
    font-size: 4vw;
  }
  .section .content .text p {
    font-size: 2vw;
  }
}

@media screen and (max-width: 480px) {
  .section .content .text h1 {
    font-size: 5vw;
    text-align: center;
  }
  .section .content .text p {
    font-size: 2.5vw;
  }

  .our-mission .content img,
  .our-vision .content img,
  .company-culture .right img {
    display: none;
  }
  .section .content .text {
    width: 100%;
    text-align: justify;
  }
}
/* OUR MISION */

.our-mission {
  position: relative;
  background-image: url("../assets/about-ovals.png");
  background-position: center;
  background-size: contain;
  background-position-y: bottom;
  background-repeat: no-repeat;
}

.our-mission .ai {
  right: 12vw;
  top: 4vw;
  position: absolute;
  display: flex;
  gap: 0.2vw;
  justify-content: center;
  align-items: center;
  font-size: 2vw;
  font-weight: 800;
}

.our-mission .content img {
  width: 30%;
}

/* Our Vision */
.our-vision .content img {
  width: 50%;
}

/* Company culture */

.company-culture {
  padding: 0;
  padding-bottom: 5vw;
}
.company-culture .content {
  justify-content: space-between;
  align-items: stretch;
}
.company-culture .text {
  flex: 2;
  padding: 3vw;
  padding-left: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url("../assets/left-oval.png");
  background-size: 30%;
  background-position-y: bottom;
  background-position-x: left;
  background-repeat: no-repeat;
}
.company-culture .right {
  flex: 1;
  padding: 2vw 4vw;
  background-image: url("../assets/right oval.png");
  background-size: 40%;
  background-position-y: top;
  background-position-x: right;
  background-repeat: no-repeat;
}
.company-culture .right img {
  width: 25vw;
}

/* Side Social Media Links */
.side-social-media-links {
  position: absolute;
  right: 0.3vw;
  top: -5vw;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  gap: 1vw;
  color: var(--theme-color);
  border-radius: 15px;
  padding: 2vw 1vw;
  font-size: 2vw;
  height: fit-content;
}
.side-social-media-links a {
  color: var(--theme-color);
}

.side-social-media-links i:hover {
  color: black;
  cursor: pointer;
}

@media screen and (max-width: 768px) and (min-width: 480px) {
  .side-social-media-links {
    font-size: 3vw;
  }
}

@media screen and (max-width: 480px) {
  .side-social-media-links {
    padding: 3vw 2vw;
    font-size: 3.3vw;
    top: -9vw;
  }
  .company-culture .text {
    padding: 3vw 5vw;
  }
  .company-culture .right {
    display: none;
  }
}
