/*--------------------------------------------------------------
# Variable
--------------------------------------------------------------*/
:root {
  --primary: rgb(0, 153, 112);
  --secondary: #00cc96;

  --secondary75: rgba(0, 204, 150, 0.75);
  --primary20: rgba(0, 153, 112, 0.2);

  --bg-lightdark: #f9f8f9;
  --bg-dark: #444444;
  --bg-dark-50: rgba(68, 68, 68, 0.5);
  --bg-dark-20: rgba(68, 68, 68, 0.2);
}

/*--------------------------------------------------------------
# Hamburger
--------------------------------------------------------------*/
.nav-hamburger {
  position: absolute;
  top: 6px;
  right: 13%;
  background: rgba(0, 0, 0, 0.5);
  border: 0.3px solid var(--primary);
  padding: 7px 5px 3px 5px;
  display: block;
}

.nav-hamburger ul {
  list-style: none;
  margin: 0;
  padding: 0 15px 0 15px;
}

.nav-hamburger li {
  display: inline-block;
  margin-left: 15px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}

.nav-hamburger a {
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.menu-item {
  position: relative;
}

.menu-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 26px;
  left: -20px;
  background: rgba(0, 0, 0, 0.5);
  border-left: 0.3px solid var(--primary);
  border-right: 0.3px solid var(--primary);
  border-bottom: 0.3px solid var(--primary);
  border-radius: 0;
  padding: 6px 0 6px 0;
}

.menu-item:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  color: #fff;
  padding: 4px 7px 4px 7px;
}

.dropdown-item:hover {
  background: transparent;
  color: var(--primary);
}

.header-scrolled .nav-hamburger {
  background: rgba(255, 255, 255, 1);
}

.header-scrolled .menu-item .dropdown-menu {
  background: rgba(255, 255, 255, 1);
}

.header-scrolled .nav-hamburger a {
  font-weight: 500;
  color: #444444;
}

.header-scrolled .nav-hamburger a:hover {
  color: var(--primary);
}

.nav-hamburger li:first-child {
  margin-left: 0;
}

.btn-hamburger {
  position: fixed;
  top: 26px;
  right: 10%;
  width: 50px;
  cursor: pointer;
  z-index: 100;
  transition: opacity .25s ease;
  background-color: var(--primary);
  padding: 20px;
}

.btn-hamburger span {
  background: #fff;
  border: none;
  height: 2.5px;
  width: 50%;
  position: absolute;
  top: 11px;
  left: 12px;
  transition: all .35s ease;
  cursor: pointer;
}

.btn-hamburger .nav-middle {
  top: 19px;
}

.btn-hamburger .nav-bottom {
  top: 27px;
}

.btn-hamburger.active .nav-top {
  top: 13px;
  transform: translateY(5px) translateX(0) rotate(45deg);
  background: #fff;
}

.btn-hamburger.active .nav-middle {
  opacity: 0;
  background: #fff;
}

.btn-hamburger.active .nav-bottom {
  top: 33px;
  transform: translateY(-15px) translateX(0) rotate(-45deg);
  background: #fff;
}

.header-scrolled .btn-hamburger {
  transition: all 0.5s;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 10%;
  z-index: 996;
  background: var(--primary);
  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: #00c28e;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  top: 20px;
}

#header.header-scrolled {
  top: 5;
}

#header.header-scrolled .logo h1 a {
  transition: 0.3s;
}

#header.header-scrolled .logo {
  background: rgba(0, 0, 0, 0.2);
  padding: 5px 10px 5px 5px;
  clip-path: polygon(7% 0, 100% 0, 100% 72%, 93% 100%, 0 100%, 0 40%);
}

.header-scrolled .navbar a:hover,
.header-scrolled .navbar .active,
.header-scrolled .navbar .active:focus,
.header-scrolled .navbar li:hover>a {
  color: var(--primary);
}

.header-scrolled .navbar a {
  color: #36343a;
}

#header .logo {
  overflow: hidden;
  padding: 5px 5px 2px 5px;
}

#header .logo h1 {
  font-size: 35px;
  padding: 0;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  transition: 0.3s;
  text-decoration: none;
}

#header .logo h1 a {
  color: #fff;
}

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

#header .logo img {
  padding: 0;
  max-height: 60px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }

  #header .logo {
    padding-left: 5px;
    margin-top: 15px;
    padding: 5px 5px 5px 5px;
  }

  #header .logo h1 {
    font-size: 24px;
    margin-bottom: 0;
  }

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  display: none;
}

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

.navbar ul.hide {
  opacity: 0;
  visibility: hidden;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #fff;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.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);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--primary);
  padding: 10px 25px;
  margin-left: 30px;
  margin-right: 15px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #00b383;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
  color: #36343a;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: 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: -100%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #fff;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
  display: none;
  background: #00b383;
  font-size: 2.4rem;
  padding: 0.2rem;
  margin-top: 15px;
  height: 2.4rem;
  padding-top: 1.2rem;
}

#header.header-scrolled .mobile-nav-toggle,
#header.header-scrolled {
  transition: 0.3s;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar {
    display: block;
  }

  .nav-desktop {
    display: none;
  }
}

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

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

.navbar-mobile .toggle-secondary {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.navbar-mobile ul {
  opacity: 1 !important;
  visibility: unset !important;
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 50%;
  left: 20%;
  padding: 10px 0;
  background-color: #fff;
  border: 0.3px solid #00b383;
  overflow-y: auto;
  transition: 0.3s;
}

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

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary);
}

.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: #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;
}

.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: var(--primary);
}

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

/*--------------------------------------------------------------
# Form Get in Touch
--------------------------------------------------------------*/

