.radio-tab{
	border-bottom: 2px solid transparent;
	padding: 0.5rem 1.5rem;
}

#search-form .btn-check:checked + .radio-tab{
	border-color: #4b4ec0;
}

.radio-tab:hover{
	cursor: pointer;
}

/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR TWO =====*/
.navbar-area.navbar-two {
  background-color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two {
    padding: 20px 0;
  }
}
.navbar-area.navbar-two .navbar {
  position: relative;
  padding: 0;
}
.navbar-area.navbar-two .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--black);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-two .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-area.navbar-two .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-area.navbar-two .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-collapse {
    position: absolute;
    top: 140%;
    left: 0;
    width: 100%;
    background-color: var(--light-2);
    z-index: 8;
    padding: 10px 0;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item {
  margin: 0 12px;
  position: relative;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 28px 8px;
  color: var(--dark-2);
  text-transform: capitalize;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background-color: var(--primary);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item a::before {
    height: 100%;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a i {
  font-weight: 700;
  padding-left: 8px;
  font-size: 14px;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a:hover i {
  color: var(--white);
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active:hover i {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active:hover i {
    color: var(--white);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item a {
    padding: 10px 10px;
    display: block;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active {
  color: var(--primary);
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active::before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active {
    color: var(--white);
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active i {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active i {
    color: var(--white);
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a {
    color: var(--white);
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a::before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a i {
    color: var(--white);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item {
    margin-bottom: 5px;
  }
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  right: 0;
  top: 100%;
  width: 260px;
  background-color: var(--white);
  box-shadow: var(--shadow-4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  font-weight: 500;
  position: relative;
  color: var(--dark);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 5;
  text-transform: capitalize;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a:hover {
  background-color: var(--primary);
  color: var(--white);
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a::before {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a i {
    color: var(--primary);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a:hover i {
    color: var(--white);
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
    height: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-two .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}
.navbar-area.navbar-two .navbar .navbar-btn ul {
  display: flex;
}
.navbar-area.navbar-two .navbar .navbar-btn ul li {
  display: inline-block;
  margin-right: 5px;
}

/* ===== Buttons Css ===== */
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .active.primary-btn, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:hover, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .active.primary-btn-outline, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:hover, .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== SLIDER ONE =====*/
.slider-one .bd-example .carousel .carousel-inner {
  background-color: var(--primary);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item {
  height: auto;
  padding: 300px 0;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item {
    padding: 200px 0;
  }
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item {
    padding: 150px 0;
  }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  opacity: 0.5;
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item {
    height: 400px;
  }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption {
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  left: 0;
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
  font-size: 44px;
  font-weight: 500;
  color: var(--white);
  line-height: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .text {
  color: var(--white);
  font-size: 18px;
  line-height: 26px;
  display: block;
  margin: 20px 0;
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li {
  display: inline-block;
  margin: 16px 8px 0;
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li {
    margin: 16px 3px 0;
  }
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn:hover {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.slider-one .bd-example .carousel .carousel-inner .carousel-item .carousel-caption .carousel-btn li .primary-btn-outline:hover {
  border-color: transparent;
  background-color: var(--white);
  color: var(--primary);
}
.slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
  top: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border: 1px solid var(--white);
  font-size: 20px;
  color: var(--white);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: auto;
  left: 30px;
  opacity: 1;
  z-index: 99;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.slider-one .bd-example .carousel .carousel-control-prev:hover, .slider-one .bd-example .carousel .carousel-control-next:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
    left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
    left: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-control-prev, .slider-one .bd-example .carousel .carousel-control-next {
    left: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.slider-one .bd-example .carousel .carousel-control-next {
  right: 30px;
  left: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-one .bd-example .carousel .carousel-control-next {
    right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one .bd-example .carousel .carousel-control-next {
    right: 40px;
  }
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-control-next {
    right: 20px;
  }
}
.slider-one .bd-example .carousel .carousel-indicators {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one .bd-example .carousel .carousel-indicators {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .slider-one .bd-example .carousel .carousel-indicators {
    margin-bottom: 30px;
  }
}
.slider-one .bd-example .carousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  background-color: var(--white);
  border-radius: 50px;
  border: 0;
  margin: 0px 5px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.slider-one .bd-example .carousel .carousel-indicators li.active {
  width: 20px;
  background-color: var(--white);
  border-radius: 5px;
}
.slider-one .bd-example .carousel .carousel-indicators li:hover {
  opacity: 1;
}
/* ===== Buttons Css ===== */
.header-five .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-five .active.primary-btn, .header-five .primary-btn:hover, .header-five .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-five .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.header-five .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.header-five .active.primary-btn-outline, .header-five .primary-btn-outline:hover, .header-five .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.header-five .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== HEADER FIVE =====*/
.header-five {
  position: relative;
}
.header-five .header-hero {
  height: 850px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-five .header-hero {
    height: 700px;
  }
}
@media (max-width: 767px) {
  .header-five .header-hero {
    height: 650px;
  }
}
.header-five .header-hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(rgba(232, 237, 255, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
  background: -o-linear-gradient(rgba(232, 237, 255, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
  background: linear-gradient(rgba(232, 237, 255, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
}
.header-five .header-content {
  padding-top: 195px;
  position: relative;
  z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-five .header-content {
    padding-top: 130px;
  }
}
@media (max-width: 767px) {
  .header-five .header-content {
    padding-top: 120px;
  }
}
.header-five .header-title {
  font-size: 44px;
  line-height: 55px;
  color: var(--black);
  font-weight: 600;
}
@media (max-width: 767px) {
  .header-five .header-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.header-five .text {
  font-size: 20px;
  line-height: 32px;
  color: var(--dark-3);
  margin-top: 16px;
}
@media (max-width: 767px) {
  .header-five .text {
    font-size: 16px;
    line-height: 24px;
  }
}
.header-five .header-btn {
  margin-top: 22px;
}
.header-five .header-btn li {
  display: inline-block;
  margin: 10px 10px 0;
}
.header-five .header-shape {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
}
.header-five .header-shape img {
  width: 100%;
}
/* ===== Buttons Css ===== */
.header-eight .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-eight .active.primary-btn, .header-eight .primary-btn:hover, .header-eight .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-eight .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eight {
  position: relative;
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .header-eight {
    padding: 80px 0;
  }
}
.header-eight .header-image img {
  width: 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-eight .header-image {
    margin-top: 5px;
  }
}
.header-eight .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}
.header-eight .header-content h1 {
  font-weight: 700;
  font-size:40px;
  color: var(--dark);
  opacity: 0.9;
  text-shadow: 0px 3px 8px #00000017;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-eight .header-content h1 {
    margin-top: 20px;
    font-weight: 700;
    font-size: 30px;
    color: var(--dark);
    opacity: 0.9;
    text-shadow: 0px 3px 8px #00000017;
  }
}
.header-eight .header-content h1 span {
  display: block;
}
.header-eight .header-content p {
  margin-top: 30px;
  color: var(--dark);
  opacity: 0.7;
}
.header-eight .button {
  margin-top: 40px;
}
.header-eight .primary-btn {
  margin-right: 12px;
  background-color: var(--dark);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.header-eight .primary-btn:hover {
  background-color:var(--caution);
  color: var(--white);
  border-color: var(--dark);
}
.header-eight .video-button {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header-eight .video-button {
    margin-top: 20px;
  }
}
.header-eight .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--dark);
  font-weight: 600;
}
.header-eight .video-button .icon-btn {
  background: var(--primary);
  color: var(--white);
}
/*===========================
  Features Two CSS 
===========================*/
.features-two {
  background-color: var(--light-2);
  padding-top: 60px;
  padding-bottom: 90px;
}
.features-two .section-title {
  padding-bottom: 10px;
}
.features-two .title {
  font-size: 44px;
  font-weight: 600;
  color: var(--black);
  line-height: 55px;
}
@media (max-width: 767px) {
  .features-two .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.features-two .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  margin-top: 24px;
}

.features-style-two {
  padding: 40px 20px 52px;
  background-color: var(--white);
  margin-top: 40px;
  transition: all 0.3s;
  box-shadow: var(--shadow-2);
  border-radius: 4px;
}
.features-style-two:hover {
  box-shadow: var(--shadow-4);
}
.features-style-two .features-title {
  font-size: 30px;
  line-height: 40px;
  color: var(--black);
  font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .features-style-two .features-title {
    font-size: 24px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features-style-two .features-title {
    font-size: 36px;
    line-height: 45px;
  }
}
.features-style-two .features-icon {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.features-style-two .features-icon i {
  font-size: 60px;
  line-height: 70px;
  color: var(--primary);
}
.features-style-two .features-icon .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.features-style-two .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.features-style-two .features-btn {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin-top: 30px;
}

/*===== BLOG MINI STYLE =====*/
.single-mini-blog {
  margin-top: 15px;
  margin-bottom: 4px;
}
.single-mini-blog .blog-text {
  max-width: 80px;
  height: 60px;
  width: 100%;
  border-radius: 4px;
  font-weight:600;
 
}

.single-mini-blog .blog-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 4px;
}
.single-mini-blog .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-mini-blog .blog-content {
  padding-left: 12px;
}
.single-mini-blog .blog-content .blog-title a {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-mini-blog .blog-content .blog-title a {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .single-mini-blog .blog-content .blog-title a {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-mini-blog .blog-content .blog-title a {
    font-size: 16px;
    line-height: 24px;
  }
}
.single-mini-blog .blog-content .blog-title a:hover {
  color: var(--primary);
}
.single-mini-blog .blog-content span {
  font-size: 13px;
  line-height: 18px;
  color: var(--dark-3);
  margin-top: 8px;
  margin-right: 8px;
}
.single-mini-blog.mini-style-two .blog-image img {
  border-radius: 50%;
}

/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR NINE =====*/
.navbar-area.navbar-nine {
  background: var(--primary);

}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine {
    padding: 0px 0;
  }
  .navbar-area.navbar-nine .navbar-brand {
    max-width:250px;
  }
}
.navbar-area.navbar-nine .navbar-brand {
  margin: 0;
}
.navbar-area.navbar-nine .navbar {
  position: relative;
  padding: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse {
    position: absolute;
    top: 116%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 8;
    padding: 10px 16px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-left: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-right: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 14px 0;
  opacity: 0.7;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover {
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
    border: 0;
    margin: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
  font-size: 12px;
  font-weight: 700;
  padding-left: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
    position: relative;
    top: -5px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 130%;
  width: 230px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
  list-style:none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  z-index: 5;
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
  color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
    color: var(--primary);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
  color: var(--primary);
  padding-left: 22px;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a i {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
    color: var(--primary);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a::after {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a::before {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 115%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn {
  margin-top: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
  font-size: 22px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(238, 238, 238, 0.425);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
  border-color: transparent;
  color: var(--primary);
  background-color: var(--white);
}

.navbar-area.navbar-nine .btn.icon-btn.btn-sm {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: var(--primary);
  border-color: transparent;
}

.navbar-area.navbar-nine .btn.icon-btn.btn-sm:hover {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: var(--white);
  color: var(--primary);
}

/*===== SIDEBAR ONE =====*/
.sidebar-left {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white);
  height: 100%;
  width: 350px;
  padding-top: 80px;
  z-index: 99;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  text-align: left;
}
.sidebar-left.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 767px) {
  .sidebar-left {
    width: 250px;
  }
}
.sidebar-left .sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.sidebar-left .sidebar-close .close {
  font-size: 18px;
  color: var(--black);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.sidebar-left .sidebar-close .close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sidebar-left .sidebar-content {
  padding: 0px 30px;
}
.sidebar-left .sidebar-content .sidebar-menu {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-menu .menu-title {
  font-size: 18px;
  font-weight: 600;
}
.sidebar-left .sidebar-content .sidebar-menu ul {
  margin-top: 15px;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--dark-3);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.sidebar-left .sidebar-content .text {
  margin-top: 20px;
}
.sidebar-left .sidebar-content .sidebar-social {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-social .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.sidebar-left .sidebar-content .sidebar-social ul li {
  display: inline-block;
  margin-right: 5px;
}
.sidebar-left .sidebar-content .sidebar-social ul li:last-child {
  margin: 0;
}
.sidebar-left .sidebar-content .sidebar-social ul li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-left .sidebar-content .sidebar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

.overlay-left {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9;
}
.overlay-left.open {
  display: block;
}

/* ===== Buttons Css ===== */
.slider-four .carousel-item .slider-content .slider-btn li .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.slider-four .carousel-item .slider-content .slider-btn li .active.primary-btn, .slider-four .carousel-item .slider-content .slider-btn li .primary-btn:hover, .slider-four .carousel-item .slider-content .slider-btn li .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.slider-four .carousel-item .slider-content .slider-btn li .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.slider-four .carousel-item .slider-content .slider-btn li .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.slider-four .carousel-item .slider-content .slider-btn li .active.primary-btn-outline, .slider-four .carousel-item .slider-content .slider-btn li .primary-btn-outline:hover, .slider-four .carousel-item .slider-content .slider-btn li .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.slider-four .carousel-item .slider-content .slider-btn li .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== SLIDER FOUR =====*/
.slider-four .carousel-item {
  background-color: var(--primary);
  position: relative;
  z-index: 1;
}
.slider-four .carousel-item::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 100%;
  background: #0067f4;
  background: -webkit-linear-gradient(rgba(0, 103, 244, 0.3) 0%, rgba(43, 219, 220, 0.3) 100%);
  background: -o-linear-gradient(rgba(0, 103, 244, 0.3) 0%, rgba(43, 219, 220, 0.3) 100%);
  background: linear-gradient(rgba(0, 103, 244, 0.3) 0%, rgba(43, 219, 220, 0.3) 100%);
  top: 0;
  right: 20%;
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  transform: skewX(20deg);
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-four .carousel-item::before {
    width: 10%;
  }
}
@media (max-width: 767px) {
  .slider-four .carousel-item::before {
    width: 50%;
    right: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-four .carousel-item::before {
    right: 25%;
  }
}
.slider-four .carousel-item::after {
  position: absolute;
  content: "";
  width: 10%;
  height: 100%;
  background: #0067f4;
  background: -webkit-linear-gradient(rgba(0, 103, 244, 0.3) 0%, rgba(43, 219, 220, 0.3) 100%);
  background: -o-linear-gradient(rgba(0, 103, 244, 0.3) 0%, rgba(43, 219, 220, 0.3) 100%);
  background: linear-gradient(rgba(0, 103, 244, 0.3) 0%, rgba(43, 219, 220, 0.3) 100%);
  top: -30%;
  right: 40%;
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  transform: skewX(20deg);
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-four .carousel-item::after {
    width: 10%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-four .carousel-item::after {
    width: 10%;
  }
}
@media (max-width: 767px) {
  .slider-four .carousel-item::after {
    width: 10%;
    right: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-four .carousel-item::after {
    right: 25%;
  }
}
.slider-four .carousel-item .slider-content {
  padding-top: 160px;
  padding-bottom: 180px;
  position: relative;
  z-index: 9;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .slider-four .carousel-item .slider-content {
    padding-right: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-four .carousel-item .slider-content {
    padding-top: 90px;
    padding-bottom: 120px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .slider-four .carousel-item .slider-content {
    padding-top: 70px;
    padding-bottom: 100px;
    text-align: center;
  }
}
.slider-four .carousel-item .slider-content .title {
  font-size: 40px;
  line-height: 45px;
  color: var(--white);
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-four .carousel-item .slider-content .title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .slider-four .carousel-item .slider-content .title {
    font-size: 25px;
    line-height: 32px;
  }
}
.slider-four .carousel-item .slider-content .text {
  color: var(--white);
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-four .carousel-item .slider-content .text {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .slider-four .carousel-item .slider-content .text {
    margin-top: 20px;
  }
}
.slider-four .carousel-item .slider-content .slider-btn {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .slider-four .carousel-item .slider-content .slider-btn {
    margin-top: 10px;
  }
}
.slider-four .carousel-item .slider-content .slider-btn li {
  display: inline-block;
  margin: 16px 8px 0;
}
@media (max-width: 767px) {
  .slider-four .carousel-item .slider-content .slider-btn li {
    margin: 16px 3px 0;
  }
}
.slider-four .carousel-item .slider-content .slider-btn li .primary-btn {
  background-color: var(--white);
  color: var(--primary);
}
.slider-four .carousel-item .slider-content .slider-btn li .primary-btn:hover {
  background-color: var(--white);
  color: var(--primary);
}
.slider-four .carousel-item .slider-content .slider-btn li .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.slider-four .carousel-item .slider-content .slider-btn li .primary-btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}
.slider-four .carousel-item .slider-image-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 9;
}
.slider-four .carousel-item .slider-image-box .slider-image {
  right: 0;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider-four .carousel .carousel-control-prev, .slider-four .carousel .carousel-control-next {
  top: 50%;
  font-size: 32px;
  color: var(--white);
  bottom: auto;
  left: 30px;
  right: auto;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid var(--gray-4);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.slider-four .carousel .carousel-control-prev:hover, .slider-four .carousel .carousel-control-next:hover {
  border-color: transparent;
  background-color: var(--white);
  color: var(--primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-four .carousel .carousel-control-prev, .slider-four .carousel .carousel-control-next {
    left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-four .carousel .carousel-control-prev, .slider-four .carousel .carousel-control-next {
    left: 30px;
  }
}
@media (max-width: 767px) {
  .slider-four .carousel .carousel-control-prev, .slider-four .carousel .carousel-control-next {
    font-size: 24px;
    width: 38px;
    height: 38px;
    left: 30px;
  }
}
.slider-four .carousel .carousel-control-next {
  right: 30px;
  left: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .slider-four .carousel .carousel-control-next {
    right: 30px;
  }
}
.slider-four .carousel .carousel-indicators {
  margin-bottom: 50px;
}
.slider-four .carousel .carousel-indicators li {
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--white);
  opacity: 0.3;
  border-radius: 50px;
  border: 0;
  margin: 0px 4px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.slider-four .carousel .carousel-indicators li:hover {
  opacity: 1;
}
.slider-four .carousel .carousel-indicators li.active {
  opacity: 1;
  width: 20px;
  border-radius: 5px;
}
/*===== FOOTER ONE =====*/
.footer-one {
  background-color: var(--primary-light);
  color: var(--dark-1);
}
.footer-one .footer-logo {
  margin-top: 10px;
  max-width:270px;
}
.footer-one .footer-widget {
  padding-top: 70px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-one .footer-widget {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .footer-one .footer-widget {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.footer-one .footer-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--dark-1);
  position: relative;
}
.footer-one .footer-app-store {
  padding-top: 22px;
}
.footer-one .footer-app-store .download-title {
  font-size: 15px;
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--dark-1);
}
.footer-one .footer-app-store li {
  display: inline-block;
  margin-right: 8px;
}
.footer-one .footer-app-store li img {
  max-width: 140px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-one .footer-app-store li {
    margin-right: 6px;
  }
}
.footer-one .footer-app-store li:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .footer-one .footer-app-store li {
    width: 120px;
    display: block;
    margin-bottom: 10px;
  }
  .footer-one .footer-app-store li:last-child {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-one .footer-app-store li {
    width: auto;
  }
}
.footer-one .footer-app-store li a {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.footer-one .footer-app-store li a:hover {
  box-shadow: var(--shadow-4);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}
.footer-one .f-about {
  margin-top: 30;
}
.footer-one .f-about .text {
  margin-top: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .footer-one .f-about {
    padding-right: 200px;
  }
}
.footer-one .footer-link {
  margin-top: 30px;
}
.footer-one .footer-link ul {
  margin-top: 8px;
}
.footer-one .footer-link ul a {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-1);
  margin-top: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .footer-one .footer-link ul a {
    margin-top: 12px;
  }
}
.footer-one .footer-link ul a:hover {
  color: var(--primary);
}
.footer-one .footer-contact {
  margin-top: 30px;
}
.footer-one .footer-contact ul {
  margin-top: 24px;
}
.footer-one .footer-contact ul li {
  display: block;
  margin-top: 15px;
  position: relative;
  padding-left: 24px;
  color: var(--dark-1);
}
.footer-one .footer-contact ul li:first-child {
  margin: 0;
}
.footer-one .footer-contact ul li i {
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 4px;
}
.footer-one .footer-copyright {
  border-top: 1px solid var(--gray-3);
}
.footer-one .copyright {
  padding-bottom: 23px;
  padding-top: 13px;
}
.footer-one .copyright .text {
  color: var(--dark-2);
  margin-top: 10px;
}
.footer-one .social {
  margin-top: 10px;
}
.footer-one .social li {
  display: inline-block;
  margin-right: 15px;
}
.footer-one .social li:last-child {
  margin-right: 0;
}
.footer-one .social li a {
  font-size: 18px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.footer-one .social li a:hover {
  color: var(--primary);
}

/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-3);
  color: var(--dark-1);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR TWO =====*/
.navbar-area.navbar-two {
  background-color: var(--light-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two {
    padding: 20px 0;
  }
}
.navbar-area.navbar-two .navbar {
  position: relative;
  padding: 0;
}
.navbar-area.navbar-two .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--black);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-two .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-area.navbar-two .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-area.navbar-two .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-collapse {
    position: absolute;
    top: 140%;
    left: 0;
    width: 100%;
    background-color: var(--light-2);
    z-index: 8;
    padding: 10px 0;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item {
  margin: 0 12px;
  position: relative;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 28px 8px;
  color: var(--dark-2);
  text-transform: capitalize;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background-color: var(--primary);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item a::before {
    height: 100%;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a i {
  font-weight: 700;
  padding-left: 8px;
  font-size: 14px;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a:hover i {
  color: var(--white);
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active:hover i {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active:hover i {
    color: var(--white);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item a {
    padding: 10px 10px;
    display: block;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active {
  color: var(--primary);
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active::before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active {
    color: var(--white);
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active i {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item a.active i {
    color: var(--white);
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a {
    color: var(--white);
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a::before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover a i {
    color: var(--white);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item {
    margin-bottom: 5px;
  }
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  right: 0;
  top: 100%;
  width: 260px;
  background-color: var(--white);
  box-shadow: var(--shadow-4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  font-weight: 500;
  position: relative;
  color: var(--dark);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 5;
  text-transform: capitalize;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a:hover {
  background-color: var(--primary);
  color: var(--white);
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a::before {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a i {
    color: var(--primary);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a:hover i {
    color: var(--white);
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
    height: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.navbar-area.navbar-two .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-two .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-two .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}
.navbar-area.navbar-two .navbar .navbar-btn ul {
  display: flex;
}
.navbar-area.navbar-two .navbar .navbar-btn ul li {
  display: inline-block;
  margin-right: 5px;
}

/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus {
  background: var(--primary);
  color: var(--caution);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--caution);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR FOUR =====*/
.navbar-area.navbar-four {
  background-color: var(--primary-light);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four {
    padding: 10px 0;
  }
}
.navbar-area.navbar-four .navbar {
  position: relative;
  padding: 0;
}
.navbar-area.navbar-four .navbar .navbar-brand img {
  max-width: 250px;
  margin-right: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-four .navbar .navbar-brand img {
  max-width: 200px;
  }
}

@media (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-brand img {
  max-width: 200px;
  }
}


.navbar-area.navbar-four .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--black);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-four .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-area.navbar-four .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-area.navbar-four .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-collapse {
    position: absolute;
    top: 116%;
    left: 0;
    width: 100%;
    background-color: var(--light-2);
    z-index: 8;
    padding: 10px 0;
  }
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item {
  margin: 0 5px;
  position: relative;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: var(--black);
  text-transform: capitalize;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 500;
  font-size: 16px;
  margin: 15px 0;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  opacity: 0;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item a {
    padding: 10px 24px;
    display: block;
    margin: 5px 0;
  }
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item a.active {
  color: var(--primary);
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item a.active::before {
  opacity: 0.1;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item a i {
  font-size: 14px;
  font-weight: 700;
  padding-left: 8px;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item:hover > a {
  color: var(--primary);
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item:hover > a::before {
  opacity: 0.1;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 260px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
  margin: 0;
  margin-bottom: 5px;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li:last-child {
  margin: 0;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  position: relative;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 1;
  z-index: 5;
  border-radius: 5px;
  margin: 0;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a::before {
  display: none;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a i {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a {
    font-size: 15px;
  }
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a:hover {
  background: var(--primary);
  color: var(--white) !important;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a:hover i {
  color: var(--white) !important;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a.active:hover i {
  color: var(--white);
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a::before {
  display: none;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li a::after {
  position: absolute;
  content: "";
  top: 0;
  left: -2px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: var(--primary);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
  color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
    color: var(--black);
  }
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li:hover > a::after {
  opacity: 1;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-menu li:hover > a::before {
  opacity: 1;
}
.navbar-area.navbar-four .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-four .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--black);
  }
}
.navbar-area.navbar-four .navbar .navbar-social span {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-2);
  text-transform: capitalize;
  font-weight: 500;
  margin-right: 14px;
  white-space: nowrap;
}
.navbar-area.navbar-four .navbar .navbar-social ul {
  display: flex;
}
.navbar-area.navbar-four .navbar .navbar-social ul li {
  display: inline-block;
  margin-right: 5px;
}
.navbar-area.navbar-four .navbar .navbar-social ul li:last-child {
  margin: 0;
}
.navbar-area.navbar-four .navbar .navbar-social ul li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-four .navbar .navbar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary-dark);
}

/*===== FOOTER TWO =====*/
.footer-two {
  background-color: var(--primary-light);
  color: var(--dark-1);
}
.footer-two .f-about {
  margin-top: 30px;
}
.footer-two .f-about .text {
  margin-top: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .footer-two .f-about {
    padding-right: 200px;
  }
}
.footer-two .footer-widget {
  padding-top: 50px;
  padding-bottom: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-two .footer-widget {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .footer-two .footer-widget {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.footer-two .footer-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--black);
  position: relative;
}
.footer-two .footer-support {
  padding-top: 21px;
}
.footer-two .footer-support span {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  font-weight: 500;
  margin-top: 9px;
  display: block;
}
@media (max-width: 767px) {
  .footer-two .footer-support span {
    display: block;
  }
}
.footer-two .social {
  padding-top: 27px;
}
.footer-two .social li {
  display: inline-block;
  margin-right: 15px;
}
.footer-two .social li:last-child {
  margin-right: 0;
}
.footer-two .social a {
  font-size: 18px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.footer-two .social a:hover {
  color: var(--primary);
}
.footer-two .footer-link {
  margin-top: 32px;
}
.footer-two .footer-link ul {
  margin-top: 8px;
}
.footer-two .footer-link ul a {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  margin-top: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .footer-two .footer-link ul a {
    margin-top: 12px;
  }
}
.footer-two .footer-link ul a:hover {
  color: var(--primary);
}
.footer-two .footer-copyright {
  border-top: 1px solid var(--primary);
  background-color: var(--primary);

}
.footer-two .copyright {
  padding-bottom: 23px;
  padding-top: 13px;
}
.footer-two .copyright .text {
  color: var(--light-3);
  margin-top: 10px;
}

/* tabs-six */
.tabs-six {
  border: 1px solid var(--gray-4);
}
.tabs-six .nav {
  height: 100%;
  position: relative;
}
.tabs-six .nav::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background-color: var(--gray-4);
  top: 0;
  right: 0;
}
.tabs-six .nav a {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  font-weight: 700;
  padding: 13px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
  position: relative;
  text-align: center;
}
.tabs-six .nav a i {
  margin-right: 5px;
  font-size: 18px;
}
.tabs-six .nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}
.tabs-six .nav a.active::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: var(--primary);
  top: 0;
  right: 0;
}
.tabs-six .tab-content .tab-text {
  padding: 15px;
}
.tabs-six .tab-content .tab-text .text {
  color: var(--dark-3);
}
.label {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 2px;
  display: inline-block;
  border: 1px solid transparent;
  background: transparent;
}
.label.rounded-full {
  border-radius: 50px;
  padding: 4px 12px;
}
.label.icon-left i {
  padding-right: 6px;
}
.label.icon-right i {
  padding-left: 6px;
}
.label.primary-label {
  background: var(--primary);
  color: var(--white);
}
.label.primary-label-outline {
  color: var(--primary);
  border-color: var(--primary);
}


/*===== SLIDER SEVEN =====*/
.slider-seven {
  background-color: var(--light-2);
  padding-top: 100px;
  padding-bottom: 100px;
}
.slider-seven .single-items-three {
  margin-top: 30px;
}
.slider-seven .single-items-three .items-image img {
  width: 100%;
  border-radius: 10px;
}
.slider-seven .single-items-three .items-content {
  margin-top: 16px;
  position: relative;
}
.slider-seven .single-items-three .items-content .items-title {
  padding-right: 30px;
}
.slider-seven .single-items-three .items-content .items-title a {
  font-size: 18px;
  line-height: 26px;
  color: var(--black);
  font-weight: 600;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .slider-seven .single-items-three .items-content .items-title a {
    font-size: 20px;
    line-height: 28px;
  }
}
.slider-seven .single-items-three .items-content .items-title a:hover {
  color: var(--primary);
}
.slider-seven .single-items-three .items-content i {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  color: var(--dark-3);
}
.slider-seven .slider-items-three-wrapper {
  position: relative;
  margin: 0;
}
.slider-seven .slider-items-three-wrapper .tns-nav {
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.slider-seven .slider-items-three-wrapper .tns-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: var(--primary);
  opacity: 0.3;
  border: 0;
  margin: 0 5px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.slider-seven .slider-items-three-wrapper .tns-nav button.tns-nav-active {
  width: 20px;
  opacity: 1;
  border-radius: 5px;
}
.slider-seven .slider-items-three-wrapper .tns-nav button:hover {
  opacity: 1;
}
.slider-seven .slider-items-three-wrapper .tns-controls {
  z-index: 2;
}
.slider-seven .slider-items-three-wrapper .tns-controls button {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  left: -25px;
  font-size: 27px;
  line-height: 30px;
  color: var(--dark-3);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: var(--primary);
  z-index: 9;
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-seven .slider-items-three-wrapper .tns-controls button {
    font-size: 24px;
    left: -24px;
  }
}
.slider-seven .slider-items-three-wrapper .tns-controls button:hover {
  color: var(--white);
  background-color: var(--dark-1);
}
.slider-seven .slider-items-three-wrapper .tns-controls button[data-controls=next] {
  left: auto;
  right: 0px;
}

/* ===== Buttons Css ===== */
.slider-area-9 .light-rounded-buttons .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.slider-area-9 .light-rounded-buttons .active.primary-btn, .slider-area-9 .light-rounded-buttons .primary-btn:hover, .slider-area-9 .light-rounded-buttons .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.slider-area-9 .light-rounded-buttons .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.slider-area-9 .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.slider-area-9 .light-rounded-buttons .active.primary-btn-outline, .slider-area-9 .light-rounded-buttons .primary-btn-outline:hover, .slider-area-9 .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.slider-area-9 .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/* ========= slider-9 css ======== */
.slider-area-9 {
  position: relative;
  background: var(--light-2);
  overflow: hidden;
}
.slider-area-9 .slider-inner {
  height: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 3;
  padding: 130px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area-9 .slider-inner {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .slider-area-9 .slider-inner {
    padding: 70px 0;
  }
}
.slider-area-9 .slider-inner.overlay::before {
  content: "";
  background-color: var(--primary);
  z-index: -1;
  opacity: 0.35;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.slider-area-9 .tns-controls {
  width: 100%;
}
.slider-area-9 .tns-controls button:first-child {
  left: 30px;
}
@media (max-width: 767px) {
  .slider-area-9 .tns-controls button:first-child {
    left: 5px;
  }
}
.slider-area-9 .tns-controls button:last-child {
  right: 30px;
}
@media (max-width: 767px) {
  .slider-area-9 .tns-controls button:last-child {
    right: 5px;
  }
}
.slider-area-9 .tns-controls button {
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 2;
  color: var(--black);
  font-size: 17px;
  background: var(--white);
  border: none;
  padding: 2px 5px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: absolute;
  z-index: 5;
  top: 50%;
  margin-top: -25px;
}
@media (max-width: 767px) {
  .slider-area-9 .tns-controls button {
    height: 40px;
    width: 40px;
    opacity: 0.5;
  }
  .slider-area-9 .tns-controls button:hover {
    opacity: 1;
  }
}
.slider-area-9 .tns-controls button:hover {
  color: var(--primary);
}
.slider-area-9 .slider-text {
  float: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .slider-area-9 .slider-text {
    padding-right: 100px;
  }
}
.slider-area-9 .slider-text h5 {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 1px;
}
.slider-area-9 .slider-text h1 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 45px;
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area-9 .slider-text h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .slider-area-9 .slider-text h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.slider-area-9 .slider-text h5 {
  opacity: 0.9;
  font-size: 18px;
  color: var(--caution);
}
.slider-area-9 .slider-text p {
  opacity: 0.9;
  color: var(--white);
}
.slider-area-9 .light-rounded-buttons {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .slider-area-9 .light-rounded-buttons .btn {
    width: 100%;
    margin-top: 12px;
  }
}
.slider-area-9 .light-rounded-buttons .primary-btn {
  background: var(--white);
  color: var(--primary);
  margin-right: 15px;
}
@media (max-width: 767px) {
  .slider-area-9 .light-rounded-buttons .primary-btn {
    width: 100%;
  }
}
.slider-area-9 .light-rounded-buttons .primary-btn-outline {
  color: var(--white);
  border-color: var(--white);
}
@media (max-width: 767px) {
  .slider-area-9 .light-rounded-buttons .primary-btn-outline {
    width: 100%;
  }
}
.slider-area-9 .light-rounded-buttons .primary-btn-outline:hover {
  color: var(--white);
  background: var(--primary-dark);
}

/* ===== Buttons Css ===== */
.features-style-one .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.features-style-one .active.primary-btn-outline, .features-style-one .primary-btn-outline:hover, .features-style-one .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.features-style-one .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===========================
  Features One CSS 
===========================*/
.features-one {
  background-color: var(--light-2);
  padding-top: 20px;
  padding-bottom: 60px;
}
.features-one .section-title {
  padding-bottom: 10px;
}
.features-one .title {
  font-size: 44px;
  font-weight: 600;
  color: var(--black);
  line-height: 55px;
}
@media (max-width: 767px) {
  .features-one .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.features-one .text {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  margin-top: 24px;
}

.features-style-one {
  background-color: var(--white);
  padding: 40px 20px;
  margin-top: 40px;
  box-shadow: var(--shadow-2);
  border-radius: 4px;
  transition: all 0.3s;
}
.features-style-one:hover {
  box-shadow: var(--shadow-4);
}
.features-style-one .features-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 40px;
  color: var(--primary);
  border: 2px solid rgba(187, 187, 187, 0.192);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .features-style-one .features-icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 35px;
  }
}
.features-style-one:hover .features-icon {
  border-color: transparent;
  color: var(--white);
  background-color: var(--primary);
}
.features-style-one .features-content {
  margin-top: 24px;
}
.features-style-one .features-title {
  font-size: 26px;
  line-height: 35px;
  font-weight: 600;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .features-style-one .features-title {
    font-size: 22px;
  }
}
.features-style-one .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.features-style-one .features-btn {
  margin-top: 32px;
}

.alert {
  padding: 32px;
  padding-left: 0;
  border-radius: 4px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.alert.alert-dismissible {
  padding: 12px 48px 12px 0;
}
.alert.alert-dismissible .alert-icon {
  padding: 0px 12px 0 36px;
  line-height: 1;
}
.alert.alert-dismissible .alert-message h5 {
  margin-bottom: 0px;
}
.alert.alert-dismissible .btn-close {
  background: none;
  padding: 1rem;
}
.alert.alert-dismissible .btn-close:focus-within, .alert.alert-dismissible .btn-close:focus {
  box-shadow: none;
}
.alert.alert-dismissible .btn-close.dark i {
  color: var(--black);
}
.alert.alert-dismissible .btn-close i {
  color: var(--white);
  font-weight: 700;
}
.alert .alert-icon {
  padding: 32px;
}
.alert .alert-icon i {
  font-size: 20px;
  font-weight: 700;
}
.alert .alert-message h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.alert .alert-message p {
  color: var(--black);
  opacity: 0.88;
}
.alert.alert-accent-light {
  background: var(--accent-light);
}
.alert.alert-accent-light::before {
  background: var(--accent);
}
.alert.alert-accent-light .alert-icon {
  color: var(--accent);
}
/* Update alert */
/*======================================
	Footer CSS
========================================*/
.footer-thirteen {
  z-index: 2;
  position: relative;
  background: var(--primary);
}
.footer-thirteen::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("https://cdn.ayroui.com/1.0/images/footer/saas-overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}
.footer-thirteen .logo {
  margin-bottom: 26px;
}
.footer-thirteen .f-about {
  padding-right: 85px;
}
@media (max-width: 767px) {
  .footer-thirteen .f-about {
    padding: 0;
  }
}
.footer-thirteen .f-about p {
  color: var(--white);
}
.footer-thirteen .footer-social {
  margin-top: 30px;
}
.footer-thirteen .footer-social li {
  display: inline-block;
  margin-right: 10px;
}
.footer-thirteen .footer-social li:last-child {
  margin-right: 0;
}
.footer-thirteen .footer-social a {
  font-size: 16px;
  display: block;
  background: transparent;
  border: none;
  color: var(--white);
  position: relative;
  z-index: 3;
  height: 38px;
  width: 38px;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.452);
  text-align: center;
  line-height: 38px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.footer-thirteen .footer-social a:hover {
  color: var(--primary);
  background-color: var(--white);
  border-color: transparent;
}
.footer-thirteen .footer-middle {
  padding-bottom: 100px;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .footer-thirteen .footer-middle {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.footer-thirteen .footer-widget {
  margin-top: 30px;
}
.footer-thirteen .footer-widget h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.footer-thirteen .f-link li {
  margin-bottom: 18px;
  position: relative;
  list-style-type: none;

}
.footer-thirteen .f-link li:last-child {
  margin: 0;
}
.footer-thirteen .f-link a {
  display: inline-block;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}
.footer-thirteen .f-link a:hover {
  opacity: 0.7;
}
.footer-thirteen .f-contact ul {
  margin-top: 20px;
}
.footer-thirteen .f-contact li {
  display: block;
  margin-bottom: 15px;
  color: var(--white);
  position: relative;
  padding-left: 35px;
}
.footer-thirteen .f-contact li i {
  display: inline-block;
  font-size: 18px;
  color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
}
.footer-thirteen .f-contact li:last-child {
  margin: 0;
}
.footer-thirteen .footer-bottom {
  padding: 30px 0;
  background-color: transparent;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}
.footer-thirteen .footer-bottom .inner {
  text-align: center;
}
.footer-thirteen .footer-bottom .inner p {
  color: var(--white);
}
.footer-thirteen .footer-bottom .inner a {
  font-weight: 400;
  display: inline-block;
  margin-left: 6px;
  color: var(--white);
}
.footer-thirteen .footer-bottom .inner a:hover {
  text-decoration: underline;
}

/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR TEN =====*/
.navbar-ten {
  background-color: var(--primary-light);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten {
    padding: 10px 0;
  }
}
.navbar-ten .navbar-brand {
  margin: 0;
}
.navbar-ten .navbar {
  position: relative;
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-ten .navbar-toggler {
    position: absolute;
    right: 0;
  }
}
.navbar-ten .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--black);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-ten .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-ten .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-ten .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-collapse {
    position: absolute;
    top: 116%;
    left: 0;
    width: 100%;
    background-color: var(--primary-light);
    z-index: 8;
    padding: 10px 16px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-ten .navbar-nav {
    margin-left: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-nav {
    margin-right: 0;
  }
}
.navbar-ten .navbar-nav .nav-item {
  position: relative;
  margin-right: 30px;
}
.navbar-ten .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.navbar-ten .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 30px 0px;
  color: var(--black);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0.7;
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
    border: 0;
    margin: 0;
  }
}
.navbar-ten .navbar-nav .nav-item a.active {
  opacity: 1;
  color: var(--primary);
}
.navbar-ten .navbar-nav .nav-item a.active::before {
  -webkit-transform: translateX(-50%) scaleX(1);
  -moz-transform: translateX(-50%) scaleX(1);
  -ms-transform: translateX(-50%) scaleX(1);
  -o-transform: translateX(-50%) scaleX(1);
  transform: translateX(-50%) scaleX(1);
}
.navbar-ten .navbar-nav .nav-item a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: var(--primary);
  left: 50%;
  bottom: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: translateX(-50%) scaleX(0);
  -moz-transform: translateX(-50%) scaleX(0);
  -ms-transform: translateX(-50%) scaleX(0);
  -o-transform: translateX(-50%) scaleX(0);
  transform: translateX(-50%) scaleX(0);
  border-radius: 4px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-nav .nav-item a::before {
    display: none;
  }
}
.navbar-ten .navbar-nav .nav-item a.active i {
  color: var(--primary);
}
.navbar-ten .navbar-nav .nav-item a i {
  font-size: 12px;
  font-weight: 700;
  padding-left: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-nav .nav-item a i {
    position: relative;
    top: -5px;
  }
}
.navbar-ten .navbar-nav .nav-item:hover > a {
  opacity: 1;
}
.navbar-ten .navbar-nav .nav-item:hover > a::before {
  -webkit-transform: translateX(-50%) scaleX(1);
  -moz-transform: translateX(-50%) scaleX(1);
  -ms-transform: translateX(-50%) scaleX(1);
  -o-transform: translateX(-50%) scaleX(1);
  transform: translateX(-50%) scaleX(1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--black);
  }
}
.navbar-ten .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 260px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-ten .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-ten .navbar-nav .nav-item .sub-menu li {
  position: relative;
  list-style:none;
}
.navbar-ten .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-ten .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  position: relative;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  opacity: 1;
  border: 0;
  z-index: 5;
  font-weight: 400;
}
.navbar-ten .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler {
  color: var(--black);
}
.navbar-ten .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-ten .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-ten .navbar-nav .nav-item .sub-menu li a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: var(--primary);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
}
.navbar-ten .navbar-nav .nav-item .sub-menu li a::before {
  display: none;
}
.navbar-ten .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-ten .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .navbar-ten .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-ten .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-ten .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-ten .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
  color: var(--white);
}
.navbar-ten .navbar-nav .nav-item .sub-menu li:hover > a {
  color: var(--white);
}
.navbar-ten .navbar-nav .nav-item .sub-menu li:hover > a::after {
  opacity: 1;
}
.navbar-ten .navbar-nav .nav-item .sub-menu li:hover > a::before {
  opacity: 1;
}
.navbar-ten .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-ten .search-form {
  margin-left: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-ten .search-form {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-ten .search-form {
    margin-left: 0px;
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .navbar-ten .search-form {
    display: none !important;
  }
}
.navbar-ten .search-form input {
  height: 45px;
  width: 230px;
  background-color: var(--white);
  color: var(--black);
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0px 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-ten .search-form input {
    width: 180px;
  }
}
.navbar-ten .search-form input:focus {
  border-color: var(--primary);
  text-shadow: none;
  box-shadow: none;
}
.navbar-ten .search-form button {
  background-color: var(--primary);
  height: 45px;
  width: 45px;
  text-align: center;
  color: var(--white);
  padding: 0;
  font-size: 18px;
  border: none;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.navbar-ten .search-form button:hover {
  background-color: var(--black);
  color: var(--white);
}

/*===== SIDEBAR ONE =====*/
.sidebar-left {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--light-2);
  height: 100%;
  width: 300px;
  padding-top: 80px;
  z-index: 99;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-align: right;
}
.sidebar-left.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 767px) {
  .sidebar-left {
    width: 250px;
  }
}
.sidebar-left .sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.sidebar-left .sidebar-close .close {
  font-size: 18px;
  color: var(--black);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.sidebar-left .sidebar-close .close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sidebar-left .sidebar-content {
  padding: 0px 30px;
}
.sidebar-left .sidebar-content .sidebar-menu {
  margin-top: 40px;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  padding: 11px 0;
  color: var(--black);
  text-transform: uppercase;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a:hover {
  color: var(--primary);
}
.sidebar-left .sidebar-content .sidebar-social {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-social span {
  font-size: 15px;
  line-height: 24px;
  color: var(--dark-3);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}
.sidebar-left .sidebar-content .sidebar-social ul li {
  display: inline-block;
  margin-right: 5px;
}
.sidebar-left .sidebar-content .sidebar-social ul li:last-child {
  margin: 0;
}
.sidebar-left .sidebar-content .sidebar-social ul li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid var(--gray-3);
  border-radius: 5px;
  font-size: 18px;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-left .sidebar-content .sidebar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

.overlay-left {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9;
}
.overlay-left.open {
  display: block;
}
/*===== VIDEO THREE =====*/
.video-three {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--light-2);
  /* Section Title Four */
}
.video-three .video-active {
  margin: 0;
}
.video-three .section-title-four {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
  margin-top: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-three .section-title-four {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .video-three .section-title-four {
    margin-bottom: 35px;
  }
}
.video-three .section-title-four span {
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .video-three .section-title-four span {
    margin-bottom: 15px;
  }
}
.video-three .section-title-four h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-three .section-title-four h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .video-three .section-title-four h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.video-three .section-title-four h3 {
  font-size: 3.8rem;
  line-height: 3.8rem;
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--gray-3);
  z-index: -1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--gray-3);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-three .section-title-four h3 {
    font-size: 3.3rem;
    line-height: 3.5rem;
    top: -18px;
  }
}
@media (max-width: 767px) {
  .video-three .section-title-four h3 {
    font-size: 2.7rem;
    line-height: 3.2rem;
    top: -17px;
  }
}
.video-three .section-title-four p {
  color: var(--dark-3);
}
.video-three .single-video-items {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.video-three .single-video-items .video-image img {
  width: 100%;
}
.video-three .single-video-items .video-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-three .single-video-items .video-icon::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.video-three .single-video-items .video-icon a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--white);
  font-size: 20px;
  color: var(--primary);
  border-radius: 50%;
  padding-left: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .video-three .single-video-items .video-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    border: 2px solid var(--white);
  }
}
.video-three .single-video-items:hover .video-icon::before {
  opacity: 0.8;
}
.video-three .single-video-items:hover .video-icon a {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
  visibility: visible;
}
.video-three .video-active-wrapper {
  position: relative;
}
.video-three .video-active-wrapper .tns-nav {
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.video-three .video-active-wrapper .tns-nav button {
  width: 12px;
  height: 12px;
  border: none;
  background: var(--black);
  border-radius: 50%;
  margin: 0 5px;
}
.video-three .video-active-wrapper .tns-controls {
  z-index: 2;
}
.video-three .video-active-wrapper .tns-controls button {
  background: var(--primary);
  border: none;
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 40px;
  line-height: 30px;
  color: var(--white);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: 50px;
  width: 50px;
  z-index: 9;
  border-radius: 50%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .video-three .video-active-wrapper .tns-controls button {
    left: 0;
    font-size: 22px;
  }
}
@media (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .video-three .video-active-wrapper .tns-controls button {
    font-size: 24px;
    left: 0;
  }
}
.video-three .video-active-wrapper .tns-controls button:hover {
  background-color: var(--white);
  color: var(--primary);
}
.video-three .video-active-wrapper .tns-controls button[data-controls=next] {
  left: auto;
  right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .video-three .video-active-wrapper .tns-controls button[data-controls=next] {
    right: 0;
    font-size: 28px;
  }
}
@media (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .video-three .video-active-wrapper .tns-controls button[data-controls=next] {
    right: -24px;
  }
}
