:root {
  --bg: #f2f4f6;
  --text: #5f6974;
  --title: #3f4953;
  --blue: #1ca8dd;
  --deep: #0f5b97;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Lato", "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}
a {
  text-decoration: none;
}
.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}
.section {
  padding: 70px 0;
}

@media (prefers-reduced-motion: no-preference) {
  .will-reveal {
    opacity: 0;
    transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 28px), 0) scale(var(--reveal-scale, 1));
    transition:
      opacity 0.8s var(--motion-ease),
      transform 0.8s var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  .will-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  .reveal-left {
    --reveal-x: -28px;
    --reveal-y: 0;
  }
  .reveal-right {
    --reveal-x: 28px;
    --reveal-y: 0;
  }
  .reveal-zoom {
    --reveal-y: 16px;
    --reveal-scale: 0.96;
  }
  [data-parallax] {
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--parallax-scale, 1));
    will-change: transform;
  }
  [data-parallax-bg] {
    background-position: center calc(50% + var(--parallax-bg-y, 0px));
    will-change: background-position;
  }
  .hero-content {
    animation: heroContentIn 1s var(--motion-ease) both 0.12s;
  }
  .hero-actions a,
  .btn,
  .btn-cyan,
  .btn-contact,
  .post-share a {
    transition: transform 0.24s var(--motion-ease), box-shadow 0.24s var(--motion-ease), opacity 0.24s ease;
  }
  .hero-actions a:hover,
  .btn:hover,
  .btn-cyan:hover,
  .btn-contact:hover,
  .post-share a:hover {
    transform: translateY(-2px);
  }
  .post-card-media,
  .about-media,
  .about-page-media,
  .blog-single-media {
    overflow: hidden;
  }
  .post-card-media img {
    transition: transform 0.7s var(--motion-ease);
  }
  .post-card:hover .post-card-media img {
    transform: scale(1.035);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.section-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  color: #00b0e3;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.section-kicker::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/icone.png") center/contain no-repeat;
  flex: 0 0 24px;
}
.center {
  text-align: center;
}
.section-kicker.center {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.site-header {
  background: #fff;
}
.topline {
  background: #f5f6f8;
  border-bottom: 1px solid #e6ebef;
}
.topline-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: #6f7b87;
}
.lang-flags {
  display: flex;
  gap: 8px;
  font-size: 1.4em !important;
  min-width: 64px;
}
.center-itens {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.center-itens .top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6f7b87;
  white-space: nowrap;
}
.center-itens .top-item i {
  color: var(--blue);
  font-size: 13px;
}
.social-mini {
  margin-left: auto;
  display: flex;
  gap: 14px;
  min-width: 64px;
  justify-content: flex-end;
}
.social-mini a {
  color: var(--blue);
  font-size: 14px;
}
.brandline {
  min-height: 92px;
  display: grid;
  grid-template-columns: 240px 1fr 190px;
  align-items: center;
  gap: 20px;
}
.logo img {
  max-height: 58px;
  width: auto;
}
.logo-text {
  color: #0c73be;
  font-size: 36px;
  font-weight: 700;
}
.urgency {
  text-align: center;
  font-size: 24px;
  color: var(--blue);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.urgency strong {
  font-weight: 700;
}
.btn-contact {
  justify-self: end;
  background: var(--deep);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 24px;
  border-radius: 6px;
}
.menuline {
  border-top: 1px solid #edf1f4;
  border-bottom: 1px solid #edf1f4;
}
.menuline-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 34px;
}
.primary-nav li {
  position: relative;
}
.primary-nav a {
  color: #42474c;
  font-size: 16px;
}
.primary-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}
.primary-nav > ul > li:hover > a {
  color: var(--blue);
}
.primary-nav .menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 6px;
  color: #7b8792;
  vertical-align: middle;
}
.primary-nav li ul {
  display: none;
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #dde3e8;
  min-width: 165px;
  padding: 6px 0;
}
.primary-nav li:hover > ul {
  display: block;
}
.primary-nav li ul li a {
  display: block;
  padding: 3px 14px;
  line-height: 1.25;
}
.primary-nav li ul li a:hover,
.primary-nav li ul li.current-menu-item > a,
.primary-nav li ul li.current_page_item > a {
  color: var(--blue);
}
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-search button {
  border: 0;
  background: transparent;
  color: #7b8792;
  font-size: 20px;
  padding: 0;
  cursor: pointer;
}
.header-search input {
  width: 0;
  opacity: 0;
  border: 0;
  padding: 0;
  transition: 0.2s;
}
.header-search:focus-within input {
  width: 190px;
  opacity: 1;
  border: 1px solid #e3e8ee;
  padding: 8px 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #0b3f7d;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(
      circle at 12% 50%,
      rgba(17, 70, 134, 0.58) 0,
      rgba(17, 70, 134, 0.58) 22%,
      transparent 23%
    ),
    radial-gradient(
      circle at 18% 50%,
      rgba(44, 103, 172, 0.22) 0,
      rgba(44, 103, 172, 0.22) 34%,
      transparent 35%
    ),
    linear-gradient(
      90deg,
      rgba(8, 44, 95, 0.78) 0%,
      rgba(14, 68, 130, 0.62) 52%,
      rgba(28, 109, 188, 0.32) 100%
    );
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(
      ellipse at center,
      rgba(35, 174, 232, 0.45) 0%,
      rgba(35, 174, 232, 0) 68%
    ),
    linear-gradient(
      180deg,
      rgba(19, 83, 154, 0) 0%,
      rgba(14, 73, 142, 0.65) 100%
    );
}
.hero .slides {
  display: flex;
  transition: transform 0.55s ease;
}
.hero .slide {
  min-width: 100%;
  min-height: 675px;
  background-size: cover;
  background-position: center right;
  position: relative;
  display: grid;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 40, 90, 0.82),
    rgba(8, 40, 90, 0.34) 58%,
    rgba(8, 40, 90, 0.16)
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}
.hero-content h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 58px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.hero-sub {
  margin: 0px 0 16px;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  font-weight: 300;
}
.hero-text {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.3;
  max-width: 840px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
}
.btn-cyan,
.btn-white {
  min-width: 124px;
  text-align: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.btn-cyan {
  background: #16afe8;
  color: #fff;
}
.btn-white {
  background: #fff;
  color: #47515b;
}
.dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 4;
}
.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}
.dots button.active {
  background: #fff;
}

