@import url("https://fonts.googleapis.com/css2?family=Cairo&display=swap");
:root {
  --main-color: #3084d8;
  --dark: #16141c;
  --secondry-color: #f1f1f1;
  --light: #fff;
  --semi-black: #16191e;
}
body
{
    direction: rtl;
    background-color: #3084D8;
    font-family: "Cairo", sans-serif;
 
    margin-top: 80px;
}

a
{
    text-decoration: none;
}

.header-area {
    position: fixed;
    top: 0;
    right: 0;
    background: #16141c;
    width: 97%;
    padding: 0 20px;
    line-height: 40px;
    z-index: 999;
  }
  .header-container {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }
  .site-logo {
    padding: 22px 0px;
    font-size: 22px;
  }
  .site-logo p {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    padding: 15px;
    display: inline;
  }
  .site-logo span {
    color: var(--main-color);
  }
  .site-nav-menu {
    border: none !important;
    outline: none !important;
  }
  .primary-menu {
    list-style: none;
  }
  .primary-menu li {
    display: inline-block;
    margin: 21px 5px;
  }
  .primary-menu a {
    color: #fff;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 10px;
    transition: 0.5s;
    font-weight: 600;
  }
  .primary-menu a::before {
    transition: 0.4s ease-in-out;
    content: "";
    position: absolute;
    top: 0%;
    right: -1%;
    width: 0px;
    height: 2px;
    background-color: var(--main-color);
  }
  .primary-menu a::after {
    transition: 0.4s 0.2s ease-in-out;
    content: "";
    position: absolute;
    bottom: 0%;
    right: -1%;
    width: 0px;
    height: 2px;
    background-color: var(--main-color);
  }
  .primary-menu a:hover::before {
    width: 100%;
  }
  .primary-menu a:hover::after {
    width: 100%;
  }
  .primary-menu a:hover {
    background-color: #27242e;
    transition: 0.3s 0.8s;
    border-left: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    color: var(--main-color);
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav i {
    float: right;
    margin: 10px;
    padding: 10px;
    font-size: 24px;
    color: #fff;
    outline: none;
    cursor: pointer;
  }


.prices
{
   
    background-color: #FFFFFF;
    gap: 2%;
    margin: 2% auto 0;
    padding: 5%;
    width: 60%;
    

}
.prices .text-img
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}
.prices .text
{
    width: 65%;
}
.prices .text h1
{
    font-size: 40px;
}
.prices  .links
{
   
    display: flex;
    width: 410px;
    justify-content: space-between;
    margin: 5% auto;
}
.prices  .links button
{
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    background-color: #3084D8;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width:200px;

}
.prices .links a 
{
    text-decoration: none;

}
.prices .links a:visited
{
    color: currentColor;
}
.prices .image
{
    width: 235px;
    border-radius: 10px;
    align-self: center;
}
.prices .image img
{
    width: 100%;
}

@media  only screen and (max-width:750px)
{
    .prices{
        width:100%;
        padding:5% 0;
    }
    .prices .links
    {
        display: flex;
        width: 100%;
        justify-content: space-between;
        margin: 5% auto;
        flex-wrap: wrap;
        align-items: center;
        /* gap: 22px; */
        flex-direction: column;
        height: 135px;
    }
}



@media only screen and (max-width: 900px) {
    .site-nav-menu {
      float: none;
      position: absolute;
      background: #16141c;
      width: 100%;
      left: 0;
      top: 80px;
      padding: 30px 0px 150px 0px;
      border-top: 1px solid #4a4848;
      clip-path: circle(0% at 100% 0%);
      transition: all 0.8s;
    }
    site-logo p {
      font-size: 22px;
    }
    .primary-menu li {
      display: block;
      text-align: center;
      margin: 25px 5px;
    }
  
    .mobile-nav {
      display: block;
      margin-top: 10px;
    }
  
    .mobile-menu {
      clip-path: circle(112% at 100% 0%);
    }
    .swiper {
      width: 100%;
      overflow: hidden;
    }
    .features .card-wrapper {
      display: flex;
      flex-direction: row;
      width: 100%;
      justify-content: space-around;
      margin-top: 150px;
      flex-direction: column;
      margin-bottom: 250px;
    }
    .features .card-wrapper .card {
      width: 85%;
      margin: 50px auto;
    }
    .mainView .text {
      position: absolute;
      width: 100%;
      text-align: center;
      padding: 20px;
    }
    .mainView .text h2 {
      font-size: 35px;
    }
    .mainView .text p {
      font-size: 18px;
    }
  }
  