@font-face {
  font-family: "RB";
  src: url("../fonts/RB-Bold.eot");
  src: url("../fonts/RB-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/RB-Bold.woff2") format("woff2"),
    url("../fonts/RB-Bold.woff") format("woff"),
    url("../fonts/RB-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RB";
  src: url("../fonts/RB-Regular.eot");
  src: url("../fonts/RB-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/RB-Regular.woff2") format("woff2"),
    url("../fonts/RB-Regular.woff") format("woff"),
    url("../fonts/RB-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
  direction: rtl;
}

::selection {
  background-color: #3eaf91 !important;
  color: #fff !important;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #707070;
  width: 7px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #707070;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #3eaf91;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

body {
  font-family: "RB";
  font-weight: normal;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  position: relative;
  text-align: start;
}

/* Page Setting
=====================*/
section {
  position: relative;
  z-index: 99;
}
.sec_id {
  width: 100%;
  position: absolute;
  top: -80px;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}
.text-start {
  text-align: right !important;
}
.section_title {
  color: #000000;
  padding: 25px 0;
  position: relative;
}
.section_title.bord {
  border-top: 1px solid #d8dee1;
}
.section_title h3 {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 20px;
  color: #002f35;
}
.section_title p {
  font-size: 16px;
  margin: 0 auto;
  max-width: 570px;
}
@media all and (max-width: 576px) {
  .section_title {
    padding: 25px 0 !important;
  }
  .section_title h3 {
    font-size: 26px !important;
  }
  .section_title p {
    font-size: 14px;
  }
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Custom button
======================*/
.link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  padding: 0 30px;
  background-color: #3eaf91;
  color: #fff;
  border: 0;
  box-shadow: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: 0.4s all linear;
  -moz-transition: 0.4s all linear;
  -ms-transition: 0.4s all linear;
  -o-transition: 0.4s all linear;
  transition: 0.4s all linear;
}
.link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  background-color: #002f35;
  -webkit-transition: 0.4s all linear;
  -moz-transition: 0.4s all linear;
  -ms-transition: 0.4s all linear;
  -o-transition: 0.4s all linear;
  transition: 0.4s all linear;
}
.link span {
  position: relative;
  z-index: 999;
}
.link span i {
  margin-inline-start: 10px;
}
.link:hover {
  color: #fff;
}
.link:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/*  Header 
======================*/
header {
  position: fixed;
  top: 20px;
  right: 0px;
  width: 100%;
  background-color: transparent;
  z-index: 9998;
  padding: 0;
  min-height: 102px;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
header.move {
  top: 0;
  background-color: #fff;
}
header .container {
  position: relative;
  min-height: 85px;
}
header .container .flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .navbar-brand {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 999;
  height: 100px;
}
header .navbar-brand img {
  height: 100%;
}
header .btns {
  z-index: 9999;
}
header .btns .social {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
header .btns .menu-btn {
  vertical-align: middle;
  border: 0;
  padding: 0;
  background-color: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: none;
}
header .btns .menu-btn span {
  display: block;
  background-color: #fff;
  height: 1px;
  width: 55%;
  margin: 5px auto;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
@media (max-width: 991px) {
  header .btns .menu-btn {
    display: inline-block;
  }
}
.navbar {
  padding: 0px;
  margin: 0px;
  margin-top: -102px;
}
.navbar .container {
  min-height: auto;
}
.navbar .navbar-nav {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 31px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.navbar .navbar-nav li {
  display: inline-block;
}
.navbar .navbar-nav li a {
  position: relative;
  display: block;
  padding: 0;
  margin: 0 25px;
  font-size: 16px;
  font-weight: bold;
  color: #002f35;
  text-align: center;
  line-height: 45px;
  overflow: hidden;
}
.navbar .navbar-nav li.active a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 3px;
  background-color: #3eaf91;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
.navbar .navbar-nav li a.active,
.navbar .navbar-nav li a:hover {
  color: #000000;
}
@media (max-width: 1199px) {
  .navbar ul.navbar-nav li a {
    margin: 0 15px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .navbar {
    margin-top: 0;
    background-color: #000000;
    height: 100%;
    max-height: 440px;
    overflow: hidden;
    overflow-y: auto;
  }
  .navbar ul.navbar-nav {
    border-top: 1px solid #fff1;
    display: block;
    text-align: start;
    padding: 10px 0;
  }
  .navbar ul.navbar-nav li {
    display: block;
  }
  .navbar ul.navbar-nav li a {
    text-align: start;
    margin: 0;
    color: #fff !important;
  }
  .navbar ul.navbar-nav li a:hover {
    color: #39bbec;
  }
}
/* Home
======================*/
.main_slider {
  padding: 140px 0 70px;
  position: relative;
  min-height: 540px;
}
.main_slider::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url(../images/screens/screen_bc.png) no-repeat center;
  background-size: cover;
  transform: rotateX(180deg);
}
.main_slider .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.caption h1 {
  font-size: 72px;
  font-weight: bold;
  margin: 0;
  line-height: 90px;
  color: #002f35;
}
.caption h3 {
  font-size: 28px;
  font-weight: bold;
  margin: 35px 0;
  line-height: 50px;
  color: #002f35;
}
.caption a {
  display: inline-block;
  margin-left: 15px;
  width: 170px;
}
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.img_groups {
  position: relative;
  height: 520px;
}
.img_groups img {
  position: absolute;
  width: auto;
  height: 520px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 5px rgb(0 0 0 / 25%);
}
.img_groups img:nth-child(1) {
  z-index: 99;
  box-shadow: 0 0 5px rgb(0 0 0 / 50%);
}
.img_groups img:nth-child(2) {
  left: auto;
  height: 450px;
  transform: skewX(-3deg);
}
.img_groups img:nth-child(3) {
  right: auto;
  height: 450px;
  transform: skewX(3deg);
}
@media all and (max-width: 991px) {
  .main_slider .caption {
    margin-bottom: 50px;
  }
  .caption,
  .caption h1,
  .caption h3 {
    text-align: center;
    max-width: 100%;
  }
  .caption h3 {
    font-size: 32px;
    line-height: 35px;
  }
  .img_groups {
    width: 575px;
    margin: auto;
  }
}
@media all and (max-width: 767px) {
  .img_groups {
    width: 100%;
  }
}
@media all and (max-width: 576px) {
  .caption h1 {
    font-size: 42px;
    line-height: 50px;
  } .caption h3 {
    font-size: 22px;
  }
   .caption a {
  width: 145px;
  margin: 0;
  }
   .img_groups {
    height: 370px;
  }
  .img_groups img{
    
  }
  .img_groups img:nth-child(1) {height: 370px;}
.img_groups img:nth-child(2) {
  height: 280px;
}
.img_groups img:nth-child(3) {
  height: 280px;
}
}

/* Servies
=====================*/
.services {
  padding: 70px 0;
}
.services::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  width: 230px;
  height: 267px;
  background: url(../images/services/services_icon.png) no-repeat;
  background-size: contain;
}
@media all and (max-width: 576px) {
  .services::before {
    top: 50px;
  }
}
.service_item {
  padding: 40px 25px;
  border-radius: 15px;
  margin: 25px auto;
  width: 100%;
  text-align: center;
  position: relative;
  background-color: #fff;
}

.service_item h3 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  color: #002f35;
}
.service_item img {
  margin: 20px auto;
  width: 78px;
  height: 69px;
  object-fit: contain;
}
.service_item p {
  margin: 0;
  font-size: 14px;
  padding-top: 25px;
  position: relative;
  line-height: 25px;
}
.service_item p::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  margin: auto;
  width: 45px;
  height: 4px;
  background-color: #3eaf91;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
@media all and (max-width: 1199px) {
  .service_item {
    padding: 20px;
  }
}
@media all and (max-width: 991px) {
  .service_item p {
    max-width: 100%;
  }
}
@media all and (max-width: 767px) {
  .service_item {
    padding: 15px;
    margin-bottom: 0;
  }
}

/* screens
======================*/
.screens {
  padding: 70px 0;
}
.screens::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url(../images/screens/screen_bc.png) no-repeat center;
  background-size: cover;
}
.screens .section_title {
  padding-bottom: 60px;
  position: relative;
}
.screen_item {
  display: block;
  border: 15px solid #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 0 5px rgb(0 0 0 / 25%);
}
.screen_item img {
  border-radius: 10px;
}

/* Why
=====================*/
.why {
  background-color: #002b32;
  position: relative;
  padding: 35px 0;
}
.why::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bc.svg) no-repeat center;
  background-size: cover;
}
.why_txt h3 {
  color: #fff;
}
.why_txt p {
  max-width: 940px;
  margin: 30px auto 45px;
  color: #fff;
  font-size: 24px;
}
.why_txt a {
  width: 180px;
  display: inline-block;
  margin: 0 10px;
}
@media all and (max-width: 576px) {
  .why_txt p {
    font-size: 14px;
    line-height: 25px;
    margin: 15px auto;
  }
  .why_txt a {
    width: 145px;
    margin: auto;
  }
}

/* Faqs
=====================*/
.help {
  padding: 0px 0 70px;
}
@media all and (max-width: 767px) {
  .help {
    padding: 0px 0 50px;
  }
}
.help .section_title.bord {
  padding: 50px 0;
  text-align: center;
}
.accordion-item {
  border-radius: 25px !important;
  margin-bottom: 25px;
}
.accordion-button {
  border-radius: 25px !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background-color: transparent;
  box-shadow: none;
  border-radius: 25px !important;
  padding: 15px 25px 15px 60px;
  line-height: 20px;
  text-align: right;
}
@media all and (max-width: 576px) {
  .accordion-button {
    font-size: 12px;
  }
}
.accordion-collapse {
  padding: 10px 25px 25px;
  font-size: 15px;
  line-height: 29px;
}
.accordion-button::after {
  position: absolute;
  left: 15px;
  background-color: #f1f6f8;
  border-radius: 25px;
  width: 40px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0;
  font-family: "Font Awesome 5 Free";
  background-image: none !important;
  font-size: 12px;
  content: "\f068";
  font-weight: 900;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #000;
}
.accordion-button:not(.collapsed)::after {
  content: "\f067";
}

/* Footer
======================*/
footer {
  padding: 70px 0 35px;
  background-color: #002c33;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bc.svg) no-repeat center;
  background-size: cover;
}
footer .container {
  position: relative;
}
footer p {
  color: #fff;
  font-size: 16px;
  margin: 25px auto;
}
footer span {
  display: block;
  font-weight: bold;
  font-size: 26px;
  margin: 0 auto 15px;
}
.social {
  text-align: center;
  width: 100%;
  padding: 0;
}
.social li {
  display: inline-block;
}
.social li a {
  background-color: #2f2f2f;
  border-radius: 50%;
  color: #fff;
  width: 38px;
  height: 38px;
  line-height: 38px;
  font-size: 16px;
}
.fa-facebook {
  background-color: #1877f2 !important;
}
.fa-twitter {
  background-color: #1da1f2 !important;
}
.fa-google {
  background-color: #b92b27 !important;
}
.social li a:hover {
  color: #fff;
}
.up_btn {
  width: 50px;
  height: 50px;
  background-color: #3eaf91;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  margin: auto;
  color: #fff !important;
  display: block;
  z-index: 999;
}
.loading{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  z-index: 9999;
}