/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/**************************/
/*     General Styles     */
/**************************/
:root {
  --primary: #1c262f;
  --primary-light: #212d37;
  --secondary: #ffb600;
  --tertiary: #e9ae1b;
  --gradient: linear-gradient(to right, #ffb600, #e9ae1b);
  --white: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size:57px;
  font-weight: 500;
}

.home h1 {
  font-size:40px;
  font-weight: 500;
}

button {
  font-family: sans-serif;
}

p,
ul,
h4 {
  margin: 0;
  padding: 0;
}

a {
  color: white;
  text-decoration: none;
}

li {
  list-style-type: none;
}

/* Section Background */
.home,
.about,
.services,
.plans,
.work,
.contact {
  /* height: 110vh; */
  position: relative;
}

.services,
.contact,
.testimonial,
.footer {
  background-color: var(--primary);
}

.access {
  background-color: var(--primary) !important;
}

.plans,
.company,
.newsletter,
.work {
  background-color: var(--primary-light);
}

.bottom {
  background-color: #ffb600;
  font-weight: 600;
}

/* Gradient Border And Background On Icons */
.home_text,
.home .fas,
.plans .far,
.work .fas,
.services .fas,
.information .fas,
.location .far,
.location .fas {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#ffb600),
      to(#e9ae1b));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plans .far,
.work .fas,
.services .fas,
.information .fas,
.location .far,
.location .fas {
  padding: 15px 0;
}

.information .col-lg-4:first-child .fas {
  padding: 15px 0;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#000),
      to(#000));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
  cursor: pointer;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/**********************/
/*     Navigation     */
/**********************/
.navbar {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 0.875rem;
  background-color: var(--primary);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar .logo-image img {
  width: 108px;
  height: 32px;
}

.navbar .logo-text {
  color: #fff;
  font-weight: 500;
  line-height: 1rem;
  font-size: 1.575rem;
  text-decoration: none;
}

.offcanvas-collapse {
  position: fixed;
  top: 2.75rem;
  /* adjusts the height between the top of the page and the offcanvas menu */
  bottom: 0;
  left: 100%;
  width: 100%;
  overflow-y: auto;
  visibility: hidden;
  padding-right: 1rem;
  padding-left: 1rem;
  background-color: var(--primary);
  transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
  visibility: visible;
  transform: translateX(-100%);
}

.navbar .navbar-nav {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
  border: none;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  background-color: var(--primary);
}

.navbar .dropdown-item {
  color: #eee;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 0.875rem;
  padding-top: 0.625rem;
  text-decoration: none;
  padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
  background-color: var(--primary);
}

.navbar .dropdown-divider {
  width: 100%;
  height: 1px;
  border: none;
  margin: 0.5rem auto 0.5rem auto;
  background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
  color: #eee;
  text-decoration: none;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  transition: all 0.2s ease;
}

.navbar .fa-stack {
  width: 2em;
  font-size: 0.75rem;
  margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#ffb600),
      to(#e9ae1b));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
  color: #ffffff;
  transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
  color: var(--primary);
}

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  font-size: 1.25rem;
}

/****************/
/*     Home     */
/****************/
.home {
  background-image: url(../assets/images/home.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
}

.para {
  width: 50%;
}

.para-light {
  opacity: 0.7;
}

/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row div:first-child {
  background-color: #ffb600;
  border-right: 1px solid;
  color: #000;
}

.information .container-fluid .row div:last-child {
  background-color: white;
}

.information .container-fluid .row div:nth-child(2) {
  background-color: var(--primary);
  ;
  color: #000;
  padding: 48px 10px !important;
}

/******************/
/*     Button     */
/******************/
.btn {
  color: white;
  border-radius: 0;
  border-width: 2px;
  padding: 10px 30px;
  border-image-slice: 1;
  background-image: none;
  /* background: transparent; */
  border-image-source: var(--gradient);
  box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn:hover {
  color: white;
  box-shadow: none;
  border-radius: 0;
  padding: 10px 30px;
  transform: translate(5px, 5px);
}

/* Email - Newsletter Button */
.btn-secondary {
  color: black;
  border-width: 2px;
  padding: 10px 30px;
  border-image-slice: 1;
  background-image: none;
  background: transparent;
  border-image-source: var(--gradient);
}

.btn-secondary:hover {
  color: black;
  padding: 10px 30px;
  background-image: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
  color: black;
  border-radius: 0;
  border-width: 2px;
  padding: 10px 30px;
  border-image-slice: 1;
  background-image: none;
  background: transparent;
  border-image-source: var(--gradient);
  box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
  color: black;
  box-shadow: none;
  border-radius: 0;
  padding: 10px 30px;
  transform: translate(5px, 5px);
}

/********************/
/*     Services     */
/********************/
.services .card {
  padding: 20px;
  border-radius: 0;
  border: 2px solid white;
}

.services .card:hover {
  border: 10px solid;
  transform: scale(1.01);
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: var(--gradient);
  box-shadow: 5px 5px 0px 0px #ffb600;
}

.services .col-lg-4:nth-child(2) .card,
.services .col-lg-4:nth-child(5) .card {
  border: 10px solid;
  transform: scale(1.01);
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: var(--gradient);
  box-shadow: 5px 5px 0px 0px #ffb600;
}



/*****************/
/*     Plans     */
/*****************/
.plans .card {
  padding: 20px;
  border: 2px solid #ffb600;
}

.plans .col-lg-4:nth-child(2) .card {
  background-color: #ffb600 !important;
  color: #000 !important;
}

.plans .col-lg-4:nth-child(2) .card .btn {
  border-radius: 0;
  border-width: 2px;
  padding: 10px 30px;
  border-image-slice: 1;
  background-image: none;
  background: transparent;
  border-image-source: var(--white);
  border: 1px solid;
  box-shadow: 5px 5px 0px 0px #fff;

}

.plans .col-lg-4:nth-child(2) .card .btn:hover {
  color: white;
  box-shadow: none;
  border-radius: 0;
  padding: 10px 30px;
  transform: translate(5px, 5px);
}

/************************/
/*     Testimonials     */
/************************/
.slider-1 {
  padding-top: 8.25rem;
  padding-bottom: 4.5rem;
}

.slider-1 .section-title {
  text-align: center;
}

.slider-1 .h2-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-card {
  border: 10px solid;
  border-image-slice: 1;
  border-width: 3px;
  border-image-source: var(--gradient);
}

.slider-1 .slider-container {
  position: relative;
}

.slider-1 .swiper-container {
  width: 86%;
  position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
  color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
  /* even if you can't see it chrome you can see it on mobile device */
  outline: none;
}

.slider-1 .swiper-button-prev {
  left: -14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
  background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
  right: -14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
  background-size: 18px 28px;
}

.slider-1 .card {
  border: none;
  position: relative;
  background-color: transparent;
}

.slider-1 .card-image {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.slider-1 .card-body {
  padding: 0;
}

.slider-1 .testimonial-text {
  margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
  margin-bottom: 0;
  color: #252c38;
}

.slider-1 .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  animation: fadeDropdown 0.2s;
  /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**********************/
/*     Newsletter     */
/**********************/
.form-control-input,
.form-control-textarea {
  width: 100%;
  appearance: none;
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  padding-left: 1.5rem;
  padding-top: 0.775rem;
  padding-bottom: 0.775rem;
}

/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
  z-index: 99;
  left: 20px;
  width: 52px;
  height: 52px;
  bottom: 20px;
  border: none;
  outline: none;
  display: none;
  position: fixed;
  cursor: pointer;
  border-radius: 50%;
  background-color: #323137;
}

#myBtn:hover {
  background-color: #0f0f11;
}

#myBtn img {
  width: 18px;
  margin-left: 0.125rem;
  margin-bottom: 0.25rem;
}

/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
  padding-top: 12.5rem;
  padding-bottom: 4rem;
  background-color: var(--primary);
}

.ex-header h1 {
  color: #fff;
  font-size: 45px;
}

.ex-basic-1 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
  margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
  padding: 1.25rem 1.25rem 0.5rem 1.25rem;
  background-color: #f7f9fd;
}

.ex-cards-1 .card {
  border: none;
  background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
  width: 2em;
  font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
  width: 2em;
  color: #ffffff;
  font-weight: 700;
  line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
  margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
  margin-top: 0.125rem;
  margin-bottom: 0.5rem;
}

/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width: 1024px) {

  .services,
  .work,
  .testimonial,
  .about,
  .contact,
  .plans {
    height: 100%;
  }
}

@media (min-width: 992px) {
  .slider-1 .swiper-container {
    width: 92%;
  }

  .slider-1 .swiper-button-prev {
    left: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  .slider-1 .swiper-button-next {
    right: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  /* Navigation */
  .navbar {
    box-shadow: none;
    transition: all 0.2s;
    padding-top: 0rem;
    background-color: transparent;
  }

  .navbar.top-nav-collapse {
    padding-top: 0rem;
    padding-bottom: 0.5rem;
    background-color: var(--primary);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
  }

  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    overflow-y: visible;
    visibility: visible;
  }

  .offcanvas-collapse.open {
    transform: none;
  }

  .navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar .nav-item .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .navbar .dropdown-menu {
    padding-top: 0.75rem;
    padding-bottom: 0.875rem;
    box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
  }

  .navbar .dropdown-divider {
    width: 90%;
  }

  .navbar .social-icons {
    margin-left: 0.5rem;
  }

  .navbar .fa-stack {
    margin-right: 0;
    margin-left: 0.25rem;
  }
}

@media only screen and (max-width: 540px) {
  h1 {
    font-size: 30px;
  }

  .para {
    width: 100%;
  }

  .swiper-container {
    width: 92%;
  }

  .swiper-button-prev {
    left: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  .swiper-button-next {
    right: -16px;
    width: 22px;
    background-size: 22px 34px;
  }
}

.sessions .card .block {
  line-height: 3;
}

.sessions .center .block .far {
  color: #ffb600;
}

.plans .card p {
  line-height: 3;
}

.plans .py-3 {
  color: #ffb600;
}

.text-justify {
  text-align: justify !important;
}

/* Project shuffle Item */
.shuffle-item {
  /*padding: 0;*/

  .project-img-container {
    position: relative;
    overflow: hidden;

    img {
      transform: perspective(1px) scale3d(1.1, 1.1, 1);
      transition: all 400ms;
    }

    &:hover img {
      transform: perspective(1px) scale3d(1.15, 1.15, 1);
    }

    &:after {
      opacity: 0;
      position: absolute;
      content: "";
      top: 0;
      right: auto;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      transition: all 400ms;
    }

    &:hover:after {
      opacity: 1;
    }

    .gallery-popup .gallery-icon {
      position: absolute;
      top: 0;
      right: 0;
      z-index: 1;
      padding: 5px 12px;
      background: $color-primary;
      color: #fff;
      opacity: 0;
      transform: perspective(1px) scale3d(0, 0, 0);
      transition: all 400ms;
    }

    &:hover .gallery-popup .gallery-icon {
      opacity: 1;
      transform: perspective(1px) scale3d(1, 1, 1);
    }

    .project-item-info {
      position: absolute;
      top: 50%;
      margin-top: -10%;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0 30px;
      z-index: 1;
    }

    .project-item-info-content {
      opacity: 0;
      transform: perspective(1px) translate3d(0, 15px, 0);
      transition: all 400ms;

      .project-item-title {
        font-size: 20px;

        a {
          color: #fff;

          &:hover {
            color: $color-primary;
          }
        }
      }

      .project-cat {
        background: $color-primary;
        display: inline-block;
        padding: 2px 8px;
        font-weight: 700;
        color: #000;
        font-size: 10px;
        text-transform: uppercase;
      }
    }

    &:hover .project-item-info-content {
      opacity: 1;
      transform: perspective(1px) translate3d(0, 0, 0);
    }
  }
}

.general-btn .btn-primary:hover {
  background: #000;
}

/* Project owl */

.owl-theme.project-slide {
  margin-top: 60px;
}

.project-slide .item {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.project-item img {
  width: 100%;
  max-width: auto;
  transition: all 0.6s ease 0s;
}

.project-item:hover img {
  transform: scale(1.1, 1.1);
}

.project-item-content {
  position: absolute;
  bottom: -1px;
  padding: 15px 20px;
  width: 100%;
  background: $color-primary;
}

.owl-theme.project-slide .owl-nav>div {
  position: absolute;
  top: -70px;
  right: 0;
  transform: translateY(-50%);
}

.project-slide .owl-nav>div {
  display: inline-block;
  margin: 0 2px;
  font-size: 20px;
  background: $color-primary;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.owl-theme.project-slide .owl-nav>.owl-prev {
  right: 35px;
  left: auto;
}

/* Projects Single page */

.project-title {
  font-size: 30px;
}

.project-info-label {
  color: #303030;
  font-weight: 700;
  font-size: 14px;
}

.project-info-content {
  font-size: 12px;
}

.project-info li {
  margin-bottom: 5px;
}

.project-link {
  margin-top: 15px;
}

.shide {
  display: none;
}

.shuffle-btn-group label.active {
  color: #fff;
  background: #212121;
}

.shuffle-btn-group label {
  display: inline-block;
  /*color: #212121;*/
  font-size: 14px;
  padding: 6px 2.5%;
  padding-top: 6px;
  padding-top: 10px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  margin: 0;
}

.shuffle-item .project-img-container {
  position: relative;
  overflow: hidden;
}

.shuffle-item .project-img-container .project-item-info {
  position: relative;
  top: 40%;
  margin-top: -10%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 30px;
  z-index: 1;
}

.shuffle-item h3.title-big a {
  color: var(--heading-color);
}

.project-cat a {
  color: var(--yellow-bg);
}

.shuffle-item .project-img-container .project-item-info-content .project-cat {
  /*background:var(--heading-color);*/
  display: inline-block;
  padding: 2px 8px;
  font-weight: normal;
  /*color:var(--white);*/
  font-size: 14px;
  text-transform: uppercase;
}

.shuffle-btn-group {
  display: inline-block;
  margin: 20px 0 50px;
  width: 100%;
  border-bottom: 3px solid #212121;
}

#banner-area {
  background-position: 50% 50%;
  color: var(--white);
}

#banner-area h1 {
  color: var(--white);
}

.card-heading input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

#discount_checkbox input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

.card .card-heading {
  background: var(--card-heading-color);
}

.card-heading h4 {
  color: #fff;
}

.bottom a {
  color: #000 !important;
  font-weight: 600;
}

.bottom a:hover {
  color: #fff !important;
}

.text-yellow {
  color: #ffb600 !important;
}

.shuffle-wrapper .shuffle-item .project-img-container .project-item-info .project-item-info-content {
  opacity: 1 !important;
}

.project-item-info-content .title-big {
  font-size: 36px;
  font-weight: normal;
  line-height: 50px;
}

.shuffle-btn-group input[type="radio"] {
  display: none;
}

@media (max-width: 576px) {
  .home {
    height: 150vh;
  }
}

.col-sm-3 .panel-primary>.panel-heading, .col-sm-4 .panel-primary>.panel-heading {
  background: #000 !important;
  color: #ffb600 !important;
}

.col-sm-4 .panel-danger>.panel-heading {
  background: #000 !important;
  color: #ffb600 !important;
}

/*Board Page Design*/
.w3l-team h3.name-pos {
  /* margin-top: 20px; */
  margin-bottom: 0px;
}

.w3l-team .social {
  margin-top: 10px;
}

.w3l-team p.team-text {
  font-size: 18px;
  color: var(--heading-color);
  line-height: 30px;
  max-width: 650px;
}

.w3l-team .team-info p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 5%;
}

.w3l-team h3.name-pos a {
  font-size: 21px;
  line-height: 30px;
  color: var(--heading-color);
  font-weight: 500;
}

.w3l-team .team-info:hover h3.name-pos a {
  color: var(--primary-color);
  transition: 0.3s ease;
}

.w3l-team .column {
  border-radius: 10px !important;
  overflow: hidden;
}

.w3l-team .column a img {
  width: 100%;
  display: block;
  transition: transform 0.3s linear;
  border-radius: 15px;
}

.w3l-team .team-info:hover img.team-image {
  transform: scale(1.1);
  transition: transform 0.3s linear;
}

.w3l-team .social a {
  display: inline-block;
  /* width: 30px;
  height: 30px;*/
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
}

.w3l-team .social a span {
  font-size: 18px;
  line-height: 30px;
  color: #ccc;
  /*display: block;*/
  border-radius: 50%;
}

.w3l-team .social a.facebook span:hover {
  background: var(--yellow-bg);
  font-size: 16px;
  color: #fff;
}

.w3l-team .social a.twitter span:hover {
  /*background:var(--yellow-bg);
  font-size: 16px;*/
  color: var(--yellow-bg);
}

.w3l-team .social a.linkedin span:hover {
  background: #0077b5;
  font-size: 16px;
  color: #fff;
}

.w3l-team .owl-nav,
.w3l-clients .owl-nav {
  display: none;
}

.w3l-team .owl-dots,
.w3l-clients .owl-dots {
  bottom: -50px;
}

@media (max-width: 415px) {
  .w3l-team .teams1-content h2 {
    font-size: 30px;
    line-height: 45px;
  }
}

.quicklinks a {
  border: 1px dashed #666;
  padding: 1% 2%;
  font-size: 1.1rem !important;
  color: #000;
  border-radius: 6px;
}

.quicklinks a:hover {
  background: #f7be02;
}



#parentHorizontalTab li.tabttitle {
  background: #212529 !important;
  color: #fff !important;
  margin-right: 2%;
}

#parentHorizontalTab li.tabttitle_middle {
  background: #ffb600 !important;
  color: #fff !important;
  margin-right: 2%;
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
}

.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 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.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 0.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 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

@media (max-width: 568px) {

  .owl-carousel .owl-dots.disabled,
  .owl-carousel .owl-nav.disabled {
    display: none;
  }
}

/*  /ourproducts section */
ul.resp-tabs-list,
p {
  margin: 0px;
  padding: 0px;
}

.resp-tabs-list li {
  font-weight: 500;
  font-size: 22px;
  padding: 15px;
  margin: 0;
  list-style: none;
  cursor: pointer;
  float: left;
  width: 25%;
  text-align: center;
  color: var(--heading-color);
  background: var(--bg-color);
  border-bottom: 2px solid var(--border-color);
}

.resp-tabs-list li img {
  margin-right: 30px;
}

.resp-tabs-container {
  padding: 0px;
  background-color: var(--bg-color);
  clear: left;
}

h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
  background: transparent !important;
}

.resp-tab-content {
  display: none;
  padding: 15px;
}

.resp-tab-active {
  border-bottom: none;
  margin-bottom: -1px !important;
  border-bottom: 2px var(--primary) solid !important;
  color: var(--primary) !important;
}

.resp-tab-active {
  border-bottom: none;
  background-color: #ffb600 !important;
}

.resp-content-active,
.resp-accordion-active {
  display: block;
}

.resp-tab-content {
  border-top-color: #5ab1d0;
}

h2.resp-accordion {
  font-size: 20px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}

h2.resp-tab-active {
  background: #dbdbdb;
  border-bottom: 3px var(--primary) solid !important;
  /* !important;*/
}

.resp-easy-accordion h2.resp-accordion {
  display: block;
}

.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1;
  /* !important;*/
}

