:root {
  --brand: #01b5fb;
  --sub: #6ac754;
  --body: #516171;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

/*Header*/
#header {
  background-image: url(../img/head-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  height: 600px;
}

#header .container {
  position: relative;
  z-index: 2;
}

.btn-play {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  width: 60px;
  height: 70px;
  border-radius: 50%;
  border: none;
  outline: none !important;
  background: var(--brand);
  cursor: pointer;
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all 200ms;
}

.btn-play .icon-play,
.btn-play .icon-pause {
  position: relative;
  z-index: 3;
  font-size: 25px;
  color: var(--brand);
}


@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #FFFFFF;
  background: #000000;
  opacity: 1;
}

.top-button {
  background-color: black;
  padding: 5px 15px;
  font-size: 15px;
}

#header h2 {
  font-size: 32px;
}

#header .typed-text {
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  #header h2 {
    font-size: 20px;
  }

  .h2-heading {
    font-size: 30px;
  }
}

@media only screen and (max-width: 335px) {
  #header {
    height: 650px !important;
  }
}

/*End*/
/*About*/
.about {
  background: transparent;
  padding-bottom: 50px;
}

.about__pic__item {
  height: 235px;
  margin-right: -10px;
  margin-bottom: 20px;
}

.about__pic__item.about__pic__item--large {
  height: 490px;
}

.about__text {
  padding-left: 10px;
}

.about__text p {
  text-align: justify;
}

@media (min-width: 320px) and (min-width: 967px) {
  .about__text {
    padding-left: 30px;
  }
}

.about__text .services__item .services__item__icon:after {
  border-color: #281A3E;
}

.about__text__desc {
  margin-top: -10px;
}

.about__text__desc p {
  color: var(--body);
}

/*End*/
/*Why us*/
.single-cat {
  border: 1px solid #e1ebf7;
  border-radius: 6px;
  padding: 61px 22px;
  -webkit-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  -ms-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
  position: relative;
  z-index: 1
}

.categories-area .single-cat::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: #FEA680;
  transition: .6s;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 6px
}

.categories-area .single-cat .cat-icon i {
  color: var(--brand);
  font-size: 50px;
  margin-bottom: 30px;
  display: block;
  margin-bottom: 50px;
  width: 100px;
  height: 100px;
  background: #fff4f4;
  line-height: 100px;
  text-align: center;
  border-radius: 50px;
  display: inline-block
}

.categories-area .single-cat .cat-cap h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 21px;
  display: block;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  -ms-transition: all .2s ease-out 0s;
  -o-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .categories-area .single-cat .cat-cap h5 {
    font-size: 21px
  }
}

@media (max-width: 575px) {
  .categories-area .single-cat .cat-cap h5 {
    font-size: 21px
  }
}

.categories-area .single-cat .cat-cap p {
  margin-bottom: 36px;
  color: #ffffff;
  font-size: 16px;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  -ms-transition: all .2s ease-out 0s;
  -o-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
  margin: 0
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .categories-area .single-cat .cat-cap p {
    font-size: 15px
  }
}

.categories-area .single-cat .cat-cap h5 {
  color: #ffffff;
  font-weight: 600;
  -webkit-transition: all .2s ease-out 0s;
  -moz-transition: all .2s ease-out 0s;
  -ms-transition: all .2s ease-out 0s;
  -o-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s
}

.categories-area .single-cat:hover {
  border: 1px solid transparent
}

.categories-area .single-cat:hover::before {
  height: 100%
}

.categories-area .single-cat .cat-icon i {
  background: black
}

.categories-area .single-cat:hover .cat-cap h5 {
  color: #fff !important
}

.categories-area .single-cat:hover .cat-cap p {
  color: #fff
}

.categories-area .single-cat:hover .cat-cap a {
  color: #fff
}

.categories-area .single-cat:hover .cat-icon i {
  color: #f4f5f7;
}

.cat-cap i {
  color: #FEA680;
  font-size: 20px;
  margin-right: 10px;
}

.cat-cap ul li {
  color: #f4f5f7;
}

.single-cat:hover .cat-cap i {
  color: #f4f5f7
}

.cat-cap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 967px) {
  .single-cat {
    height: 500px;
  }
}

.cat-icon img {
  margin-bottom: 30px;
  display: block;
  margin-bottom: 50px;
  width: 150px;
  height: 150px;
  background: #fff4f4;
  line-height: 100px;
  text-align: center;
  border-radius: 150px;
  display: inline-block;
  object-fit: cover;
  border: 3px solid #f4f5f7;
}

.cat-icon img {
  background: black
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 125%;
  bottom: 0;
  z-index: -1;
}

/*End*/
/*Design*/
.design-1 {
  text-align: center;
}

@media only screen and (min-width: 967px) {
  .design-1 {
    text-align: center;
  }

  .rl-space {
    padding: 0px 120px;
  }

  .rl-space-fluid {
    padding: 0px 220px;
  }
}

.design-h2 {
  font-weight: 900;
  color: var(--brand);
}

@media (max-width: 792px) {
  .design-h2 {
    font-size: 20px;
  }
}