.about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.about h2 {
  margin: 0 0 16px;
  color: #42474c;
  font-size: 36px;
  font-weight: 300;
}

.about h2::after,
.differentials h2::after,
.blog-home h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: #cfd6dc;
  margin: 22px auto 0;
}
.about h2::after {
  margin: 22px 0 0;
}
.about-title {
  display: block;
}
.about p {
  line-height: 1.9;
}
.about-media img {
  width: 100%;
  display: block;
}
.about-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.internal-page-hero,
.about-page-hero {
  min-height: 205px;
  background-color: #155a9f;
  background-image:
    radial-gradient(ellipse at 100% 100%, rgba(255, 255, 255, 0.4) 0, transparent 46%),
    repeating-linear-gradient(168deg, rgba(255, 255, 255, 0.17) 0 1px, transparent 1px 15px),
    linear-gradient(105deg, #063579 0%, #1768b5 52%, #8fb9ed 100%);
  background-position: center;
  background-size: cover;
}
.about-page-intro {
  background: #fff;
  padding: 95px 0 38px;
}
.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 560px);
  gap: 95px;
  align-items: center;
}
.about-page-copy h1 {
  margin: 0 0 28px;
  color: #42474c;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 300;
}
.about-page-copy h1 strong {
  font-weight: 700;
}
.about-page-copy h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: #cfd6dc;
  margin: 22px 0 0;
}
.about-page-text p {
  margin: 0 0 23px;
  color: #606b75;
  line-height: 1.85;
}
.about-page-media {
  min-height: 315px;
  display: grid;
  align-items: center;
}
.about-page-media.is-empty {
  background: linear-gradient(135deg, #dfe6ec, #f6f8fa);
}
.about-page-media img,
.about-page-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border: 0;
}
.about-pillars {
  background: #fff;
  padding: 45px 0 112px;
}
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.about-pillar-card {
  min-height: 232px;
  padding: 46px 34px 34px;
  text-align: center;
  background: #fff;
  border: 1px solid #e1e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(29, 51, 68, 0.04);
}
.about-card-icon {
  display: inline-block;
}
.about-pillar-card .about-card-icon {
  color: #13b6ea;
  font-size: 42px;
  margin-bottom: 14px;
}
.about-pillar-card img.about-card-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.about-pillar-card h2 {
  margin: 0 0 24px;
  color: #08aae0;
  font-size: 30px;
  line-height: 1;
}
.about-pillar-card h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin: 18px auto 0;
  background: #d8e0e6;
}
.about-pillar-card p {
  max-width: 210px;
  margin: 0 auto;
  color: #64707a;
  line-height: 1.55;
}
.about-quality {
  background: #f4f6f8;
  padding: 100px 0 112px;
}

