@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Cairo", sans-serif; }

a {
  text-decoration: none; }

:root {
  --main-color: #05abee;
  --second-color: #05abee80;
  --third-color: #2d318c;
  --gray-color: #8a8a8a; }

.main-color {
  color: var(--main-color); }

.second-color {
  color: var(--second-color); }

.third-color {
  color: var(--third-color); }

.gray-color {
  color: var(--gray-color); }

.login-page {
  min-height: 100vh; }

.login-page .container > .row,
.login-page .container {
  min-height: calc(100vh - 70px); }

.login-img {
  border-radius: 29px; }

.login-header {
  background-color: var(--second-color);
  border-radius: 35px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }

.login-header a {
  min-width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px;
  border-radius: 30px;
  color: #fff;
  font-weight: normal; }

.login-header a.active {
  background-color: var(--main-color); }

.password-con,
.inputfiled {
  border-radius: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  border: 1px solid #05abee;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative; }

.password-con input::-webkit-input-placeholder,
.inputfiled::-webkit-input-placeholder {
  color: #acacac; }

.password-con input:-ms-input-placeholder,
.inputfiled:-ms-input-placeholder {
  color: #acacac; }

.password-con input::-ms-input-placeholder,
.inputfiled::-ms-input-placeholder {
  color: #acacac; }

.password-con input::placeholder,
.inputfiled::placeholder {
  color: #acacac; }

.password-con svg {
  position: absolute;
  left: 15px;
  top: 15px;
  cursor: pointer; }

.password-con input {
  border-radius: 50px; }

.hide-password {
  display: none; }

.submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50px;
  border: none;
  height: 50px;
  min-width: 220px; }

.navbar {
  background-color: #e3f6ff; }

.navbar .nav-item .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #2d318c;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%; }

.navbar .nav-item .nav-link:active,
.navbar .nav-item .nav-link.active {
  text-decoration: underline;
  font-weight: bold; }

.nav-left a {
  height: 50px;
  padding: 5px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  -webkit-box-shadow: 0px 20px 24px 0px #00000008;
          box-shadow: 0px 20px 24px 0px #00000008;
  width: 140px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.nav-left .register-link {
  background-color: var(--main-color);
  color: #fff; }

.nav-left .register-link:hover {
  background-color: var(--second-color); }

.nav-left .login-link {
  background-color: #fff;
  color: #5b5b5b; }

.nav-left .login-link:hover {
  background-color: var(--main-color);
  color: #fff; }

.navbar-toggler {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff; }

.hero-sec {
  position: relative;
  width: 100%;
  background-image: url("../assets/header-pic.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.try-link {
  color: #fff;
  background-color: var(--main-color);
  padding: 10px 20px;
  border-radius: 50px; }

.footer {
  background-color: #5b81b6; }

.footer-form input {
  border: 1px solid #b2b3cf;
  border-radius: 50px;
  width: 300px;
  height: 50px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  color: #fff; }

.footer-form input::-webkit-input-placeholder {
  color: #b4b5c5; }

.footer-form input:-ms-input-placeholder {
  color: #b4b5c5; }

.footer-form input::-ms-input-placeholder {
  color: #b4b5c5; }

.footer-form input::placeholder {
  color: #b4b5c5; }

.footer-form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50px;
  border: none;
  height: 50px;
  min-width: 150px;
  max-width: 150px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.footer-form button:hover {
  background-color: var(--second-color); }

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none; }

.footer-links li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px 12px; }

.footer-links li a {
  font-size: 20px;
  color: #b2b3cf;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.footer-links li a:hover {
  color: #fff; }

.about-text {
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0px;
  color: #3b6fb7; }

.number-val {
  background: -webkit-gradient(linear, left top, right top, from(#05abee), to(#2d318c));
  background: linear-gradient(90deg, #05abee 0%, #2d318c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  /* Needed for proper rendering */
  font-weight: 300;
  font-size: 96px;
  line-height: 100%; }

.number-con h3 {
  background: -webkit-gradient(linear, left top, right top, from(#05abee), to(#2d318c));
  background: linear-gradient(90deg, #05abee 0%, #2d318c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  /* Needed for proper rendering */
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0px; }

.service-con {
  -webkit-box-shadow: 0px 10px 60px 0px #262d7614;
          box-shadow: 0px 10px 60px 0px #262d7614;
  border-radius: 20px; }

.service-icon {
  -webkit-box-shadow: 0px 10px 40px 0px #363d880f;
          box-shadow: 0px 10px 40px 0px #363d880f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  border-radius: 50px;
  margin: auto;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px); }

.member-con {
  border-radius: 20px;
  min-height: 300px;
  height: 320px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.member-con .member-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 20px; }

.member-con .member-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px; }

.member-con a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 50px;
  min-width: 170px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.member-con a:hover {
  background-color: var(--third-color); }

.member-con:hover .member-bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1); }

.shape {
  position: absolute;
  border-radius: 50%; }

.shape.one {
  width: 70px;
  height: 70px;
  background: #05abee;
  right: 70px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 60px;
  z-index: -1;
  -webkit-animation: zoomIn 1s;
          animation: zoomIn 1s;
  visibility: visible !important; }

.shape.two {
  width: 30px;
  height: 30px;
  background: #05abee;
  left: 0px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 40%;
  z-index: -1;
  -webkit-animation: zoomIn 1s;
          animation: zoomIn 1s;
  visibility: visible !important; }

.feature-con {
  -webkit-box-shadow: 0px 4px 4px 0px #00000040;
          box-shadow: 0px 4px 4px 0px #00000040;
  background-color: #f7f7f7; }

.feature-con .feature-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  border-radius: 50%;
  margin: auto;
  background-color: #3b6fb7; }

.smart-title {
  color: var(--third-color); }

.smart-title span {
  width: 50px;
  height: 1px;
  background-color: var(--third-color);
  display: block; }

.rate-link {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--main-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.rateLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--main-color);
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  font-weight: 600; }

.rate-link:hover,
.rateLink:hover {
  background-color: var(--main-color);
  color: #fff; }

@media (max-width: 992px) {
  .login-page,
  .login-page .container > .row,
  .login-page .container {
    min-height: auto; } }
.user-drop {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0; }

.user-drop .open-drop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background-color: transparent;
  color: var(--second-color);
  -webkit-box-shadow: none;
          box-shadow: none; }

.user-drop .open-drop:hover {
  color: var(--second-color); }

.user-drop .open-drop p {
  color: var(--third-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; }

.user-drop .open-drop img {
  width: 45px;
  height: 45px;
  border-radius: 50%; }

.user-drop .dropdown-toggle::after {
  display: none; }

.user-drop .useroptions {
  width: 200px;
  border-radius: 22px;
  border: 1px solid #dfdfdf;
  background: #fff;
  -webkit-box-shadow: 9px 18px 26px 0px rgba(119, 119, 119, 0.25);
          box-shadow: 9px 18px 26px 0px rgba(119, 119, 119, 0.25); }

.user-drop .useroptions li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.user-drop .useroptions li a {
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #23262f;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; }

.user-drop .useroptions li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.user-drop .useroptions li a:hover {
  color: var(--third-color); }

@media (min-width: 992px) and (max-width: 1400px) {
  .navbar .container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    min-width: 100%; }

  .navbar .nav-item .nav-link {
    font-size: 16px; } }
.question-con h2 {
  font-weight: 600;
  line-height: 180%;
  color: var(--third-color); }

.question-con h4 {
  font-weight: 400;
  line-height: 180%;
  color: #696984; }

.contact-sec .container {
  background-color: #eef9fe;
  border-top-left-radius: 481.5px;
  border-top-right-radius: 481.5px; }

.contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0px 4px 5px 0px #00000040;
          box-shadow: 0px 4px 5px 0px #00000040;
  border-radius: 50px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.contact-link:hover {
  background-color: var(--third-color); }

.activity-hero {
  background-color: #eef9fe; }

.activity-hero h4 {
  color: #696984; }

.more-activity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.more-activity:hover {
  background-color: var(--third-color); }

.activity-card {
  min-height: 300px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.activity-card .activity-card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 20px; }

.activity-card .activity-card-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px; }

.activity-card:hover .activity-card-bg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05); }

.activity-card a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffffb2;
  border-radius: 12px;
  color: var(--third-color); }

.recent-activities {
  background-color: #eef9fe; }

.recent-activity .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0; }

.recent-activity-card {
  -webkit-box-shadow: 2px 5px 8px -3px #2f327d1a;
          box-shadow: 2px 5px 8px -3px #2f327d1a;
  background-color: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%; }

.recent-activity-img {
  height: 300px;
  border-radius: 20px; }

.recent-activity-img img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover; }

.recent-activity-card h4 {
  color: #252641; }

.recent-activity-card p {
  color: #696984; }

.recent-activity-card a {
  color: #696984;
  text-decoration: underline; }

.recent-activity .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 16px; }

.recent-activity .owl-nav button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--main-color) !important;
  color: #fff !important;
  margin: 0 10px; }

.recent-activity .owl-dots {
  display: none; }

.past-activity-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 18.83px 47.08px 0px #2f327d1a;
          box-shadow: 0px 18.83px 47.08px 0px #2f327d1a;
  background-color: #fff;
  border-radius: 20px; }

.past-activity-card .past-activity-card-img {
  height: 230px;
  border-radius: 20px;
  width: 100%; }

.past-activity-card .past-activity-card-img img {
  height: 230px;
  border-radius: 20px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover; }

.past-activity-logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%; }

.past-activity-card p {
  color: #696984; }

.past-activity-card h5 {
  color: #252641; }

.membership-hero-content {
  -webkit-box-shadow: 0px 6px 7px 0px #00000040;
          box-shadow: 0px 6px 7px 0px #00000040;
  border-radius: 25px;
  background-color: #f9f9f9; }

.membership-hero-content ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }

.plan-card a,
.membership-hero-content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 3px solid #05abee;
  border-radius: 20px;
  color: #05abee;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff; }

.membership-hero-content a:hover {
  background-color: #05abee;
  color: #fff; }

.plan-card {
  -webkit-box-shadow: 0px 6px 7px 0px #00000040;
          box-shadow: 0px 6px 7px 0px #00000040;
  background-color: #fff;
  border-radius: 25px; }

.plan-card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 3px solid #05abee;
  border-radius: 20px;
  background-color: #05abee;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  width: 100%; }

.plan-card a:hover {
  background-color: var(--third-color);
  border-color: var(--third-color); }

.discount-content {
  background-image: url("../assets/50 ريال.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.discount-content h1 {
  font-weight: 900;
  font-size: 128px;
  line-height: 100%;
  color: #fd0004; }

.try-sec a,
.discount-content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--third-color); }

.discount-content a:hover {
  background-color: var(--third-color);
  color: #fff; }

@media (max-width: 992px) {
  .discount-content h1 {
    font-size: 50px; } }
.try-sec .container {
  background-color: #3b6fb7;
  border-radius: 36px; }

.try-sec a:hover {
  background-color: var(--main-color);
  color: #fff; }

.question-sec .accordion-item {
  border: none;
  border-bottom: 0.5px solid #2d318c; }

.question-sec .accordion-item .accordion-button {
  border: none;
  background-color: transparent;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #2d318c; }

.question-sec .accordion-item .accordion-body {
  font-weight: 400;
  line-height: 180%;
  color: #a4a4a4; }

.question-sec .accordion-item:first-of-type,
.question-sec .accordion-item:last-of-type {
  border-radius: 0; }

.opinions-sec {
  background-color: #eef9fe;
  padding-bottom: 150px; }

.opinion-card {
  background-color: #fff;
  border-radius: 20px; }

.opinion-card .opinion-img {
  width: 118px;
  height: 118px;
  border-radius: 6px; }

.opinion-card .opinion-img img {
  width: 100%;
  height: 100%;
  border-radius: 6px; }

.opinion-card h5 {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: #696984;
  letter-spacing: 2%; }

.opinions-slider .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.opinions-slider .owl-nav button {
  position: absolute;
  top: 45%;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: var(--main-color) !important;
  color: #fff !important;
  margin: 0 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.opinions-slider .owl-nav button.owl-prev {
  right: -20px; }

.opinions-slider .owl-nav button.owl-next {
  left: -20px; }

.instructions-sec {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px); }

.instructions-sec .container {
  background-color: #3b6fb7;
  border-radius: 36px; }

.instructions-sec a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--third-color); }

.instructions-sec a:hover {
  background-color: var(--third-color);
  color: #fff; }

.smartagent-hero {
  background-color: #eef9fe; }

.smartagent-hero h3 {
  color: #252641; }

.feature-card {
  -webkit-box-shadow: 0px 18.83px 47.08px 0px #2f327d1a;
          box-shadow: 0px 18.83px 47.08px 0px #2f327d1a;
  border-radius: 20px; }

.feature-card .feature-icon-con {
  width: 85px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.feature-card h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #2d318c; }

.feature-card h5 {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 2%;
  color: #696984; }

.compare-sec table {
  border-collapse: separate;
  border-spacing: 0 8px; }

.compare-sec table th,
.compare-sec table td {
  background-color: red;
  border: none;
  text-align: center; }

.compare-sec table th {
  color: #fff;
  background-color: #3b6fb7; }

.compare-sec table td {
  color: #000;
  background-color: #9dccff4d; }

.user-try-sec .container {
  background-color: #3b6fb7;
  border-radius: 36px; }

.user-try-sec a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff; }

.user-try-sec a:hover {
  background-color: var(--third-color);
  color: #fff; }

.support-page {
  background-color: #eef9fe; }

.contact-card {
  background-color: #fff;
  border-radius: 36px; }

.contact-card .card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.contact-card .card-link:hover {
  background-color: var(--third-color);
  color: #fff; }

.formInput {
  border: 1px solid #05abee;
  height: 60px;
  font-size: 20px;
  color: var(--third-color);
  background-color: transparent; }

.submitBtn {
  border: 3px solid #05abee;
  border-radius: 7px;
  background-color: transparent;
  color: var(--third-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.submitBtn:hover {
  background-color: #05abee;
  color: #fff; }

.checkout-form {
  background-color: #eef9fe;
  border-radius: 50px; }

.checkout-line {
  border-top: 1px solid #000000; }

.policy-check input {
  width: 40px;
  height: 40px; }

.checkbox-btn {
  background-color: var(--main-color);
  border-radius: 12px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none; }

.checkbox-btn:hover {
  background-color: var(--third-color); }

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