.form-overlay {
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  opacity: 0;
  background: #000;
  transition: background 1s, opacity 0.4s, width 0s 0.4s;
}

.show-form-overlay .form-overlay {
  width: 100%;
  opacity: 0.7;
  z-index: 999;
  transition: background 1s, opacity 0.4s, width 0s;
}

.show-form-overlay.form-submitted .form-overlay {
  background: var(--bg-dark);
  transition: background 0.6s;
}

#form-container {
  cursor: pointer;
  color: #fff;
  z-index: 1000;
  position: fixed;
  margin: 0 auto;
  right: 15px;
  bottom: 3%;
  background-color: var(--primary);
  overflow: hidden;
  padding-right: 0.5rem;
  width: 40px;
  height: 40px;
  text-align: right;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.2s 0.45s, height 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}

#form-container.expand {
  cursor: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.17);
  width: 40%;
  height: auto;
  padding: 0;
  transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.3s ease 0.25s;
  background-color: #fff;
}

#form-container .icon {
  left: 10px;
}

#form-close {
  cursor: pointer;
  padding: 0px 10px 0px 10px;
  background: var(--primary);
}

.icon::before {
  cursor: pointer;
  font-size: 25px;
  line-height: 40px;
  left: 10px;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon:hover::before {
  -webkit-animation: wiggle 0.3s linear 1;
  animation: wiggle 0.3s linear 1;
}

.spin-animation-for-icon {
  -webkit-animation: wiggle 0.3s linear 1;
  animation: wiggle 0.3s linear 1;
}

.fa-envelope::before {
  display: block;
  text-align: center;
}

.fa-close::before {
  display: none;
}

.expand.fa-envelope::before {
  display: none;
  text-align: left;
}

.expand.fa-close::before {
  display: block;
  -webkit-animation: none;
  animation: none;
}

#form-content {
  font-family: "Poppins", sans-serif;
  transform: translateY(150%);
  width: 100%;
  opacity: 0;
  text-align: left;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s 0.2s;
}

#form-content.expand {
  transform: translateY(0px);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0s;
}

#form-content form {
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 0 20px 20px 20px;
  margin-bottom: 10px;
  box-sizing: border-box;
  text-align: left;
}

#form-head {
  font-size: 100%;
  padding: 0;
  margin: 0 20px;
  color: #fff;
  text-align: center;
  transition: all 0.8s 0.6s;
}

#form-head h1,
#form-head p {
  padding: 0;
  margin-bottom: 20px;
}

#form-head .pre {
  display: block;
  color: #444444;
}

#form-head .post {
  display: none;
}

#form-head a {
  text-align: center;
  color: #444;
  font-weight: 300;
  color: var(--bg-dark);
  font-size: 1.7rem;
  transition: 0.5s;
}

#form-head a:hover {
  color: var(--primary);
}


.form-submitted#form-head {
  transform: translateY(250%);
}

.form-submitted#form-head .pre {
  display: none;
}

.form-submitted#form-head .post {
  display: block;
  color: #444;
}

#form-container .input {
  background-color: transparent;
  border: none;
  width: 100%;
  height: 60px;
  border-bottom: 2px solid #00b16a;
  margin: 0;
  position: relative;
  margin-bottom: 20px;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* Safari, Chrome and Opera */
#form-container ::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 100%;
}

/* Firefox 19+ */
#form-container ::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 100%;
}

/* IE 10+, Edge */
#form-container :-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 100%;
}

/* Default */
#form-container :-moz-placeholder-shown {
  color: rgba(0, 0, 0, 0.2);
  font-size: 100%;
}

#form-container :placeholder-shown {
  color: rgba(0, 0, 0, 0.2);
  font-size: 100%;
}

#form-container .input.message {
  padding: 10px;
  height: 21vh;
}

#form-container .input.submit {
  background-color: var(--primary);
  color: #fff;
  font-size: 120%;
  height: 40px;
  box-shadow: 0 5px rgba(0, 0, 0, 0.5);
  transition: all 0.1s, transform 0s 0.6s;
}

#form-container .input.submit:active {
  margin-top: 15px;
  box-shadow: 0 0 rgba(0, 0, 0, 0.5);
}

#form-container .input.form-error {
  -webkit-animation: error 0.8s ease;
  animation: error 0.8s ease;
  background: var(--bg-dark-20);
}

#form-container select option {
  background: #f72f4e;
  color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
}

#form-container select option:disabled {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  font-size: 100%;
}

#form-container .input {
  transition: transform 0s 1s;
}

.form-submitted .input {
  transform: translateX(150%);
  opacity: 0;
  transition: all 0.5s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.form-submitted .input:nth-child(1) {
  transition-delay: 0.1s;
}

.form-submitted .input:nth-child(2) {
  transition-delay: 0.2s;
}

.form-submitted .input:nth-child(3) {
  transition-delay: 0.3s;
}

.form-submitted .input:nth-child(4) {
  transition-delay: 0.4s;
}

.form-submitted .input:nth-child(5) {
  transition-delay: 0.5s;
}

#form-container input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

@media (max-width: 600px) {
  #form-container.expand {
    height: auto;
    width: 95%;
    max-width: 100%;
    overflow: initial;
    overflow-x: hidden;
    bottom: 0;
  }

  #form-container h1 {
    font-size: 300%;
  }

  #form-container .icon:hover::before {
    -webkit-animation: none;
    animation: none;
  }

}

@-webkit-keyframes error {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-6px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(6px);
  }
}

@keyframes error {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-6px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(6px);
  }
}

@-webkit-keyframes wiggle {

  0%,
  100% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(15deg);
  }
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(15deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#intro {
  display: table;
  width: 100%;
  height: 100vh;
  padding: 0%;
  background: #000;
}

