@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #1e71ae;
  color: whitesmoke;
  font-family: "Lato", sans-serif;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: gray;
}

body::-webkit-scrollbar-thumb {
  background: #353c5a;
}

body::-webkit-scrollbar-thumb:hover {
  background: #101c85;
}

nav {
  align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 70px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

@media (max-width: 600px) {
  nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

nav img {
  width: 200px;
}

@media (max-width: 600px) {
  nav .nav-links {
    display: none;
  }
}

nav .nav-links a {
  color: white;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 0 10px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

nav .nav-links a:hover {
  color: #d9b100;
}

nav .nav-links a:last-child {
  border: 1px solid white;
  border-radius: 5px;
  padding: 10px 20px;
}

nav .nav-links a:last-child:hover {
  background: #36befe;
  color: white;
}

header {
  align-items: center;
  background: url("../images/header.svg") no-repeat;
  background-position-x: right;
  background-size: contain;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  height: 120vh;
  justify-content: center;
}

@media (max-width: 600px) {
  header {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(255, 255, 255, 0.582)),
        to(transparent)
      ),
      url("../images/header.svg") no-repeat;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.582),
        transparent
      ),
      url("../images/header.svg") no-repeat;
    background-size: cover;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 800px;
    text-align: center;
  }
}

header div {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35%;
}

@media (max-width: 600px) {
  header div {
    width: 100%;
  }
}

header div h1 {
  font-size: 3.5rem;
}

header div p {
  font-size: 1.5rem;
  margin: 30px 0;
}

header div a {
  background: #d9b100;
  border: 1px solid #d9b100;
  border-radius: 5px;
  color: white;
  letter-spacing: 1px;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease, background 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease;
  width: 200px;
}

@media (max-width: 600px) {
  header div a {
    margin: 0 auto;
  }
}

header div a:hover {
  background: transparent;
  color: #d9b100;
  cursor: pointer;
}

@media (max-width: 600px) {
  main {
    width: 100%;
  }
}

main .feature {
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 0 auto;
  padding: 100px;
  width: 80%;
}

@media (max-width: 600px) {
  main .feature {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: -200px;
    padding: 20px;
    width: 100%;
  }
}

main .feature:nth-child(odd) {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 600px) {
  main .feature:nth-child(odd) {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

main .feature .feature-head {
  margin: 0 20px;
  width: 40%;
}

@media (max-width: 600px) {
  main .feature .feature-head {
    width: 100%;
  }
}

main .feature .feature-head div {
  text-align: center;
}

main .feature .feature-head div img {
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#d98600),
    to(#cbbb34)
  );
  background: linear-gradient(to bottom right, #d98600, #cbbb34);
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 40px;
  padding: 5px;
  width: 50px;
}

main .feature .feature-head h1 {
  font-size: 1.5rem;
  text-align: center;
}

main .feature .feature-head p {
  line-height: 34px;
  margin: 15px 0;
  text-align: justify;
}

main .feature img {
  margin: 0 20px;
  width: 50%;
}

@media (max-width: 600px) {
  main .feature img {
    margin-bottom: 200px;
    width: 100%;
  }
}

#testimonials {
  margin: 20px 0;
}

#testimonials .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-filter: drop-shadow(0px 3px 2px #00000050);
  filter: drop-shadow(0px 3px 2px #00000050);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 80%;
}

@media (max-width: 600px) {
  #testimonials .entries {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}

#testimonials h1 {
  margin: 50px 0;
  text-align: center;
}

#testimonials .entry {
  align-items: center;
  background: -webkit-gradient(
    linear,
    right top,
    left bottom,
    color-stop(20%, #eaeaea),
    color-stop(80%, #fffed6)
  );
  background: linear-gradient(to bottom left, #eaeaea 20%, #fffed6 80%);
  border-radius: 10px;
  border-top-left-radius: 4px;
  -webkit-box-align: center;
  color: #545454;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin: 10px auto;
  padding: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 45%;
}

@media (max-width: 600px) {
  #testimonials .entry {
    width: 95%;
  }
}

#testimonials .entry:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

#testimonials .entry img {
  border-radius: 50%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 20px;
  width: 150px;
}

#testimonials .entry .content .stars {
  align-items: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  margin-bottom: 10px;
}

#testimonials .entry .content .stars h3 {
  margin-right: 20px;
}

footer {
  margin-bottom: 10px;
  margin-top: 250px;
  text-align: center;
}
