@charset "UTF-8";
:root {
  --headerHeight: 86px;
  --primary-teal: #167d89;
  --ocean-blue: #2b9cb9;
  --light-sky: #a8d5de;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: var(--headerHeight);
  -webkit-tap-highlight-color: transparent;
}

/* -------------------------------- TYPOGRAPHY -------------------------------- */
h1 {
  font-size: clamp(2.5rem, 4.5vw + 1rem, 5rem);
  line-height: 1.15;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 2vw + 1rem, 1.75rem);
  line-height: 1.25;
}

h4 {
  font-size: clamp(1.25rem, 2vw + 1rem, 1.5rem);
  line-height: 1.3;
}

h5 {
  font-size: clamp(1.1rem, 1.5vw + 1rem, 1.4rem);
  line-height: 1.35;
}

p {
  line-height: 1.6;
}

/* -------------------------------- HEADER -------------------------------- */
header {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 5px 20px;
  height: var(--headerHeight);
}
header .header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
header .header-content nav.no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
header .header-content nav a {
  text-decoration: none;
  color: black;
}
header .header-content .logo img {
  padding: 10px;
}
header .btn {
  -webkit-animation: 1s pulse infinite;
          animation: 1s pulse infinite;
}

.line {
  font-weight: 600;
  color: rgb(214, 214, 214);
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
}
.socials i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 19px;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary-teal);
  color: white;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#close-menu,
#open-menu {
  display: none;
  cursor: pointer;
}

/* -------------------------------- CENTERED TEXT -------------------------------- */
.centered-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}
.centered-text p {
  max-width: 900px;
  margin: 0 auto;
}

/* -------------------------------- TITLE -------------------------------- */
.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 20px;
  margin-bottom: 60px;
}
.title p {
  max-width: 900px;
  margin: 0 auto;
}

/* -------------------------------- HERO -------------------------------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
}
.hero .hero-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
  height: calc(100vh - var(--headerHeight));
  min-height: 600px;
  z-index: 1;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: 0.6s opacity, 0.6s -webkit-transform;
  transition: 0.6s opacity, 0.6s -webkit-transform;
  transition: 0.6s opacity, 0.6s transform;
  transition: 0.6s opacity, 0.6s transform, 0.6s -webkit-transform;
}
.hero .hero-content p {
  max-width: 700px;
}
.hero .hero-content h1,
.hero .hero-content p {
  text-shadow: rgba(0, 0, 0, 0.6705882353) 1px 0 10px;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.visible {
  opacity: 1 !important;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  margin-top: 10px;
}

/* -------------------------------- BANNERS -------------------------------- */
.banner {
  color: white;
  background: linear-gradient(135deg, var(--light-sky), var(--ocean-blue));
  position: relative;
}
.banner .banner-content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 20px;
  height: 500px;
  background: rgba(0, 0, 0, 0.205);
}
.banner h1 {
  opacity: 0;
  -webkit-transition: 0.6s opacity, 0.6s -webkit-transform;
  transition: 0.6s opacity, 0.6s -webkit-transform;
  transition: 0.6s opacity, 0.6s transform;
  transition: 0.6s opacity, 0.6s transform, 0.6s -webkit-transform;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  text-shadow: rgba(0, 0, 0, 0.6705882353) 1px 0 10px;
}
.banner p {
  max-width: 1000px;
  text-shadow: rgba(0, 0, 0, 0.6705882353) 1px 0 10px;
}
.banner.bg-about {
  background: url(../assets/images/IMG_20230716_193358.webp);
  background-size: cover;
  background-position: center;
}
.banner.bg-services video {
  -webkit-filter: saturate(1.5);
          filter: saturate(1.5);
}
.banner.bg-contact {
  background: url(../assets/images/St\ Tropez.webp);
  background-size: cover;
  background-position: center;
}
.banner.bg-blog {
  background: url(../assets/images/Soulac\ Storm.jpeg);
  background-size: cover;
  background-position: center;
}
.banner.bg-sailing {
  background: url(../assets/images/bg-49er.webp);
  background-size: cover;
  background-position: center;
}
.banner.bg-farming {
  background: url(../assets/images/bg-Supercell\ Norwich.webp);
  background-size: cover;
  background-position: center;
}
.banner.bg-wah {
  background: url(../assets/images/highrise.webp);
  background-size: cover;
  background-position: center;
}
.banner.bg-marine {
  background: url(../assets/images/bg-hull-ship.webp);
  background-size: cover;
  background-position: center;
}
.banner.blog-banner {
  height: auto;
  background: url(../assets/images/Soulac\ Storm.jpeg);
  background-size: cover;
  background-position: center;
  padding: 0;
}
.banner.blog-banner .banner-content {
  height: auto;
}
.banner.blog-banner .article-top {
  padding: 60px 0px;
  max-width: 1160px;
  width: 100%;
}
.banner.blog-banner .article-top h1 {
  text-align: start;
  font-size: clamp(2.5rem, 4.5vw + 1rem, 4.5rem);
  max-width: 870px;
  margin-bottom: 15px;
}
.banner.blog-banner .article-top .article-date {
  display: block;
  text-align: start;
  margin-bottom: 15px;
}
.banner.blog-banner .article-top .article-author {
  display: block;
  text-align: start;
}
.banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.banner:has(video) .banner-content {
  background: linear-gradient(135deg, rgba(22, 125, 137, 0.7), rgba(43, 156, 185, 0.6));
}

