:root {
  --primary: #625A93;
  --secondary: #3781B2;
  --filterPrimary: invert(34%) sepia(34%) saturate(608%) hue-rotate(208deg) brightness(101%) contrast(92%);
  --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: 'El Messiri', 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);
}

/**********************************************
   Start Global Style
**********************************************/
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;
}

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;
  padding: 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: 13px;
  border-radius: 10px;
}

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: 55px !important;
}

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

form .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  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;
}

/**********************************************
   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 tracking-in-expand-fwd-bottom {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px) translateY(500px);
            transform: translateZ(-700px) translateY(500px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}

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

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

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

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

.tracking-in-expand-fwd-top {
  -webkit-animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 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 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

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

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

.navbar .logo {
  width: 155px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-link {
  color: #ddd;
  margin: 0 10px;
}

.navbar .nav-link:hover {
  color: #eee !important;
}

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

.navbar .butn span {
  padding: 0.7rem 2rem;
}

.navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

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

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

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

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  background-color: #333333;
  padding: 70px 0 0 0;
}

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

.footer .content .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}

.footer .content .p {
  color: #ccc;
}

.footer .content .links a {
  display: block;
  color: #ddd;
  margin: 15px 0;
  font-size: 15px;
}

.footer .content .contact-links a {
  margin: 30px 0;
}

.footer .content .contact-links a i {
  color: var(--secondary);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.footer .content .form-control {
  height: 50px !important;
  border-radius: 25px;
}

.footer .content button {
  padding: 0;
}

.footer .foot_p {
  padding: 20px 0;
  border-top: 1px solid #707070;
  margin-bottom: 0;
  color: #eee;
  text-align: center;
  font-weight: 600;
}

/**********************************************
    Start Public Classes
**********************************************/
.butn {
  position: relative;
  border-radius: 25px;
  display: block;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  height: 45px;
  line-height: 45px;
  border: 1px solid transparent;
}

.butn span {
  padding: .7rem 3rem;
}

.butn::before, .butn::after,
.butn span::before,
.butn span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(55, 129, 178, 0.25);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 1;
}

.butn::after,
.butn span:before {
  top: auto;
  bottom: 0;
}

.butn span:before,
.butn span:after {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  z-index: -1;
}

.butn.white-butn {
  background-color: #fff;
}

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

.butn.border-white-butn {
  color: #fff !important;
  border: 1px solid #fff;
}

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

.butn:hover {
  border: 1px solid var(--secondary);
  color: #fff !important;
}

