@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --abas-ink: #202022;
  --abas-line: #202022;
  --abas-blue: #53a9e6;
  --abas-shell: 1172px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--abas-ink);
  background: #fff;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

figure,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

.abas-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  min-height: 70px;
  color: #fff;
  background: transparent;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.abas-header.is-scrolled {
  color: var(--abas-ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}

.abas-header__inner {
  width: min(var(--abas-shell), calc(100% - 108px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.abas-brand {
  width: 178px;
  height: 48px;
  display: flex;
  align-items: center;
}

.abas-brand img {
  width: 178px;
  height: auto;
  filter: invert(1);
  transition: filter .2s ease;
}

.abas-header.is-scrolled .abas-brand img,
.abas-header.is-menu-open .abas-brand img {
  filter: none;
}

.abas-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

.abas-nav a {
  white-space: nowrap;
}

.abas-nav a:hover,
.abas-nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.abas-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  color: inherit;
  background: transparent;
}

.abas-menu-toggle img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.abas-header.is-scrolled .abas-menu-toggle img,
.abas-menu-toggle[aria-expanded="true"] img {
  filter: none;
}

.abas-gallery,
.abas-product,
.abas-customer-service,
.abas-service-links,
.abas-contact {
  width: min(var(--abas-shell), calc(100% - 108px));
  margin-right: auto;
  margin-left: auto;
}

.abas-gallery {
  padding-top: 120px;
}

.abas-gallery figure {
  overflow: hidden;
  background: #ddd;
}

.abas-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abas-gallery__wide {
  height: 800px;
}

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

.abas-gallery__pair figure {
  height: 430px;
}

.abas-product {
  padding: 32px 0 0;
}

.abas-product > h1 {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
}

.abas-title-rule {
  width: 100px;
  height: 2px;
  margin: 18px auto 16px;
  background: #8a8a8a;
}

.abas-accordions {
  border: 1px solid var(--abas-line);
}

.abas-accordion + .abas-accordion {
  border-top: 1px solid var(--abas-line);
}

.abas-accordion h2 {
  font-size: inherit;
}

.abas-accordion button {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 24px;
  border: 0;
  color: var(--abas-ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.abas-accordion button img {
  width: 12px;
  height: 12px;
  transition: transform .18s ease;
}

.abas-accordion button[aria-expanded="true"] img {
  transform: rotate(180deg);
}

.abas-accordion__panel {
  min-height: 258px;
  padding: 46px 24px 36px;
  border-top: 1px solid var(--abas-line);
}

.abas-accordion__panel h3 {
  font-size: 29px;
  line-height: 1.35;
  font-weight: 700;
}

.abas-accordion__panel p {
  margin-top: 30px;
  font-size: 16px;
}

.abas-price {
  margin-top: 18px;
  display: grid;
  justify-content: end;
  color: #29292b;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
}

.abas-customer-service {
  margin-top: 16px;
  color: #fff;
  background: #222;
}

.abas-customer-service__inner {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 24px;
  text-align: center;
}

.abas-customer-service p {
  max-width: 850px;
  font-size: 14px;
}

.abas-customer-service h2 {
  margin-top: 22px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.abas-title-rule--light {
  margin-top: 24px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, .6);
}

.abas-service-links {
  min-height: 280px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  padding: 90px 24px;
}

.abas-service-links > img,
.abas-service-links a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abas-service-links > img {
  width: min(300px, 82%);
  justify-self: center;
}

.abas-service-links a img {
  width: min(374px, 100%);
}

.abas-contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 78px;
  padding: 120px 48px 130px;
  border-top: 2px solid #8b8b8b;
}

.abas-contact__mark {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.abas-contact__info h2 {
  font-size: 45px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

.abas-contact-list {
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.abas-contact-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 10px;
  font-size: 15px;
}

.abas-contact-list img {
  width: 14px;
  height: 18px;
  margin-top: 2px;
}

.abas-social-label {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.abas-social-links {
  display: flex;
  gap: 28px;
  margin-top: 32px;
}

.abas-social-link {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}

.abas-social-link img {
  width: 30px;
  height: 30px;
}

.abas-social-link--facebook {
  border-radius: 50%;
  background: #287be0;
}

.abas-social-link--facebook img {
  filter: invert(1);
}

.abas-social-link--instagram img {
  filter: invert(33%) sepia(94%) saturate(1742%) hue-rotate(306deg) brightness(91%) contrast(93%);
}

.abas-form {
  display: grid;
  align-content: start;
}

.abas-form label {
  margin-bottom: 10px;
  font-size: 15px;
}

.abas-form label:not(:first-child) {
  margin-top: 24px;
}

.abas-form label span {
  color: #e63030;
}

.abas-form input,
.abas-form textarea {
  width: 100%;
  border: 2px solid #242428;
  border-radius: 3px;
  color: var(--abas-ink);
  background: #fff;
}

.abas-form input {
  height: 60px;
  padding: 0 14px;
}

.abas-form textarea {
  min-height: 180px;
  padding: 14px;
  resize: vertical;
}

.abas-form > p {
  max-width: 520px;
  margin-top: 38px;
  font-size: 15px;
}

.abas-form button {
  width: max-content;
  min-width: 93px;
  min-height: 44px;
  margin-top: 28px;
  padding: 10px 20px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--abas-blue);
  cursor: pointer;
}

.abas-form button:hover,
.abas-form button:focus-visible {
  background: #358fcc;
}

.abas-form .abas-form__notice {
  min-height: 24px;
  margin-top: 14px;
  color: #287b37;
  font-weight: 600;
}

.abas-footer {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #d8d8da;
  background: #202023;
  font-size: 14px;
  text-align: center;
}

.abas-footer span {
  color: #e83744;
}

.abas-footer strong {
  color: #4da9e9;
}

@media (max-width: 760px) {
  .abas-header {
    min-height: 56px;
  }

  .abas-header__inner {
    width: calc(100% - 40px);
    min-height: 56px;
  }

  .abas-brand,
  .abas-brand img {
    width: 142px;
  }

  .abas-menu-toggle {
    display: grid;
    place-items: center;
  }

  .abas-nav {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 20px 18px;
    color: var(--abas-ink);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
    text-align: right;
  }

  .abas-header.is-menu-open {
    color: var(--abas-ink);
    background: rgba(255, 255, 255, .97);
  }

  .abas-header.is-menu-open .abas-nav {
    display: grid;
  }

  .abas-nav a {
    padding: 10px 0;
  }

  .abas-gallery,
  .abas-product,
  .abas-customer-service,
  .abas-service-links,
  .abas-contact {
    width: calc(100% - 40px);
  }

  .abas-gallery {
    padding-top: 50px;
  }

  .abas-gallery__wide {
    height: 281px;
  }

  .abas-gallery__pair {
    grid-template-columns: 1fr;
  }

  .abas-gallery__pair figure {
    height: 430px;
  }

  .abas-gallery__pair--first figure:first-child,
  .abas-gallery__pair--second figure:first-child {
    order: 2;
  }

  .abas-gallery__pair--first figure:last-child,
  .abas-gallery__pair--second figure:last-child {
    order: 1;
  }

  .abas-product {
    padding-top: 20px;
  }

  .abas-product > h1 {
    padding: 0;
    font-size: 41px;
    line-height: 1.26;
  }

  .abas-title-rule {
    width: 100px;
    margin-top: 24px;
  }

  .abas-accordion button {
    padding-right: 18px;
    padding-left: 18px;
  }

  .abas-accordion__panel {
    min-height: 0;
    padding: 42px 24px 34px;
  }

  .abas-accordion__panel h3 {
    font-size: 30px;
  }

  .abas-price {
    font-size: 17px;
  }

  .abas-customer-service__inner {
    min-height: 360px;
    padding: 56px 20px;
  }

  .abas-customer-service p {
    font-size: 13px;
  }

  .abas-customer-service h2 {
    font-size: 40px;
  }

  .abas-service-links {
    display: none;
  }

  .abas-contact {
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 100px 0 110px;
  }

  .abas-contact__info h2 {
    font-size: 45px;
  }

  .abas-contact-list li {
    font-size: 13px;
  }

  .abas-form input {
    height: 60px;
  }

  .abas-form textarea {
    min-height: 180px;
  }
}

@media (min-width: 761px) {
  .abas-header:not(.is-scrolled) .abas-brand,
  .abas-header:not(.is-scrolled) .abas-nav {
    opacity: 0;
    pointer-events: none;
  }
}
