/*
 * style
 */
/*
 * global
 */
/*
 * variables
 */
:root {
  --bg-color: $bg_first;
  --text-color: #333;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3 {
  margin: 0;
}
p {
  line-height: 1.2;
  margin: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}
html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
html[lang="hy"] body {
  font-family: "LT Superior", Arial, Helvetica, sans-serif;
}
body {
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 100%;
  color: var(--text-color);
  overflow-x: hidden;
}
.container {
  min-width: 320px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}
#wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}
/*
 * header
 */
.header {
  position: sticky;
  z-index: 3;
  top: 0;
  padding: 33px 0 36px;
  -webkit-transition: padding 0.3s, border 0.3s;
  transition: padding 0.3s, border 0.3s;
  background: #fff;
}
@media (min-width: 576px) {
  .header {
    padding: 29px 0 34px;
  }
}
.header.active {
  padding: 12px 0;
  border-bottom: 1px solid #f2f2f2;
  -webkit-box-shadow: 0 6px 13px 0 rgba(0,0,0,0.07);
          box-shadow: 0 6px 13px 0 rgba(0,0,0,0.07);
}
@media (min-width: 576px) {
  .header.active {
    padding: 16px 0;
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.header__logo {
  max-width: 92px;
}
@media (min-width: 576px) {
  .header__logo {
    max-width: inherit;
  }
}
.header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 24px;
}
@media (min-width: 576px) {
  .header__action {
    gap: 0 33px;
  }
}
.header__lang-list {
  position: relative;
}
.header__lang-current {
  font-size: 14px;
  cursor: pointer;
}
.header__lang-dropdown-list {
  position: absolute;
  top: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 0;
  width: 70px;
  margin: auto 0;
  padding: 16px 26px;
  background: #fff;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.06), 0 0 4px 0 rgba(0,0,0,0.04);
          box-shadow: 0 4px 8px 0 rgba(0,0,0,0.06), 0 0 4px 0 rgba(0,0,0,0.04);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, top 0.3s, visibility 0.3s;
  transition: opacity 0.3s, top 0.3s, visibility 0.3s;
}
.header__lang-dropdown-list.active {
  top: -3px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__lang-item {
  font-size: 14px;
  cursor: pointer;
  color: #8e8e93;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__lang-item:hover {
  color: #023c9a;
}
.header__lang-item.selected {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  color: #333;
  pointer-events: none;
}
.header__email-link {
  font-weight: 500;
  font-size: 14px;
  color: #023c9a;
}
/*
 * footer
 */
.footer {
  padding: 61px 0 84px;
  border-top: 1px solid #f2f2f2;
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (min-width: 576px) {
  .footer__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer__contact,
.footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 0;
}
@media (min-width: 576px) {
  .footer__contact,
  .footer__address {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.footer__address-line {
  font-size: 14px;
  text-align: center;
}
@media (min-width: 576px) {
  .footer__address-line {
    text-align: left;
  }
}
.footer__email-link {
  font-weight: 500;
  font-size: 14px;
  color: #023c9a;
}
/*
 * modals
 */
