/* 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: #fff;
  --primary-light: #041a57;
  --secondary: #C30;
  --tertiary: #C30;
  --gradient: linear-gradient(to right, #C30, #C30);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 2.65rem;
  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{
  height: 110vh !important;
  position: relative;
}

.services,
.work,
.contact{
  background-color: var(--primary);
}

.about,
.plans,
.company,
.newsletter,
.testimonial,
.location {
  background-color: var(--primary-light);
}

.bottom {
  background-color: var(--primary-light);
}

/* Gradient Border And Background On Icons */
.home .fas,
.plans .far,
.information .fas,
.work .fas,
.plans .fas,
.services .fas,
.location .far,
.location .fas {
  padding: 15px 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#C30),
    to(#C30)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home_text{
	color: var(--secondary) ;
}
.headline{
	color: var(--primary-light) ;
}

/* .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 .nav-item{
  align-self: center;
}

.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-nav .dropdown-item {
  align-items: center;
  display: flex;
}

.navbar .dropdown-menu {
  border: none;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  background-color: var(--primary-light);
}

.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(--tertiary);
}

.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:var(--primary-light);
  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(#C30),
    to(#C30)
  );
  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 .col-lg-4:first-child {
  background-color: #c30;
}
.information .container-fluid .row .col-lg-4:first-child .fas {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
	-webkit-background-clip: text;
}

.information .container-fluid .row .col-lg-4:last-child {
  background-color: white;
}
.information .container-fluid .row .col-lg-4:last-child .form-control {
  border-color: var(--primary-light);
}
.information .container-fluid .row .col-lg-4:last-child .btn-secondary:hover {
  background-color: var(--primary-light);
}
.information .container-fluid .row .col-lg-4:last-child .fas {
  padding: 0px;
}

.information .container-fluid .row .col-lg-4:nth-child(2) {
  background-color: var(--primary-light);
}

/******************/
/*     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-color: #fff;
  background: transparent;
  border-image-source: #fff;
}

.btn-secondary:hover {
  color: black;
  padding: 10px 30px;
  background-image: var(--primary-light);
}

/* 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 var(--secondary);
}

.services .card:hover {
	border: 10px solid;
  transform: scale(1.01);
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: var(--secondary);
	border-color: var(--secondary);
  box-shadow: 5px 5px 0px 0px #c30;
}

.services .col-lg-4:nth-child(2) .card{
	border: 10px solid;
  transform: scale(1.01);
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: var(--secondary);
	border-color: var(--secondary);
  box-shadow: 5px 5px 0px 0px #C30;
}
.services .col-lg-4:nth-child(2) .card ul li{
	line-height: 1;
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
  padding: 20px;
  border: 2px solid white;
}

/************************/
/*     Testimonials     */
/************************/
.slider-1 {
  padding-top: 8.25rem;
  padding-bottom: 8.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-light);
}

.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 {
  margin-top: 7.5rem;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  background-color: var(--primary-light);
}

.ex-header h1 {
  color: #fff;
}

.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 (max-width: 1092.81px) { 
.navbar-nav .btn {
   padding: 6px 2px !important;
        font-size: 0.8rem; }
    .navbar .nav-item .nav-link {
       margin-left: 11%;padding-right: 0.39rem !important; }
       .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.1rem;}
 }
@media only screen and (max-width: 1024px) {
  .services,
  .work,
  .testimonial,
  .about,
  .contact,
  .plans {
    height: 100%;
  }
  .home .headline{
 font-size: 1.4rem;
    line-height: 26px;
    margin-bottom: 0.2rem;
 }
}

@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: 0;
    background-color: transparent;
  }

  .navbar.top-nav-collapse {
    padding-top: 0;
    padding-bottom: 0.5rem;
    background-color: #d5d6d8;
    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;
    font-size: 15px !important;
  }

  .navbar .nav-item .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.1rem;
  }

  .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) {
  .home{
  height: 70vh !important;
  position: relative;
}
  h1 {
    font-size:26px;
  }

  .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;
  }
}

