@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --white: #ffffff;
  --black: #000000;
  --red: #ff2a31;
  --light-yellow: #eee12b;
  --orange: #db8b13;
  --dark-green: #00434d;
  --light-green: #00e9aa;
  --green: #05a27d;
  --light: #e3e3e3;
  --light-2: #eeeeee;
  --light-gray: #abbfbf;
  --light-gray-2: #a2a2a2;
  --gray: #707070;
  --dark: #00121e;
  --blue-600: #058da2;
  --blue-700: #003355;
  --dark-blue: #193e57;
  --dark-blue-2: #001e34;
  --logo-color: var(--dark);
  --bg-color: var(--white);
  --text: var(--dark-green);
  --light-text: var(--light-gray-2);
  --secondary-text: var(--gray);
  --title-text: var(--dark);
  --border-dark: var(--dark);
  --border-light: var(--light);
  --card-bg: var(--white);
  --card-bg-gray: var(--light-2);
  --card-border: var(--light);
  --shadow: 2px 2px 20px var(--light);
  --qt-bg: var(--light);
  --bg-pattern: url("../../images/bg-pattern.png");
  --gradient-bg: linear-gradient(
    148deg,
    rgba(235, 245, 250, 1) 0%,
    rgba(236, 244, 250, 1) 45%,
    rgba(255, 227, 250, 1) 50%,
    rgba(216, 251, 254, 1) 55%,
    rgba(233, 245, 250, 1) 62%,
    rgba(235, 245, 250, 1) 100%
  );
  --poppins: "Poppins", sans-serif;
  --montserrat: "Montserrat", sans-serif;
}

[data-bs-theme=dark] {
  --logo-color: var(--white);
  --text: var(--white);
  --light-text: var(--dark-blue);
  --secondary-text: var(--light-gray);
  --title-text: var(--light-green);
  --bg-color: var(--dark);
  --border-dark: var(--green);
  --border-light: var(--blue-700);
  --card-bg: var(--dark);
  --card-bg-gray: var(--dark-blue-2);
  --card-border: var(--blue-700);
  --shadow: 2px 2px 20px var(--black);
  --qt-bg: var(--blue-700);
  --bg-pattern: url("../../images/bg-pattern-dark2.png");
  --gradient-bg: linear-gradient(
    148deg,
    rgba(0, 18, 30, 0.2) 0%,
    rgba(17, 32, 45, 0.2) 42%,
    rgba(124, 10, 136, 0.2) 50%,
    rgba(4, 0, 113, 0.2) 55%,
    rgba(12, 31, 42, 0.2) 63%,
    rgba(0, 18, 30, 0.2) 100%
  );
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  font-family: var(--poppins) !important;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-100 {
  padding-bottom: 100px;
}

.br-10 {
  border-radius: 10px;
}

#preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide the body until page loads */
body.loading {
  overflow: hidden;
}

/* SVG animation */
.svg-elem-1 {
  stroke-dashoffset: 967.049px;
  stroke-dasharray: 967.049px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715), fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
  fill: #000;
}

