@charset "UTF-8";
/*=============== FONTS ===============*/
@font-face {
  font-family: "Tajawal-Regular";
  src: url("../fonts/Tajawal-Regular.ttf");
}
@font-face {
  font-family: "Tajawal-Medium";
  src: url("../fonts/Tajawal-Medium.ttf");
}
@font-face {
  font-family: "Tajawal-Bold";
  src: url("../fonts/Tajawal-Bold.ttf");
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tajawal-Regular", sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #000000;
  transition: 0.3s;
  /* For animation dark mode */
}

h1,
h2,
h3 {
  color: #000000;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  outline: none;
  border: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.grid {
  display: grid;
}

.section {
  padding: 4rem 0 4rem;
}

.section_title {
  position: relative;
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 35px;
  margin-bottom: 1rem;
  text-align: center;
}
.section_title span {
  color: #2CA46C;
}

.section_subtitle {
  font-family: "Tajawal-Medium", sans-serif;
  display: block;
  font-size: 22px;
  color: #000;
  text-align: center;
}
.section_subtitle span {
  color: #2CA46C;
}

.main {
  overflow: hidden;
  padding-top: 105px;
  /* For the animations ScrollReveal*/
}
.main .main-content-inner {
  padding-top: 106px;
}

/*=============== HEADER & NAV ===============*/
header.main-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 25px 0;
  z-index: 100;
  -webkit-box-shadow: 0 5px 8px rgba(114, 94, 94, 0.07);
  -moz-box-shadow: 0 5px 8px rgba(114, 94, 94, 0.07);
  box-shadow: 0 5px 8px rgba(114, 94, 94, 0.07);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header.main-header .inner-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header.main-header .inner-header .logo {
  max-width: 130px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .logo img {
  width: 100%;
}
header.main-header .inner-header .nav-links .nav-items {
  list-style: none;
  margin: 0;
}
header.main-header .inner-header .nav-links .nav-items > li {
  position: relative;
  font-family: "Tajawal-Medium", sans-serif;
  display: inline-block;
  color: #949CA9;
  font-size: 16px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links .nav-items > li a {
  position: relative;
  z-index: 2;
  padding: 14px 20px;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links .nav-items > li.active {
  font-family: "Tajawal-Bold", sans-serif;
}
header.main-header .inner-header .nav-links .nav-items a:hover {
  color: #000
}
header.main-header .inner-header .nav-links .nav-items > li.active a {
  color: #000000;
}
header.main-header .inner-header .nav-buttons a {
  display: inline-block;
  background-color: #2CA46C;
  border-radius: 10px;
  padding: 11px 27px;
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 14px;
  transition: all 300ms ease-in-out;
  text-align: center;
  height: 44px;
  line-height: 25px;
  margin-left: 15px;
}
header.main-header .inner-header .nav-buttons a.borderd {
  background-color: #fff;
  border: 1px solid #3E5757;
  color: #333030;
}
header.main-header .inner-header .nav-buttons a.filled {
  background-color: #2CA46C;
  color: #fff;
  min-width: 160px;
}
header.main-header .inner-header .nav-buttons a:last-child {
  margin-left: 0;
}
header.main-header .inner-header .nav-buttons a:hover {
  color: #ffffff;
  background: #fed04a;
  border-color: #fed04a;
}
header.main-header.fixed-header {
  background: white;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  padding: 15px 0;
}
header.main-header.fixed-header .inner-header .logo {
  max-width: 120px;
}
header.main-header.inside {
  position: relative;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}

@media (max-width: 567px) {
  header.main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    padding: 15px 0 !important;
  }
}
#m-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(54, 68, 87, 0.6);
  z-index: 2222222;
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
#m-menu.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
#m-menu .toggle-nav {
  position: absolute;
  top: 20px;
  left: 24%;
  cursor: pointer;
  z-index: 2222;
}
#m-menu .toggle-nav .fa,
#m-menu .toggle-nav i {
  color: #000000;
  font-size: 30px;
}
#m-menu .toggle-nav span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #0A2842;
  margin-bottom: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .toggle-nav span:nth-child(2) {
  width: 14px;
}
#m-menu .toggle-nav.active span:nth-child(2) {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  opacity: 0;
}
#m-menu .toggle-nav.active span:nth-child(1) {
  -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
  transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
}
#m-menu .toggle-nav.active span:nth-child(3) {
  -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
  transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
}
#m-menu .nav-items {
  width: 80%;
  height: 100%;
  min-height: 100vh;
  display: block;
  text-align: right;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
}
#m-menu .nav-items li {
  position: relative;
  font-family: "Tajawal-Medium", sans-serif;
  display: block;
  color: #000000;
  font-size: 17px;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .nav-items li.orderPriceBtn {
  margin: 0 25px;
}
#m-menu .nav-items li.orderPriceBtn a {
  background-color: #2CA46C;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
  text-align: center;
  transition: all 300ms ease-in-out;
}
#m-menu .nav-items li.orderPriceBtn a i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 5px;
}
#m-menu .nav-items li.orderPriceBtn a:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
#m-menu .nav-items li:last-child::after {
  display: none;
}
#m-menu .nav-items li:last-child .btn-custom.primary {
  box-shadow: none;
}
#m-menu .nav-items li .nav-link {
  position: relative;
  padding: 15px 30px;
  display: block;
  color: inherit;
  text-align: right;
  z-index: 2;
}
#m-menu .nav-items li .nav-link.nav_button {
  background-color: #2CA46C;
  border-radius: 10px;
  padding: 14px 30px;
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 15px;
  transition: all 300ms ease-in-out;
  text-align: center;
  height: 50px;
  line-height: 25px;
  margin: 5px 20px;
}
#m-menu .nav-items li .nav-link.nav_button.borderd {
  background-color: #fff;
  border: 1px solid #3E5757;
  color: #333030;
}
#m-menu .nav-items li .nav-link.nav_button.filled {
  background-color: #2CA46C;
  color: #fff;
  min-width: 160px;
}
#m-menu .nav-items li:hover {
  color: #000000;
}
#m-menu .nav-items li:hover::after {
  width: 100%;
}
#m-menu .nav-items li.logo .nav-link {
  display: inline-block !important;
}
#m-menu .social {
  padding: 15px 30px;
  text-align: right;
}
#m-menu .social a {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50px;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  margin-left: 5px;
  background-color: #f6f7fd;
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .social a:last-child {
  margin-left: 0;
}
#m-menu .social a:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 1200px) {
  header .toggle-nav {
    display: none;
  }
}
@media (max-width: 1200px) {
  header nav,
header .social ul,
header .nav-buttons {
    display: none;
  }
  header .toggle-nav {
    margin-top: 0;
    line-height: 0;
    margin-left: 0px;
  }
  header .toggle-nav .toggle-btn {
    background: none;
    border: none;
    outline: 0;
    direction: ltr;
  }
  header .toggle-nav .toggle-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #2CA46C;
    margin-bottom: 5px;
    border-radius: 10px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  header .toggle-nav .toggle-btn span:nth-child(1) {
    width: 14px;
  }
  header .toggle-nav .toggle-btn.active span:nth-child(2) {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  header .toggle-nav .toggle-btn.active span:nth-child(1) {
    -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
    transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
  }
  header .toggle-nav .toggle-btn.active span:nth-child(3) {
    -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
    transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
  }
  header .toggle-nav .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    -webkit-transform: translateX(270px);
    transform: translateX(270px);
    -webkit-box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
  header .toggle-nav .mobile-menu .mobile-menu-items {
    background-color: #ffffff;
    margin: 0;
    width: 270px;
    height: 100%;
    overflow: auto;
    list-style: none;
    padding: 0;
  }
  header .toggle-nav .mobile-menu-items li {
    padding: 15px 23px;
    border-bottom: 1px solid #f1f1f1;
    font-family: "Tajawal-Regular", sans-serif;
    color: #3C2663;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
  }
  header .toggle-nav .mobile-menu-items li a {
    color: inherit;
    text-decoration: none;
  }
  header .toggle-nav .mobile-menu-items li a.myaccount i {
    margin-left: 10px;
  }
  header .toggle-nav .mobile-menu-items li.lang .nice-select {
    float: none;
    text-align: right !important;
  }
  header .toggle-nav .mobile-menu-items li.lang .nice-select .list {
    width: 100%;
  }
  header .toggle-nav .mobile-menu.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
}
/*=============== HOME ===============*/
.home {
  position: relative;
}
.home .home-inner {
  display: flex;
  align-items: center;
  background-color: #F1F6F9;
  border-radius: 50px;
  overflow: hidden;
}
.home .home-inner .home_contnet {
  position: relative;
  z-index: 22;
  padding: 3rem 2rem;
  width: 50%;
}
.home .home-inner .home_contnet h1 {
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 38px;
  color: #061835;
  margin-bottom: 30px;
}
.home .home-inner .home_contnet p {
  font-family: "Tajawal-Regular", sans-serif;
  color: #686F7E;
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 35px;
  min-height: 35px;
}
.home .home-inner .home_contnet a {
  display: inline-block;
  background-color: #2CA46C;
  border-radius: 10px;
  padding: 14px 25px;
  font-size: 17px;
  font-family: "Tajawal-Medium", sans-serif;
  color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
  transition: all 300ms ease-in-out;
}
.home .home-inner .home_contnet a i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 5px;
}
.home .home-inner .home_contnet a:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
.home .home-inner .home_contnet .signNowForm {
  display: flex;
  align-content: center;
  width: 100%;
}
.home .home-inner .home_contnet .signNowForm .input {
  background-color: #FFFFFF;
  flex: 0.8;
  height: 60px;
  text-align: right;
  padding: 0 20px;
  border-radius: 22px;
  color: #A6A7A7;
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 16px;
}
.home .home-inner .home_contnet .signNowForm .button-submit {
  background-color: #2CA46C;
  border-radius: 22px;
  font-size: 16px;
  color: #fff;
  font-family: "Tajawal-Medium", sans-serif;
  margin-right: 20px;
  height: 100%;
  display: inline-block;
  height: 60px;
  min-width: 200px;
}
.home .home-inner .home_contnet .signNowForm .button-submit:hover {
  color: #ffffff;
  background: #fed04a;
  border-color: #fed04a;
}
.home .home-inner .home_image {
  width: 50%;
}
.home .home-inner .home_image img {
  max-width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .home .home-inner {
    flex-flow: column;
  }
  .home .home-inner .home_contnet {
    width: 100%;
  }
  .home .home-inner .home_image {
    width: 100%;
  }
}

