nav {
  width: 93.5%;
  background-color: white;
  box-shadow: 1px 1px 10px rgba(189, 190, 192, 0.386);
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  z-index: 1;
}

nav .nav-left img {
  width: 120px;
}

nav .nav-center ul {
  display: flex;
  list-style: none;
  gap: 50px;
}
nav .nav-center ul li a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

nav .nav-center ul li a:hover {
  color: rgb(5, 40, 106);
}

nav .nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
nav .nav-right button {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: white;
  color: gray;
  padding: 0;
}
nav .nav-right button i {
  padding: 5px 10px;
  background-color: rgb(5, 40, 106);
  color: rgb(244, 243, 243);
}
nav .nav-right i {
  font-size: 24px;
  color: black;
}
nav .nav-right i:hover {
  color: rgb(5, 40, 106);
}

#active {
  color: rgb(5, 40, 106);
  border-bottom: 4px solid rgb(5, 40, 106);
  border-radius: 3px;
  padding: 0px 10px 27px 10px;
}

@media (max-width: 1023px) {
  nav {
    padding: 0px 20px;
    width: 97%;
  }
  nav .nav-center ul {
    gap: 20px;
  }
  nav .nav-right i:nth-child(1) {
    display: none;
  }
  .menu {
    grid-template-columns: repeat(3, 1fr);
    padding: 50px 30px;
  }
  .about .container .who {
    flex-direction: column;
    text-align: center;
  }
  .about .container .who img {
    width: 80%;
    margin: auto;
  }
  .features {
    align-items: center;
  }
  .team-members {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  nav {
    padding: 10px;
    width: 95%;
  }
  nav .nav-left img {
    width: 90px;
  }
  nav .nav-center ul {
    gap: 10px;
  }
  nav .nav-center ul li a {
    font-size: small;
  }
  nav .nav-right {
    display: none;
  }
  #active {
    border: none;
  }
}
.home {
  position: relative;
  width: 84%;
  height: 92vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 8% 0;
  overflow: hidden;
  z-index: 0;
}

.home-container {
  max-width: 630px;
}

.home-container h1 {
  font-size: 50px;
  line-height: 1.2;
  animation: slideBottom 0.5s ease forwards;
  animation-delay: 1s;
}

.home-container h3 {
  font-size: 40px;
  color: #0d387c;
  animation: slideBottom 0.5s ease forwards;
  animation-delay: 1.3s;
}

.home-container p {
  font-size: 16px;
  margin: 15px 0 30px;
  font-family: "Montserrat", sans-serif;
  line-height: 2;
  color: rgb(65, 63, 63);
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  background: #0d387c;
  border: 2px solid #0d387c;
  border-radius: 6px;
  font-size: 16px;
  color: white;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 400;
  transition: 0.5s;
}

.btn:hover {
  background: transparent;
  color: blue;
  border: 1 solid rgb(155, 178, 255);
  box-shadow: 1px 1px 20px rgb(39, 111, 255);
}

.home-img {
  position: relative;
  width: 430px;
  height: 450px;
  transform: rotate(45deg);
}

.home-img .rhombus {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  border: 25px solid #0d387c;
  right: -20%;
  box-shadow: -15px 15px 15px rgba(0, 0, 0, 0.2);
}

.rhombus img {
  position: relative;
  bottom: -30px;
  left: -190px;
  max-width: 600px;
  transform: rotate(-45deg);
  opacity: 0;
  animation: car 0.5s ease forwards;
  animation-delay: 1s;
}

.rhombus2 {
  position: absolute;
  width: 650px;
  height: 700px;
  background: #063887;
  transform: rotate(45deg);
  z-index: 1;
  top: -25%;
  right: -25%;
  box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.1);
}

.home-container,
.home-img {
  position: relative;
  z-index: 2; /* on top of rhombus2 */
}