#intro video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-background img {
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-content {
  text-align: center;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #00c28e;
  border: 0.3px solid #fff;
}

#intro .btn-get-started:hover {
  background: rgba(0, 0, 0, 0.5);
  border: 0.3px solid #00c28e;
  color: #00c28e;
}


/*--------------------------------------------------------------
# product hero
--------------------------------------------------------------*/

#product-main {
  display: table;
  width: 100%;
  min-height: 50vh;
  height: 50vh;
  padding: 0%;
  background-size: cover;
  background-position: center center;
}

#product-main .carousel-content {
  text-align: left;
  height: 50vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.7) 58%, rgba(0, 0, 0, 0.3) 100%);
}

#product-main h2 {
  width: 75%;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 10px auto;
}

@media screen and (max-width: 992px) {
  #product-main .carousel-content h2 {
    font-size: 24px;
  }

  #product-main .carousel-content p {
    font-size: 12px;
  }
}

#product-main p {
  width: 75%;
  margin: 0 auto 30px auto;
  color: #fff;
}

/*--------------------------------------------------------------
# project
--------------------------------------------------------------*/
.product-list {
  display: block;
  min-height: auto;
  padding: 0 0 3rem 0;

}

.product-list .portfolio-item .project-list {
  box-shadow: none;
  border: 0px;
  margin-bottom: 2rem;

  .card-body {
    padding: 1rem 1rem;
  }

  .card-img-top {
    max-width: 20%;
  }
}

.product-list .portfolio-item .project-list:hover {
  color: var(--primary);
}

.product-list .project-content {
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
  border: 0px;
  font-size: 16px;
  line-height: 1.6em;
  margin: 10px;
  width: 310px;
  width: 250px;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 95%;
  border-radius: 0;
  align-items: center;
}

.product-list .project-content * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.product-list .project-content img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
}

.product-list .card-title {
  font-weight: 700;
}

.product-list .project-content figcaption {
  padding: 25px 20px 25px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.product-list .project-content .date {
  background-color: #fff;
  color: #333;
  font-size: 18px;
  font-weight: 800;
  min-width: 60px;
  padding: 15px 0;
  position: absolute;
  right: 15px;
  text-align: center;
  text-transform: uppercase;
  top: 0;
}

.product-list .project-content .date span {
  display: block;
  line-height: 14px;
}

.product-list .project-content .date .month {
  font-size: 11px;
}

.product-list .project-content .card-body {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0px;
  height: 115px;
}

.product-list .project-content p {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: normal;
}

.product-list .project-content h5 {
  margin: 0 0 15px 0;
  padding: 0;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.product-list .project-content .hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  background-color: var(--secondary75);
  display: flex;
  font-size: 65px;
  justify-content: center;
  opacity: 0;
  color: #f6f6f7;
}

.product-list .project-content a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.product-list .project-content:hover .hover,
.product-list .project-content.hover .hover {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 1;
}

.product-list .project-content:hover figcaption,
.product-list .project-content.hover figcaption {
  opacity: 0;
}

.product-list .project-content:hover .date,
.product-list .project-content.hover .date {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.product-list #portfolio-flters {
  padding: 0;
  margin: 3rem auto 3rem auto;
  width: 70%;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid var(--primary20);
  z-index: 999;

}

.product-list #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.product-list #portfolio-flters li:hover,
.product-list #portfolio-flters li.filter-active {
  color: #fff;
  background: #009970;
}

.product-list #portfolio-flters li:last-child {
  margin-right: 0;
}

/*--------------------------------------------------------------
# product-detail 
--------------------------------------------------------------*/

.product-detail {
  display: block;
  min-height: auto;
  padding: 3rem 0 3rem 0;
}

.product-detail .card-wrapper {
  max-width: 1100px;
  margin: 0 auto;

  .card {
    border: none;
  }
}

.product-detail img {
  width: 100%;
  max-width: 100px;
  display: block;
}

.product-detail .img-display {
  overflow: hidden;
}

.product-detail .img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}

.product-detail .img-showcase img {
  min-width: 100%;
  max-height: 100vh;
}

.product-detail .img-select {
  display: flex;
}

.product-detail .img-item {
  margin: 0.3rem;
}

.product-detail .img-item:nth-child(1),
.product-detail .img-item:nth-child(2),
.product-detail .img-item:nth-child(3) {
  margin-right: 0;
}

.product-detail .img-item:hover {
  opacity: 0.8;
}

.product-detail .product-content {
  padding: 2rem 1rem;
}

.product-detail .product-title {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  margin: 1rem 0;
}

.product-detail .product-link {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  background: var(--bg-dark);
  color: #fff;
  padding: 0 0.3rem;
  transition: all 0.5s ease;
}

.product-detail .product-link:hover {
  opacity: 0.9;
}

.product-detail .product-rating {
  color: #ffc107;
}

.product-detail .product-rating span {
  font-weight: 600;
  color: #252525;
}

.product-detail .product-price {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: solid 2px var(--primary20);
}

.product-detail .product-price span {
  font-weight: 400;
}

.product-detail .last-price span {
  color: #f64749;
  text-decoration: line-through;
}

.product-detail .new-price span {
  color: var(--primary);
}

.product-detail .product--detail h2 {
  text-transform: capitalize;
  color: #12263a;
  padding-bottom: 0.6rem;
}

.product-detail .product--detail p {
  font-size: 0.9rem;
  padding: 0.3rem;
  text-align: justify;
}

