﻿/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Local Fonts: assets/fonts */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_slnt,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cardo";
  src: url("../fonts/cardo_normal_400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Flaticon";
  src: url("../fonts/flaticon.woff2") format("woff2"),
       url("../fonts/flaticon.woff") format("woff"),
       url("../fonts/flaticon.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --text: #111111;
  --a3-primary: #5886bf;
  --a3-primary-hover: #5691d9;
  --a3-secondary: #283d57;
  --a3-regular: #0b131e;
  --a3-muted: #404957;
  --a3-light: #ffffff;
  --a3-border: #d3dbe5;
  --a3-input-bg: #f4f6f7;
  --a3-font-body: "Inter", "Segoe UI", Tahoma, sans-serif;
  --a3-font-heading: "Cardo", "Times New Roman", serif;
  --a3-head01-size: 72px;
  --a3-head01-line: 80px;
  --a3-head02-size: 56px;
  --a3-head02-line: 64px;
  --a3-head03-size: 30px;
  --a3-head03-line: 40px;
  --a3-head04-size: 14px;
  --a3-head04-line: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--a3-font-body);
  line-height: 26px;

}

/* A3 Typography: Headings */
.a3Head,
.a3Head01,
.a3Head02,
.a3Head03,
.a3Head04 {
  margin: 0;
  font-family: var(--a3-font-heading);
  font-weight: 400;
  color: var(--a3-regular);
  clear: both;
}

.a3Head01 {
  font-size: var(--a3-head01-size);
  line-height: var(--a3-head01-line);
  letter-spacing: -0.75px;
}

.a3Head02 {
  font-size: var(--a3-head02-size);
  line-height: var(--a3-head02-line);
  letter-spacing: -0.75px;
}

.a3Head03 {
  font-size: var(--a3-head03-size);
  line-height: var(--a3-head03-line);
  letter-spacing: -0.75px;
}

