@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Montserrat+Alternates: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&family=Saira+Stencil+One&display=swap');
html, body{
    font-family: "Montserrat Alternates", sans-serif;
}
h1, h2, h3, h4, h5{
  font-family: "Audiowide", sans-serif;
}
h1{
    font-size: 60px;
}
header{
  background-color: #027102;
  color: #ffffff;
}
.button {
	pointer-events: auto;
	cursor: pointer;
	background: #a3ffdb;
	border: none;
	padding: 1.5rem 3rem;
	margin: 0;
	font-size: inherit;
	position: relative;
	display: inline-block;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.button::before,
.button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.button--hyperion {
	font-weight: 500;
	padding: 1rem 1.5rem;
	overflow: hidden;
	color: #fff;
}

.button--hyperion span {
	display: block;
	position: relative;
}

.button--hyperion > span {
	overflow: hidden;
}

.button--hyperion > span > span {
	overflow: hidden;
}

.button--hyperion:hover > span > span {
	animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
    color: #027102;
}

@keyframes MoveUpInitial {
	to {
		transform: translate3d(0,-105%,0);
	}
}

@keyframes MoveUpEnd {
	from {
		transform: translate3d(0,100%,0);
	}
	to {
		transform: translate3d(0,0,0);
	}
}

.button--hyperion::before {
	content: '';
	background: #035103;
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
	transform-origin: 100% 50%;
}

.button--hyperion:hover::before {
	transform: scale3d(0,1,1);
	transform-origin: 0% 50%;
}
.list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.list{
    padding: 0;
    margin: 0;
}
.list li{
    list-style: none;
}
footer{
    background-color: #027102;
    color: #ffffff;
}
footer a{
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
.copyright{
    font-size: 14px;
}
.banner{
    position: relative;
    width: 100%;
    overflow:hidden;
    background-color:#000030;
    background-image:linear-gradient(180deg, rgba(10, 0, 0, 0.5) 1%, rgba(10, 0, 0, 0.5) 100%), url("../img/banner.png");
    background-size:100%;
    background-position:center;
    height: 100vh;
}
@media only screen and (max-width: 600px) {
    .banner {
      background-size: auto;
      background-position: right;
    }
  }

  .pricing-bg {
    background: #333745;
    color: #fff;
    position: relative;
    font-weight: bold;
    height: 100%;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px rgba(51, 55, 69, 0.6);
  }
  
  .pricing-table {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .pricing-table .card {
    max-width: 380px;
    width: 100%;
    height: auto;
    padding: 30px 30px 90px 30px;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 2px 46px -4px rgba(0, 0, 0, 0.6);
    transition: all 0.2s ease-in-out;
  }
  .pricing-table .card:nth-child(1) {
    background: #7f7fd5;
    background: linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
  }
  .pricing-table .card:nth-child(1) .price::before {
    content: "320";
  }
  .pricing-table .card:nth-child(2) {
    margin: 0 30px;
    z-index: 2;
    height: auto;
    background: #ff416c;
    background: linear-gradient(to right, #ff4b2b, #ff416c);
  }
  .pricing-table .card:nth-child(2) .price::before {
    content: "1'300";
  }
  .pricing-table .card:nth-child(3) {
    background: #00b09b;
    background: linear-gradient(to right, #96c93d, #00b09b);
  }
  .pricing-table .card:nth-child(3) .price::before {
    content: "2'200";
  }
  .pricing-table .card:nth-child(1) .price, .pricing-table .card:nth-child(3) .price {
    font-size: 4rem;
  }
  .pricing-table .card:nth-child(1) .buy-button h3, .pricing-table .card:nth-child(3) .buy-button h3 {
    top: 10%;
    left: 10%;
    font-size: 1rem;
  }
  .pricing-table .card .type {
    margin-top: 30px;
    letter-spacing: 0.1rem;
    color: #ffffff;
  }
  .pricing-table .card .price {
    font-size: 5rem;
    position: relative;
    margin: 10px 0px 20px;
    z-index: 2;
    color: #ffffff;
  }
  .pricing-table .card .price span {
    font-size: 1.8rem;
    position: absolute;
    left: -15%;
    top: 65%;
  }
  .pricing-table .card .price::before {
    position: absolute;
    content: "";
    color: rgba(255, 255, 255, 0.06);
    font-size: 9.5rem;
    z-index: -1;
    right: -30%;
    bottom: 15%;
    text-shadow: 0 0 0px rgba(51, 55, 69, 0);
    transition: all 1s ease-in-out;
  }
  .pricing-table .card .plan {
    font-size: 1.3rem;
    position: relative;
    color: #ffffff;
    margin-bottom: 10px;
  }
  .pricing-table .card .plan::before, .pricing-table .card .plan::after {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    background: #fff;
    bottom: 40%;
    transition: all 0.2s ease-out;
  }
  .pricing-table .card .plan::before {
    right: 100%;
    transform: translate(-50%, -50%);
  }
  .pricing-table .card .plan::after {
    right: -50%;
    transform: translate(0%, -50%);
  }
  .pricing-table .card .details {
    text-transform: capitalize;
    padding: 0;
  }
  .pricing-table .card .details li {
    margin: 15px 0px;
    list-style: none;
    color: #ffffff;
  }
  .popular{
    background-color: #ffc009;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 2;
    margin-top: 35px;
    text-align: center;
    transform: translateY(-100%) translateX(10%) translateX(65px) rotate(-315deg);
    width: 200%;
    z-index: 2;
    position: absolute;
  }
  .pricing-table .card .buy-button {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 300px;
    background: #fff;
    border-radius: 15%;
    right: -20%;
    bottom: -18%;
    transition: all 0.4s ease-in-out;
  }
  .pricing-table .card .buy-button h3 {
    text-shadow: 0 0 0;
    text-decoration: none;
    color: #fff;
    position: absolute;
    left: 10%;
    top: 10%;
    color: #333745;
    transition: all 0.4s ease-in-out;
  }
  .pricing-table .card:hover {
    transform: scale(1.02);
  }
  .pricing-table .card:hover .price::before {
    -webkit-animation: text-hover 1s ease-in-out infinite normal;
            animation: text-hover 1s ease-in-out infinite normal;
  }
  .pricing-table .card:hover .plan::before {
    right: 90%;
  }
  .pricing-table .card:hover .plan::after {
    right: -30%;
  }
  .pricing-table .card:hover .buy-button {
    width: 100%;
    right: 0%;
    border-radius: 0%;
  }
  .pricing-table .card:hover .buy-button h3 {
    left: 50%;
    transform: translate(-50%, 0%);
  }
  
  @-webkit-keyframes text-hover {
    0% {
      right: -30%;
    }
    50% {
      right: -37%;
    }
    100% {
      right: -30%;
    }
  }
  
  @keyframes text-hover {
    0% {
      right: -30%;
    }
    50% {
      right: -37%;
    }
    100% {
      right: -30%;
    }
  }
@media screen and (max-width: 1000px) {
    .pricing-table .card .buy-button {
        bottom: -35%;
        width: 100%;
        right: 0%;
        border-radius: 0%;
    }
    .pricing-table .card:nth-child(2) .buy-button{
        bottom: -25%;
    }
    .pricing-table .card:nth-child(3) .buy-button{
        bottom: -18%;
    }
    .pricing-table .card:nth-child(1) .buy-button h3{
        left: 18%;
        top: 5%;
    }
    .pricing-table .card:nth-child(3) .buy-button h3{
        left: 18%;
        top: 10%;
    }
    .pricing-table .card:nth-child(2) .buy-button h3{
      left: 18%;
      top: 5%;
    }
    .pricing-table .card:hover .buy-button h3{
        transform: translate(0%, 0%);
    }
    .pricing-table .card:hover{
        transform: scale(1);
    }
    .pricing-table .card:nth-child(2){
        margin: 0;
    }
    .pricing-table .card .buy-button h3{
        left: 24%;
    }
}
.contact-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    color: #027102;
  }

  .contact-form h2 {
    margin-bottom: 20px;
    color: #027102;
    text-align: center;
  }

  .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #a3ffdb;
    border-radius: 8px;
    font-size: 16px;
    color: #027102;
    box-sizing: border-box;
  }

  .contact-form textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
  }

  .contact-form button {
    background-color: #027102;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
  }

  .contact-form button:hover {
    background-color: #0f470f;
  }

  .thank-you-message {
    display: none;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    color: #027102;
    font-family: sans-serif;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
