:root {
  --primary: #007CB0;
  --secondary: #075A7D;
  --filterPrimary: invert(31%) sepia(74%) saturate(1512%) hue-rotate(170deg) brightness(95%) contrast(101%);
  --filterSecondary: invert(18%) sepia(79%) saturate(2756%) hue-rotate(180deg) brightness(91%) contrast(94%);
  --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: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

body {
  direction: rtl;
  overflow-x: hidden;
}

/**********************************************
   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 {
  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;
}

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 textarea {
  resize: none;
}

form input,
form select {
  height: 55px !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

/**********************************************
   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 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 rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

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

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/**********************************************
    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: 10px;
  height: 10px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 35px;
  height: 35px;
  border: 1px solid transparent;
  border-radius: 0px;
  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;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  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: 5%;
  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: 5%;
  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.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: 13px;
  border-radius: 5px;
  border: 1px solid transparent;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}

.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

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

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn.white_butn {
  background-color: #fff;
  color: var(--primary);
}

.butn:hover {
  background-color: #043f58;
  border: 1px solid #043f58;
  color: #fff !important;
}

.butn:hover i {
  animation: floatingX .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 {
    position: relative;
    z-index: 99;
}


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

.navs-container .navbar .navbar-brand img {
      width: 100px;
}

.navs-container .navbar.navbar-fixed-top {
  background-color: var(--secondary);
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

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

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

.navs-container .navbar.navbar-fixed-top.scrolled .nav-link {
  color: #ddd;
}

.navs-container .navbar .nav-link {
  margin: 0 2px;
  font-size: 14px;
  position: relative;
  font-weight: bold;
}

.navs-container .navbar .nav-link::after {
  content: '';
  width: 0%;
  height: 1px;
  display: block;
  margin-top: 7px;
  background-color: var(--primary);
  opacity: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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

.navs-container .navbar .nav-link:hover::after, .navs-container .navbar .nav-link.active::after {
  width: 100%;
  opacity: 1;
}

.navs-container .navbar .sm_butn {
  width: 48px;
  height: 48px;
}

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

.footer .content .logo {
  width: 126px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}

.footer .content .socialLinks .butn {
  width: 35px;
  height: 35px;
}

.footer .content .socialLinks .butn i {
  -webkit-margin-end: 0 !important;
          margin-inline-end: 0 !important;
}

.footer .content .title {
  margin-top: 15px;
  position: relative;
}

.footer .content .title::after {
  content: '';
  width: 30px;
  height: 1px;
  margin: 0 15px;
  background-color: var(--primary);
  display: inline-block;
}

.footer .content .links a {
  display: block;
  margin: 15px 0;
}

.footer .copyright_p {
  font-size: 14px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  background-color: #F5F6F8;
  position: relative;
  overflow: hidden;
  padding: 200px 0 70px 0;
}

.header .sec-img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header .text-box .title {
  font-size: calc(1vw + 30px);
  font-weight: bold;
}

.header .bg {
  height: 730px;
  left: unset;
  right: -105px;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}

.header .pattern {
  position: absolute;
  top: 150px;
  right: 30%;
  pointer-events: none;
  -webkit-animation: rotate-center 100s linear infinite both;
          animation: rotate-center 100s linear infinite both;
}

.about-sec {
  background-color: #F5F6F8;
}

.about-sec .text-box .title {
  font-size: calc(.6vw + 30px);
  line-height: 1.3;
}

.about-sec .sec-img {
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}

.about-sec .shape1 {
  position: absolute;
  left: 0;
  bottom: 50px;
  height: 65%;
}

.about-sec .shape2 {
  position: absolute;
  bottom: 40px;
  left: 10%;
  width: 35%;
  animation: scale-in-center 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate-reverse backwards;
}

.down_link {
  direction: ltr;
  text-align: start;
  margin-bottom: 15px;
}

.down_link:hover .icon {
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

.screens-sec {
  background-color: #F5F6F8;
  padding: 140px 0;
  min-height: 800px;
}

.join-sec {
  background-color: #F5F6F8;
  padding-top: 140px;
}

.join-sec .sec-img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

.join-sec .vector {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 48%;
  -o-object-fit: contain;
     object-fit: contain;
}

.join-sec2 {
  background-color: #F5F6F8;
  padding-top: 150px;
}

.join-sec2 .sec-img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}

.join-sec2 .vector {
  position: absolute;
  left: -2%;
  bottom: 0;
  width: 45%;
  -o-object-fit: contain;
     object-fit: contain;
}

.features-sec .feature_item {
  position: relative;
  margin-bottom: 25px;
}

.features-sec .feature_item .icon_outer {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.16);
  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: 20px;
          margin-inline-end: 20px;
}

.features-sec .feature_item .icon_outer .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.features-sec .feature_item .content {
  width: calc(100% - 90px);
}

.features-sec .feature_item .content .title {
  font-size: 1.1rem;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features-sec .feature_item:hover .icon {
  animation: pulse 1s infinite alternate-reverse;
}

.features-sec .feature_item:hover .title {
  color: var(--primary);
}

.features-sec .sec-img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}

.features-sec .vector {
  position: absolute;
  left: -3%;
  bottom: 18%;
  width: 33%;
}

.contact-sec {
  background-color: #F6F9FE;
}

.contact-sec .form-box .form-control {
  border: 1px solid #fff;
}

.contact-sec .contact-box {
  padding: 0 3vw;
  -webkit-padding-start: 5vw;
          padding-inline-start: 5vw;
}

.contact-sec .contact-box .contact_item {
  background-color: #fff;
  position: relative;
  padding: 40px 0;
  -webkit-padding-start: 60px;
          padding-inline-start: 60px;
  margin-bottom: 25px;
}

.contact-sec .contact-box .contact_item .icon_outer {
  background-color: var(--primary);
  border-radius: 5px;
  width: 80px;
  height: 80px;
  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;
  position: absolute;
  right: -40px;
}

.contact-sec .contact-box .contact_item .icon_outer .icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-sec .contact-box .contact_item .title {
  font-size: 1.1rem;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact-sec .contact-box .contact_item:hover .icon {
  animation: pulse 1s infinite alternate-reverse;
}

.contact-sec .contact-box .contact_item:hover .title {
  color: var(--primary);
}

.contact-sec .shape {
  position: absolute;
  right: -33px;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: -45px;
  width: 38%;
}

.contact-sec .pattern {
  position: absolute;
  top: 29%;
  right: 2%;
  z-index: 2;
  pointer-events: none;
  -webkit-animation: rotate-center 100s linear infinite both;
          animation: rotate-center 100s linear infinite both;
}

/**********************************************
    Start Edit Dark Theme 
**********************************************/
.theme-light .navs-container .navbar .nav-link {
  color: #ccc;
}

.theme-light .header,
.theme-light .section {
  background-color: #01161f;
}

.theme-light .footer,
.theme-light .features-sec {
  background-color: #010f14;
}

.theme-light .section .title,
.theme-light .header .title {
  color: #fff;
}

.theme-light .section .subtitle,
.theme-light .section .subtitle2 {
  color: #eee;
}

.theme-light .header .text-box .det,
.theme-light .section .p,
.theme-light .section .det,
.theme-light .footer .content .links a,
.theme-light .footer .copyright_p {
  color: #ddd;
}

.theme-light .contact-sec .form-box .form-control {
  border: 1px solid #012636;
  background-color: #012636;
  color: #fff;
}

.theme-light .contact-sec .form-box .form-control::-webkit-input-placeholder {
  color: #ccc;
}

.theme-light .contact-sec .form-box .form-control:-ms-input-placeholder {
  color: #ccc;
}

.theme-light .contact-sec .form-box .form-control::-ms-input-placeholder {
  color: #ccc;
}

.theme-light .contact-sec .form-box .form-control::placeholder {
  color: #ccc;
}

.theme-light .contact-sec .contact-box .contact_item {
  background-color: #012636;
}

.themeToggler {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  direction: rtl;
  height: 50px;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
}

.themeToggler .switch {
  position: relative;
  top: -12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px;
  background-color: rgba(242, 242, 242, 0.5);
  border-radius: 25px;
}

.themeToggler .switch .theme_mode {
  padding: 8px 10px;
  border-radius: 15px;
  display: inline-block;
  position: relative;
  z-index: 6;
  font-size: 15px;
  cursor: pointer;
}

.themeToggler .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeToggler .slider {
  position: absolute;
  cursor: pointer;
  border-radius: 25px;
  width: 72px;
  right: 5px;
  height: 38px;
  top: 5px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.themeToggler input:checked + .slider {
  -webkit-transform: translateX(-68px);
          transform: translateX(-68px);
  background-color: rgba(7, 90, 125, 0.9) !important;
}

.themeToggler input:checked ~ .dark {
  color: #fff;
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px var(--primary);
          box-shadow: 0 0 1px var(--primary);
}

/************start complete register************************/
.inner_header {
  height: 300px;
  overflow: hidden;
}

.inner_header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.form_content {
  background-color: #fff;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: 30px 30px 0 0;
}

.form_content .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #9995;
}

.form_content .form-group .icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.form_content .form-group .form-control {
  background-color: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.form_content .form_btn {
  width: 100%;
  padding: 20px 40px;
  text-align: center;
  background-color: #075a7d;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  color: #fff;
}

.form_content .upload_box {
  position: relative;
  padding: 15px;
  border: 1px solid #9993;
  border-radius: 15px;
}

.form_content .upload_box .imageWrapper {
  width: 100px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.form_content .upload_box .imageWrapper .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form_content .upload_box .file-upload {
  position: relative;
  border: 0;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
}

.form_content .upload_box .file-upload .file-input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

[type=email], [type=number], [type=tel], [type=url] {
    direction: inherit;
}

.form-check-input:checked {
  background-color: #075a7d;
  border-color: #075a7d;
}

.section_padding {
  padding: 80px 0;
}

/*start custom code*/
.inner_header{
    margin-top: 230px;
}

.update-profile-page form input[type="radio"]{
    height:1em !important;
}
/*end custom code*/
/************end complete register************************/
/*# sourceMappingURL=style.css.map */

.dropdown-menu{
    padding: 0;
    border: 0;
    box-shadow: 0 0 15px #0001;
    border-radius: 7px;
    margin-top: 10px !important;
}

.dropdown-item {
    font-size: 13px;
    font-weight: bold;
    padding: 8px;
    border-bottom: 1px solid #9992;
}

.inner-pages .navs-container .navbar .navbar-nav {
    margin: auto !important;
}

.inner-pages .navs-container .navbar .nav_r {
    display: none !important;
}

.inner-pages .navs-container .navbar .nav-link {
    color: #fff;
}

.inner-pages .navs-container .navbar .navbar-brand img {
    width: 60px;
}

.inner-pages .inner_header {
    margin-top: 0;
}

.inner-pages form .form-control:focus {
    border: 0 !important;
}

/*--------- */
.navs-container .butn {
    display: inline-flex
}

.navs-container .dropdown {
    display: inline-flex;
        float: left;
}

.dropdown-menu[data-bs-popper] {
    right: auto;
    left: 0;
}

