@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --primary: #DB4041;
    --secondary: #231F20;
    --bg: #FFE7E7;
    --white: #fff;
    --primaryfont: 'Montserrat', sans-serif;
    --secondaryfont: 'Roboto', sans-serif;
}
  
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--secondaryfont);
    background: var(--bg) !important;
    overflow-x: hidden;
    margin: 0;
}

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primaryfont);
}


/* ------------------ LANDING ------------------ */

.landing{
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.primary-bg-landing{
    position: absolute;
    background: var(--primary);
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
}
.baking-you-happy-landing{
    position: absolute;
    right: 100px;
    bottom: 100px;
    text-align: end;
}
.u-shape-image img{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}
.mobile-landing{
  display: none;
}

@media only screen and (max-width: 990px){
  .desktop-landing{
    display: none;
  }
  .mobile-landing{
    display: block;
    width: 200px;
    padding-bottom: 50px;
  }
  .baking-you-happy-landing{
    display: flex;
    width: 100%;
    height: 100%;
    right: auto;
    bottom: auto;
    align-items: flex-end;
    justify-content: center;
  }
  .landing{
    height: 95vh;
  }
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background-image: linear-gradient(to right, #2c8eb1, #35abd3);
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background-image: linear-gradient(to right, #35abd3, #2c8eb1);
    color: #fff;
    margin-bottom: 10px;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 1000;
  -webkit-transform: translateX(0);
          transform: translateX(0);
          z-index: 99999;
  height: 100vh;
	display: grid;
	place-items: center;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}
.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.smiley {
	width: 8em;
	height: 8em;
}
.smiley__eye1,
.smiley__eye2,
.smiley__mouth1,
.smiley__mouth2 {
	animation: eye1 1.7s ease-in-out infinite;
}
.smiley__eye1,
.smiley__eye2 {
	transform-origin: 64px 64px;
}
.smiley__eye2 {
	animation-name: eye2;
}
.smiley__mouth1 {
	animation-name: mouth1;
}
.smiley__mouth2 {
	animation-name: mouth2;
	visibility: hidden;
}

/* Animations */
@keyframes eye1 {
	from {
		transform: rotate(-260deg) translate(0,-56px);
	}
	50%,
	60% {
		animation-timing-function: cubic-bezier(0.17,0,0.58,1);
		transform: rotate(-40deg) translate(0,-56px) scale(1);
	}
	to {
		transform: rotate(225deg) translate(0,-56px) scale(0.35);
	}
}
@keyframes eye2 {
	from {
		transform: rotate(-260deg) translate(0,-56px);
	}
	50% {
		transform: rotate(40deg) translate(0,-56px) rotate(-40deg) scale(1);
	}
	52.5% {
		transform: rotate(40deg) translate(0,-56px) rotate(-40deg) scale(1,0);
	}
	55%,
	70% {
		animation-timing-function: cubic-bezier(0,0,0.28,1);
		transform: rotate(40deg) translate(0,-56px) rotate(-40deg) scale(1);
	}
	to {
		transform: rotate(150deg) translate(0,-56px) scale(0.4);
	}
}
@keyframes eyeBlink {
	from,
	25%,
	75%,
	to {
		transform: scaleY(1);
	}
	50% {
		transform: scaleY(0);
	}
}
@keyframes mouth1 {
	from {
		animation-timing-function: ease-in;
		stroke-dasharray: 0 351.86;
		stroke-dashoffset: 0;
	}
	25% {
		animation-timing-function: ease-out;
		stroke-dasharray: 175.93 351.86;
		stroke-dashoffset: 0;
	}
	50% {
		animation-timing-function: steps(1,start);
		stroke-dasharray: 175.93 351.86;
		stroke-dashoffset: -175.93;
		visibility: visible;
	}
	75%,
	to {
		visibility: hidden;
	}
}
@keyframes mouth2 {
	from {
		animation-timing-function: steps(1,end);
		visibility: hidden;
	}
	50% {
		animation-timing-function: ease-in-out;
		visibility: visible;
		stroke-dashoffset: 0;
	}
	to {
		stroke-dashoffset: -351.86;
	}
}
.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
}
.loaded #loader {
  opacity: 0;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: var(--bg);
    transition: all 0.5s;
    z-index: 997;
    height: 100px;
    position: fixed;
    width: 100%;
    top: 0px;
}

#header.fixed-top {
    background: var(--bg);
}

#header .logo a {
    color: var(--primary);
}

#header .logo img {
    max-height: 75px;
}

.scrolled-offset {
    margin-top: 70px;
}



.title-section h2{
  font-family: var(--primaryfont);
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    margin-left: 5px;
}

.navbar ul .demobtn {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: none !important;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 30px;
    font-family: var(--primaryfont);
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary);
    white-space: nowrap;
    transition: 0.7s;
    text-decoration: none;
    border-bottom: 1px solid #ffffff00;
}

.nav-link{
    padding: 0px !important;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a{
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}
.mobile-nav a:hover,
.mobile-nav .active,
.mobile-nav .active:focus,
.mobile-nav li:hover>a{
    color: var(--white);
    font-weight: 500;
    border-bottom: 2px solid var(--white);
    display: initial;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    margin-top: 10px;
    padding: 0px;
    z-index: 99;
    border-radius: 10px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    background: var(--white);
    box-shadow: 0px 0px 20px rgba(127, 137, 161, 0.111);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    margin: 5px;
    color: var(--secondary);
}
.navbar .dropdown a svg{
    fill: var(--secondary);
    transition: all ease 0.3s;
    margin-left: 10px;
}

.navbar .dropdown a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--primary);
    margin-left: 10px;
}

