@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&family=Changa:wght@200;300;400;500;600;700;800&display=swap');

:root {
  --home-color: rgb(46, 49, 146);
  --second-home-color: #662d91;
  --main-gradient: linear-gradient(156deg, rgba(46, 49, 146, 1) 0%, rgba(102, 45, 145, 1) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Cairo, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  padding-top: 76px;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  background: white;
  width: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--main-gradient);
  border-radius: 3px;
}

.button-87 {
  margin: 10px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  display: block;
  border: 0px;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px var(--second-home-color);
  background-image: linear-gradient(45deg,
      var(--home-color) 0%,
      var(--second-home-color) 51%,
      var(--home-color) 100%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  animation: flash 1s ease-in-out infinite alternate;
  -webkit-animation: flash 1s ease-in-out infinite alternate;
}

@keyframes flash {
  to {
    background-position: right center;
  }
}

.button-87:active {
  transform: scale(0.95);
}

/* Start Navbar Section */
nav {
  transition: all 0.8s ease-in-out;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background: #fff;
}

nav.navbar.nav-fixed {
  background: #fff;
  padding: 0 30px;
  box-shadow: 0 13px 35px -12px rgb(35 35 35 / 10%);
}

nav .navbar-toggler,
nav .navbar-toggler:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

nav .navbar-toggler span {
  display: block;
  width: 45px;
  height: 1px;
  background: #8c8c8c;
  margin-top: 7px;
}

nav .navbar-collapse {
  justify-content: flex-end;
}

nav .nav-link {
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  padding-right: 10px !important;
  padding-left: 10px !important;
}

nav.navbar.nav-fixed .nav-link {
  padding-right: 10px !important;
  padding-left: 10px !important;
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link,
.nav-link:focus,
.nav-link:hover,
nav.navbar.nav-fixed .nav-link:hover,
nav.navbar.nav-fixed .nav-link.active {
  color: var(--home-color);
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center !important;
    background-color: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
  }

  .navbar-collapse.open {
    opacity: 1;
    visibility: visible;
  }

  .navbar-collapse .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .navbar-collapse .navbar-nav .close-nav {
    position: absolute;
    top: 20px;
    right: -100%;
    cursor: pointer;
    width: 45px;
    height: 45px;
    transition: right 0.5s ease-in-out;
    -webkit-transition: right 0.5s ease-in-out;
    -moz-transition: right 0.5s ease-in-out;
    -ms-transition: right 0.5s ease-in-out;
    -o-transition: right 0.5s ease-in-out;
  }

  .navbar-collapse.open .close-nav {
    right: 60px;
  }

  .navbar-collapse .navbar-nav .close-nav span {
    display: block;
    background: white;
    width: 45px;
    height: 1px;
  }

  .navbar-collapse .navbar-nav .close-nav span:first-child {
    transform: translateY(22px) rotate(45deg);
  }

  .navbar-collapse .navbar-nav .close-nav span:last-child {
    transform: translateY(22px) rotate(-45deg);
  }

  nav .navbar-collapse .nav-link,
  nav.navbar.nav-fixed .nav-link {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    color: white;
  }

  nav .navbar-collapse.open .nav-item {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    animation: navEffect 0.35s ease-in-out forwards;
  }

  nav .navbar-collapse.open .nav-item:nth-of-type(1) {
    animation-delay: 0s;
  }

  nav .navbar-collapse.open .nav-item:nth-of-type(2) {
    animation-delay: 0.2s;
  }

  nav .navbar-collapse.open .nav-item:nth-of-type(3) {
    animation-delay: 0.4s;
  }

  nav .navbar-collapse.open .nav-item:nth-of-type(4) {
    animation-delay: 0.6s;
  }

  nav .navbar-collapse.open .nav-item:nth-of-type(5) {
    animation-delay: 0.8s;
  }

  nav .navbar-collapse.open .nav-item:nth-of-type(6) {
    animation-delay: 1s;
  }

  nav .navbar-collapse.open .nav-item:nth-of-type(7) {
    animation-delay: 1.2s;
  }

  nav .navbar-collapse.open .nav-item:nth-of-type(8) {
    animation-delay: 1.4s;
  }

  @keyframes navEffect {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(-20px);
    }

    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  }
}