.a3Head04 {
  font-family: var(--a3-font-body);
  font-size: var(--a3-head04-size);
  line-height: var(--a3-head04-line);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.a3HeadDark {
  color: var(--a3-regular);
}

.a3HeadLight {
  color: var(--a3-light);
}

.a3HeadMuted {
  color: var(--a3-muted);
}

.a3HeadSecondary {
  color: var(--a3-secondary);
}

/* A3 Typography: Paragraphs */
.a3P {
  margin: 0;
  font-family: var(--a3-font-body);
  font-size: var(--a3-p-size, 16px);
  line-height: var(--a3-p-line, 26px);
  font-weight: var(--a3-p-weight, 400);
  color: var(--a3-p-color, #383838);
}

.a3PLg {
  --a3-p-size: 18px;
  --a3-p-line: 32px;
}

.a3PStrong {
  --a3-p-size: 18px;
  --a3-p-line: 28px;
  --a3-p-weight: 700;
}

.a3PDark {
  --a3-p-color: var(--a3-regular);
}

.a3PMuted {
  --a3-p-color: var(--a3-muted);
}

.a3PLight {
  --a3-p-line: 24px;
  --a3-p-color: var(--a3-light);
  --a3-p-weight: 700;
}

/* A3 Typography: Links */
.a3Link {
  color: var(--a3-link-color, var(--a3-regular));
  font-size: var(--a3-link-size, inherit);
  font-weight: var(--a3-link-weight, inherit);
  letter-spacing: var(--a3-link-letter, normal);
  text-decoration: none;
  outline: none;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.a3Link:hover,
.a3Link:focus {
  color: var(--a3-link-hover, var(--a3-link-color, var(--a3-regular)));
  text-decoration: none;
}

.a3LinkLight {
  --a3-link-color: var(--a3-light);
  --a3-link-hover: #d5d5d5;
  --a3-link-size: 18px;
  --a3-link-weight: 700;
}

.a3LinkMuted {
  --a3-link-color: var(--a3-muted);
  --a3-link-hover: var(--a3-muted);
  --a3-link-size: 14px;
  --a3-link-weight: 700;
  --a3-link-letter: -0.3px;
}

.a3LinkDark {
  --a3-link-color: var(--a3-regular);
  --a3-link-hover: var(--a3-regular);
}

.a3LinkAccent {
  --a3-link-color: #a6c1e0;
  --a3-link-hover: #a6c1e0;
}

/* A3 Form Controls: Inputs */
.a3Input {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  width: 100%;
  height: 56px;
  padding: 4.8px 24px;
  font-family: var(--a3-font-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--a3-muted);
  background-color: var(--a3-input-bg);
  border: 1px solid var(--a3-border);
  border-radius: 8px;
  box-shadow: none;
  outline: none;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.a3Input:focus {
  border-color: var(--a3-primary);
}

.a3Input::placeholder {
  color: var(--a3-muted);
  opacity: 1;
}

.a3InputTextarea {
  min-height: 130px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.a3InputSearch {
  height: 48px;
  padding: 0 25px;
  border-radius: 8px 0 0 8px;
}

/* A3 Controls: Buttons */
.a3Button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: var(--a3-button-padding, 16px 32px);
  min-width: var(--a3-button-min-width, auto);
  height: var(--a3-button-height, auto);
  border: none;
  border-radius: var(--a3-button-radius, 8px);
  background-color: var(--a3-button-bg, var(--a3-primary));
  color: var(--a3-button-color, var(--a3-light));
  font-family: var(--a3-font-body);
  font-size: var(--a3-button-size, 16px);
  font-weight: var(--a3-button-weight, 400);
  line-height: var(--a3-button-line, 24px);
  letter-spacing: var(--a3-button-letter, 1px);
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.a3Button:hover,
.a3Button:focus {
  color: var(--a3-button-color-hover, var(--a3-light));
  background-color: var(--a3-button-bg-hover, var(--a3-primary-hover));
  text-decoration: none;
}

.a3ButtonSm {
  --a3-button-padding: 0 25px;
  --a3-button-radius: 7px;
  --a3-button-size: 14px;
  --a3-button-line: 48px;
}

.a3ButtonMd {
  --a3-button-padding: 0 33px;
  --a3-button-radius: 8px;
  --a3-button-size: 16px;
  --a3-button-line: 56px;
}

.a3ButtonLg {
  --a3-button-padding: 0 40px;
  --a3-button-radius: 8px;
  --a3-button-size: 18px;
  --a3-button-line: 72px;
  --a3-button-letter: 1.125px;
}

.a3ButtonDark {
  --a3-button-bg: #5b728f;
  --a3-button-bg-hover: var(--a3-primary-hover);
}

.a3ButtonSecondary {
  --a3-button-bg: var(--a3-secondary);
  --a3-button-bg-hover: var(--a3-primary);
}

.a3ButtonSearch {
  --a3-button-min-width: 140px;
  --a3-button-height: 50px;
  --a3-button-padding: 0 28px;
  --a3-button-radius: 0 8px 8px 0;
  --a3-button-size: 14px;
  --a3-button-line: 50px;
}

.a3ButtonHoverStyle1::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -20%;
  bottom: 0;
  left: -20%;
  background-color: var(--a3-button-overlay, var(--a3-secondary));
  transform: skewX(45deg) scale(0, 1);
  transition: 500ms;
}

.a3ButtonHoverStyle1:hover::after,
.a3ButtonHoverStyle1:focus::after {
  transform: skewX(45deg) scale(1, 1);
}

/* A3 Demo Helpers */
.a3Demo {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px;
  background: #ffffff;
}

.a3DemoLine {
  display: block;
  margin: 0 0 16px;
}

.a3DemoLine:last-child {
  margin-bottom: 0;
}

.a3DemoOnDark {
  padding: 16px;
  border-radius: 8px;
  background: var(--a3-secondary);
}

/* A3 Decorative: Page Loader */
.a3PageLoader {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  background-color: transparent;
}

.a3PageLoader .a3LoaderEffect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.a3Loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 77px;
  height: 13px;
}

.a3Loader div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--a3-primary);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.a3Loader div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.a3Loader div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.a3Loader div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.a3Loader div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/* A3 Decorative: Bullet Navigation */
.a3BulletNav {
  --a3-bullet-position: static;
  --a3-bullet-top: auto;
  --a3-bullet-right: auto;
  --a3-bullet-bottom: auto;
  --a3-bullet-left: auto;
  --a3-bullet-transform: none;
  --a3-bullet-z: 1;
  --a3-bullet-gap: 14px;
  --a3-bullet-width: 32px;
  --a3-bullet-height: 8px;
  --a3-bullet-radius: 10px;
  --a3-bullet-bg: transparent;
  --a3-bullet-border: var(--a3-regular);
  --a3-bullet-active-bg: var(--a3-primary);
  --a3-bullet-active-border: var(--a3-primary);
  list-style: none;
  margin: 0;
  padding: 0;
  position: var(--a3-bullet-position);
  top: var(--a3-bullet-top);
  right: var(--a3-bullet-right);
  bottom: var(--a3-bullet-bottom);
  left: var(--a3-bullet-left);
  transform: var(--a3-bullet-transform);
  z-index: var(--a3-bullet-z);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--a3-bullet-gap);
}

.a3Bullet {
  display: inline-flex;
  width: var(--a3-bullet-width);
  height: var(--a3-bullet-height);
  border: 1px solid var(--a3-bullet-border);
  border-radius: var(--a3-bullet-radius);
  background-color: var(--a3-bullet-bg);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.a3Bullet:hover,
.a3Bullet.isActive {
  background-color: var(--a3-bullet-active-bg);
  border-color: var(--a3-bullet-active-border);
}

.a3Bullet.isActive {
  cursor: default;
}

.a3BulletNavVertical {
  --a3-bullet-gap: 8px;
  --a3-bullet-width: 8px;
  --a3-bullet-height: 32px;
  --a3-bullet-radius: 10px;
  flex-direction: column;
}

.a3BulletNavPosBottomCenter {
  --a3-bullet-position: absolute;
  --a3-bullet-left: 50%;
  --a3-bullet-bottom: 24px;
  --a3-bullet-transform: translateX(-50%);
}

.a3BulletNavPosRightCenter {
  --a3-bullet-position: fixed;
  --a3-bullet-right: 24px;
  --a3-bullet-top: 50%;
  --a3-bullet-transform: translateY(-50%);
  --a3-bullet-z: 9998;
}

.a3BulletNavDemo {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  width: 100%;
  min-height: 120px;
  border: 1px dashed var(--a3-border);
  border-radius: 8px;
  padding: 16px;
}





/* A3 Decorative: Menu Button */
.a3MenuButton {
  cursor: pointer;
  width: 48px;
  height: 48px;
  position: relative;
  display: inline-flex;
  border: none;
  background: transparent;
  padding: 0;
  transition: all 0.5s ease;
  align-items: center;
  justify-content: center;
}
.a3MenuButton > span, .a3MenuButton:before, .a3MenuButton:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--a3-regular);
  transform-origin: 50% 50%;
  transition: transform 0.5s 0.08s, background-color 0.5s, top 0.5s 0.08s, left 0.3s, opacity 0.5s, width 0.6s 0.05s;
}
.a3MenuButton:before, .a3MenuButton:after {
  content: "";
}
.a3MenuButton:before {
  top: 5px;
}
.a3MenuButton:after {
  bottom: 5px;
}
.a3MenuButton.isActive {
  transform: rotate(90deg);
}
.a3MenuButton.isActive:before {
  top: 50%;
  margin-left: -1.5px;
  transform: rotate(45deg) translate(0, -50%);
}
.a3MenuButton.isActive > span {
  opacity: 0;
  left: -5px;
  width: 0;
}
.a3MenuButton.isActive:after {
  top: 50%;
  margin-right: -1.5px;
  transform: rotate(-45deg) translate(0, -50%);
}