.resp-jfit {
  width: 100%;
  margin: 0px;
}

.resp-tab-content-active {
  display: block;
}

h2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1;
  /* !important;*/
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
  ul.resp-tabs-list {
    display: none;
  }

  h2.resp-accordion {
    border: none;
    border-bottom: 1px solid #c1c1c1;
    display: block;
  }

  h2.resp-accordion:first-child {
    border-top: none;
  }

  .resp-tabs-container {
    border: 1px solid #f5f5f5;
  }

  .resp-vtabs .resp-tab-content {
    border: 1px solid #c1c1c1;
  }

  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none;
  }

  .resp-accordion-closed {
    display: none !important;
  }

  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important;
  }
}

@media screen and (max-width: 480px) {
  .resp-tab-content {
    padding: 0 15px;
  }

  .resp-arrow {
    margin-top: 3px;
  }
}



.single-gallery-image {
  margin-top: 30px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  height: 200px
}


/*  /ourproducts section */
ul.resp-tabs-list,
p {
  margin: 0px;
  padding: 0px;
}

.resp-tabs-list li {
  font-weight: 500;
  font-size: 22px;
  padding: 15px;
  margin: 0;
  list-style: none;
  cursor: pointer;
  float: left;
  width: 25%;
  text-align: center;
  color: var(--heading-color);
  background: var(--bg-color) !important;
  border-bottom: 2px solid var(--border-color);
}

