@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&family=Open+Sans:wght@500&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
}

:root {
  --black: #16161d;
  --light-color: #808080;
  --light-bg: #f5f5f8;
  --google-color: #4285f4;
  --twitter-color: #1da1f2;
  --youtube-color: #ff0000;
  --linkedin-color: #0e76a8;
  --discord-color: #5865F2;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

section, footer {
  padding: 5rem 9%;
}

.btn {
  color: white;
  font-weight: 400;
  font-size: 1.7rem;
  border: 0.1rem solid white;
  border-radius: 10rem;
  padding: 1.5rem 4rem;
}

.btn:hover {
  background: var(--black);
}

.heading {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 5rem;
  text-align: center;
}

@media (max-width: 1200px) {
  section {
    padding: 3rem 2rem;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
}
/* header starts */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 5rem 9%;
  display: flex;
  align-items: center;
  z-index: 100;
}
.header .logo {
  margin-right: auto;
  font-size: 2rem;
  color: white;
  font-weight: 700;
}
.header .logo span {
  font-weight: normal;
}
.header .navbar a {
  font-size: 1.7rem;
  color: white;
  margin-left: 3rem;
}
.header .menu {
  font-size: 2rem;
  color: white;
  display: none;
  cursor: pointer;
}

.header.active {
  background: white;
  padding: 3rem 9%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.header.active .logo {
  color: var(--black);
}
.header.active .navbar a {
  color: var(--black);
}
.header.active .menu {
  color: var(--black);
}

@media (max-width: 1200px) {
  .header, .header.active {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .header .menu {
    display: block;
  }
  .header .navbar {
    position: fixed;
    top: 6.4rem;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    flex-flow: column;
    text-align: center;
    transform: translateX(100%);
  }
  .header .navbar a {
    color: var(--black);
    margin: 0;
    font-size: 2rem;
    margin: 2rem 0;
  }
  .header .navbar.show {
    transform: translateX(0);
  }
}
/* header ends */
/* home starts */
.home {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../../media/images/rocket.jpg"), no-repeat;
  background-size: cover;
  /* background-position: center; */
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
}
.home h1 {
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #fff;
}
.home p {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 3rem;
  text-transform: none;
  color: white;
}

@media (max-width: 1200px) {
  .home h1 {
    font-size: 5rem;
  }
}
/* home ends */
/* mission starts */
.mission .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.mission .box-container .box p {
  font-size: 2.7rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--light-color);
  text-transform: none;
  text-align: center;
}
.mission .box-container .box .image {
  height: 40rem;
}
.mission .box-container .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 1288px) {
  .mission .box-container .box .heading {
    margin-bottom: 3rem;
  }
  .mission .box-container .box p {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 1012px) {
  .mission .box-container .box .image {
    height: 38rem;
  }
}
@media only screen and (max-width: 942px) {
  .mission .box-container .box .image {
    height: 38rem;
  }
}
@media only screen and (max-width: 890px) {
  .mission .box-container .box .heading {
    margin-bottom: 2rem;
  }
  .mission .box-container .box p {
    font-size: 2.2rem;
  }
  .mission .box-container .box .image {
    height: 36rem;
  }
}
@media only screen and (max-width: 808px) {
  .mission .box-container {
    display: flex;
    flex-direction: column;
  }
  .mission .box-container .box .heading {
    margin-bottom: 5rem;
  }
}
/* mission ends */
/* services starts */
.services {
  background: var(--light-bg);
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 5rem;
}
.services .box-container .box {
  background: white;
  text-align: center;
  border-radius: 1rem;
  padding: 3rem;
}
.services .box-container .box img {
  margin-bottom: 2rem;
  width: 50%;
}
.services .box-container .box h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}
.services .box-container .box p {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--light-color);
}
.services .box-container .box:hover {
  background-color: var(--black);
}
.services .box-container .box:hover h3, .services .box-container .box:hover p {
  color: white;
}
.services .box-container .box:hover img {
  filter: invert(100%);
}