@media (max-width: 1200px) {
    .a3MenuButton {
        width: 40px;
        height: 35px;
        border: 2px solid var(--a3-primary);
        -webkit-border-radius: 4px;
        -khtml-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;

    }
    .a3MenuButton > span, .a3MenuButton:before, .a3MenuButton:after {
        width: 80%;
        height: 2px;
        background-color: var(--a3-primary);
    }
    .a3MenuButton.isActive {
        width: 35px;
        border-radius: 50%;
    }
    .a3MenuButton.isActive:before {
        margin-left: -1px;
    }
    .a3MenuButton.isActive:after {
        margin-right: -1px;
    }
}

















/* A3 Decorative: To Top Button */
.a3ToTop {
  width: 56px;
  height: 56px;
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  bottom: 20px;
  right: 54px;
  background-color: #5b728f;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 0 25px rgba(23, 23, 23, 0.25);
  color: #fff;
  line-height: 56px;
  text-align: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transform: rotate(180deg);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.a3ToTop:before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: flaticon !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    content: "";
}
.a3ToTop.isVisible {
  bottom: 80px;
  opacity: 1;
  visibility: visible;
}
.a3ToTop:hover,
.a3ToTop:focus {
  margin-bottom: 4px;
  background-color: #35547c;
  color: #fff;
}

.a3CookieNoticeVisible .a3ToTop.isVisible {
  bottom: 180px;
}