.resp-tabs-list li img {
  margin-right: 30px;
}

.resp-tabs-container {
  padding: 0px;
  background-color: var(--bg-color);
  clear: left;
}

h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
  background: transparent !important;
}

.resp-tab-content {
  display: none;
  padding: 15px;
}

.resp-tab-active {
  border-bottom: none;
  margin-bottom: -1px !important;
  border-bottom: 2px var(--primary) solid !important;
  color: var(--primary) !important;
}

.resp-tab-active {
  border-bottom: none;
  background-color: #fff;
}

.resp-content-active,
.resp-accordion-active {
  display: block;
}

.resp-tab-content {
  border-top-color: #5AB1D0;
}

h2.resp-accordion {
  font-size: 20px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}

/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 30%;
}

.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 15px 15px !important;
  margin: 0 0 4px;
  cursor: pointer;
  float: none;
}

.resp-vtabs .resp-tabs-container {
  padding: 0px;
  border: 1px solid #c1c1c1;
  float: left;
  width: 68%;
  min-height: 250px;
  border-radius: 4px;
  clear: none;
}

.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}

.resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
  margin-right: -1px !important;
  padding: 14px 15px 15px 14px !important;
  border-top: 1px solid;
  border: 1px solid #5AB1D0 !important;
  border-left: 4px solid #5AB1D0 !important;
  margin-bottom: 4px !important;
  border-right: 1px #FFF solid !important;
}

