:root {
  --primary: #0026FF;
  --secondary: #02025A;
  --filterPrimary: invert(11%) sepia(100%) saturate(5172%) hue-rotate(237deg) brightness(99%) contrast(128%);
  --filterSecondary: invert(6%) sepia(72%) saturate(5555%) hue-rotate(244deg) brightness(84%) contrast(118%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

@font-face {
  font-family: 'rb_bold';
  src: url(../fonts/riyad_bank/bold.ttf);
}

@font-face {
  font-family: 'rb_regular';
  src: url(../fonts/riyad_bank/regular.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'rb_regular';
  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: #061937;
}

.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;
  left: 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 floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floating_y {
  0% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}

@keyframes floating_y {
  0% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}

@-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);
  }
}

@-webkit-keyframes floating_x {
  0% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  100% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}

@keyframes floating_x {
  0% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  100% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}

@-webkit-keyframes floating_x2 {
  0% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes floating_x2 {
  0% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes zooming {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes zooming {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

@keyframes floating {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

.slide_ltr {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -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-transform: scale(1.05);
          transform: scale(1.05);
  -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 tracking-in-expand-fwd-top {
  0% {
    -webkit-transform: translateZ(-700px) translateY(-500px);
            transform: translateZ(-700px) translateY(-500px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}

@keyframes tracking-in-expand-fwd-top {
  0% {
    -webkit-transform: translateZ(-700px) translateY(-500px);
            transform: translateZ(-700px) translateY(-500px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}

.tracking-in-expand-fwd-top {
  -webkit-animation: tracking-in-expand-fwd-top 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: tracking-in-expand-fwd-top 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@-webkit-keyframes tracking-in-contract-bck-bottom {
  0% {
    -webkit-transform: translateZ(400px) translateY(300px);
            transform: translateZ(400px) translateY(300px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}

@keyframes tracking-in-contract-bck-bottom {
  0% {
    -webkit-transform: translateZ(400px) translateY(300px);
            transform: translateZ(400px) translateY(300px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}

.tracking-in-contract-bck-bottom {
  -webkit-animation: tracking-in-contract-bck-bottom 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: tracking-in-contract-bck-bottom 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@-webkit-keyframes tilt-in-fwd-tl {
  0% {
    -webkit-transform: rotateY(-20deg) rotateX(35deg) translate(-300px, -300px) skew(35deg, -10deg);
            transform: rotateY(-20deg) rotateX(35deg) translate(-300px, -300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-fwd-tl {
  0% {
    -webkit-transform: rotateY(-20deg) rotateX(35deg) translate(-300px, -300px) skew(35deg, -10deg);
            transform: rotateY(-20deg) rotateX(35deg) translate(-300px, -300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

.tilt-in-fwd-tl {
  -webkit-animation: tilt-in-fwd-tl 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-tl 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-fwd-br {
  0% {
    -webkit-transform: translateZ(-1400px) translateY(800px) translateX(1000px);
            transform: translateZ(-1400px) translateY(800px) translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0) translateX(0);
            transform: translateZ(0) translateY(0) translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-fwd-br {
  0% {
    -webkit-transform: translateZ(-1400px) translateY(800px) translateX(1000px);
            transform: translateZ(-1400px) translateY(800px) translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0) translateX(0);
            transform: translateZ(0) translateY(0) translateX(0);
    opacity: 1;
  }
}

.slide-in-fwd-br {
  -webkit-animation: slide-in-fwd-br 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in-fwd-br 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  border-radius: 25px;
  background-color: #888;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  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: .9rem 1.5rem;
  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: 14px;
  border: 1px solid transparent;
  border-radius: 20px;
}

.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: var(--primary);
}

.butn.white_border_butn {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.butn.gray_butn {
  background-color: #FCF5FD;
  color: #555;
}

.butn:hover {
  background-color: #0423d2;
  border: 1px solid #0423d2;
  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;
}

.title_bb {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.title_bb::after {
  content: '';
  width: 55px;
  height: 3px;
  background-color: var(--primary);
  display: block;
  margin: 10px auto 0 auto;
}

.p_color {
  color: #002140;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  padding: 2rem  1rem;
  background-color: var(--primary);
}

.navs-container .navbar.home_nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.navs-container .navbar.navbar-fixed-top {
  padding: .5rem 1rem;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.navs-container .navbar.navbar-fixed-top.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: -10px;
  opacity: 1;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  -webkit-box-shadow: 3px 5px 15px #0001;
          box-shadow: 3px 5px 15px #0001;
  -webkit-transform: translateY(9px);
          transform: translateY(9px);
}

.navs-container .navbar.navbar-fixed-top.scrolled .logo {
  height: 60px;
}

.navs-container .navbar .logo {
  width: 155px;
  height: 54px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  padding-bottom: 15px;
  margin: 0 10px;
  position: relative;
  text-align: center;
  color: #eee;
}

.navs-container .navbar .nav-link:hover, .navs-container .navbar .nav-link.active {
  color: #fff !important;
}

.navs-container .navbar .nav-link:hover::after, .navs-container .navbar .nav-link.active::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.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: #010144;
}

.footer .content {
  margin-bottom: 45px;
}

.footer .content .logo {
  width: 250px;
  display: block;
  margin: 0 auto 25px auto;
}

.footer .content .det {
  color: #F1F1F1;
  font-size: 13px;
}

.footer .content .links a,
.footer .content .links .p {
  color: #CFCFE0;
  font-size: 14x;
  margin-bottom: 25px;
  display: block;
}

.footer .foot .links a {
  margin: 0 10px;
}

.footer .foot .links,
.footer .foot .p {
  font-size: 13px;
  color: #02025A;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  padding-top: 150px;
}

.header .text_box .title {
  font-size: calc(2vw + 35px);
}

.header .text_box .p {
  font-size: 16px;
  line-height: 1.9;
  color: #162648;
}

.header .text_box .butns .butn {
  font-weight: bold;
  padding: .9rem 2rem;
  margin: 0 10px;
  -webkit-box-shadow: 0 30px 50px 0 rgba(60, 5, 122, 0.17);
          box-shadow: 0 30px 50px 0 rgba(60, 5, 122, 0.17);
}

.header .header_img {
  -webkit-animation: floating_y alternate infinite 2s;
          animation: floating_y alternate infinite 2s;
}

.header::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-color: var(--primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 55%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 55%);
}

.about-sec .img_box {
  width: 80%;
  display: block;
  margin: 10px auto;
  height: 550px;
  position: relative;
}

.about-sec .img_box .sec-img {
  border-radius: 20px;
}

.about-sec .img_box::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-color: var(--primary);
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  z-index: -1;
  opacity: .1;
  border-radius: 20px;
}

.about-sec .text_box .title {
  font-size: calc(1vw + 35px);
  line-height: 1.3;
}

.about-sec .text_box .p {
  color: #564485;
  font-size: 18px;
  line-height: 2;
}

.about-cards .about_card {
  background-color: #fff;
  border: 1px solid #eee;
  position: relative;
  padding: 60px 25px 40px 25px;
  border-radius: 20px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin-bottom: 25px;
  height: calc(100% - 25px);
}

.about-cards .about_card .icon_outer {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  position: relative;
  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;
  margin: 0 auto 30px auto;
}

.about-cards .about_card .icon_outer .icon {
  width: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-cards .about_card .icon_outer::before, .about-cards .about_card .icon_outer::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-cards .about_card .icon_outer::before {
  background-color: var(--secondary);
  -webkit-transform: rotate(45deg) scale(0.9);
          transform: rotate(45deg) scale(0.9);
}

.about-cards .about_card .icon_outer::after {
  background-color: #eff2ff;
}

.about-cards .about_card .card-body {
  text-align: center;
}

.about-cards .about_card .card-body .title {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-cards .about_card .card-body .p {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  font-size: 14px;
  line-height: 1.9;
  color: #777;
}

.about-cards .about_card::before {
  content: '';
  width: 100%;
  height: 7px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--secondary);
  opacity: .07;
  border-radius: 0 0 10px 10px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 6;
}

.about-cards .about_card:hover {
  background-color: var(--primary);
  -webkit-box-shadow: 0 6px 25px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 6px 25px 0 rgba(0, 0, 0, 0.16);
}

.about-cards .about_card:hover::before {
  height: 15px;
  opacity: 1;
}

.about-cards .about_card:hover .icon_outer::after {
  background-color: #fff;
}

.about-cards .about_card:hover .icon_outer::before {
  -webkit-transform: rotate(45deg) scale(1) translateY(-10px) translateX(-10px);
          transform: rotate(45deg) scale(1) translateY(-10px) translateX(-10px);
}

.about-cards .about_card:hover .title {
  color: #fff;
}

.about-cards .about_card:hover .p {
  color: #eee;
}

.join-sec .text-box .det {
  font-size: 16px;
  color: #707070;
  line-height: 2;
}

.join-sec .screen_img {
  height: 600px;
  width: 350px;
  border: 10px solid #f5f5f5;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}

.join-sec::before {
  content: '';
  width: 30%;
  height: 85%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  inset-inline-end: 0;
  border-radius: 0 20px 20px 0;
  background-color: var(--primary);
  opacity: .1;
}

.join-sec2::before {
  inset-inline-end: unset;
  inset-inline-start: 0;
  border-radius: 20px 0 0 20px;
}

.feedback-sec {
  background-color: #f8f9ff;
}

.feedback-sec .feedback_card {
  position: relative;
}

.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;
  padding: 50px 3vw 50px 3vw;
  margin-top: -50px;
  border-radius: 20px;
}

.feedback-sec .feedback_card .card-body .det {
  color: #777;
  line-height: 2;
  margin: 10px 0;
}

.feedback-sec .feedback_card .card-body .det::after, .feedback-sec .feedback_card .card-body .det::before {
  display: block;
  color: var(--primary);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
  opacity: .2;
}

.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: 40px;
}

.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;
}

.features-sec .feature_card {
  position: relative;
  padding: 50px;
  border: 1px solid #E8E7E7;
  border-radius: 40px;
  margin-bottom: 25px;
  height: calc(100% - 25px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features-sec .feature_card .icon_outer {
  width: 88px;
  height: 88px;
  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;
  background-color: #be903320;
  border-radius: 50%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features-sec .feature_card .content .p {
  font-size: 13px;
  color: #002140;
}

.features-sec .feature_card:hover {
  border: 1px solid #fff;
  -webkit-box-shadow: 3px 5px 45px 0 rgba(255, 186, 96, 0.25);
          box-shadow: 3px 5px 45px 0 rgba(255, 186, 96, 0.25);
}

.features-sec .feature_card:hover .icon_outer {
  background-color: var(--primary);
}

.features-sec .feature_card:hover .icon_outer .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

.screens_sec .text-box .p {
  line-height: 2;
  color: #777;
}

.screens_sec .screens_box .screen_img {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  border: 5px solid #f5f5f5;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -o-object-position: top;
     object-position: top;
}

.screens_sec .screens_box .swiper-slide-active .screen_img {
  -webkit-transform: scale(1);
          transform: scale(1);
  border-color: #E6E6E6;
  -webkit-box-shadow: 0 5px 35px 0 rgba(0, 8, 51, 0.1);
          box-shadow: 0 5px 35px 0 rgba(0, 8, 51, 0.1);
}

.down_links .down_img {
  width: 195px;
  height: 75px;
  border-radius: 6px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.down_links .down_img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-box-shadow: 3px 6px 15px 0 #0001;
          box-shadow: 3px 6px 15px 0 #0001;
}

/**********************************************
    Start Edit pg-header
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
.content_pg .inner {
  padding: 4vw;
  border: 5px solid #f5f5f5;
  border-radius: 25px;
}

.content_pg .inner .det {
  font-size: 15px;
  line-height: 2.2;
  color: #666;
  text-align: justify;
}

.content_pg .inner ul li {
  font-size: 15px;
  line-height: 2.2;
  color: #666;
  text-align: justify;
}

/**********************************************
    Start Edit Dark mode 
**********************************************/
/*# sourceMappingURL=style.css.map */