/*!
Theme Name: Skanska Biezunska
Theme URI: https://example.com
Author: Project Team
Description: Landing page theme with ACF flexible sections.
Version: 0.1.0
Text Domain: skanska-biezunska
*/
@font-face {
  font-family: "shapesans";
  src: url("assets/fonts/ShapeSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "shapesans";
  src: url("assets/fonts/ShapeSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "shapesans";
  src: url("assets/fonts/ShapeSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "shapesans";
  src: url("assets/fonts/ShapeSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  margin: 0;
  font-family: "shapesans", sans-serif;
  color: #333;
  background: #FFFFFF;
  letter-spacing: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.info {
  color: #858595;
  font-size: 0.95rem;
}

.header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.header__inner {
  padding: 18px 0;
}
.header__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.header__logo img {
  width: 200px;
  height: auto;
  display: block;
}
.header__nav {
  margin: auto;
  padding-left: 15px;
}
.header__menu {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header__menu .menu-item {
  margin: 0 12px;
}
.header__menu .menu-item a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  transition: color 0.2s ease;
}
.header__menu .menu-item a:hover {
  color: #143275;
}
.header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  padding: 0;
}
.header__toggle:focus-visible {
  outline: 2px solid #143275;
  outline-offset: 4px;
  border-radius: 4px;
}
.header__toggle-icon {
  position: relative;
  width: 26px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header__toggle-bar {
  width: 100%;
  height: 2.5px;
  background: #143275;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.header__toggle-bar:nth-child(1) {
  width: 100%;
}
.header__toggle-bar:nth-child(2) {
  width: 75%;
  align-self: flex-end;
}
.header__toggle-bar:nth-child(3) {
  width: 100%;
}
.header__toggle.is-active .header__toggle-bar:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
  background: #143275;
}
.header__toggle.is-active .header__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__toggle.is-active .header__toggle-bar:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
  background: #143275;
}
.header__overlay {
  display: none;
}

@media (max-width: 1024px) {
  .header__inner {
    padding: 14px 0;
  }
  .header__toggle {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(165deg, #FFFFFF 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 32px 40px;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    overflow-y: auto;
  }
  .header__nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #143275 0%, #3ECE7B 100%);
  }
  .header__nav::after {
    content: "";
    position: absolute;
    top: 32px;
    right: 32px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(62, 206, 123, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .header__menu .menu-item {
    margin: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__menu .menu-item a {
    display: block;
    padding: 16px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(20, 50, 117, 0.08);
  }
  .header__menu .menu-item a::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: #3ECE7B;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
  }
  .header__menu .menu-item a:hover {
    color: #143275;
    padding-left: 8px;
  }
  .header__menu .menu-item a:hover::before {
    transform: translateY(-50%) scaleX(1);
  }
  .header__menu .menu-item:last-child a {
    border-bottom: none;
  }
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(20, 50, 117, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  body.is-menu-open {
    overflow: hidden;
  }
  body.is-menu-open .header__nav {
    transform: translateX(0);
  }
  body.is-menu-open .header__menu .menu-item {
    opacity: 1;
    transform: translateX(0);
  }
  body.is-menu-open .header__menu .menu-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  body.is-menu-open .header__menu .menu-item:nth-child(2) {
    transition-delay: 0.15s;
  }
  body.is-menu-open .header__menu .menu-item:nth-child(3) {
    transition-delay: 0.2s;
  }
  body.is-menu-open .header__menu .menu-item:nth-child(4) {
    transition-delay: 0.25s;
  }
  body.is-menu-open .header__menu .menu-item:nth-child(5) {
    transition-delay: 0.3s;
  }
  body.is-menu-open .header__menu .menu-item:nth-child(6) {
    transition-delay: 0.35s;
  }
  body.is-menu-open .header__menu .menu-item:nth-child(7) {
    transition-delay: 0.4s;
  }
  body.is-menu-open .header__menu .menu-item:nth-child(8) {
    transition-delay: 0.45s;
  }
  body.is-menu-open .header__menu .menu-item:nth-child(9) {
    transition-delay: 0.5s;
  }
  body.is-menu-open .header__menu .menu-item:nth-child(10) {
    transition-delay: 0.55s;
  }
  body.is-menu-open .header__overlay {
    opacity: 1;
    visibility: visible;
  }
}
.footer {
  background-color: #143275;
  height: 165px;
}

.s-gray {
  background-color: #F5F5F5;
}

.cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 32px;
  background: #3ECE7B;
  color: #000000;
  text-decoration: none;
  border-radius: 150px;
  font-size: 16px;
  line-height: 1.375;
}

.text-image {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.text-image img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.feature {
  background: #f1f4f7;
  border-radius: 6px;
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.feature__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.hero {
  min-height: calc(100vh - 70px);
  max-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.hero__background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 28.34%, rgba(0, 0, 0, 0.3763) 86.77%);
}
.hero__heading {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 18px;
}
.hero__description {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  color: #FFFFFF;
  text-align: center;
  max-width: 764px;
  margin: 0 auto 24px;
}
.hero__btn {
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero {
    min-height: calc(100vh - 65px);
    max-height: 650px;
  }
  .hero__heading {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .hero__description {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 60px);
    max-height: none;
    padding: 60px 0;
  }
  .hero__background {
    background-position: center center;
  }
  .hero__heading {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .hero__description {
    font-size: 18px;
    line-height: 1.3;
    max-width: 100%;
    margin-bottom: 24px;
  }
}
@media (max-width: 560px) {
  .hero {
    padding: 50px 0;
  }
  .hero__heading {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .hero__description {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}
.banner {
  position: relative;
  min-height: 460px;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner__background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.431372549);
}
.banner__background--lighter::before {
  background: rgba(0, 0, 0, 0.2196078431);
}
.banner__heading {
  text-align: center;
  color: #FFFFFF;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
}
.banner__description {
  text-align: center;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  max-width: 764px;
  margin: 0 auto;
}
.banner__shortcuts {
  text-align: center;
  color: #FFFFFF;
  margin-top: 20px;
  font-size: 18px;
}
.banner__shortcuts a {
  color: inherit;
  text-decoration: none;
  margin: 0 7px;
}

@media (max-width: 1024px) {
  .banner {
    min-height: 400px;
    padding: 50px 0;
  }
  .banner__heading {
    font-size: 42px;
    margin-bottom: 16px;
  }
  .banner__description {
    font-size: 20px;
    max-width: 650px;
  }
  .banner__shortcuts {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .banner {
    min-height: 350px;
    padding: 40px 0;
  }
  .banner__heading {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .banner__description {
    font-size: 18px;
    line-height: 1.3;
    max-width: 100%;
  }
  .banner__shortcuts {
    font-size: 15px;
    margin-top: 18px;
  }
  .banner__shortcuts a {
    margin: 0 5px;
  }
}
@media (max-width: 560px) {
  .banner {
    min-height: 300px;
    padding: 32px 0;
  }
  .banner__heading {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .banner__description {
    font-size: 16px;
    line-height: 1.4;
  }
  .banner__shortcuts {
    font-size: 14px;
    margin-top: 16px;
  }
  .banner__shortcuts a {
    display: inline-block;
    margin: 4px 4px;
  }
}
.scroll {
  padding: 62px 0;
}
.scroll--bg-gray {
  background-color: #F5F5F5;
}
.scroll--bg-white {
  background-color: #FFFFFF;
}
.scroll--bg-green {
  background-color: rgba(174, 221, 188, 0.2);
}
.scroll__wrapper {
  display: flex;
}
.scroll__wrapper.scroll--img-right {
  flex-direction: row-reverse;
}
.scroll__top-heading {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}
.scroll__logo {
  width: 200px;
  margin-bottom: 45px;
}
.scroll__img {
  width: 384px;
}
.scroll__img.scroll--wide {
  width: 690px;
}
.scroll__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scroll__img--50 {
  width: 580px;
}
.scroll__main-heading {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 50px;
}
.scroll__right {
  width: calc(100% - 384px);
  padding-left: 32px;
  height: 100%;
  overflow: hidden;
}
.scroll__right.scroll--wide {
  width: calc(100% - 690px);
  padding-left: 31px;
}
.scroll__right--50 {
  width: calc(100% - 580px);
}
.scroll__right.scroll--img-right {
  padding-left: 0;
  padding-right: 32px;
}
.scroll__content {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.scroll__heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 714px;
  margin-bottom: 17px;
}
.scroll__text {
  height: 255px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-right: 48px;
  margin-top: -20px;
  padding-top: 20px;
}
.scroll__text.scroll--wide {
  margin-top: 0;
  padding-top: 0;
  height: 232px;
}
.scroll__text--50 {
  height: 342px;
  margin-top: 0;
  padding-top: 0;
}
.scroll__text.scroll--img-right {
  height: 248px;
}
.scroll__text--gallery {
  height: 186px;
}
.scroll__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  overflow: auto;
  max-height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll__description::-webkit-scrollbar {
  display: none;
}
.scroll__description p {
  margin-bottom: 24px;
  color: #858595;
}
.scroll__description p:last-child {
  margin-bottom: 0;
}
.scroll__button {
  margin-top: auto;
  padding: 12px 32px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3ECE7B;
  border-radius: 150px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  margin-top: 32px;
}
.scroll__button svg {
  margin-right: 12px;
}
.scroll__indicator {
  position: absolute;
  top: 0;
  right: 30px;
  width: 6px;
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.scroll__indicator.scroll--wide {
  right: 3px;
}
.scroll__indicator--50 {
  right: 3px;
}
.scroll__indicator-track {
  position: relative;
  width: 5px;
  height: 100%;
  border-radius: 23px;
  background: #E5E5E5;
  overflow: hidden;
}
.scroll__indicator-track.is-disabled {
  opacity: 0.35;
}
.scroll__indicator-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 23px;
  background: #3ECE7B;
  transform: translateY(0);
  transition: transform 0.1s linear, height 0.1s linear;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.scroll__indicator-thumb.is-dragging {
  cursor: grabbing;
}
.scroll {
  /* Icons slider/list */
}
.scroll__icons {
  padding-top: 100px;
}
.scroll__icons-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 23px;
  text-align: center;
}
.scroll__icons-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
  position: relative;
}
.scroll__icon-item {
  text-align: center;
  padding: 40px 16px;
}
.scroll__icon-image {
  margin-bottom: 20px;
}
.scroll__icon-image img {
  width: 120px;
  height: 120px;
  display: inline-block;
}
.scroll__icon-text {
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 16px;
  text-align: center;
}
.scroll__icon-description {
  font-size: 18px;
  line-height: 1.2;
}
.scroll {
  /* slider controls (only show when data-icons-slider present) */
}
.scroll [data-icons-slider=true] {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 39px 0 50px;
  position: relative;
}
.scroll .scroll__icons-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.4s ease;
  will-change: transform;
}
.scroll .scroll__icon-item {
  flex: 0 0 auto;
  text-align: center;
  padding: 9px 12px 0;
}
.scroll__icons-nav {
  position: absolute;
  top: 59%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #3ECE7B;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
}
.scroll__icons-nav--prev {
  left: 0;
}
.scroll__icons-nav--next {
  right: 0;
}
.scroll__icons-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}
.scroll__icons-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}
.scroll__icons-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #D6D6D6;
  border: none;
  padding: 0;
  pointer-events: auto;
  cursor: pointer;
}
.scroll__icons-dot.is-active {
  background: #3ECE7B;
}

.scroll__icons-track .scroll__icon-text {
  font-size: 48px;
  margin-bottom: 20px;
  color: #143275;
}
.scroll__icons-track .scroll__icon-item {
  padding: 40px 14px;
}

.scroll--bg-green .scroll__text--50 {
  height: 214px;
}

/* Gallery variant */
.scroll__img--gallery {
  position: relative;
  overflow: hidden;
  padding: 0 25px 40px;
  margin-bottom: -40px;
}
.scroll__img--gallery.scroll--img-right {
  margin-left: auto;
}

.scroll__gallery {
  display: flex;
  align-items: stretch;
  gap: 40px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.scroll__gallery-item {
  width: 464px;
  height: 464px;
  overflow: hidden;
}
.scroll__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper {
  height: 100%;
}

.scroll__gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 99;
}

.scroll__gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #3ECE7B;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  pointer-events: auto;
}
.scroll__gallery-btn--prev {
  left: 0;
}
.scroll__gallery-btn--next {
  right: 0;
}
.scroll__gallery-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.scroll__gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.scroll__gallery-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #cdd3d9;
  border: none;
  padding: 0;
  cursor: pointer;
}
.scroll__gallery-dot.is-active {
  background: #3ECE7B;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .scroll {
    padding: 50px 0;
  }
  .scroll--gallery {
    padding: 32px 0 64px 0;
  }
  .scroll__wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .scroll__wrapper.scroll--img-right {
    flex-direction: column;
  }
  .scroll__wrapper.scroll--img-right .scroll__img {
    order: 2;
  }
  .scroll__wrapper.scroll--img-right .scroll__right {
    order: 1;
  }
  .scroll__top-heading {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .scroll__logo {
    width: 160px;
    margin-bottom: 32px;
  }
  .scroll__img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .scroll__img.scroll--wide, .scroll__img--50 {
    width: 100%;
    max-width: 600px;
  }
  .scroll__main-heading {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 32px;
  }
  .scroll__right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .scroll__right.scroll--wide, .scroll__right--50 {
    width: 100%;
    padding-left: 0;
  }
  .scroll__right.scroll--img-right {
    padding-right: 0;
  }
  .scroll__heading {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .scroll__text {
    padding-right: 32px;
    margin-top: 0;
    padding-top: 0;
  }
  .scroll__indicator {
    right: 3px;
  }
  .scroll__indicator.scroll--wide, .scroll__indicator--50 {
    right: 3px;
  }
  .scroll__description {
    font-size: 16px;
  }
  .scroll__description p {
    margin-bottom: 18px;
  }
  .scroll__button {
    margin-top: 24px;
  }
  .scroll {
    /* Icons grid/slider */
  }
  .scroll__icons {
    padding-top: 60px;
  }
  .scroll__icons-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .scroll__icons-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .scroll__icon-item {
    padding: 30px 12px;
  }
  .scroll__icon-text {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .scroll__icon-description {
    font-size: 16px;
  }
  .scroll {
    /* Gallery adjustments */
  }
  .scroll__img--gallery {
    padding: 0 20px 40px;
    margin-bottom: -40px;
  }
  .scroll__gallery-item {
    width: 400px;
    height: auto !important;
  }
  .scroll__icons-track .scroll__icon-text {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .scroll__icons-track .scroll__icon-item {
    padding: 30px 12px;
  }
}
@media (max-width: 768px) {
  .scroll {
    padding: 40px 0;
  }
  .scroll--gallery {
    padding: 32px 0 64px 0;
  }
  .scroll__wrapper {
    gap: 30px;
  }
  .scroll__top-heading {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .scroll__logo {
    width: 140px;
    margin-bottom: 24px;
  }
  .scroll__img {
    max-width: 100%;
  }
  .scroll__main-heading {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .scroll__heading {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .scroll__description {
    font-size: 15px;
  }
  .scroll__description p {
    margin-bottom: 16px;
  }
  .scroll__button {
    margin-top: 20px;
    padding: 10px 24px;
    height: 46px;
    font-size: 15px;
  }
  .scroll {
    /* Icons */
  }
  .scroll__icons {
    padding-top: 50px;
  }
  .scroll__icons-heading {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .scroll__icons-wrapper {
    gap: 16px;
  }
  .scroll__icon-item {
    padding: 24px 10px;
  }
  .scroll__icon-image img {
    width: 100px;
    height: 100px;
  }
  .scroll__icon-text {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .scroll__icon-description {
    font-size: 15px;
  }
  .scroll {
    /* Gallery */
  }
  .scroll__img--gallery {
    padding: 0 15px 40px;
    margin-bottom: -40px;
  }
  .scroll__gallery {
    gap: 30px;
  }
  .scroll__gallery-item {
    width: 320px;
    height: auto !important;
  }
  .scroll__gallery-btn {
    width: 44px;
    height: 44px;
  }
  .scroll__gallery-btn svg {
    width: 8px;
    height: auto;
  }
  .scroll__icons-track .scroll__icon-text {
    font-size: 32px;
    margin-bottom: 14px;
  }
  .scroll__icons-track .scroll__icon-item {
    padding: 24px 10px;
  }
  [data-icons-slider=true] {
    padding: 30px 0 40px;
  }
  .scroll__icons-nav {
    width: 44px;
    height: 44px;
  }
  .scroll__icons-nav svg {
    width: 8px;
    height: auto;
  }
}
@media (max-width: 560px) {
  .scroll {
    padding: 32px 0;
  }
  .scroll--gallery {
    padding: 32px 0 64px 0;
  }
  .scroll__wrapper {
    gap: 24px;
  }
  .scroll__top-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .scroll__logo {
    width: 120px;
    margin-bottom: 20px;
  }
  .scroll__main-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .scroll__heading {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .scroll__description {
    font-size: 14px;
    line-height: 1.4;
  }
  .scroll__description p {
    margin-bottom: 14px;
  }
  .scroll__button {
    margin-top: 16px;
    padding: 8px 20px;
    height: 42px;
    font-size: 14px;
  }
  .scroll__button svg {
    width: 11px;
    height: auto;
    margin-right: 8px;
  }
  .scroll {
    /* Icons */
  }
  .scroll__icons {
    padding-top: 40px;
  }
  .scroll__icons-heading {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .scroll__icons-wrapper {
    gap: 12px;
  }
  .scroll__icon-item {
    padding: 20px 8px;
  }
  .scroll__icon-image img {
    width: 80px;
    height: 80px;
  }
  .scroll__icon-text {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .scroll__icon-description {
    font-size: 14px;
  }
  .scroll {
    /* Gallery */
  }
  .scroll__img--gallery {
    padding: 0 10px 40px;
    margin-bottom: -40px;
  }
  .scroll__gallery {
    gap: 20px;
  }
  .scroll__gallery-item {
    width: 280px;
    height: 280px;
  }
  .scroll__gallery-btn {
    width: 40px;
    height: 40px;
  }
  .scroll__gallery-btn svg {
    width: 7px;
    height: auto;
  }
  .scroll__gallery-dot {
    width: 14px;
    height: 14px;
  }
  .scroll__icons-track .scroll__icon-text {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .scroll__icons-track .scroll__icon-item {
    padding: 20px 8px;
  }
  [data-icons-slider=true] {
    padding: 24px 0 32px;
  }
  .scroll__icons-nav {
    width: 40px;
    height: 40px;
  }
  .scroll__icons-nav svg {
    width: 7px;
    height: auto;
  }
  .scroll__icons-dot {
    width: 14px;
    height: 14px;
  }
}
.location {
  background-color: #F5F5F5;
  padding: 62px 0;
}
.location__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.location__content {
  width: 383px;
}
.location__img {
  width: calc(100% - 383px);
  padding-left: 32px;
}
.location__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location__heading {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.location__description {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}
.location__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: white;
}
.location__icon-img {
  width: 96px;
  height: 96px;
}
.location__icon-img img {
  width: 100%;
  height: 100%;
}
.location__icon-text {
  max-width: 690px;
  margin-left: 10px;
  color: #858595;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .location {
    padding: 50px 0;
  }
  .location__wrapper {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }
  .location__content {
    width: 100%;
  }
  .location__img {
    width: 100%;
    padding-left: 0;
  }
  .location__heading {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .location__description {
    font-size: 20px;
  }
  .location__icon-wrapper {
    padding: 20px;
  }
  .location__icon-img {
    width: 80px;
    height: 80px;
  }
  .location__icon-text {
    font-size: 16px;
    margin-left: 12px;
  }
}
@media (max-width: 768px) {
  .location {
    padding: 40px 0;
  }
  .location__wrapper {
    gap: 24px;
    margin-bottom: 32px;
  }
  .location__heading {
    font-size: 32px;
    margin-bottom: 14px;
  }
  .location__description {
    font-size: 18px;
  }
  .location__icon-wrapper {
    padding: 18px;
    flex-direction: column;
    text-align: center;
  }
  .location__icon-img {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
  }
  .location__icon-text {
    font-size: 15px;
    margin-left: 0;
  }
}
@media (max-width: 560px) {
  .location {
    padding: 32px 0;
  }
  .location__wrapper {
    gap: 20px;
    margin-bottom: 24px;
  }
  .location__heading {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .location__description {
    font-size: 16px;
  }
  .location__icon-wrapper {
    padding: 16px;
  }
  .location__icon-img {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
  }
  .location__icon-text {
    font-size: 14px;
    line-height: 1.4;
  }
}
.story-columns {
  padding: 62px 0;
  border-top: 1px solid rgba(133, 133, 149, 0.3019607843);
}
.story-columns__heading-h2 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 52px;
  text-align: center;
}
.story-columns__inner {
  display: flex;
  align-items: flex-start;
  margin-bottom: 52px;
}
.story-columns__heading-h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  max-width: 378px;
  padding-top: 30px;
}
.story-columns__img {
  width: calc(100% - 378px);
  margin-left: auto;
  padding-left: 30px;
}
.story-columns__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-columns__content {
  display: flex;
  align-items: flex-start;
  margin: 0 -16px;
  padding-bottom: 32px;
}
.story-columns__text {
  color: #858595;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  flex: 1;
  padding: 0 16px;
}
.story-columns__text p {
  margin-bottom: 24px;
}
.story-columns__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .story-columns {
    padding: 50px 0;
  }
  .story-columns__heading-h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .story-columns__inner {
    flex-direction: column;
    margin-bottom: 40px;
    gap: 24px;
  }
  .story-columns__heading-h3 {
    font-size: 22px;
    max-width: 100%;
    padding-top: 0;
  }
  .story-columns__img {
    width: 100%;
    padding-left: 0;
  }
  .story-columns__content {
    flex-direction: column;
    margin: 0;
    gap: 24px;
    padding-bottom: 24px;
  }
  .story-columns__text {
    padding: 0;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .story-columns {
    padding: 40px 0;
  }
  .story-columns__heading-h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .story-columns__inner {
    margin-bottom: 32px;
    gap: 20px;
  }
  .story-columns__heading-h3 {
    font-size: 20px;
  }
  .story-columns__content {
    gap: 20px;
    padding-bottom: 20px;
  }
  .story-columns__text {
    font-size: 15px;
  }
  .story-columns__text p {
    margin-bottom: 20px;
  }
}
@media (max-width: 560px) {
  .story-columns {
    padding: 32px 0;
  }
  .story-columns__heading-h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .story-columns__inner {
    margin-bottom: 24px;
    gap: 16px;
  }
  .story-columns__heading-h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  .story-columns__content {
    gap: 16px;
    padding-bottom: 16px;
  }
  .story-columns__text {
    font-size: 14px;
    line-height: 1.4;
  }
  .story-columns__text p {
    margin-bottom: 16px;
  }
}
.gallery {
  background-color: #F5F5F5;
  padding: 64px 0;
}
.gallery__top {
  display: flex;
  align-items: flex-start;
}
.gallery__content {
  width: 480px;
  margin-bottom: 64px;
}
.gallery__img {
  width: calc(100% - 480px - 32px);
  margin-right: 32px;
}
.gallery__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__heading {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.15;
}
.gallery__description {
  max-width: 430px;
}
.gallery__description p {
  color: #858595;
  line-height: 1.3;
  margin-bottom: 24px;
  font-size: 18px;
}
.gallery__description p:last-child {
  margin-bottom: 0;
}
.gallery__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gallery__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .gallery {
    padding: 50px 0;
  }
  .gallery__top {
    flex-direction: column;
    gap: 32px;
  }
  .gallery__content {
    width: 100%;
    margin-bottom: 50px;
  }
  .gallery__img {
    width: 100%;
    margin-right: 0;
  }
  .gallery__heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .gallery__description {
    max-width: 100%;
  }
  .gallery__description p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .gallery__images {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .gallery {
    padding: 40px 0;
  }
  .gallery__top {
    gap: 24px;
  }
  .gallery__content {
    margin-bottom: 40px;
  }
  .gallery__heading {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .gallery__description p {
    font-size: 15px;
    margin-bottom: 18px;
  }
  .gallery__images {
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .gallery {
    padding: 32px 0;
  }
  .gallery__top {
    gap: 20px;
  }
  .gallery__content {
    margin-bottom: 32px;
  }
  .gallery__heading {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .gallery__description p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  .gallery__images {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.consultations {
  padding: 64px 0;
}
.consultations__heading {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}
.consultations__description {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 46px;
  text-align: center;
}
.consultations__button {
  display: flex;
  justify-content: center;
}
.consultations__events {
  width: 100%;
  max-width: 438px;
  margin: 0 auto;
  padding-left: 42px;
  position: relative;
  margin-bottom: 46px;
}
.consultations__events::before {
  content: "";
  position: absolute;
  left: 8.5px;
  background-color: #3ECE7B;
  width: 3px;
  height: 100%;
  opacity: 0.3;
}
.consultations__event {
  margin-bottom: 49px;
}
.consultations__event:last-child {
  margin-bottom: 0;
}
.consultations__event-date {
  position: relative;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 16px;
}
.consultations__event-date::before {
  content: "";
  position: absolute;
  left: -42px;
  width: 14px;
  height: 14px;
  background-color: #858595;
  border: 3px solid #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  top: 11px;
}
.consultations__event-date--active::before {
  background-color: #3ECE7B;
}
.consultations__event-location {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 16px;
}
.consultations__event-description {
  font-size: 16px;
  line-height: 1;
  color: #858595;
}

@media (max-width: 1024px) {
  .consultations {
    padding: 50px 0;
  }
  .consultations__heading {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .consultations__description {
    font-size: 20px;
    margin-bottom: 36px;
  }
  .consultations__events {
    max-width: 400px;
    padding-left: 38px;
    margin-bottom: 36px;
  }
  .consultations__event {
    margin-bottom: 40px;
  }
  .consultations__event-date {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .consultations__event-date::before {
    left: -38px;
    width: 12px;
    height: 12px;
  }
  .consultations__event-location {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .consultations__event-description {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .consultations {
    padding: 40px 0;
  }
  .consultations__heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .consultations__description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .consultations__events {
    max-width: 100%;
    padding-left: 34px;
    margin-bottom: 30px;
  }
  .consultations__event {
    margin-bottom: 32px;
  }
  .consultations__event-date {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .consultations__event-date::before {
    left: -34px;
    width: 11px;
    height: 11px;
  }
  .consultations__event-location {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .consultations__event-description {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .consultations {
    padding: 32px 0;
  }
  .consultations__heading {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .consultations__description {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 24px;
  }
  .consultations__events {
    padding-left: 30px;
    margin-bottom: 24px;
  }
  .consultations__events::before {
    left: 7px;
  }
  .consultations__event {
    margin-bottom: 28px;
  }
  .consultations__event-date {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .consultations__event-date::before {
    left: -30px;
    width: 10px;
    height: 10px;
    top: 9px;
  }
  .consultations__event-location {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .consultations__event-description {
    font-size: 13px;
    line-height: 1.3;
  }
}
.team {
  background-color: #F5F5F5;
  padding: 64px 0;
}
.team__heading {
  text-align: center;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 40px;
}
.team__member {
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(133, 133, 149, 0.3019607843);
}
.team__member:first-child {
  padding-top: 0;
}
.team__member:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.team__member-project {
  margin-bottom: 34px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.team__member-image {
  width: 253px;
}
.team__member-image img {
  width: 100%;
  height: auto;
  display: block;
}
.team__member-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.team__member-description {
  max-width: 890px;
}
.team__member-description p {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.team__member-description p:last-child {
  margin-bottom: 0;
}
.team__content {
  display: flex;
  align-items: center;
}
.team__details {
  width: calc(100% - 253px);
  padding-left: 48px;
}

@media (max-width: 1024px) {
  .team {
    padding: 50px 0;
  }
  .team__heading {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .team__member {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .team__member-project {
    margin-bottom: 28px;
    font-size: 20px;
  }
  .team__member-image {
    width: 220px;
  }
  .team__member-name {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .team__member-description p {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .team__details {
    width: calc(100% - 220px);
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .team {
    padding: 40px 0;
  }
  .team__heading {
    font-size: 32px;
    margin-bottom: 28px;
  }
  .team__member {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .team__member-project {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .team__member-image {
    width: 180px;
  }
  .team__member-name {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .team__member-description p {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .team__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .team__details {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
@media (max-width: 560px) {
  .team {
    padding: 32px 0;
  }
  .team__heading {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .team__member {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .team__member-project {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .team__member-image {
    width: 150px;
  }
  .team__member-name {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .team__member-description p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .team__details {
    padding-top: 16px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22assets/scss/style.scss%22,%22assets/scss/base/_fonts.scss%22,%22assets/scss/base/_globals.scss%22,%22assets/scss/base/_variables.scss%22,%22assets/scss/base/_header.scss%22,%22assets/scss/base/_footer.scss%22,%22assets/scss/components/_sections.scss%22,%22assets/scss/components/_buttons.scss%22,%22assets/scss/components/_text-image.scss%22,%22assets/scss/components/_features.scss%22,%22assets/scss/components/_hero.scss%22,%22assets/scss/components/_banner.scss%22,%22assets/scss/components/_scroll-columns.scss%22,%22assets/scss/components/_location.scss%22,%22assets/scss/components/_story-columns.scss%22,%22assets/scss/components/_gallery.scss%22,%22assets/scss/components/_consultations.scss%22,%22assets/scss/components/_team.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;ACzBF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA,aCDU;EDEV,OCXW;EDYX,YCVY;EDWZ;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE,OCvBY;EDwBZ;;;AE5BF;EACE,kBDIY;ECHZ;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAIA;EACE;EACA;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI,ODtCC;ECuCD;EACA;EACA;EACA;EACA;;AAEA;EACE,ODjDE;;ACuDd;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA,YDxFY;ECyFZ;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAMA;EACE;EACA,YD/GQ;;ACkHV;EACE;EACA;;AAGF;EACE;EACA,YDzHQ;;AC8Hd;EACE;;;AAIJ;EAEI;IACE;;EAGF;IACE;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACE;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGA;IACE;IACA;IACA;IACA;IACA,ODnMG;ICoMH;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA,YDnNM;ICoNN;IACA;;EAGF;IACE,OD1NI;IC2NJ;;EAEA;IACE;;EAKN;IACE;;EAKN;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;;EAIJ;IACE;;EAGE;IACE;;EAGF;IACE;IACA;;EAGE;IACE;;EADF;IACE;;EADF;IACE;;EADF;IACE;;EADF;IACE;;EADF;IACE;;EADF;IACE;;EADF;IACE;;EADF;IACE;;EADF;IACE;;EAKN;IACE;IACA;;;AC5QR;EACI,kBFDY;EEEZ;;;ACDJ;EACE;;;ACFF;EACE;EACA;EACA;EACA,YJHgB;EIIhB,OJCY;EIAZ;EACA,eJEU;EIDV;EACA;;;ACTF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;ACVF;EACE;EACA;EACA;;;AAGF;EACE;EACA,eNEU;EMDV;EACA;;;AAGF;EACE;EACA;EACA;;;AChBF;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACG;EACA;EACA;EACA;EACA,OP/BO;EOgCP;EACA;;AAGH;EACI;EACA;EACA;EACA,OPxCM;EOyCN;EACA;EACA;;AAGJ;EACI;EACA;;;AAIR;EACI;IACI;IACA;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;IACA;;;AAKZ;EACI;IACI;IACA;IACA;;EAEA;IACI;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;IACA;IACA;IACA;;;AAKZ;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;IACA;;;AChHZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI;;AAMZ;EACI;EACA,ORnCM;EQoCN;EACA;EACA;EACA;;AAGJ;EACI;EACA,OR5CM;EQ6CN;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA,ORtDM;EQuDN;EACA;;AAEA;EACI;EACA;EACA;;;AAKZ;EACI;IACI;IACA;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;;;AAKZ;EACI;IACI;IACA;;EAEA;IACI;IACA;IACA;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;IACA;;EAEA;IACI;;;AAMhB;EACI;IACI;IACA;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAEA;IACI;IACA;;;AC7IhB;EACE;;AAEA;EACE,kBTFe;;ASKjB;EACE,kBTHU;;ASMZ;EACE,kBTLgB;;ASQlB;EACE;;AAEA;EACE;;AAKF;EACE;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA,OT7IQ;;AS+IR;EACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA,YTjNc;ESkNd;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AA3NN;AA+NE;;AACA;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAEA;EACE;EACA;EACA;;AAIJ;EAEE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AA5QJ;AA+QE;;AACA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YT5Sc;ES6Sd,OTzSU;ES0SV;EACA;EACA;EACA;EACA;;AAEA;EAAU;;AACV;EAAU;;AAGV;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,YTrVY;;;AS2VhB;EACE;EACA;EACA,OT/VY;;ASkWd;EACE;;;AAMF;EACE;;;AAIJ;AACA;EACE;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,YTxac;ESyad,OTraU;ESsaV;EACA;EACA;EACA;EACA;EACA;;AAEA;EAAU;;AACV;EAAU;;AAGV;EACE;EACA;EACA;;;AAIN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAAc,YT/cE;;;ASkdlB;AACA;EACE;IACE;;EAEA;IACE;;EAGF;IACE;IACA;;EAEA;IACE;;EAEA;IACE;;EAGF;IACE;;EAMJ;IACE;IACA;;EAIJ;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAEA;IAEE;IACA;;EAIJ;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAEA;IAEE;IACA;;EAGF;IACE;;EAIJ;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;;EAEA;IAEE;;EAIJ;IACE;;EAEA;IACE;;EAIJ;IACE;;EAnGJ;AAsGE;;EACA;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;EA/HJ;AAkIE;;EACA;IACE;IACA;;EAGF;IACE;IACA;;EAKF;IACE;IACA;;EAGF;IACE;;;AAKN;EACE;IACE;;EAEI;IACF;;EAGF;IACE;;EAIA;IACE;IACA;;EAIJ;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;;EAEA;IACE;;EAIJ;IACE;IACA;IACA;IACA;;EAjDJ;AAoDE;;EACA;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;;EAjFJ;AAoFE;;EACA;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAEA;IACE;IACA;;EAMJ;IACE;IACA;;EAGF;IACE;;EAIJ;IACE;;EAGF;IACE;IACA;;EAEA;IACE;IACA;;;AAKN;EACE;IACE;;EAEI;IACF;;EAGF;IACE;;EAIA;IACE;IACA;;EAIJ;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAEA;IACE;;EAIJ;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;;EApDN;AAwDE;;EACA;IACE;;EAGF;IACE;IACA;;EAGF;IAEE;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;;EAtFJ;AAyFE;;EACA;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAEA;IACE;IACA;;EAIJ;IACE;IACA;;EAKF;IACE;IACA;;EAGF;IACE;;EAIJ;IACE;;EAGF;IACE;IACA;;EAEA;IACE;IACA;;EAIJ;IACE;IACA;;;AC54BJ;EACI,kBVCe;EUAf;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAGJ;EACG;EACA;EACA;;AAIC;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA,OVvDE;EUwDF;EACA;EACA;;;AAKZ;EACI;IACI;;EAEA;IACI;IACA;IACA;;EAGJ;IACI;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;;EAIA;IACI;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;;AAMhB;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;;EAIA;IACI;IACA;IACA;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;IACA;;;AAMhB;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;;EAIA;IACI;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;IACA;;;ACxLhB;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI,OX3CM;EW4CN;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;;;AAMhB;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;IACA;IACA;;EAGJ;IACI;IACA;;;AAKZ;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;;EAGJ;IACI;IACA;;EAGJ;IACI;;EAEA;IACI;;;AAMhB;EACI;IACI;;EAEA;IACI;IACA;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAEA;IACI;;;ACvKhB;EACI,kBZCe;EYAf;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AACA;EACI,OZhCE;EYiCF;EACA;EACA;;AAEA;EACI;;AAKZ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;;AAKZ;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;;EAEA;IACI;IACA;;EAIR;IACI;IACA;;;AAKZ;EACI;IACI;;EAEA;IACI;;EAGJ;IACI;;EAGJ;IACI;IACA;;EAIA;IACI;IACA;;EAIR;IACI;;;AAKZ;EACI;IACI;;EAEA;IACI;;EAGJ;IACI;;EAGJ;IACI;IACA;IACA;;EAIA;IACI;IACA;IACA;;EAIR;IACI;IACA;;;AChKZ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA,Ob/EE;;;AaoFd;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;;EAEA;IACI;IACA;;EAEA;IACI;IACA;IACA;;EAIR;IACI;IACA;;EAGJ;IACI;;;AAMhB;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;;EAEA;IACI;IACA;;EAEA;IACI;IACA;IACA;;EAIR;IACI;IACA;;EAGJ;IACI;;;AAMhB;EACI;IACI;;EAEA;IACI;IACA;IACA;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;IACA;;EAEA;IACI;;EAIR;IACI;;EAEA;IACI;IACA;;EAEA;IACI;IACA;IACA;IACA;;EAIR;IACI;IACA;;EAGJ;IACI;IACA;;;ACnOhB;EACI,kBdCe;EcAf;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AACA;EACI;EACA;EACA;;AAEA;EACI;;AAMhB;EACI;EACA;;AAGJ;EACI;EACA;;;AAIR;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;;EAEA;IACI;IACA;;EAGJ;IACI;;EAGJ;IACI;IACA;;EAIA;IACI;IACA;;EAKZ;IACI;IACA;;;AAKZ;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;;EAEA;IACI;IACA;;EAGJ;IACI;;EAGJ;IACI;IACA;;EAIA;IACI;IACA;IACA;;EAKZ;IACI;IACA;;EAGJ;IACI;IACA;IACA;;;AAKZ;EACI;IACI;;EAEA;IACI;IACA;IACA;;EAGJ;IACI;IACA;;EAEA;IACI;IACA;;EAGJ;IACI;;EAGJ;IACI;IACA;;EAIA;IACI;IACA;IACA;;EAKZ;IACI%22,%22file%22:%22style.css%22%7D */