/* services ends */
/* caseStudies starts */
.caseStudies {
  background: var(--light-bg);
}
.caseStudies .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 5rem;
}
.caseStudies .box-container .box {
  background: white;
  text-align: center;
  border-radius: 1rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.caseStudies .box-container .box .boxText {
  text-align: left;
  width: 80%;
  line-height: 1.6;
}
.caseStudies .box-container .box img {
  margin-bottom: 2rem;
  width: 80%;
}
.caseStudies .box-container .box .caseHeading {
  font-size: 2rem;
}
.caseStudies .box-container .box h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.caseStudies .box-container .box p {
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1.6;
  color: var(--light-color);
}
.caseStudies .box-container .box .btnContainer {
  margin-top: 4rem;
  text-align: center;
  width: 80%;
  margin-bottom: 1rem;
}
.caseStudies .box-container .box .btnContainer .btn {
  background: var(--black);
  color: white;
  margin-top: 2rem;
  text-align: left;
}
.caseStudies .box-container .box .btnContainer .btn:hover {
  color: var(--black);
  background: white;
  border: 0.1rem solid var(--black);
}
.caseStudies .box-container .box:hover {
  background-color: var(--black);
}
.caseStudies .box-container .box:hover h3, .caseStudies .box-container .box:hover p, .caseStudies .box-container .box:hover .boxText {
  color: white;
}
.caseStudies .box-container .box:hover img {
  filter: invert(100%);
}

/* caseStudies ends */
/* aboutUs starts */
.aboutUs p {
  font-size: 2.7rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--light-color);
  text-transform: none;
  text-align: center;
}
.aboutUs p a {
  color: #051221;
}

/* aboutUs ends */
/* works starts */
.works .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 5rem;
}
.works .box-container .box .image {
  height: 30rem;
  overflow: hidden;
  position: relative;
}
.works .box-container .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works .box-container .box .image .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  background: var(--black);
  color: white;
  font-size: 1.7rem;
  padding: 2rem;
  z-index: 90;
  transform: translateY(100%);
}
.works .box-container .box:hover .image .content {
  transform: translateY(0);
}

/* works ends */
/* contact starts */
.contact {
  background: var(--light-bg);
}
.contact .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.contact .box-container .box {
  width: 30rem;
}
.contact .box-container .box h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.contact .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-bottom: 2rem;
}
.contact .box-container p {
  font-size: 2.7rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--light-color);
  text-transform: none;
  text-align: center;
}
.contact .box-container p a {
  color: #051221;
}
.contact .box-container form {
  flex: 1 1 42rem;
}
.contact .box-container form .inputBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact .box-container form .inputBox input {
  width: 49%;
  border-radius: 5rem;
  padding: 1.2rem 1.8rem;
  font-size: 1.5rem;
  color: var(--black);
  margin: 0.7rem 0;
}
.contact .box-container form .inputBox .nameInput {
  width: 100%;
  border-radius: 5rem;
  padding: 1.2rem 1.8rem;
  font-size: 1.5rem;
  color: var(--black);
  margin: 0.7rem 0;
}
.contact .box-container form textarea {
  border-radius: 5rem;
  padding: 1.2rem 1.8rem;
  font-size: 1.5rem;
  color: var(--black);
  margin: 0.7rem 0;
  width: 100%;
  border-radius: 1rem;
  resize: none;
  height: 25rem;
}
.contact .box-container form .btn {
  color: var(--black);
  background: white;
  border: 0.1rem solid var(--black);
  margin-top: 1rem;
}
.contact .box-container form .btn:hover {
  background: var(--black);
  color: white;
}

/* contact ends */
/* footer starts */
footer {
  text-align: center;
}
footer .logo {
  font-size: 2rem;
  color: var(--black);
  font-weight: 700;
}
footer .logo span {
  font-weight: normal;
}
footer p {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1.7rem;
  color: gray;
}
footer .socials ion-icon {
  font-size: 2.5rem;
  color: var(--black);
  background: var(--light-bg);
  border-radius: 50%;
  padding: 1rem;
  margin: 0.5rem;
  cursor: pointer;
}
footer .socials ion-icon:nth-child(1) {
  color: var(--twitter-color);
}
footer .socials ion-icon:nth-child(1):hover {
  background: var(--twitter-color);
  color: white;
}
footer .socials ion-icon:nth-child(2) {
  color: var(--discord-color);
}
footer .socials ion-icon:nth-child(2):hover {
  background: var(--discord-color);
  color: white;
}
footer .socials ion-icon:nth-child(3) {
  color: var(--youtube-color);
}
footer .socials ion-icon:nth-child(3):hover {
  background: var(--youtube-color);
  color: white;
}
footer .socials ion-icon:nth-child(4) {
  color: var(--linkedin-color);
}
footer .socials ion-icon:nth-child(4):hover {
  background: var(--linkedin-color);
  color: white;
}

/* footer ends */

/*# sourceMappingURL=style.css.map */
