/*================================================
Main Banner Area CSS
=================================================*/
.mf-main-banner-area {
  background: #F9F9F9;
  overflow: hidden;
  padding-top: 55px;
  padding-bottom: 54px;
}
.mf-main-banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.mf-main-banner-content {
  position: relative;
  top: -5px;
}
.mf-main-banner-content span {
  color: var(--optional-black-color);
  font-weight: 600;
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}
.mf-main-banner-content h1 {
  font-size: 75px;
  margin-bottom: 0;
}
.mf-main-banner-content .banner-btn {
  margin-top: 25px;
}

.mf-main-banner-with-image {
  width: 100%;
  display: flex;
  padding: 0;
}
.mf-main-banner-with-image .slide {
  height: 680px;
  cursor: pointer;
  flex: 0.5;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  transition: all 0.5s ease-in-out;
  margin-right: 20px;
}
.mf-main-banner-with-image .slide:last-child {
  margin-right: 0;
}
.mf-main-banner-with-image .slide.active {
  flex: 2;
}
.mf-main-banner-with-image .slide.active .content {
  opacity: 0;
  visibility: hidden;
}
.mf-main-banner-with-image .slide.active .bottom-content {
  opacity: 1;
  visibility: visible;
}
.mf-main-banner-with-image .slide.bg-1 {
  background-image: url(../images/main-banner/banner1.jpg);
}
.mf-main-banner-with-image .slide.bg-2 {
  background-image: url(../images/main-banner/banner2.jpg);
}
.mf-main-banner-with-image .slide.bg-3 {
  background-image: url(../images/main-banner/banner3.jpg);
}
.mf-main-banner-with-image .slide.bg-4 {
  background-image: url(../images/main-banner/banner4.jpg);
}
.mf-main-banner-with-image .slide .content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--optional-black-color);
  position: absolute;
  right: 0;
  padding: 35px;
  height: 100%;
  width: 100%;
  transition: var(--transition);
  opacity: 1;
  visibility: visible;
}
.mf-main-banner-with-image .slide .content span {
  font-weight: 600;
  font-size: 22px;
  color: var(--white-color);
  display: block;
  writing-mode: vertical-lr;
}
.mf-main-banner-with-image .slide .bottom-content {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 30px;
  display: inline-block;
  position: absolute;
  bottom: 35px;
  left: 0;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.mf-main-banner-with-image .slide .bottom-content h3 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 8px;
}
.mf-main-banner-with-image .slide .bottom-content h3 a {
  color: var(--black-color);
}
.mf-main-banner-with-image .slide .bottom-content .view-btn {
  color: var(--black-color);
  font-weight: 500;
  font-size: 15px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .mf-main-banner-area .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    max-width: 540px;
  }
  .mf-main-banner-content h1 {
    font-size: 35px;
  }
  .mf-main-banner-content span {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .mf-main-banner-with-image {
    margin-top: 30px;
    display: inherit;
  }
  .mf-main-banner-with-image .slide {
    height: 400px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .mf-main-banner-with-image .slide:last-child {
    margin-bottom: 0;
  }
  .mf-main-banner-with-image .slide .content {
    opacity: 0;
    visibility: hidden;
  }
  .mf-main-banner-with-image .slide .content span {
    font-size: 18px;
    writing-mode: unset;
  }
  .mf-main-banner-with-image .slide .bottom-content {
    opacity: 1;
    visibility: visible;
  }
  .mf-main-banner-with-image .slide .bottom-content h3 {
    font-size: 20px;
  }
}
/* Min width 576px to Max width 767px */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mf-main-banner-with-image .slide {
    height: 600px;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mf-main-banner-area .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    max-width: 720px;
  }
  .mf-main-banner-content h1 {
    font-size: 55px;
  }
  .mf-main-banner-content span {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .mf-main-banner-with-image {
    margin-top: 30px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mf-main-banner-area .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    max-width: 960px;
  }
  .mf-main-banner-content h1 {
    font-size: 60px;
  }
  .mf-main-banner-with-image .slide {
    height: 500px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mf-main-banner-area .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    max-width: 1140px;
  }
  .mf-main-banner-content h1 {
    font-size: 62px;
  }
  .mf-main-banner-with-image .slide {
    height: 500px;
  }
}
/* Min width 1600px */
@media only screen and (min-width: 1600px) {
  .mf-main-banner-area .container-fluid {
    max-width: 1920px;
    padding-left: 100px;
    padding-right: 100px;
  }
}/*# sourceMappingURL=banner.css.map */