@use "sass:math";
.hamburger {
  z-index: 20;
  padding: 4px 4px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: 2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic .hamburger-inner::after {
  top: 8px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -48px;
  top: -48px;
  -webkit-transform: translate3d(48px, 48px, 0) rotate(45deg);
          transform: translate3d(48px, 48px, 0) rotate(45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -48px;
  top: -48px;
  -webkit-transform: translate3d(-48px, 48px, 0) rotate(-45deg);
          transform: translate3d(-48px, 48px, 0) rotate(-45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0;
  padding: 0;
  background-color: #05101E;
  overflow-x: hidden;
}

.upward {
  position: fixed;
  z-index: 60;
  bottom: 40px;
  right: 40px;
  width: 38px;
  height: 38px;
  background: url(../image/arrow-up.png);
  background-size: cover;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.upward.active {
  bottom: 40px;
  visibility: visible;
  opacity: 1;
}

.hidden {
  overflow-y: hidden;
  max-height: calc(100vh - 60px);
}

.main-bg {
  background-image: url(../image/iqala/main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-size: cover;
  height: 585px;
  padding-bottom: 123px;
}

.header {
  padding-top: 40px;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
  padding-bottom: 115px;
}

.header__logo {
  margin-right: 40px;
}

.header__menu {
  width: 100%;
}

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

.menu__navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__navs-item:not(:last-child) {
  padding-right: 30px;
}

.menu__navs-item:last-child {
  display: block;
  margin-left: auto;
}

.menu__navs-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  position: relative;
}

.menu__navs-link::after {
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #D21B48;
  position: absolute;
  bottom: -10px;
  left: 0;
  opacity: 0;
}

.menu__navs-link:hover::after {
  opacity: 1;
}

.menu__navs-link:active::after {
  background-color: #D21B48;
}

.main-btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 194px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 58px;
  margin-top: 30px;
  border: none;
  cursor: pointer;
}

.btn-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #05101E;
  font-weight: 500;
  height: 100%;
  width: 100%;
}

.btn-span::before {
  content: '';
  display: block;
  background-image: url(../image/iqala/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

.hamburger {
  display: none;
}

.section {
  padding-top: 150px;
}

.section-main {
  text-align: center;
  padding-top: 20px;
}

.title {
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.01em;
  margin-bottom: 35px;
}

.subtitle {
  font-size: 20px;
  line-height: 46px;
}

.info-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 70px;
}

.tascs-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tascs-info .info-title {
  text-align: start;
}

.tascs-info__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 730px;
}

.tascs-info__item-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  margin-top: 24px;
}

.components__title {
  margin-bottom: 70px;
}

.components-info__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.components-info__item:nth-child(1) {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
}

.components-info__item:nth-child(2) {
  -ms-grid-column: 3;
      grid-column-start: 3;
  grid-column-end: 5;
}

.components-info__item:nth-child(3) {
  -ms-grid-column: 5;
      grid-column-start: 5;
  grid-column-end: 7;
}

.components-info__item:nth-child(4) {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 4;
}

.components-info__item:nth-child(5) {
  -ms-grid-column: 4;
      grid-column-start: 4;
  grid-column-end: 7;
}

.components-info__link {
  display: inline-block;
  width: 100%;
  height: 260px;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  position: relative;
}

.components-info__link :hover {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.components-info__link:hover .services__content-item {
  opacity: 1;
  background: radial-gradient(72.5% 70% at 77.78% 96.54%, #0C1D32 0%, rgba(0, 0, 0, 0) 100%);
}

.components-info__link:hover .services__content::after {
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.services__content {
  position: relative;
  height: 260px;
  background-repeat: no-repeat;
  background-size: cover;
}

.services__content::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.services__content-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 0;
}

.services__text {
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  max-width: 270px;
  opacity: 1;
  color: #fff;
  position: absolute;
  left: 30px;
  bottom: 25px;
}

.position-link {
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  background: linear-gradient(45deg, #D21B48 0%, #4E54E4 100%);
  border-radius: 4px;
  padding: 4px 8px;
}

.position-link:not(:last-child) {
  margin-bottom: 12px;
}

.position-link:last-child {
  margin-bottom: 8px;
}

.methods {
  position: relative;
}

.methods-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 370px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 100px;
  position: relative;
}

.methods-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 741px;
}

.methods-info__item-info {
  max-width: 471px;
}

.methods-info__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
}

.methods-info__text {
  font-size: 16px;
  line-height: 26px;
}

.methods-info__line {
  position: absolute;
  right: 50%;
  top: 0;
}

.right {
  text-align: right;
}

.right::before {
  content: '';
  position: absolute;
  top: 29%;
  left: 42.2%;
  z-index: 2;
  background-image: url(../image/svg/oval.svg);
  background-repeat: no-repeat;
  width: 96px;
  height: 21px;
}

.left::before {
  content: '';
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  position: absolute;
  bottom: 20%;
  left: 49%;
  z-index: 2;
  background-image: url(../image/svg/oval.svg);
  background-repeat: no-repeat;
  width: 96px;
  height: 21px;
}

.bottom {
  margin-bottom: 120px;
}

.top {
  margin-left: 34%;
}

.top img {
  height: 100%;
}

.office {
  margin-top: 150px;
}

.office .info-title {
  margin-bottom: 70px;
}

.office-content__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 63px;
  font-size: 16px;
  line-height: 26px;
}

