@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");
@font-face {
  font-family: "Varien";
  src: url("../fonts/Varien.otf") format("opentype");
}
@font-face {
  font-family: "Dacht";
  src: url("../fonts/Dacht.otf") format("opentype");
}
@font-face {
  font-family: "Clofie";
  src: url("../fonts/Clofie-Regular.ttf") format("truetype");
}
.font-display, .varien {
  font-family: "Varien", sans-serif;
}

.font-header, .dacht {
  font-family: "Dacht", sans-serif;
}

.font-body, .clofie {
  font-family: "Clofie", sans-serif;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

h1 {
  font-size: 40px;
  font-family: "Clofie", sans-serif;
}

h2 {
  font-size: 32px;
  font-family: "Clofie", sans-serif;
}

h3 {
  font-size: 24px;
  font-family: "Clofie", sans-serif;
}

h4 {
  font-size: 20px;
  font-family: "Clofie", sans-serif;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 86px;
  }
  h2 {
    font-size: 64px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 24px;
  }
}
.header-content {
  position: fixed;
  background-color: #12161F;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  z-index: 500;
}
.header-content .header-logo {
  max-width: 150px;
}
.header-content .header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .header-content .header-logo {
    max-width: 200px;
  }
}
.header-content ul {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: row;
  display: none;
  list-style: none;
}
.header-content ul .nav-link a {
  color: white;
  font-family: "Clofie";
  padding: 24px;
  text-decoration: none;
  white-space: nowrap;
}
.header-content ul .nav-link a:hover {
  color: #6BA6A6;
  transition: color 150ms ease;
}
@media (min-width: 1024px) {
  .header-content ul {
    display: flex;
  }
}

section.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 96px;
}
section.hero h1 {
  text-align: center;
  max-width: 1200px;
  margin: 0px;
}
section.hero h1 b {
  color: #6BA6A6;
}
section.hero p {
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  section.hero p {
    max-width: 490px;
    text-align: center;
  }
  section.hero {
    gap: 24px;
  }
}

.button-primary {
  text-transform: uppercase;
  background-color: #ffffff;
  color: #12161F;
  padding: 12px 32px 10px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
}
.button-primary:hover {
  background-color: #6BA6A6;
  transition: background-color 300ms ease;
}