.product-detail .product--detail ul {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.product-detail .product--detail ul li {
  margin: 0;
  /* list-style: none; */
  background-size: 18px;
  /* padding-left: 1.7rem; */
  margin: 0.4rem 0;
  font-weight: 600;
  text-align: justify;
}

.product-detail .product--detail ul li span {
  font-weight: 400;
}

.product-detail .purchase-info {
  margin: 1rem 0;
}

.product-detail .purchase-info input,
.product-detail .purchase-info .btn {
  border: 1.5px solid #ddd;
  text-align: center;
  padding: 0.45rem 0.8rem;
  outline: 0;
  margin-right: 0.2rem;
  margin-bottom: 1rem;
}

.product-detail .purchase-info input {
  width: 60px;
}

.product-detail .purchase-info .btn {
  cursor: pointer;
  color: #fff;
}

.product-detail .purchase-info .btn:first-of-type {
  background: #256eff;
}

.product-detail .purchase-info .btn:last-of-type {
  background: #f64749;
}

.product-detail .purchase-info .btn:hover {
  opacity: 0.9;
}

.product-detail .purchase-info a {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 1rem;
  transition: 0.5s;
  margin: 10px 0 10px 5px;
  color: #fff;
  background: var(--primary);
  border: 0.3px solid #fff;
}

.product-detail .purchase-info a:hover {
  border: 0.3px solid var(--secondary);
  background: var(--secondary);
}

.product-detail .purchase-info .a-dark {
  background: var(--bg-dark);
  border: 0.3px solid #fff;
}

.product-detail .purchase-info .a-dark:hover {
  border: 0.3px solid var(--bg-lightdark);
  background: var(--bg-dark-50);
}


.product-detail .social-links {
  display: flex;
  align-items: center;
}

.product-detail .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #000;
  border: 1px solid #000;
  margin: 0 0.2rem;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.5s ease;
}

.product-detail .social-links a:hover {
  background: #000;
  border-color: transparent;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .product-detail .card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }

  .product-detail .card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-detail .product-imgs {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product-detail .product-content {
    padding-top: 0;
  }

  .product-detail .product-content .product--detail {
    max-height: 60vh;
    overflow: hidden;
  }
}

/*--------------------------------------------------------------
# product-detail Description
--------------------------------------------------------------*/
.tabbable-panel {
  border: 1px solid #eee;
  padding: 10px;
}

.tabbable-line .nav-tabs {
  border: none;
  margin: 0px;
}

.tabbable-line .nav-tabs li {
  margin-right: 15px;
}

.tabbable-line .nav-tabs li a {
  border: 0;
  margin-right: 0;
  color: #000;
}

.tabbable-line .nav-tabs li.open,
.tabbable-line .nav-tabs li:hover {
  border-bottom: 4px solid var(--secondary);
}

.tabbable-line .nav-tabs li.open a,
.tabbable-line .nav-tabs li:hover a {
  border: 0;
  background: none !important;
}

.tabbable-line .nav-tabs li.open a i,
.tabbable-line .nav-tabs li:hover a i {
  color: #a6a6a6;
}

.tabbable-line .nav-tabs li.open .dropdown-menu,
.tabbable-line .nav-tabs li:hover .dropdown-menu {
  margin-top: 0px;
}

.tabbable-line .nav-tabs li a.active {
  border: 0;
  border-bottom: 4px solid var(--primary);
  position: relative;
}

.tabbable-line .nav-tabs li a.active:hover {
  border: 0;
  border-bottom: 0px solid var(--primary);
  position: relative;
}

.tabbable-line .tab-content {
  margin-top: -3px;
  background-color: #fff;
  border: 0;
  border-top: 1px solid #eee;
  padding: 15px 0;
}

.portlet .tabbable-line .tab-content {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;

}

@media screen and (max-width: 992px) {
  section {
    height: auto;
    padding: 1rem;
  }
}

.section-bg {
  background-color: #f6f6f7;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: var(--primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .counts .span{
  box-sizing: border-box;
  color: rgb(68, 68, 68);
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 700;
  height: 54px;
  line-height: 54px;
  text-align: center;
  width: 0px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 40px 0 40px 0;
  clip-path: polygon(5% 0, 100% 0, 100% 70%, 95% 100%, 0 100%, 0 30%);
  width: 100%;
  box-shadow: 0 28px 79px 0 rgba(10, 22, 31, 0.1);
  background-color: rgba(10, 22, 31, 0.1);
  height: 100%;
  width: 100%;
  transition: all 0.5s;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .counts {
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
  }
}

@media screen and (max-width: 767px) {
  .counts {
    clip-path: polygon(20% 0, 100% 0, 100% 70%, 80% 100%, 0 100%, 0 30%);
  }
}

.counts img {
  height: auto;
  width: 100%;
}

.counts .counters span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  font-weight: 500;
}

