@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";

/* src/styles.css */
p,
h1,
h3,
a,
button {
  font-family: "Montserrat", serif;
}
* {
  padding: 0;
  margin: 0;
}
.container {
  height: 100vh;
  width: 100%;
  background:
    linear-gradient(
      to right,
      #88CAE0 70%,
      #C8EBB1 30%);
  position: relative;
  overflow: hidden;
}
.wave {
  position: absolute;
  top: 0;
  right: 30%;
}
nav {
  width: 90%;
  margin: auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav ul {
  display: flex;
  list-style-type: none;
}
nav ul li {
  margin: 0 5px;
}
nav ul li a {
  text-decoration: none;
  padding: 0.3rem 1.3rem;
  font-size: 17px;
  font-weight: bold;
  color: white;
  position: relative;
  z-index: 1;
}
nav ul li a::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  background-color: #0B4d63;
  z-index: -1;
  transition: 0.5s;
}
nav ul li a:hover:after {
  width: 100%;
}
.main-content {
  width: 60%;
  padding-top: 100px;
  margin-left: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.image-pista,
.main-text {
  flex-basis: 50%;
}
.main-text {
  margin-top: 50px;
}
.image-pista img {
  width: 100%;
}
.main-content h1 {
  font-size: 60px;
  letter-spacing: 1px;
  color: #494234;
}
.main-content p {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 1px;
}
.main-content button {
  margin-top: 2.5rem;
  outline: none;
  border: none;
  font-size: 18px;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border-radius: 0 50% 0 50%;
  background-color: #C8EBB1;
  color: black;
  cursor: pointer;
  font-weight: bold;
}
.swiper {
  width: 20rem;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.right {
  position: absolute;
  right: 8%;
  bottom: 20%;
}
.box {
  display: flex;
  align-items: center;
}
.right .box .image img {
  width: 70%;
}
.image {
  margin-top: 2rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: -5px 5px 17px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.image:hover {
  background-color: rgba(73, 66, 52, 0.7);
}
.box .inner-box {
  margin: 1.5rem 0 0 1rem;
}
.box .inner-box p {
  font-size: 14px;
  font-weight: 500;
}
.social-links {
  position: absolute;
  right: 5%;
  bottom: 5%;
}
.social-links i {
  margin-left: 10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #93C572;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.social-links i:hover {
  transform: translateY(-5px);
}
.social-links::before {
  content: "";
  width: 80%;
  height: 3px;
  position: absolute;
  top: 42%;
  left: -150px;
  background-color: #494234;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
