@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,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: rgb(244, 241, 233);
  color: rgb(41, 52, 81);
  line-height: 1.5rem;
}

header {
  background-color: rgb(41, 52, 81);
  color: #fff;
  padding: 20px;
}
header .logo h1 {
  font-weight: 500;
  line-height: 2rem;
}
header .nav-links {
  display: flex;
  flex-direction: row;
  gap: 2vw;
}

@media screen and (max-width: 600px) {
  header nav .nav-links {
    gap: 3vw;
    margin-left: 3vw;
  }
  header nav .nav-links li a[href="/#services"] {
    display: none;
  }
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 2vw;
}
nav li {
  list-style: none;
  display: inline;
}
nav a {
  text-decoration: none;
  color: #fff;
}

.hero {
  background-image: url("hero-image.jpg");
  background-size: cover;
  text-align: left;
  padding: 250px 10vw;
  color: #fff;
  background-image: linear-gradient(to right, rgba(41, 52, 81, 0.4), rgba(41, 52, 81, 0.4)), url("/img/image1.jpg");
  background-size: cover;
  background-position: 60%;
}
.hero h2 {
  font-size: 2.5em;
  font-weight: 600;
}
.hero p {
  font-size: large;
  width: 40vw;
}
.hero * {
  width: -moz-fit-content;
  width: fit-content;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 900px) {
  .hero {
    background-size: 250%;
  }
  .hero h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .hero p {
    width: 70vw;
  }
}
.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgb(41, 52, 81);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 200ms ease-in-out;
}

.cta-button:hover {
  background-color: rgb(29, 37, 59);
}

.about {
  text-align: center;
  padding: 50px 20vw;
  color: rgb(41, 52, 81);
}
.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
}
.about p strong.a {
  font-size: larger;
}
.about p strong.b {
  font-size: large;
}
.about p strong.c {
  font-size: large;
  font-weight: 500;
}
.about .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

@media screen and (max-width: 1200px) {
  .about .grid-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  .about .grid-container {
    grid-template-columns: 1fr;
  }
}
.services {
  text-align: center;
  padding: 50px 3vw 0 3vw;
}
.services h3 {
  font-size: 2em;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.service {
  margin: 20px;
  padding: 20px;
  background-color: rgb(255, 255, 254);
  border: rgb(41, 52, 81) 5px solid;
  box-shadow: 0 0 40px 0px rgba(0, 0, 0, 0.35);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  height: 100%;
}
.service .imagemaths {
  background-image: url("/img/imagemaths.jpg");
  background-position: 20%;
}
.service .imagephysics {
  background-image: url("/img/imagephysics.jpg");
}
.service .imagecomputerscience {
  background-image: url("/img/imagecomputerscience.jpg");
}
.service h4 {
  font-size: larger;
  margin-bottom: 10px;
}
.service span {
  width: 300px;
  height: 300px;
  border-radius: 5px;
  align-self: center;
  background-size: cover;
}

@media screen and (max-width: 1200px) {
  .service-grid {
    display: flex;
    flex-direction: column;
  }
  .service {
    width: 80vw;
  }
  .service span {
    width: 80%;
  }
}
.testimonials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 100px 0;
}
.testimonials .wrapper {
  display: grid;
  grid-template-columns: 1fr 40vw 1fr;
  gap: 20px;
}
.testimonials .wrapper .testimonial-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: larger;
  transition: opacity 400ms ease-in-out;
}
.testimonials .wrapper .button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonials .wrapper .button-container button {
  font-size: 3rem;
  border: none;
  width: 55px;
  height: 55px;
  background-image: url("/img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: 47% 50%;
  border-radius: 999px;
  background-color: white;
  box-shadow: 0 0 40px -5px rgba(0, 0, 0, 0.3);
}

.contact {
  padding: 0 3vw;
  margin-bottom: 50px;
}
.contact h1 {
  padding: 50px 0 20px 0;
}
.contact h3 {
  padding-bottom: 30px;
  font-weight: 400;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact form div {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.contact form div * {
  width: 100%;
}
.contact form input {
  height: 50px;
  font-size: medium;
  font-family: "Montserrat", sans-serif;
  border-radius: 7px;
  border: none;
  padding: 0 10px;
  font-style: italic;
}
.contact form input[type=submit] {
  height: 50px;
  font-weight: 600;
  font-size: medium;
  background-color: white;
  color: rgb(41, 52, 81);
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}
.contact form input[type=submit]:hover {
  background-color: rgb(41, 52, 81);
  color: white;
}
.contact form textarea {
  font-size: medium;
  font-family: "Montserrat", sans-serif;
  border-radius: 7px;
  border: none;
  padding: 15px 10px;
  font-style: italic;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background-color: #333;
  color: #fff;
}
footer .documents {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-self: center;
}
footer .documents a {
  text-decoration: none;
  color: rgb(238, 195, 105);
}
footer .documents a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=styles.css.map */