/* -------------------------------- CONTAINER -------------------------------- */
.container-full {
  padding: 80px 0;
}
.container-full.dark {
  background: linear-gradient(135deg, var(--light-sky), var(--ocean-blue));
}
.container-full.dark .title,
.container-full.dark .centered-text {
  color: white;
}

.container {
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.container.visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* -------------------------------- INTEGRATION -------------------------------- */
.integration {
  border-radius: 20px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 1100px;
  width: auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 60px auto;
}
.integration * {
  color: black !important;
}

.bg-hww {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 125, 137, 0.5098039216)), to(rgba(22, 125, 137, 0.5098039216))), url(../assets/images/IMG_20230716_193358.webp) !important;
  background: linear-gradient(to bottom, rgba(22, 125, 137, 0.5098039216), rgba(22, 125, 137, 0.5098039216)), url(../assets/images/IMG_20230716_193358.webp) !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.bg-hww.bg-service {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 125, 137, 0.5098039216)), to(rgba(22, 125, 137, 0.5098039216))), url(../assets/images/Weather\ Routing.png) !important;
  background: linear-gradient(to bottom, rgba(22, 125, 137, 0.5098039216), rgba(22, 125, 137, 0.5098039216)), url(../assets/images/Weather\ Routing.png) !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.bg-hww.bg-about {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 125, 137, 0.5098039216)), to(rgba(22, 125, 137, 0.5098039216))), url(../assets/images/Gironde\ Summer.jpeg) !important;
  background: linear-gradient(to bottom, rgba(22, 125, 137, 0.5098039216), rgba(22, 125, 137, 0.5098039216)), url(../assets/images/Gironde\ Summer.jpeg) !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* -------------------------------- BUTTONS -------------------------------- */
.btn {
  background: var(--primary-teal);
  color: white !important;
  padding: 14px 25px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
}
.btn.light {
  background: white !important;
  color: black !important;
}
.btn:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2), 0 6px 15px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2), 0 6px 15px 0 rgba(0, 0, 0, 0.5);
}

/* -------------------------------- ABOUT -------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}
.about-grid img {
  width: 100%;
  border-radius: 10px;
}
.about-grid .about-grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.about-grid-imgs {
  position: relative;
  aspect-ratio: 16/12;
}
.about-grid-imgs img:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  height: auto;
}
.about-grid-imgs img:nth-child(2) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  height: auto;
}

/* -------------------------------- ABOUT PAGE -------------------------------- */
.about-page {
  display: grid;
  grid-template-columns: 5fr 8fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.about-page img {
  width: 100%;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  height: auto;
}
.about-page .about-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

/* -------------------------------- BOXES -------------------------------- */
.boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--light-sky), var(--ocean-blue));
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.096);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.096);
  color: white;
}
.box h3 {
  color: white;
}
.box p {
  text-transform: Capitalize;
}

/* ------------------- Contact ------------------- */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.services .service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  color: black;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.096);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.096);
}
.services .service img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 340px;
}
.services .service .service-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.services .service .service-text p {
  margin-bottom: 10px;
}
.services .service .service-text .btn {
  margin-top: auto;
}