@media (max-width: 575.98px) {
  .navbar-collapse {
    width: 100%;
  }

  .navbar-nav {
    padding-left: 20px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    transition: transform 0.2s ease-in-out;
  }
}

/* End Navbar Section */
.banner {
  height: 100vh;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/190.svg');
  background-repeat: no-repeat;
  background-position: right top;
  z-index: -1;
}

@media screen and (max-width: 991.98px) {
  .banner {
    height: auto;
    padding: 50px 0 0;
  }

  .banner::after {
    background-size: 80% 80%;
    background-position: right top;
  }

  .banner .row {
    flex-direction: column-reverse;
  }

  .banner img {
    max-width: 800px;
    width: 100%;
  }
}

.banner-content {
  max-width: 600px;
}

.banner-content h1 {
  color: var(--home-color);
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.banner-content p {
  line-height: 1.6;
  font-weight: 300;

}

/* New */
@media screen and (max-width: 500px) {
  .banner-content h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .banner-content p {
    text-align: center;
  }

  .banner-content button {
    margin: 10px auto
  }
}

/* New */

.about_us p {
  font-size: 1.5rem;
  line-height: 1.6;
}

/* New */
@media screen and (max-width: 500px) {
  .about_us p {
    font-size: 1.3rem;
  }
}

/* New */

.feature {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 3px 3px 19px 0px rgba(46, 59, 125, 0.23);
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  height: 100%;
}

.feature::after,
.login-box::after {
  content: "";
  background-image: linear-gradient(var(--home-color), var(--home-color), var(--home-color), transparent),
    linear-gradient(transparent, var(--second-home-color), var(--second-home-color), var(--second-home-color), transparent);
  position: absolute;
  width: 200%;
  height: 200%;
  left: -50%;
  top: -50%;
  background-size: 40% 40%;
  background-repeat: no-repeat;
  background-position: 0 0, 100% 100%;
  z-index: -2;
}

.feature:hover::after {
  animation: rotate 2s ease-in-out infinite;
  -webkit-animation: rotate 2s ease-in-out infinite;
}

.login-box {
  position: relative;
  overflow: hidden;
  box-shadow: 3px 3px 19px 0px rgba(46, 59, 125, 0.23);
  padding: 20px;
  border-radius: 20px;
  z-index: 2;
}

/* .login-box::after {
  animation: rotate 2s ease-in-out infinite;
  -webkit-animation: rotate 2s ease-in-out infinite;
} */


@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}


.feature::before,
.login-box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: rgba(250, 250, 250);
  z-index: -1;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.feature h3 {
  margin-bottom: 0;
}

.feature i {
  font-size: 3rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.feature:hover i {
  transform: scale(1.2);
}

.price-plane .pricing-header p {
  max-width: 900px;
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.4;
}

.pricing {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.pricing_flex {
  flex-direction: row-reverse;
}

.form-switch .form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e"), var(--main-gradient) !important
}

.form-check-input:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.pricing-item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  align-items: stretch;
  text-align: center;
  -webkit-flex: 0 1 300px;
  flex: 0 1 300px;
}

@media (min-width: 500px) and (max-width: 809.98px) {
  .pricing-item {
    -webkit-flex: 0 1 300px;
    flex: 0 1 300px;
  }
}

/* New */
@media screen and (max-width: 499.98px) {
  .pricing-item {
    -webkit-flex: 0 1 95%;
    flex: 0 1 95%;
  }
}

/* New */

.pricing-feature-list {
  text-align: left;
}

.pricing-palden .pricing-item {
  cursor: default;
  background: #fff;
  box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
  border-radius: 20px 20px 10px 10px;
  margin: 1em -0.3em;
  overflow: hidden;
}