/*End*/

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  height: 280px;
}

@media (max-width: 575px) {
  .service-item {
    height: auto;
  }
}

.service-item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: -80px;
  right: -80px;
  border: 80px solid;
  transform: rotate(45deg);
  opacity: 1;
  transition: .5s;
}

.service-item.bg-white::after {
  border-color: transparent transparent var(--sub) transparent;
}

.service-item.bg-light::after {
  border-color: transparent transparent #01ABAA transparent;
}

.service-item:hover::after {
  opacity: 0;
  border-color: transparent transparent #01ABAA transparent;
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 700;
  line-height: 1.2;
}

/*End*/

#modules {
  background-image: linear-gradient(330deg, rgba(225, 225, 225, 0.05) 0%, rgba(225, 225, 225, 0.05) 33.333%, rgba(114, 114, 114, 0.05) 33.333%, rgba(114, 114, 114, 0.05) 66.666%, rgba(52, 52, 52, 0.05) 66.666%, rgba(52, 52, 52, 0.05) 99.999%), linear-gradient(66deg, rgba(181, 181, 181, 0.05) 0%, rgba(181, 181, 181, 0.05) 33.333%, rgba(27, 27, 27, 0.05) 33.333%, rgba(27, 27, 27, 0.05) 66.666%, rgba(251, 251, 251, 0.05) 66.666%, rgba(251, 251, 251, 0.05) 99.999%), linear-gradient(225deg, rgba(98, 98, 98, 0.05) 0%, rgba(98, 98, 98, 0.05) 33.333%, rgba(222, 222, 222, 0.05) 33.333%, rgba(222, 222, 222, 0.05) 66.666%, rgba(228, 228, 228, 0.05) 66.666%, rgba(228, 228, 228, 0.05) 99.999%), linear-gradient(90deg, #FEA680, #FEA680);
}

.fplus-about-us-area .about-us-content {
  border-radius: 2px;
}

.fplus-about-us-area .about-us-thumb>img {
  border-radius: 2px 0 0 2px;
}

.fplus-about-us-area .about-us-text p {
  text-align: justify;
}