.office-content__btn {
  background-color: transparent;
  border: 1px solid #D21B48;
  padding: 15px 50px;
  color: #D21B48;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.office-content__btn:hover {
  color: #fff;
}

.office-content__btn:first-child {
  border-radius: 9px 0px 0px 9px;
}

.office-content__btn:last-child {
  border-radius: 0px 9px 9px 0px;
}

.office-content__image {
  margin-right: 60px;
}

.office-content__info {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  position: relative;
  max-width: 416px;
}

.office-content__info::before {
  content: '';
  width: 2px;
  height: 223px;
  position: absolute;
  background-image: url(../image/iqala/office-line.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
  top: 40px;
  left: -31px;
}

.office-content__info-text {
  font-size: 16px;
  line-height: 26px;
  position: relative;
}

.office-content__info-text::before {
  content: '';
  position: absolute;
  top: 19px;
  left: -40px;
  background-image: url(../image/oval.png);
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  z-index: 3;
}

.office-content__info-text span {
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 10px;
}

.office-content__info-text:not(:last-child) {
  margin-bottom: 40px;
}

.actives {
  background: #D21B48;
  color: #fff;
}

.application,
.electronic,
.booking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 942px;
  margin: 0 auto;
}

.resetCenter {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  padding-bottom: 150px;
}

.resetMargin {
  margin-top: 0;
}

.pb {
  padding-bottom: 152px;
}

.content-info {
  max-width: 483px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.content-info__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 164.5%;
  margin-bottom: 10px;
}

.content-info__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 164.5%;
  letter-spacing: -0.02em;
}

.office-content__info2 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 16px;
  line-height: 26px;
  max-width: 416px;
}

.list-info {
  margin-top: 30px;
}

.item-info {
  list-style: disc;
}