.pricing-palden .pricing__item--featured {
  margin: 0;
  z-index: 10;
  box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
}

.pricing-palden .pricing-deco {
  border-radius: 10px 10px 0 0;
  background: var(--main-gradient);
  padding: 2em 0 5em;
  position: relative;
}

.pricing-palden .pricing-deco-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.pricing-palden .pricing-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}

.pricing-palden .deco-layer {
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
  -webkit-transform: translate3d(15px, 0, 0);
  transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
  -webkit-transform: translate3d(-15px, 0, 0);
  transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
  font-size: 2.5em;
}

.pricing-palden .discount {
  position: absolute;
  top: 20px;
  right: -70px;
  font-size: 1.5rem;
  background: var(--bs-success);
  width: 200px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(48deg);
}

.pricing-palden .pricing-price {
  font-size: 2.8em;
  font-weight: bold;
  padding: 0;
  color: #fff;
  margin: 0 0 0.25em 0;
  line-height: 0.75;
}

.pricing-palden .pricing-currency {
  font-size: 0.3em;
  vertical-align: top;
}

.pricing-palden .old-price {
  color: var(--bs-danger);
  font-size: 0.5em;
  position: relative;
  display: inline-block;
  opacity: 0.8;
  font-weight: 100;
}

.pricing-palden .old-price::after {
  content: "";
  background: var(--bs-danger);
  position: absolute;
  top: 51%;
  left: 9%;
  width: 95%;
  height: 3px;
  transform: rotate(341deg);
}

.pricing-palden .pricing-period {
  font-size: 0.3em;
  padding: 0;
  font-style: italic;
  margin-left: -10px;
}



