:root {
  --primary: #19A582;
  --secondary: #29BC6F;
  --filterPrimary: invert(42%) sepia(98%) saturate(371%) hue-rotate(115deg) brightness(103%) contrast(87%);
  --filterSecondary: invert(58%) sepia(90%) saturate(366%) hue-rotate(96deg) brightness(88%) contrast(89%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

@font-face {
  font-family: 'rb_light';
  src: url(../fonts/rb/light.TTF);
}

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

@font-face {
  font-family: 'rb_bold';
  src: url(../fonts/rb/bold.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: ltr;
  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 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);
  }
}

.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 bg-pan-left {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bg-pan-left {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/**********************************************
    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 {
  background: var(--primary) !important;
}

.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: .8rem 1.8rem;
  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: 16px;
  border: 2px solid transparent;
  border-radius: 50px;
  text-transform: capitalize;
  min-width: 150px;
}

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

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

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

.butn.secondary_border_butn {
  border-color: var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.white_butn {
  background-color: #fff;
  color: #333;
}

.butn.white_border_butn {
  background-color: #fff;
  border-color: #D6D3D3;
}

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

.butn.primary_border_butn {
  border-color: var(--primary);
  background-size: 300% 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(transparent), color-stop(transparent), to(transparent));
  background-image: linear-gradient(to right, transparent, transparent, transparent, transparent);
}

.butn.primary_border_butn:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#19A582), color-stop(#41d68e), color-stop(#30dd8a), to(#29BC6F));
  background-image: linear-gradient(to right, #19A582, #41d68e, #30dd8a, #29BC6F);
  background-position: 100% 0;
}

.butn.linear_butn {
  color: #fff;
  background-size: 300% 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#19A582), color-stop(#41d68e), color-stop(#30dd8a), to(#29BC6F));
  background-image: linear-gradient(to right, #19A582, #41d68e, #30dd8a, #29BC6F);
}

.butn.linear_butn:hover {
  background-position: 100% 0;
}

.butn.borderd_butn {
  outline: 7px solid rgba(41, 188, 111, 0.29) !important;
}

.butn:hover {
  background-color: #202020;
  border-color: var(--primary);
  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;
}

.fw-bold {
  font-family: 'rb_bold';
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  position: relative;
  z-index: 99;
}

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

.navs-container .navbar .nav-link {
  color: #fff;
  font-weight: 400;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
}

.navs-container .navbar .nav-link::after {
  content: '';
  width: 0%;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#19A582), to(#29BC6F));
  background-image: linear-gradient(to right, #19A582, #29BC6F);
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
}

.navs-container .navbar .nav-link.active {
  font-weight: bold;
  color: #fff;
}

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

.navs-container .navbar .lang_butn {
  min-width: unset;
}

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

.footer .logo {
  width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 4vw;
          margin-inline-end: 4vw;
}

.footer .links a {
  color: #fff;
  -webkit-margin-end: 2vw;
          margin-inline-end: 2vw;
}

.footer .social_links a {
  color: #fff;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.footer .copyright_p {
  border-top: 1px solid #707070;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 180px 0 100px 0;
}

.header .text_box .title {
  font-size: 92px;
  font-family: 'rb_bold';
  background: -webkit-linear-gradient(#19A582, #29BC6F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.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: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-sec {
  background-image: -webkit-gradient(linear, left top, right top, from(#19A582), to(#29BC6F));
  background-image: linear-gradient(to right, #19A582, #29BC6F);
}

.about-sec .text_box {
  background-color: #fff;
  border-radius: 0 175px 0 0;
  padding: 100px 6vw;
  position: relative;
  top: 70px;
}

.about-sec .text_box .p {
  color: #393939;
  font-size: 16px;
}

.about-sec .bg {
  height: calc(100% - 70px);
  top: 70px;
  border-radius: 65px 0 0 0;
  width: 70%;
  left: unset;
  right: unset;
  inset-inline-end: 0;
}

.about-cards .inner {
  border-radius: 33px;
  border: 2px solid #eee;
}

.about-cards .about_card {
  position: relative;
  padding: 35px 3.5vw;
  border-radius: 33px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  height: calc(100% - 25px);
  margin-bottom: 25px;
}

.about-cards .about_card .icon {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 35px auto;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.about-cards .about_card .title {
  text-align: center;
  margin-bottom: 25px;
}

.about-cards .about_card .p {
  color: #707070;
  margin-bottom: .2rem;
}

.about-cards .about_card .custom_list {
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  list-style-type: disc;
}

.about-cards .about_card .custom_list .li {
  margin-bottom: 5px;
  color: #707070;
  font-size: 13px;
}

.about-cards .about_card .pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
  opacity: .07;
}

.about-cards .col-lg-4:nth-child(2) .about_card {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-size: 300% 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#19A582), color-stop(#41d68e), color-stop(#30dd8a), to(#29BC6F));
  background-image: linear-gradient(to right, #19A582, #41d68e, #30dd8a, #29BC6F);
}

.about-cards .col-lg-4:nth-child(2) .about_card .icon,
.about-cards .col-lg-4:nth-child(2) .about_card .pattern {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.about-cards .col-lg-4:nth-child(2) .about_card .title {
  color: #fff;
}

.about-cards .col-lg-4:nth-child(2) .about_card .p,
.about-cards .col-lg-4:nth-child(2) .about_card .li {
  color: #eee;
}

.about-cards .col-lg-4:nth-child(2) .about_card:hover {
  background-position: 100% 0;
}

.training-sec {
  background-color: #F8F8F8;
}

.training-sec .swiper-slide {
  height: auto;
}

.training-sec .training_card {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  height: 100%;
}

.training-sec .training_card .img_box {
  height: 265px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.training-sec .training_card .card-body {
  padding: 1.5rem .5rem;
  text-align: center;
}

.training-sec .training_card .card-body .title {
  font-size: 19px;
}

.contact-sec {
  background-image: -webkit-gradient(linear, left top, right top, from(#19A582), to(#29BC6F));
  background-image: linear-gradient(to right, #19A582, #29BC6F);
}

.contact-sec .contact_card {
  margin: 15px 0;
  text-align: center;
}

.contact-sec .contact_card .icon {
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}

.contact-sec .form_box {
  padding: 50px 3vw;
  background-color: #fff;
  border-radius: 30px;
  margin-top: 50px !important;
  margin-bottom: -150px !important;
  position: relative;
  z-index: 3;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.contact-sec .form_box .form-group {
  margin-bottom: 1rem;
}

.contact-sec .form_box .form-group .form-control {
  background-color: #ECF0F3;
  border-radius: 11px;
  padding: 1rem 0.75rem;
  border-color: #ECF0F3;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}

.contact-sec .form_box .form-group .form-control::-webkit-input-placeholder {
  font-weight: bold;
  color: #BEC1C3;
}

.contact-sec .form_box .form-group .form-control:-ms-input-placeholder {
  font-weight: bold;
  color: #BEC1C3;
}

.contact-sec .form_box .form-group .form-control::-ms-input-placeholder {
  font-weight: bold;
  color: #BEC1C3;
}

.contact-sec .form_box .form-group .form-control::placeholder {
  font-weight: bold;
  color: #BEC1C3;
}

.contact-sec .form_box .form-group .icon {
  position: absolute;
  inset-inline-start: 13px;
  top: 19px;
  font-size: 17px;
  color: #333;
  -webkit-filter: invert(18%) sepia(15%) saturate(18%) hue-rotate(338deg) brightness(93%) contrast(84%);
          filter: invert(18%) sepia(15%) saturate(18%) hue-rotate(338deg) brightness(93%) contrast(84%);
}

.contact-sec .map_box {
  margin-bottom: -5px;
}

/**********************************************
    Start Edit pg-header
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit Dark mode
**********************************************/
.dark_mode .section,
.dark_mode .about-sec .text_box {
  background-color: #202020;
}

.dark_mode .section.bg-light,
.dark_mode .training-sec .training_card,
.dark_mode .contact-sec .form_box {
  background-color: #303030 !important;
}

.dark_mode .contact-sec .form_box .form-group .form-control {
  background-color: #404040;
  border-color: #404040;
  color: #fff;
}

.dark_mode .title,
.dark_mode .subtitle,
.dark_mode .contact-sec .form_box .form-check-label,
.dark_mode .contact-sec .form_box .form-check-label a {
  color: #fff;
}

.dark_mode .p, .dark_mode p,
.dark_mode .about-sec .text_box .p,
.dark_mode .about-cards .about_card .p {
  color: #eee;
}

.dark_mode .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background-color: #eee;
}

.dark_mode .contact-sec .form_box .form-group .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.dark_mode .about-cards .inner {
  border-color: #303030;
}

.dark_mode .header::before {
  background-color: rgba(0, 0, 0, 0.7);
}

#modeSwitcher {
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

#modeSwitcher .checkbox {
  opacity: 0;
  position: absolute;
}

#modeSwitcher .checkbox:checked + .label {
  background-color: #202020;
}

#modeSwitcher .checkbox:checked + .label .ball {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

#modeSwitcher .checkbox:checked + .label .ball::after {
  content: '';
  position: absolute;
  background-color: #202020;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  bottom: 50%;
  left: -5%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

#modeSwitcher .label {
  background-color: #ddd;
  border-radius: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  margin: 0;
  position: relative;
  height: 45px;
  width: 65px;
}

#modeSwitcher .label .fa-moon {
  background-color: #888;
  display: none;
}

#modeSwitcher .label .ball {
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 6px;
  height: 30px;
  width: 30px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
/*# sourceMappingURL=style.css.map */