@charset "UTF-8";
:root {
  --primary: #004209;
  --secondary: #D97C6F;
  --filterSecondary: invert(53%) sepia(39%) saturate(638%) hue-rotate(319deg) brightness(101%) contrast(77%);
  --filterPrimary: invert(12%) sepia(91%) saturate(1787%) hue-rotate(117deg) brightness(97%) contrast(102%);
  --filterWhite: invert(100%) sepia(100%) saturate(0%) hue-rotate(100deg) brightness(103%) contrast(104%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
}

*::-moz-selection {
  background-color: var(--secondary);
  color: #fff;
}

*::selection {
  background-color: var(--secondary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

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

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

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

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #616161;
  line-height: 1.8rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: var(--primary) !important;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(-135deg, var(--secondary), #b5665b);
}

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(--secondary) !important;
}

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

form .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--secondary);
  background-color: var(--secondary);
}

form .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: var(--secondary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, var(--secondary), #b5665b);
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 8;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 22px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

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

.whatsapp_butn {
  width: 55px;
  height: 55px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9;
  -webkit-box-shadow: 0 0px 15px 0 #ddd;
          box-shadow: 0 0px 15px 0 #ddd;
  border-radius: 50%;
}

.whatsapp_butn .icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
   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-x {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floating-x {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@-webkit-keyframes floating-x-en {
  0% {
    -webkit-transform: translateX(2px) scale(-1);
            transform: translateX(2px) scale(-1);
  }
  100% {
    -webkit-transform: translateX(-2px) scale(-1);
            transform: translateX(-2px) scale(-1);
  }
}

@keyframes floating-x-en {
  0% {
    -webkit-transform: translateX(2px) scale(-1);
            transform: translateX(2px) scale(-1);
  }
  100% {
    -webkit-transform: translateX(-2px) scale(-1);
            transform: translateX(-2px) scale(-1);
  }
}

@-webkit-keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes imagemove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(3deg) scale(1.1);
            transform: rotate(3deg) scale(1.1);
  }
}

@keyframes imagemove {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(3deg) scale(1.1);
            transform: rotate(3deg) scale(1.1);
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .top-nav {
  padding: 10px 0;
  background-color: var(--primary);
}

.navs-container .top-nav .social-links .link {
  width: 30px;
  height: 30px;
  /*line-height: 30px;*/
  background-color: #fff;
  color: var(--secondary);
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  margin: 0 2px;
}

.navs-container .top-nav .social-links .link i{
    margin: 9px;
}

.navs-container .top-nav .social-links .link:hover {
  background-color: var(--secondary);
  color: #fff !important;
}

.navs-container .top-nav .social-links .num-link {
  color: #fff;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

.navs-container .top-nav .social-links .num-link i {
  margin: 0 5px;
}

.navs-container .top-nav .social-links .num-link:hover {
  color: var(--secondary) !important;
}

.navs-container .navbar {
  position: relative;
  z-index: 9;
}

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

.navs-container .navbar .searchToggler {
  margin: 0 10px;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
}

.navs-container .navbar .searchToggler .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .searchToggler:hover {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

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

.navs-container .navbar .nav-link::after {
  content: '';
  width: 0%;
  height: 1px;
  display: block;
  background-color: var(--secondary);
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
}

.navs-container .navbar .nav-link.active, .navs-container .navbar .nav-link:hover {
  color: var(--secondary);
}

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

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

.navs-container .navbar .has-dropdown {
  position: relative;
}

.navs-container .navbar .has-dropdown::after {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar .has-dropdown .drop-down {
  position: absolute;
  width: 250px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0 15px 0 #eee;
          box-shadow: 0 0 15px 0 #eee;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  z-index: 9;
}

.navs-container .navbar .has-dropdown .drop-down .link {
  display: block;
  padding: 15px;
  font-size: 14px;
}

.navs-container .navbar .has-dropdown .drop-down .link i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  color: #888;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  font-size: 12px;
}

.navs-container .navbar .has-dropdown .drop-down .link .name {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.navs-container .navbar .has-dropdown .drop-down .link:hover {
  background-color: var(--secondary);
  color: #fff !important;
}

.navs-container .navbar .has-dropdown .drop-down .link:hover i {
  color: #fff;
}

.navs-container .navbar .has-dropdown .drop-down .link:hover .name {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

.navs-container .navbar .has-dropdown:hover::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navs-container .navbar .has-dropdown:hover .drop-down {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  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: 15px;
  height: 2px;
  background: var(--secondary);
  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: 15px;
  height: 2px;
  background: var(--secondary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.navs-container .navbar .butn {
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
}

.navs-container .search-wrapper {
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .search-wrapper .search-inner {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  padding: 50px 0px;
  background-color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.navs-container .search-wrapper .search-inner .title {
  font-weight: bold;
  color: #888;
}

.navs-container .search-wrapper .search-inner .form-group {
  padding: 0 1vw;
  position: relative;
}

.navs-container .search-wrapper .search-inner .form-group .form-control {
  height: 50px;
  border-bottom: 1px solid #ddd;
  border-radius: 10px;
}

.navs-container .search-wrapper .search-inner .form-group .submit-butn {
  position: absolute;
  left: 25px;
  bottom: 15px;
  opacity: .5;
  background-color: transparent;
  border: none;
}

.navs-container .search-wrapper .search-inner .form-group .submit-butn .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .search-wrapper .search-inner .close-butn {
  background-color: #f9f9f9;
  border: none;
  border-radius: 5px;
  color: #666;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .search-wrapper .search-inner .close-butn:hover {
  background-color: #193A43;
  color: #fff;
}

.navs-container .search-wrapper .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .search-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.navs-container .search-wrapper.active .search-inner {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.navs-container .search-wrapper.active .overlay {
  opacity: 1;
  visibility: visible;
}

.footer {
  padding: 70px 0 0 0 !important;
  background-color: var(--primary);
}

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

.footer .content .title {
  color: #fff;
  font-weight: bold;
  position: relative;
  margin-bottom: 35px;
}

.footer .content .title::after {
  content: '';
  width: 50px;
  height: 2px;
  display: block;
  background-color: var(--secondary);
  position: absolute;
  top: 34px;
  right: 0;
}

.footer .content .det {
  color: #fff;
}

.footer .content .social-links .link {
  width: 30px;
  height: 30px;
  /*line-height: 30px;*/
  background-color: #fff;
  color: var(--secondary);
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  margin: 0 2px;
}

.footer .content .social-links .link i{
    margin: 9px;
}

.footer .content .social-links .link:hover {
  background-color: var(--secondary);
  color: #fff !important;
}

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

.footer .content .links a:hover {
  color: var(--secondary) !important;
}

.footer .content .footer-gllery {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .content .footer-gllery .footer-img {
  width: 45%;
  height: 70px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 5px;
}

.footer .copyright_p {
  padding: 20px 0;
  background-color: #013107;
  text-align: center;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}

.footer .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: .3;
}

/**********************************************
    Start Public Classes
**********************************************/
.sec-heading .subtitle {
  color: var(--secondary);
  font-weight: 500;
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
  position: relative;
}

.sec-heading .subtitle::before {
  content: '';
  width: 3px;
  height: 25px;
  display: block;
  background-color: var(--secondary);
  position: absolute;
  right: 0;
  top: 0;
}

.sec-heading .title {
  font-weight: bold;
  color: #262626;
}

.butn {
  position: relative;
  padding: .7rem 2rem;
  overflow: hidden;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: 5px;
}

.butn::after, .butn::before {
  background: var(--secondary);
  opacity: .5;
  content: ' ';
  display: block;
  height: 100%;
  position: absolute;
  transform: skewX(-45deg);
  -webkit-transform: skewX(-45deg);
  width: 0;
  z-index: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.butn::after {
  bottom: 0;
  right: -20%;
}

.butn::before {
  top: 0;
  left: -20%;
}

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

.butn:hover {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  color: #fff !important;
}

.butn:hover::after, .butn:hover::before {
  width: 150%;
}

.butn:hover i {
  -webkit-animation: floating-x .5s infinite alternate;
          animation: floating-x .5s infinite alternate;
}

.butn.border-butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.butn.bg-butn {
  background-color: #bf6b60;
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  width: 45px;
  height: 45px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  background-image: unset;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.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: 45px;
  height: 45px;
  line-height: 45px;
  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(--secondary);
  -webkit-box-shadow: 0 0 20px 0 rgba(217, 124, 111, 0.5);
          box-shadow: 0 0 20px 0 rgba(217, 124, 111, 0.5);
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next::before {
  content: '\f060';
}

.swiper-container .swiper-button-prev::before {
  content: '\f061';
}

.section {
  overflow: hidden;
  padding: 70px 0;
  position: relative;
}

.pg-heading {
  padding: 50px 0 60px 0;
  position: relative;
  background-color: #FBFBFB;
  overflow: hidden;
}

.pg-heading .breadcrumb {
  background-color: transparent;
}

.pg-heading .breadcrumb a {
  color: var(--secondary);
}

.pg-heading .breadcrumb .breadcrumb-item {
  position: relative;
  -webkit-padding-start: 35px;
          padding-inline-start: 35px;
  color: #101010;
}

.pg-heading .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "••";
  font-size: 35px;
  position: absolute;
  right: 7px;
  top: 11px;
  padding: 0;
  line-height: 0;
  color: #202020;
}

.pg-heading .title {
  text-align: center;
  font-weight: bold;
}

.pg-heading .pattern1 {
  position: absolute;
  top: 40px;
  right: 0;
  width: 85px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pg-heading .pattern2 {
  position: absolute;
  left: -25px;
  top: 20px;
  width: 110px;
  -o-object-fit: contain;
     object-fit: contain;
}

.secondary-color {
  color: var(--secondary);
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
  overflow: hidden;
  background-color: #FBFBFB;
}

.header .item {
  position: relative;
  padding: 70px 0;
  opacity: 0;
}

.header .item .img-box {
  width: 100%;
  height: 500px;
}

.header .item .img-box .header-img {
  border-radius: 50%;
  width: 80%;
  height: 80%;
  display: block;
  margin: auto;
}

.header .item .img-box::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/mask-1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.header .item .det {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
}

.header .swiper-slide-active .item {
  opacity: 1;
}

.header .swiper-slide-active .item .img-box::before {
  -webkit-animation: fadeIn 1s both;
          animation: fadeIn 1s both;
}

.header .swiper-slide-active .item .img-box .header-img {
  -webkit-animation: zoomIn 1s both;
          animation: zoomIn 1s both;
}

.header .swiper-slide-active .item .text-box .subtitle {
  -webkit-animation: fadeInUp 1s both;
          animation: fadeInUp 1s both;
}

.header .swiper-slide-active .item .text-box .title {
  -webkit-animation: fadeInDown 1s both;
          animation: fadeInDown 1s both;
}

.header .swiper-slide-active .item .text-box .det {
  -webkit-animation: fadeInUp 1s both;
          animation: fadeInUp 1s both;
}

.header .swiper-slide-active .item .text-box .butn {
  -webkit-animation: zoomIn 1s both;
          animation: zoomIn 1s both;
}

.header .swiper-button-next,
.header .swiper-button-prev {
  top: 50px;
  left: unset;
  right: unset;
}

.header .swiper-button-next {
  right: 25%;
  -webkit-transform: translateX(75%);
          transform: translateX(75%);
}

.header .swiper-button-prev {
  right: 20%;
  -webkit-transform: translateX(80%);
          transform: translateX(80%);
}

.header .pattern {
  position: absolute;
  left: -60px;
  top: 100px;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-sec.goals_sec .img-box {
  height: 440px;
}

.about-sec.goals_sec .det {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 500;
}

.about-sec.goals_sec .det i {
  position: relative;
  top: 8px;
  font-size: 12px;
  margin-left: 7px !important;
}

.about-sec .img-box {
  height: 540px;
  position: relative;
}

.about-sec .img-box .sec-img {
  border-radius: 50%;
  z-index: 2;
}

.about-sec .img-box .play-btn {
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-sec .img-box .play-btn:before, .about-sec .img-box .play-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-sec .img-box .play-btn:hover:before {
  background-color: var(--primary);
}

.about-sec .img-box .play-btn:before {
  z-index: 1;
}

.about-sec .img-box .play-btn:after {
  overflow: hidden;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: pulsecust 1.8s linear;
          animation: pulsecust 1.8s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  background-color: #fff;
}

.about-sec .img-box .play-btn i {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-sec .img-box::before {
  content: '';
  width: 100%;
  height: 115%;
  background: url(../images/pattern-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -239px;
  top: -31px;
  z-index: -1;
}

.about-sec .exp-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  top: -50px;
}

.about-sec .exp-outer {
  background-color: var(--primary);
  border-radius: 50px;
  padding: 1.7rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-sec .exp-outer .counter,
.about-sec .exp-outer .label {
  color: #fff;
  padding: 0 10px;
  font-weight: 800;
}

.about-sec .pattern1 {
  position: absolute;
  top: 50px;
  right: 12%;
  width: 24%;
  -o-object-fit: contain;
     object-fit: contain;
}

.blog-sec .blog_card {
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin: 15px;
}

.blog-sec .blog_card .blog-img {
  width: 100%;
  height: 300px;
  border-radius: 50%;
}

.blog-sec .blog_card .date {
  background-color: var(--secondary);
  text-align: center;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  display: block;
  position: absolute;
  right: 26px;
  top: 4px;
  font-weight: 600;
}

.blog-sec .blog_card .card-body {
  background-color: #fff;
  margin-top: -70px;
  position: relative;
  z-index: 3;
  -webkit-box-shadow: 0 10px 15px 0 #eee;
          box-shadow: 0 10px 15px 0 #eee;
  border-radius: 0 0 10px 10px;
  padding: 30px 20px;
}

.blog-sec .blog_card .card-body .title {
  font-weight: bold;
  line-height: 2rem;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  min-height: 65px;
}

.blog-sec .blog_card .card-body .butn {
      padding: 0;
    width: 50px;
    height: 50px;
  border-radius: 50%;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.blog-sec .blog_card .card-body .butn i {
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
          margin: 16px;
}

.blog-sec .blog_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.blog-sec .blog_card:hover .title {
  color: var(--secondary);
}

.blog-sec .blog_card .det {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.statics-sec {
  background: url(../images/statics-1.png);
  background-size: cover;
}

.statics-sec .subtitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}

.statics-sec .subtitle::before {
  height: 33px;
  background-color: #fff;
}

.statics-sec .statics_card {
  position: relative;
  background-color: #fff;
  border-radius: 100px;
  padding: 2rem 1rem;
  text-align: center;
  margin-bottom: 15px;
}

.statics-sec .statics_card .num {
  font-weight: 700;
  color: var(--secondary);
  position: relative;
}

.statics-sec .statics_card .num::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url(../images/counter-pattern.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  top: 0;
  right: 90px;
}

.statics-sec .statics_card .title {
  font-weight: bold;
  margin-bottom: 0;
}

.statics-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .7;
  background-color: #D97C6F;
}

.feedback-sec .sm-item {
  padding: 1.7rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: #fff;
  cursor: pointer;
}

.feedback-sec .sm-item .quote-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  color: var(--secondary);
  background-color: #FFE9E6;
}

.feedback-sec .sm-item .det {
  width: calc(100% - 50px);
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  margin-bottom: 0;
}

.feedback-sec .swiper-slide-thumb-active .sm-item {
  -webkit-box-shadow: 10px 15px 25px 0 rgba(253, 74, 54, 0.2);
          box-shadow: 10px 15px 25px 0 rgba(253, 74, 54, 0.2);
  background-color: var(--secondary);
}

.feedback-sec .swiper-slide-thumb-active .sm-item .quote-icon {
  background-color: #fff;
}

.feedback-sec .swiper-slide-thumb-active .sm-item .det {
  color: #fff;
}

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

.feedback-sec .lg-slide-swiper,
.feedback-sec .sm-slide-swiper {
  height: 390px;
  overflow: hidden;
}

.feedback-sec .pattern1 {
  position: absolute;
  bottom: 85px;
  right: 55px;
  width: 210px;
}

.feedback-sec .pattern2 {
  position: absolute;
  width: 210px;
  -webkit-transform: scale(-1);
          transform: scale(-1);
  bottom: 85px;
  left: 40px;
}

.clients-sec {
  background-color: #F2F2F2;
}

.clients-sec .client-img {
  width: 58%;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.clients-sec .client-img:hover {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.contact-sec {
  padding: 70px 0 0 0;
}

.contact-sec .box {
  border: 1px solid #ddd;
  border-radius: 15px;
  overflow: hidden;
}

.contact-sec .box .form-wrapper {
  padding: 50px 35px;
}

.contact-sec .box .form-wrapper .label {
  font-size: 14px;
}

.contact-sec .map-box iframe {
  border-radius: 0 15px 15px 0;
}

.contact-card.cards-wrapper {
  padding: 70px 0;
  background-color: #f8f8f8;
}

.contact-card.cards-wrapper .logo {
  width: 100%;
  height: 115px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}

.contact-card.cards-wrapper .contact_card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  position: relative;
  margin-bottom: 10px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  min-height: calc(100% - 10px);
}

.contact-card.cards-wrapper .contact_card .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-card.cards-wrapper .contact_card .content {
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
}

.contact-card.cards-wrapper .contact_card .content .title {
  font-weight: bold;
  margin-bottom: .2rem;
}

.contact-card.cards-wrapper .contact_card .content .data {
  font-size: 14px;
  margin-bottom: 0;
}

.contact-card.cards-wrapper .contact_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.contact-card.cards-wrapper .contact_card:hover .icon {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

/**********************************************
    Start Edit About Page 
**********************************************/
.about-pg .img-box {
  overflow: hidden;
  width: 80%;
  height: 620px;
  display: block;
  margin: auto;
  background: url(../images/mask-2.png);
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.about-pg .text-box .title {
  font-size: calc(1vw + 35px);
}

.about-pg .text-box .title .logo {
  width: 170px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-pg .item2 .img-box {
  background: url(../images/mask-3.png);
}

.about-pg .item {
  width: 90%;
  border-radius: 20px;
  padding: 20px;
  -webkit-box-shadow: 0 0 25px 0 #eee;
          box-shadow: 0 0 25px 0 #eee;
  position: relative;
  margin-bottom: 20px;
}

.about-pg .item .icon-outer {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 25px 0 #ddd;
          box-shadow: 0 0 25px 0 #ddd;
}

.about-pg .item .icon-outer .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-pg .item .content {
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
  width: calc(100% - 80px);
}

.about-pg .item .content .headline {
  font-weight: bold;
  color: #555;
  font-size: 1rem;
}

.about-pg .item .content .det {
  margin-bottom: 0;
  font-size: 12px;
}

.about-pg .item:hover .icon {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.about-pg .item:hover .headline {
  color: var(--primary);
}

/**********************************************
    Start Edit Blog Page 
**********************************************/
.blog-header {
  background-color: #fff;
}

.blog-header .item {
  opacity: 1;
  padding: 70px 0 20px 0;
}

.blog-det .blog_card .blog-img {
  height: 600px;
}

.blog-det .blog_card .date {
  right: 80px;
  top: 45px;
}

.blog-det .blog_card .card-body {
  padding: 2rem;
  margin-top: -120px;
}

.blog-det .blog_card .card-body .title {
  color: var(--secondary);
}

.blog-det .blog_card:hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.blog-det .related-blog {
  padding: 20px;
  position: relative;
}

.blog-det .related-blog .item {
  position: relative;
  margin-bottom: 15px;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 20px 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.blog-det .related-blog .item .main-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0 15px 0 #ccc;
          box-shadow: 0 0 15px 0 #ccc;
}

.blog-det .related-blog .item .content {
  width: calc(100% - 90px);
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

.blog-det .related-blog .item .content .title {
  font-weight: bold;
  color: #666;
}

.blog-det .related-blog .item .content .det {
  font-size: 13px;
  margin-bottom: 0;
}

.blog-det .related-blog .item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.blog-det .related-blog .item:hover .title {
  color: var(--secondary);
}

.blog-det .contact-card.cards-wrapper {
  padding: 20px;
  background-color: #fff;
}

.blog-det .contact-card.cards-wrapper .contact_card {
  background-color: #f7f7f7;
  margin-bottom: 15px;
}

/**********************************************
    Start Edit content Page 
**********************************************/
.content-pg {
  background-color: #f9f9f9;
}

.content-pg .inner {
  padding: 45px;
  background-color: #fff;
  border-radius: 25px;
}

.content-pg .pattern {
  position: absolute;
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  right: -20px;
  top: 100px;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

/**********************************************
    Start Edit programs Page 
**********************************************/
.programs-pg .program_card {
  position: relative;
  padding: 20px 15px;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 20px 0 #eee;
          box-shadow: 0 5px 20px 0 #eee;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 35px;
  height: calc(100% - 35px);
}

.programs-pg .program_card .icon-outer {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: auto;
  background-color: rgba(217, 124, 111, 0.1);
  -webkit-box-shadow: 0 0 15px 0 #ddd;
          box-shadow: 0 0 15px 0 #ddd;
}

.programs-pg .program_card .icon-outer .icon {
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}

.programs-pg .program_card .card-body {
  text-align: center;
}

.programs-pg .program_card .card-body .title {
  font-weight: bold;
  line-height: 1.7rem;
  font-size: 1.1rem;
  color: #666;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  min-height: 54.5px;
}

.programs-pg .program_card .card-body .butn {
  padding: 0.7rem 1rem;
  margin: auto;
  font-size: 13px;
}

.programs-pg .program_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.programs-pg .program_card:hover .title {
  color: var(--secondary);
}

.programs-det .blog_card .card-body .butn {
  padding: 0.7rem 2rem;
  border-radius: 5px;
  margin: auto;
  width: max-content;
}

.programs-det .blog_card .card-body .butn i{
    margin: 0;
}

.programs-det .statics-sec {
  padding: 50px 10px 30px 10px;
  background: unset;
  border-radius: 20px;
}

.programs-det .statics-sec .statics_card {
  padding: 1.5rem 0.5rem;
}

.programs-det .statics-sec .statics_card .num {
  font-size: 1.5rem;
}

.programs-det .statics-sec .statics_card .num::before {
  right: 15px;
}

.programs-det .statics-sec .statics_card .title {
  font-size: 1.2rem;
}

/**********************************************
    Start Edit events Page 
**********************************************/
.events-pg .blog_card .blog-img {
  border-radius: 55px;
}

.events-pg .blog_card .det i {
  color: var(--secondary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.events-pg .blog_card .date {
  right: -15px;
  top: -15px;
  -webkit-box-shadow: 0 0 15px 0 #ccc;
          box-shadow: 0 0 15px 0 #ccc;
}

.events-pg .blog_card .card-body {
  border-radius: 10px;
  width: 90%;
  margin: -70px auto 0 auto;
  /*min-height: 225px;*/
}

.event-det .blog_card .blog-img {
  height: 400px;
}

/**********************************************
    Start Edit gallery Page 
**********************************************/
.gallery-pg .gallery_card {
  position: relative;
  overflow: hidden;
  height: 350px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.gallery-pg .gallery_card .video-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-pg .gallery_card .more-butn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--secondary);
  color: #fff;
  font-size: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  border-radius: 10px;
  opacity: .6;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.gallery-pg .gallery_card .more-butn:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
  color: #fff !important;
}

.gallery-pg .gallery_card .overlay-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  padding: 0 15px 6px;
  -webkit-transform: perspective(500px) rotateX(90deg);
          transform: perspective(500px) rotateX(90deg);
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  z-index: 1;
  height: 110px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--primary);
}

.gallery-pg .gallery_card .overlay-text .subtitle {
  color: #ccc;
  font-size: 15px;
}

.gallery-pg .gallery_card .overlay-text .title {
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
  margin-top: .5rem;
}

.gallery-pg .gallery_card::before {
  content: "";
  bottom: 0;
  position: absolute;
  max-width: 100%;
  height: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.gallery-pg .gallery_card:hover .video-img {
  -webkit-animation: imagemove 3s ease-out alternate infinite running;
          animation: imagemove 3s ease-out alternate infinite running;
}

.gallery-pg .gallery_card:hover .more-butn {
  opacity: 1;
  margin-top: -45px;
}

.gallery-pg .gallery_card:hover::before {
  opacity: 1;
  z-index: 1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  height: 100%;
}

.gallery-pg .gallery_card:hover .overlay-text {
  -webkit-transform: perspective(500px) rotateX(0);
          transform: perspective(500px) rotateX(0);
}

/**********************************************
    Start Edit policy Page 
**********************************************/
.policy-pg .requirements-wrapper .item {
  position: relative;
  margin: 15px 0;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 20px 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.policy-pg .requirements-wrapper .item .title {
  margin-bottom: 0;
  font-weight: 500;
  position: relative;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
}

.policy-pg .requirements-wrapper .item .title::before {
  content: '\f111';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: var(--primary);
  font-size: 10px;
  position: absolute;
  right: 0;
  top: 4px;
}

.policy-pg .requirements-wrapper .item:hover .title {
  color: var(--secondary);
}

/**********************************************
    Start Edit join Page 
**********************************************/
.join-pg {
  background-color: #f9f9f9;
}

.join-pg .form-wrapper {
  border: 1px solid #ddd;
  border-radius: 20px;
  background-color: #fff;
  padding: 50px 35px;
}

.join-pg .form-wrapper .form-control {
  background-color: transparent;
}

.join-pg .form-wrapper .radios-box {
  min-height: 55px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.75rem;
}

.join-pg .form-wrapper .radios-box .custom-control {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.join-pg .accor-wrapper .card {
  margin-bottom: 15px;
  border-radius: 15px !important;
  overflow: hidden;
  border: 1px solid #ddd !important;
}

.join-pg .accor-wrapper .card .card-header {
  background-color: #fff;
}

.join-pg .accor-wrapper .card .card-header .btn-link {
  text-decoration: none;
  color: #444;
  font-weight: bold;
  padding: .5rem 0;
}

.join-pg .accor-wrapper .card .card-body {
  font-size: 14px;
  line-height: 1.4rem;
}

.join-pg .accor-wrapper .card.active .btn-link {
  color: var(--secondary);
}

.join-pg .accor-wrapper .cutom-list .li {
  position: relative;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  font-size: 14px;
  line-height: 1.4rem;
  margin-bottom: 5px;
}

.join-pg .accor-wrapper .cutom-list .li::before {
  content: '\f111';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: var(--secondary);
  font-size: 8px;
  position: absolute;
  right: 0;
  top: 1px;
}
/*# sourceMappingURL=style.css.map */