.about-quality h2 {
  margin: 0 auto 80px;
  color: #42474c;
  font-size: 34px;
  line-height: 1.12;
  text-align: center;
}
.about-quality h2 span {
  display: block;
  color: #8a96a1;
  font-weight: 300;
}
.about-quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  column-gap: 58px;
  row-gap: 78px;
}
.about-quality-item {
  min-height: 150px;
}
.about-quality-item:nth-child(3n + 2),
.about-quality-item:nth-child(3n + 3) {
  border-left: 1px solid #e0e6ea;
  padding-left: 48px;
}
.about-quality-icon {
  display: inline-block;
}
.about-quality-item .about-quality-icon {
  color: #13b6ea;
  font-size: 34px;
  margin-bottom: 20px;
}
.about-quality-item img.about-quality-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.about-quality-item h3 {
  margin: 0 0 11px;
  color: #42474c;
  font-size: 24px;
  line-height: 1.18;
  width: 70%;
}
.about-quality-item p {
  margin: 0;
  color: #7a858f;
  font-size: 13px;
  line-height: 1.75;
}
.about-page .blog-home {
  padding: 98px 0 102px;
}
.about-page .events {
  padding: 94px 0 104px;
}

.specialties {
  padding: 0;
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.specialty-card {
  color: #fff;
  background: #0e5792;
  text-align: center;
}
.specialty-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.specialty-content {
  padding: 52px 34px 42px;
}
.specialty-sub {
  color: #37b7e8;
  margin: 0 0 6px;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 400;
}
.specialty-content h3 {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 36px);
  line-height: 1.06;
  font-weight: 700;
}
.specialty-content h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
  margin: 22px auto 22px;
}
.specialty-content p:last-child {
  margin: 0 auto;
  max-width: 400px;
  line-height: 1.55;
  font-size: 18px;
}

.differentials {
  background: #f5f7f9;
}
.differentials h2 {
  color: #42474c;
  font-size: 36px;
  font-weight: 300;
  max-width: 760px;
  margin: 0 auto 35px;
  text-align: center;
}
.diff-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.diff-3 strong {
  color: #1db5eb;
  font-size: 54px;
}
.diff-3 h3 {
  color: #404b56;
  margin: 8px 0;
}
.diff-3 h3::after {
  content: "";
  display: none;
  width: 72px;
  height: 1px;
  background: #d9e1e7;
  margin: 14px 0 16px;
}

