@charset "UTF-8";
:root {
  --navy: #173478;
  --navy-dark: #173478;
  --blue: #3C72F6;
  --blue-soft: #e9efff;
  --sky: #f5f8ff;
  --text: #3B3B3B;
  --muted: #5d6b82;
  --card: #ffffff;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 16px 30px rgba(15, 43, 98, 0.12);
}

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

body {
  font-family: "Rubik", sans-serif;
  color: #3a3a3a;
  background: #ffffff;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
}

h2,
.h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1680px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}

h2,
h3 {
  color: #000000;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1120px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(15, 43, 98, 0.08);
  border-top: 2px solid var(--navy);
}

.sky_sub_title {
  color: var(--blue);
  font-size: 26px;
}
.sky_sub_title:not(:last-of-type) {
  margin-bottom: 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

.brand img {
  width: 180px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-weight: 500;
  font-size: 16px;
  color: #1f2a44;
  margin-left: auto;
  justify-content: flex-end;
}

.nav-links a,
.dropdown-toggle {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.dropdown-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 160px;
  background: #ffffff;
  border: 1px solid #e3e9f6;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 32, 67, 0.12);
  padding: 8px;
  display: none;
  flex-direction: column;
  z-index: 10;
}

.dropdown-menu a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #1f2a44;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #f2f6ff;
  outline: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: flex;
}

.dropdown-toggle:focus-visible {
  outline: 2px solid rgba(23, 52, 120, 0.35);
  outline-offset: 4px;
  border-radius: 6px;
}

.nav-search {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e3e9f6;
  background: #ffffff;
  color: #1f2a44;
}

.nav-search svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  color: #ffffff;
  padding: 110px 0 110px;
  background: #0b1f4b;
  overflow: hidden;
}
.hero h1 {
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url("assets/header.png");
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hero-content {
  position: relative;
  text-align: center;
  display: grid;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-weight: 500;
}

.primary {
  background: var(--blue);
  color: #ffffff;
  padding: 18px 24px;
  font-size: 18px;
  border-radius: 2px;
  width: 100%;
  max-width: 210px;
  font-weight: 600;
}
.primary:hover {
  background: #335edc;
}

.ghost {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.about {
  padding: 100px 0;
}
.about .role {
  font-size: 24px;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 600;
  margin-top: 20px;
}
.about p {
  margin-top: 40px;
}
.about .about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.about .profile-image {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid #f0f4ff;
  box-shadow: var(--shadow);
}
.about .link {
  color: var(--blue);
  font-weight: 700;
}

.pillars {
  background: var(--sky);
  padding: 100px 0;
}

.pillars h2,
.work h2,
.testimonials h2,
.videos h2,
.cta h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 38px;
}

.cta h2 {
  text-align: left;
  margin-bottom: 0;
}

.pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--card);
  padding: 40px 40px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 26px;
  align-items: flex-start;
  box-shadow: 0 8px 20px rgba(15, 43, 98, 0.08);
}
.pillar-card p {
  color: var(--text);
}
.pillar-card h3 {
  margin-bottom: 8px;
  font-size: 31px;
  font-weight: 600;
}
.pillar-card:nth-child(2n) .icon {
  background: var(--blue);
}

.icon {
  width: 113px;
  height: 113px;
  flex: 0 0 113px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  padding: 6px;
}

.icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.physical_training {
  padding: 100px 0;
  background-image: url("assets/bg-shape.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 27% auto;
}
.physical_training .two-col-images {
  display: flex;
  align-items: flex-start;
  margin: 60px 0px;
  gap: 42px;
}
@media (max-width: 767px) {
  .physical_training .two-col-images {
    flex-direction: column;
    margin: 40px 0px;
    gap: 24px;
  }
}
.physical_training .two-col-images img {
  border-radius: 24px;
  max-width: 100%;
}
.physical_training p {
  margin-bottom: 18px;
}

.work {
  background: var(--sky);
  padding: 100px 0;
}

.work-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.work-card {
  background: var(--navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  grid-template-columns: 150px 1fr;
  gap: 36px;
  padding: 25px 20px;
}
.work-card .img_wrap {
  flex: 0 0 367px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: 367px;
  max-height: 385px;
}
.work-card .img_wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-card .work-body {
  padding: 18px 16px 18px 0;
}
.work-card .work-body h3 {
  font-size: 28px;
  margin-bottom: 28px;
  color: #ffffff;
}
.work-card .work-body p {
  font-size: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
}
.work-card .work-body a,
.work-card .work-body button {
  background: var(--blue);
  color: #ffffff;
  padding: 18px 24px;
  font-size: 18px;
  border-radius: 4px;
  width: 100%;
  max-width: 210px;
  font-weight: 600;
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.work-card .work-body a:hover,
.work-card .work-body button:hover {
  background: #335edc;
}

.cta_newsletter {
  padding: 100px 0;
  text-align: center;
}
.cta_newsletter .title {
  margin-bottom: 50px;
  line-height: 3rem;
}
.cta_newsletter .img_card {
  max-height: 572px;
  width: 100%;
  min-height: 200px;
  background-color: #f1f1f1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.cta_newsletter .img_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.cta_newsletter .img_card > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
.cta_newsletter .img_card .overlay_btn {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 20px rgba(45, 91, 255, 0.22);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow);
}
.cta_newsletter .img_card .overlay_btn:hover {
  background: #335edc;
}
.cta_newsletter .newslatter_form {
  margin-top: 70px;
}
.cta_newsletter .newslatter_form h4 {
  margin-bottom: 30px;
}
.cta_newsletter .newslatter_form form {
  display: flex;
  gap: 26px;
}
.cta_newsletter .newslatter_form form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid #d3dbef;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
}
.cta_newsletter .newslatter_form form input:focus {
  border-color: var(--blue);
}
.cta_newsletter .newslatter_form form .primary {
  width: auto;
  max-width: 100%;
}

.testimonial_card {
  box-shadow: var(--shadow);
  background-color: #ffffff;
  transition: transform 0.3s ease;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 50px 34px;
  gap: 22px;
  transition: opacity 0.5s ease;
  /* max-width: 380px; */
  width: 100%;
}
.testimonial_card > img {
  max-width: 40px;
}
.testimonial_card p {
  font-size: 16px;
  line-height: 1.5;
}

.testimonial.slick-slide {
  padding: 40px 15px;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}
.testimonial.slick-slide.slick-active {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.testimonial.slick-slide.slick-current.slick-active .testimonial_card {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  background-color: var(--blue);
  color: #ffffff;
}
.testimonial.slick-slide.slick-current.slick-active .testimonial_card > img {
  filter: brightness(0) invert(1);
}
.testimonial.slick-slide.slick-current.slick-active .testimonial_card .author strong,
.testimonial.slick-slide.slick-current.slick-active .testimonial_card .author span {
  color: rgb(255, 255, 255);
}

.slick-dots li {
  margin: 0px;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #CAD1E0;
  border: none;
  padding: 0;
  font-size: 0;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  background: var(--blue);
}
.slick-dots li button::before {
  display: none;
}
.slick-dots li.slick-active button {
  background: var(--blue);
  width: 14px;
  height: 14px;
}

.testimonials {
  background-color: var(--sky);
  padding: 70px 0;
}

.author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.author strong {
  color: #000000;
  display: block;
  margin: 4px 0 0 0;
  font-size: 15px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
}

.author span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.blog_posts {
  padding: 100px 0;
  text-align: center;
}
.blog_posts .posts_grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 60px;
  margin-bottom: 60px;
}
.blog_posts .posts_grid .post_card {
  text-align: left;
}
.blog_posts .posts_grid .post_card .post_img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  min-height: 200px;
  background-color: #f1f1f1;
  margin-bottom: 22px;
}
.blog_posts .posts_grid .post_card .post_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_posts .posts_grid .post_card .post_details .post_meta {
  font-size: 12px;
  margin-bottom: 8px;
}
.blog_posts .posts_grid .post_card .post_details .post_meta i {
  margin-right: 6px;
}
.blog_posts .posts_grid .post_card .post_details .post_meta span:not(:last-child)::after {
  content: "•";
  margin: 0 6px;
}
.blog_posts .posts_grid .post_card .post_details h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}
.blog_posts .posts_grid .post_card .post_details .link {
  color: var(--blue);
  font-weight: 700;
}
.blog_posts .posts_grid .post_card .post_details .link i {
  font-size: 14px;
}
.blog_posts .primary {
  margin-top: 20px;
  width: 100%;
  max-width: 320px;
}

.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 18px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .cta-card {
    grid-template-columns: 1fr;
  }
  .cta-card img {
    height: 240px;
  }
  .work-card {
    grid-template-columns: 1fr;
  }
  .work-card img {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 70px 0 90px;
  }
  .two-col-images {
    grid-template-columns: 1fr;
  }
  .two-col-images img {
    height: 180px;
  }
}
#videoModal {
  display: none !important;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

#videoModal .et_pb_video {
  max-width: 90%;
  max-height: 80vh;
}

#videoModal .et_pb_video_box video,
#videoModal .et_pb_video_box iframe {
  width: 100% !important;
  height: 100% !important;
  max-height: calc(90vh - 80px);
  max-width: 90vw;
}

#videoModal.show {
  display: flex !important;
  transition: all 0.3s ease;
}

div#openVideoModal:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  background: #3C72F6;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
  border-radius: 50%;
  background-image: url("/wp-content/themes/peakLeakSucced/assets/play_icon.png");
  background-repeat: no-repeat;
  background-position: center;
}

div#openVideoModal:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  background-repeat: no-repeat;
}

div#openVideoModal {
  cursor: pointer;
  transition: all 0.2s;
}

div#openVideoModal:hover img {
  transform: scale(1.2);
}

div#openVideoModal {
  cursor: pointer;
  transition: all 0.2s;
}
div#openVideoModal img {
  transition: all 0.3s ease;
}

.video-modal-close {
  position: fixed;
  right: 14px;
  top: 118px;
  z-index: 9999;
  cursor: pointer;
}

@media (min-width: 981px) {
  body .et_pb_gutters3 .et_pb_column_2_3,
  body .et_pb_gutters3.et_pb_row .et_pb_column_2_3 {
    width: 67.833%;
  }
  body .et_pb_gutters3 .et_pb_column,
  body .et_pb_gutters3.et_pb_row .et_pb_column {
    margin-right: 2.5%;
  }
  body .et_pb_gutters3 .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3,
  body .et_pb_gutters3.et_pb_row .et_pb_column_4_4 .et_pb_blog_grid .column.size-1of3 {
    width: 31.667%;
    margin-right: 2.5%;
  }
}/*# sourceMappingURL=styles.css.map */