.navbar .dropdown a:hover svg{
    fill: var(--primary);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-bg{
  background: url("../img/brand-red-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px;
  color: var(--white);
}
.btn-close-mob{
  background: none;
  border: none;
  position: absolute;
  top: 30px;
  right: 30px;
}
.mobile-nav ul{
  list-style: none;
  color: var(--white);
}
.mobile-nav ul a{
  font-size: 24px;
  color: var(--white);
  line-height: 41px;
  text-decoration: none;
}

.mobile-nav-toggle {
    color: #3e3e3e;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #2C8EB1;
}


.carousel {
  position: relative;
  margin-top: 100px;
}

.breadcrumb-section{
  background: url("../img/breadcrumb-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px;
  color: var(--white);
  margin-top: 100px;
  margin-bottom: 60px;
}
.breadcrumb-section h2{
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  color: var(--white);
  font-family: var(--primaryfont);
}
.breadcrumb-section .breadcrumb{
  justify-content: flex-end;
}
.breadcrumb-section .breadcrumb a{
  color: var(--white);
}
.breadcrumb-section .breadcrumb-item.active{
  color: var(--white);
  font-weight: 500;
}
.breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: var(--white);
  content: var(--bs-breadcrumb-divider, "-");
}


.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #191919;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #2C8EB1;
    background: none;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #191919;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #2C8EB1;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
      display: block;
  }
  .navbar ul {
      display: none;
  }
}

.category-section{
  background: url("../img/brand-red-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px;
  color: var(--white);
}
.category-section h2{
  color: var(--white);
}
.category-section p{
  font-family: var(--secondaryfont);
  font-size: 18px;
  font-weight: 300;
}
.category-section a{
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  transition: 0.8s all ease;
  text-transform: uppercase;
  border-bottom: 1px solid var(--white);
}
.category-section a:hover{
  color: var(--white);
  margin-left: 10px;
}
.category blockquote {
  font-style: 18px;
  color: #000;
}
.slider-button-section{
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}


.category-slider-wrap {
  position: relative;
}

.category-slider-wrap .tns-nav {
  position: absolute;
  bottom: -50px;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.category-slider-wrap .tns-nav button {
  background: none;
  border: none;
  display: inline-block;
  margin: 2px;
  height: 15px;
  display: none;
}

.category-slider-wrap .tns-nav button:active,
.category-slider-wrap .tns-nav button:focus {
  outline: none;
}

.category-slider-wrap .tns-nav button:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.category-slider-wrap .tns-nav button.tns-nav-active:before {
  background-color: #441414;
}

.category-slider .item.tns-item:nth-child(odd) .product-card{
  padding-top: 70px;
}

#category-nav span {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
#category-nav img{
  width: 70%;
}

.category-section .item{
  height: 500px;
} 


.product-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
  padding-top: 30px;
}

.product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  justify-content: center;
}

.product-card:hover .product-card-inner {
  transform: rotateY(180deg);
}
.product-name {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
}
.product-name h3{
  font-family: var(--primaryfont);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
  color: var(--white);
}