@keyframes car {
  0% {
    transform: translate(300px, -300px) scale(0) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(-45deg);
    opacity: 1;
  }
}
@media (max-width: 1023px) {
  .home {
    height: 86vh;
  }
  .home-container {
    max-width: 630px;
  }
  .home-container h1 {
    font-size: 30px;
  }
  .home-container h3 {
    font-size: 30px;
  }
  .home-img .rhombus {
    width: 150%;
    height: 50%;
    right: -20%;
  }
  .rhombus img {
    bottom: -50px;
    left: -70px;
    width: 130%;
  }
  .rhombus2 {
    width: 500px;
  }
}
@media (max-width: 767px) {
  .home {
    height: 60vh;
  }
  .home-container {
    max-width: 630px;
  }
  .home-container h1 {
    font-size: 30px;
  }
  .home-container h3 {
    font-size: 20px;
  }
  .home-img .rhombus {
    width: 70%;
    height: 40%;
    right: -20%;
  }
  .rhombus img {
    bottom: -70px;
    left: -50px;
    width: 120%;
  }
  .rhombus2 {
    width: 300px;
    height: 300px;
  }
  .home-container p {
    display: none;
  }
  .btn {
    padding: 5px 10px;
    font-size: small;
    margin-top: 30px;
  }
}
.main .text {
  text-align: center;
  line-height: 1.5;
}
.main .text h1 {
  font-size: 40px;
}

.discound {
  height: 50vh;
  background: linear-gradient(to right bottom, rgba(243, 227, 227, 0.097), rgba(0, 0, 0, 0.875)), url(../../img/image\ copy\ 15.png) center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 2;
  margin-bottom: 50px;
}
.discound h1 {
  color: white;
  font-size: 40px;
}
.discound h1 strong {
  color: red;
}
.discound p {
  color: white;
}

@media (max-width: 1023px) {
  .discound h1 {
    color: white;
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .discound {
    height: 30vh;
  }
  .discound h1 {
    line-height: 1;
    text-align: center;
    font-size: 20px;
  }
  .discound button {
    margin-top: 30px;
  }
}
.card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding: 100px;
}
.card .card-main {
  border: 1px solid gray;
  padding: 20px;
  border-radius: 20px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.card .card-main .icon i {
  color: rgb(250, 162, 10);
}
.card .card-main .img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(144, 160, 155, 0.207);
  border-radius: 20px;
  height: 35vh;
  margin-bottom: 20px;
  padding-bottom: 30px;
}
.card .card-main .img img {
  width: 200px;
  height: 200px;
  transition: transform 0.3s ease;
}
.card .card-main p {
  color: rgb(67, 63, 63);
}
.card .card-main span {
  font-size: 20px;
}
.card .card-main .price {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card .card-main .price i {
  font-size: 25px;
  padding: 10px;
  border-radius: 40px;
  background-color: rgba(82, 219, 210, 0.248);
  color: rgb(17, 114, 114);
  transition: all 0.3s ease;
}
.card .card-main .price i:hover {
  background-color: rgba(6, 105, 98, 0.974);
  color: white;
}
.card .card-main .price .cost {
  font-size: 25px;
  font-weight: bold;
  color: rgb(17, 114, 114);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.card .card-main:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
  border-color: rgb(17, 114, 114);
}
.card .card-main:hover .img img {
  transform: scale(1.1);
}

@media (max-width: 1023px) {
  .card {
    padding: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .card .card-main img {
    padding-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .card {
    padding: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .card .card-main {
    padding: 10px;
  }
  .card .card-main p {
    display: none;
  }
  .card .card-main .img {
    padding: 0px;
    height: 20vh;
  }
  .card .card-main .img img {
    width: 100px;
    height: 100px;
  }
}
button {
  padding: 10px 20px;
  border-radius: 5px;
  background: #0d387c;
  border: 2px solid #0d387c;
  color: white;
}

.menu {
  padding: 100px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.menu .menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 10px;
  border: 1px solid gray;
  box-shadow: 1px 1px 4px rgba(163, 155, 155, 0.311);
  transition: all 0.3s ease;
}
.menu .menu-card img {
  width: 150px;
  transition: transform 0.3s ease;
}
.menu .menu-card p {
  color: rgb(5, 79, 18);
}
.menu .menu-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 2px 6px 18px rgba(0, 0, 0, 0.2);
}
.menu .menu-card:hover img {
  transform: scale(1.1);
}
.menu .menu-card #free {
  padding: 5px;
  border-radius: 3px;
  background-color: aquamarine;
}
.menu .menu-card #onl {
  padding: 5px;
  border-radius: 3px;
  background-color: rgba(208, 29, 71, 0.515);
}
.menu .menu-card #sav {
  padding: 5px;
  background-color: rgba(0, 128, 0, 0.296);
}
.menu .menu-card #pro {
  padding: 5px;
  border-radius: 3px;
  background-color: rgba(0, 128, 45, 0.63);
}
.menu .menu-card #hap {
  padding: 5px;
  border-radius: 3px;
  background-color: rgba(255, 255, 0, 0.274);
}
.menu .menu-card #f24 {
  padding: 5px;
  border-radius: 3px;
  background-color: rgba(255, 119, 0, 0.4);
}

