@import url("https://fonts.googleapis.com/css2?family=Poppins: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");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
button {
  border: none;
  outline: none;
}
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
.icon {
  color: #ee363e;
  font-size: 1rem;
  margin-right: 0.5rem;
}
.heading {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 4rem;
}

.inverse-heading {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 4rem;
  color: white;
}
.heado {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 4rem;
  color: #333;
}
.heado::after {
  content: "";
  background: #ee363e;
  width: 5%;
  height: 4px;
  display: block;
  margin: auto;
}
.content p {
  margin-bottom: 2rem;
  text-align: justify;
}
.content span {
  color: #ee363e;
  font-weight: 600;
}
.event {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.event img {
  max-width: 100%;
  height: auto;
  display: block;
}
.column-item {
  font-size: 0.9rem;
  font-weight: 400;
}
.socials a ion-icon {
  color: white;
  margin-right: 0.5rem;
}
/**TOP BAR**/
header {
  height: 100vh;
}
.topbar {
  height: 50px;
  padding: 0.5rem;
  line-height: 50px;
  background: linear-gradient(#430202, rgb(110, 2, 2));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.address span {
  color: #fff;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.float {
  display: flex;
  justify-content: space-between;
  align-content: center;
  border-bottom: 0.5px solid #33333334;
}
/**TOP BAR**/
/**NAVBAR**/
nav {
  padding: 0.5rem;
  box-shadow: 0px 15px 10px -15px #111;
  height: 100px;
  position: sticky; /* Set the navbar to fixed position */
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(6px);
}
.logo {
  padding: 0.5rem;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-image {
  width: 300px;
}
.logo-image img {
  max-width: 100%;
  height: auto;
}
.navi {
  border-bottom: none;
}
.cruise {
  height: 100%;
  align-items: center;
}
.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  float: right;
  height: 100%;
}

.menu-icon {
  padding: 28px 20px;
  height: 50%;
  display: none;
  cursor: pointer;
  position: relative;
}

.menu-btn {
  display: none;
}
.nav-icon {
  display: block;
  width: 36px;
  height: 4px;
  background: #ee363e;
  position: relative;
  transition: background 0.2s ease-out;
  border-radius: 2px;
}

.nav-icon:before {
  background: #ee363e;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: 10px;
  border-radius: 2px;
}

.nav-icon:after {
  background: #ee363e;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: -10px;
  border-radius: 2px;
}

.menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}

.menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 0;
}

.menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 0;
}