/*=============== Numbers ===============*/
.some-numbers .item {
  position: relative;
  background-color: rgba(44, 164, 108, 0.15);
  border-radius: 25px;
  padding: 1.5rem 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  height: calc(100% - 1.5rem);
}
.some-numbers .item .icon {
  margin-bottom: 20px;
}
.some-numbers .item h3 {
  color: #262D37;
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1;
}
.some-numbers .item h4 {
  font-size: 22px;
  margin-bottom: 0;
}
.some-numbers .item::before {
  content: "h";
  position: absolute;
  top: -30px;
  left: 10px;
  font-size: 140px;
  color: #89E798;
  opacity: 0.09;
  pointer-events: none;
  font-family: "Tajawal-Medium", sans-serif;
}
@media (max-width: 991px) {
  .some-numbers .item {
    margin-bottom: 1.5rem;
  }
}

/*=============== About Hasibly ===============*/
.about-hasibly .video-show {
  margin-top: 4rem;
}
.about-hasibly .video-show .plyr__poster {
  background-color: #fff;
}
.about-hasibly .video-show .plyr {
  margin-bottom: 15px;
}
.about-hasibly .video-show .plyr--video .plyr__controls {
  display: none;
}
.about-hasibly .video-show .plyr__control--overlaid {
  background-color: #FED04A;
  width: 100px;
  height: 100px;
  outline: 20px solid rgba(255, 255, 255, 0.2);
}
.about-hasibly .video-show .plyr__control--overlaid svg {
  left: 0;
  margin: 0 auto;
}
.about-hasibly .sign-now {
  background: linear-gradient(to left, #0a3c42 0%, #07512f 27.6%, #fed04a 100%, #89e798 100%);
  border-radius: 30px;
  padding: 70px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.about-hasibly .sign-now h3 {
  color: #fff;
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 30px;
  margin-bottom: 15px;
}
.about-hasibly .sign-now p {
  color: #fff;
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 19px;
  margin-bottom: 0;
}
.about-hasibly .sign-now .signBtn {
  display: inline-block;
  background-color: #fff;
  border-radius: 10px;
  padding: 14px 30px;
  color: #060D07;
  min-width: 180px;
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 17px;
  transition: all 300ms ease-in-out;
  text-align: center;
  height: 60px;
  line-height: 40px;
  margin-right: auto;
}
.about-hasibly .sign-now .signBtn:hover {
  color: #ffffff;
  background: #fed04a;
  border-color: #fed04a;
}
@media (max-width: 767px) {
  .about-hasibly .sign-now {
    padding: 30px;
    display: block;
    text-align: center;
  }
}

/*=============== Features ===============*/
.features .features-items .item h3 {
  font-family: "Tajawal-Bold";
  font-size: 25px;
  color: #212D27;
  margin-bottom: 20px;
}
.features .features-items .item p {
  font-family: "Tajawal-Medium";
  color: #727578;
  font-size: 20px;
  margin-bottom: 0;
}
.features .features-items .image img {
  max-width: 80%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .features .features-items .item {
    text-align: center;
  }
  .features .features-items .row:nth-child(1) {
    flex-direction: column-reverse;
  }
  .features .features-items .row:nth-child(3) {
    flex-direction: column-reverse;
  }
}

/*=============== Why Us ===============*/
.why-us {
  position: relative;
}
.why-us .swiper-container {
  margin-top: 100px;
  overflow-x: hidden;
}
.why-us .slide-item {
  display: flex;
  align-items: center;
}
.why-us .slide-item .content {
  display: flex;
  /* background-color: #196D3E; */
  background: linear-gradient(to left, #0a3c42 0%, #07512f 20%, #fed04a 190%, #89e798 100%);

  border-radius: 40px;
  padding: 4rem 3rem;
  width: 60%;
  min-height: 472px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.why-us .slide-item .content .icon {
  margin-bottom: 30px;
}
.why-us .slide-item .content .icon img {
  max-width: 50px;
}
.why-us .slide-item .content h3 {
  font-family: "Tajawal-Bold";
  color: #fff;
  font-size: 35px;
  margin-bottom: 20px;
}
.why-us .slide-item .content p {
  font-family: "Tajawal-Medium";
  color: #fff;
  font-size: 17px;
  margin-bottom: 20px;
}
.why-us .slide-item .content ul {
  padding: 10px;
}
.why-us .slide-item .content ul li {
  position: relative;
  font-family: "Tajawal-Medium";
  color: #fff;
  font-size: 17px;
  padding: 5px 0;
}
.why-us .slide-item .content ul li::before {
  content: " ";
  width: 7px;
  height: 7px;
  display: inline-block;
  background-color: #89E798;
  border-radius: 50px;
  margin-left: 10px;
}
.why-us .slide-item .image-slide {
  width: 40%;
  position: relative;
  right: -50px;
  /* box-shadow: 5px 5px rgba(255, 245, 207, 0.633); */
  /* background: linear-gradient(-45deg, #ffeebd 0%, #fff5cf 1% ) */
}
.why-us .swiper-horizontal > .swiper-pagination-bullets, .why-us .swiper-pagination-bullets.swiper-pagination-horizontal, .why-us .swiper-pagination-custom, .why-us .swiper-pagination-fraction {
  bottom: 80px;
  left: auto;
  width: 100%;
  padding: 0 30px 0 0;
  /* right: 110px; */
  text-align: right;
}
.why-us .swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
  opacity: 1;
}
.why-us .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FED04A;
}

/*===============  Packages  ===============*/
.packages {
  /* Highlighted column */
  /**/
}
.packages .package-scrollable {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}
.packages .price-table {
  width: 100%;
  border-collapse: collapse;
  border: 0 none;
  margin-top: 4rem;
}
.packages .price-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.packages .price-table tr td {
  font-family: "Tajawal-Medium";
  border-left: 1px solid #D6E3D6;
  padding: 15px 24px;
  font-size: 16px;
  color: #061835;
}
.packages .price-table tr:nth-child(1) td {
  padding-top: 50px;
  border-top-right-radius: 35px;
  border-top-left-radius: 35px;
}
.packages .price-table tr:last-child td {
  border-bottom-right-radius: 35px;
  border-bottom-left-radius: 35px;
}
.packages .price-table tr td:nth-child(2) {
  border-left: 0;
}
.packages .price-table tr td:nth-child(3) {
  border-left: 0;
}
.packages .price-table tr td:not(:first-child) {
  text-align: center;
}
.packages .price-table tr:nth-child(odd) {
  background-color: #F6F9FC;
}
.packages .price-table tr:nth-child(even) {
  background-color: #FFFFFF;
}
.packages .price-table .fa-check {
  color: #5336ca;
}
.packages .price-table .fa-times {
  color: #D8D6E3;
}
.packages .fi-rr-check {
  width: 25px;
  height: 25px;
  font-size: 10px;
  background: #2CA46C;
  text-align: center;
  line-height: 33px;
  border-radius: 50px;
  display: inline-block;
  color: #fff;
}
.packages .fi-rr-minus {
  width: 25px;
  height: 25px;
  font-size: 10px;
  background: #E2E6E4;
  text-align: center;
  line-height: 33px;
  border-radius: 50px;
  display: inline-block;
  color: #A6A7A7;
}
.packages .price-table tr:nth-child(2n) td:nth-child(3) {
  background: linear-gradient(to left, #0a3c42 0%, #07512f 20%, #fed04a 190%, #89e798 100%);
  color: #fff;
}
.packages .price-table tr:nth-child(2n) td:nth-child(3) .package-name, .packages .price-table tr:nth-child(2n) td:nth-child(3) .packagePrice {
  color: #fff;
}
.packages .price-table tr:nth-child(2n) td:nth-child(3) .fi-rr-check {
  background-color: #fff;
  color: #2CA46C;
}
.packages .price-table tr:nth-child(2n) td:nth-child(3) .fi-rr-minus {
  background-color: #fff;
  color: #A6A7A7;
}
.packages .price-table tr td:nth-child(3) {
  background: linear-gradient(to left, #0a3c42 0%, #07512f 20%, #fed04a 190%, #89e798 100%);
  padding: 8px 48px;
  color: #fff;
}
.packages .price-table tr td:nth-child(3) .package-name, .packages .price-table tr td:nth-child(3) .packagePrice {
  color: #fff;
}
.packages .price-table tr td:nth-child(3) .package-name span, .packages .price-table tr td:nth-child(3) .packagePrice span {
  color: #fff;
}
.packages .price-table tr td:nth-child(3) .fi-rr-check {
  background-color: #fff;
  color: #2CA46C;
}
.packages .price-table tr td:nth-child(3) .fi-rr-minus {
  background-color: #fff;
  color: #A6A7A7;
}
.packages .price-table tr td:nth-child(3) .fa-check,
.packages .price-table tr:nth-child(2n) td:nth-child(3) .fa-check {
  /* color: #ffffff; */
}
.packages .price-table tr.price-table-head td {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.packages .price-table tr.price-table-head {
  background-color: #5336ca;
  color: #FFFFFF;
}
.packages .price-table td.price {
  color: #f43f54;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 600;
}
.packages .price-table td.price a {
  font-family: "Tajawal-Medium";
  background-color: #FFFFFF;
  color: #060D07;
  padding: 12px 40px 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #2CA46C;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 10px;
}
.packages .price-table td.price-table-popular {
  border-top: 3px solid #5336ca;
  color: #5336ca;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 48px;
  font-weight: 700;
}
.packages .price-table .price-blank {
  background-color: #fafafa;
  border: 0 none;
}
.packages .price-table svg {
  width: 90px;
  margin-bottom: 20px;
}
.packages .price {
  position: relative;
  top: 1px;
}
.packages .price .star {
  position: absolute;
  top: 0;
  right: 10px;
}
.packages .package-name {
  font-family: "Tajawal-Bold";
  font-size: 20px;
  color: #061835;
}
.packages .packagePrice {
  font-family: "Tajawal-Bold";
  font-size: 19px;
  color: #061835;
}
.packages .packagePrice .green {
  color: #2CA46C;
}
.packages .start-slogan {
  font-family: "Tajawal-Bold";
  color: #061835;
  font-size: 27px;
}
.packages .start-slogan p {
  font-size: 16px;
  color: #061835;
}
.packages .start-slogan p span {
  color: #2CA46C;
}
.packages .toggle-switch {
  cursor: pointer;
  background-color: #E6F8ED;
  display: inline-block;
  border: 0;
  padding-left: 0;
  padding-right: 0;
}
.packages .toggle-switch input {
  display: none;
}
.packages .toggle-switch,
.packages .toggle-switch span {
  border-radius: 35px;
  border-style: solid;
  border-color: transparent;
}
.packages .toggle-switch span {
  border-width: 2px;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #686F7E;
  font-size: 13px;
}
.packages .toggle-switch input:checked + span + span,
.packages .toggle-switch input + span {
  border-color: #2CA46C;
  background-color: #2CA46C;
  color: #fff;
}
.packages .toggle-switch input + span + span,
.packages .toggle-switch input:checked + span {
  background-color: transparent;
  border-color: transparent;
  color: #686F7E;
}
.packages .coreAnnuallyPrice {
  display: none;
}

/*=============== Services ===============*/
.services {
  background-image: url(../img/services-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.services .section_title {
  color: #fff;
}
.services .section_title span {
  color: #FED04A;
}
.services .section_subtitle {
  color: #fff;
}
.services .services-items {
  margin-top: 4rem;
}
.services .services-items .item {
  display: block;
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 5rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  height: calc(100% - 2rem);
  transition: all 300ms ease-in-out;
  box-shadow: 0 3px 6px rgba(137, 231, 152, 0.27);
}
.services .services-items .item.all {
  background-color: #FED04A;
}
.services .services-items .item.all h3 {
  color: #fff;
}
.services .services-items .item .icon {
  margin-bottom: 20px;
}
.services .services-items .item .icon img {
  max-width: 130px;
  display: block;
  margin: 0 auto;
}
.services .services-items .item h3 {
  font-family: "Tajawal-Medium";
  font-size: 22px;
  color: #070606;
  margin-bottom: 0;
  line-height: 1.5;
}

.services .services-items .item:hover {
    /* background-color: #FED04A; */
}

.services .services-items .item .icon img:nth-child(2) {
    display: none;
}
.services .services-items .item:hover .icon img:nth-child(2) {
    display: block;
}

.services .services-items .item:hover .icon img:nth-child(1) {
    display: none;
}
/*=============== Questions ===============*/
.questions .questions-wrap {
  margin-top: 40px;
}
.questions .questions-wrap .accordion-item {
  margin-bottom: 0px;
  border: 0;
  border-bottom: 1px solid #D8D8D8;
  border-radius: 0px;
}
.questions .questions-wrap .accordion-item:last-child {
  border-bottom: 0;
}
.questions .questions-wrap .accordion-button {
  padding: 1.3rem 1rem;
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 18px;
  border-radius: 10px;
  color: #142431;
  background-color: #fff;
  outline: none;
  box-shadow: none;
}
.questions .questions-wrap .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 50px;
}
.questions .questions-wrap .accordion-body {
  padding: 1rem 1rem;
  font-size: 17px;
  background-color: #fff;
  color: #949CA9;
  line-height: 27px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.questions .questions-wrap .accordion-button:not(.collapsed) {
  background-color: #fff;
  outline: none;
  box-shadow: none;
  border-radius: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.questions .questions-wrap .accordion-button:not(.collapsed)::before {
  background-image: none;
  content: "";
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #2CA46C;
  background: #F1F6F9;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  line-height: 35px;
  text-align: center;
  font-size: 22px;
  transform: rotate(360deg);
}
.questions .questions-wrap .accordion-button::before {
  background-image: none;
  content: "";
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #2CA46C;
  background: #F1F6F9;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  line-height: 35px;
  text-align: center;
  font-size: 22px;
  margin-left: 20px;
}
.questions .questions-wrap .accordion-button::after {
  display: none;
}
.questions .more-faq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 2rem;
}
.questions .more-faq a {
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 18px;
  color: #2CA46C;
}
.questions .more-faq p {
  font-family: "Tajawal-Medium", sans-serif;
  margin-bottom: 0;
}
.questions .more-faq p a {
  text-decoration: underline;
  text-decoration-color: #2CA46C;
}
@media (max-width: 767px) {
  .questions .more-faq {
    flex-direction: column;
    gap: 20px;
  }
}

/*=============== Clients Reviews ===============*/
.clients-reviews .swiper {
  margin-top: 3rem;
  overflow: visible;
}
.clients-reviews .swiper .swiper-button-next, .clients-reviews .swiper .swiper-button-prev {
  color: #fff;
}
.clients-reviews .swiper .swiper-button-next:after, .clients-reviews .swiper .swiper-button-prev:after {
  font-size: 20px;
  background-color: #2CA46C;
  min-width: 60px;
  height: 60px;
  border-radius: 24px;
  text-align: center;
  line-height: 60px;
}
.clients-reviews .swiper .swiper-button-prev {
  right: -35px;
}
.clients-reviews .swiper .swiper-button-next {
  left: -35px;
}
.clients-reviews .item {
  background-color: #FFF9F2;
  border-radius: 33px;
  padding: 2rem;
}
.clients-reviews .item .img {
  margin-bottom: 20px;
}
.clients-reviews .item .img img {
  max-width: 100px;
}
.clients-reviews .item h3 {
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 22px;
  color: #262D37;
}
.clients-reviews .item h4 {
  color: #FED04A;
  font-size: 18px;
  margin-bottom: 20px;
}
.clients-reviews .item p {
  color: #5E5E5E;
  font-size: 18px;
  margin-bottom: 0;
}

/*=============== Clients Logos ===============*/
.clients-logos .logos-items {
  display: flex;
  justify-content: center;
  flex-flow: row-reverse;
  margin-top: 50px;
}
.clients-logos .logos-items img {
  width: 13%;
  aspect-ratio: 3/2;
  object-fit: contain;
}
.clients-logos .sign-now {
  background: linear-gradient(to left, #0a3c42 0%, #07512f 27.6%, #fed04a 100%, #89e798 100%);
  border-radius: 50px;
  padding: 4rem 3rem;
  margin-top: 4rem;
}
.clients-logos .sign-now h3 {
  color: #fff;
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 30px;
  margin-bottom: 15px;
}
.clients-logos .sign-now p {
  color: #fff;
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 19px;
  margin-bottom: 0;
}
.clients-logos .sign-now .signBtn {
  display: inline-block;
  background-color: #fff;
  border-radius: 10px;
  padding: 14px 30px;
  color: #060D07;
  min-width: 180px;
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 17px;
  transition: all 300ms ease-in-out;
  text-align: center;
  height: 60px;
  line-height: 39px;
}

.clients-logos .sign-now .signBtn:hover {
    color: #ffffff;
    background: #fed04a !important;
    border-color: #fed04a !important;
}
/*=============== Footer ===============*/
.footer {
  padding-bottom: 0;
  background-color: #fff;
  border-top: 1px solid #A6A7A7;

}
.footer .footer-content {
  padding: 0 0 20px 0;
}
.footer .footer-content .about {
    display: inline-block;
    margin-left: 20px;
  margin-bottom: 20px;
}
.footer .footer-content .about img {
  max-width: 140px;
  margin-bottom: 20px;
}
.footer .footer-content .about p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
  line-height: 30px;
}
@media (min-width: 576px) {
  .footer .footer-content .about p {
    max-width: 400px;
  }

}

@media(max-width: 576px) {
    .footer .footer-content .about {
        display: block;
      }
}

.footer .footer-content h3 {
  position: relative;
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 19px;
  color: #262D37;
  margin-bottom: 1rem;
}
.footer .footer-content h3::before {
  content: " ";
  width: 5px;
  height: 5px;
  background-color: #89E798;
  border-radius: 50px;
  margin-left: 10px;
  display: inline-block;
}
.footer .footer-content .links ul {
  padding: 0;
  margin: 0;
}
.footer .footer-content .links ul li {
  min-height: 70px;
  padding: 0px 0 20px 0;
  display: flex;
  align-items: center;
}
.footer .footer-content .links ul li::before {
  content: " ";
  width: 5px;
  height: 5px;
  background-color: #89E798;
  border-radius: 50px;
  margin-left: 10px;
}
.footer .footer-content .links ul a {
  position: relative;
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 17px;
  color: #262D37;
  display: block;
}
.footer .footer-content .links.address li {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #262D37;
  font-family: "Tajawal-Medium", sans-serif;
}
.footer .footer-content .links.address li::before {
  display: none;
}
.footer .footer-content .links.address li .icon {
  width: 45px;
  height: 45px;
  background-color: #F0F9F5;
  border-radius: 50px;
  color: #2CA46C;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.footer .footer-content .links.address li .icon i {
  line-height: 0;
}
.footer .footer-content .signNowForm .input {
  background-color: #FFFFFF;
  width: 240px;
  height: 55px;
  text-align: right;
  padding: 0 20px;
  border-radius: 12px;
  color: #A6A7A7;
  border: 1px solid #A6A7A7;
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 16px;
}
.footer .footer-content .signNowForm .button-submit {
  background-color: #2CA46C;
  border-radius: 12px;
  font-size: 16px;
  color: #fff;
  font-family: "Tajawal-Medium", sans-serif;
  margin-right: 10px;
  padding: 0 15px;
  height: 100%;
  width: 120px;
  display: inline-block;
  height: 55px;
}
.footer .footer-copyrights {
  padding: 30px 0;
  /* border-top: 1px solid #A6A7A7; */
}
.footer .footer-copyrights .copyrights p {
  font-family: "Tajawal-Medium", sans-serif;
  font-size: 18px;
  color: #262D37;
  margin-bottom: 0;
  text-align: center;
}
.footer .footer-copyrights ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-copyrights ul li {
  display: inline-block;
  margin-left: 15px;
  transition: all 300ms ease-in-out;
}
.footer .footer-copyrights ul li a {
  font-size: 14px;
  position: relative;
  color: #111111;
  transition: all 300ms ease-in-out;
}
.footer .footer-copyrights ul li:last-child {
  margin-left: 0;
}
.footer  .social  {
    display: inline-block;
}
.footer  .social ul {
  list-style: none;
  margin: 0px 0 0 0;
  padding: 0;
}
.footer  .social li {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}
.footer  .social li a {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 50px;
    font-size: 26px;
    text-align: center;
    background-color: #fff;
    color: #2CA46C;
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

/*=============== Forms ===============*/
.form-group {
  margin-bottom: 30px;
}
.form-group input {
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: right;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}
.form-group input::placeholder {
  color: #777E90;
}
.form-group input[type=submit] {
  background-color: #2CA46C;
  color: #fff;
  width: 100%;
  text-align: center;
  font-family: "Tajawal-Medium", sans-serif;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group textarea {
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: right;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}
.form-group textarea::placeholder {
  color: #777E90;
}

.nice-select {
  width: 100%;
  text-align: right !important;
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 12px;
  height: 53px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  line-height: 53px;
  padding-right: 20px;
  padding-left: 30px;
  float: none !important;
}
.nice-select .list {
  width: 100%;
  text-align: right;
}
.nice-select .option {
  text-align: right;
}
.nice-select::after {
  right: auto;
  left: 12px;
}

.modal-backdrop {
  background: rgba(54, 68, 87, 0.6);
}

/*=============== BREAKPOINTS ===============*/
@media (max-width: 1200px) {
  header.main-header {
    padding: 15px 0px;
  }
  header.main-header .inner-header .logo {
    max-width: 120px;
  }
  header .toggle-nav {
    margin-left: 12px;
  }

  .main {
    padding-top: 0px;
  }
}
@media (max-width: 991px) {
  .why-us .slide-item .content {
    padding: 2rem 2rem;
    width: 100%;
  }

  .image-slide {
    display: none;
  }
}
@media (max-width: 576px) {
  .main {
    padding-top: 0;
  }

  .section {
    padding: 3rem 0;
  }

  .home .home-inner .home_contnet p {
    font-size: 12px;
  }
  .home .home-inner .home_contnet .signNowForm .input {
    min-width: auto;
    border-radius: 10px;
  }
  .home .home-inner .home_contnet .signNowForm .button-submit {
    min-width: auto;
    margin-right: 5px;
    padding: 0 20px;
    border-radius: 10px;
  }

  .section_title {
    font-size: 25px;
  }

  .section_subtitle {
    font-size: 17px;
  }
  .section_subtitle br {
    display: none;
  }

  .about-hasibly .video-show .plyr__control--overlaid {
    width: 50px;
    height: 50px;
  }

  .about-hasibly .sign-now {
    padding: 3rem 2rem;
  }
  .about-hasibly .sign-now h3 {
    font-size: 18px;
  }
  .about-hasibly .sign-now p {
    font-size: 14px;
  }
  .about-hasibly .sign-now p br {
    display: none;
  }
  .about-hasibly .sign-now .signBtn {
    height: 50px;
    line-height: 27px;
    display: block;
    margin: 20px auto 0;
  }

  .features .features-items .item h3 {
    font-size: 20px;
  }
  .features .features-items .item p {
    font-size: 15px;
  }
  .features .features-items .item p br {
    display: none;
  }

  .why-us .slide-item .content {
    padding: 2rem 2rem;
    width: 100%;
    text-align: center;
  }
  .why-us .slide-item .content .icon {
    margin: 0 auto 30px;
  }
  .why-us .slide-item .content h3 {
    font-size: 22px;
  }
  .why-us .slide-item .content p {
    font-size: 14px;
  }
  .why-us .slide-item .content ul li {
    font-size: 14px;
  }

  .services .services-items .item {
    padding: 3rem 1.5rem;
  }

  .clients-reviews .swiper .swiper-button-next {
    left: 0;
  }

  .clients-reviews .swiper .swiper-button-prev {
    right: 0;
  }

  .clients-logos .logos-items img {
    width: 18%;
  }

  .clients-logos .sign-now {
    padding: 3rem 2rem;
  }
  .clients-logos .sign-now h3 {
    font-size: 18px;
  }
  .clients-logos .sign-now p {
    font-size: 14px;
  }
  .clients-logos .sign-now p br {
    display: none;
  }
  .clients-logos .sign-now .signBtn {
    height: 50px;
    line-height: 27px;
    display: block;
    margin: 20px auto 0;
  }

  .footer {
    padding-bottom: 0 !important;
  }
  .footer .social {
    margin-bottom: 20px;
    text-align: center;
  }
  .footer .links {
    margin: 30px 0;
  }
  .footer .links.address {
    margin-top: 0;
    margin-bottom: 0;
  }
  .footer .links.address li {
    min-height: auto;
  }
  .footer .copyrights {
    text-align: center;
  }
}
.packages-prices-list {
  /* padding: 0 0px 10px; */
  margin-top: 2rem;
  border: solid 1px #D6E3D6;
  border-radius: 30px;
  overflow: hidden;
}

.pkg-details-item {
  display: flex;
}

.pkg-details-item .features {
  width: 285px;
  flex: 0 0 auto;
  padding: 14px 25px !important;
  text-align: initial;
}

.pkg-details-info-item {
  flex: 1;
  font-size: 16px;
  font-family: "Tajawal-Medium";
  color: #061835;
  text-align: center;
}

.package-item-header {
  padding: 25px 0 30px;
  position: relative;
  margin-bottom: 0px;
  border-left: 1px solid #D6E3D6;
}

.package-item-header img {
  margin-bottom: 30px;
}

.package-item-header .pkg-icon {
  margin-bottom: 20px;
}
.package-item-header .pkg-icon svg {
  width: 90px;
}

.package-item-header .pkg-name {
  font-family: "Tajawal-Bold";
  font-size: 20px;
  color: #061835;
}

.package-item-header .pkg-price {
  font-family: "Tajawal-Bold";
  font-size: 19px;
  color: #061835;
  margin-bottom: 20px;
}

.package-item-header .pkg-price.free {
  font-size: 18px;
  color: #FFB45A;
}

.package-item-header .pkg-price b {
  font-size: 18px;
  font-weight: 500;
  margin-left: 4px;
}

.package-item-header .pkg-price small {
  font-size: inherit;
  text-decoration: line-through;
}

.package-item-header .pkg-price .year-price {
  font-size: 13px;
  margin-top: 4px;
}

.packages-buttons {
  align-items: center;
}

.pkg-button {
  font-family: "Tajawal-Medium";
  background-color: #FFFFFF;
  color: #060D07;
  padding: 12px 40px 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #2CA46C;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 10px;
}

.package-item-header.featured .pkg-button {
  background: #fff;
  border-color: #fff;
}

.pkg-button:hover {
  color: #ffffff;
  background: #2CA46C !important;
  border-color: #2CA46C !important;
}

.package-item-header.featured .pkg-name, .package-item-header.featured .pkg-price {
  color: #fff;
}

.package-items-title {
  color: #061835;
  font-family: "Tajawal-Medium";
  font-size: 16px;
  font-weight: 700;
}

.packages-feature-item .pkg-details-info-item {
  font-family: "Tajawal-Medium";
  font-size: 16px;
  padding: 14px 20px;
  border-left: 1px solid #D6E3D6;
}

.packages-buttons .pkg-details-info-item {
  padding: 20px;
}

.pkg-details-item .pkg-details-info-item:nth-child(3) {
  background: linear-gradient(to left, #0a3c42 0%, #07512f 20%, #fed04a 190%, #89e798 100%);
  color: #fff;
}
.pkg-details-item .pkg-details-info-item:nth-child(3) .fi-rr-check {
  background: #fff;
  color: #2CA46C;
}

.pkg-details-item:last-child .pkg-details-info-item:nth-child(3) {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.pkg-details-item:nth-child(odd) {
  background-color: #F6F9FC;
}

.pkg-feature-title {
  font-size: 15px;
  font-weight: 500;
  color: #14274E;
}

.pkg-feature-subtitle {
  font-size: 11px;
  font-weight: 400;
  color: #8F96A1;
  margin-top: 7px;
  line-height: 18px;
}

.package-item-header.featured {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  background: linear-gradient(to left, #0a3c42 0%, #07512f 20%, #fed04a 190%, #89e798 100%);
}
.package-item-header.featured .star {
  position: absolute;
  top: 0;
  right: 10px;
}

.pkg-details-info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: #60D898;
  border-radius: 100%;
  margin: 0 auto;
}

.pro-packages {
  margin-bottom: 90px;
}

.pro-stats-section {
  margin-bottom: 90px;
}

.package-item-header.features.pkg-details-info-item {
  /* padding: 25px 0 40px !important; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pkg-details-danger-item .icon {
  background: #d0d0d0;
}

.pkg-period-wrap {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 206px;
  padding: 5px 6px;
  background-color: #E6F8ED;
  border-radius: 50px;
  position: relative;
}

.pkg-period-item {
  flex: 1;
  height: 40px;
  display: inline-flex;
  align-content: center;
  justify-content: center;
}

.pkg-period-item input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.pkg-period-item label {
  height: 40px;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  margin: 0;
  font-size: 13px;
  color: #686F7E;
  font-weight: 500;
  padding: 12px 0;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s;
  width: 100%;
}

.pkg-period-wrap .discount {
  position: absolute;
  top: -25px;
  left: 20px;
  font-size: 13px;
  color: #FFB45A;
  font-weight: 500;
}

.pkg-period-item input:checked + label {
  border-color: #2CA46C;
  background-color: #2CA46C;
  color: #fff;
}

.packages-prices-list.fixed .packages-list-header {
  position: fixed;
  background: #fff;
  top: 70px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  /* margin-right: -40px;
  padding: 0 40px; */
}

.packages-prices-list.fixed {
  padding-top: 280px;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .pro-features-slider {
    margin-bottom: 30px;
  }

  .cert-wrap {
    padding: 40px 20px;
  }

  .pro-call-action h3 {
    font-size: 18px;
  }

  .pro-call-action p {
    font-size: 14px;
  }

  .cert-wrap img {
    margin-left: 10px;
  }

  .cert-wrap a {
    flex: 0 0 auto;
  }

  .packages-prices-list.website .features.pkg-details-info-item {
    width: 100%;
    text-align: center;
  }

  .packages-prices-list.website .packages-list-header .features.pkg-details-info-item {
    padding: 0 !important;
    border: none;
    align-items: center;
  }

  .pkg-period-wrap {
    margin-bottom: 1.5rem;
  }

  .pkg-details-item .pkg-details-info-item:nth-child(3) {
    background: transparent;
  }

  .package-item-header.featured .pkg-name, .package-item-header.featured .pkg-price {
    color: #061835;
  }

  .pkg-details-item .pkg-details-info-item:nth-child(3) {
    color: #061835;
  }

  .package-item-header.featured .star {
    top: -10px;
  }
  .package-item-header.featured .star svg {
    width: 20px;
  }

  .packages-prices-list.website .pkg-details-item {
    flex-wrap: wrap;
    text-align: center;
  }

  .pkg-details-info-item:not(.features) {
    width: 25%;
    flex: 0 0 auto;
  }

  .packages-prices-list.website .pkg-details-info-item.featured:not(.package-item-header) {
    background: initial;
  }

  .packages-prices-list.website .pkg-details-info-item.featured:not(.package-item-header) .pkg-button {
    border-color: #7755E2;
    color: #7755E2;
  }

  .packages-prices-list.website .pkg-details-info-item.featured:not(.package-item-header) .pkg-button:hover {
    background: #7755E2;
    color: #ffffff;
  }

  .packages-prices-list.website .pkg-details-info-item.featured:not(.package-item-header) path {
    fill: #041637;
  }

  .packages-prices-list.website .pkg-details-info-item.featured:not(.package-item-header) .ask-consultation {
    color: #4EC7A2;
  }

  .packages-prices-list.website .package-item-footer.featured.package-item-footer.featured:before {
    display: none;
  }

  .packages-prices-list.website .packages-buttons .features.pkg-details-info-item {
    display: none;
  }

  .packages-prices-list.website .features.pkg-details-info-item {
    border: none;
    background: #f7f9fc;
  }

  .package-item-header .pkg-icon svg {
    width: 50px;
  }

  .pkg-details-item:nth-child(odd) {
    background-color: transparent;
  }

  .packages-prices-list.website .packages-buttons .pkg-details-info-item {
    padding: 20px 0;
  }

  .packages-prices-list.website .pkg-details-info-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .packages-prices-list.website .packages-prices-list {
    margin-top: 50px;
  }

  .pkg-button {
    padding: 8px 12px;
    width: auto;
    font-size: 11px;
  }

  .package-item-header {
    padding: 20px 0;
  }

  .package-item-header .pkg-name {
    font-size: 14px;
  }

  .package-item-header .pkg-price.free {
    font-size: 14px;
  }

  .package-item-header .pkg-price {
    font-size: 10px;
    margin-bottom: 14px;
  }

  .package-item-header .pkg-price b {
    font-size: 14px;
    margin-left: 2px;
  }

  .package-item-header .pkg-price .year-price {
    font-size: 11px;
  }

  .pro-tstm-carousel .owl-stage {
    margin-right: -40px;
  }

  .owl-theme .owl-nav {
    display: none;
  }

  .pro-tstm-carousel:before {
    width: 50px;
  }

  .pro-testimonials .container {
    padding-left: 0;
  }

  .pro-tstm-carousel.owl-carousel .owl-nav > div {
    width: 30px;
    height: 30px;
    border-radius: 4px !important;
  }

  .owl-carousel.pro-tstm-carousel .owl-nav .owl-next {
    left: -15px !important;
  }

  .owl-carousel.pro-tstm-carousel .owl-nav .owl-prev {
    right: -15px !important;
  }

  .pro-tstm-item {
    padding: 0 40px 30px;
    border-radius: 20px;
  }

  header.fixed {
    padding: 10px 0;
  }

  .pro-tstm-item .watch-video {
    top: 10px;
    left: 10px;
    font-size: 12px;
    padding: 12px 8px 8px 8px;
  }

  .pro-section-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .pro-feature-img img {
    margin-bottom: 0;
  }

  .pro-stats-section {
    margin-bottom: 30px;
  }

  .pro-packages {
    margin-bottom: 40px;
  }

  .pro-testimonials {
    margin-bottom: 30px;
  }

  .pro-call-action-wrap {
    margin-bottom: 40px;
  }

  /* /// osarh pro */
  .pro-txt-col {
    padding-left: 15px;
  }

  .pro-img-col {
    padding-right: 15px;
  }

  .packages-prices-list.website .packages-feature-item .pkg-details-info-item:nth-child(3) {
    border-right: 1px solid #EBEFF2;
    border-left: 1px solid #EBEFF2;
  }

  .packages-prices-list.fixed .packages-list-header {
    top: 61px;
  }
}
@media (max-width: 767px) {
  .features-slider .owl-dots {
    margin-top: 10px !important;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }

  .pro-features-slider {
    margin-bottom: 0;
  }

  .features-slider .owl-dots .owl-dot {
    background: #14274E;
  }

  .f-slider-item .slide-text {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }

  .f-slider-item .slide-text p {
    text-align: center;
  }

  .features-slider-wrap:before {
    min-height: 70%;
    width: 100%;
  }

  .osarh-pro .header-link {
    height: 36px;
  }

  .pro-tstm-item {
    height: 500px;
  }

  .pro-tstm-carousel:before {
    width: 0;
  }

  .pro-home-img {
    min-height: 630px;
  }

  .cert-wrap {
    padding: 30px;
    display: block;
    text-align: center;
  }

  .cert-wrap img {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .cert-wrap .text {
    margin-bottom: 25px;
  }

  /* Osarh pro */
  .pro-stats .new-stats-item b {
    font-size: 26px;
  }

  .pro-feature-item {
    text-align: center;
    margin-bottom: 30px;
  }

  .pro-stats .new-stats-item {
    padding: 25px 10px;
  }

  .pro-stats .new-stats-item span {
    font-size: 14px;
  }

  /* /// osarh pro */
  /*  New 21/11/2021 */
  .faq-question .question-answer {
    font-size: 12px;
  }

  .faq-question h3 {
    font-size: 12px;
    line-height: 28px;
  }

  .stats-item {
    padding: 10px 30px 30px 5px;
    height: 90px;
  }

  .stats-item .icon {
    width: 60px;
    height: 60px;
    margin-left: 25px;
    line-height: 55px;
  }

  .stats-item .content {
    width: calc(100% - 90px);
  }

  footer {
    padding: 30px 0 30px;
  }

  .footer-logo-wrap img {
    margin-left: 30px;
  }

  .copyrights {
    position: initial;
    text-align: center;
  }

  .header-items .header-item:not(.menu-header-item) {
    display: none;
  }

  .logo img {
    width: 100px;
  }

  header {
    padding-top: 20px;
    margin-bottom: 10px;
  }

  header .container {
    padding: 0 20px;
  }

  .header-item > a {
    height: 36px;
    line-height: 36px;
    width: 36px;
  }

  .pro-feature-img {
    padding: 0 !important;
  }

  .pro-features-wrap .pro-feature-item:nth-child(4) img {
    margin-left: -20px;
  }
}
@media (max-width: 576px) {
  .home .home-inner .home_contnet {
    padding: 3rem 1rem;
  }
  .home .home-inner .home_contnet h1 {
    font-size: 30px;
    line-height: 1.4;
  }
  .home .home-inner .home_contnet .signNowForm {
    flex-flow: column;
  }
  .home .home-inner .home_contnet .signNowForm .input {
    min-height: 60px;
    margin-bottom: 20px;
  }

  .questions .questions-wrap .accordion-button {
    font-size: 14px;
  }

  .questions .questions-wrap .accordion-body {
    font-size: 14px;
  }

  .footer .footer-content .signNowForm .button-submit {
    margin-right: 0;
    margin-top: 15px;
  }

  .pkg-details-item .pkg-details-info-item:nth-child(3) .fi-rr-check {
    background: #2CA46C;
    color: #fff;
  }
}

/*# sourceMappingURL=styles.css.map */