.counts .counters a {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .container {
  margin-top: 5rem;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: var(--primary);
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #36343a;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover h4 a {
  color: var(--primary);
}

.services .icon-box:hover .icon {
  color: #fff;
  background: var(--primary);
}

.services img {
  height: 10rem;
}

.services .card {
  text-align: center;
  transition: all ease-in-out 0.3s;
  background: #fff;
  float: left;
  width: 100%;

  .menu-content {
    margin: 0;
    padding: 0;
    list-style-type: none;

    li {
      display: inline-block;
    }

    a {
      color: #fff;
    }

    span {
      position: absolute;
      left: 50%;
      top: 0;
      font-size: 10px;
      font-weight: 700;
      transform: translate(-50%, 0);
    }
  }

  .wrapper {
    background-color: #fff;
    height: 250px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 19px 38px rgba(#000, 0.3), 0 15px 12px rgba(#000, 0.2);

    &:hover {
      .data {
        transform: translateY(0);
      }
    }
  }

  .data {
    position: absolute;
    top: 0;
    width: 100%;
    transform: translateY(calc(190px + 1em));
    transition: transform 0.3s;

    .content {
      padding: 1em;
      position: relative;
      z-index: 1;
    }


  }

  .author {
    font-size: 12px;
  }

  .title {
    text-transform: uppercase;
    font-weight: 700;
  }

  .text {
    height: 50px;
    margin: 0;
    margin-bottom: 50px;
  }
}

.services .card .wrapper .data .content a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.services .card:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .slider {
  .wrapper-1 {
    background: url("/assets/img/service/1.webp") 20% 1% / cover no-repeat;
  }

  .wrapper-2 {
    background: url("/assets/img/service/2.webp") 20% 1% / cover no-repeat;
  }

  .wrapper-3 {
    background: url("/assets/img/service/3.webp") 20% 1% / cover no-repeat;
  }

  .wrapper-4 {
    background: url("/assets/img/service/4.webp") 20% 1% / cover no-repeat;
  }

  .content {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 30px 10px rgba(#000, 0.3);
    height: 250px;
  }

  .title {
    color: var(--primary);
  }

}

#intro .btn-get {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #00c28e;
  border: 0.3px solid #fff;
}

#intro .btn-get:hover {
  background: rgba(0, 0, 0, 0.5);
  border: 0.3px solid #00c28e;
  color: #00c28e;
}

@media screen and (max-width: 992px) {
  .col-md-6 {
    padding: 5px;
  }
}

/*--------------------------------------------------------------
Product
--------------------------------------------------------------*/
.product .container {
  margin-top: 5rem;
}

.product .section-title {
  padding-bottom: 0;
}

.product .wrapper img {
  max-width: 100%;
}

.product .wrapper a {
  text-decoration: none;
}

.product .wrapper .icon {
  display: inline-block;
  width: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.product .wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

.product .wrapper .content {
  height: 500px;
  margin: 0 auto 0 auto;
  width: 100%;
  max-width: 1050px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 1rem;
}

.product .wrapper .bg-shape {
  height: 75%;
  background-image: linear-gradient(-45deg, var(--primary) 0%, var(--primary) 100%);
  box-shadow: 0px 29px 29px 0px rgba(10, 22, 31, 0.26);
  padding: 45px 40px;
  width: 40%;
  position: absolute;
  top: 8%;
  display: flex;
  align-items: center;
}

.product .wrapper .bg-shape img {
  object-fit: contain;
  width: 510px;
  display: block;
  object-position: left center;
  opacity: 0.2;
  transform: rotate(-90deg) translateY(-50%);
  max-width: inherit;
  left: 10px;
  position: absolute;
}

.product .wrapper .next,
.product .wrapper .prev {
  z-index: 22;
  display: inline-flex;
  border: none;
  width: 61px;
  height: 61px;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  position: absolute;
  top: 50%;
  outline: none;
  cursor: pointer;
}

.product .wrapper .next.disabled,
.product .wrapper .prev.disabled {
  cursor: not-allowed;
}

.product .wrapper .next:focus,
.product .wrapper .prev:focus {
  outline: none;
}

@media screen and (max-width: 1200px) {
  .product .wrapper .bg-shape {
    width: 45%;
  }

  .product .wrapper .bg-shape img {
    width: 430px;
    left: 10px;
  }
}

@media screen and (max-width: 992px) {
  .product .wrapper {
    height: auto;
    min-height: 100vh;
  }

  .product .wrapper .content {
    height: auto;
    min-height: 100vh;
  }

  .portofolio .col-lg-12 {
    padding: 0;
  }

  .product .wrapper .bg-shape {
    width: 50%;
    height: 30%;
    align-items: flex-start;
    padding: 50px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .product .wrapper .bg-shape img {
    transform: none;
    width: 100%;
    position: relative;
    left: auto;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    height: 100%;
    object-position: top center;
  }

  .product .wrapper .next,
  .product .wrapper .prev {
    top: 170px;
  }
}

@media screen and (max-width: 767px) {
  .product .wrapper .bg-shape {
    padding: 30px;
    width: 70%;
    height: 40%;
  }
}

@media screen and (max-width: 576px) {
  .product .wrapper .bg-shape {
    height: 25%;
    width: 80%;
    padding: 30px;
    top: 50px;
  }
}

.product .wrapper .prev {
  right: 10%;
  top: 13%;
  transform: translate(-100%, -50%);
}

.product .wrapper .prev:hover,
.product .wrapper .next:hover {
  color: var(--primary);
  transition: all 0.4s ease-in-out;
}

.product .wrapper .next {
  right: 10%;
  top: 13%;
  transform: translate(50%, -50%);
}


@media screen and (max-width: 992px) {
  .product .wrapper .prev {
    left: 15%;
    top: 27%;
    transform: translate(-50%, -50%);
  }

  .product .wrapper .next {
    right: 0;
    top: 27%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 576px) {
  .product .wrapper .prev {
    transform: translate(20%, -50%);
    left: 2%;
  }
}

@media screen and (max-width: 576px) {
  .product .wrapper .next {
    transform: translate(-20%, -50%);
  }
}

.product .wrapper .product-slider {
  width: 75%;
  height: 85%;
  clip-path: polygon(15% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%);
  box-shadow: 0 28px 79px 0 rgba(10, 22, 31, 0.35);
  background-color: rgba(10, 22, 31, 0.35);
  position: absolute;
  top: 45%;
  right: 0;
  transform: translateY(-50%);
}


@media screen and (max-width: 1200px) {
  .product .wrapper .product-slider {
    width: 80%;
  }
}

@media screen and (max-width: 992px) {
  .product .wrapper .product-slider {
    clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    position: relative;
    top: 0;
    margin-top: 170px;
    margin-bottom: 100px;
  }

  .product .wrapper .product-slider br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .product .wrapper .product-slider {
    clip-path: polygon(25% 0, 100% 0, 100% 80%, 75% 100%, 0 100%, 0 25%);

  }
}

@media screen and (max-width: 576px) {
  .product .wrapper .product-slider {
    clip-path: polygon(25% 0, 100% 0, 100% 80%, 75% 100%, 0 100%, 0 25%);

    width: 85%;
    margin-top: 130px;
  }
}

.product .wrapper .product-slider-wrp {
  height: 100%;
}

.product .wrapper .product-slider-item {
  position: relative;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .product .wrapper .product-slider-item {
    height: auto;
  }
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content * {
  opacity: 1;
  transform: none;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(1) {
  transition-delay: 0s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(2) {
  transition-delay: 0.2s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(3) {
  transition-delay: 0.4s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(4) {
  transition-delay: 0.6s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(5) {
  transition-delay: 0.8s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(6) {
  transition-delay: 1s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(7) {
  transition-delay: 1.2s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(8) {
  transition-delay: 1.4s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(9) {
  transition-delay: 1.6s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(10) {
  transition-delay: 1.8s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(11) {
  transition-delay: 2s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(12) {
  transition-delay: 2.2s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(13) {
  transition-delay: 2.4s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(14) {
  transition-delay: 2.6s;
}

.product .wrapper .product-slider-item.swiper-slide-active .product-slider-content *:nth-child(15) {
  transition-delay: 2.8s;
}

.product .wrapper .product-slider-item.swiper-slide-active circle {
  animation: progress 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0.75;
}

.product .wrapper .product-slider-card {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  transition: all 0.5s;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}

@media screen and (max-width: 992px) {
  .product .wrapper .product-slider-card {
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .product .wrapper .product-slider-card {
    border-radius: 20px;
  }
}

.product .wrapper .product-slider-content {
  color: #fff;
  padding-top: 1px;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 180px;
  padding-right: 80px;
}

@media screen and (max-width: 1200px) {
  .product .wrapper .product-slider-content {
    padding-left: 220px;
  }
}

@media screen and (max-width: 992px) {
  .product .wrapper .product-slider-content {
    padding: 20px 60px 100px;
    padding-top: 280px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .product .wrapper .product-slider-content {
    padding: 20px 30px 50px;
    padding-top: 300px;
  }
}

@media screen and (max-width: 576px) {
  .product .wrapper .product-slider-content {
    padding-top: 300px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.product .wrapper .product-slider-title {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 41px;
  line-height: 1.2em;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(55px);
  transition: all 0.5s;
}

@media screen and (max-width: 1200px) {
  .product .wrapper .product-slider-title {
    font-size: 34px;
  }
}

@media screen and (max-width: 576px) {
  .product .wrapper .product-slider-title {
    font-size: 24px;
  }
}

.product .wrapper .product-slider-sub {
  display: block;
  opacity: 0;
  transform: translateY(55px);
  transition: all 0.5s;
}

@media screen and (max-width: 1200px) {
  .product .wrapper .product-slider-sub {
    font-size: 36px;
  }
}

@media screen and (max-width: 576px) {
  .product .wrapper .product-slider-sub {
    font-size: 30px;
  }
}

.product .wrapper .product-slider-sub sup {
  top: -20px;
  font-size: 65%;
}

.product .wrapper .product-slider-cart {
  box-shadow: 0 7px 99px 0 rgba(56, 204, 51, 0.3);
  background-image: linear-gradient(-45deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  color: #fff;
  padding: 10px 30px;
  min-height: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-right: 40px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .product .wrapper .product-slider-cart {
    margin-right: 30px;
  }
}

@media screen and (max-width: 576px) {
  .product .wrapper .product-slider-cart {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.product .wrapper .product-slider-bottom {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(55px);
  transition: all 0.5s;
}

.product .wrapper .product-ctr {
  display: flex;
  align-items: center;
  min-height: 150px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(55px);
  transition: all 0.5s;
}

@media screen and (max-width: 992px) {
  .product .wrapper .product-ctr {
    justify-content: center;
  }
}

.product .wrapper .product-ctr .hr-vertical {
  width: 1px;
  background: #9fa3a7;
  align-self: stretch;
  margin: 0 35px;
  flex-shrink: 0;
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .product .wrapper .product-ctr {
    justify-content: center;
    flex-wrap: wrap;
  }

  .product .wrapper .product-ctr .hr-vertical {
    width: 100%;
    margin: 35px 0;
    height: 1px;
  }
}

@media screen and (max-width: 767px) {
  .product .wrapper .product-labels {
    width: 100%;
  }
}

.product .wrapper .product-labels a {
  color: var(--primary);
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.product .wrapper .product-inf {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .product .wrapper .product-inf {
    width: 100%;
  }
}

.product .wrapper .product-img {
  position: absolute;
  z-index: 2;
  width: 400px;
  left: 18%;
  top: 45%;
  transform: translateX(-45%);
  max-height: 500px;
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .product .wrapper .product-img {
    width: 430px;
    left: 20%;
  }
}

@media screen and (max-width: 992px) {
  .product .wrapper .product-img {
    width: 350px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 325px;
  }
}

@media screen and (max-width: 767px) {
  .product .wrapper .product-img {
    width: 100%;
    max-width: 400px;
    top: 30px;
    height: 390px;
  }
}

@media screen and (max-width: 576px) {
  .product .wrapper .product-img {
    max-width: 300px;
    height: 300px;
  }
}

.product .wrapper .product-img-item {
  display: flex;
  align-items: center;
  position: absolute;
  pointer-events: none;
  user-select: none;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-130px);
  opacity: 0;
  transition: all 0.3s;
}

.product .wrapper .product-img-item.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  transition-delay: 0.3s;
}

.product .wrapper .product-img-item img {
  object-fit: contain;
  object-position: center right;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 0px 30px 0px;
  margin: 30px 15px;
  text-align: center;
  height: 260px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.testimonials .testimonial-item .item-img {
  max-width: 200px;
  max-height: 150px;
}

.testimonials .testimonial-item .item-img .testimonial-img {
  max-width: 200px;
  max-height: 150px;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}

.testimonials .testimonial-item .item-img .testimonial-img:hover {
  transform: scale(1.1);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--secondary);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    height: 260px;
  }
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
}


.team .page-content {
  display: grid;
  grid-gap: 1rem;
  max-width: 100%;
  margin: 0 auto;

  @media (min-width: 600px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (min-width: 800px) {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team .card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  border-radius: 0;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);

  @media (min-width: 600px) {
    height: 350px;
  }

  &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: transform calc(var(--d) * 1.5) var(--e);
    pointer-events: none;

  }


  &:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient(to bottom,
        hsla(0, 0%, 0%, 0) 0%,
        hsla(0, 0%, 0%, 0.009) 11.7%,
        hsla(0, 0%, 0%, 0.034) 22.1%,
        hsla(0, 0%, 0%, 0.072) 31.2%,
        hsla(0, 0%, 0%, 0.123) 39.4%,
        hsla(0, 0%, 0%, 0.182) 46.6%,
        hsla(0, 0%, 0%, 0.249) 53.1%,
        hsla(0, 0%, 0%, 0.320) 58.9%,
        hsla(0, 0%, 0%, 0.394) 64.3%,
        hsla(0, 0%, 0%, 0.468) 69.3%,
        hsla(0, 0%, 0%, 0.540) 74.1%,
        hsla(0, 0%, 0%, 0.607) 78.8%,
        hsla(0, 0%, 0%, 0.668) 83.6%,
        hsla(0, 0%, 0%, 0.721) 88.7%,
        hsla(0, 0%, 0%, 0.762) 94.1%,
        hsla(0, 0%, 0%, 0.790) 100%);
    transform: translateY(-50%);
    transition: transform calc(var(--d) * 2) var(--e);
  }

}

.team .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;

  *+* {
    margin-top: 1rem;
  }
}

.team .title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
}

.team .copy {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
}

.team .btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: var(--primary);
  border: none;

  &:focus {
    outline: 1px dashed rgba(241, 139, 26, 255);
    outline-offset: 3px;
  }
}

.team .btn:hover {
  background-color: var(--secondary);
  transition: all 0.4s ease-in-out;
  ;
}

@media (hover: hover) and (min-width: 600px) {
  .team .card:after {
    transform: translateY(0);
  }

  .team .content {
    transform: translateY(calc(100% - 4.5rem));

    *:not(.title) {
      opacity: 0;
      transform: translateY(1rem);
      transition:
        transform var(--d) var(--e),
        opacity var(--d) var(--e);
    }

  }

  .team .card:hover,
  .team .card:focus-within {
    align-items: center;

    &:before {
      transform: translateY(-4%);
    }

    &:after {
      transform: translateY(-50%);
    }

    .content {
      transform: translateY(0);

      *:not(.title) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(var(--d) / 8);
      }
    }
  }

  .team .card:focus-within {

    &:before,
    &:after,
    .content,
    .content *:not(.title) {
      transition-duration: 0s;
    }
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #36343a;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #686470;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #00805d;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  background: #f1f0f2;
  min-height: 10vh;
  padding: 2rem 0 2rem 0;
}

.breadcrumbs h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f4c55;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f1f0f2;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;

}

#footer .footer-top {
  padding: 50px 0 50px 0;
  background: #f9f8f9;
  width: 100%;
}

#footer .footer-top .footer-contact {
  margin-bottom: 1rem;
  width: 70%;
  border-bottom: solid var(--primary20) 2px;
}

@media screen and (max-width: 576px) {
  #footer .footer-top .footer-contact {
    width: 100%;
    text-align: center;
  }

  #footer .footer-top .footer-links {
    text-align: center;
  }
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #444444;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links a {
  color: var(--primary);
  font-size: larger;
}

#footer .footer-top .footer-links a:hover {
  color: var(--secondary);
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #00c28e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary);
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter button[type=submit] {
  background: var(--primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
}

#footer .footer-newsletter button[type=submit]:hover {
  background: #00805d;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  text-align: left;
  border: 1px solid #e4e3e6;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #00664b;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--primary);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

@media screen and (max-width: 576px) {
  #footer .social-links .associate {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;

    .copyright {
      width: 100%;
    }

  }

  #footer .social-links img {
    margin-top: 5px;

  }

}

#footer .social-links a:hover {
  background: #00805d;
  color: #fff;
  text-decoration: none;
}


#footer .social-links img {
  max-width: 6rem;
  max-height: 3rem;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  margin: 0.6rem;
}

#footer .social-links img:hover {
  filter: none;
  transform: scale(1.5);
}

#footer .client-footer img {
  max-width: 10rem;
  max-height: 4rem;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  margin: 1rem;
}

#footer .client-footer img:hover {
  filter: none;
  transform: scale(1.1);
}

#footer .img-nano {
  max-width: 12rem !important;
}



/*--------------------------------------------------------------
# project
--------------------------------------------------------------*/
.project .project-content {
  background-color: #000000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6em;
  margin: 10px;
  max-width: 280px;
  min-width: 250px;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
}

.project .project-content * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.project .project-content img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
  opacity: 0.75;
}

.project .project-content figcaption {
  padding: 25px 20px 25px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.project .project-content .date {
  background-color: #fff;
  color: #333;
  font-size: 18px;
  font-weight: 800;
  min-width: 60px;
  padding: 15px 0;
  position: absolute;
  right: 15px;
  text-align: center;
  text-transform: uppercase;
  top: 0;
}

.project .project-content .date span {
  display: block;
  line-height: 14px;
}

.project .project-content .date .month {
  font-size: 11px;
}

.project .project-content h3,
.project .project-content p {
  margin: 0;
  padding: 0;
}

.project .project-content h3 {
  font-weight: 800;
  letter-spacing: -0.4px;
}

.project .project-content .hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  background-color: var(--secondary75);
  display: flex;
  font-size: 65px;
  justify-content: center;
  opacity: 0;
}

.project .project-content a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.project .project-content:hover .hover,
.project .project-content.hover .hover {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 1;
}

.project .project-content:hover figcaption,
.project .project-content.hover figcaption {
  opacity: 0;
}

.project .project-content:hover .date,
.project .project-content.hover .date {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

/*--------------------------------------------------------------
# news
--------------------------------------------------------------*/
.news a,
a:hover {
  text-decoration: none;
}

.news .item-bg {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0px;
  opacity: 0;
  transition: all 0.3s;
  left: 0px;
}

.news .item-bg.active {
  left: 0;
  top: 0;
  opacity: 0;
}

.news .icon {
  color: var(--primary);
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.news .news-slider {
  z-index: 2;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1300px) {
  .news .news-slider {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1000px) {
  .news .icon {
    opacity: 0;
  }
}

@media screen and (max-width: 576px) {
  .news .news-slider {
    margin-top: 45px;
  }

}

.news .news-slider-wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.news .news-slider-item {
  width: 400px;
  flex-shrink: 0;
}

@media screen and (max-width: 992px) {
  .news .news-slider-item {
    width: 340px;
  }
}

.news .news-slider-item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.news .news-slider-item.swiper-slide-active,
.news-slider-item.swiper-slide-prev,
.news-slider-item.swiper-slide-next {
  pointer-events: auto;
  width: 400px;
  height: 65vh;
  max-height: 525px;
}

.news .news-slider-item.swiper-slide-prev,
.news-slider-item.swiper-slide-next {
  opacity: 0.2 !important;
  transition: all 0.3s;
}


.news .news-slider-item.swiper-slide-active {
  background: #fff;
  opacity: 1 !important;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}

.news .news-slider-ctr {
  position: relative;
  z-index: 12;
}

.news .news-slider-arrow {
  background: transparent;
  border: none;
  display: inline-flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  z-index: 12;
  cursor: pointer;
  outline: none !important;
}

.news .news-slider-arrow:focus {
  outline: none !important;
}

.news .news-slider-arrow .icon-font {
  display: inline-flex;
}

.news .news-slider-arrow.news-slider-prev {
  left: 35%;
  transform: translateY(-50%);
}

.news .news-slider-arrow.news-slider-next {
  right: 35%;
  transform: translateY(-50%);
}

.news .news-slider-pagination {
  text-align: center;
  margin-top: 2rem;
}

.news .news-slider-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: var(--primary);
  opacity: 0.2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}

.news .news-slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary);
  width: 100px;
  transition-delay: 0s;
}

@media screen and (max-width: 576px) {
  .news .news-slider-pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}

.news .news-item {
  padding: 20px;
  color: #17351b;
  border-radius: 10px;
  display: block;
  transition: all 0.3s;
  height: 65vh;
  max-height: 525px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  /* align-items: flex-start; */
}

@media screen and (min-width: 800px) {
  .news .news-item:hover {
    color: #222;
    transition-delay: 0.1s;
  }

  .news .news-item:hover .news-date,
  .news-item:hover .news-title,
  .news-item:hover .news-txt {
    opacity: 1;
    transition-delay: 0.1s;
  }

  .news .news-item:hover .news-img {
    box-shadow: none;
  }
}

.news .news-item.active {
  color: #222;
}

.news-show {
  font-size: 15px;
}

.news .news-item.active .news-date,
.news-item.active .news-title,
.news-item.active .news-txt {
  opacity: 1;
}

.news .news-item.active .news-img {
  box-shadow: none;
}

@media screen and (max-width: 992px) {
  .news .news-item {
    padding: 30px;
  }
}

@media screen and (max-width: 576px) {
  .news .news-item {
    padding: 20px;
  }
}

.news .news-date {
  border-bottom: 2px solid;
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.3s;
}

@media screen and (max-width: 576px) {
  .news .news-date {
    /* margin-bottom: 10px; */
    display: inline-flex;
    align-items: center;
    padding-bottom: 0;
  }
}

.news .news-date-title {
  display: block;
  font-size: 32px;
  /* margin-bottom: 10px; */
  font-weight: 500;
}

@media screen and (max-width: 576px) {
  .news .news-date-title {
    margin-right: 10px;
  }
}

.news .news-date-txt {
  font-size: 16px;
}

.news .news-title {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.3s;
}

@media screen and (max-width: 576px) {
  .news .news-title {
    font-size: 20px;
    max-height: 90px;
    margin-bottom: 10px;
    overflow: auto;
  }

  .news .news-txt {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .news .news-title {
    font-size: 20px;
    max-height: 90px;
    margin-bottom: 10px;
    overflow: auto;
  }

  .news .news-txt {
    display: none;
  }
}

.news .news-txt {
  margin: 10px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.7;
  transition: opacity 0.3s;
  overflow: hidden;
}

.news .news-img {
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  height: 200px;
  width: 100%;
  transition: all 0.3s;
  transform-origin: 0% 0%;
}

@media screen and (max-width: 576px) {
  .news .news-img {
    height: 180px;
    margin-top: 20px;
  }
}

.news .news-img img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.event img {
  align-items: center;
  height:auto;
  max-width: 100%;
  object-fit: contain;
  margin: auto;
  padding: 1rem;
}