.blog-home {
  background: #fff;
}
.blog-home .cards-3 {
  position: relative;
  gap: 28px;
  align-items: start;
}
.blog-home .cards-3.has-scroll::before,
.blog-home .cards-3.has-scroll::after {
  content: "‹";
  position: absolute;
  top: 100px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #7f8b95;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.blog-home .cards-3.has-scroll::before {
  left: -16px;
}
.blog-home .cards-3.has-scroll::after {
  content: "›";
  right: -16px;
  background: #18afe8;
  color: #fff;
}
.blog-home h2 {
  color: #42474c;
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 30px;
  text-align: center;
}
.post-card,
.event-card {
  padding: 0;
}
.post-card-media {
  display: block;
}
.post-card img,
.event-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.event-card img {
  height: 380px;
}
.post-thumb-fallback {
  width: 100%;
  height: 220px;
  display: block;
  border-radius: 4px;
  background: linear-gradient(135deg, #cfd8df, #aebbc7);
}
.post-card h3,
.event-card h3 {
  color: #4a535d;
  margin-bottom: 0px;
}
.event-card p {
  margin: 0px;
}
.event-card .event-date {
  color: #1aaee8;
  margin: 6px 0 4px;
}
.post-card h3 {
  text-align: center;
  margin: 14px 0 8px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.05;
}
.post-card p {
  text-align: center;
  margin: 0 auto 12px;
  max-width: 320px;
  color: #7d8791;
  line-height: 1.45;
}
.post-card a {
  color: #39b8e8;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
.post-card > a:last-child {
  display: block;
  text-align: center;
}

.blog-archive {
  background: #fff;
  padding: 86px 0 104px;
}
.blog-archive .container {
  max-width: 980px;
}
.blog-archive .section-kicker {
  margin-bottom: 14px;
}
.blog-archive h1 {
  color: #42474c;
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 52px;
  padding-bottom: 30px;
  position: relative;
  text-align: center;
}
.blog-archive h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: #dfe6ec;
  transform: translateX(-50%);
}
.blog-archive h1 strong {
  font-weight: 700;
}
.blog-archive-grid {
  gap: 52px 28px;
  align-items: start;
}
.blog-archive .post-card h2 {
  color: #4a535d;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.08;
  margin: 14px auto 8px;
  max-width: 300px;
  text-align: center;
}
.blog-archive .post-card img {
  height: 246px;
}
.blog-empty {
  color: #7d8791;
  margin: 0;
}
.blog-page .events {
  padding: 92px 0 104px;
}

.blog-single {
  background: #fff;
  padding: 86px 0 42px;
}
.blog-single .container {
  max-width: 960px;
}
.blog-single .section-kicker {
  margin-bottom: 14px;
}
.blog-single h1 {
  color: #42474c;
  font-size: 34px;
  font-weight: 300;
  margin: 0 0 54px;
  padding-bottom: 30px;
  position: relative;
  text-align: center;
}
.blog-single h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: #dfe6ec;
  transform: translateX(-50%);
}
.blog-single h1 strong {
  font-weight: 700;
}
.blog-single-inner {
  max-width: 780px;
  margin: 0 auto;
}
.blog-single-title {
  color: #42474c;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 24px;
  text-align: center;
}
.blog-single-media {
  margin: 0;
}
.blog-single-media img,
.blog-single-media .post-thumb-fallback {
  width: 100%;
  height: auto;
  min-height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.post-share {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 24px;
  color: #19aede;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 16px 0 30px;
  min-height: 52px;
  text-transform: uppercase;
}
.post-share-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 14px;
}
.post-share a {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: #f4f5f6;
  color: #9aa5ad;
  display: grid;
  font: inherit;
  font-size: 17px;
  place-items: center;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.post-share a:hover {
  color: #19aede;
  transform: translateY(-1px);
}
.post-share a:nth-child(1) {
  color: #2d69c9;
}
.post-share a:nth-child(2) {
  color: #22b85a;
}
.blog-single-content {
  color: #6f7b85;
  font-size: 15px;
  line-height: 1.82;
}
.blog-single-content p {
  margin: 0 0 22px;
}
.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
  color: #3f4850;
  font-weight: 700;
  line-height: 1.35;
  margin: 34px 0 12px;
}
.blog-single-content h2 {
  font-size: 22px;
}
.blog-single-content h3 {
  font-size: 18px;
}
.blog-single-content ul,
.blog-single-content ol {
  margin: 0 0 24px 22px;
  padding: 0;
}
.blog-single-content li {
  margin-bottom: 8px;
}
.blog-single-content a {
  color: #19aede;
  font-weight: 700;
}
.blog-related {
  background: #fff;
  padding: 34px 0 96px;
}
.blog-related .container {
  max-width: 980px;
}
.blog-related h2 {
  color: #42474c;
  font-size: 34px;
  font-weight: 300;
  margin: 0 0 48px;
  text-align: center;
}
.blog-related-grid {
  position: relative;
  gap: 28px;
}
.blog-related-grid::before,
.blog-related-grid::after {
  content: "‹";
  position: absolute;
  top: 100px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #7f8b95;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.blog-related-grid::before {
  left: -16px;
}
.blog-related-grid::after {
  content: "›";
  right: -16px;
  background: #18afe8;
  color: #fff;
}