.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #c1c1c1;
}

h2.resp-tab-active span.resp-arrow {
  border: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #9B9797;
}

/*-----------Accordion styles-----------*/
h2.resp-tab-active {
  background: #DBDBDB;
  border-bottom: 3px var(--primary) solid !important;
  /* !important;*/
}

.resp-easy-accordion h2.resp-accordion {
  display: block;
}

.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1;
  /* !important;*/
}

.resp-jfit {
  width: 100%;
  margin: 0px;
}

.resp-tab-content-active {
  display: block;
}

h2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1;
  /* !important;*/
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
  ul.resp-tabs-list {
    display: none;
  }

  h2.resp-accordion {
    border: none;
    border-bottom: 1px solid #c1c1c1;
    display: block;
  }

  h2.resp-accordion:first-child {
    border-top: none;
  }

  .resp-tabs-container {
    border: 1px solid #f5f5f5;
  }

  .resp-vtabs .resp-tab-content {
    border: 1px solid #C1C1C1;
  }

  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none;
  }

  .resp-accordion-closed {
    display: none !important;
  }

  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important;
  }
}

@media screen and (max-width: 480px) {
  .resp-tab-content {
    padding: 0 15px;
  }

  .resp-arrow {
    margin-top: 3px;
  }
}

.list-inline-item{
  margin-bottom: 20px;
}

.blink b{animation: blink 1.5s linear infinite;}
@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}
.hanging-thread .thread-bob {
    position: absolute;
    bottom: 0;
   right: 94px;
    top: 25%;
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    border-radius: 6px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform-origin: top center;
    animation: bob-float 4s ease-in-out infinite,
               border-glow 2s linear infinite;
    transition: transform .18s ease, box-shadow .18s ease;
    background: #fff;
}

/* Floating movement */
@keyframes bob-float {
    0%, 100% { transform: translateY(0); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
    50% { transform: translateY(-6px); }
}

/* Glowing border animation */
@keyframes border-glow {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 12px rgba(255, 140, 0, 0.9), 0 0 25px rgba(255, 140, 0, 0.6); }
    100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4); }
}

@media (max-width: 576px) {
    .hanging-thread .thread-bob {
        display: none;
    }
}
.zoom-animation {
  animation: zoomInOut 1s ease-in-out infinite;
  display: inline-block;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