/* ------------------- Contact ------------------- */
.contact {
  display: grid;
  grid-template-columns: 3.7fr 8.3fr;
  margin: 0 auto;
  gap: 25px;
}
.contact p,
.contact a,
.contact h3 {
  text-decoration: none;
  color: rgb(255, 255, 255);
}
.contact h3 {
  margin-bottom: 25px;
}
.contact .contact-left,
.contact .contact-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--light-sky));
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.253);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.253);
}
.contact img {
  margin-top: auto;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
form input,
form textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid rgb(255, 255, 255);
  font-size: 20px;
  outline: none;
  font-family: inherit;
  background-color: transparent;
  color: white;
}
form button {
  font-size: 20px;
  border: none;
  font-family: inherit;
  border-radius: 5px;
  margin-top: 20px;
}
form label.checkbox-label {
  color: white !important;
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  opacity: 1;
  color: white;
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  opacity: 1;
  color: white;
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  opacity: 1;
  color: white;
}
form input::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  opacity: 1;
  color: white;
}
form input::placeholder,
form textarea::placeholder {
  opacity: 1;
  color: white;
}
form .checkbox-label {
  display: block;
}
form .checkbox-label input {
  width: auto;
  color: white;
}
form .checkbox-label a {
  text-decoration: underline;
  font-weight: bold;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 20px 20px rgba(35, 35, 35, 0);
          box-shadow: inset 0 0 20px 20px rgba(35, 35, 35, 0);
}

iframe {
  display: block;
  width: 100%;
  height: 550px;
  font-size: 0;
}

/* ------------------- Grids ------------------- */
.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.grid-4 .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 15px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.grid-4 .grid-item i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  color: var(--primary-teal);
  width: 50px;
  height: 50px;
  padding: 10px;
  background-color: var(--primary-teal);
  color: white;
  border-radius: 50%;
}
.grid-4 .grid-item:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.grid-3 .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 15px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.grid-3 .grid-item:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.grid-3 i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  color: var(--primary-teal);
  width: 50px;
  height: 50px;
  padding: 10px;
  background-color: var(--primary-teal);
  color: white;
  border-radius: 50%;
}

/* -------------------------------------------------- Articles ------------------------------------------------ */
#articles {
  max-width: 1480px;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
#articles .tags {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 5px;
}
#articles hr {
  margin: 20px 0;
}

.article-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 25px;
}

.article-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #5d5d5d;
  background-color: white;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  opacity: 0;
  -webkit-animation: fadeIn 0.4s ease-in-out forwards;
          animation: fadeIn 0.4s ease-in-out forwards;
}
.article-box .article-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.article-box .article-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.article-box .article-box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.article-box h3 {
  font-size: 18px;
  color: black;
  font-weight: bold;
}
.article-box p {
  font-size: 15px;
}
.article-box small {
  margin-top: auto;
}
.article-box:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#search-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tags-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tags-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.tags .tag {
  padding: 5px 10px;
  background-color: white;
  color: black;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
}
.tags .tag.active {
  background-color: var(--primary-teal);
  color: white;
}

#show-more {
  display: none;
  font-size: 16px;
  border-radius: 10px;
  background-color: #e5e5e5;
  border: 2px solid #e7e7e7;
  padding: 10px;
  cursor: pointer;
  color: black;
  margin: 0 auto;
  font-family: inherit;
  margin-top: 25px;
}

/* ------------------ Article & Legal ----------------- */
article,
.legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}
article h2,
.legal h2 {
  text-align: start;
  font-size: 30px;
}
article ul,
.legal ul {
  margin-left: 25px;
}
article .article-cover,
.legal .article-cover {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: auto;
}

.article-chapter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.article-chapter h2 {
  margin-bottom: 0;
}
.article-chapter p,
.article-chapter li {
  color: #5d5d5d;
}

/* ------------------ Search ----------------- */
.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  padding: 10px;
  gap: 10px;
  border-radius: 20px;
  color: black;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#search-input {
  font-family: inherit;
  border: none;
  outline: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  background: transparent;
  color: black;
}

