@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.css");

@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.modal-video-effect-exit {
  opacity: 0;
}
.modal-video-effect-exit .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}
.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}
.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}
@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}
.modal-video-close-btn:after {
  transform: rotate(-45deg);
}
.modal-video-close-btn:before,
.modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}
:root {
  --primary-color: #004156;
  --accent-color: #ee2b43;
  --light-blue: #f1fcff;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
}
*,
*::before *::after {
  box-sizing: border-box;
}
.container {
  width: 100%;
  padding: 1em;
  max-width: 1140px;
  margin: 0 auto;
}
/* header .nav-container {
  padding: 1em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .nav-container nav {
  display: none;
} */
.nav-toggle svg {
  height: 1.7em;
  width: 1.7em;
}

.hero-section {
  min-height: calc(100vh - 30em);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section::after {
  content: "";
  background-image: url("hero-image.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  background-position: right;
  max-width: 60%;
}
.hero-main-title {
  font-size: 3em;
  line-height: 1;
}
.hero-sub-title {
  font-size: 2.5em;
  line-height: 1;
  margin-bottom: 1.8em;
}
.hero-sub-title span {
  font-weight: 700;
  color: var(--accent-color);
}

.watch-video {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  padding: 0.5em;
  cursor: pointer;
  font-weight: 600;
}
.watch-video svg {
  height: 1em;
  width: 1em;
  margin-left: 10px;
}

.intro-section {
  padding: 5em 0 2em;
}

.section-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 600;
  position: relative;
  padding-top: 0.6em;
  margin-bottom: 0.5em;
}

.section-title span {
  color: var(--accent-color);
  padding: 0 8px;
  font-weight: 700;
}

.section-title::before {
  content: "";
  width: 3em;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  top: 0;
}

.intro-section p {
  width: 100%;
  max-width: 782px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9em;
}

.products-section {
  margin-bottom: 100px;
}

.products-section .products {
  padding: 0 2em;
  display: grid;
  grid-template-columns: 100%;
  gap: 0px;
}

.products-section .product-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2em 0px;
}

.product-triangle-container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: auto;
  width: 40%;
  display: flex;
}

.products-section .product-card {
  padding-left: 33%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  border-radius: 1em;
  margin-left: 10px;
  width: 100%;
  height: 100%;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card .product-title {
  font-weight: 700;
  font-size: 1em;
}

.product-card .product-subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.6em;
}

.product-card .product-top {
  margin-bottom: 0.5em;
}

.product-card a {
  text-decoration: underline;
}

.testimonials-section {
  padding-top: 1em;
  background-color: var(--light-blue);
}

.testimony-subtitle {
  color: var(--accent-color);
}
.testimonials-section h1 {
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1em;
}

.testimonials-section p {
  line-height: 1.2;
  margin-bottom: 1.5em;
}

.testimonials-section .testimonials {
  display: grid;
  align-items: center;
  grid-template-columns: 100%;
  /* grid-template-columns: 3fr 2fr; */
  gap: 20px;
  padding-top: 3em;
  padding-bottom: 0;
}

.testimonials-tesimonies {
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimony {
  width: 100%;
  display: block !important;
  max-width: 274px;
  margin: 0 auto;
  padding: 1em;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 1em;
}

.testimony p {
  font-size: 0.75em;
  line-height: 1.5;
}
.testimony-person {
  display: flex;
  align-items: center;
}
.testimony-person img {
  border-radius: 50%;
  margin-right: 0.5em;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
}

.subscribe-section {
  background: var(--primary-color);
  color: #fff;
  padding: 3em 0;
}

.subscribe-section h1 {
  font-size: 2.5em;
  line-height: 1;
  font-weight: 700;
}

.subscribe-container {
  display: grid;
  grid-template-columns: 100%;
  gap: 30px;
  align-items: center;
}
.subscribe-container form {
  width: 100%;
}

.subscribe-container .form-group {
  display: flex;
  align-items: center;
  padding: 0.5em;
  border: 1px solid rgba(210, 210, 210, 0.3);
  border-radius: 10px;
}
.subscribe-container input {
  flex-grow: 1;
  background: transparent;
  padding: 0 1em;
}

.subscribe-container input,
.subscribe-container input:focus,
.subscribe-container input:target {
  outline: none;
}

button:focus,
button:target,
button:active {
  box-shadow: none !important;
}

footer {
  padding: 2em 0 13em;
  background-image: url("footer-banner.png");
  background-position: bottom;
  background-repeat: repeat-x;
}

footer svg {
  height: 1.5em;
  width: 1.5em;
  fill: var(--primary-color);
}

footer ul {
  list-style: none;
  display: flex;
  align-items: center;
}

footer .footer-left {
  display: flex;
  align-items: center;
}
footer .footer-left ul {
  margin: 0 0.4em;
}

footer .footer-left ul li,
footer .footer-right ul li {
  margin: 0.3em 0.3em;
}
footer .footer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 650px) {
  .products-section .products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  footer .footer {
    flex-direction: row;
  }

  .testimonials-section {
    padding-top: 0;
  }

  .testimonials-section .testimonials {
    display: grid;
    align-items: center;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    padding-top: 0;
    padding-bottom: 0;
  }

  header .nav-container nav {
    display: block;
  }

  header .nav-container nav ul {
    display: flex;
    align-items: center;
    list-style: none;
  }

  header .nav-container nav ul li {
    padding: 0 0.7em;
  }

  .nav-open-toggle {
    display: none;
  }
}

@media (min-width: 1140px) {
  .products-section .products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
  }

  .subscribe-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
  }
}