.section-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-content .section-title {
  color: var(--blue-600);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-content .title {
  color: var(--title-text);
  font-family: var(--montserrat);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-content .content {
  color: var(--secondary-text);
}
.section-content .cnt-btn {
  padding: 12px 20px;
  background-color: var(--bg-color);
  color: var(--title-text);
  border: 1px solid var(--title-text);
  border-radius: 6px;
  margin-top: 30px;
  max-width: 140px;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.section-content .cnt-btn:hover {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

@media (max-width: 991.98px) {
  .section-content {
    text-align: center;
  }
  .section-content .cnt-btn {
    margin: auto;
  }
}
.section-f-title {
  text-align: center;
  padding: 20px;
}
.section-f-title .section-title {
  color: var(--blue-600);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-f-title .title {
  color: var(--title-text);
  font-family: var(--montserrat);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-f-title .content {
  color: var(--secondary-text);
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .section-f-title {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.sw-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  cursor: pointer;
}
.sw-card:hover {
  background-color: var(--dark-green);
}
.sw-card:hover i,
.sw-card:hover h5 {
  color: var(--light-green);
}
.sw-card:hover p {
  color: var(--white);
}
.sw-card:hover::before {
  content: "";
  border-color: var(--orange);
}
.sw-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed var(--blue-600);
  border-radius: 6px;
  pointer-events: none;
  z-index: -1;
}
.sw-card i {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--title-text);
}
.sw-card h5 {
  font-family: var(--montserrat);
  font-weight: 600;
  color: var(--title-text);
  margin-bottom: 20px;
}
.sw-card p {
  text-align: center;
  color: var(--secondary-text);
}

.g-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  cursor: pointer;
  transition: all 0.5s;
}
.g-card:hover {
  box-shadow: var(--shadow);
}
.g-card h1 {
  font-size: 52px;
  font-weight: 600;
  color: var(--qt-bg);
  margin-bottom: 0;
}
.g-card i {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--title-text);
}
.g-card .title {
  font-family: var(--montserrat);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--title-text);
}
.g-card .content {
  color: var(--secondary-text);
  margin-bottom: 0;
}

.cstr-card {
  border: 0;
  background-color: transparent;
  text-align: center;
  height: 100%;
}
.cstr-card .cstr-img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: 5px solid var(--bg-color);
  overflow: hidden;
  margin: auto;
}
.cstr-card .cstr-img img {
  width: 100%;
  height: auto;
  background-size: cover;
}
.cstr-card .card-details {
  background-color: var(--card-bg-gray);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  padding-top: 80px;
  margin-top: -50px;
  z-index: -1;
  position: relative;
}
.cstr-card .card-details .title {
  font-weight: 600;
  color: var(--title-text);
}
.cstr-card .card-details .location {
  color: var(--logo-color);
}
.cstr-card .card-details .content {
  color: var(--secondary-text);
}
.cstr-card .card-details .rating {
  display: flex;
  font-size: 15px;
  color: var(--orange);
  display: flex;
  justify-content: center;
}
.cstr-card .card-details .rating span:not(:last-child) {
  margin-right: 6px;
}
.cstr-card .card-details .qt-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: var(--qt-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cstr-card .card-details .qt-icon i {
  font-size: 20px;
  color: var(--dark);
}

.breadcrumb-links .breadcrumb .breadcrumb-item a {
  color: var(--secondary-text);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumb-links .breadcrumb .breadcrumb-item.active {
  color: var(--title-text);
  text-transform: uppercase;
  font-weight: 600;
}

.navbar.navbar.scrolled {
  background-color: var(--bg-color);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.navbar-brand svg {
  height: 45px;
  width: auto;
  fill: var(--logo-color);
}

.navbar-nav .nav-item .nav-link {
  font-family: var(--montserrat);
  font-weight: 500;
  color: var(--logo-color);
}
.navbar-nav .nav-item .nav-link.download-btn {
  padding: 10px 20px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 8px;
  text-align: center;
}
.navbar-nav .nav-item:not(:nth-last-child(-n+2)):hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.theme-toggle-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  text-align: center;
  border: 0;
}
.theme-toggle-btn::after {
  display: none;
}
.theme-toggle-btn .bi {
  fill: var(--light-yellow) !important;
}

.bd-mode-toggle {
  z-index: 1500;
}
.bd-mode-toggle .bi {
  fill: #000000;
  width: 15px;
  height: 15px;
}
.bd-mode-toggle .dropdown-menu.active .bi {
  display: block !important;
}

.navbar-toggler {
  outline: none !important;
  box-shadow: none !important;
}
.navbar-toggler::after, .navbar-toggler::before {
  outline: none !important;
  box-shadow: none !important;
}

@media (min-width: 992px) {
  .navbar-nav .nav-item {
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    transition: all 0.2s;
  }
  .dropdown-item.active,
  .dropdown-item:active {
    background-color: var(--green);
  }
}
@media (max-width: 991.98px) {
  .navbar-nav .nav-item:not(:last-child) {
    padding-left: 10px;
    border-radius: 5px;
  }
}
.newsletter {
  padding-top: 100px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.newsletter h1 {
  font-family: var(--montserrat);
  font-size: 36px;
  font-weight: bold;
  color: var(--title-text);
}
.newsletter p {
  color: var(--secondary-text);
}
.newsletter .subscribe-form {
  position: relative;
}
.newsletter .subscribe-form input {
  height: 50px;
  border-color: var(--border-dark);
  border-radius: 25px;
  width: 100%;
  padding: 10px 70px 10px 20px;
  background-color: var(--bg-color);
  font-size: 16px;
}
.newsletter .subscribe-form input:focus, .newsletter .subscribe-form input:active, .newsletter .subscribe-form input:target {
  outline: none !important;
  box-shadow: none !important;
}
.newsletter .subscribe-form input::-moz-placeholder {
  color: var(--light-text);
}
.newsletter .subscribe-form input::placeholder {
  color: var(--light-text);
}
.newsletter .subscribe-form .subs-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70px;
  border: none;
  border-radius: 25px !important;
  background-color: var(--border-dark);
}
.newsletter .subscribe-form .subs-btn svg {
  height: 15px;
  width: auto;
  fill: var(--white);
}

@media (min-width: 992px) {
  .newsletter .subscribe-form {
    position: relative;
    max-width: 400px;
  }
}
.footer-section {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-light);
}
.footer-section .f-title {
  font-family: var(--montserrat);
  font-size: 16px;
  font-weight: 600;
  color: var(--title-text);
  margin-bottom: 30px;
  text-transform: uppercase;
}
.footer-section .f-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .f-menu li {
  padding: 5px 0;
}
.footer-section .f-menu li a,
.footer-section .f-menu li p {
  text-decoration: none;
  font-size: 16px;
  color: var(--secondary-text);
}
.footer-section .f-menu li:hover a {
  color: var(--title-text);
}

.copywrite-section {
  margin-top: 20px;
  padding-bottom: 20px;
}
.copywrite-section .rsp {
  text-align: center;
}
.copywrite-section .footer-logo svg {
  height: 30px;
  width: auto;
  fill: var(--logo-color);
}
.copywrite-section .cw-text {
  text-align: center;
  font-size: 15px;
  color: var(--secondary-text);
  margin-bottom: 0;
}
.copywrite-section .cw-text a {
  color: var(--green);
  text-decoration: underline;
}
.copywrite-section .social-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.copywrite-section .social-links li:not(:last-child) {
  margin-right: 15px;
}
.copywrite-section .social-links li a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border: 1px solid var(--title-text);
  border-radius: 18px;
  font-size: 15px;
  color: var(--title-text);
}

@media (min-width: 992px) {
  .rsp {
    text-align: left !important;
  }
}
.hero {
  width: 100%;
  height: 100vh;
}
.hero .video {
  height: 100%;
  width: 100%;
}

.about .section-img {
  max-height: 600px;
  height: 100%;
  position: relative;
}
.about .section-img img {
  height: 100%;
  width: auto;
  background-size: cover;
  border-radius: 10px;
}
.about .section-img .experience {
  position: absolute;
  bottom: 70px;
  right: 0px;
  width: 220px;
  height: 220px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 10px;
  padding: 30px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about .section-img .experience::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed var(--white);
  border-radius: 6px;
  pointer-events: none;
  z-index: -1;
}
.about .section-img .experience i {
  font-size: 35px;
}
.about .section-img .experience h1 {
  font-family: var(--montserrat);
  font-size: 48px;
  font-weight: bold;
}
.about .section-img .experience h5 {
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .section-img img {
    width: 90% !important;
    height: auto;
  }
  .section-img .experience {
    bottom: 30px !important;
  }
}
.mv-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.we-do {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background-image: var(--bg-pattern);
  background-repeat: repeat;
  position: relative;
}
.we-do::after {
  content: "";
  background: var(--gradient-bg);
  position: absolute;
  inset: 0 0 0 0;
  z-index: -1;
}

.swiper .swiper-wrapper .swiper-slide {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.swiper .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: auto;
  text-align: center;
}
.swiper .swiper-wrapper .swiper-slide .product-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  color: var(--dark);
  text-align: center;
  line-height: 60px;
}
.swiper .swiper-wrapper .swiper-slide:hover .product-title {
  background-color: var(--dark-green);
  color: var(--white);
}
.swiper .swiper-pagination {
  margin-bottom: 0px;
}