.navigation a {
  text-decoration: none;
  color: #333;
  margin-right: 0.5rem;
  font-weight: 600;
}
.navigation a:hover {
  color: #ee363e;
}
.navigation a.active {
  color: #ee363e;
}
/**NAVBAR END**/
/**HERO START**/
.hero {
  background: url("../images/engr1.jpg");
  height: calc(100vh - 150px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.super {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.btn {
  background: #ee363e;
  color: white;
  padding: 1rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  margin-right: 0.5rem;
}
.hero-text {
  width: 700px;
}
.hero-text p {
  color: white;
  margin-top: -1rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px #000000;
  font-weight: 600;
}
.btn-secondary {
  background: white;
  color: #333;
}
.hero-text h1 {
  color: white;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px #000000;
}
.start {
  font-size: 50px;
  color: #ee363e;
  padding: 1rem;
  border-radius: 0.5rem;
  /*border: 1px solid #ee363e;*/
}
.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  flex: 1 250px;
}
.stat-item h3 {
  font-size: 1.1rem;
}
.stat {
  background-image: radial-gradient(gray 0.5px, transparent 0.5px);
  background-position: center;
  background-size: 20px 20px;
}

/**HERO END**/
/**EVENT START**/
.spacer {
  padding: 5rem 0;
}
/**EVENT END**/
/*motto*/
.motto-image {
  height: 18.75rem;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/motto_image.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.motto p {
  color: white;
  font-weight: 600;
  font-size: 1.75rem;
  text-align: center;
  text-shadow: 2px 2px 4px #000;
}
/**LEVEL START**/
.level {
  background: linear-gradient(#f2f2f2, #f8f8f8);
}
.membership {
  display: flex;
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
}
.membership-item {
  padding: 1.5rem;
  background: linear-gradient(white, #f8f0f1);
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0px 15px 10px -15px #111;
  flex: 1 250px;
  display: flex;
  flex-direction: column;
  transition: 0.5s;
  cursor: pointer;
}
.membership-item:hover {
  transform: translateY(-0.5rem);
}
.membership-item h3 {
  color: #ee363e;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.membership-item button {
  background: linear-gradient(#ee363e, rgb(245, 63, 63));
  color: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.5s;
  margin-top: auto;
}

.cost {
  color: rgb(89, 89, 87);
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: auto;
}
.cost::before {
  content: "\20A6";
  font-weight: 800;
}
.per {
  color: #333;
  font-size: 1rem;
  font-weight: 300;
  margin-top: 0.5rem;
}
.cost2 {
  color: #333;
  font-size: 0.8rem;
  margin-top: 2rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 2rem;
}
.second-color {
  background: linear-gradient(#f8e7e8, white);
}
/**LEVEL END**/
/**BENEFIT START**/
.benefit {
  background: url("../images/engr2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.benefits {
  display: flex;
  gap: 1.5rem;
  margin: 0 auto;
  flex-wrap: wrap;
}
.benefit-item {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 0.5rem;
  flex: 1 250px;
  text-align: center;
}
.benefit-text {
  font-size: 0.9rem;
  font-weight: 500;
}
.benefit-text h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.icono {
  font-size: 3rem;
}
.icono-one {
  color: #031d3e;
}
.icono-two {
  color: #f4d200;
}

.icono-three {
  color: #003ba8;
}
/**BENEFIT END**/

/**FOOTER START**/
footer {
  background: #f2f2f2;
  padding-top: 5rem;
}
.about {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  display: block;
}
.pix {
  width: 150px;
  float: left;
}
.row {
  display: flex;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
}
.special {
  padding-bottom: 5rem;
  border-bottom: 1px solid #ccc;
}
.column {
  flex: 1 1 250px;
  min-width: 200px;
}
.column:first-child,
.column:last-child {
  flex: 2 1 250px;
}
.column-item {
  display: flex;
  border-bottom: 0.5px solid rgba(125, 132, 123, 0.563);
  padding: 10px;
}
.column-item div:nth-child(1) ion-icon {
  background: linear-gradient(rgb(141, 3, 3), #ee363e);
  font-size: 2rem;
  padding: 0.5rem;
  border-radius: 0.5px;
  box-shadow: 0px 15px 10px -15px #111;
}
.column-item div:nth-child(1) {
  margin-right: 1rem;
  color: rgb(9, 56, 2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.column-item div:nth-child(2) {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}
.column h3 {
  margin-bottom: 1.2rem;
}
.social-media a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
}

.social-media a:hover {
  color: #ee363e;
}

.tulip ion-icon {
  display: block;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.tulip {
  display: flex;
}
.tulip p {
  font-size: 0.9rem;
  font-weight: 600;
}
.newsletter {
  height: 40px;
  max-width: 90%;
  width: 600px;
  margin: 0 auto;
}
.newsletter input {
  width: 71%;
  height: 100%;
  margin-right: 1%;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.subscribe {
  height: 100%;
  background: linear-gradient(to right, #ee363e, #f3898e);
  width: 28%;
  border-radius: 0.25rem;
  color: white;
  font-weight: 600;
  text-shadow: 1px px #000;
}
.stay {
  text-align: center;
  padding: 5rem 0;
  border-bottom: 1px solid #ccc;
}
.stay p,
.stay h3 {
  margin-bottom: 20px;
}
.stay p {
  font-size: 0.9rem;
}
.copyright {
  background: #f2f2f2;
}
.copyright-inner {
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
}
/**FOOTER END**/
/**LOGIN START**/
.login-logo {
  width: 80px;
  margin: 0 auto 1rem auto;
}
.login-logo img {
  max-width: 100%;
  height: auto;
}
.login-wrapper {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  background: #f6f0f0;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0px 15px 10px -15px #111;
}
.login-wrapper h2 {
  margin-bottom: 1rem;
  text-align: center;
}
.form-input {
  display: block;
  margin-bottom: 0.5rem;
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem;
}
.login-wrapper button {
  background: linear-gradient(#ee363e, #f3898e);
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem;
  font-size: 1.2rem;
  color: white;
}
/**LOGIN END**/
/**RESPONSIVE START**/
@media (max-width: 1000px) {
  .topbar {
    display: none;
  }

  .menu-icon {
    display: block;
    float: right;
    margin: 14px 0;
  }
  .logo {
    float: left;
  }
  .navigation {
    clear: both;
    background: #ee363e;
    width: 100%;
    display: block;
    position: fixed;
    top: 100px;
    left: -100%;
    height: 100vh;
    transition: all 0.5s ease-in-out;
  }

  #menu-btn:checked ~ .navigation {
    left: 0;
  }

  .navigation li a {
    display: block;
    height: 50px;
    width: 100%;
    text-align: center;
    color: white;
    line-height: 50px;
  }

  .navigation a:hover {
    background: rgba(38, 165, 80, 0.3);
    color: white;
    width: 100%;
  }

  .navigation a.current {
    color: #26a550;
  }
}
@media (max-width: 800px) {
  .heado::after {
    width: 30%;
  }
}
/**RESPONSIVE END**/
