@import url("https://fonts.googleapis.com/css2?family=Abel&family=Agbalumo&family=Bubblegum+Sans&family=Cedarville+Cursive&family=Josefin+Sans:wght@300;400&family=Jost:wght@500&family=Lora:wght@500&family=Martel+Sans:wght@600&family=Mulish&family=Nunito:ital,wght@0,400;0,500;1,300&family=Open+Sans:ital@1&family=Pacifico&family=Playfair+Display:wght@500&family=Poppins:wght@300&family=Raleway&family=Roboto:ital,wght@0,100;0,300;0,400;1,100;1,400&family=Rubik&family=Seaweed+Script&family=Signika+Negative&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
}
body {
  font-family: josefin Sans, sans-serif;
  width: 100vw;
  height: 100vh;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  /* border: solid red; */
  z-index: 1000;
}
.box1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.63)),
    url("../Image/pexels-juan-salamanca-61129.jpg");
  /* background-position: center; */
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
}
.navigation {
  /* border: solid red; */
  background-color: rgba(255, 255, 255, 0.877);
  padding: 0.2rem;
  box-shadow: 0px 1px 5px;
}
.navbar {
  /* border: solid black; */
  padding: 0.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 300px;
}
@media (max-width: 658px) {
  .navigation {
    display: none;
  }
}
.navbar a {
  font-size: 1.2rem;
  color: black;
  transition: color 0.2s;
}
.navbar a:hover {
  color: blue;
}
.lists {
  /* border: solid green; */
  display: flex;
  justify-content: space-evenly;
  /* flex-wrap: wrap; */

  gap: 2rem;
  padding: 1rem;
}
.componenet {
  /* border: solid blue; */
  display: flex;
  /* flex-wrap: wrap; */
  gap: 2rem;
  padding: 1rem;
  justify-content: space-evenly;
}
/* Main */
.head {
  /* border: solid red; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: end;
  /* margin-top: 10rem; */
  padding: 2rem;
  height: 80vh;
}
.heading {
  /* border: solid blue; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 500px));
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.content {
  /* border: solid green; */
  padding: 1rem;
  color: white;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.content span {
  font-size: 3.5rem;
  font-weight: bold;
}
@media (max-width: 330px) {
  .content span {
    font-size: 2rem;
  }
}
.content .points {
  font-size: 2rem;
  font-weight: 200;
}
.content button {
  background-color: rgb(12, 12, 71);
  padding: 0.8rem 2.5rem;
  border-radius: 20px;
  border: transparent;
}
.content a {
  color: white;
  font-weight: 500;
}
/* box 2 */
.box2 {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(100px, 300px));
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 0.4rem;
  /* border: solid red; */
}
.box {
  width: 100%;
  /* border: solid black; */
  color: rgb(20, 20, 58);
  font-weight: 500;
  padding: 1rem;
  font-size: 2rem;
  margin-top: 1rem;
}
.cards .point1 {
  color: blue;
  font-weight: 500;
  font-size: 1.7rem;
}
.boxes {
  display: grid;
  /* border: solid blue; */
  padding: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(100px, 300px));
  justify-content: space-evenly;
  align-items: center;
  gap: 0.5rem;
  min-height: 100%;
  width: 100%;
}
.cards {
  border: solid grey 0.1rem;
  border-radius: 25px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.boxes .card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.8rem;
  min-height: 100%;
  border-radius: 40px;
  border: solid grey 1px;
  cursor: pointer;
  transition: all 0.5s;
  overflow: hidden;
}
.card button {
  padding: 0.3rem 1rem;
  cursor: pointer;
  background-color: blue;
  border: transparent;
  border-radius: 5px;
  color: white;
  font-weight: 800;
  transition: all 0.2s;
}
.card:hover {
  transform: translateY(-10px);
  background-color: rgba(0, 0, 0, 0.733);
  color: white;
}
.card button:hover {
  background-color: rgba(128, 0, 128, 0.719);
}
.card img {
  width: 100%;
  border-radius: 20px;
}
/* box  3 */
.box3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.582), rgba(0, 0, 0, 0.788)),
  url("../Image/Picsart_23-12-12_13-26-13-650.jpg");
  height: 50vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 1rem;
  display: grid;
  justify-content: start;
  align-items: center;
}
@media (max-width: 500px) {
  .box3 {
    height: 100vh;
  }
}
.era {
  /* border: solid  red; */
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* color: white */
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.era .point p {
  line-height: 1.5rem;
  font-size: 1.1rem;
  color: white;
}
.point h3 {
  font-size: 5rem;
  color: white;
}
.point button {
  padding: 0.8rem 2rem;
  background-color: transparent;
  border: solid 2px white;
  font-weight: bold;
  border-radius: 15px;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}
.point button:hover {
  background-color: black;
  color: white;
}
/* Box 4 */
.box4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 580px));
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  /* border: solid red; */
  padding: 7rem;
}
.swim {
  /* border: solid black; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.swim h3 {
  font-size: 3rem;
  color: rgb(9, 9, 87);
}
.swim p {
  line-height: 1.5rem;
  color: grey;
}
.swim button {
  padding: 1rem 2rem;
  border: blue 1px solid;
  border-radius: 15px;
  color: rgb(7, 7, 95);
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.2s;
}
.swim button:hover {
  background-color: rgb(8, 8, 51);
  color: white;
}
.swim img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 5px 5px;
}
/* box  5 */
.box5 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.226), rgba(0, 0, 0, 0.63)),
  url("../Image/pexels-archie-binamira-707185.jpg");
  height: 50vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 1rem;
  display: grid;
  justify-content: end;
  align-items: center;
}
@media (max-width: 500px) {
  .box5 {
    height: 100vh;
  }
  .box4 {
    padding: 1rem;
  }
}
.era {
  /* border: solid  red; */
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* color: white */
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.era .point p {
  line-height: 1.5rem;
  font-size: 1.1rem;
  color: white;
}
.point h3 {
  font-size: 5rem;
  color: white;
}
.point button {
  padding: 0.8rem 2rem;
  background-color: transparent;
  border: solid 2px white;
  font-weight: bold;
  border-radius: 15px;
  color: white;
}
/* Box 6 */
.box6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 580px));
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  /* border: solid red; */
  padding:1rem;
}
@media(min-width:600px){
  .box6{
    padding: 7rem;
  }
}
.swim {
  /* border: solid black; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.swim h3 {
  font-size: 3rem;
  color: rgb(9, 9, 87);
}
.swim p {
  line-height: 1.5rem;
  color: grey;
}
.swim button {
  padding: 1rem 2rem;
  border: blue 1px solid;
  border-radius: 15px;
  color: rgb(7, 7, 95);
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  background-color: transparent;
}
.swim img {
  width: 100%;
  border-radius: 20px;
}
/* Box 7 */
.box7 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.233), rgba(0, 0, 0, 0.788)),
  url("../Image/pexels-riccardo-307008.jpg");
  height: 50vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 1rem;
  display: grid;
  justify-content: center;
  align-items: center;
}
@media (max-width: 500px) {
  .box7 {
    height: 100vh;
  }
}
.era {
  /* border: solid  red; */
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* color: white */
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.era .point p {
  line-height: 1.5rem;
  font-size: 1rem;
  color: white;
}
.point h3 {
  font-size: 3rem;
  color: white;
}
.point button {
  padding: 0.8rem 2rem;
  background-color: transparent;
  border: solid 2px white;
  font-weight: bold;
  border-radius: 15px;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}
.point button:hover {
  background-color: black;
  color: white;
}
/* box 8 */
.box8{
 display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* border: solid red; */
} 
.area{
display: flex;
  /* border: solid  red; */
}
.boxes .profile{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border: solid  black; */
  padding: 1rem;
  gap: 1rem;
}
.boxes h4{
  color: rgb(7, 7, 37);
  font-size: 2rem;
}
.boxes  p{
  line-height: 1.5rem;
}
.profile img{
  width: 100%;
  border-radius:15rem;
  box-shadow: 5px 5px 15px black;
}
/* Box 9 */
.box9{
  /* border: solid red; */
  background-color: rgb(20, 20, 61);
  padding: 1rem;
  /* height: 50vh; */
  display: grid;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 1rem;
}
.areas{
  /* border: solid black; */
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.areas a{
  color: white;
}
.contact a{
  /* border: solid red; */
  padding: 2rem;
  color: white;
  font-size:2.5rem;
}