.text-justify {
  text-align: justify !important;
}

.sessions .col-lg-4:nth-child(2) .card .far {
  padding: 15px 0 16px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e54220),
    to(#e54220)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sessions .col-lg-4:last-child .card .far {
  padding: 13px 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#041a57),
    to(#041a57)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sessions .col-lg-4 .card .far {
  padding: 15px 0 16px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#041a57),
    to(#041a57)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#parentHorizontalTab li.tabttitle {
  background: #041a57 !important;
  color: #fff !important;
  margin-right: 2%;
}
#parentHorizontalTab li.tabttitle_middle {
  background: #c30 !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: 20%;
  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;
}

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;
  }
}

.img-circle {
  width: 100px;
  height: 100px;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
}

.img-circle img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.w3l-team h3.name-pos {
  margin-top: 20px;
}

.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: 18px;
  line-height: 28px;
}

.w3l-team h3.name-pos a {
  font-size: 24px;
  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: var(--border-radius) !important;
  overflow: hidden;
}

.w3l-team .column a img {
  width: 100%;
  display: block;
  transition: transform 0.3s linear;
  border-radius: var(--border-radius) !important;
}

.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: #3b5998;
  font-size: 16px;
  color: #fff;
}

.w3l-team .social a.twitter span:hover {
  background: #1da1f2;
  font-size: 16px;
  color: #fff;
}

.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;
  }
}

.w3l-clients {
  background: var(--bg-grey);
}

.w3l-clients .testimonial {
  position: relative;
  overflow: hidden;
  text-align: left;
}

.w3l-clients .testimonial {
  display: block;
  margin: 0;
  padding: 40px 30px;
  position: relative;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border: none;
  box-shadow: 0 25px 98px 0 rgba(19, 19, 19, 0.03);
}

.w3l-clients .testi-des {
  display: flex;
  text-align: center;
  margin-bottom: 16px;
}

.w3l-clients blockquote q {
  font-size: 18px;
  line-height: 28px;
  color: var(--para-color);
}

.w3l-clients blockquote q::before {
  font-size: 50px;
  color: var(--secondary-color);
  line-height: 0.8;
  padding-top: 8px;
  font-weight: 600;
  display: inline-block;
  font-family: "Merriweather", serif;
  display: none;
}

.w3l-clients .test-img {
  width: 65px;
  height: 65px;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
}

.w3l-clients ul.rating-star li span.fa {
  font-size: 20px;
  color: var(--primary-color);
}

.w3l-clients ul.rating-star li {
  display: inline-block;
}

.w3l-clients .testimonial img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.w3l-clients .testimonial blockquote {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
}

.w3l-clients .testimonial .peopl {
  margin: 0;
  margin-left: 20px;
  text-align: left;
  width: 74%;
}

.w3l-clients .testimonial .peopl h3 {
  margin: 0;
  font-weight: 500;
  font-size: 22px;
}

.w3l-clients p.indentity {
  font-size: 17px;
  font-style: normal;
  margin-bottom: 0;
  text-align: left;
  opacity: 0.8;
}

.features-w3pvt-main h4 a {
  font-size: 28px;
  line-height: 34px;
  color: var(--heading-color);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.features-w3pvt-main h4 a:hover {
  color: var(--primary-color);
}

.features-w3pvt-main span.fa {
  font-size: 2em;
  margin-top: 5px;
  color: var(--primary-color);
}

.events-top {
  max-width: 900px;
  margin: 0 auto;
}

.w3l-eventblock2 {
  background: var(--bg-grey);
}

.event-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.event-info {
  background: var(--bg-color);
  padding: 30px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 25px 98px 0 rgba(19, 19, 19, 0.01);
}

.event-info h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.event-info p span.fa {
  font-size: 20px;
  width: 20px;
  color: var(--primary-color);
  opacity: 0.6;
  transition: 0.3s;
}

.event-info:hover p span.fa {
  opacity: 1;
  transition: 0.3s;
}

ol.w3l-text-event li {
  font-size: 18px;
  line-height: 28px;
  color: var(--para-color);
  margin-top: 5px;
  position: relative;
}

ol.w3l-text-event li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100px;
  position: absolute;
  top: 11px;
  left: -20px;
  border: 1px solid var(--primary-color);
}