@media (max-width: 1023px) {
  .menu {
    grid-template-columns: repeat(3, 1fr);
    padding: 50px 30px;
  }
}
@media (max-width: 767px) {
  .menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .menu .menu-card {
    gap: 0px;
  }
  .menu .menu-card p {
    font-size: small;
  }
  .menu .menu-card img {
    width: 100px;
  }
}
/* Footer Styling */
.footer {
  background: #fff;
  padding: 50px 80px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  width: 22%;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer h2.logo {
  font-family: "Brush Script MT", cursive;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #0073e6;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0073e6;
}

.app-links img {
  width: 140px;
  margin: 5px 0;
  display: block;
}

.payments img {
  width: 50px;
  margin-right: 10px;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

@media (max-width: 1023px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 200px;
         column-gap: 200px;
  }
  .footer-col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 20px;
  }
  .footer-container {
    gap: 10px;
  }
  .footer-container .footer-col ul li a {
    font-size: small;
  }
  .footer-container .footer-col .logo {
    font-size: 15px;
  }
  .footer-container .footer-col p {
    font-size: small;
  }
  .payments img {
    width: 40px;
  }
  .header h1 {
    font-size: 28px;
    text-align: center;
  }
}
.main-2 .main-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 0px 100px;
  height: 50vh;
  margin-bottom: 100px;
}
.main-2 .main-card .card1,
.main-2 .main-card .card2 {
  line-height: 1.5;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.201), rgba(50, 48, 48, 0.59)), url(../../img/image\ copy\ 16.png) center/cover no-repeat;
  transition: all 0.4s ease;
  cursor: pointer;
}
.main-2 .main-card .card1 button,
.main-2 .main-card .card2 button {
  margin-top: 50px;
  width: 30%;
  transition: all 0.3s ease;
}
.main-2 .main-card .card1 h1,
.main-2 .main-card .card2 h1 {
  font-size: 40px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.main-2 .main-card .card1:hover,
.main-2 .main-card .card2:hover {
  transform: translateY(-10px) scale(1.03);
  background-size: 100%;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}
.main-2 .main-card .card1:hover h1,
.main-2 .main-card .card2:hover h1 {
  color: rgb(8, 8, 174);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}
.main-2 .main-card .card1:hover button,
.main-2 .main-card .card2:hover button {
  background-color: transparent;
  color: rgb(8, 8, 174);
  transform: scale(1.05);
}
.main-2 .main-card .card2 {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.096), rgba(50, 48, 48, 0.59)), url(../../img/image\ copy\ 15.png) center/cover no-repeat;
}

@media (max-width: 1023px) {
  .main-2 .main-card {
    gap: 40px;
    padding: 0px 20px;
    height: 40vh;
  }
  .main-2 .main-card .card1 button,
  .main-2 .main-card .card2 button {
    width: 50%;
    font-size: 10px;
  }
  .main-2 .main-card .card1 h1,
  .main-2 .main-card .card2 h1 {
    font-size: 40px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  .main-2 .main-card .card1:hover,
  .main-2 .main-card .card2:hover {
    display: none;
  }
  .main-2 .main-card .card1:hover h1,
  .main-2 .main-card .card2:hover h1 {
    color: rgb(8, 8, 174);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  }
  .main-2 .main-card .card1:hover button,
  .main-2 .main-card .card2:hover button {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main-2 {
    height: 80vh;
  }
  .main-2 .main-card {
    gap: 20px;
    display: grid;
    grid-template-columns: auto;
  }
}
* {
  padding: 0px;
  margin: 0px;
}

body {
  font-family: "Montserrat", sans-serif;
}

.home {
  background: #F5F7FA;
}/*# sourceMappingURL=home.css.map */