@import url("https://fonts.cdnfonts.com/css/nexa-bold?styles=29919,29913");
body {
  font-family: "Nexa", sans-serif;
  overflow-x: hidden;
}

html,
body {
  position: relative;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

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

.btn.size {
  min-width: 150px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
header .logo {
  width: 200px;
}
@media (max-width: 992px) {
  header .logo {
    width: 100px;
  }
}
header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .links ul li a {
  text-decoration: none;
  color: rgba(5, 185, 192, 0.5);
  font-size: 1.2rem;
  font-weight: 500;
  transition: 0.2s;
}
header .links ul li a.active, header .links ul li a:hover {
  color: rgb(5, 185, 192);
  font-weight: bold;
}
header .lang ul li a {
  text-decoration: none;
  color: rgba(5, 185, 192, 0.5);
  font-size: 1.4rem;
  font-weight: 500;
  transition: 0.2s;
  position: relative;
}
header .lang ul li a.active, header .lang ul li a:hover {
  color: rgb(5, 185, 192);
  font-weight: bold;
}
header .lang ul li:nth-child(2) a::before {
  content: "";
  width: 2px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(5, 185, 192);
}
[dir=rtl] header .lang ul li:nth-child(2) a::before {
  left: auto;
  right: 0;
}
header .actions {
  display: flex;
  align-items: center;
}
header .social-media {
  display: flex;
}
header .social-media i {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  padding: 0.5rem;
  display: inline-flex;
}
header .social-media i::after {
  content: "";
  background-color: rgba(5, 185, 192, 0.1);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 8px;
}
header .go-to .btn {
  font-weight: 500;
}
header .go-to .btn-primary {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  border: none;
}
header .go-to .btn-primary:hover {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 150.43%);
}
header .go-to .btn-outline-primary {
  border-color: rgb(5, 185, 192);
  color: rgb(5, 185, 192);
}
header .go-to .btn-outline-primary:hover {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  color: #fff;
}

.intro {
  padding: 5rem 0;
  background: linear-gradient(180deg, #05b9c0 37.74%, rgba(5, 185, 192, 0) 128.77%);
}
.intro .intro-content {
  position: relative;
  z-index: 2;
}
.intro .intro-content h1 {
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
}
@media (max-width: 556px) {
  .intro .intro-content h1 {
    margin-bottom: 0.5rem;
  }
}
.intro .intro-content h2 {
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-align: center;
}
.intro .intro-content p {
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
}
[dir=rtl] .intro .intro-content p {
  font-weight: 400;
}
.intro .intro-content .btn {
  min-width: 170px;
  color: #fff;
  padding: 8px 0;
  font-weight: bold;
}
@media (max-width: 400px) {
  .intro .intro-content .btn {
    min-width: auto;
    padding: 8px 10px;
  }
}
.intro .intro-content .btn i {
  font-size: 1.2rem;
}
.intro .intro-content .btn svg {
  width: 1.5rem;
}
.intro .intro-content .btn-primary {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  border: none;
}
.intro .intro-content .btn-primary:hover {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 150.43%);
}
.intro .image .main-img .ellipse1 {
  position: absolute;
  top: 0;
  right: 4rem;
  width: 350px;
  height: 350px;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 2;
}
.intro .image .main-img .ellipse2 {
  position: absolute;
  bottom: -100px;
  right: -1rem;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 2;
}
.intro .image .main-img .phone {
  z-index: 3;
  filter: drop-shadow(-29px 19px 20px rgba(5, 185, 192, 0.3));
  animation: movebounce 5s linear infinite;
}
@media (max-width: 991.98px) {
  .intro .image .main-img {
    display: none;
    text-align: center;
    margin-top: 1rem;
  }
  .intro .image .main-img .ellipse1 {
    display: none;
  }
  .intro .image .main-img .ellipse2 {
    display: none;
  }
  .intro .image .main-img .phone {
    position: static;
    width: 190px;
  }
}

.intro-school .intro-content h1 {
  color: #000;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.intro-school .intro-content h1 span {
  color: rgb(5, 185, 192);
}
.intro-school .intro-content p {
  color: #000;
  font-weight: 500;
  font-size: 1.1rem;
}
[dir=rtl] .intro-school .intro-content p {
  font-weight: 400;
}
@media (max-width: 556px) {
  .intro-school .intro-content p {
    font-size: 0.9rem !important;
  }
}
.intro-school .intro-content .btn-primary {
  padding: 0.5rem 2rem;
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  border: none;
}
.intro-school .intro-content .btn-primary:hover {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 150.43%);
}
@media (max-width: 556px) {
  .intro-school .image {
    text-align: center;
  }
  .intro-school .image img {
    max-width: 250px;
    display: none;
  }
}