.w3l-index2 {
  background: var(--bg-grey);
}

.w3l-index2 .grids-speci1 {
  padding: 40px 0;
  background: var(--bg-color);
  border-radius: var(--border-radius);
  position: relative;
  transition: 0.3s ease;
  box-shadow: 0 25px 98px 0 rgba(19, 19, 19, 0.01);
}

.w3l-index2 .grids-speci1 span {
  color: var(--heading-color);
  font-size: 45px;
  opacity: 0.1;
  margin-bottom: 10px;
  transform: scale(1);
  transition: 0.3s ease;
}

.w3l-index2 .grids-speci1:hover span.fa {
  opacity: 0.8;
  transform: scale(1.1);
  transition: 0.3s ease;
}

.w3l-index2 h3.title-spe {
  color: var(--primary-color);
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 5px;
}

@media (max-width: 1080px) {
  .w3l-index2 .grids-speci p {
    font-size: 19px;
  }
}

@media (max-width: 800px) {
  .w3l-index2 .grids-speci p {
    font-size: 18px;
  }
  .features-w3pvt-main h4 a {
    font-size: 26px;
  }
}

@media (max-width: 736px) {
  .w3l-index2 .grids-speci p {
    font-size: 16px;
  }
  .w3l-index2 h3.title-spe {
    font-size: 40px;
  }
  .featured_grid_left {
    text-align: right;
  }
}