.gradient-section {
  position: relative;
  padding: 5rem 1rem;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  margin-top: 0rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .gradient-section {
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    margin-top: -3rem;
    padding: 5rem 2rem;
  }
}
.gradient-section .profile {
  position: relative;
  z-index: 10;
  display: grid;
  margin-top: 0rem;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
@media (min-width: 1024px) {
  .gradient-section .profile {
    margin-top: 10rem;
  }
}
.gradient-section .profile .profile-images {
  grid-column: span 12;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .gradient-section .profile .profile-images {
    grid-column: span 5;
  }
}
.gradient-section .profile .profile-images .profile-images__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.gradient-section .profile .profile-images .profile-images__image {
  background-color: #12161F;
  border-radius: 100%;
  padding: 8px;
  overflow: hidden;
}
.gradient-section .profile .profile-images .profile-images__image-one {
  width: 180px;
  height: 180px;
}
@media (min-width: 1024px) {
  .gradient-section .profile .profile-images .profile-images__image-one {
    width: 240px;
    height: 240px;
  }
}
.gradient-section .profile .profile-images .profile-images__image-two {
  width: 100px;
  height: 100px;
  margin: -3.5rem;
}
@media (min-width: 1024px) {
  .gradient-section .profile .profile-images .profile-images__image-two {
    width: 150px;
    height: 150px;
  }
}
.gradient-section .profile .profile-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}
.gradient-section .profile .profile-text {
  grid-column: span 12;
  background: #12161F;
  padding: 1rem;
  border-radius: 1rem;
  margin-top: 3rem;
  height: fit-content;
}
@media (min-width: 1024px) {
  .gradient-section .profile .profile-text {
    grid-column: span 7;
    margin-top: 0rem;
    padding: 2rem;
  }
}
.gradient-section .profile .profile-text h2 {
  margin: 0px;
}
.gradient-section .profile .profile-text p {
  font-weight: 400;
}
.gradient-section .gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.gradient-section .gradient-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  margin: 24px;
}
.services .tagline {
  font-size: 20px;
  text-align: center;
}
.services .container h2 {
  margin: 40px 0px 32px 0px;
  text-align: center;
}
.services .container .services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.services .container .services-grid .service {
  grid-column: span 12;
  background-color: #ffffff;
  border-radius: 25px;
  color: #12161F;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .services .container .services-grid .service {
    grid-column: span 4;
  }
}
.services .container .services-grid .service .service-header {
  padding: 16px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.services .container .services-grid .service .service-header h4 {
  color: #6BA6A6;
}
.services .container .services-grid .service .service-header .icon-container {
  height: 80px;
  width: 80px;
  margin-right: 24px;
}
.services .container .services-grid .service .service-header .icon-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.services .container .services-grid .service .service-header .header-text {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.services .container .services-grid .service h3 {
  text-align: center;
  color: #6BA6A6;
  width: 100%;
  margin: 0px 0px 4px 0px;
}
.services .container .services-grid .service h3 span {
  color: #6BA6A6;
}
.services .container .services-grid .service h4 {
  margin: 0px;
  text-align: center;
  font-size: 20px;
}
.services .container .services-grid .service ul {
  list-style: none;
  padding-left: 0px;
  margin: 0px;
  padding: 8px 16px;
  background-color: #6BA6A6;
  height: 100%;
}
.services .container .services-grid .service ul li {
  width: 100%;
  text-align: center;
  padding: 8px 0px;
  color: #ffffff;
  font-size: 20px;
}
.services .container .services-grid .service ul li:last-child {
  border-bottom: 0px;
}

.faqs .container h2 {
  margin: 40px 0px 32px 0px;
  text-align: center;
}
.faqs .container .faq-container {
  border: 1px solid #6BA6A6;
  border-radius: 25px;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.faqs .container .faq-container li {
  border-bottom: 1px solid #6BA6A6;
}
.faqs .container .faq-container li:last-child {
  border-bottom: 0px;
}
.faqs .container .faq-container li .faq-question {
  background-color: transparent;
  color: #ffffff;
  font-family: "Clofie";
  padding: 0px 12px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 20px;
  border: 0px;
  font-weight: 700;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
}
.faqs .container .faq-container li .faq-question:hover {
  color: #6BA6A6;
  transition: color 0.2s;
}
.faqs .container .faq-container li .faq-question p {
  text-align: start;
}
.faqs .container .faq-container li .faq-answer {
  display: none;
}
.faqs .container .faq-container li .faq-answer.active {
  display: block;
  font-size: 20px;
  padding: 0px 12px;
}
.faqs .container .faq-container li.active .faq-question .icon-chevron {
  transform: rotate(180deg);
}
.faqs .container .faq-container li.active .faq-question {
  color: #6BA6A6;
}
.faqs .container .faq-container li.active .faq-answer {
  display: block;
  font-size: 20px;
  padding: 0px 12px;
}

.icon-chevron {
  width: 36px;
  height: 36px;
}

.divider {
  padding: 24px;
}

footer {
  position: relative;
  padding: 2rem 1rem;
  clip-path: polygon(100% 10%, 0 0, 0 100%, 100% 100%);
  margin-top: 0rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  footer {
    clip-path: polygon(100% 40%, 0 0, 0 100%, 100% 100%);
    padding: 10rem 2rem 2rem 2rem;
  }
}
footer .footer-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 10;
}
footer .gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
footer .gradient-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .footer-logo {
  grid-column: span 12;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: end;
}
@media (min-width: 1024px) {
  footer .footer-logo {
    grid-column: span 4;
  }
}
footer .footer-logo img {
  width: 100%;
  object-fit: contain;
}
footer .footer-contact {
  grid-column: span 13;
  grid-column-start: 1;
  grid-column-end: 13;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  footer .footer-contact {
    grid-column: span 3;
    grid-column-start: 10;
    grid-column-end: 13;
    display: flex;
    align-items: end;
    justify-content: end;
  }
}
footer .footer-bottom {
  border-top: 1px solid white;
  padding: 8px 0px;
  grid-column: span 12;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
footer .socials {
  margin-left: 0px;
  padding-top: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 1024px) {
  footer .socials {
    padding-top: 40px;
    margin-left: 38px;
  }
}
footer .socials a {
  color: white;
  margin-right: 8px;
}
footer .socials img {
  width: 24px;
  height: 24px;
}
footer .socials .email {
  margin-right: 16px;
}

.blog-wrapper {
  max-width: 1440px;
  padding: 0px 24px;
  margin: 80px 0px;
}
@media (min-width: 1024px) {
  .blog-wrapper {
    margin: 128px auto;
  }
}
.blog-wrapper h1 {
  text-align: center;
}
.blog-wrapper .blog-posts {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.blog-wrapper .blog-posts article {
  grid-column: span 4;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.blog-wrapper .blog-posts article:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog-wrapper .blog-posts article .post-content {
  padding: 1rem;
}
.blog-wrapper .blog-posts article .image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-wrapper .blog-posts article .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-wrapper .blog-posts article h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.blog-wrapper .blog-posts article h2 a {
  text-decoration: none;
  color: #222;
  transition: color 300ms ease;
}
.blog-wrapper .blog-posts article h2 a:hover {
  color: #0073aa;
}
.blog-wrapper .blog-posts article .meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.blog-wrapper .blog-posts article p {
  color: #333;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .blog-wrapper .blog-posts article {
    grid-column: span 12;
  }
}

.single-post .post-container .post-hero {
  margin-top: 40px;
  padding: 4rem 2rem 0rem 2rem;
}
@media (min-width: 1024px) {
  .single-post .post-container .post-hero {
    padding: 4rem 2rem;
    margin-top: 80px;
  }
}
.single-post .post-container .post-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  align-items: center;
}
.single-post .post-container .post-hero .post-hero__image {
  grid-column: span 12;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .single-post .post-container .post-hero .post-hero__image {
    grid-column: span 6;
  }
}
.single-post .post-container .post-hero .post-hero__image img {
  width: 100%;
  height: 100%;
  max-height: 30vh;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .single-post .post-container .post-hero .post-hero__image img {
    max-height: 50vh;
  }
}
.single-post .post-container .post-hero__content {
  grid-column: span 6;
}
.single-post .post-container .post-hero__content .post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.single-post .post-container .post-hero__content .meta {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.single-post .post-container .post-hero__content .excerpt {
  font-size: 1.1rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .single-post .post-container .post-hero__inner {
    grid-template-columns: 1fr;
  }
  .single-post .post-container .post-hero__image {
    grid-column: span 12;
  }
  .single-post .post-container .post-hero__content {
    grid-column: span 12;
    margin-top: 0rem;
  }
}
.single-post .post-container .post-body {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 24px;
  min-height: 90dvh;
}
.single-post .post-container .post-body a {
  color: #6BA6A6;
  text-decoration: underline;
  transition: color 150ms ease;
}
.single-post .post-container .post-body a:hover {
  color: #ffffff;
}
.single-post .post-container .post-body article {
  line-height: 1.8;
}
.single-post .post-container .post-body article h2, .single-post .post-container .post-body article h3, .single-post .post-container .post-body article h4, .single-post .post-container .post-body article h5, .single-post .post-container .post-body article h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 32px;
}
.single-post .post-container .post-body article p {
  margin-bottom: 1.5rem;
}
.single-post .post-container .post-body article img {
  width: 100%;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

body {
  background-color: #12161F;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body .highlight-teal {
  color: #6BA6A6;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1440px;
  padding: 0px 24px;
  margin: 0px auto;
}

h1, h2, h3, h4, h5, h6 {
  color: white;
}

/*# sourceMappingURL=main.css.map */