.statistics ul {
  display: flex;
}
.statistics ul li {
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.statistics ul li::after {
  content: "";
  position: absolute;
  height: 60px;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  right: 0;
}
.statistics ul li span {
  color: #000;
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: bolder;
  margin-bottom: 1rem;
}
.statistics ul li p {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
  font-weight: bold;
  font-size: 1.2rem;
}
.statistics ul li:first-child {
  padding-left: 0;
}
.statistics ul li:last-child {
  padding-right: 0;
}
.statistics ul li:last-child::after {
  content: "";
  height: 20px;
  border: none;
}
@media (max-width: 991.98px) {
  .statistics ul {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .statistics ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .statistics ul li {
    padding: 0px;
    margin-top: 10px;
  }
  .statistics ul li::after {
    display: none;
  }
}

.statistics-section {
  margin: 0 0 300px 0;
  position: relative;
}
@media (max-width: 767.98px) {
  .statistics-section {
    margin: 0 0 100px 0;
  }
}
.statistics-section::before {
  content: "";
  background: url(../images/wave.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  display: block;
  height: 310px;
  position: absolute;
  top: 0;
  opacity: 0.7;
}
@media (max-width: 767.98px) {
  .statistics-section::before {
    height: 250px;
  }
}
.statistics-section .statistics ul {
  justify-content: center;
}
.statistics-section .statistics ul li span {
  color: #fff;
}
.statistics-section .statistics ul li p {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.statistics-section .statistics ul li::after {
  border-color: #fff;
}

.saas-tools {
  position: relative;
  z-index: 1;
}
.saas-tools .section-title {
  text-align: center;
  max-width: 720px;
  margin-bottom: 70px;
  margin-top: -6px;
  margin-left: auto;
  margin-right: auto;
}
.saas-tools .section-title h2 {
  font-weight: 700;
  margin-bottom: 3rem;
  color: rgb(5, 185, 192);
}
@media (min-width: 557px) {
  .saas-tools .section-title h2 {
    font-size: 35px;
  }
}
.saas-tools .bubble-animate .circle.small {
  opacity: 0.1;
}
.saas-tools .bubble-animate .circle.medium {
  opacity: 0.1;
}

.tab {
  overflow: hidden;
  background: #fff;
  padding: 30px;
  box-shadow: 0 6px 13px 0 rgba(137, 173, 255, 0.35);
  border-radius: 5px;
}
.tab .tabs {
  list-style-type: none;
  margin-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tab .tabs li {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 16.6%;
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
}
.tab .tabs li:first-child {
  padding-left: 0;
}
.tab .tabs li:last-child {
  padding-right: 0;
}
.tab .tabs li a {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.tab .tabs li a i {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #d9d9d9;
  color: #2d489e;
  text-align: center;
  font-size: 25px;
  border-radius: 50%;
  margin-bottom: 15px;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.tab .tabs li a:hover {
  color: rgb(5, 185, 192);
}
.tab .tabs li a:hover i {
  color: #fff;
  background: rgb(5, 185, 192);
}
.tab .tabs li.current i {
  color: #fff;
  background: rgb(5, 185, 192);
}
.tab .tabs li.current a {
  color: rgb(5, 185, 192);
}
.tab .tab_content .tabs_item {
  display: none;
}
.tab .tab_content .tabs_item:first-child {
  display: block;
}
.tab .tab_content .tabs_item .tabs_item_content h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 15px;
}
.tab .tab_content .tabs_item .tabs_item_content p {
  margin-bottom: 0;
}
.tab .tab_content .tabs_item .tabs_item_content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-top: 15px;
}
.tab .tab_content .tabs_item .tabs_item_content ul li {
  margin-top: 10px;
  font-weight: 400;
  color: #000;
}
.tab .tab_content .tabs_item .tabs_item_content ul li:first-child {
  margin-top: 0;
}
.tab .tab_content .tabs_item .tabs_item_content ul li i {
  margin-right: 3px;
  font-size: 14px;
  color: rgb(5, 185, 192);
}
[dir=rtl] .tab .tab_content .tabs_item .tabs_item_content ul li i {
  margin-right: 0;
  margin-left: 3px;
}
.tab .tab_content .tabs_item_img .phone {
  width: 270px;
}
.tab .tab_content .tabs_item_img .image-wrapper::before {
  content: "";
  width: 100%;
  background: url(../images/macbookImage.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: 2;
  margin: auto;
}
@media (max-width: 767px) {
  .tab .tab_content .tabs_item_img .image-wrapper::before {
    width: calc(100% - 14px);
  }
}
@media (max-width: 350) {
  .tab .tab_content .tabs_item_img .image-wrapper::before {
    width: calc(100% - 25px);
  }
}

.trust-us {
  margin-top: 8rem;
  background-color: rgba(5, 185, 192, 0.1);
  padding: 2rem;
}
.trust-us h2 {
  color: rgb(5, 185, 192);
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}
.trust-us .eduction-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-us .eduction-logo img {
  width: 140px;
  margin-right: 10px;
}
[dir=rtl] .trust-us .eduction-logo img {
  margin-right: 0;
  margin-left: 10px;
}
.trust-us .eduction-logo img:not(:last-child) {
  margin-top: 10px;
}

.download-app-content h2 {
  color: rgb(5, 185, 192);
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}
.download-app-content p {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 4rem;
}
@media (max-width: 991.98px) {
  .download-app-content p {
    margin-bottom: 0;
  }
}
.download-app-content .actions .btn {
  min-width: 170px;
  color: #fff;
  padding: 8px 0;
  font-weight: bold;
}
.download-app-content .actions .btn i {
  font-size: 1.2rem;
}
.download-app-content .actions .btn svg {
  width: 1.5rem;
}
@media (max-width: 400px) {
  .download-app-content .actions .btn {
    min-width: auto;
    padding: 8px 10px;
  }
}
.download-app-content .actions .btn-primary {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  border: none;
}
.download-app-content .actions .btn-primary:hover {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 150.43%);
}
.download-app .download-app-img img {
  max-width: 350px;
  width: 100%;
}

[dir=rtl] .steps .step {
  flex: 1;
}

.how-to-work .work-content h2 {
  color: rgb(5, 185, 192);
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 767.98px) {
  .how-to-work .work-content h2 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  .how-to-work .work-content h2::before, .how-to-work .work-content h2::after {
    display: none;
  }
}
.how-to-work .steps {
  margin-top: 70px;
}
@media (max-width: 767.98px) {
  .how-to-work .steps {
    margin-top: 40px;
  }
}
.how-to-work .steps .shaps-border {
  position: relative;
}
.how-to-work .steps .shaps-border::after {
  content: "";
  width: 59%;
  position: absolute;
  top: 50px;
  right: -19%;
  border: 1px dashed rgb(5, 185, 192);
}
[dir=rtl] .how-to-work .steps .shaps-border::after {
  width: 66%;
  right: -33%;
}
.how-to-work .steps .shaps-border::before {
  content: "";
  width: 59%;
  position: absolute;
  top: 50px;
  left: -19%;
  border: 1px dashed rgb(5, 185, 192);
}
[dir=rtl] .how-to-work .steps .shaps-border::before {
  width: 66%;
  left: -33%;
}
@media (max-width: 991.98px) {
  .how-to-work .steps .shaps-border::before {
    display: none;
    width: 42%;
    left: -12%;
  }
  .how-to-work .steps .shaps-border::after {
    display: none;
    width: 42%;
    right: -12%;
  }
}
@media (max-width: 767.98px) {
  .how-to-work .steps .shaps-border::after, .how-to-work .steps .shaps-border::before {
    display: none;
  }
}
.how-to-work .steps .icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 40px;
}
.how-to-work .steps .icon i,
.how-to-work .steps .icon svg {
  font-size: 3rem;
  color: rgb(5, 185, 192);
  font-weight: 900;
}
.how-to-work .steps .icon.bg-primary {
  background-color: rgba(5, 185, 192, 0.1) !important;
}
.how-to-work .steps .icon::after {
  content: "";
}
@media (max-width: 575.98px) {
  .how-to-work .steps .icon {
    margin-bottom: 20px;
  }
  .how-to-work .steps .icon span {
    margin-bottom: 20px;
  }
}
.how-to-work .steps span {
  margin-bottom: 40px;
  color: rgb(5, 185, 192);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
@media (max-width: 575.98px) {
  .how-to-work .steps span {
    margin-bottom: 20px;
  }
}
.how-to-work .steps p {
  max-width: 60%;
  margin: auto;
}
@media (max-width: 991.98px) {
  .how-to-work .steps p {
    max-width: 80%;
  }
}

.contact .contact-form h2 {
  color: rgb(5, 185, 192);
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 991.98px) {
  .contact .contact-form h2 {
    margin-bottom: 1rem;
  }
}
.contact .contact-form p {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 65%;
}
@media (max-width: 991.98px) {
  .contact .contact-form p {
    max-width: 100%;
  }
}
.contact .contact-form .form-control-icon-left {
  margin-bottom: 2rem;
  position: relative;
}
.contact .contact-form .form-control-icon-left input,
.contact .contact-form .form-control-icon-left textarea,
.contact .contact-form .form-control-icon-left select {
  padding-left: 3.1rem;
  background-color: rgba(236, 236, 236, 0.25);
}
.contact .contact-form .form-control-icon-left i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: rgb(5, 185, 192);
  font-size: 1.2rem;
}
.contact .contact-form .form-control-icon-left.icon-textarea i {
  position: absolute;
  left: 1.1rem;
  top: 10%;
  transform: translateY(-10%);
  z-index: 1;
  color: rgb(5, 185, 192);
  font-size: 1.2rem;
}
.contact .contact-form .form-control-icon-right input {
  padding-right: 3.1rem;
}
.contact .contact-form .form-control-icon-right .bi-eye {
  left: unset;
  right: 1.1rem;
}
.contact .contact-form .btn-primary {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  border: none;
}
.contact .contact-form .btn-primary:hover {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 150.43%);
}

footer {
  background: rgb(5, 185, 192);
  padding: 3rem;
}
@media (max-width: 575.98px) {
  footer {
    padding: 3rem 1rem;
  }
}
footer .footer-about h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}
footer .footer-about p {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}
footer .footer-about .btn {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 2rem;
}
footer .footer-about .btn-primary {
  background: #393939;
  border: none;
}
footer .footer-about .btn-primary:hover {
  background: #2a2a2a;
}
footer h4 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
footer label {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
@media (max-width: 556px) {
  footer label {
    font-size: 1rem;
  }
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  text-decoration: none;
  color: #e2e2e2;
  transition: 0.2s;
}
footer ul li a:hover {
  color: #fff;
}
footer .footer-border {
  width: calc(100% - 6rem);
  height: 5px;
  background: linear-gradient(85.21deg, #294cff -16.85%, #50ced3 260.43%);
}
@media (max-width: 575.98px) {
  footer .footer-border {
    width: 100%;
    height: 3px;
  }
}
footer .mail a {
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
  font-size: 0.9rem;
  font-weight: 700;
}
footer .mail a:hover {
  color: rgb(5, 185, 192);
}
footer .share {
  display: flex;
  align-items: center;
}
footer .share li {
  margin-bottom: 0;
}
footer .share li a {
  font-size: 1.4rem;
  transition: 0.2s;
}
footer .share li a:hover {
  color: #fff;
}
footer .share li:not(:last-child) {
  margin-right: 0.7rem;
}
[dir=rtl] footer .share li:not(:last-child) {
  margin-left: 0.7rem;
  margin-right: 0;
}
footer .copyright p {
  color: #fff;
  margin-bottom: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.mobile-nav .logo img {
  width: 150px;
}
.mobile-nav .mobile-nav-toggle .btn {
  font-size: 2rem;
}

.mobile-header {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 290px;
  min-height: 100vh;
  z-index: 99999;
  background-color: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-header.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.mobile-header .pages {
  display: flex;
  justify-content: center;
}
.mobile-header .pages .btn {
  font-weight: 500;
  min-width: 120px;
}
.mobile-header .pages .btn-primary {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  border: none;
}
.mobile-header .pages .btn-primary:hover {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 150.43%);
}
.mobile-header .pages .btn-outline-primary {
  border-color: rgb(5, 185, 192);
  color: rgb(5, 185, 192);
}
.mobile-header .pages .btn-outline-primary:hover {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  color: #fff;
}
.mobile-header .links {
  margin-top: 2rem;
}
.mobile-header .links ul li a {
  text-decoration: none;
  color: rgba(5, 185, 192, 0.5);
  font-size: 1.2rem;
  font-weight: 500;
  transition: 0.2s;
}
.mobile-header .links ul li a.active, .mobile-header .links ul li a:hover {
  color: rgb(5, 185, 192);
  font-weight: bold;
}
.mobile-header .local {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.mobile-header .social-media {
  display: flex;
}
.mobile-header .social-media i {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  padding: 0.5rem;
  display: inline-flex;
}
.mobile-header .social-media i::after {
  content: "";
  background-color: rgba(5, 185, 192, 0.1);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 8px;
}
.mobile-header .lang ul li a {
  text-decoration: none;
  color: rgba(5, 185, 192, 0.5);
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.2s;
  position: relative;
}
.mobile-header .lang ul li a.active, .mobile-header .lang ul li a:hover {
  color: rgb(5, 185, 192);
  font-weight: bold;
}
.mobile-header .lang ul li:nth-child(2) a::before {
  content: "";
  width: 2px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(5, 185, 192);
}
[dir=rtl] .mobile-header .lang ul li:nth-child(2) a::before {
  left: auto;
  right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tab .tabs {
    padding-right: 30px;
    padding-left: 30px;
  }
  .tab .tabs li a {
    font-size: 16px;
  }
  .tab .tab_content .tabs_item .tabs_item_content h3 {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .tab {
    padding: 20px;
  }
  .tab .tabs {
    margin-bottom: 25px;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 0;
    padding-bottom: 15px;
    padding-right: 0;
    border-bottom: 1px solid #eeeeee;
  }
  .tab .tabs li {
    -ms-flex: 0 0 33.3333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    margin-bottom: 20px;
  }
  .tab .tabs li:first-child {
    padding-left: 15px;
  }
  .tab .tabs li:last-child {
    padding-right: 15px;
  }
  .tab .tabs li a {
    font-size: 15px;
  }
  .tab .tabs li a i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
  .tab .tab_content .tabs_item .tabs_item_content {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .tab .tab_content .tabs_item .tabs_item_content h3 {
    font-size: 20px;
  }
}
.pb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 575.98px) {
  .pb-100 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.pb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 575.98px) {
  .pb-50 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.mobile-header .social-media a {
  font-family: sans-serif;
}

.tab .tabs li a i {
  font-family: sans-serif;
}

.btn-gradient {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 260.43%);
  border: none;
}
.btn-gradient:hover {
  background: linear-gradient(85.21deg, #50ced3 -16.85%, #294cff 150.43%);
}

.btn-gradient-outline {
  color: rgba(5, 185, 192, 0.5);
  font-size: 1.2rem;
  font-weight: 500;
  transition: 0.2s;
}

.overlay {
  z-index: 1060;
  position: fixed;
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.5);
  inset: 0px;
}

.cubes {
  overflow: hidden;
}
@media (max-width: 768px) {
  .cubes {
    display: none;
  }
}

.cube {
  position: absolute;
  top: 70%;
  left: 45%;
  width: 10px;
  height: 10px;
  border: solid 1px rgba(45, 72, 158, 0.5);
  transform-origin: top left;
  transform: scale(0) rotate(0deg) translate(-50%, -50%);
  -webkit-animation: cube 12s ease-in forwards infinite;
  animation: cube 12s ease-in forwards infinite;
  z-index: 0;
}

.cube:nth-child(2n) {
  border-color: rgba(45, 72, 158, 0.5);
}

.cube:nth-child(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  left: 15%;
  top: 25%;
}

.cube:nth-child(3) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  left: 86%;
  top: 50%;
}

.cube:nth-child(4) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  left: 70%;
  top: 20%;
}

.cube:nth-child(5) {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
  left: 10%;
  top: 50%;
}

.cube:nth-child(6) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
  left: 50%;
  top: 20%;
}

@media (min-width: 992px) {
  .about-us,
  .about-us-contact {
    max-width: 60%;
    margin: auto;
  }
}
.about-us-list ul li {
  margin-bottom: 0.5rem;
  display: flex;
}
.about-us-list ul li p {
  margin-bottom: 0.5rem;
}
.about-us-list ul li i {
  color: rgb(25, 135, 84);
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

#map iframe {
  height: 500px;
  width: 100%;
  margin-bottom: -10px;
}

@-webkit-keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}
@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.single-image-carousel.carousel-full-desktop {
  padding: 0 0 138px;
}

.single-image-carousel.carousel-full-desktop::before {
  content: "";
  width: 100%;
  background: url(../img/demo/photos/macbookImage.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: 2;
  margin: auto;
}

@media (max-width: 767px) {
  .single-image-carousel.carousel-full-desktop::before {
    width: calc(100% - 14px);
  }
}
@media (max-width: 350) {
  .single-image-carousel.carousel-full-desktop::before {
    width: calc(100% - 25px);
  }
}
.terms-and-conditions h2 {
  font-weight: 900;
}
.terms-and-conditions h4 {
  font-weight: 900;
}

.terms-list {
  padding: 1rem 2rem;
  list-style: circle;
}
.terms-list li {
  margin-bottom: 0.5rem;
}
.terms-list li label {
  font-weight: 700;
}

.org-form .card {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.org-form h2 {
  font-size: 1.5rem;
  color: rgb(5, 185, 192);
  font-weight: bold;
}
.org-form p {
  font-size: 1rem;
}

@media screen and (max-width: 480px) {
  [data-aos] {
    transition-duration: 0 !important;
  }
}

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