.certification {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background-image: var(--bg-pattern);
  background-repeat: repeat;
  position: relative;
}
.certification::after {
  content: "";
  background: var(--gradient-bg);
  position: absolute;
  inset: 0 0 0 0;
  z-index: -1;
}
.certification .section-img {
  display: flex;
  align-items: center;
  height: 100%;
}

.customers .swiper .swiper-wrapper .swiper-slide img {
  height: 35px;
}
.customers h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--logo-color);
}
.customers h5 span {
  font-size: 30px;
  color: var(--light-green);
}

.banner {
  background-image: url("../../images/banner-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.banner .banner-content h1 {
  font-family: var(--montserrat);
  font-weight: bold;
  color: var(--green);
}
.banner .banner-content p {
  color: var(--secondary-text);
}
.banner .banner-content .btn {
  padding: 10px 15px;
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  border: none;
}
.banner .banner-content .btn:active, .banner .banner-content .btn:focus {
  outline: none !important;
  border: none;
}

.about-us .videos {
  height: 500px;
  background-color: var(--light);
  border-radius: 10px;
  position: relative;
}
.about-us .videos .play-btn-wrapper {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-us .videos .play-btn-wrapper .video-main {
  position: relative;
  display: inline-block;
}
.about-us .videos .play-btn-wrapper .video-main .video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  font-size: 20px;
  color: var(--white);
  display: inline-block;
  background: var(--red);
  z-index: 999;
}
@keyframes waves {
  0% {
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
.about-us .videos .waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 42, 49, 0.3);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  animation: waves 3s ease-in-out infinite;
}
.about-us .videos .wave-1 {
  animation-delay: 0s;
}
.about-us .videos .wave-2 {
  animation-delay: 1s;
}
.about-us .videos .wave-3 {
  animation-delay: 2s;
}
.about-us .content-2 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--logo-color);
  margin-top: 50px;
}
.about-us .experience-smry {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 120px;
  background: linear-gradient(45deg, rgba(65, 86, 202, 0.3) 0%, rgba(200, 80, 191, 0.3) 50%, rgba(254, 202, 113, 0.3) 100%);
  border-radius: 10px;
  margin-top: 50px;
}
.about-us .experience-smry div {
  text-align: center;
}
.about-us .experience-smry div h1 {
  font-family: var(--montserrat);
  font-size: 42px;
  font-weight: 600;
  color: var(--title-text);
}
.about-us .experience-smry div p {
  color: var(--secondary-text);
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .about-us .experience-smry div h1 {
    font-size: 28px;
  }
  .about-us .experience-smry div p {
    font-size: 15px;
  }
}