@media (max-width: 736px) {
  .event-right {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .w3l-index2 .grids-speci p {
    font-size: 15px;
  }
  .features-w3pvt-main h4 a {
    font-size: 24px;
  }
}

@media (max-width: 440px) {
  .w3l-index2 .grids-speci {
    padding: 30px 20px;
  }
  .w3l-index2 h3.title-top {
    font-size: 32px;
    line-height: 37px;
  }
  .w3l-index2 .grids-speci1 {
    padding: 20px 0;
  }
  .w3l-index2 .grids-speci1 span {
    font-size: 35px;
  }
}

@media (max-width: 384px) {
  .w3l-index2 .grids-speci {
    padding: 20px 20px;
  }
  .features-w3pvt-main h4 a {
    font-size: 22px;
  }
  .main-cont-wthree-fea.text-center .col-6 {
    max-width: 100% !important;
    display: block;
    flex: 0 0 100%;
  }
}

/*  ourproducts section */
.w3l-products .products-content {
  margin: 20px 0;
}

.products-content h3 {
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  .w3l-products .products-content {
    margin-bottom: 30px;
  }
}

/*  /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: 30%;
  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;
  }
}

.img-circle {
  width: 100px;
  height: 100px;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
}

.img-circle img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.w3l-team h3.name-pos {
  margin-top: 20px;
}

.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: 18px;
  line-height: 28px;
}

.w3l-team h3.name-pos a {
  font-size: 24px;
  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: var(--border-radius) !important;
  overflow: hidden;
}

.w3l-team .column a img {
  width: 100%;
  display: block;
  transition: transform 0.3s linear;
  border-radius: var(--border-radius) !important;
}

.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: #3b5998;
  font-size: 16px;
  color: #fff;
}

.w3l-team .social a.twitter span:hover {
  background: #1da1f2;
  font-size: 16px;
  color: #fff;
}

.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;
  }
}

.w3l-clients {
  background: var(--bg-grey);
}

.w3l-clients .testimonial {
  position: relative;
  overflow: hidden;
  text-align: left;
}

.w3l-clients .testimonial {
  display: block;
  margin: 0;
  padding: 40px 30px;
  position: relative;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border: none;
  box-shadow: 0 25px 98px 0 rgba(19, 19, 19, 0.03);
}

.w3l-clients .testi-des {
  display: flex;
  text-align: center;
  margin-bottom: 16px;
}

.w3l-clients blockquote q {
  font-size: 18px;
  line-height: 28px;
  color: var(--para-color);
}

.w3l-clients blockquote q::before {
  font-size: 50px;
  color: var(--secondary-color);
  line-height: 0.8;
  padding-top: 8px;
  font-weight: 600;
  display: inline-block;
  font-family: "Merriweather", serif;
  display: none;
}

.w3l-clients .test-img {
  width: 65px;
  height: 65px;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
}

.w3l-clients ul.rating-star li span.fa {
  font-size: 20px;
  color: var(--primary-color);
}

.w3l-clients ul.rating-star li {
  display: inline-block;
}

.w3l-clients .testimonial img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.w3l-clients .testimonial blockquote {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
}

.w3l-clients .testimonial .peopl {
  margin: 0;
  margin-left: 20px;
  text-align: left;
  width: 74%;
}

.w3l-clients .testimonial .peopl h3 {
  margin: 0;
  font-weight: 500;
  font-size: 22px;
}

.w3l-clients p.indentity {
  font-size: 17px;
  font-style: normal;
  margin-bottom: 0;
  text-align: left;
  opacity: 0.8;
}

.features-w3pvt-main h4 a {
  font-size: 28px;
  line-height: 34px;
  color: var(--heading-color);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.features-w3pvt-main h4 a:hover {
  color: var(--primary-color);
}

.features-w3pvt-main span.fa {
  font-size: 2em;
  margin-top: 5px;
  color: var(--primary-color);
}

.events-top {
  max-width: 900px;
  margin: 0 auto;
}

.w3l-eventblock2 {
  background: var(--bg-grey);
}

.event-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.event-info {
  background: var(--bg-color);
  padding: 30px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 25px 98px 0 rgba(19, 19, 19, 0.01);
}

.event-info h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.event-info p span.fa {
  font-size: 20px;
  width: 20px;
  color: var(--primary-color);
  opacity: 0.6;
  transition: 0.3s;
}

.event-info:hover p span.fa {
  opacity: 1;
  transition: 0.3s;
}

ol.w3l-text-event li {
  font-size: 18px;
  line-height: 28px;
  color: var(--para-color);
  margin-top: 5px;
  position: relative;
}

ol.w3l-text-event li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100px;
  position: absolute;
  top: 11px;
  left: -20px;
  border: 1px solid var(--primary-color);
}

.w3l-index2 {
  background: var(--bg-grey);
}

.w3l-index2 .grids-speci1 {
  padding: 40px 0;
  background: var(--bg-color);
  border-radius: var(--border-radius);
  position: relative;
  transition: 0.3s ease;
  box-shadow: 0 25px 98px 0 rgba(19, 19, 19, 0.01);
}

.w3l-index2 .grids-speci1 span {
  color: var(--heading-color);
  font-size: 45px;
  opacity: 0.1;
  margin-bottom: 10px;
  transform: scale(1);
  transition: 0.3s ease;
}

.w3l-index2 .grids-speci1:hover span.fa {
  opacity: 0.8;
  transform: scale(1.1);
  transition: 0.3s ease;
}

.w3l-index2 h3.title-spe {
  color: var(--primary-color);
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 5px;
}

@media (max-width: 1080px) {
  .w3l-index2 .grids-speci p {
    font-size: 19px;
  }
}

@media (max-width: 800px) {
  .w3l-index2 .grids-speci p {
    font-size: 18px;
  }
  .features-w3pvt-main h4 a {
    font-size: 26px;
  }
}

@media (max-width: 736px) {
  .w3l-index2 .grids-speci p {
    font-size: 16px;
  }
  .w3l-index2 h3.title-spe {
    font-size: 40px;
  }
  .featured_grid_left {
    text-align: right;
  }
}

@media (max-width: 736px) {
  .event-right {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .w3l-index2 .grids-speci p {
    font-size: 15px;
  }
  .features-w3pvt-main h4 a {
    font-size: 24px;
  }
}

@media (max-width: 440px) {
  .w3l-index2 .grids-speci {
    padding: 30px 20px;
  }
  .w3l-index2 h3.title-top {
    font-size: 32px;
    line-height: 37px;
  }
  .w3l-index2 .grids-speci1 {
    padding: 20px 0;
  }
  .w3l-index2 .grids-speci1 span {
    font-size: 35px;
  }
}

@media (max-width: 384px) {
  .w3l-index2 .grids-speci {
    padding: 20px 20px;
  }
  .features-w3pvt-main h4 a {
    font-size: 22px;
  }
  .main-cont-wthree-fea.text-center .col-6 {
    max-width: 100% !important;
    display: block;
    flex: 0 0 100%;
  }
}

/*-- pricing --*/
.w3l-pricing .price-main-info .card-body {
  padding: 3.5em 1em;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

label.price-label {
  position: absolute;
  top: 0;
  right: 0;
  background: #8e43e7;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 15px 10px;
}

label.price-label:before {
  top: 0;
  border-top: 19px solid #8e43e7;
  content: "";
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

label.price-label:after {
  bottom: 0;
  border-bottom: 19px solid #8e43e7;
  content: "";
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

.w3l-pricing .price-inner.card.box-shadow {
  background: var(--bg-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.w3l-pricing .pricing-card-title span {
  font-size: 0.5em;
  display: inline-block;
  color: var(--font-color);
  font-weight: 300;
}

.w3l-pricing .price-main-info small.text-muted {
  font-size: 0.5em;
}

.w3l-pricing ul.list-unstyled li {
  font-size: 1.2em;
  color: var(--font-color);
  line-height: 30px;
  margin-bottom: 5px;
  font-weight: 300;
}

.w3l-pricing .price-main-info h5.card-title {
  font-size: 3em;
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 0.5em;
  margin-top: 1em;
}

.w3l-pricing .card-deck .card {
  padding: 0px;
}

.w3l-pricing .price-inner.card h4 {
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 500;
  background: var(--bg-light);
  padding: 20px 10px;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.w3l-pricing .price-main-info.card {
  border-radius: 0;
  border: none;
  background: none;
}

.w3l-pricing .price-inner.card.box-shadow:hover,
.w3l-pricing .price-inner.card.box-shadow.active {
  background: var(--bg-grey);
  transition: all 0.3s;
}

.w3l-pricing .price-inner.card.box-shadow:hover .pricing-card-title,
.w3l-pricing .price-inner.card.box-shadow.active .pricing-card-title {
  color: var(--primary-color);
}


.footer{
	background-color: var(--secondary);
} 


/* 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: #041a57;
}
.shuffle-btn-group label {
  display: inline-block;
  color:var(--heading-color);
  font-size: 14px;
  padding: 6px 9px;
    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: absolute;
  top: 40%;
  margin-top: -10%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 30px;
  z-index: 1;
}
.shuffle-wrapper .shuffle-item .project-img-container .project-item-info .project-item-info-content{opacity:1 !important;}
.shuffle-item h3.title-big a{color:var(--heading-color);}
.project-cat a{color:#e54220;}
.shuffle-item .project-img-container .project-item-info-content .project-cat {
  /*background:var(--darkblue-color);*/
  display: inline-block;
  padding: 2px 8px;
  font-weight: 700;
  /*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 #041a57;}
#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(--darkblue-color);}
.card-heading h4{color:#fff;}



/* 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: relative;
        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;
              }
          }
        }
        
    } */
    &: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;
}


/*-- //play icon animation --*/
.btn-style {
  padding: 12px 25px;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  font-weight: 400;
  transition: 0.3s ease-in;
  border-radius: var(--border-radius); }

.border-btn {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 35px; }

.btn-white {
  padding: 12px 35px;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  font-weight: 400;
  transition: 0.3s ease-in;
  border-radius: var(--border-radius);
  background-color: #fff;
  color: var(--primary-color); }

a.link-style {
  text-transform: capitalize;
  transition: all 0.5s ease;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  display: inline-block; }

a.link-style:before {
  position: absolute;
  content: '';
  background: var(--primary-color);
  width: 0px;
  height: 1px;
  bottom: 13px;
  transition: all 0.5s ease; }

a.link-style:hover:before {
  width: 100px;
  transition: all .5s; }

.grids-gap {
  padding-top: 20px; }

.title-big {
  font-size:42px;
  font-weight: 600;
  line-height: 50px; }

.title-big span {
  font-weight: 600; }

.title-small {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 2em;
  letter-spacing: 1px;
  color: #7e7d7d; }

.title-small span {
  color: var(--heading-color); }

@media (max-width: 1080px) {
  .title-big {
    font-size: 40px !important;
    line-height: 45px; } }

@media (max-width: 768px) {
  .title-big {
    font-size: 35px !important;
    line-height: 40px; } }

@media (max-width: 415px) {
  .title-big {
    font-size: 32px !important;
    line-height: 40px; } }

@media (max-width: 378px) {
  .title-big {
    font-size: 30px !important;
    line-height: 35px; }
  p {
    font-size: 1.1em; } }

@media (max-width: 375px) {
  .btn-white,
  .btn-style {
    padding: 12px 30px; }
  .title-big {
    font-size: 28px !important;
    line-height: 35px; }
  .title-small {
    font-size: 16px !important;
    letter-spacing: .5px; } }

/*-- toggle switch --*/
.theme-switch-wrapper {
  display: flex;
  align-items: center; }

.theme-switch-wrapper em {
  margin-left: 10px;
  font-size: 1rem; }

.theme-switch {
  display: inline-block;
  position: relative;
  width: 60px;
  margin: 0; }

.theme-switch input {
  display: none; }
.btn-ocolor{background:var(--secondary); box-shadow: 5px 5px var(--secondary) !important; border:none;}
.btn-bcolor{background:var(--primary-light); box-shadow: 5px 5px var(--primary-light) !important; border:none;}
.shuffle-btn-group input[type="radio"] {
  display: none;
}
.shuffle-btn-group input[type="radio"] {
  display: none;
}

@media (max-width: 576px) {
  .home {
    height: 107vh;
  }
  .home .container{
    margin-top: 25vh;
  }
  .headerstyle{
    margin-bottom: 5px;
  }
}
.hidden{
  display: none;
}

.strep:hover{
  color: #fff !important;
}

.single-gallery-image {
  margin-top: 30px;
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  height: 200px
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
  color: #cc3300 !important;
}
.sessions li{height:33px;}

.sessions ul.last li:last-child{height:24px;}
 .underline-heading {
    margin-top: 1rem;     /* Equivalent to mt-3 */
    margin-bottom: 1rem;  /* Equivalent to mb-3 */
    text-decoration: underline;
  }
  .text-orange{
    color: #ff6600 !important;
  }
body .footer .design:hover a,
body .footer .design:hover a p,
body .footer .design:hover a p,
body .footer .design a:focus,
body .footer .design a:focus p,
body .footer .design a:active,
body .footer .design a:active p {
    color: var(--primary-light)!important; 
     background:none !important;
}
.modal .bg-blue{background: var(--primary-light);}
.modal .text-blue{color: var(--primary-light);}
.modal-header .btn-close {
  filter: invert(1);
  opacity: 1;
  background-size: 1.2em;
}
/* body .footer .design a:hover p {color:#fff !important;} */