/*======================
   01. Theme Base CSS
=========================*/
html,
body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  color: #2d353d;
  font-size: 16px;
  letter-spacing: 0.26px;
  font-weight: 400;
  background: #ffffff;
  height: unset;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  overflow: hidden;
}

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

.container-fluid {
  padding: 0px;
  height: 100%;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 15px;
}

* {
  box-sizing: border-box;
}

p, tr td {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.26px;
  line-height: 24px;
  color: #2d353d;
  margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  color: #353359;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

a {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  display: block;
  margin: 0px;
  color: #2d353d;
  font-weight: 500;
  text-transform: capitalize;
}

a:hover {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
  color: none !important;
}

button {
  cursor: pointer;
  background: transparent;
  border: 0px;
  outline: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

section {
  position: relative;
}

dialog, figure, figcaption {
  margin: 0px;
  border: 0px;
  padding: 0px;
  position: relative;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

li {
  display: inline-block;
}

.section_title {
  text-transform: capitalize;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  width: 100%;
  font-size: 38px;
  line-height: 52px;
  font-weight: 700;
  margin-bottom: 50px;
}

.o_zero {
  opacity: 0;
}

.d_none {
  display: none;
}

.color_one {
  color: #17B0C3;
}

.bold_p {
  font-weight: 700;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #f6f7ff;
  border-bottom: 1px solid #E9EAEE;
}
header nav .navarea {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .logo a {
  font-size: 28px;
  text-transform: uppercase;
  width: 220px;
}
header nav .menu-button {
  display: none;
}
header nav .menu {
  flex: 1;
  text-align: right;
}
header nav .menu ul li {
  padding: 32px 20px;
}
header nav .menu ul li a {
  position: relative;
  padding: 5px 0px;
  transition: all 0.3s ease-in-out;
}
header nav .menu ul li a::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: #4d80e9;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-in-out;
}
header nav .menu ul li a:hover {
  color: #4d80e9;
  transition: all 0.3s ease-in-out;
}
header nav .menu ul li a:hover::before {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
header nav .menu ul li a.active::before {
  width: 100%;
}
header nav .reg_btn {
  display: flex;
  margin-left: 20px;
  gap: 20px;
}
header nav .reg_btn a {
  padding: 10px 24px;
  text-align: center;
  background: #4d80e9;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  display: inline-block;
  transition: all 0.3s ease-in-out;
  padding-top: 8px;
  padding-bottom: 8px;
}
header nav .reg_btn a:hover {
  background: #554de9;
  transition: all 0.3s ease-in-out;
}
header nav .reg_btn a:focus {
  box-shadow: 0px 0px 5px #4d80e9;
}

.banner {
  background: url("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.banner::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0px;
  left: 0;
  background: rgba(37, 59, 101, 0.5);
}
.banner .banner_area {
  padding: 180px 0px 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.banner .banner_area h2, .banner .banner_area p, .banner .banner_area a {
  color: rgb(255, 255, 255);
}
.banner .banner_area h2 {
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
.banner .banner_area p {
  font-size: 18px;
  line-height: 30px;
}
.banner .banner_area .register_btn {
  margin-top: 30px;
}
.banner .banner_area .register_btn a {
  padding: 10px 24px;
  text-align: center;
  background: #4d80e9;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.banner .banner_area .register_btn a:hover {
  background: #554de9;
  transition: all 0.3s ease-in-out;
}
.banner .banner_area .register_btn a:focus {
  box-shadow: 0px 0px 5px #4d80e9;
}

.card_section {
  padding: 80px 0px;
}
.card_section .card_item {
  padding: 15px 15px 25px;
  border: 1px solid #E9EAEE;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.card_section .card_item img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
}
.card_section .card_item h4 {
  font-size: 20px;
  line-height: 28px;
  padding-top: 15px;
  text-align: center;
  letter-spacing: 0px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.card_section .card_item:hover {
  background: #253b65;
  transition: all 0.3s ease-in-out;
}
.card_section .card_item:hover h4 {
  color: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}

.about {
  padding: 100px 0px;
  background: #f6f7ff;
}
.about .about_img {
  margin-top: 30px;
}
.about .about_img img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
}
.about .about_area {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  margin-top: 30px;
  height: 100%;
  justify-content: center;
}
.about .about_area h4 {
  font-size: 28px;
  margin-bottom: 20px;
}
.about .about_area p {
  line-height: 28px;
}

.how_works {
  padding: 100px 0px;
}
.how_works .work_mian {
  margin-top: 40px;
  position: relative;
}
.how_works .work_mian::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 200px;
  background: rgb(85, 77, 233);
  background: linear-gradient(0deg, #4d80e9 0%, #4d80e9 70%, rgb(255, 255, 255) 100%);
  left: 50%;
  animation: line 5s linear infinite;
}
.how_works .work_mian::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: #4d80e9;
  top: 200px;
  left: calc(50% - 8px);
  border-radius: 50px;
  animation: line2 5s linear infinite;
}
@keyframes line {
  0% {
    top: 0;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: calc(100% - 200px);
  }
}
@keyframes line2 {
  0% {
    top: 200px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: calc(100% - 0px);
  }
}
.how_works .icon_works {
  width: 150px;
  margin-top: 20px;
}
.how_works .sec_right {
  padding-right: 80px;
  padding-bottom: 80px;
}
.how_works .sec_right .work_area h3, .how_works .sec_right .work_area p {
  text-align: right;
  display: block;
}
.how_works .sec_right .icon_works, .how_works .sec_right .work_area span {
  margin-left: auto;
}
.how_works .pl_border {
  padding-left: 80px;
  padding-bottom: 80px;
  border-left: 5px solid #E9EAEE;
}
.how_works .work_area span {
  display: block;
  width: 40px;
  height: 40px;
  background: #4d80e9;
  color: rgb(255, 255, 255);
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 40px;
}
.how_works .work_area h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.feature {
  padding: 100px 0px;
  background: #f6f7ff;
}
.feature .section_title {
  margin-bottom: 70px;
}
.feature .left_title {
  padding-right: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.feature .left_title .section_title {
  text-align: left;
}
.feature .left_title .benifit_img {
  height: 100%;
}
.feature .left_title .benifit_img img {
  border-radius: 15px;
  height: 100%;
  object-fit: cover;
}
.feature .ftbutton {
  margin-top: 20px;
}
.feature .ftbutton a {
  padding: 10px 24px;
  text-align: center;
  background: #4d80e9;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.feature .ftbutton a:hover {
  background: #554de9;
  transition: all 0.3s ease-in-out;
}
.feature .ftbutton a:focus {
  box-shadow: 0px 0px 5px #4d80e9;
}
.feature .feature_area {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}
.feature .feature_area .feature_item {
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  border-radius: 10px;
  padding: 20px 15px;
  transition: all 0.3s ease-in-out;
  background-color: rgb(255, 255, 255);
  position: relative;
  top: 0;
}
.feature .feature_area .feature_item .icon i, .feature .feature_area .feature_item h3, .feature .feature_area .feature_item p {
  transition: all 0.3s ease-in-out;
}
.feature .feature_area .feature_item .icon {
  margin-bottom: 20px;
  display: inline-block;
}
.feature .feature_area .feature_item .icon i {
  font-size: 50px;
  color: #554de9;
}
.feature .feature_area .feature_item h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #253b65;
}
.feature .feature_area .feature_item:hover {
  top: -5px;
  background: #554de9;
}
.feature .feature_area .feature_item:hover .icon i, .feature .feature_area .feature_item:hover h3, .feature .feature_area .feature_item:hover p {
  color: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}

.faq_section {
  padding: 100px 0px;
}
.faq_section .accordion-item {
  margin-bottom: 25px;
  border: 1px solid #E9EAEE;
  border-radius: 10px;
  overflow: hidden;
}
.faq_section .accordion-item .accordion-header button {
  font-size: 22px;
  font-weight: 500;
  padding: 20px;
  background: #f6f7ff;
  color: #554de9;
}
.faq_section .accordion-item .accordion-header button:focus {
  background: #f6f7ff;
  box-shadow: none;
}
.faq_section .accordion-item .accordion-header button.collapsed {
  background: rgb(255, 255, 255);
  color: #353359;
}
.faq_section .accordion-item .accordion-body p {
  font-size: 18px;
  line-height: 28px;
}

.contact {
  padding: 80px 0px;
  background: #f6f7ff;
}
.contact .contact_area form .form_area {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contact .contact_area form .form_area .form-group {
  margin-bottom: 25px;
  flex: 1;
}
.contact .contact_area form .form_area .form-group label {
  font-size: 16px;
  margin-bottom: 10px;
}
.contact .contact_area form .form_area .form-group .form-control {
  background: transparent;
  padding: 12px 20px;
  border: 1px solid #ddd;
}
.contact .contact_area form .form_area .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #554de9;
}
.contact .contact_area form .send_btn button {
  padding: 10px 24px;
  text-align: center;
  background: #4d80e9;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  display: inline-block;
  transition: all 0.3s ease-in-out;
  padding: 10px 35px;
}
.contact .contact_area form .send_btn button:hover {
  background: #554de9;
  transition: all 0.3s ease-in-out;
}
.contact .contact_area form .send_btn button:focus {
  box-shadow: 0px 0px 5px #4d80e9;
}

footer {
  padding: 80px 0px 0;
  background: #253b65;
  color: rgb(255, 255, 255);
}
footer p, footer a {
  color: rgb(255, 255, 255);
}
footer .footer_item {
  padding-right: 20px;
  padding-bottom: 40px;
}
footer .footer_item h3 {
  margin-bottom: 25px;
  color: rgb(255, 255, 255);
  font-size: 24px;
}
footer .footer_item h2 a {
  width: 200px;
  margin-bottom: 20px;
}
footer .footer_item p {
  margin-bottom: 20px;
}
footer .footer_item ul li {
  padding-bottom: 15px;
}
footer .footer_item ul li i {
  color: rgb(255, 255, 255);
  margin-right: 10px;
  font-size: 18px;
}
footer .footer_item ul.link li {
  display: block;
}
footer .footer_item ul.link li a {
  transition: all 0.3s ease-in-out;
}
footer .footer_item ul.link li a:hover {
  color: #b7b7b7;
  transition: all 0.3s ease-in-out;
}
footer .footer_item .signupbtn {
  margin-bottom: 30px;
}
footer .footer_item .signupbtn a {
  padding: 10px 24px;
  text-align: center;
  background: #4d80e9;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
footer .footer_item .signupbtn a:hover {
  background: #554de9;
  transition: all 0.3s ease-in-out;
}
footer .footer_item .signupbtn a:focus {
  box-shadow: 0px 0px 5px #4d80e9;
}
footer .footer_item ul.social li a {
  margin-right: 10px;
}
footer .footer_item ul.social li a i {
  font-size: 30px;
  transition: all 0.3s ease-in-out;
}
footer .footer_item ul.social li a i:hover {
  color: #b7b7b7;
  transition: all 0.3s ease-in-out;
}
footer .footer_bottom {
  background: rgba(77, 128, 233, 0.4);
  padding: 30px 0;
}
footer .footer_bottom p a {
  display: inline-block;
}
footer .footer_bottom p a:hover {
  color: white;
  text-decoration: underline;
}
footer .footer_bottom .payment_img {
  text-align: right;
}

.scrolltop {
  position: fixed;
  right: 20px;
  bottom: 50px;
  visibility: hidden;
  z-index: -5;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.scrolltop.show {
  visibility: visible;
  z-index: 99;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.scrolltop p {
  width: 40px;
  cursor: pointer;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: #4d80e9;
  color: rgb(255, 255, 255);
  border-radius: 50px;
  font-size: 20px;
}
.scrolltop p i {
  position: relative;
  top: 0;
  animation: arrow 2s infinite;
}
@keyframes arrow {
  0% {
    top: -3px;
  }
  50% {
    top: 3px;
  }
  100% {
    top: -3px;
  }
}

/* Preloader styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

.preloader__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #554de9;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Hide preloader when it is not active */
.preloader:not(.active) {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}/*# sourceMappingURL=style.css.map */