.bg-section {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(41.91%, #09203E), to(rgba(9, 32, 62, 0)));
  background: linear-gradient(180deg, #09203E 41.91%, rgba(9, 32, 62, 0) 100%);
}

.info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 120px;
  height: 416px;
}

.info-content .info-title {
  max-width: 455px;
  margin-right: 77px;
}

.info-content__list {
  max-width: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}

.info-content__item {
  width: 255px;
  background-repeat: no-repeat;
  background-position: center;
}

.info-content__item:not(:last-child) {
  margin-bottom: 62px;
}

.info-content__item:nth-child(1) {
  background-image: url(../image/iqala/one.svg);
  margin-right: 20px;
}

.info-content__item:nth-child(2) {
  background-image: url(../image/iqala/two.svg);
}

.info-content__item:nth-child(3) {
  background-image: url(../image/iqala/three.svg);
  margin-right: 20px;
  height: 176px;
  margin-bottom: 0;
}

.info-content__item:nth-child(4) {
  background-image: url(../image/iqala/four.svg);
}

.info-content__text {
  font-weight: 200;
  font-size: 31px;
  line-height: 40px;
  letter-spacing: -0.01em;
}

.info-content__text span {
  display: block;
  font-weight: 300;
  font-size: 56px;
  line-height: 73px;
}

.services {
  padding-top: 125px;
  padding-bottom: 115px;
}

.services__link {
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(193.91deg, rgba(78, 84, 228, 0.35) 12.38%, rgba(187, 34, 126, 0.35) 91.92%), #112742;
  border-radius: 8px;
  padding: 16px;
  margin-right: 15px;
  margin-bottom: 15px;
}

.services-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services__link {
  cursor: default;
}

.mission-logo {
  text-align: center;
  margin-bottom: 70px;
}

.footer {
  background: #05101E;
  padding-bottom: 60px;
  padding-top: 70px;
}

.footer__navs {
  margin: 0 auto;
  max-width: 957px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.footer__link {
  font-size: 18px;
}

.bg-with-icon {
  width: 18px;
  height: 20px;
  background-repeat: no-repeat;
  padding-left: 35px;
  background-position: left center;
}

.home-icon {
  background-image: url(../image/svg/house-icon.svg);
}

.mail-icon {
  background-image: url(../image/svg/mail-icon.svg);
}

.phone-icon {
  background-image: url(../image/svg/phone-icon.svg);
}

@media screen and (max-width: 1140px) {
  .header__container {
    padding: 5px 30px;
  }
  .menu__navs-item:not(:last-child) {
    padding-right: 25px;
  }
  .menu__navs-link {
    font-size: 13px;
    line-height: 14px;
  }
  .main-bg {
    height: 480px;
  }
  .section {
    padding-top: 115px;
  }
  .section-main {
    padding-top: 63px;
  }
  .title {
    font-size: 36px;
  }
  .subtitle {
    font-size: 16px;
    line-height: 36px;
  }
  .info-title {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 0;
  }
  .tascs-info {
    max-width: 992px;
    margin: 0 auto;
  }
  .tascs-info .info-title {
    max-width: 300px;
  }
  .tascs-info__items {
    -webkit-column-gap: 10px;
            column-gap: 10px;
    row-gap: 30px;
  }
  .tascs-info__item {
    max-width: 210px;
  }
  .tascs-info__item-text {
    font-size: 15px;
    line-height: 20px;
  }
  .components-info {
    max-width: 992px;
    margin: 0 auto;
  }
  .components-info__items {
    -webkit-column-gap: 10px;
            column-gap: 10px;
    row-gap: 30px;
  }
  .methods-info {
    padding-top: 70px;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .methods-info__line {
    display: none;
  }
  .methods-info__item {
    max-width: 700px;
  }
  .methods-info__item img {
    width: 115px;
    height: 115px;
    margin-bottom: 16px;
  }
  .methods-info__title {
    font-size: 28px;
    text-align: center;
  }
  .methods-info__text {
    font-size: 18px;
  }
  .methods-info__item {
    display: block;
  }
  .right {
    text-align: start;
  }
  .top {
    margin-left: 0;
  }
  .right::before {
    display: none;
  }
  .left::before {
    display: none;
  }
  .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .services-links {
    margin-top: 25px;
  }
}

@media screen and (max-width: 992px) {
  .header__container {
    padding: 5px 10px;
  }
  .header__logo {
    margin-right: 20px;
  }
  .menu__navs-item:not(:last-child) {
    padding-right: 7px;
  }
  .mission-info {
    max-width: 650px;
    padding: 10px 0;
  }
  .info-content {
    display: block;
    text-align: -webkit-center;
    height: auto;
  }
  .info-content .info-title {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .footer__navs {
    display: block;
    text-align: center;
  }
  .footer__list {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 777px) {
  .hamburger {
    display: block;
  }
  .menu {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100vh;
    overflow-y: hidden;
    opacity: 0;
    z-index: 0;
    visibility: hidden;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #05101E;
    z-index: 10;
    padding: 87px 0 35px;
  }
  .menu__navs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .menu__navs-item:not(:last-child) {
    margin-bottom: 49px;
  }
  .menu__navs-item:last-child {
    margin-left: 0;
    margin-top: auto;
  }
  .menu__navs-link {
    font-family: 'IBM Plex Sans';
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
  }
  .menu.is-active {
    opacity: 1;
    z-index: 1;
    visibility: visible;
  }
  .header__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__logo {
    margin-right: 0;
  }
  .mission-info {
    max-width: 500px;
    padding-top: 30px;
  }
  .mission-info__title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .mission-info__text {
    font-size: 14px;
  }
  .mission-logo {
    display: none;
  }
  .footer {
    padding-bottom: 36px;
  }
  .footer__navs {
    max-width: 330px;
    text-align: start;
  }
  .footer__link {
    letter-spacing: -0.01em;
    line-height: 180%;
  }
  .footer__link span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media screen and (max-width: 628px) {
  .section {
    padding-top: 50px;
  }
  .title {
    font-size: 24px;
    line-height: 31px;
  }
  .info-title {
    font-size: 24px;
    line-height: 31px;
  }
  .subtitle {
    max-width: 343px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 18px;
  }
  .subtitle .p:not(:last-child) {
    margin-bottom: 25px;
  }
  .tascs {
    padding-top: 50px;
  }
  .tascs-info {
    display: block;
  }
  .tascs-info .info-title {
    margin-bottom: 36px;
  }
  .tascs-info__items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 16px;
            column-gap: 16px;
    row-gap: 40px;
  }
  .tascs-info__item-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    max-width: 163px;
  }
  .methods-info {
    text-align: left;
  }
  .methods-info__title {
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
  }
  .methods-info__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
  .bottom {
    margin-bottom: 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .components-info__items {
    display: block;
  }
  .components-info__item {
    border-radius: 12px;
    overflow: hidden;
  }
  .components-info__item {
    margin: 0 30px auto;
    max-width: 545px;
  }
  .components-info__item:not(:last-child) {
    margin-bottom: 30px;
  }
  .services__text {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
  }
  .office {
    margin-top: 0;
  }
  .office .info-title {
    margin-bottom: 40px;
  }
  .office-content__image img {
    max-width: 343px;
  }
  .office-content__info {
    max-width: 343px;
    margin: 0 auto;
  }
  .office-content__buttons {
    max-width: 343px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .application,
  .electronic,
  .booking {
    -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;
  }
  .office-content__image {
    margin-bottom: 30px;
  }
  .office-content__btn {
    width: 84px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 11px;
    line-height: 16px;
    padding: 8px;
  }
  .office-content__info-text {
    font-size: 14px;
    line-height: 26px;
  }
  .max-btn {
    width: 115px;
  }
  .info-content {
    margin-top: 71px;
  }
  .info-content__text {
    font-weight: 200;
    font-size: 20px;
    line-height: 26px;
  }
  .info-content__text span {
    font-weight: 300;
    font-size: 35.5704px;
    line-height: 46px;
  }
  .info-content__list {
    max-width: 343px;
  }
  .info-content__item {
    max-width: 161px;
  }
  .info-content__item:nth-child(1) {
    background-size: 104px 107px;
    margin-right: 19px;
    margin-bottom: 19px;
  }
  .info-content__item:nth-child(2) {
    background-size: 104px 107px;
    margin-bottom: 19px;
  }
  .info-content__item:nth-child(3) {
    background-size: 104px 107px;
  }
  .info-content__item:nth-child(4) {
    background-size: 104px 107px;
  }
  .services {
    padding-top: 48px;
    padding-bottom: 0;
  }
  .services-links {
    margin-top: 47px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer {
    padding-top: 50px;
  }
}

@media screen and (max-width: 480px) {
  .components {
    max-width: 373px;
    margin: 0 auto;
  }
  .components-info {
    width: 343px;
  }
  .components-info__item {
    width: auto;
    margin: 0px auto;
  }
  .components__title {
    margin-bottom: 32px;
  }
  .components__title .info-title {
    text-align: left;
  }
  .tascs-info {
    max-width: 343px;
  }
  .tascs-info__item {
    max-width: 163px;
  }
  .tascs-info__item:nth-child(4) {
    margin-right: 8px;
  }
  .methods-title {
    text-align: left;
  }
  .methods-info {
    padding-top: 40px;
  }
  .methods-info__item img {
    width: 80px;
    height: 80px;
  }
  .bottom {
    margin-bottom: 30px;
  }
  .office-content__image {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .office-content__info {
    margin: 0 -10px 0 auto;
    padding-right: 15px;
  }
  .office-content__info2 {
    max-width: 333px;
    margin: 0 auto;
  }
  .resetCenter {
    padding-bottom: 50px;
  }
  .center {
    max-width: 343px;
    margin: 0 auto;
    padding: 0px 43px;
  }
  .info-content {
    max-width: 343px;
    margin: 71px auto 0 auto;
  }
  .info-content__item {
    height: 122px;
  }
  .info-content__item:nth-child(3) {
    height: inherit;
  }
  .info-content__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .info-content__text {
    padding-top: 10px;
  }
  .footer__navs {
    margin: 0;
  }
}
/*# sourceMappingURL=iqala.css.map */