#reset-search,
#reset-tags {
  display: none;
  cursor: pointer;
}
#reset-search.show,
#reset-tags.show {
  display: block;
}

.search-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}

/* ------------------ Sort ----------------- */
.sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 10px;
}

#sort-select {
  font-family: inherit;
  font-size: 16px;
  background-color: white;
  border: none;
  cursor: pointer;
}

/* ------------------- Pricing ------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 20px;
}
.pricing-grid.pricing-grid-small {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid-title {
  text-align: center;
  font-size: 20px;
  color: white;
  font-weight: 700;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background: white;
}
.card:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.service-name {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
}

.price {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 4px;
  line-height: 1.1;
}

.price-note {
  font-size: 15px;
  margin-bottom: 4px;
}

.compliance-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--primary-teal);
  color: white;
}
.compliance-tag.warning {
  background-color: rgb(255, 105, 105);
  color: white;
}

ul.features {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
ul.features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.4;
}
ul.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
ul.features li.excluded::before {
  content: "✕";
}

.footnote {
  margin-top: 16px;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 8px;
}

.testimonials {
  display: grid;
  gap: 20px;
}
.testimonials .testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.testimonials .testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  /*  align-items: center; */
  /* text-align: center; */
  margin-top: auto;
}
.testimonials .testimonial-name {
  font-size: 18px;
  font-weight: 800;
}
.testimonials .testimonial:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.testimonials .fa-solid {
  font-size: 50px;
  color: var(--primary-teal);
}
.testimonials .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  margin-bottom: 5px;
}
.testimonials .stars i {
  color: var(--primary-teal);
  font-size: 14px;
}

/* ------------------- Footer ------------------- */
footer {
  background-color: black;
  color: white;
}
footer .footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
  padding-bottom: 200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  border-bottom: 1px solid rgb(53, 53, 53);
}
footer .footer-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
}
footer .footer-content-item h5 {
  margin-bottom: 10px;
}
footer .footer-content-item p {
  max-width: 340px;
}
footer img {
  border-radius: 10px;
}
footer a {
  text-decoration: none;
  color: white;
}
footer .copyright {
  padding: 15px 20px;
  text-align: center;
}

/* ------------------- Media Queries ------------------- */
@media screen and (max-width: 1440px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1280px) {
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  header .header-content nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: white;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    gap: 0;
  }
  header .header-content nav a {
    padding: 10px 0;
    font-size: 17px;
  }
  header .header-content nav .btn {
    padding: 14px 25px;
    margin: 10px auto;
  }
  header .header-content nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: all;
    opacity: 1;
  }
  .line {
    display: none;
  }
  #close-menu,
  #open-menu {
    display: block;
  }
  #close-menu {
    position: absolute;
    top: 30px;
    right: 20px;
  }
  .socials i {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .container-full {
    padding: 40px 0;
  }
  .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact img {
    display: none;
  }
  .contact h3 {
    margin-bottom: 10px;
  }
  .about-grid {
    display: block;
  }
  .about-grid .about-grid-imgs {
    margin-top: 25px;
  }
  .hero .hero-content {
    padding: 20px;
    min-height: 425px;
  }
  .banner {
    height: auto;
  }
  .banner .banner-content {
    height: 400px;
  }
  .services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .about-page img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom center;
       object-position: bottom center;
  }
  .article-boxes {
    grid-template-columns: 1fr 1fr;
  }
  footer .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  #articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 25px;
  }
  .tags-col {
    width: 100%;
  }
  .no-results-message {
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .bg-hww {
    background-attachment: unset !important;
    padding: 60px 20px !important;
  }
  .integration {
    margin: 0 auto;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .pricing-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container-full {
    padding: 25px 0;
  }
  .title {
    margin-bottom: 25px;
  }
  .banner {
    height: auto;
  }
  .banner .banner-content {
    height: 260px;
  }
  .boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bg-hww {
    padding: 25px 20px !important;
  }
  .buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .services .service img {
    height: 200px;
  }
  .article-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .search-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .search {
    width: 100%;
  }
  .grid-4,
  .grid-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .testimonials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .hero .hero-content {
    gap: 15px;
  }
  .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #mobile-break {
    display: block !important;
  }
}/*# sourceMappingURL=styles.css.map */