:root {
  --primary: #469697;
  --secondary: #333;
  --filterPrimary: invert(62%) sepia(10%) saturate(1927%) hue-rotate(132deg) brightness(83%) contrast(85%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-track {
  background-color: #eee;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: rtl;
  overflow-x: hidden;
}

div::-webkit-scrollbar {
  height: 5px;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: transparent;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 60px !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

form textarea {
  resize: none;
}

form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floatingY {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@keyframes floatingY {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

.slide_ltr {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.slide_ltr.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_ltr.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slide_rtl {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.slide_rtl.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_rtl.no_scale {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in {
  -webkit-animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotating {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes wind {
  0% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  100% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
}

@keyframes wind {
  0% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  100% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 100%;
  height: 100%;
  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;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: '\f0da';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: '\f0d9';
}

.butn {
  position: relative;
  padding: .7rem 1.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  text-align: center;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: 25px;
  font-weight: bold;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.white_butn {
  background-color: #fff;
  color: #333;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn:hover {
  background-color: #347273;
  border: 1px solid #347273;
  color: #fff !important;
}

.butn:hover i,
.butn:hover .icon {
  animation: pulse .5s both infinite alternate-reverse;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.icon-18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar.navbar-fixed-top {
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.navs-container .navbar.navbar-fixed-top.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: -20px;
  opacity: .99;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  -webkit-box-shadow: 3px 10px 30px #8881;
          box-shadow: 3px 10px 30px #8881;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  background-color: #fff;
}

.navs-container .navbar.navbar-fixed-top.scrolled .logo {
  width: 60px;
}

.navs-container .navbar .logo {
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  margin: 0 10px;
  font-size: 15px;
  position: relative;
  font-weight: 500;
}

.navs-container .navbar .nav-link::after {
  content: '';
  width: 0px;
  height: 2px;
  background-color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  position: absolute;
  bottom: 0;
  right: 5px;
}

.navs-container .navbar .nav-link.active {
  font-weight: 700;
  color: var(--primary);
}

.navs-container .navbar .nav-link.active::after, .navs-container .navbar .nav-link:hover::after {
  width: 20px;
}

.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  background-color: #eee;
  padding: 10px 0;
  border-top: 1px solid #f5f5f5;
  padding-top: 70px;
  position: relative;
}

.footer .logo {
  width: 50px;
}

.footer .p {
  font-size: 13px;
}

.footer .links {
  font-size: 13px;
  color: #888;
}

.footer .links a {
  margin: 0 5px;
  color: #666;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  padding-top: 200px;
}

.header .text_box {
  margin-top: 50px;
}

.header .text_box .title {
  font-size: calc(2.5vw + 30px);
}

.header .text_box .subtitle {
  color: #777;
  font-weight: 500;
}

.header .text_box .p {
  color: #888;
  line-height: 2;
}

.header .sec-img {
  height: 550px;
  border-radius: 25px;
  border: 7px solid #707070;
  -o-object-position: top;
     object-position: top;
  -webkit-box-shadow: 3px 6px 25px 0 #0001;
          box-shadow: 3px 6px 25px 0 #0001;
}

.header .sec-img.screen_img1 {
  margin-top: -50px;
  -webkit-animation: floatingY 3s infinite both linear alternate;
          animation: floatingY 3s infinite both linear alternate;
}

.header .sec-img.screen_img2 {
  margin-top: 0px;
  -webkit-animation: wind 5s infinite both linear alternate;
          animation: wind 5s infinite both linear alternate;
}

.header .shape {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  top: -10%;
  left: -48%;
  width: 100%;
  object-fit: contain;
  opacity: 0.1;
  height: 100%;
}

.butns .down_link {
  border-radius: 7px;
  border: 1px solid #eee;
  background-color: #f8f8f8;
  width: 185px;
  height: 75px;
  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;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.butns .down_link .down_img {
  width: 110px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.butns .down_link:hover {
  background-color: var(--primary);
}

.butns .down_link:hover .down_img {
  -webkit-filter: var(--filterWhite) !important;
          filter: var(--filterWhite) !important;
}

.features_sec .feature_card {
  border-radius: 10px;
  background-color: #fff;
  padding: 40px 20px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 10px 27px 0px rgba(154, 161, 171, 0.18);
          box-shadow: 0px 10px 27px 0px rgba(154, 161, 171, 0.18);
  position: relative;
  height: calc(100% - 30px);
}

.features_sec .feature_card .icon_box {
  margin: auto;
  margin-bottom: 0px;
  position: relative;
  width: 100px;
  height: 100px;
  display: block;
}

.features_sec .feature_card .icon_box .icon {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  position: relative;
  z-index: 5;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
  -webkit-filter: invert(31%) sepia(0%) saturate(1077%) hue-rotate(142deg) brightness(73%) contrast(80%);
          filter: invert(31%) sepia(0%) saturate(1077%) hue-rotate(142deg) brightness(73%) contrast(80%);
}

.features_sec .feature_card .icon_box::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/shape-2.png) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 8px;
  top: -27px;
  opacity: .5;
  -webkit-animation: rotating 15s linear both alternate infinite;
          animation: rotating 15s linear both alternate infinite;
}

.features_sec .feature_card .title {
  color: #555;
  font-size: 17px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features_sec .feature_card .p {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
  margin-top: 10px;
}

.features_sec .feature_card::before {
  position: absolute;
  content: "";
  left: -15px;
  top: -15px;
  width: 20%;
  height: calc(100% + 30px);
  border: 5px solid #f5f5f5;
  border-right: 0;
  border-radius: 15px;
  z-index: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features_sec .feature_card:hover .icon {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.features_sec .feature_card:hover .title {
  color: var(--primary);
}

.features_sec .feature_card:hover::before {
  border-color: #d5e6e6;
}

.about_sec {
  overflow: unset;
}

.about_sec .text_box .title {
  font-weight: bold;
  line-height: 1.4;
}

.about_sec .text_box .p {
  color: #888;
  line-height: 2;
  font-size: 16px;
}

.about_sec .bg {
  height: auto;
  top: -25%;
}

.screens_sec .screen_img {
  width: 220px;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: auto;
  -webkit-box-shadow: 3px 0 27px 0 #dfe3f7;
          box-shadow: 3px 0 27px 0 #dfe3f7;
  -o-object-position: top;
     object-position: top;
  border-radius: 25px;
}

.screens_sec .frame {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 14px;
  width: 230px;
  height: 470px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9;
  pointer-events: none;
}

.screens_sec .swiper-slide-active .screen_img {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.feedback-sec .feedback_card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}

.feedback-sec .feedback_card .card-body {
  background-color: #fff;
  border: 1px solid #f5f5f5;
  padding: 45px 3vw 50px 3vw;
  margin-top: -50px;
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
  border-radius: 15px;
}

.feedback-sec .feedback_card .card-body .det {
  color: #777;
  line-height: 2;
  margin: 10px 0;
  font-size: 13px;
}

.feedback-sec .feedback_card .card-body .det::after, .feedback-sec .feedback_card .card-body .det::before {
  display: block;
  color: #dfeeee;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
  opacity: .6;
}

.feedback-sec .feedback_card .card-body .det::before {
  content: '\f10e';
}

.feedback-sec .feedback_card .card-body .det::after {
  content: '\f10d';
  text-align: end;
}

.feedback-sec .feedback_card .card-body .prof_data {
  text-align: center;
  margin-top: 20px;
}

.feedback-sec .feedback_card .card-body .prof_data .name {
  font-size: 20px;
}

.feedback-sec .feedback_card .card-body .prof_data .rating i {
  color: #ccc;
}

.feedback-sec .feedback_card .card-body .prof_data .rating i.active {
  color: #F8B84E;
}

.feedback-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: -webkit-gradient(linear, left top, right top, from(#F2F4FF), to(#fff));
  background-image: linear-gradient(to right, #F2F4FF, #fff);
  height: 60%;
  top: 0;
  width: 85%;
  right: unset;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 60%, 0 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 60%, 0 100%);
}

.contact_sec .contact-box {
  padding: 0 4vw;
}

.contact_sec .contact-box .contact_card {
  border-radius: 10px;
  -webkit-box-shadow: 0 50px 75px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 50px 75px 0 rgba(0, 0, 0, 0.03);
  padding: 20px 30px;
  position: relative;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid #f8f8f8;
}

.contact_sec .contact-box .contact_card .icon_box {
  width: 75px;
  height: 75px;
  border-radius: 10px;
  background-color: #ECF4F4;
  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;
  -webkit-margin-end: 35px;
          margin-inline-end: 35px;
}

.contact_sec .contact-box .contact_card .icon_box i {
  font-size: 30px;
  color: var(--primary);
}

.contact_sec .contact-box .contact_card .label {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact_sec .contact-box .contact_card .data {
  color: #9C9CA8;
}

.contact_sec .contact-box .contact_card .social_link a {
  color: #9C9CA8;
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.contact_sec .contact-box .contact_card::before {
  content: '';
  width: 70px;
  height: 45px;
  background: url(../images/pattern-3.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 46px;
  top: 57px;
}

.contact_sec .contact-box .contact_card:hover .label {
  color: var(--primary);
}

.contact_sec .contact-box .contact_card:hover .icon {
  animation: pulse 1s infinite alternate-reverse;
}

.contact_sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: -webkit-gradient(linear, right top, left top, from(#F2F4FF), to(#fff));
  background-image: linear-gradient(to left, #F2F4FF, #fff);
  width: 85%;
  left: unset;
}

.contact_sec .form_box .form-group {
  margin-bottom: 1rem;
}

.contact_sec .form_box .form-group .form-control {
  border-radius: 10px;
  background-color: #fff;
  border-color: #f5f5f5;
  -webkit-box-shadow: 3px 6px 10px 0 #8881;
          box-shadow: 3px 6px 10px 0 #8881;
}

.contact_sec .form_box .butn {
  margin-top: 15px;
  border-radius: 10px;
  width: 150px;
}

.downloading-sec {
  overflow: unset;
}

.downloading-sec .inner {
  background-color: #1c4041;
  margin-bottom: -50px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.downloading-sec .inner .text_box {
  padding: 40px 0;
  -webkit-padding-start: 5vw;
          padding-inline-start: 5vw;
}

.downloading-sec .inner .sec-img {
  margin-top: 25px;
  height: 375px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom left;
     object-position: bottom left;
}

.downloading-sec .inner .pattern {
  position: absolute;
  top: -50%;
  left: 0;
  opacity: .1;
  width: 48%;
}

.downloading-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: -webkit-gradient(linear, right top, left top, from(#F2F4FF), to(#fff));
  background-image: linear-gradient(to left, #F2F4FF, #fff);
  width: 85%;
  left: unset;
}

/**********************************************
    Start Edit pg-header
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
.content_pg {
  overflow: hidden;
}

.content_pg .ul {
  list-style-type: circle;
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}

.content_pg .ul li {
  color: #666;
  font-size: 15px;
  margin-bottom: .5rem;
}

.content_pg .bg {
  height: 120%;
  top: -35%;
}
/*# sourceMappingURL=style.css.map */