.pricing-palden .pricing__sentence {
  font-weight: bold;
  margin: 0 0 1em 0;
  padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list {
  margin: 0 auto;
  padding: 0.25em 0 1em;
  list-style: none;
  margin-top: -40px;
  position: relative;
  max-width: 250px;
}

.pricing-palden .pricing-feature {
  padding: 0.3em 0;
}

.pricing-palden .pricing-action {
  font-weight: bold;
  margin: auto 3em 2em 3em;
  padding: 1em 2em;
  border-radius: 30px;
  font-size: 0.9rem;

}

.pricing-palden .pricing-item--featured .pricing-deco {
  padding: 5em 0 8.885em 0;
}

.technical {
  padding-top: 2rem;
  position: relative;
  z-index: 0;
}

.technical .form-content {
  background: var(--main-gradient);
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
  height: 100%;
}

.technical form {
  background-color: white;
  padding: 50px 30px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 10px 30px -7px rgb(0 0 0 / 28%), 10px 0px 30px -7px rgb(0 0 0 / 28%);
  height: 100%;
}

@media screen and (max-width: 500px) {
  .technical .lead {
    font-size: 1rem !important;
  }
}

@media (min-width: 992px) {

  .technical .form,
  .technical .form-content {
    width: 50%;
  }

  .technical form {
    border-radius: 0 20px 20px 0;
  }

  .technical .form-content {
    border-radius: 20px 0 0 20px;
    min-height: 780px;
  }
}

/* Start Footer */
footer {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.left-footer {
  display: flex;
  flex-direction: column;
  padding: 50px 0;
}

@media screen and (max-width: 575.98px) {
  footer {
    padding: 50px 0 0;
  }

  .left-footer {
    padding: 0;
  }
}

.left-footer img.logo {
  max-width: 150px;
}

.left-footer p a {
  color: white;
  padding: 10px;
  font-size: 1.2em;
  display: block;
  text-transform: lowercase;
  font-weight: 300;
}

.left-footer ul {
  display: flex;
}

ul.row_ul {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  margin-top: 10px;
}

.left-footer h4 {
  text-transform: capitalize;
  color: white;
}

.left-footer ul li a {
  color: #777;
  display: block;
  padding: 5px 10px;
  font-size: 1.2em;
  transition: 0.3s ease-in-out;
}

.left-footer ul li a i {
  margin-right: 5px;
}

.left-footer ul:not(.footer-social) li a:hover {
  color: var(--home-color);
  transform: translateX(10px);
}

ul.row_ul li a {
  padding: 5px 10px;
  font-size: 1em;
  text-transform: capitalize;
}

.mapouter {
  position: relative;
  text-align: right;
  height: 300px;
  width: 100%;
  margin-bottom: 30px;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 100%;
  width: 100%;
}

footer .bottom-footer {
  background-image: var(--main-gradient);
  color: white;
}



@media (max-width: 991.98px) {
  .left-footer {
    padding: 50px 0 0px;
    text-align: center;
  }

  .left-footer .d-flex {
    justify-content: center;
  }

  ul.row_ul {
    text-align: center;
  }

  footer .bottom-footer {
    margin-top: 50px;
  }
}

/* End Footer */

/* ============= Login Page ===================== */

.half_login,
.half_login .container>.row {
  height: calc(100vh - 76px);
}

.half_login .login_image {
  background-size: 200% auto;
  background-image: linear-gradient(150deg, var(--home-color) 0%, var(--second-home-color) 51%, var(--home-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 0 20px 20px 0;
  animation: flash 1s ease-in-out infinite alternate;
  -webkit-animation: flash 3s ease-in-out infinite alternate;
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  -ms-border-radius: 0 20px 20px 0;
  -o-border-radius: 0 20px 20px 0;
}

.half_login .login_image img {
  width: 600px;
  max-width: 100%;

}

.previous_arrow {
  padding: 5px 15px;
  background: #f3f3f3;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
}


.previous_arrow i {
  color: #535353;
  transition: transform 0.2s ease-in-out;
}

.previous_arrow:hover i {
  transform: translateX(-5px);
}

@media (min-width: 992px) {

  .half_login .login_content,
  .half_login .login_image {
    width: 50%;
  }
}

@media (max-width: 991.98px) {
  .half_login {
    position: relative;
  }

  .half_login .login_content {
    width: 100%;
  }

  .half_login .login_image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    z-index: -1;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
}

.half_login .login_content .form-group,
.half_login .login_image .form-group {
  margin-bottom: 0;
  border: 1px solid #ddd;
  padding: 15px 15px;
  border-bottom: none;
}

.half_login .login_content .form-group.first,
.half_login .login_image .form-group.first {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.half_login .login_content .form-group.last,
.half_login .login_image .form-group.last {
  border-bottom: 1px solid #ddd;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.half_login .login_content .form-group label,
.half_login .login_image .form-group label {
  font-size: 14px;
  display: block;
  margin-bottom: 0;
  color: #b3b3b3;
}

.half_login .login_content .form-control,
.half_login .login_image .form-control {
  border: none;
  padding: 0;
  font-size: 16px;
  border-radius: 0;
}

.half_login .login_content .form-control:active,
.half_login .login_content .form-control:focus,
.half_login .login_image .form-control:active,
.half_login .login_image .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.half_login .forgot-pass {
  font-size: 14px;
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
}

.control .caption {
  position: relative;
  top: .2rem;
  color: #888;
  user-select: none;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
  background: #ccc;
}

.control input:checked~.control__indicator {
  background: var(--main-gradient);
}

.control:hover input:not([disabled]):checked~.control__indicator,
.control input:checked:focus~.control__indicator {
  background: var(--main-gradient);
}

.control input:disabled~.control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none;
}

.control__indicator:after {
  content: '\f00c';
  font-family: FontAwesome;
  position: absolute;
  display: none;
  font-size: 16px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.control input:checked~.control__indicator:after {
  display: block;
  color: #fff;
}

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.control--checkbox input:disabled~.control__indicator:after {
  border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked~.control__indicator {
  background-color: #7e0cf5;
  opacity: .2;
}

/* ============= Login Page ===================== */
.forgot-password-content{

    display: flex;
  justify-content: center;
  align-items: center;
}


.footer-bg{
  background-color: rgb(211, 211, 211);
}