.fplus-about-us-area .about-us-text {
  padding: 15px 60px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .fplus-about-us-area .about-us-text {
    padding: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .fplus-about-us-area .about-us-text {
    padding: 30px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .fplus-about-us-area .about-us-text {
    padding: 10px;
  }

  .fplus-about-us-area .about-us-text h4 {
    font-size: 20px;
  }
}

/*end*/
/*Success*/
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section .heading {
  font-size: 30px;
  font-weight: 700;
}

/*End*/
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 992px) {
  .features .nav-link h4 {
    font-size: 16px;
    text-align: center;
  }
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: #01ABAA;
  /* border-color: var(--color-primary); */
}

.features .nav-link.active h4 {
  color: white;
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.img-fet {
  height: 400px;
  width: 100%;
}

@media (max-width: 768px) {
  .img-fet {
    height: auto;
    width: 100%;
  }
}

/*End*/

.facilities_area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.facilities_item {
  border: 1px solid #ffffff;
  border-radius: 10px;
  background-color: #FEA680;
  padding: 10px;
  color: #fff;
  margin-bottom: 30px;
  cursor: pointer;
}

.facilities_item .sec_h4 {
  color: #fff;
  font-size: 22px;
}

.facilities_item i {
  color: var(--brand);
  font-size: 20px;
  line-height: 38px;
  display: inline-block;
  vertical-align: bottom;
  padding: 0px 10px;
}

.hidden-para {
  display: none;
}

.overlay-content {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  border-radius: 5px;
  z-index: 1000;
  border: 1px solid #ffffff;
  border-radius: 10px;
  background-color: #FEA680;
  padding: 10px 20px;
  color: #fff;
  width: 450px;
}

/*End*/
/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (min-width: 768px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(.8);
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: #FEA680;
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: .5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

/*End*/

/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: #01ABAA;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: black !important;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: 'Roboto', sans-serif;
  position: relative;
  padding: 20px 20px;
  color: var(--bs-white) !important;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 20px;
  color: white;
}

.common-header .navbar-nav .nav-link {
  padding: 20px 20px;
  color: white;
  position: relative;
}

.common-header .nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: #01ABAA;
  transition: height 0.5s ease;
  z-index: -1;
}

.common-header .nav-link:hover::before,
.common-header .nav-link.active::before {
  height: calc(100% + 1px);
  left: 1px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h4 {
  color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h4 {
  color: #01ABAA;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: .5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: .5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: fixed;
    background-color: #01063c;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .navbar-light {
    background: #01063c !important;
  }

  .navbar-light .navbar-brand h4 {
    color: var(--bs-primary);
    font-size: 18px;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid white;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #DDDDDD;
  }

  .common-header .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #DDDDDD;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--bs-white) !important;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
    background: #01ABAA;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .navbar-brand {
    flex: 1;
  }

  .common-header {
    padding: 15px 0 !important;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    z-index: 999;
  }

  .common-header {
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background-color: #01063c;
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: -1px;
    left: 0;
    background: #01ABAA;
    transition: .5s;
    z-index: -1;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    height: calc(100% + 1px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

@media (max-width: 1140px) {
  .navbar img {
    width: 200px;
  }

  .common-header .navbar-nav .nav-link {
    padding: 20px 12px;
    color: white;
  }

  .navbar-light .navbar-nav .nav-link {
    padding: 20px 12px !important;
    color: white;
  }
}


/*end*/
/*** Service ***/
.servicee-item {
  height: 100%;
  width: 100%;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .5s;
  border-radius: 20%;
}

.servicee-item:hover {
  background: var(--brand);
}

.servicee-item * {
  transition: .5s;
}

.servicee-item:hover * {
  color: white !important;
}

/* Widget tags */
.widget-tags ul>li {
  float: left;
  margin: 3px;
}

.sidebar .widget-tags ul>li a {
  border: 1px solid #dadada;
  color: #303030;
  display: block;
  font-size: 14px;
  padding: 3px 15px;
  transition: all 0.3s ease 0s;
}

.sidebar .widget-tags ul>li a:hover {
  background: var(--brand);
  color: #fff;
  border: 1px solid transparent;
}

.nav-pills .nav-item .active {
  border-bottom: 2px solid var(--primary);
}

.heading-design {
  padding: 5px 15px;
  border: 2px solid #FEA680;
  background-color: var(--white);
  color: #FEA680;
}

/*End*/

.ftco-faqs .card-body {
  background: var(--sub);

}

.ftco-faqs p {
  color: #fff;
}

.ftco-faqs .img {
  height: 450px;
  -webkit-box-shadow: 0px 8px 21px -10px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 8px 21px -10px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 8px 21px -10px rgba(0, 0, 0, 0.12);
}

.ftco-faqs .img.img-2 {
  height: 250px;
}

.ftco-faqs .myaccordion {
  margin: 0 auto;
  overflow: hidden;
}

.ftco-faqs .myaccordion .card,
.ftco-faqs .myaccordion .card:last-child .card-header {
  border: none;
  background: transparent;
}

.ftco-faqs .myaccordion .card-header {
  border: none;
  background: transparent;
}

.ftco-faqs .myaccordion .btn {
  width: 100%;
  font-weight: 600;
  color: rgb(255, 255, 255);
  padding: 0;
  text-transform: capitalize;
  letter-spacing: 0;
  border-radius: 0 !important;
  margin-bottom: 10px;
  border-radius: 40px !important;
  -webkit-box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.21) !important;
  -moz-box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.21) !important;
  box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.21) !important;
}

.ftco-faqs .myaccordion .btn-link {
  text-decoration: none;
}

.ftco-faqs .myaccordion .btn-link:hover,
.ftco-faqs .myaccordion .btn-link:focus {
  text-decoration: none;
}

.ftco-faqs [data-toggle="collapse"] .fa:before {
  content: "\f068";
  font-family: "FontAwesome";
  font-style: normal;
}

.ftco-faqs [data-toggle="collapse"].collapsed .fa:before {
  content: "\f067";
  font-family: "FontAwesome";
  font-style: normal;
}

.ftco-faqs button[aria-expanded="true"] {
  background-color: #ffffff;
  color: #000000 !important;
}

.ftco-faqs button[aria-expanded="true"] .fa {
  color: #ffffff !important;
}

.ftco-faqs button[aria-expanded="false"] {
  background-color: #fff;
}

.ftco-faqs .card-body {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.21) !important;
  -moz-box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.21) !important;
  box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.21) !important;
}

.ftco-faqs .card-body ol li {
  margin-bottom: 10px;
  padding-left: 10px;
}

.ftco-faqs .card-body ol li:last-child {
  margin-bottom: 0;
}

/*end*/
/* gallery section start */
.gallery_section {
  width: 100%;
  float: left;
  padding: 30px 0px;
}

.gallery_taital {
  width: 100%;
  float: left;
  font-size: 40px;
  color: #3b3b3b;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  padding-bottom: 0px;
}

.gallery_section_2 {
  width: 100%;
  float: left;
  padding-top: 30px;
}

.gallery_img img {
  width: 100%;
  float: left;
  min-height: 182px;
}

.gallery_box {
  height: 100%;
  width: 100%;
  float: left;
  background-color: #ffffff;
  padding: 20px 20px;
  box-shadow: 0px 0px 6px 6px #f4f3f2;
}

.gallery_box:hover {
  box-shadow: 0px 0px 0px 0px;
}

.types_text {
  width: 100%;
  float: left;
  font-size: 18px;
  color: #2f2e2d;
  text-align: center;
  font-weight: bold;

  margin-top: 30px;
}

.looking_text {
  width: 100%;
  float: left;
  font-size: 18px;
  color: var(--brand);
  text-align: center;
  margin: 0px;
  font-weight: bold;
}

.read_bt {
  width: 150px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  display: flex;
}

.read_bt a {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #fefefd;
  text-align: center;
  background-color: var(--sub);
  font-weight: bold;
  padding: 10px;
}

.read_bt a:hover {
  color: #fefefd;
  background-color: var(--brand);
}

/* gallery section end */