.butn:hover::before, .butn:hover::after,
.butn:hover span::before,
.butn:hover span::after {
  height: 80px;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 35px;
  height: 5px;
  border-radius: 25px !important;
  background: #555;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}

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

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

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

.color-gray {
  color: #999;
}

.pg-header {
  background-color: var(--primary);
  padding: 40px 0 60px 0;
}

.pg-header .bread {
  color: #eee;
}

.pg-header .bread .link,
.pg-header .bread .this-pg {
  margin: 0 5px;
  font-size: 14px;
}

.pg-header .bread .link {
  color: #fff;
}

.pg-header .bread .link:hover {
  color: #fff !important;
}

strong {
  font-weight: bolder;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
}

.header .item {
  padding: 150px 0;
}

.header .item .text-box {
  position: relative;
  -webkit-padding-start: 45px;
          padding-inline-start: 45px;
  z-index: 5;
}

.header .item .text-box .det {
  color: #eee;
}

.header .item .text-box .butn {
  color: #eee;
  height: 50px;
  line-height: 50px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.header .item .text-box .butn span {
  padding: 1rem 4rem;
}

.header .item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: -webkit-gradient(linear, right top, left top, from(#20192A), to(#FFFFFF));
  background-image: linear-gradient(to left, #20192A, #FFFFFF);
  opacity: .5;
  z-index: 1;
}

.header .swiper-slide-active .item .text-box .subtitle {
  -webkit-animation: tracking-in-expand-fwd-bottom 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: tracking-in-expand-fwd-bottom 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.header .swiper-slide-active .item .text-box .title {
  -webkit-animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.header .swiper-slide-active .item .text-box .det {
  -webkit-animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.header .swiper-slide-active .item .text-box .butn {
  -webkit-animation: zoomIn 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: zoomIn 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.header .social-links {
  position: absolute;
  left: 5%;
  top: 15%;
}

.header .social-links a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #555;
  display: block;
  color: #fff;
  text-align: center;
  margin: 10px 0;
}

.header .social-links a:hover {
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: #fff !important;
}

.header .swiper-pagination {
  text-align: start;
  bottom: 50px;
  -webkit-padding-start: 5vw;
          padding-inline-start: 5vw;
}

.header .swiper-pagination .swiper-pagination-bullet {
  background: #ccc;
}

.header .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.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);
  height: 80%;
  background-color: var(--primary);
}

.about-sec .text-box .p {
  line-height: 2rem;
}

.about-sec .text-box .label {
  font-size: 18px;
}

.about-sec .text-box .label i {
  color: #00DF76;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  font-size: 22px;
}

.about-sec .lg-img {
  height: 250px;
}

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

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

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

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

.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: 1rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.services-sec {
  background-color: #161616;
}

.services-sec .text-box .label {
  font-size: 18px;
}

.services-sec .text-box .label i {
  color: #00DF76;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  font-size: 22px;
}

.services-sec .img-service-swiper .swiper-slide {
  width: 70%;
}

.services-sec .img-service-swiper .swiper-slide .img-box {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.services-sec .img-service-swiper .swiper-slide .img-box .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  text-align: center;
  padding: 20px;
}

.services-sec .img-service-swiper .swiper-slide .img-box .content .p {
  font-size: 14px;
  color: #eee;
}

.services-sec .img-service-swiper .swiper-slide .img-box::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: linear-gradient(45deg, #20192A, #20192A, #FFFFFF);
  opacity: 0;
  z-index: 1;
}

.services-sec .img-service-swiper .swiper-slide-active .img-box .content {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.services-sec .img-service-swiper .swiper-slide-active .img-box::before {
  opacity: .5;
}

.services-sec .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
}

.ser_steps .ser_steps_box {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  margin: 15px 0;
}

.ser_steps .ser_steps_box .icon {
  margin-bottom: 15px;
}

.ser_steps .ser_steps_box .icon img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.ser_steps .ser_steps_box .info h5 {
  color: #20192A;
  margin-bottom: 10px;
}

.ser_steps .ser_steps_box .info .text {
  color: #777;
  font-size: 14px;
  line-height: 2;
}

.feedback-sec .item {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .6;
}

.feedback-sec .item .img-box {
  width: 215px;
  height: 215px;
  display: block;
  margin: auto;
  position: relative;
}

.feedback-sec .item .img-box .icon {
  width: 45px;
  height: 45px;
  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;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 10px 0 #ddd;
          box-shadow: 3px 6px 10px 0 #ddd;
  color: var(--secondary);
  border-radius: 50%;
  font-size: 25px;
  position: absolute;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.feedback-sec .item .img-box::before {
  content: '';
  width: 215px;
  height: 215px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  right: -30px;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.feedback-sec .item .img-box .sec-img {
  border-radius: 50%;
}

.feedback-sec .item .content-box {
  background-color: #f8f8f8;
  padding: 25px 15px;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  text-align: center;
}

.feedback-sec .item .content-box .stars {
  margin-bottom: .5rem;
}

.feedback-sec .item .content-box .stars i {
  color: #ccc;
}

.feedback-sec .item .content-box .stars i.active {
  color: var(--primary);
}

.feedback-sec .item .content-box .feedback_p {
  font-weight: 600;
  margin-bottom: 0;
}

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

.feedback-sec .swiper-slide-active .item .img-box::before {
  opacity: 2;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.feedback-sec .swiper-slide-active .item .img-box .icon {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  opacity: 1;
}

.feedback-sec .swiper-slide-active .item .content-box {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.gallery-sec .sec-img {
  height: 480px;
  margin-bottom: 10px;
}

.gallery-sec .sec-img.sm-img {
  height: 235px;
}

.gallery-sec .text-box {
  padding: 2vw;
}

.gallery-sec .swiper-pagination {
  bottom: 0;
}

.partners-sec .partner-logo {
  width: 80%;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.partners-sec .partner-logo:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.partners-sec .swiper-pagination {
  bottom: 0;
}

/**********************************************
    Start Edit About Page 
**********************************************/
.about-cards {
  background-color: #f9f9f9;
}

.about-cards .about_card {
  position: relative;
  border-radius: 15px;
  -webkit-box-shadow: 3px 6px 15px 0 #eee;
          box-shadow: 3px 6px 15px 0 #eee;
  text-align: center;
  padding: 25px 10px;
  background-color: #fff;
  margin-bottom: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-cards .about_card .icon {
  display: block;
  color: var(--primary);
  font-size: 40px;
}

.about-cards .about_card .title {
  font-size: 1.1rem;
  color: #666;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-cards .about_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.about-cards .about_card:hover .icon {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.about-cards .about_card:hover .title {
  color: var(--secondary);
}

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

.services-pg .item {
  background-color: #fff;
  position: relative;
  border-radius: 15px;
  -webkit-box-shadow: 3px 6px 15px 0 #eee;
          box-shadow: 3px 6px 15px 0 #eee;
  text-align: center;
  padding: 35px 10px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.services-pg .item .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 22px auto;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.services-pg .item .title {
  color: #666;
}

.services-pg .item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.services-pg .item:hover .icon {
  -webkit-animation: tada 1s both linear;
          animation: tada 1s both linear;
}

.services-pg .item:hover .title {
  color: var(--secondary);
}

.blog-sec .blog_card {
  background-color: #fff;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  margin-bottom: 15px;
  -webkit-box-shadow: 3px 6px 15px 0 #eee;
          box-shadow: 3px 6px 15px 0 #eee;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.blog-sec .blog_card .img-box {
  height: 250px;
  overflow: hidden;
}

.blog-sec .blog_card .img-box .sec-img {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.blog-sec .blog_card .card-body {
  padding: 1.5rem;
}

.blog-sec .blog_card .card-body .p {
  color: #888;
  font-size: 13px;
}

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

.blog-sec .blog_card:hover .sec-img {
  -webkit-transform: scale(1.2) rotate(5deg);
          transform: scale(1.2) rotate(5deg);
}

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

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

.contact-pg .contact_card {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
  position: relative;
  margin-bottom: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact-pg .contact_card .icon-outer {
  width: 50px;
  height: 50px;
  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;
  border-radius: 50%;
  background-color: #dfdcf7;
  color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  font-size: 20px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.contact-pg .contact_card .title {
  font-size: 1.1rem;
}

.contact-pg .contact_card .title,
.contact-pg .contact_card .det {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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

.contact-pg .contact_card:hover .icon-outer i {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.contact-pg .contact_card:hover .title {
  color: var(--secondary);
}

.contact-pg .inner-box {
  padding: 40px 35px;
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
  position: relative;
  overflow: hidden;
}

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

.reservation-pg .box {
  padding: 50px 40px;
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
  border-radius: 15px;
  background-color: #fff;
  overflow: hidden;
  /* Mark input boxes that gets an error on validation: */
  /* Hide all steps by default: */
  /* Make circles that indicate the steps of the form: */
  /* Mark the steps that are finished and valid: */
}

.reservation-pg .box .text-box {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.reservation-pg .box .tab .badge-price {
  padding: .7rem 2.5rem;
  background-color: #eee;
  color: var(--secondary);
  border-radius: 25px;
  display: block;
  font-size: 18px;
  direction: ltr;
}

.reservation-pg .box .tab .badge-price.primary-badge {
  background-color: var(--secondary);
  color: #fff;
}

.reservation-pg .box .tab.tab1 .det {
  font-size: 15px;
  line-height: 2rem;
}

.reservation-pg .box .tab.tab2 .deviceType {
  padding-right: 0;
}

.reservation-pg .box .tab.tab2 .deviceType .custom-control-label {
  width: 100%;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 2px solid #eee;
  margin-bottom: 25px;
}

.reservation-pg .box .tab.tab2 .deviceType .custom-control-label .icon {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 20px auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: .5;
}

.reservation-pg .box .tab.tab2 .deviceType .custom-control-label .title {
  color: #888;
  font-size: 1.1rem;
}

.reservation-pg .box .tab.tab2 .deviceType .custom-control-input:checked ~ .custom-control-label {
  border: 2px solid var(--secondary);
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
}

.reservation-pg .box .tab.tab2 .deviceType .custom-control-input:checked ~ .custom-control-label .icon {
  opacity: 1;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.reservation-pg .box .tab.tab2 .deviceType .custom-control-input:checked ~ .custom-control-label .title {
  color: var(--secondary);
}

.reservation-pg .box .tab.tab2 .deviceType .custom-control-label::after,
.reservation-pg .box .tab.tab2 .deviceType .custom-control-label::before {
  display: none;
}

.reservation-pg .box .tab.tab6 .data-group {
  margin-bottom: 1.3rem;
}

.reservation-pg .box .tab.tab6 .data-group .badge-price {
  padding: 0rem 1.5rem;
  font-size: 15px;
  margin: 0;
}

.reservation-pg .box .tab.tab6 .data-group .data {
  border: 1px solid #ddd;
  padding: 0.8rem 1rem;
  margin-bottom: 0;
  margin-top: 0.7rem;
  border-radius: 10px;
  line-height: 2rem;
  color: #666;
}

.reservation-pg .box .tab.tab6 .total-foot {
  padding: 10px 25px;
  background: #f5f5f5;
  border-radius: 10px;
}

.reservation-pg .box .butn {
  border: 1px solid transparent !important;
}

.reservation-pg .box input.invalid {
  background-color: #ffdddd;
}

.reservation-pg .box .tab {
  display: none;
}

.reservation-pg .box .step {
  height: 5px;
  width: 35px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 25px;
  display: inline-block;
  opacity: 0.5;
}

.reservation-pg .box .step.active {
  opacity: 1;
  background-color: var(--primary);
}

.reservation-pg .box .step.finish {
  background-color: #04AA6D;
}
/*# sourceMappingURL=style.css.map */