@charset "UTF-8";
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1400px) {
  .container {
    padding: 0 2rem;
  }
}

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

:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  color: #21372f;
  background-color: #f3f3f3;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  color: #21372f;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 700;
}

p,
li,
a,
span {
  line-height: 150%;
}

p {
  font-family: "Manrope", sans-serif;
  color: #21372f;
  font-size: 16px;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  p {
    font-size: 18px;
  }
}

h1 {
  font-weight: 400;
}

h2,
h3 {
  font-weight: 300;
}

h4 {
  font-weight: 600;
}

h1 {
  font-size: clamp(26px, 4.5vw, 50px);
}

p {
  margin-bottom: 1rem;
}
p strong {
  font-weight: 700;
}

input[type=submit] {
  transition: 0.3s ease;
}

a {
  color: #21372f;
  text-decoration: none;
  transition: 0.3s ease;
}

.scrollTo {
  position: relative;
  top: 4rem;
}

.central {
  text-align: center;
}

.pink {
  color: #c4729e;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: all 0.3s ease;
}
a::after {
  transition: all 0.3s ease;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.borderBottom {
  border-radius: 0% 0% 50% 50%/0% 0% 15px 15px;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .borderBottom {
    border-radius: 0% 0% 50% 50%/0% 0% 20px 20px;
    padding-bottom: 6rem;
  }
}

.ctaSec {
  background: linear-gradient(#32522c 0%, #142212 100%);
  padding: 6rem 0 10rem;
  margin: -3rem 0 -6rem;
  position: relative;
}
@media (min-width: 768px) {
  .ctaSec {
    padding: 7rem 0 11rem;
  }
}
@media (min-width: 1100px) {
  .ctaSec {
    padding: 8rem 0 12rem;
  }
}
.ctaSec .container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 1100px) {
  .ctaSec .container {
    opacity: 0;
    transition: 0.3s ease;
    transform: translateY(50px);
  }
  .ctaSec .container.active {
    transform: translateY(0);
    opacity: 1;
  }
}
.ctaSec .container .titleWrapper h2 {
  margin-bottom: 2rem;
}
.ctaSec .container p {
  margin-bottom: 2.5rem;
  font-size: clamp(1.2rem, 2vw, 2rem);
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .ctaSec .container p {
    max-width: 550px;
  }
}
@media (min-width: 1400px) {
  .ctaSec .container p {
    max-width: 650px;
  }
}
.white {
  color: #f3f3f3;
}

.svgArrow {
  display: inline-block;
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  transition: all 0.3s ease;
}
.svgArrow svg {
  display: block;
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  word-spacing: normal;
  border-radius: 100vw;
  font-weight: 300;
  font-size: 16px;
}
@media (min-width: 768px) {
  .btn,
  .button {
    font-size: 17px;
  }
}
@media (min-width: 1100px) {
  .btn,
  .button {
    font-size: 18px;
    transition: 0.3s ease;
  }
}
@media (min-width: 1200px) {
  .btn,
  .button {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .btn,
  .button {
    font-size: 22px;
  }
}
.btn.readButton,
.button.readButton {
  background-color: #21372f;
  color: #f3f3f3;
  border-radius: 100vw;
}
.btn.darkGreen,
.button.darkGreen {
  background-color: #102210;
  color: #f3f3f3;
}
.btn.darkGreen svg,
.button.darkGreen svg {
  margin-left: 1rem;
}
.btn.black,
.button.black {
  color: #f3f3f3;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  background-color: #21372f;
}
@media (min-width: 1100px) {
  .btn.black,
  .button.black {
    background-color: transparent;
  }
}
.btn.black span,
.button.black span {
  position: relative;
  z-index: 2;
}
.btn.black span:before, .btn.black span:after,
.button.black span:before,
.button.black span:after {
  display: none;
}
@media (min-width: 1100px) {
  .btn.black:before,
  .button.black:before {
    content: "";
    background-color: #21372f;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: 0;
    border-radius: 100vw;
  }
}
@media (min-width: 1100px) {
  .btn.black:after,
  .button.black:after {
    z-index: 1;
    content: "";
    background-color: #f3f3f3;
    border-radius: 100vw;
    height: 6px;
    width: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s ease;
  }
}
@media (min-width: 1100px) {
  .btn.black:hover,
  .button.black:hover {
    color: #21372f;
  }
  .btn.black:hover:after,
  .button.black:hover:after {
    opacity: 1;
    width: 100%;
    height: 100%;
  }
}
.btn span,
.button span {
  display: inline-block;
}
.btn span:before, .btn span:after,
.button span:before,
.button span:after {
  content: " ";
  white-space: pre;
}

@media (min-width: 640px) {
  .textImage.reverse .container {
    flex-direction: row-reverse;
  }
}
.textImage .container {
  padding-top: 2rem;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 640px) {
  .textImage .container {
    padding-top: 3rem;
    gap: 0;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .textImage .container {
    align-items: flex-start;
  }
}
@media (min-width: 1100px) {
  .textImage .container {
    align-items: center;
  }
}
@media (min-width: 640px) {
  .textImage .container .image {
    width: 35%;
  }
}
@media (min-width: 768px) {
  .textImage .container .image {
    width: 40%;
    margin-top: 3rem;
  }
}
@media (min-width: 1100px) {
  .textImage .container .image {
    margin-top: 0;
    width: calc(50% - 2rem);
    padding: 0;
  }
}
.textImage .container .image img {
  border-radius: 30px;
}
.textImage .container .text {
  color: #21372f;
}
@media (min-width: 640px) {
  .textImage .container .text {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .textImage .container .text {
    width: 60%;
  }
}
@media (min-width: 1100px) {
  .textImage .container .text {
    width: 50%;
  }
}
@media (min-width: 640px) {
  .textImage .container .text .inner {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .textImage .container .text .inner {
    padding: 2rem 3rem;
  }
}
@media (min-width: 1100px) {
  .textImage .container .text .inner {
    max-width: 600px;
    padding: 3rem 2.5rem;
  }
}
@media (min-width: 1400px) {
  .textImage .container .text .inner {
    max-width: 650px;
  }
}
.textImage .container .text .inner h4 {
  color: #c4729e;
}
.textImage .container .text .inner p {
  margin-bottom: 2rem;
  font-size: 16px;
}
@media (min-width: 768px) {
  .textImage .container .text .inner p {
    font-size: 18px;
  }
}
@media (min-width: 1100px) {
  .textImage .container .text .inner p {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .textImage .container .text .inner p {
    margin-bottom: 2.5rem;
    font-size: 22px;
  }
}
@media (min-width: 1500px) {
  .textImage .container .text .inner p {
    font-size: 24px;
  }
}
@media (min-width: 1100px) {
  .textImage .container .text .inner p {
    max-width: 470px;
  }
}

.fullImage {
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .fullImage {
    padding: 3rem 0;
  }
}
.fullImage .container img {
  border-radius: 30px;
}

.relatedBlogs .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.relatedBlogs .container .titleWrapper {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .relatedBlogs .container .postsWrapper .posts-grid .card:nth-of-type(3) {
    display: none;
  }
}

.postsWrapper {
  padding-bottom: 3rem;
}
.postsWrapper .posts-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .postsWrapper .posts-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .postsWrapper .posts-grid {
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.postsWrapper .posts-grid .card {
  display: grid;
  grid-template-rows: auto 1fr;
}
.postsWrapper .posts-grid .card .post-thumbnail {
  overflow: hidden;
  aspect-ratio: 415/230;
}
.postsWrapper .posts-grid .card .post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.postsWrapper .posts-grid .card .post-content {
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .postsWrapper .posts-grid .card .post-content {
    grid-template-rows: 1fr 1fr auto auto 1fr;
  }
}
.postsWrapper .posts-grid .card .post-content h2 {
  font-size: 1.3rem;
}
.postsWrapper .posts-grid .card .post-content h2,
.postsWrapper .posts-grid .card .post-content p {
  margin-bottom: 0;
}
.postsWrapper .posts-grid .card .post-content .button {
  height: -moz-fit-content;
  height: fit-content;
}

.formWrapper form .submitWrapper {
  margin-top: 1rem;
}
.formWrapper form .submitWrapper p {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
}
.formWrapper form .submitWrapper p input {
  border: 1px solid #21372f;
  cursor: pointer;
  padding: 1rem 2rem;
  border-radius: 100vw;
  font-size: 1rem;
  background-color: #c4729e;
  color: #f3f3f3;
}
@media (min-width: 1100px) {
  .formWrapper form .submitWrapper p input:hover {
    background-color: #404e40;
  }
}
.formWrapper form .formItem p {
  margin: 0;
}
.formWrapper form .formItem input[type=text],
.formWrapper form .formItem input[type=email],
.formWrapper form .formItem input[type=tel],
.formWrapper form .formItem textarea {
  width: 100%;
  padding: 1rem 0;
  font-family: inherit;
  background-color: transparent;
  font-size: 1rem;
}
.formWrapper form .formItem textarea {
  resize: none;
  border-top: none;
}

.backTo {
  display: inline-flex;
  align-items: center;
}
.backTo svg {
  transform: rotate(180deg);
  margin-right: 0.5rem;
}

.hero .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero .container .text {
  width: 100%;
}
.hero .container .down {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .hero .container .down {
    margin-top: 0;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1100px) {
  .hero .container .down {
    width: 60px;
    height: 60px;
    margin-top: -5rem;
  }
}
@media (min-width: 1400px) {
  .hero .container .down {
    margin-left: 3rem;
  }
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1400px) {
  .container {
    padding: 0 2rem;
  }
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 6px;
  z-index: 999999;
  padding: 8px 16px;
  color: #f3f3f3;
  text-decoration: none;
}
.skip-link:focus {
  left: 6px;
}

/* Reserve space for the scrollbar even when it’s not showing */
html.is-locked,
body.is-locked {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

/* Always reserve the scrollbar gutter so layout width doesn't change */
html {
  overflow: -moz-scrollbars-vertical !important;
  overflow-y: scroll !important;
}

html.boot-lock,
body.boot-lock {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

html,
body {
  background-color: #efece8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #21372f;
}

input::-moz-placeholder {
  color: #21372f;
  opacity: 1;
}

input::placeholder {
  color: #21372f;
  opacity: 1;
}

textarea::-moz-placeholder {
  color: #21372f;
  opacity: 1;
}

textarea::placeholder {
  color: #21372f;
  opacity: 1;
}

input,
textarea {
  border: none;
  outline: none;
  box-shadow: none;
}
input:focus,
textarea:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5em;
  padding-bottom: 2em;
}
@media (min-width: 640px) {
  .hero .container {
    min-height: clamp(400px, 85.5vh, 970px);
  }
}
.hero .container .videoWrapper {
  position: relative;
  width: 100%;
  height: clamp(400px, 85.5vh, 970px);
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  background: #efece8;
  padding-top: 0;
  overflow: hidden;
  z-index: 2;
  border-radius: 10px;
}
@media (max-width: 639px) {
  .hero .container .videoWrapper {
    max-height: 500px;
  }
}
.hero .container .videoWrapper .reveal {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.25);
  opacity: 0;
  z-index: 1;
}
.hero .container .videoWrapper .reveal span {
  color: #f3f3f3;
  font-family: "Manrope", sans-serif;
  text-align: center;
  font-size: clamp(40px, 10vw, 64px);
  width: 70%;
  font-weight: 400;
}
@media (min-width: 640px) {
  .hero .container .videoWrapper .reveal span {
    font-size: clamp(26px, 4vw, 64px);
    width: unset;
  }
}
.hero .container .videoWrapper .overlay {
  inset: 0;
  margin: auto;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero .container .videoWrapper .overlay .overlayInner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background: rgb(242, 238, 231);
  background: linear-gradient(180deg, rgb(239, 237, 233) 0%, rgba(242, 238, 231, 0.7) 30%);
}
.hero .container .videoWrapper .overlay h1 {
  position: absolute;
  inset: 0;
  margin: auto;
  text-align: center;
  z-index: 4;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3.35vw, 48px) !important;
  line-height: 120%;
  width: 280px;
  max-width: 1000px;
  color: #21372f;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .hero .container .videoWrapper .overlay h1 {
    width: 75%;
    line-height: 1.5em;
  }
}
.hero .container .videoWrapper iframe.heroVideo,
.hero .container .videoWrapper .videoBG {
  filter: saturate(0);
  position: absolute;
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 0;
  aspect-ratio: auto;
  top: 50%;
  left: 50%;
  background-size: 135vh 86vh !important;
  width: 135vh;
  height: 86vh;
}
@media (min-width: 640px) {
  .hero .container .videoWrapper iframe.heroVideo,
  .hero .container .videoWrapper .videoBG {
    background-size: 177.78vh 100vh !important;
    width: 177.78vh;
    height: 100vh;
  }
}
@media (min-width: 1300px) {
  .hero .container .videoWrapper iframe.heroVideo,
  .hero .container .videoWrapper .videoBG {
    background-size: 190vh 120vh !important;
    width: 190vh;
    height: 120vh;
  }
}
@media (min-width: 1400px) {
  .hero .container .videoWrapper iframe.heroVideo,
  .hero .container .videoWrapper .videoBG {
    background-size: 210vh 135vh !important;
    width: 210vh;
    height: 135vh;
  }
}
.hero .container .videoWrapper .videoBG {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
}
.hero .container .videoWrapper iframe.heroVideo {
  transform: translate(-50%, -50%);
}
.hero .container .hero-dynspacer {
  width: 100%;
}

.stats {
  width: 100%;
  left: 0;
  right: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  .stats {
    position: relative;
    width: unset;
  }
}
.stats .container {
  position: relative;
}
.stats .container .statWrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}
@media (min-width: 550px) {
  .stats .container .statWrap {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .stats .container .statWrap {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }
}
.stats .container .statWrap .stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .stats .container .statWrap .stat {
    aspect-ratio: unset;
    display: inline-block;
    padding: none;
  }
}
.stats .container .statWrap .stat h4 {
  font-size: clamp(24px, 3.3vw, 48px);
  color: #21372f;
  font-weight: 600;
}
@media (min-width: 768px) {
  .stats .container .statWrap .stat h4 {
    color: #fff;
    font-size: clamp(32px, 3.3vw, 48px);
    color: #21372f;
  }
}
.stats .container .statWrap .stat h3 {
  font-size: 1rem;
  margin-bottom: 0;
  color: #21372f;
}
@media (min-width: 768px) {
  .stats .container .statWrap .stat h3 {
    margin-bottom: 1rem;
  }
}
.stats.topStats .statWrap {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #21372f;
}
@media (min-width: 768px) {
  .stats.topStats .statWrap {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .stats.topStats .statWrap .stat {
    padding-bottom: 1rem;
    border-bottom: 1px solid #21372f;
    margin-bottom: 2rem;
  }
}
.stats.lowerStats .statWrap {
  position: relative;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #21372f;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .stats.lowerStats .statWrap {
    padding-bottom: unset;
    border-bottom: none;
    margin-bottom: unset;
  }
}
.stats.lowerStats .statWrap .stat {
  aspect-ratio: unset;
}
@media (min-width: 550px) {
  .stats.lowerStats .statWrap .stat {
    aspect-ratio: unset;
  }
}
@media (min-width: 768px) {
  .stats.lowerStats .statWrap .stat {
    aspect-ratio: unset;
    margin-bottom: 1rem;
  }
}

.threeVideoWrap {
  display: none;
}
@media (min-width: 768px) {
  .threeVideoWrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }
}
.threeVideoWrap .statVideo {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #f5d9d7;
}
.threeVideoWrap .statVideo .statVideoInner {
  container-type: size;
  aspect-ratio: 1/1;
  /* Fallback for browsers without container units */
}
@media (min-width: 550px) {
  .threeVideoWrap .statVideo .statVideoInner {
    aspect-ratio: 1/0.65;
  }
}
@media (min-width: 768px) {
  .threeVideoWrap .statVideo .statVideoInner {
    aspect-ratio: 1/1.05;
  }
}
.threeVideoWrap .statVideo .statVideoInner.svi1 {
  transition: all 0.4s ease-out 0.1s;
}
.threeVideoWrap .statVideo .statVideoInner.svi2 {
  transition: all 0.4s ease-out 0.2s;
  aspect-ratio: 1/1.4;
}
@media (min-width: 420px) {
  .threeVideoWrap .statVideo .statVideoInner.svi2 {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 550px) {
  .threeVideoWrap .statVideo .statVideoInner.svi2 {
    aspect-ratio: 1/0.65;
  }
}
@media (min-width: 768px) {
  .threeVideoWrap .statVideo .statVideoInner.svi2 {
    aspect-ratio: 1/1.05;
  }
}
.threeVideoWrap .statVideo .statVideoInner.svi3 {
  display: none;
  transition: all 0.4s ease-out 0.3s;
}
@media (min-width: 768px) {
  .threeVideoWrap .statVideo .statVideoInner.svi3 {
    display: block;
  }
}
.threeVideoWrap .statVideo .statVideoInner .overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(33, 55, 47, 0.5490196078);
  z-index: 1;
}
@media (min-width: 768px) {
  .threeVideoWrap .statVideo .statVideoInner .overlay {
    display: none;
  }
}
.threeVideoWrap .statVideo .statVideoInner iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Keep it centered */
  transform: translate(-50%, -50%);
  /* Maintain 16:9 */
  aspect-ratio: 16/9;
  /* Cover logic using container query units:
         - width is the larger of 100% of container width or 16/9 of container height
         - height is the larger of 9/16 of container width or 100% of container height
      */
  width: max(100cqw, 177.7777777778cqh);
  height: max(56.25cqw, 100cqh);
  border: 0;
}
@supports not (width: 100cqw) {
  .threeVideoWrap .statVideo .statVideoInner iframe {
    /* Attempt best-effort cover: center, stretch, may slightly crop */
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; /* Works in most modern browsers for iframes */
  }
}

.servicesOne {
  padding: 1.5rem 0 0;
}
.servicesOne .container .sectionInner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #21372f;
}
@media (min-width: 768px) {
  .servicesOne .container .sectionInner {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.servicesOne .container .sectionInner .box {
  position: relative;
}
.servicesOne .container .sectionInner .box.txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .servicesOne .container .sectionInner .box.txt {
    border-bottom: 1px solid #21372f;
  }
}
@media (min-width: 1100px) {
  .servicesOne .container .sectionInner .box.txt {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .servicesOne .container .sectionInner .box.txt.active {
    opacity: 1;
    transform: translateY(0);
  }
}
.servicesOne .container .sectionInner .box.txt h2 {
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 600;
  max-width: 300px;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .servicesOne .container .sectionInner .box.txt h2 {
    max-width: 66%;
    margin-bottom: 3.5rem;
  }
}
.servicesOne .container .sectionInner .box.txt .lower {
  max-width: 595px;
}
.servicesOne .container .sectionInner .box.img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.servicesOne .container .sectionInner .box.img .imgLarge {
  overflow: hidden;
  border-radius: 10px;
}
.servicesOne .container .sectionLower {
  padding: 1.5rem 0;
  border-bottom: 1px solid #21372f;
}
@media (min-width: 768px) {
  .servicesOne .container .sectionLower {
    padding: 3rem 0 1rem;
    border-bottom: none;
  }
}
.servicesOne .container .sectionLower .box.text .section-three-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .servicesOne .container .sectionLower .box.text .section-three-details {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .servicesOne .container .sectionLower .box.text .section-three-details .detail {
    padding-bottom: 2rem;
    border-bottom: 1px solid #21372f;
  }
}
@media (min-width: 1100px) {
  .servicesOne .container .sectionLower .box.text .section-three-details .detail {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .servicesOne .container .sectionLower .box.text .section-three-details .detail.active {
    opacity: 1;
    transform: translateY(0);
  }
  .servicesOne .container .sectionLower .box.text .section-three-details .detail:nth-of-type(2) {
    transition-delay: 0.15s;
  }
  .servicesOne .container .sectionLower .box.text .section-three-details .detail:nth-of-type(3) {
    transition-delay: 0.25s;
  }
}
.servicesOne .container .sectionLower .box.text .section-three-details .detail h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.servicesOne .container .sectionLower .box.text .section-three-details .detail .content {
  font-size: 16px;
}
@media (min-width: 768px) {
  .servicesOne .container .sectionLower .box.text .section-three-details .detail .content {
    font-size: 18px;
  }
}

.servicesTwo {
  display: none;
  padding: 1.5rem 0 0;
}
@media (min-width: 768px) {
  .servicesTwo {
    display: block;
  }
}
.servicesTwo .container .fullWidthVideo {
  position: relative;
}
.servicesTwo .container .fullWidthVideo .videoWrapper {
  position: relative;
  aspect-ratio: 20/8;
  container-type: size;
  border-radius: 10px;
  overflow: hidden;
}
.servicesTwo .container .fullWidthVideo .videoWrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16/9;
  width: max(100cqw, 177.7777777778cqh);
  height: max(56.25cqw, 100cqh);
  border: 0;
}

.servicesThree {
  padding: 1.5rem 0 0;
}
.servicesThree .container .sectionInner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .servicesThree .container .sectionInner {
    grid-template-columns: 1fr 1fr;
    padding-bottom: none;
    border-bottom: none;
  }
}
.servicesThree .container .sectionInner .box {
  position: relative;
}
.servicesThree .container .sectionInner .box.txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .servicesThree .container .sectionInner .box.txt {
    border-bottom: 1px solid #21372f;
  }
}
@media (min-width: 1100px) {
  .servicesThree .container .sectionInner .box.txt {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .servicesThree .container .sectionInner .box.txt.active {
    opacity: 1;
    transform: translateY(0);
  }
}
.servicesThree .container .sectionInner .box.txt h2 {
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 600;
  max-width: 300px;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .servicesThree .container .sectionInner .box.txt h2 {
    max-width: 66%;
    margin-bottom: 3.5rem;
  }
}
.servicesThree .container .sectionInner .box.txt .lower {
  max-width: 595px;
}
.servicesThree .container .sectionInner .box.txt .lower h3 {
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media (min-width: 900px) {
  .servicesThree .container .sectionInner .box.txt .lower h3 {
    margin-bottom: 2.5rem;
  }
}
.servicesThree .container .sectionInner .box.img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.servicesThree .container .sectionInner .box.img .imgLarge {
  overflow: hidden;
  border-radius: 10px;
}
.servicesThree .container .sectionLower {
  padding: 1.5rem 0;
  border-bottom: 1px solid #21372f;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .servicesThree .container .sectionLower {
    padding: 3rem 0 0;
    border-bottom: none;
    margin-bottom: 2rem;
  }
}
.servicesThree .container .sectionLower .box.text .section-three-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .servicesThree .container .sectionLower .box.text .section-three-details {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .servicesThree .container .sectionLower .box.text .section-three-details .detail {
    padding-bottom: 2rem;
    border-bottom: 1px solid #21372f;
  }
}
@media (min-width: 1100px) {
  .servicesThree .container .sectionLower .box.text .section-three-details .detail {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .servicesThree .container .sectionLower .box.text .section-three-details .detail.active {
    opacity: 1;
    transform: translateY(0);
  }
  .servicesThree .container .sectionLower .box.text .section-three-details .detail:nth-of-type(2) {
    transition-delay: 0.15s;
  }
  .servicesThree .container .sectionLower .box.text .section-three-details .detail:nth-of-type(3) {
    transition-delay: 0.25s;
  }
}
.servicesThree .container .sectionLower .box.text .section-three-details .detail h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.servicesThree .container .sectionLower .box.text .section-three-details .detail .content {
  font-size: 16px;
}
@media (min-width: 768px) {
  .servicesThree .container .sectionLower .box.text .section-three-details .detail .content {
    font-size: 18px;
  }
}

.aboutFour .container .sectionInner {
  border-bottom: 1px solid #21372f;
  margin-bottom: 2rem;
}
.aboutFour .container .sectionInner .box {
  position: relative;
}
.aboutFour .container .sectionInner .box.txt {
  padding-bottom: 1rem;
}
@media (min-width: 1100px) {
  .aboutFour .container .sectionInner .box.txt {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  .aboutFour .container .sectionInner .box.txt.active {
    opacity: 1;
    transform: translateY(0);
  }
}
.aboutFour .container .sectionInner .box.txt h2 {
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .aboutFour .container .sectionInner .box.txt h2 {
    margin-bottom: 3.5rem;
  }
}
.aboutFour .container .sectionInner .box.txt .lower {
  display: grid;
}
@media (min-width: 900px) {
  .aboutFour .container .sectionInner .box.txt .lower {
    display: grid;
    max-width: 66.66%;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}/*# sourceMappingURL=services.css.map */