.mission-vission .sw-card {
  height: auto;
  margin-bottom: 20px;
}

.how-we-work {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background-image: var(--bg-pattern);
  background-repeat: repeat;
  position: relative;
}
.how-we-work::after {
  content: "";
  background: var(--gradient-bg);
  position: absolute;
  inset: 0 0 0 0;
  z-index: -1;
}

.values .section-img img {
  width: 100% !important;
  height: auto;
}
.values .g-card {
  padding: 20px;
  height: auto;
}
.values .g-card .icon-wrap {
  width: 40px;
  height: 40px;
  background-color: var(--qt-bg);
  border-radius: 5px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 20px;
}
.values .g-card .icon-wrap i {
  font-size: 18px;
  color: var(--green);
}

@media (min-width: 992px) {
  .values .msn-item:nth-child(1) {
    margin-top: 30px;
  }
  .values .msn-item:nth-child(2) {
    margin-top: 80px;
  }
  .values .msn-item:nth-child(4) {
    margin-top: -60px;
  }
  .values .msn-item:nth-child(6) {
    margin-top: -70px;
  }
}
.accessories .section-img {
  position: relative;
}
.accessories .section-img img {
  border-radius: 10px;
}
.accessories .section-img .experience {
  position: absolute;
  bottom: 70px;
  right: 0px;
  width: 220px;
  height: 220px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 10px;
  padding: 30px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.accessories .section-img .experience::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed var(--white);
  border-radius: 6px;
  pointer-events: none;
  z-index: -1;
}
.accessories .section-img .experience i {
  font-size: 35px;
}
.accessories .section-img .experience h1 {
  font-family: var(--montserrat);
  font-size: 48px;
  font-weight: bold;
}
.accessories .section-img .experience h5 {
  font-size: 20px;
  font-weight: 600;
}
.accessories .section-content .cnt-btn {
  max-width: 180px;
  width: 100%;
}

.contact-wrapper .section-img img {
  border-radius: 10px;
}

@media (max-width: 991.98px) {
  .contact-wrapper .section-img img {
    width: 100% !important;
  }
}
.contact-wrapper {
  margin-bottom: 100px;
}
.contact-wrapper .contact-form h1 {
  font-family: var(--montserrat);
  font-size: 36px;
  font-weight: 600;
  color: var(--title-text);
}
.contact-wrapper .contact-form p {
  color: var(--secondary-text);
  margin-bottom: 30px;
}
.contact-wrapper .contact-form .form-label {
  color: var(--secondary-text);
}
.contact-wrapper .contact-form input,
.contact-wrapper .contact-form textarea {
  background-color: var(--bg-color);
  border-color: var(--border-dark);
}
.contact-wrapper .contact-form .btn {
  background-color: var(--green);
  color: var(--white);
  border: 0;
}
.contact-wrapper .contact-form .btn:hover {
  background-color: var(--green);
  color: var(--white);
}

.g-map {
  margin-bottom: 100px;
}

.p-card {
  position: relative;
  background-color: var(--white);
  color: var(--white);
  overflow: hidden;
  border-color: var(--border-light);
  border-radius: 10px;
}
.p-card:hover .card-content {
  opacity: 0.6;
  transform: translateY(0px);
  transition: transform 0.4s, opacity 0.1s;
}
.p-card .card-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-card .card-img img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
}
.p-card .card-img:hover img {
  transform: scale(1.2);
}
.p-card .card-content {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  padding: 15px;
  transform: translateY(85%);
  backface-visibility: hidden;
  transition: transform 0.4s, opacity 0.1s 0.3s;
}
.p-card .card-content .title {
  margin-top: 0px;
  margin-bottom: 50px;
}
.p-card .card-content .content {
  margin: 0;
}
.p-card .card-content .read-more {
  background-color: var(--light-green);
  color: var(--dark);
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  margin-top: 30px;
}
.p-card .card-content .read-more:hover {
  background-color: var(--light-green);
  color: var(--dark);
}/*# sourceMappingURL=app_style.css.map */