/* A3 Utility: Cookie Notice */
.a3CookieNotice {
  width: min(1180px, calc(100% - 40px));
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 9998;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  padding: 24px 24px;
  border-radius: 14px;
  background-color: #1b2d42;
  box-shadow: 0 18px 44px rgba(15, 24, 36, 0.35);
  transform: translate(-50%, calc(100% + 24px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.a3CookieNotice.isVisible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.a3CookieNoticeText {
  --a3-p-size: 15px;
  --a3-p-line: 24px;
  --a3-p-color: #ffffff;
  margin: 0;
}

.a3CookieNoticeLink {
  --a3-link-color: #ffffff;
  --a3-link-hover: #d4e1f1;
  text-decoration: underline;
}

.a3CookieNoticeButton {
  min-width: 96px;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .a3BulletNavPosRightCenter {
    --a3-bullet-right: 16px;
  }

  .a3ToTop {
    right: 20px;
  }
}

@media (max-width: 1200px) {
  .a3BulletNavVertical {
    --a3-bullet-gap: 6px;
    --a3-bullet-width: 6px;
    --a3-bullet-height: 24px;
    --a3-bullet-radius: 8px;
  }

  .a3BulletNavPosRightCenter {
    --a3-bullet-right: 10px;
  }

  .a3ToTop {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    right: 15px;
  }

  .a3ToTop:before {
    line-height: 12px;
  }

  .a3ToTop.isVisible {
    bottom: 15px;
  }

  .a3CookieNoticeVisible .a3ToTop.isVisible {
    bottom: 140px;
  }

  :root {
    --a3-head01-size: 45px;
    --a3-head01-line: 55px;
    --a3-head02-size: 45px;
    --a3-head02-line: 55px;
  }
}

@media (max-width: 767px) {
  :root {
    --a3-head01-size: 35px;
    --a3-head01-line: 45px;
    --a3-head02-size: 35px;
    --a3-head02-line: 45px;
  }

  .a3CookieNotice {
    width: calc(100% - 16px);
    bottom: 8px;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    padding: 14px 14px;
    border-radius: 10px;
  }

  .a3CookieNoticeText {
    --a3-p-size: 13px;
    --a3-p-line: 20px;
  }

  .a3CookieNoticeButton {
    width: 100%;
    min-width: 0;
  }

  .a3CookieNoticeVisible .a3ToTop.isVisible {
    bottom: 80px;
  }
}

/* TPL-001: Sticky Footer Layout (absolute header + centered content) */
.a3WrapperTpl001 {
  --a3-content-max: 1200px;
  --a3-content-pad: 20px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.a3WrapperTpl001 .a3Container {
  width: 100%;
  max-width: var(--a3-content-max);
  margin: 0 auto;
  padding: 0 var(--a3-content-pad);
}

.a3WrapperTpl001 .a3Header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background: transparent;
}

.a3WrapperTpl001 .a3Header .a3Container {
  max-width: none;
  padding: 34px 50px 0;
}

.a3HeaderInner {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.a3HeaderLogo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.a3HeaderLogo img {
  display: block;
  width: 308px;
  max-width: 100%;
  height: auto;
}

.a3HeaderPhone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 40px;
  color: #404957;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.3px;
  white-space: nowrap;
  transition: opacity 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.a3HeaderPhoneIcon {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.a3HeaderMenuButton {
  flex: 0 0 auto;
  width: 48px;
  height: 25px;
}

/* TPL-001: Floating header on scroll (burger-only effect) */
.a3WrapperTpl001 .a3Header.isFloating {
  position: fixed;
  animation: a3HeaderSlideIn 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 10010;
}

.a3WrapperTpl001 .a3Header.isFloating .a3HeaderLogo,
.a3WrapperTpl001 .a3Header.isFloating .a3HeaderPhone {
  opacity: 0;
  pointer-events: none;
}

@keyframes a3HeaderSlideIn {
  0% {
    transform: translate3d(0, -100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 1201px) {
  .a3HeaderMenuButton > span,
  .a3HeaderMenuButton:before,
  .a3HeaderMenuButton:after {
    left: 0;
  }

  .a3HeaderMenuButton:before {
    top: 0;
  }

  .a3HeaderMenuButton > span {
    top: 50%;
    margin-top: -1.5px;
  }

  .a3HeaderMenuButton:after {
    bottom: 0;
  }
}

/* TPL-001: Header mobile layout */
@media (max-width: 1200px) {
  .a3WrapperTpl001 .a3Header {
    background: #ffffff;
  }

  .a3WrapperTpl001 .a3Header .a3Container {
    /* Symmetric vertical spacing for logo and menu button */
    padding: 12px 15px;
  }

  .a3HeaderInner {
    min-height: 0;
  }

  .a3HeaderLogo img {
    width: min(228px, calc(100vw - 110px));
  }

  .a3HeaderPhone {
    display: none;
  }

  .a3HeaderMenuButton {
    margin-left: auto;
    width: 40px;
    height: 35px;
  }

  /* TPL-001: Header mobile hamburger size and line geometry */
  .a3HeaderMenuButton > span,
  .a3HeaderMenuButton:before,
  .a3HeaderMenuButton:after {
    width: 20px;
    height: 2px;
    left: 50%;
    margin-left: -10px;
  }

  .a3HeaderMenuButton:before {
    top: 8px;
  }

  .a3HeaderMenuButton > span {
    top: 50%;
    margin-top: -1px;
  }

  .a3HeaderMenuButton:after {
    bottom: 8px;
  }
}

/* TPL-001: Fullscreen menu overlay */
.a3OverlayMenu {
  position: fixed;
  inset: 0;
  z-index: 10020;
  width: 100%;
  min-height: 60vh;
  min-height: 60dvh;
  display: flex;
  flex-direction: column;
  background-color: #020c20;
  background-image: url("../images/texture8.png");
  background-position: center center;
  background-size: cover;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: perspective(500px) rotateX(-20deg) translateY(-40px);
  transform-origin: 50% 0%;
  transition: opacity 0.5s ease,
              transform 0.5s ease,
              visibility 0s linear 0.5s;
}

.a3OverlayMenu.isActive {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: perspective(500px) rotateX(0deg) translateY(0);
  transition-delay: 0s;
}

.a3OverlayMenuClose {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.78);
  color: #283d57;
  cursor: pointer;
  transition: background-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1),
              color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.a3OverlayMenuClose::before,
.a3OverlayMenuClose::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background-color: currentColor;
  transition: background-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.a3OverlayMenuClose::before {
  transform: rotate(45deg);
}

.a3OverlayMenuClose::after {
  transform: rotate(-45deg);
}

.a3OverlayMenuClose:hover,
.a3OverlayMenuClose:focus {
  background-color: #ffffff;
  color: #0b131e;
}

.a3OverlayMenuLogo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin: 40px auto 0;
  padding: 0 20px;
}

.a3OverlayMenuLogo img {
  display: block;
  width: 330px;
  max-width: calc(100vw - 120px);
  height: auto;
}

.a3OverlayMenuNav {
  margin: 56px auto 44px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}

.a3OverlayMenuLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--a3-font-heading);
  font-size: clamp(42px, 3.4vw, 54px);
  line-height: clamp(56px, 4.6vw, 72px);
  letter-spacing: -0.75px;
  transition: color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1),
              transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform-origin: center center;
}

.a3OverlayMenuLink::after {
  content: none;
}

.a3OverlayMenuLink:hover,
.a3OverlayMenuLink:focus {
  color: #a6c1e0;
  transform: scale(1.2);
}

/* TPL-001: Overlay menu bottom contacts (reuses footer markup/styles) */
.a3OverlayMenuFooter {
  width: 100%;
  margin-top: auto;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s cubic-bezier(0.645, 0.045, 0.355, 1),
              transform 0.45s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.a3OverlayMenu.isActive .a3OverlayMenuFooter {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.a3OverlayMenuFooter.a3FooterContacts {
  background-color: transparent;
  background-image: none;
}

.a3OverlayMenuFooter .a3FooterContactsList {
  padding: 62px 50px 40px;
}

.a3OverlayMenuFooter .a3FooterContactsItem:first-child {
  padding-left: 0;
}

.a3OverlayMenuFooter .a3FooterContactsItem:last-child {
  padding-right: 0;
}

body.a3MenuOpen {
  overflow: hidden;
}

body.a3MenuOpen .a3ToTop,
body.a3MenuOpen .a3PageBullets {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-height: 860px) and (min-width: 1025px) {
  .a3OverlayMenuLogo {
    margin-top: 24px;
  }

  .a3OverlayMenuNav {
    margin-top: 30px;
    margin-bottom: 24px;
    row-gap: 6px;
  }

  .a3OverlayMenuLink {
    font-size: clamp(34px, 2.9vw, 44px);
    line-height: clamp(50px, 3.7vw, 60px);
  }

  .a3OverlayMenuFooter .a3FooterContactsList {
    padding-top: 36px;
    padding-bottom: 28px;
  }
}

@media (max-width: 1200px) {
  .a3OverlayMenuClose {
    top: 12px;
    right: 12px;
  }

  .a3OverlayMenuLogo {
    margin-top: 24px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .a3OverlayMenuLogo img {
    width: min(332px, calc(100vw - 30px));
    max-width: none;
  }

  .a3OverlayMenuNav {
    margin-top: 28px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    row-gap: 6px;
  }

  .a3OverlayMenuLink {
    font-size: clamp(42px, 8.5vw, 56px);
    line-height: clamp(56px, 10.5vw, 74px);
  }

  .a3OverlayMenuFooter .a3FooterContactsList {
    padding-top: 36px;
    padding-bottom: 16px;
  }
}

.a3WrapperTpl001 .a3Main {
  width: 100%;
  flex: 1 1 auto;
  display: block;
}

.a3WrapperTpl001 .a3Footer {
  width: 100%;
  margin-top: auto;
}

/* TPL-001: Section 01 (hero, image as content via img) */
.a3HeroHome {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  row-gap: 0;
}

.a3HeroMedia {
  min-width: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.a3HeroImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.a3HeroBody {
  --a3-hero-text-width: 520px;
  --a3-hero-side-gap-max: 205px;
  --a3-hero-side-gap-min: 50px;
  --a3-hero-side-gap: clamp(
    var(--a3-hero-side-gap-min),
    calc((50vw - var(--a3-hero-text-width)) / 2),
    var(--a3-hero-side-gap-max)
  );
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 116px var(--a3-hero-side-gap) 100px;
  background-color: #e9eff7;
  background-image: url("../icons/texture16.svg");
  background-position: top right;
  background-repeat: no-repeat;
}

.a3HeroBody > * {
  width: 100%;
  max-width: 520px;
}

.a3HeroSubtitle {
  --a3-p-size: 14px;
  --a3-p-line: 24px;
  --a3-p-weight: 400;
  --a3-p-color: #283d57;
  margin: 0 0 3px;
  color: #283d57;
  letter-spacing: 3.5px;
}

.a3HeroTitle {
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.a3HeroText {
  --a3-p-size: 18px;
  --a3-p-line: 32px;
  --a3-p-weight: 700;
  --a3-p-color: #404957;
  margin: 50px 0 0;
  color: #404957;
  overflow-wrap: normal;
  word-break: normal;
}

/* TPL-001: Section 02 (about) */
.a3About {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  /* Desktop layout: equal 50/50 columns like the original section */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* Spacing between image and text is controlled by text block padding */
  column-gap: 0;
  align-items: center;
  /* Preserve side breathing room without pushing text block too far right */
  padding: 66px clamp(28px, 3.2vw, 50px);
  background-color: #eef3f9;
  background-image: url("../icons/texture17.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.a3AboutMedia {
  width: 100%;
  max-width: 880px;
  aspect-ratio: 880 / 784;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
}

.a3AboutImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@supports not (aspect-ratio: 1 / 1) {
  .a3AboutMedia {
    height: 0;
    padding-top: 89.0909%;
    position: relative;
  }

  .a3AboutMedia .a3AboutImage {
    position: absolute;
    inset: 0;
  }
}

.a3AboutBody {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  /* Desktop text offset from image edge (with 50px minimum on small desktops) */
  padding-left: clamp(50px, 5.5vw, 96px);
  padding-right: clamp(0px, 2vw, 24px);
}

.a3AboutSubtitle {
  --a3-p-size: 14px;
  --a3-p-line: 24px;
  --a3-p-color: #283d57;
  margin: 0 0 3px;
  letter-spacing: 3.5px;
}

.a3AboutTitle {
  margin: 0;
}

.a3AboutText {
  --a3-p-size: 18px;
  --a3-p-line: 32px;
  --a3-p-color: #404957;
  margin: 50px 0 0;
}

/* TPL-001: Section 02 wide desktop tuning */
@media (min-width: 1920px) {
  .a3AboutBody {
    /* Slightly narrower text block + extra offset from image */
    max-width: 670px;
    margin-left: 50px;
  }
}

/* TPL-001: Section 03 (services block) */
.a3Services {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background-color: #283d57;
  background-image: url("../icons/texture18.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.a3Services .a3Container {
  max-width: 1500px;
  padding: 0 15px;
}

.a3ServicesSubtitle {
  --a3-p-size: 14px;
  --a3-p-line: 24px;
  --a3-p-color: #ffffff;
  margin: 0;
  text-align: center;
  letter-spacing: 3.5px;
}

.a3ServicesTitle {
  max-width: none;
  margin: 2px auto 47px;
  text-align: center;
}

/* TPL-001: Section 03 cards */
.a3ServicesList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.a3ServiceCard {
  min-width: 0;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f9ff;
  display: flex;
  flex-direction: column;
}

.a3ServiceCardImage {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.a3ServiceCardTitle {
  margin: 0;
  padding: 32px 32px 0;
}

.a3ServiceCardText {
  --a3-p-color: #404957;
  margin: 16px 0 0;
  padding: 0 32px 32px;
  flex: 1 1 auto;
}

/* TPL-001: Section 04 (testimonials block) */
.a3Testimonials {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #5886bf;
  background-image: url("../icons/texture3.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.a3Testimonials .a3Container {
  max-width: 1500px;
  width: 100%;
  padding: 144px 15px;
}

.a3TestimonialsSubtitle {
  --a3-p-size: 14px;
  --a3-p-line: 24px;
  --a3-p-color: #ffffff;
  margin: 0;
  text-align: center;
  letter-spacing: 3.5px;
}

.a3TestimonialsTitle {
  margin: 2px 0 47px;
  text-align: center;
}

.a3TestimonialsViewport {
  width: 100%;
  overflow: hidden;
}

.a3TestimonialsTrack {
  display: flex;
  gap: 30px;
}

/* TPL-001: Section 04 testimonial cards */
.a3TestimonialCard {
  flex: 0 0 calc((100% - 30px) / 2);
  min-width: 0;
}

.a3TestimonialQuote {
  display: block;
  width: 88px;
  height: auto;
  margin: 0;
}

.a3TestimonialText {
  margin: 0;
  border: 0;
  padding: 48px 0 31px;
  color: #ffffff;
  font-family: var(--a3-font-heading);
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -1px;
  font-style: italic;
}

.a3TestimonialAuthor {
  --a3-p-size: 16px;
  --a3-p-line: 24px;
  --a3-p-weight: 700;
  --a3-p-color: #ffffff;
  margin-top: 9px;
}

.a3TestimonialsBullets {
  --a3-bullet-border: #ffffff;
  --a3-bullet-active-bg: #283d57;
  --a3-bullet-active-border: #283d57;
  display: flex;
  width: max-content;
  margin: 48px auto 0;
}

/* TPL-001: Section 05 (contact block) */
.a3Contact {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background-color: #f5f7fa;
  background-image: url("../icons/texture19.svg");
  background-position: top right;
  background-repeat: no-repeat;
}

.a3ContactMedia {
  min-width: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.a3ContactImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.a3ContactBody {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 15px;
}

.a3ContactSubtitle {
  --a3-p-size: 14px;
  --a3-p-line: 24px;
  --a3-p-color: #283d57;
  margin: 0 0 5px;
  text-align: center;
  letter-spacing: 3.5px;
}

.a3ContactTitle {
  margin: 0;
  text-align: center;
}

.a3ContactText {
  --a3-p-size: 18px;
  --a3-p-line: 32px;
  --a3-p-color: #404957;
  width: 100%;
  max-width: 540px;
  margin: 48px 0 32px;
  text-align: center;
}

.a3ContactDirect {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.a3ContactDirectPhone {
  font-family: var(--a3-font-heading);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.75px;
  color: var(--a3-regular);
  text-align: center;
}

.a3ContactDirectEmail {
  font-family: var(--a3-font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--a3-muted);
  text-align: center;
}

.a3ContactDirectPhone:hover,
.a3ContactDirectPhone:focus,
.a3ContactDirectEmail:hover,
.a3ContactDirectEmail:focus {
  color: var(--a3-secondary);
}

/* TPL-001: Section 05 form */
.a3ContactFormWrap {
  --a3-contact-form-gap: 22px;
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 554px;
}

.a3ContactForm {
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: var(--a3-contact-form-gap);
}

.a3ContactFormWrap.active .a3ContactForm {
  opacity: 0;
}

.a3ContactForm .a3Input {
  min-width: 0;
}

.a3ContactMessage {
  grid-column: 1 / -1;
  resize: vertical;
}

.a3ContactSubmit {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 140px;
}

.a3ContactFormOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.a3ContactFormWrap.active .a3ContactFormOverlay {
  display: flex;
}

.a3ContactFormState {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(var(--a3-contact-form-gap) * 2);
  text-align: center;
}

.a3ContactFormState > .a3P {
  --a3-p-size: 18px;
  --a3-p-line: 32px;
  --a3-p-color: #283d57;
  margin: 0;
}

.a3ContactFormState > .a3Button {
  min-width: 100px;
}

.a3ContactFormStateError > .a3P {
  --a3-p-color: #cf2e2e;
  color: #cf2e2e;
}

/* TPL-001: Section 06 (maps block) */
.a3Maps {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background-color: #e9eff7;
}

/* TPL-001: Section 06 map location selector */
.a3MapsSelectWrap {
  position: absolute;
  top: 50px;
  right: 100px;
  z-index: 3;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
}

.a3MapsSelect {
  width: min(440px, calc(100vw - 200px));
  background-color: #ffffff;
  cursor: pointer;
}

/* TPL-001: Section 06 maps viewport and panes */
.a3MapsViewport {
  position: relative;
  width: 100%;
  min-height: 60vh;
  height: 70vh;
  overflow: hidden;
}

.a3MapPane {
  display: none;
  width: 100%;
  height: 100%;
}

.a3MapPane.isActive {
  display: block;
}

.a3MapPane iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


/* TPL-001: Footer Contacts (minimal markup, same visual direction as test4) */
.a3FooterContacts {
  background-color: #283d57;
  background-image: url("../images/texture8.png");
  background-position: center center;
  background-size: cover;
}

.a3FooterContacts .a3Container {
  max-width: none;
  padding: 0;
  width: 100%;
  min-width: 0;
}

.a3FooterContactsList {
  list-style: none;
  margin: 0;
  width: 100%;
  min-width: 0;
  padding: 87px 70px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.a3FooterContactsItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 0 25px;
  border-right: 1px solid #5b728f;
}

.a3FooterContactsItem:first-child {
  padding-left: 0;
}

.a3FooterContactsItem:last-child {
  border-right: 0;
  padding-right: 0;
}

.a3FooterContactsIcon {
  align-self: center;
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-width: 42px;
  height: 42px;
}

.a3FooterContactsIcon path {
  stroke: #a6c1e0;
}

.a3FooterContactsText {
  margin: 0;
  width: 100%;
  min-width: 0;
  text-align: center;
  color: #ffffff;
  font-family: var(--a3-font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
}

.a3FooterContactsAddress {
  font-style: normal;
}

.a3FooterContactsLink {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.a3FooterContactsLink:hover,
.a3FooterContactsLink:focus {
  color: #d5d5d5;
}

.a3FooterPolicyStrip {
  background-color: #21344b;
  padding: 10px 15px;
  text-align: center;
}

.a3FooterPolicyLink {
  --a3-link-color: #dce6f4;
  --a3-link-hover: #ffffff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-decoration: none;
}

/* TPL-001: Fixed section bullets + back-to-top button */
.a3PageBullets {
  --a3-bullet-border: #5b728f;
  --a3-bullet-active-bg: #5886bf;
  --a3-bullet-active-border: #5886bf;
}

.a3PageBullets .a3Bullet {
  text-decoration: none;
}

/* TPL-001: Global page preloader overlay */
.a3PagePreloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #ffffff;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 360ms ease;
}

.a3PagePreloaderHidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .a3WrapperTpl001 {
    --a3-content-pad: 16px;
  }

  .a3HeroHome {
    min-height: 100vh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .a3HeroMedia {
    min-height: 0;
    height: clamp(300px, 44vh, 380px);
  }

  .a3HeroBody {
    justify-content: flex-start;
    padding: 44px 15px 24px;
    background-image: none;
  }

  .a3HeroBody > * {
    max-width: none;
  }

  .a3HeroText {
    margin-top: 16px;
  }

  /* TPL-001: Section 02 mobile */
  .a3About {
    min-height: 100vh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 15px 15px 40px;
    background-image: none;
  }

  .a3AboutMedia {
    max-width: none;
  }

  .a3AboutImage {
    height: 100%;
  }

  .a3AboutBody {
    max-width: none;
    margin-top: 35px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .a3AboutText {
    margin-top: 19px;
  }

  /* TPL-001: Section 03 mobile */
  .a3Services {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-start;
    padding: 56px 0 56px;
  }

  .a3ServicesTitle {
    margin-bottom: 40px;
  }

  .a3ServicesList {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .a3ServiceCardTitle {
    padding: 24px 32px 0;
  }

  .a3ServiceCardText {
    margin-top: 12px;
    padding-bottom: 28px;
  }

  /* TPL-001: Section 04 mobile */
  .a3Testimonials {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-start;
  }

  .a3Testimonials .a3Container {
    padding: 70px 15px;
  }

  .a3TestimonialsTitle {
    margin-bottom: 44px;
  }

  .a3TestimonialsTrack {
    gap: 24px;
  }

  .a3TestimonialCard {
    flex-basis: 100%;
  }

  .a3TestimonialQuote {
    margin-bottom: 0;
  }

  .a3TestimonialText {
    font-size: 23px;
    line-height: 33px;
    padding: 32px 0 24px;
  }

  .a3TestimonialAuthor {
    margin-top: 8px;
  }

  .a3TestimonialsBullets {
    margin-top: 40px;
  }

  /* TPL-001: Section 05 mobile */
  .a3Contact {
    min-height: 100vh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
    align-content: start;
    background-image: none;
  }

  .a3ContactMedia {
    min-height: 0;
    height: clamp(360px, 48vh, 420px);
  }

  .a3ContactBody {
    justify-content: flex-start;
    padding: 50px 15px 40px;
  }

  .a3ContactText {
    margin: 20px 0 30px;
  }

  .a3ContactFormWrap {
    --a3-contact-form-gap: 18px;
  }

  .a3ContactForm {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: var(--a3-contact-form-gap);
  }

  /* TPL-001: Section 06 mobile */
  .a3Maps {
    display: flex;
    flex-direction: column;
  }

  .a3MapsSelectWrap {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    width: 100%;
    padding: 15px;
  }

  .a3MapsSelect {
    width: 100%;
    max-width: none;
  }

  .a3MapsViewport {
    min-height: 60vh;
    height: 70vh;
  }

  .a3PageBullets {
    display: none;
  }


  .a3FooterContactsList {
    grid-template-columns: 1fr;
    padding: 30px 0 10px;
  }

  .a3FooterContactsItem {
    align-items: center;
    gap: 28px;
    text-align: center;
    padding: 35px 15px;
    border-right: 0;
    border-bottom: 1px solid #5b728f;
  }

  .a3FooterContactsItem:first-child {
    padding-top: 15px;
    padding-left: 15px;
  }

  .a3FooterContactsItem:last-child {
    border-bottom: 0;
    padding-right: 15px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .a3HeroHome {
    min-height: 100vh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .a3HeroMedia {
    min-height: 0;
    height: 40vh;
    max-height: 540px;
  }

  .a3HeroBody {
    padding: 50px 15px 70px;
  }

  .a3HeroBody > * {
    max-width: none;
  }

  .a3HeroText {
    margin-top: 20px;
  }

  /* TPL-001: Section 02 tablet */
  .a3About {
    min-height: 100vh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 30px 15px 70px;
    background-image: none;
  }

  .a3AboutMedia {
    max-width: none;
  }

  .a3AboutBody {
    max-width: none;
    margin-top: 35px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .a3AboutText {
    margin-top: 20px;
  }

  /* TPL-001: Section 03 tablet */
  .a3Services {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-start;
    padding: 70px 0;
  }

  .a3ServicesList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* TPL-001: Section 04 tablet */
  .a3Testimonials {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-start;
  }

  .a3Testimonials .a3Container {
    padding: 90px 15px 70px;
  }

  .a3TestimonialsTrack {
    gap: 24px;
  }

  .a3TestimonialCard {
    flex-basis: 100%;
  }

  .a3TestimonialText {
    font-size: 30px;
    line-height: 40px;
  }

  /* TPL-001: Section 05 tablet */
  .a3Contact {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .a3ContactBody {
    padding: 70px 15px 40px;
  }

  .a3ContactText {
    margin: 20px 0 30px;
  }

  .a3ContactFormWrap {
    --a3-contact-form-gap: 18px;
  }

  .a3ContactForm {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: var(--a3-contact-form-gap);
  }

  /* TPL-001: Section 06 tablet */
  .a3MapsSelectWrap {
    top: 40px;
    right: 40px;
  }

  .a3MapsSelect {
    width: min(360px, calc(100vw - 120px));
  }

  .a3MapsViewport {
    height: 70vh;
  }

  .a3FooterContactsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .a3FooterContactsItem {
    gap: 20px;
    padding: 50px 24px;
    border-right: 1px solid #5b728f;
    border-bottom: 1px solid #5b728f;
  }

  .a3FooterContactsItem:first-child {
    padding-left: 24px;
  }

  .a3FooterContactsItem:nth-child(2n) {
    border-right: 0;
  }

  .a3FooterContactsItem:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .a3FooterContactsItem:last-child {
    padding-right: 24px;
  }
}