.events {
  background: #f4f6f8;
}
.events .section-kicker {
  width: auto;
  margin-bottom: 14px;
}
.events-head {
  display: grid;
  grid-template-columns: minmax(300px, 330px) minmax(360px, 1fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 40px;
}
.events-head h2 {
  color: #42474c;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  text-align: left;
}
.events-head h2 strong {
  font-weight: 700;
}
.events-head p {
  margin: 0;
  color: #5f6b75;
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
}
.event-card a {
  display: inline-block;
  margin-top: 30px;
}

.contact-section {
  background: linear-gradient(90deg, #14a9de 0 50%, #e8eaec 50%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-panel {
  padding: 48px 36px;
  color: #fff;
}
.contact-panel .section-kicker {
  width: auto;
  margin-bottom: 10px;
  color: #fff;
}
.contact-panel .section-kicker::before {
  filter: brightness(0) invert(1);
}
.contact-panel h3 {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 300;
}
.contact-panel h3::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  margin: 14px 0 0;
}
.contact-panel h3 span {
  font-weight: 700;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-line i {
  width: 16px;
  margin-top: 5px;
  color: #fff;
}
.form-panel {
  padding: 48px 36px;
}
.form-panel p {
  color: #7c8792;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d6dde3;
  margin-bottom: 8px;
  font-size: 13px;
}
.contact-form select {
  background: #fff;
  color: #6f7b85;
  min-height: 39px;
}
.contact-form button {
  border: 0;
  background: #16afe8;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  padding: 12px 18px;
}
.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.msg.ok {
  color: #2b9348;
}
.msg.err {
  color: #cc2d2d;
}
.ajax-msg {
  margin: 2px 0 12px;
}
.hp {
  position: absolute;
  left: -9999px;
}

.map {
  height: 280px;
}
.footer-main {
  background: #f1f4f6;
  padding: 60px 0 58px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.45fr 1.05fr 1.05fr 1.35fr;
  gap: 64px;
  font-size: 13px;
  color: #74808b;
  line-height: 1.65;
}
.footer-logo {
  color: #087dc2;
  display: inline-block;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  text-decoration: none;
}
.footer-logo img {
  display: block;
  height: auto;
  max-width: 190px;
}
.footer-logo span {
  color: #087dc2;
}
.footer-phones {
  margin: 0 0 24px;
}
.footer-hours {
  margin: 0;
}
.footer-col h4,
.footer-quick-head h4 {
  margin: 0 0 18px;
  color: #46515b;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.footer-col p {
  margin: 0 0 6px;
}
.footer-col a,
.footer-legal a {
  color: #18aee4;
  text-decoration: none;
}
.footer-col a:hover,
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-quick-head {
  align-items: flex-start;
  display: flex;
  gap: 26px;
  margin-bottom: 10px;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  color: #68747e;
  font-size: 16px;
  line-height: 1;
}
.footer-social a:first-child {
  color: #11aee6;
}
.footer-quick-menu {
  column-gap: 48px;
  columns: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-quick-menu li {
  break-inside: avoid;
  margin: 0 0 6px;
}
.footer-quick-menu a {
  color: #18aee4;
  text-decoration: none;
}
.footer-quick-menu a:hover {
  text-decoration: underline;
}
.footer-legal {
  background: #e8edf0;
}
.footer-legal-inner {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  font-size: 12px;
  color: #8693a0;
}
.footer-legal-inner p {
  margin: 0;
  text-align: center;
}
.footer-legal-inner > span:last-child {
  text-align: right;
}

@media (max-width: 1024px) {
  .brandline {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 15px 0;
  }
  .btn-contact {
    justify-self: center;
  }
  .urgency {
    font-size: 18px;
  }
  .topline-inner {
    gap: 12px;
    font-size: 12px;
    flex-wrap: wrap;
  }
  .primary-nav a {
    font-size: 15px;
  }
  .about-grid,
  .about-page-grid,
  .about-pillars-grid,
  .about-quality-grid,
  .events-head,
  .contact-grid,
  .footer-cols,
  .cards-3,
  .diff-3 {
    grid-template-columns: 1fr;
  }
  .blog-home .cards-3::before,
  .blog-home .cards-3::after {
    display: none;
  }
  .internal-page-hero,
  .about-page-hero {
    min-height: 160px;
  }
  .about-page-intro,
  .blog-archive,
  .blog-single,
  .blog-related,
  .about-quality,
  .about-page .blog-home,
  .about-page .events,
  .blog-page .events {
    padding: 62px 0;
  }
  .blog-archive h1 {
    font-size: 30px;
    margin-bottom: 36px;
  }
  .blog-archive-grid {
    gap: 42px;
  }
  .blog-archive .post-card img {
    height: 240px;
  }
  .blog-single h1 {
    font-size: 30px;
    margin-bottom: 36px;
  }
  .blog-single-media img,
  .blog-single-media .post-thumb-fallback {
    min-height: 240px;
  }
  .post-share {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 12px;
    text-align: center;
  }
  .post-share-links {
    width: 100%;
  }
  .blog-related h2 {
    font-size: 30px;
    margin-bottom: 34px;
  }
  .blog-related-grid {
    gap: 42px;
  }
  .blog-related-grid::before,
  .blog-related-grid::after {
    display: none;
  }
  .about-page-grid {
    gap: 36px;
  }
  .about-page-media {
    min-height: 0;
  }
  .about-pillars {
    padding: 24px 0 62px;
  }
  .about-quality h2 {
    margin-bottom: 46px;
  }
  .about-quality-item:nth-child(3n + 2),
  .about-quality-item:nth-child(3n + 3) {
    border-left: 0;
    padding-left: 0;
  }
  .footer-main {
    padding: 42px 0;
  }
  .footer-cols {
    gap: 34px;
  }
  .footer-quick-head {
    align-items: center;
    justify-content: space-between;
  }
  .footer-quick-menu {
    columns: 1;
  }
  .footer-legal-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
    text-align: center;
  }
  .footer-legal-inner > span:last-child {
    text-align: center;
  }
  .specialty-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .contact-section {
    background: #e8eaec;
  }
  .contact-panel {
    background: #14a9de;
  }
}