.product-card-front {
  color: var(--white);
  position: relative;
}
.product-card-front .product-content-details{
	position: absolute;
  bottom: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(219, 64, 65, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.product-card-front, .product-card-back {
  position: absolute;
  width: 100%;
  height: 400px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.product-card-front img{
  border-radius: 30px;
}
.product-card-back {
  background-color: var(--white);
  color: var(--secondary);
  border-radius: 30px;
  transform: rotateY(180deg);
  padding: 25px;
  text-align: left;
}
.product-card-back img{
  margin: 20px 0px;
}
.product-card-back h3{
  font-family: var(--primaryfont);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.54px;
  text-transform: capitalize;
}
.product-card-back p{
  font-family: var(--secondaryfont);
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
  letter-spacing: 0.42px;
  text-transform: capitalize;
}

.product-card-back .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: auto;
}
.animated-link strong {
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.9rem;
  -webkit-transition: color .3s ease-out,-webkit-transform .3s ease-out;
  transition: color .3s ease-out,-webkit-transform .3s ease-out;
  transition: transform .3s ease-out,color .3s ease-out;
  transition: transform .3s ease-out,color .3s ease-out,-webkit-transform .3s ease-out;
}

.animated-link {
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  font-family: var(--secondary);
}

.product-card-back  .link-container .animated-link strong {
  color: var(--primary);
}
.product-card-back .link-container .animated-link:hover strong {
  color: var(--white);
}
.product-card-back  .animated-link strong {
  margin-right: 3rem;
}
.product-card-back  .animated-link:hover strong {
  -webkit-transform: translateX(2.5rem);
  transform: translateX(2.5rem);
}

.animated-link:hover strong {
  color: var(--white);
}
.animated-link span {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.animated-link span small {
  right: 0;
}

.animated-link span small {
  position: absolute;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid  var(--primary);
  border-radius: 999px;
  -webkit-transition: background-color .3s ease-out,width .3s ease-out;
  transition: background-color .3s ease-out,width .3s ease-out;
  z-index: -1;
}
.animated-link:hover small {
  width: 100% !important;
  background-color: var(--primary);
}
.animated-link span small i {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.animated-link span small i {
  right: 0;
}
.animated-link span small i svg path {
  -webkit-transition: stroke .3s ease-out;
  transition: stroke .3s ease-out;
}
.animated-link:hover small i {
  -webkit-transform: translateX(-0.5rem);
  transform: translateX(-0.5rem);
}
.animated-link:hover small i svg path {
  stroke: #fff;
}


.tns-slide-active{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomIn {
  0% {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3)
  }

  50% {
      opacity: 1
  }
}

@keyframes zoomIn {
  0% {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3)
  }

  50% {
      opacity: 1
  }
}

.desktop{
  display: initial;
}
.mobile{
  display: none !important;
}
button.menu {
  background: none;
  border: none;
  z-index: 1;
}
@media only screen and (max-width: 990px){
  a.logo {
    position: absolute;
    width: 100%;
    left: 0;
    display: flex;
    right: 0;
    margin: auto;
    justify-content: center;
  }
  button.mobile.menu{
    display: block !important;
  }
  .category-slider .item.tns-item:nth-child(odd) .product-card {
    padding-top: 0px;
  }
}
@media only screen and (max-width: 600px) {
  .sec-categorys{
    position: relative;
  }
  .slider-button-section{
    position: absolute;
    display: grid;
    bottom: -10px;
    z-index: 1;
    justify-content: center;
  }
  .desktop{
    display: none;
  }
  .mobile{
    display: block !important;
  }
  
  .product-card {
    width: auto;
    height: 400px;
    display: flex;
    justify-content: center;
  }
  .product-card-front .product-content-details{
    width: 300px;
  }
  .category-content {
    display: flex;
    justify-content: center;
  }
  div#category-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
  }
  .category-section .title-section {
    text-align: center;
  }
  a.logo {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
}
}


section.sticky {
  position: sticky;
  bottom: 0px;
  overflow: hidden;
  z-index: 999;
}
section.sticky img{
  height: 50px;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  section.sticky img{
    width: auto;
  }
}


/* TESTIMONIAL */

.testimonial-section{
  background: url("../img/cake-background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
  color: var(--white);
  text-align: center;
}
.testimonial-section h2{
  color: var(--primary);
  margin-bottom: 10px;
}
 
.testimonial-slider-wrap {
  background: rgb(90 90 90 / 6%);
  border-radius: 16px;
  box-shadow: 0px 4px 15px 0px rgba(219, 64, 65, 0.32);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 10px;
  position: relative;
}
.testimonial-slider-wrap .item{
  padding: 10px;
}
.testimonial-slider-wrap .tns-nav {
  position: absolute;
  bottom: -50px;
  z-index: 2;
  gap: 10px;
  display: flex;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.testimonial-slider-wrap .tns-nav button {
  background: none;
  border: none;
  display: inline-block;
  margin: 2px;
  height: 15px;
  display: flex;
}

.testimonial-slider-wrap .tns-nav button:active,
.testimonial-slider-wrap .tns-nav button:focus {
  outline: none;
}

.testimonial-slider-wrap .tns-nav button:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: flex;
  background-color: #db4041a3;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
.testimonial-slider-wrap .tns-nav-active button:before {
  background-color: var(--primary);
}

#testimonial-nav span {
  cursor: pointer;
  text-align: center;
  padding: 10px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
.testimonial-slider-row{
  padding: 50px;
}
.testimonial-section .slider-button-section img{
  width: 30px;
}
.testimonial-section .slider-button-section span.next {
  position: absolute;
  right: -65px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.testimonial-section .slider-button-section span.prev {
  position: absolute;
  left: -65px;
  top: 0;
  bottom: 0;
  display: flex;
  margin: auto;
  align-items: center;
}
.testimonial-card-inner{
  padding: 20px;
}
/* .testimonial-section #tns2 > .tns-item {
  width: calc(9.09091%);
  padding-right: 0px;
} */
.testimonial-card-main {
  position: relative;
  height: 300px;
}
.testimonial-card-main .client-profile{
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
}
.testimonial-card-main .client-profile img {
  width: 250px;
  height: 250px;
  object-fit: cover;
}
.testimonial-card-main .client-message {
  background: var(--white);
  position: absolute;
  bottom: 0;
  width: 70%;
  right: 0;
  color: var(--secondary);
  padding: 25px;
  justify-content: space-between;
  align-items: flex-end;
}
.testimonial-card-main .client-message img{
  width: 20px;
}
.testimonial-card-main .client-message h4{
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
  display: grid;
  text-align: left;
  text-transform: uppercase;
}
.testimonial-card-main .client-message h4 span{
  font-size: 10px;
  font-weight: 500;
  text-transform: capitalize;
}
.like-testimonail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.like-testimonail h6{
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.client-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.client-message-content{
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.rate {
  /* height: 46px; */
  padding: 0 10px 5px;
  background: var(--secondary);
  position: absolute;
  /* margin-left: 40px; */
  width: 100%;
  display: flex;
}
.rate:not(:checked) > input {
  position:absolute;
  top:-9999px;
}
.rate:not(:checked) > label {
  float:right;
  width:1em;
  overflow:hidden;
  white-space:nowrap;
  cursor:pointer;
  font-size:20px;
  color:#ccc;
}
.rate:not(:checked) > label:before {
  content: '★ ';
}
/* .rate > input:checked ~ label {
  color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
} */

@media only screen and (max-width: 1200px){
  .client-details {
    display: grid;
    justify-content: flex-start;
    margin-bottom: 8px;
  }
  .like-testimonail{
    margin-top: 10px;
  }
  .testimonial-card-main .client-message img {
    width: 14px;
  }
  .like-testimonail h6{
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px){
  .client-details {
    display: flex;
    justify-content: space-between;
  }
  .testimonial-slider-row {
    padding: 15px;
  }
  .testimonial-card-inner {
    padding: 0px;
  }
  .testimonial-card-main .client-profile img, .testimonial-card-main .client-message{
    width: 100%;
  }
  .rate {
    top: 0;
    right: 0;
  }
  #testimonial-nav{
    display: none;
  }
  .testimonial-card-main {
    position: relative;
    height: 400px;
  }
}






/* ------------------- EVENTS  ----------------------- */
.event-section{
  background: var(--bg);
}
.events-section .title-section h2{
  color: var(--primary);
  margin-bottom: 10px;
}
.events-section .view-more{
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.events-section .view-more a{
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: 0.8s all ease;
  text-transform: uppercase;
  border-bottom: 1px solid var(--primary);
}
.events-section .view-more a:hover{
  margin-right: 10px;
}

.events-slider-wrap {
  padding: 10px;
  position: relative;
}
.events-slider-wrap .item{
  padding: 10px;
}
.events-slider-wrap .tns-nav {
  position: absolute;
  bottom: -50px;
  z-index: 2;
  left: 50%;
  display: flex;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.events-slider-wrap .tns-nav button {
  background: none;
  border: none;
  display: inline-block;
  margin: 2px;
  height: 15px;
  display: flex;
}

.events-slider-wrap .tns-nav button:active,
.events-slider-wrap .tns-nav button:focus {
  outline: none;
}

.events-slider-wrap .tns-nav button:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

#events-nav span {
  cursor: pointer;
  text-align: center;
  padding: 10px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
.events-slider-row{
  padding: 50px;
}
.events-section .slider-button-section img{
  width: 30px;
}
.events-section .slider-button-section span.next {
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.events-section .slider-button-section span.prev {
  position: absolute;
  left: -60px;
  top: 0;
  bottom: 0;
  display: flex;
  margin: auto;
  align-items: center;
}
.events-card-inner{
  padding: 20px;
}
.event-card-front{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.event-content-details{
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  width: 100%;
  transition: transform .3s ease-out,color .3s ease-out;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(360deg, #DB4041 0%, #DB4041 22.40%, #DB4041 31.25%, rgba(0, 0, 0, 0.00) 100%);
}
.events-content img{
  -webkit-transition: -webkit-transform .3s ease-in;
    transition: -webkit-transform .3s ease-in;
    transition: transform .3s ease-in;
    z-index: -1;
    transition: transform .3s ease-in, -webkit-transform .3s ease-in;
    height: 450px;
    object-fit: cover;
}
.events-content:hover img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  overflow: hidden;
}
.events-content {
  display: flex;
  justify-content: center;
}
/* .events-content{
  position:relative;
}
.events-content::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7));
} */

.event-card .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: auto;
}
.animated-link strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.9rem;
  -webkit-transition: color .3s ease-out,-webkit-transform .3s ease-out;
  transition: color .3s ease-out,-webkit-transform .3s ease-out;
  transition: transform .3s ease-out,color .3s ease-out;
  transition: transform .3s ease-out,color .3s ease-out,-webkit-transform .3s ease-out;
}

.animated-link {
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  font-family: var(--secondaryfont);
}

.event-card  .link-container .animated-link strong {
  color: var(--white);
}
.event-card .link-container .animated-link:hover strong {
  color: var(--primary);
}
.event-card  .animated-link strong {
  margin-right: 2rem;
}
.event-card  .animated-link:hover strong {
  -webkit-transform: translateX(1.5rem);
  transform: translateX(1.5rem);
}

.animated-link:hover strong {
  color: var(--primary);
}
.animated-link span {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.animated-link span small {
  right: 0;
}
.event-card .event-name{
  width: 100%;
}
.event-name h3{
  font-size: 16px;
  font-style: normal;
  font-family: var(--secondaryfont);
  color: var(--white);
  letter-spacing: 2px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.event-name p{
  color: var(--white);
  font-family: var(--secondaryfont);
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.event-card .animated-link span small {
  position: absolute;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid  var(--white);
  border-radius: 999px;
  -webkit-transition: background-color .3s ease-out,width .3s ease-out;
  transition: background-color .3s ease-out,width .3s ease-out;
  z-index: -1;
}
.event-card .animated-link:hover small {
  width: 100% !important;
  background-color: var(--white);
}
.event-card .animated-link span small i {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.animated-link span small i {
  right: 0;
}
.animated-link span small i svg path {
  -webkit-transition: stroke .3s ease-out;
  transition: stroke .3s ease-out;
}
.animated-link:hover small i {
  -webkit-transform: translateX(-0.5rem);
  transform: translateX(-0.5rem);
}
.event-card .animated-link:hover small i svg path {
  stroke: var(--primary);
}

.modernWay {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
          line-clamp: 2; 
  -webkit-box-orient: vertical;
}

.event-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  /* background: var(--primary); */
  padding: 5px 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--white);
  border-radius: 23px;
  background-color: rgba(0,0,0,.12);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  font-weight: 600;
}
.event-tag i{
  margin-right: 10px;
}

@media only screen and (max-width: 600px){
  #events-nav{
    display: none;
  }
}

.section-map iframe{
  margin: 60px 0;
  border-radius: 20px;
}


footer{
  background: url("../img/footer.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  text-align: center;
  margin-top: 60px;
}
.footermain{
  padding: 50px 0px;
}
footer ul{
  display: inline-flex;
  padding: 0;
}
footer li{
  list-style: none;
  transition: transform .3s ease-out;
  margin: 0 10px;
}
footer h5{
  text-align: center;
  font-family: var(--primaryfont);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
footer h5:before{
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 25%;
  border-bottom: 3px solid var(--white);
}
footer .copyright{
  padding-bottom: 1rem;
}
footer .copyright h6{
  text-align: center;
  font-family: var(--secondaryfont);
  font-size: 14px;
  margin-bottom: 0;
  letter-spacing: 1px;
  font-weight: 400;
}
footer .copyright h6 a{
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
footer li{
  width:50px;
  height:50px;
  text-align:center;
  z-index:100;
  border-radius:50px;
  border: 2px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer li:hover{
  background: var(--white);
}
footer li i{
  color: var(--white);
}
footer li:hover i{
  color: var(--primary);
}


/* ABOUT PAGE */

.about-content{
  padding: 100px 0;
}
.about-content-main-title h1{
  font-family: var(--primaryfont);
  font-size: 34px;
  color: var(--secondary);
  font-weight: 700;
  line-height: 55px;
  margin-bottom: 30px;
}
.about-content-left{
  display: grid;
  align-content: space-between;
}
.about-content-detail h6{
  color: var(--secondary);
  font-family: var(--primaryfont);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.about-content-detail p{
  color: var(--secondary);
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; 
}
.years {
  display: flex;
  align-items: flex-end;
}
.years h6{
  font-size: 30px;
  font-weight: 800;
  color: #000;
  margin-left: 10px;
}
.about-content-main-title h6 {
  text-align: justify;
  font-family: var(--secondaryfont);
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: var(--primary);
}
.about-content-detail .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  margin-top: auto;
}
.animated-link strong {
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.9rem;
  -webkit-transition: color .3s ease-out,-webkit-transform .3s ease-out;
  transition: color .3s ease-out,-webkit-transform .3s ease-out;
  transition: transform .3s ease-out,color .3s ease-out;
  transition: transform .3s ease-out,color .3s ease-out,-webkit-transform .3s ease-out;
}

.animated-link {
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  font-family: var(--secondary);
}

.about-content-detail  .link-container .animated-link strong {
  color: var(--primary);
}
.about-content-detail .link-container .animated-link:hover strong {
  color: var(--white);
}
.about-content-detail  .animated-link strong {
  margin-right: 3rem;
}
.about-content-detail  .animated-link:hover strong {
  -webkit-transform: translateX(2.5rem);
  transform: translateX(2.5rem);
}

.animated-link:hover strong {
  color: var(--white);
}
.animated-link span {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.animated-link span small {
  right: 0;
}

.animated-link span small {
  position: absolute;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid  var(--primary);
  border-radius: 999px;
  -webkit-transition: background-color .3s ease-out,width .3s ease-out;
  transition: background-color .3s ease-out,width .3s ease-out;
  z-index: -1;
}
.animated-link:hover small {
  width: 100% !important;
  background-color: var(--primary);
}
.animated-link span small i {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.animated-link span small i {
  right: 0;
}
.animated-link span small i svg path {
  -webkit-transition: stroke .3s ease-out;
  transition: stroke .3s ease-out;
}
.animated-link:hover small i {
  -webkit-transform: translateX(-0.5rem);
  transform: translateX(-0.5rem);
}
.animated-link:hover small i svg path {
  stroke: #fff;
}




/* TIMELINE */

.timeline-section{
  padding-bottom: 60px;
}
.timeline-section .title-header{
  color: var(--primary);
}

/* The actual timeline (the vertical ruler) */
.main-timeline {
  position: relative;
}

.timeline-section .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  z-index: 1;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0px solid #fff;
  border-radius: 20px;
}

.timeline-icon{
  margin-right: 20px;
}

h6.date {
  color: var(--primary);
  font-family: var(--primaryfont);
  font-size: 15px;
  font-weight: 700;
}
.timeline-details h2.title-header {
  color: var(--secondary);
  font-family: var(--primaryfont);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.timeline-details p{
  color: var(--secondary);
  font-family: var(--secondaryfont);
  font-size: 15px;
  font-weight: 300;
  text-transform: capitalize;
}
/* The actual timeline (the vertical ruler) */
.main-timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #6A6A6A;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* Container around content */
.timeline {
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline::after {
  content: url("../img/round-u.svg");
  position: absolute;
  width: 35px;
  height: 35px;
  right: -12px;
  /* background-color: var(--white); */
  /* border: 5px solid var(--primary); */
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  padding: 0px 40px 20px 0px;
  left: 0;
}

/* Place the container to the right */
.right {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 31px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -22px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 990px) {
  .timeline-section .card{
    margin-top: 50px;
  }
  .main-timeline {
    position: relative;
    padding: 20px 0;
  }
  /* Full-width containers */
  .timeline {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline::before {
    left: 0;
    right: 0;
    display: none;
    margin: auto;
    top: -50px;
    transform: rotate(90deg);
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: 0;
    right: 0;
    margin: auto;
    top: -30px;
    display: flex;
    justify-content: center;
  }

  .left::before {
    left: 0;
    right: 0;
    margin: auto;
    top: -30px;
  }

  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}


.team-section .title-header{
  color: var(--primary);
}
.team-section{
  padding-bottom: 60px;
}
.team-slider-wrap {
  padding: 10px;
  position: relative;
}
.team-slider-wrap .item{
  padding: 10px;
}
.team-slider-wrap .tns-nav {
  position: absolute;
  bottom: -50px;
  z-index: 2;
  left: 50%;
  display: flex;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.team-slider-wrap .tns-nav button {
  background: none;
  border: none;
  display: inline-block;
  margin: 2px;
  height: 15px;
  display: flex;
}

.team-slider-wrap .tns-nav button:active,
.team-slider-wrap .tns-nav button:focus {
  outline: none;
}

.team-slider-wrap .tns-nav button:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

#team-nav span {
  cursor: pointer;
  text-align: center;
  padding: 10px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.team-card {
  display: flex;
  justify-content: center;
  position: relative;
}
.team-details img {
  border-radius: 30px;
  opacity: 0.6;
  position: relative;
  margin-bottom: 40px;
  -moz-transition: all 0.4s ease-out; 
  -o-transition: all 0.4s ease-out;  
  -webkit-transition: all 0.4s ease-out;  
  -ms-transition: all 0.4s ease-out; 
  transition: all 0.4s ease-out;
}
.team-card:hover img{
  opacity: 1; 
  margin-bottom: 20px;
  -moz-transition: all 0.4s ease-out; 
  -o-transition: all 0.4s ease-out;  
  -webkit-transition: all 0.4s ease-out;  
  -ms-transition: all 0.4s ease-out; 
  transition: all 0.4s ease-out; 
  box-shadow: 0px 4px 20px 0px rgba(219, 64, 65, 0.47); 
}
.team-personal-details {
  background: var(--primary);
  margin: 0 30px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -moz-transition: all 0.4s ease-out; 
  -o-transition: all 0.4s ease-out;  
  -webkit-transition: all 0.4s ease-out;  
  -ms-transition: all 0.4s ease-out; 
  transition: all 0.4s ease-out;  
  box-shadow: 0px 4px 20px 0px rgba(219, 64, 65, 0.47);
  width: 200px;
}
.team-card:hover .team-personal-details {
  background: var(--white);
  -moz-transition: all 0.4s ease-out; 
  -o-transition: all 0.4s ease-out;  
  -webkit-transition: all 0.4s ease-out;  
  -ms-transition: all 0.4s ease-out; 
  transition: all 0.4s ease-out;  
}
.team-section h3.Name{
  font-family: var(--primaryfont);
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  -moz-transition: all 0.4s ease-out; 
  -o-transition: all 0.4s ease-out;  
  -webkit-transition: all 0.4s ease-out;  
  -ms-transition: all 0.4s ease-out; 
  transition: all 0.4s ease-out; 
}
.team-card:hover h3.Name{
  color: var(--primary);
}
.team-card:hover svg path{
  stroke: var(--primary);
  fill: var(--primary);
  -moz-transition: all 0.4s ease-out; 
  -o-transition: all 0.4s ease-out;  
  -webkit-transition: all 0.4s ease-out;  
  -ms-transition: all 0.4s ease-out; 
  transition: all 0.4s ease-out; 
}

.team-section h6.designation{
  font-family: var(--primaryfont);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.team-section  .slider-button-section span.next {
  position: absolute;
  right: -35px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.team-section .slider-button-section span.prev {
  position: absolute;
  left: -35px;
  top: 0;
  bottom: 0;
  display: flex;
  margin: auto;
  align-items: center;
}


/* ----------------- EVENT ----------------- */

.event-section{
  margin-bottom: 60px;
}
.event-image-slider-wrap {
  margin-bottom: 60px;
}
.event-section h3{
  border-bottom: 2px solid var(--primary);
  /* padding-bottom: 10px; */
  font-family: var(--primaryfont);
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
}
.event-section ul{
  list-style: none;
  padding: 0;
  display: flex;
}
.event-section ul li{
  display: flex;
}
.event-section address{
  font-family: var(--secondaryfont);
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary);
  margin-left: 6px;
  margin-right: 20px;
}
.event-section p {
  text-align: justify;
  font-family: var(--secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24spx;
  color: var(--secondary);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}

/* VIDEO Slider */
.video-slider-wrap .item{
  padding: 10px;
}
.video-slider-wrap .tns-nav {
  position: absolute;
  bottom: -50px;
  z-index: 2;
  left: 50%;
  display: flex;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.video-slider-wrap .tns-nav button {
  background: none;
  border: none;
  display: inline-block;
  margin: 2px;
  height: 15px;
  display: flex;
}

.video-slider-wrap .tns-nav button:active,
.video-slider-wrap .tns-nav button:focus {
  outline: none;
}

.video-slider-wrap .tns-nav button:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
.video-slider-wrap{
  position: relative;
}
.video-slider-wrap  .slider-button-section span.next {
  position: absolute;
  right: -45px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.video-slider-wrap .slider-button-section span.prev {
  position: absolute;
  left: -45px;
  top: 0;
  bottom: 0;
  display: flex;
  margin: auto;
  align-items: center;
}
h6.video-title, h6.event-image-title {
  border-left: 4px solid var(--primary);
  padding: 0 5px;
  font-family: var(--primaryfont);
  font-size: 18px;
  font-weight: 500;   
  margin-top: 10px;
}
.video-details iframe{
  border-radius: 30px;
}
.event-image-details img {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  object-fit: cover;
}
.event-image-slider-wrap .item{
  padding: 10px;
}
.event-image-slider-wrap .tns-nav {
  position: absolute;
  bottom: -50px;
  z-index: 2;
  left: 50%;
  display: flex;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.event-image-slider-wrap .tns-nav button {
  background: none;
  border: none;
  display: inline-block;
  margin: 2px;
  height: 15px;
  display: flex;
}

.event-image-slider-wrap .tns-nav button:active,
.event-image-slider-wrap .tns-nav button:focus {
  outline: none;
}

.event-image-slider-wrap .tns-nav button:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}
.event-image-slider-wrap{
  position: relative;
}
.event-image-slider-wrap  .slider-button-section span.next {
  position: absolute;
  right: -45px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.event-image-slider-wrap .slider-button-section span.prev {
  position: absolute;
  left: -45px;
  top: 0;
  bottom: 0;
  display: flex;
  margin: auto;
  align-items: center;
}



@media only screen and (max-width: 600px) {
  .video-slider-wrap  .slider-button-section span.prev,
  .video-slider-wrap  .slider-button-section span.next,
  .event-image-slider-wrap .slider-button-section span.prev,
  .event-image-slider-wrap .slider-button-section span.next{
    display: none;
  }
}


/* ----------------- CAREER ------------- */

.career .row{
  justify-content: center;
}
.career img{
  width: 350px;
}
p.career-small-des{
  color: var(--secondary);
  text-align: center;
  font-family: var(--secondaryfont);
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  margin: 60px 0;
}
.career-form {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.career-form form{
  width: 50%;
  background: var(--white);
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0px 4px 18px 0px rgba(236, 52, 60, 0.34);
}
.career-form .form-title {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg);
  margin-bottom: 40px;
}
.career-form .form-title h6{
  font-family: var(--primaryfont);
  font-size: 29px;
  font-weight: 700;
  color: var(--secondary);
}
.career-form .form-title p{
  color: #797979;
  font-family: var(--secondaryfont);
  font-size: 16px;
  font-weight: 400;
  line-height: 31px;
}
.career-form label.form-label {
  color: #959595;
  font-family: var(--secondaryfont);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.career-form label.form-label span {
  color: var(--primary);
}
.career-form .form-control{
  border-radius: 6px;
}
.career-form ::placeholder { 
  color: #959595;
  opacity: 1; 
}
.career-form input::file-selector-button {
  font-weight: bold;
  color: #747373;
  background: #D9D9D9;
  padding: 6px 20px ;
  border: 0px;
  border-radius: 3px;
}
.career-form button {
  width: 100%;
  border-radius: 20px;
  background: var(--primary);
  font-family: var(--secondaryfont);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-top: 30px;
}

.career-form button:hover{
  color: var(--white);
  box-shadow: 0px 4px 18px 0px rgba(236, 52, 60, 0.34);
}
.career-form .form-control:focus {
  color: var(--secondary);
  border-color: var(--primary);
  outline: 0;
  box-shadow: none;
  box-shadow: 0px 4px 18px 0px rgba(236, 52, 61, 0.082);
}

@media only screen and (max-width: 990px){
  .career-form form{
    width: 100%;
    padding: 40px 10px;
  }
  .career-form .form-title h6 {
    font-size: 24px;
  }
  .career-form .form-title p {
    font-size: 13px;
    line-height: 21px;
  }
  .career-form .form-title {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bg);
    margin-bottom: 20px;
  }
  p.career-small-des {
    font-size: 16px;
    line-height: 26px;
    margin: 35px 0;
  }
  
}


/* ------------------ CONTACT ---------------- */

.contact-details img{
  margin-bottom: 25px ;
}
.contact-details h6{
  color: var(--primary);
  font-family: var(--primaryfont);
  font-size: 14px;
  font-weight: 700;
}
.contact-details h4{
  color: var(--secondary);
  font-family: var(--primaryfont);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.contact-form-section{
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0px 4px 18px 0px rgba(236, 52, 60, 0.34);
  margin-top: 60px;
}
.contact-form-section .row{
  padding: 60px;
}
.contact-form-section .form-title h6 {
  font-size: 29px;
  font-family: var(--primaryfont);
  font-weight: 700;
}
.form-title{
  margin-bottom: 30px;
}

.contact-form-section label.form-label {
  color: #959595;
  font-family: var(--secondaryfont);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.contact-form-section label.form-label span {
  color: var(--primary);
}
.contact-form-section .form-control{
  border-radius: 6px;
}
.contact-form-section::placeholder { 
  color: #959595;
  opacity: 1; 
}
.contact-form-section button{
  width: 100%;
  border-radius: 20px;
  background: var(--primary);
  font-family: var(--secondaryfont);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-top: 30px;
}

.contact-form-section button:hover{
  color: var(--white);
  box-shadow: 0px 4px 18px 0px rgba(236, 52, 60, 0.34);
}
.contact-form-section .form-control:focus,
.contact-form-section textarea:focus {
  color: var(--secondary);
  border-color: var(--primary);
  outline: 0;
  box-shadow: none;
  box-shadow: 0px 4px 18px 0px rgba(236, 52, 61, 0.082);
}
.contact-form-section textarea {
  padding: 10px;
  border-radius: 10px;
  border-color: #ced4da;
}
.contact-details {
  background: var(--white);
  padding: 30px;
  text-align: center;
  border-radius: 30px;
  min-height: 300px;
  border: 2px solid var(--bg);
  box-shadow: 0px 4px 18px 0px rgba(236, 52, 60, 0.34);
}
.contact-details:hover{
  box-shadow: 0px 4px 18px 0px rgba(236, 52, 61, 0);
  border-color: var(--primary);
}


/* WHATSAPP FLOAT */
.float{
	position:fixed;
	width:50px;
	height:50px;
	right:40px;
	text-align:center;
    font-size:30px;
	box-shadow: 0px 4px 18px 0px rgba(236, 52, 60, 0.34);
    z-index:100;
    border-radius:50px;
}
.float.whatsapp{
	bottom:60px;
	background-color:#25d366;
	color: var(--white);
}
.float.phone{
	bottom:130px;
	background-color:var(--primary);
	color:var(--white);
    border: 2px solid var(--bg);
}

.my-float{
	margin-top:12px;
}




.card-image-scale {
  max-width: 100%;
  width: 35rem;
  height: 54rem;
  background-color: #efefef;
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #24b4ba), color-stop(60%, transparent));
  background: linear-gradient(to top, #24b4ba 30%, transparent 60%);
  border-radius: 20px;
}
.card-image-scale .tag-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card-image-scale .tag-container .tag {
  height: 3rem;
  padding: 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #fff;
  font-family: "Bukra Bold";
  border-radius: 23px;
  background-color: rgba(0,0,0,.12);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}
.card-image-scale .card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 35rem;
  height: 40.5rem;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: -1;
  -webkit-transition: -webkit-transform .3s ease-in;
  transition: -webkit-transform .3s ease-in;
  transition: transform .3s ease-in;
  transition: transform .3s ease-in, -webkit-transform .3s ease-in;
}

.btn-check:focus+.btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 109, 253, 0);
}


/* --------------- RESPONSIVE --------------- */

@media only screen and (max-width: 990px){
  .category-section{
    padding: 1px 0;
    padding-bottom: 50px;
  }
  .title-section h2{
    font-size: 26px;
  }
  .title-section p{
    font-size: 14px;
    margin-bottom: 0px;
  }
  .testimonial-section{
    padding: 50px 0px;
    padding-bottom: 100px;
  }
  .footermain {
    padding: 20px 0px;
    padding-top: 40px;
  }
  footer li {
    width: 35px;
    height: 35px;
  }
  footer h5 {
    font-size: 15px;
  }
  footer li .footer-icon {
    font-size: 15px;
  }
  .float {
    position: fixed;
    width: 40px;
    height: 40px;
    left: 20px;
    font-size: 20px;
  }
  .my-float {
    margin-top: 10px;
  }
  .float.phone {
    bottom: 115px;
  }
  #category-nav img {
    width: 55%;
  }
  .breadcrumb-section .breadcrumb{
    justify-content: center;
  }
  .breadcrumb-section h2 {
    text-align: center;
    font-size: 22px;
  }
  .about-content {
    padding: 10px 0;
  }
  .about-content-main-title h1 {
    font-size: 32px;
    line-height: 41px;
  }
  .years {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 60px;
  }
  .timeline .card-body {
    display: grid !important;
    justify-items: center;
  }
  .timeline-details {
    text-align: center;
    margin-top: 20px;
  }
  .timeline-details h2.title-header {
    font-size: 18px;
  }
  .timeline-details p {
    color: var(--secondary);
    font-family: var(--secondaryfont);
    font-size: 13px;
  }
  .timeline-section {
    padding-bottom: 0px;
  }
  div#team-nav {
    display: none;
  }
  .contact-form-section .row {
    padding: 30px 15px;
  }
  .contact-form-section{
    border-radius: 0px;
  }
  .product-card-back{
    width: 300px;
  }
  footer{
    margin-top: 25px;
  }

}
@media only screen and (max-width: 750px){
  .events {
    display: flex;
    justify-content: center;
  }
  .event-card {
    width: 300px;
    display: flex;
    justify-content: center;
  }
  #events-nav {
    display: none;
  }
}
@media only screen and (max-width: 600px){
  .title-section {
    text-align: center;
  }
  .contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
}


.flip-card {
  max-width: 100%;
  width: 350px;
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.flip-card .card-front {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.flip-card .card-front .front-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
}
.flip-card .card-back {
  position: absolute;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-box-shadow: 0 2rem 3rem rgba(0,0,0,.05);
  box-shadow: 0 2rem 3rem rgba(0,0,0,.05);
  background-color: #fff;
}
.flip-card .card-back .card-back-content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flip-card:hover .card-front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.flip-card:hover .card-back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.product-content-details {
  width: 100%;
}


.product-card-front, .product-card-back {
  position: absolute;
  width: 100%;
  height: 400px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.product-card-front img{
  border-radius: 30px;
}
.card-back  {
  background-color: var(--white);
  color: var(--secondary);
  border-radius: 30px;
  transform: rotateY(180deg);
  padding: 25px;
  text-align: left;
}
.card-back img{
  margin: 20px 0px;
  width: 60px;
}
.card-back h3{
  font-family: var(--primaryfont);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.54px;
  text-transform: capitalize;
}
.card-back p {
  font-family: var(--secondaryfont);
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
  letter-spacing: 0.42px;
  text-transform: capitalize;
  overflow: hidden;
  display: -webkit-box;


  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.card-back .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: auto;
}
.card-back .animated-link strong {
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.9rem;
  -webkit-transition: color .3s ease-out,-webkit-transform .3s ease-out;
  transition: color .3s ease-out,-webkit-transform .3s ease-out;
  transition: transform .3s ease-out,color .3s ease-out;
  transition: transform .3s ease-out,color .3s ease-out,-webkit-transform .3s ease-out;
}

.card-back .animated-link {
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  font-family: var(--secondary);
}

.card-back  .link-container .animated-link strong {
  color: var(--primary);
}
.card-back .link-container .animated-link:hover strong {
  color: var(--white);
}
.card-back  .animated-link strong {
  margin-right: 3rem;
}
.card-back  .animated-link:hover strong {
  -webkit-transform: translateX(2.5rem);
  transform: translateX(2.5rem);
}

.card-back .animated-link:hover strong {
  color: var(--white);
}
.card-back .animated-link span {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card-back .animated-link span small {
  right: 0;
}

.card-back .animated-link span small {
  position: absolute;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid  var(--primary);
  border-radius: 999px;
  -webkit-transition: background-color .3s ease-out,width .3s ease-out;
  transition: background-color .3s ease-out,width .3s ease-out;
  z-index: -1;
}
.card-back .animated-link:hover small {
  width: 100% !important;
  background-color: var(--primary);
}
.card-back .animated-link span small i {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.card-back .animated-link span small i {
  right: 0;
}
.card-back .animated-link span small i svg path {
  -webkit-transition: stroke .3s ease-out;
  transition: stroke .3s ease-out;
}
.card-back .animated-link:hover small i {
  -webkit-transform: translateX(-0.5rem);
  transform: translateX(-0.5rem);
}
.card-back .animated-link:hover small i svg path {
  stroke: #fff;
}


.tns-slide-active{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomIn {
  0% {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3)
  }

  50% {
      opacity: 1
  }
}

@keyframes zoomIn {
  0% {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3)
  }

  50% {
      opacity: 1
  }
}

.product-list{
  position: relative;
  transition: height 2s;
}
.product-list-card:hover {
  box-shadow: rgb(218 61 63 / 32%) 0px 7px 29px 0px;
}
.product-list-offer p {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  background: var(--secondary);
  padding: 2px 10px;
  border-radius: 30px;
  color: var(--white);
  font-weight: 600;
}
.product-list-details {
  position: absolute;
  bottom: 10px;
  background: var(--white);
  width: 95%;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 30px;
  padding: 10px;
  text-align: center;
  overflow: hidden;
}
.product-list-details a{
  text-decoration: none;
}

.product-list-card{
  height: 450px;
  border-radius: 30px;
}
.product-list-details h6 a{
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
}
.product-list-details .price h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}
.product-list-ecommerce {
  background: var(--primary);
  border-radius: 20px;
  transition: height 1s;
  height: 0px;
  overflow: hidden;
  display: flex;
}
.product-list-ecommerce ul{
  list-style: none;
  width: 100%;
}
.product-list:hover .product-list-ecommerce{
  height: 45px;
  /* padding: 10px; */
}
.product-list-card a.cart-w {
  position: absolute;
  left: -20px;
  transition: 1s;
}
.product-list-card a.wishlist-w {
  position: absolute;
  bottom: -50px;
  transition: 1s;
}
.product-list-card a.quick-view-w {
  position: absolute;
  right: -20px;
  transition: 1s;
}
.product-list-card:hover a.cart-w {
  left: 35px;
  bottom: 20px;
}
.product-list-card:hover a.wishlist-w{
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
}
.product-list-card:hover a.quick-view-w {
  right: 35px;
  bottom: 20px;
}
.contact-details {
    display: flex;
    flex-direction: column;
}
@media (min-width: 1536px){
    .container {
        max-width: 1400px !important;
    }
}
