.carousel {
  position: relative; }

.carousel.pointer-event {
  touch-action: pan-y; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner::after {
    display: block;
    clear: both;
    content: ""; }

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-item {
      transition: none; } }

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block; }

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%); }

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%); }

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none; }

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1; }

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right {
      transition: none; } }

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
      transition: none; } }
  .carousel-control-prev:hover, .carousel-control-prev:focus,
  .carousel-control-next:hover,
  .carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9; }

.carousel-control-prev {
  left: 0; }

.carousel-control-next {
  right: 0; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%; }

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none; }
  .carousel-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity 0.6s ease; }
    @media (prefers-reduced-motion: reduce) {
      .carousel-indicators li {
        transition: none; } }
  .carousel-indicators .active {
    opacity: 1; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center; }

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg); } }

@keyframes spinner-border {
  to {
    transform: rotate(360deg); } }

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
          animation: spinner-border .75s linear infinite; }

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em; }

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0); }
  50% {
    opacity: 1; } }

@keyframes spinner-grow {
  0% {
    transform: scale(0); }
  50% {
    opacity: 1; } }

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow .75s linear infinite;
          animation: spinner-grow .75s linear infinite; }

.spinner-grow-sm {
  width: 1rem;
  height: 1rem; }

.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.bg-primary {
  background-color: #e42121 !important; }

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #bb1717 !important; }

.bg-secondary {
  background-color: #6c757d !important; }

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important; }

.bg-success {
  background-color: #28a745 !important; }

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important; }

.bg-info {
  background-color: #17a2b8 !important; }

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important; }

.bg-warning {
  background-color: #ffc107 !important; }

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important; }

.bg-danger {
  background-color: #dc3545 !important; }

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important; }

.bg-light {
  background-color: #f8f9fa !important; }

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important; }

.bg-dark {
  background-color: #343a40 !important; }

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important; }

.bg-white {
  background-color: #fff !important; }

.bg-transparent {
  background-color: transparent !important; }

.border {
  border: 1px solid #dee2e6 !important; }

.border-top {
  border-top: 1px solid #dee2e6 !important; }

.border-right {
  border-right: 1px solid #dee2e6 !important; }

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important; }

.border-left {
  border-left: 1px solid #dee2e6 !important; }

.border-0 {
  border: 0 !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-right-0 {
  border-right: 0 !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-left-0 {
  border-left: 0 !important; }

.border-primary {
  border-color: #e42121 !important; }

.border-secondary {
  border-color: #6c757d !important; }

.border-success {
  border-color: #28a745 !important; }

.border-info {
  border-color: #17a2b8 !important; }

.border-warning {
  border-color: #ffc107 !important; }

.border-danger {
  border-color: #dc3545 !important; }

.border-light {
  border-color: #f8f9fa !important; }

.border-dark {
  border-color: #343a40 !important; }

.border-white {
  border-color: #fff !important; }

.rounded-sm {
  border-radius: 0.2rem !important; }

.rounded {
  border-radius: 0.25rem !important; }

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important; }

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important; }

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important; }

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important; }

.rounded-lg {
  border-radius: 0.3rem !important; }

.rounded-circle {
  border-radius: 50% !important; }

.rounded-pill {
  border-radius: 50rem !important; }

.rounded-0 {
  border-radius: 0 !important; }

.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; } }
	
@media (max-width: 1199px) {
  .w3l-header .navbar-expand-xl .navbar-nav .dropdown-menu {
    transform: translateX(0px); }
  .w3l-header .navbar-expand-xl .navbar-nav .dropdown-menu:before {
    left: 24px; } }

.w3l-banner-slider .carousel-item {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 36em; }

.w3l-banner-slider .carousel-item:before {
  content: "";

  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0; }

.w3l-banner-slider .carousel-caption {
  bottom: 0px;
  top: 50%;
  left: 0%;
  right: 0%;
  transform: translateY(-50%); }

.w3l-banner-slider h3.title-cover-9 {
  font-size: 36px;
  color: #fff;
  margin: 25px 0;
  text-transform: uppercase;
  font-weight: 700; }

.w3l-banner-slider h6.tag-cover-9 {
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: #e6e6e6; }

.w3l-banner-slider p.para-cover-9 {
  font-weight: normal;
  font-size: 17px;
  line-height: 25px;
  color: #d8d7d7;
  max-width: 800px;
  margin: auto; }

.w3l-banner-slider .carousel-indicators li {
  width: 0px;
  height: 12px;
  border-radius: 50%; }

@media (max-width: 991px) {
  .w3l-banner-slider .carousel-item {
    min-height: 34em; } }

@media (max-width: 800px) {
  .w3l-banner-slider h3.title-cover-9 {
    margin: 20px 0; } }

@media (max-width: 667px) {
  .w3l-banner-slider .carousel-item {
    min-height: 35em; } }

@media (max-width: 600px) {
  .w3l-banner-slider h3.title-cover-9 {
    font-size: 32px; } }

@media (max-width: 480px) {
  .w3l-banner-slider h3.title-cover-9 {
    font-size: 30px;
    line-height: 36px;
    margin: 15px 0; }
  .w3l-banner-slider .carousel-item {
    min-height: 30em; }
  .w3l-banner-slider .carousel-caption {
    top: 40%; } }

@media (max-width: 440px) {
  .w3l-banner-slider h3.title-cover-9 {
    margin: 8px 0; } }

@media (max-width: 414px) {
  .w3l-banner-slider p.para-cover-9 {
    font-size: 15px;
    line-height: 22px; } }

@media (max-width: 384px) {
  .w3l-banner-slider h6.tag-cover-9 {
    font-size: 12px; }
  .w3l-banner-slider p.para-cover-9 {
    font-size: 16px; }
  .w3l-banner-slider .carousel-item {
    min-height: 28em; } }

@media (max-width: 320px) {
  .w3l-banner-slider h3.title-cover-9 {
    font-size: 22px;
    line-height: 26px; } }

/*--index1--*/
.w3l-index1 .content-photo img {
  background: #eee; }

.w3l-index1 .content-left h3 {
  font-size: 34px;
  line-height: 45px;
  color: var(--title-color);
  font-weight: 400; }

.w3l-index1 .content-left p {
  font-size: 14px;
  line-height: 24.5px;
  color: var(--text-color);
  margin-top: 20px; }

.w3l-index1 .content-left a span {
  margin-left: 8px; }

@media (max-width: 1080px) {
  .w3l-index1 .content-left h3 {
    font-size: 32px;
    line-height: 40px; } }

@media (max-width: 736px) {
  .w3l-index1 .content-left h3 {
    font-size: 28px;
    line-height: 35px; } }

@media (max-width: 480px) {
  .w3l-index1 .content-left {
    order: 2; }
  .w3l-index1 .content-photo {
    order: 1; } }

/*--/index1--*/
.w3l-index2 .feature-grid {
  margin-top: 30px; }

.w3l-index2 .feature-img {
  padding: 12px 0 5px 0;
  margin: 0 auto; }

.w3l-index2 .feature-body {
  transition: 0.3s ease-in;
  border: 1px solid var(--light-bg-color);
  padding: 1.5rem; }

.w3l-index2 .feature-body.active {
  background-color: var(--primary); }

.w3l-index2 .feature-body:hover {
  background-color: var(--primary); }

.w3l-index2 .feature-img span {
  font-size: 35px;
  transform: scale(1);
  transition: 0.3s ease;
  color: var(--primary); }

.w3l-index2 .feature-body.active h3.feature-titel {
  color: #fff;
  transition: 0.3s ease; }

.w3l-index2 .feature-body.active p.feature-text {
  color: #fff;
  transition: 0.3s ease; }

.w3l-index2 .feature-body.active div.feature-img span {
  transform: scale(1.1);
  transition: 0.3s ease;
  color: #fff; }

.w3l-index2 .feature-body:hover h3.feature-titel {
  color: #fff;
  transition: 0.3s ease; }

.w3l-index2 .feature-body:hover p.feature-text {
  color: #fff;
  transition: 0.3s ease; }

.w3l-index2 .feature-body:hover div.feature-img span {
  transform: scale(1.1);
  transition: 0.3s ease;
  color: #fff; }

.w3l-index2 h3.feature-titel {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: var(--title-color);
  transition: 0.3s ease; }

.w3l-index2 p.feature-text {
  color: var(--text-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 22.5px;
  transition: 0.3s ease; }

@media (max-width: 1280px) {
  .w3l-index2 .feature-info {
    padding: 0 10px; } }

@media (max-width: 1024px) {
  .w3l-index2 .feature-info {
    padding: 0 0px; } }

.w3l-index3 .top-bottom {
  background: url(../images/banner3.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 0; }

.w3l-index3 .top-bottom:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  opacity: 0.9;
  z-index: -1; }

.w3l-index3 span {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  background-color: var(--primary);
  font-weight: 700; }

.w3l-index3 .three-grids-columns h4 {
  font-size: 33px;
  color: #fff;
  line-height: 42.5px;
  font-weight: 400;
  margin-top: 20px; }

.w3l-index3 .three-grids-columns img {
  border-radius: 5px; }

@media (max-width: 992px) {
  .w3l-index3 .grid-column {
    grid-template-columns: 1fr 1fr;
    grid-gap: 35px; } }

@media (max-width: 900px) {
  .w3l-index3 a.actionbg {
    margin-top: 20px; } }

@media (max-width: 768px) {
  .w3l-index3 a.actionbg {
    margin-top: 12px; }
  .w3l-index3 .three-grids-columns h4 {
    font-size: 22px;
    margin-top: 10px;
    line-height: 28.5px; } }

@media (max-width: 480px) {
  .w3l-index3 .grid-column {
    grid-template-columns: 1fr;
    grid-gap: 20px; }
  .w3l-index3 .three-grids-columns h4 {
    font-size: 20px; } }

.w3l-index4 .content-4-main {
  background: var(--light-bg-color); }

.w3l-index4 .content-info-in {
  align-items: stretch; }

.w3l-index4 .video iframe {
  width: 100%;
  height: 100%; }

.w3l-index4 .content-info-in h6 {
  margin: 0px 0 6px 0; }

.w3l-index4 .content-info-in h6 a {
  text-align: left;
  margin-bottom: 0;
  color: var(--title-color);
  font-size: 24px;
  font-weight: 400;
  transition: 0.3s ease; }

.w3l-index4 .content-info-in h6 a:hover {
  color: var(--primary);
  transition: 0.3s ease; }

.w3l-index4 .content4-icon span {
  color: var(--primary);
  font-size: 42px; }

.w3l-index4 .content4-right-info p {
  color: var(--text-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 22.5px; }

@media (max-width: 992px) {
  .w3l-index4 .content-right {
    margin-top: 50px; }
  .w3l-index4 .video iframe {
    height: 400px; } }

@media (max-width: 767px) {
  .w3l-index4 .content4-icon {
    margin-bottom: 14px; }
  .w3l-index4 .content-info-in h6 a {
    font-size: 22px; }
  .w3l-index4 .video iframe {
    height: 300px; } }

.w3l-index5 .content-left-sec {
  border: 1px solid var(--light-bg-color);
  overflow: hidden; }

.w3l-index5 .content-left-sec a.zoom-image {
  overflow: hidden;
  transition: 0.3s ease-in-out; }

.w3l-index5 .content-left-sec a img {
  display: block;
  transition: transform 0.3s linear; }

.w3l-index5 .content-left-sec:hover img.scale-image {
  transform: scale(1.1);
  transition: transform 0.3s linear; }

.w3l-index5 .blog-info {
  background: #fff;
  padding: 20px 15px; }

.w3l-index5 .blog-info p {
  font-size: 14px;
  line-height: 24.5px;
  color: var(--text-color);
  margin-top: 10px; }

.w3l-index5 .content-left-sec a h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: var(--primary);
  transition: 0.3s ease-in; }

.w3l-index5 .content-left-sec a h4:hover {
  transition: 0.3s ease-in; }

.w3l-index5 .owl-carousel .owl-stage {
  padding-left: 0 !important; }

.w3l-index5 .owl-three.owl-theme .owl-nav [class*=owl-prev],
.w3l-index5 .owl-three.owl-theme .owl-nav [class*=owl-next] {
  display: none; }

.w3l-index5 .owl-three.owl-theme .owl-dots {
  display: none; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative; }

.owl-carousel {
  width: 100%;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none; }

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block; }

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  border: none; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.owl-height {
  transition: height .5s ease-in-out; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease; }

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-dots {
  margin-top: 0px;
  bottom: 0px;
  position: absolute;
  left: 0;
  right: 0; }

.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 25px;
  margin: 0px;
  padding: 0;
  background: rgba(255, 239, 236, 0.33);
  display: inline-block;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%; }

.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--primary);
  opacity: 1;
  text-decoration: none;
  outline: none;
  box-shadow: none;
  transition: 0.3s ease-in-out; }

.owl-theme .owl-nav [class*=owl-]:focus,
.owl-theme:focus,
.owl-dots:focus,
.owl-dot:focus {
  outline: none;
  box-shadow: none; }

.owl-theme .owl-nav .disabled {
  opacity: .8;
  cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  background: transparent;
  padding: 0; }

.owl-theme .owl-dots .owl-dot span {
  width: 0px;
  height: 0px;

  display: block;
 
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;

  position: relative; }

button.owl-next,
button.owl-prev {
  position: absolute;
  bottom: 50%; }

button.owl-prev {
  left: 15px; }

button.owl-next {
  right: 15px; }

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary); }

@media all and (max-width: 640px) {
  button.owl-prev {
    left: 0px; }
  button.owl-next {
    right: 0px; } }

@media all and (max-width: 480px) {
  button.owl-next,
  button.owl-prev {
    position: absolute;
    bottom: 0%; } }

/*-- pricing --*/
.w3l-pricing .pricing {
  background: var(--light-bg-color); }

.w3l-pricing .card__hover {
  border: 0;
  border-radius: 0px;
  transition: all .3s ease-in-out;
  padding: 2.25rem;
  position: relative;
  will-change: transform; }

.w3l-pricing .card__hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background-color: var(--primary);
  transition: 0.5s; }

.w3l-pricing .card__hover.active:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background-color: var(--primary);
  transition: 0.5s; }

.w3l-pricing .card__hover:hover {
  box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.08); }

.w3l-pricing .card__hover:hover:after {
  width: 100%; }

.w3l-pricing .card__hover.active {
  box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.08); }

.w3l-pricing .card__hover.active:after {
  width: 100%; }

.w3l-pricing .card__hover .card-header {
  background-color: white;
  padding-left: 0;
  border-bottom: 0px; }

.w3l-pricing .card__hover .card-title {
  margin-bottom: 1rem;
  color: var(--primary);
  border-bottom: 1px solid var(--light-bg-color);
  padding-bottom: 1rem;
  font-size: 20px; }

.w3l-pricing .card__hover .card-block {
  padding-top: 0; }

.w3l-pricing .card__hover .list-group-item {
  border: 0px;
  padding: .25rem;
  color: var(--title-color);
  padding-left: 18px; }

.w3l-pricing ul.list-group li {
  position: relative;
  padding-left: 18px; }

.w3l-pricing ul.list-group li:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 100px;
  position: absolute;
  top: 14px;
  left: 0;
  background: #b3b3b3; }

.w3l-pricing .display-4 {
  font-weight: 600;
  font-size: 3rem; }

.w3l-pricing .display-4 .currency {
  font-size: 1.5rem;
  position: relative;
  font-weight: 400;
  top: -30px;
  letter-spacing: 0px; }

.w3l-pricing .display-4 .period {
  font-size: 1rem;
  color: #b3b3b3;
  letter-spacing: 0px; }

@media (max-width: 767px) {
  .w3l-pricing .card__hover {
    padding: 1.25rem; } }

/*-- //pricing --*/
.w3l-testimonials .testimonials {
  background-size: cover;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.9)), url(../images/service3.jpg);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center;
  background-attachment: fixed; }

.w3l-testimonials .slider-info {
  max-width: 95%;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 50px; }

.w3l-testimonials .img-circle {
  width: 100px;
  height: 100px;
  display: inline-block;
  overflow: hidden;
  background: #f3f6f9;
  border-radius: 50%;
  border: 3px solid #fff; }

.w3l-testimonials .img-circle img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center; }

.w3l-testimonials .message {
  position: relative; }

.w3l-testimonials .message span {
  font-size: 30px;
  color: #fff;
  opacity: 0.4;
  position: absolute;
  top: -25px;
  left: -30px;
  right: 0; }

.w3l-testimonials .message p {
  font-size: 18px;
  line-height: 30px;
  color: #fff; }

.w3l-testimonials .name h4 {
  font-size: 18px;
  color: var(--primary);
  font-weight: 400; }

.w3l-testimonials .name p {
  font-size: 12px;
  color: #eee; }

@media (max-width: 992px) {
  .w3l-testimonials .message {
    margin-top: 1rem;
    padding-bottom: 0;
    padding: 0rem; } }

@media (max-width: 900px) {
  .w3l-testimonials .slider-info {
    padding: 2rem; } }

@media (max-width: 667px) {
  .w3l-testimonials .slider-info {
    grid-template-columns: 1fr;
    grid-gap: 30px; }
  .w3l-testimonials .img-circle {
    margin-left: auto;
    margin-right: auto; }
  .w3l-testimonials .message {
    text-align: center; }
  .w3l-testimonials .slider-info {
    padding: 0rem 0 3rem; }
  .w3l-testimonials .message span {
    left: 0px; } }