@font-face {
  font-family: 'Inter';
  src: url('../font/Inter-Bold.ttf');
  font-weight: 700;
}
@font-face {
  font-family: 'Inter';
  src: url('../font/Inter-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'Inter';
  src: url('../font/Inter-Regular.ttf');
  font-weight: 400;
}
body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select,
span,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
    overflow-x:unset;
}
body {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  min-width: 320px;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
em {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
table {
  border-spacing: 0;
}
p {
  word-wrap: break-word;
}
div,
section,
li {
  box-sizing: border-box;
}
input,
textarea {
  outline: none;
  border: none;
  resize: none;
}
button {
  border: none;
}
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  padding: 0 40px;
  transition: all 300ms;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  border-bottom-color: #f3f3f3;
}
header .container {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 72px;
}
header .mobile-switch {
  display: none;
}
header .menu-container {
  flex: 1;
  height: 100%;
}
header .menu {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  height: 100%;
}
header .menu .icon-menu-close {
  display: none;
}
header .menu-item {
  height: 100%;
}
header .menu-item.more {
  position: relative;
}
header .menu-item.more .item-text {
  gap: 10px;
}
header .menu-item.more .item-text::after {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url(../img/icon-menu-arrow.svg);
  background-size: 100% 100%;
  transition: 0.3s ease-in-out;
}
header .menu-item.more:hover .item-text::after {
  transform: rotate(-180deg);
}
header .menu-item.more:hover .item-list {
  opacity: 1;
  transform: scaleY(1);
}
header .menu-item .item-text {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: #22223b;
  cursor: pointer;
  transition: all 300ms;
}
header .menu-item .item-text:hover {
  color: #308af0;
}
header .menu-item .item-list {
  position: absolute;
  z-index: 99;
  display: flex;
  flex-direction: column;
  width: 220px;
  box-shadow: 2px 2px 35px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}
header .menu-item .item-list_text {
  height: 45px;
  font-weight: bold;
  font-size: 18px;
  color: #308af0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
}
header .menu-item .item-list_text:hover {
  background-color: #f4f4f9;
}
header .demo {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  background-color: #308af0;
  border-radius: 6px;
  padding: 12px 18px;
  transition: all 300ms;
}
header .demo:hover {
  background-color: #0b6cda;
}
footer {
  padding: 0 40px;
}
footer .content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  /*border-bottom: 1px solid #0000001f;*/
  padding-bottom: 75px;
  margin-bottom: 25px;
  gap: 40px;
}
footer .info {
  flex-shrink: 0;
  width: 450px;
}
footer .info .logo {
  display: block;
  margin-bottom: 24px;
}
footer .info-desc {
  width: 400px;
}
footer .info-desc,
footer .info-email {
  font-size: 18px;
  line-height: 1.6;
  color: #777777;
  margin-bottom: 20px;
}
footer .info-email:hover {
  /*text-decoration: underline;*/
}
footer .info-follow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.6;
  color: #777777;
}
footer .service,
footer .about {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: 350px;
}
footer .service-title,
footer .about-title {
  font-weight: bold;
  font-size: 20px;
  color: #313435;
  margin-bottom: 30px;
}
footer .service-item,
footer .about-item {
  font-size: 18px;
  line-height: 1.6;
  color: #777777;
  margin-bottom: 10px;
}
footer .service-item:hover,
footer .about-item:hover {
  /*text-decoration: underline;*/
}
footer .copyright {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}
footer .copyright .links {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
footer .copyright .links a {
  display: flex;
  align-items: center;
  gap: 20px;
  /*color: #308af0;*/
  margin-right: 20px;
}
footer .copyright .links a::after {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background-color: #7b838c;
}
footer .copyright .links a:last-child::after {
  display: none;
}
footer .copyright .links a:hover {
  /*text-decoration: underline;*/
}
footer .copyright .links,
footer .copyright-text {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #777777;
}
@media (max-width: 1200px) {
  header .container {
    gap: 20px;
  }
  header .logo img {
    display: block;
    width: 135px;
    height: auto;
  }
  header .menu {
    gap: 30px;
  }
  header .menu-item .item-text {
    font-size: 16px;
  }
  header .menu-item .item-list {
    width: 200px;
  }
  header .menu-item .item-list_text {
    font-size: 16px;
  }
  header .demo {
    font-size: 14px;
    padding: 12px;
  }
}
@media (max-width: 992px) {
  header .container {
    gap: 20px;
    height: 60px;
  }
  header .logo {
    flex: 1;
  }
  header .mobile-switch {
    display: block;
    width: 20px;
    height: 16px;
    background-image: url(../img/icon-menu-switch.svg);
    background-size: 100% 100%;
    cursor: pointer;
  }
  header .menu-container {
    display: flex;
    justify-content: flex-end;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms;
  }
  header .menu-container.active {
    opacity: 1;
    pointer-events: auto;
  }
  header .menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #fff;
    gap: 20px;
    padding: 20px;
    transition: transform 300ms;
    transform: translateX(100%);
  }
  header .menu .icon-menu-close {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../img/icon-menu-close.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px;
    cursor: pointer;
    background-color: #4b88e9;
  }
  header .menu-item {
    width: 100%;
    height: 50px;
  }
  header .menu-item.more .item-text {
    width: 100%;
    justify-content: space-between;
  }
  header .menu-item.more .item-text::after {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url(../img/icon-menu-arrow.svg);
    background-size: 100% 100%;
    transition: 0.3s ease-in-out;
  }
  header .menu-item.more:hover .item-text::after {
    transform: unset;
  }
  header .menu-item.more:hover .item-list {
    opacity: unset;
    transform: unset;
  }
  header .menu-item.more.active .item-text::after {
    transform: rotate(-180deg);
  }
  header .menu-item .item-text {
    justify-content: flex-start;
    width: 100%;
    padding-left: 40px;
    border-bottom: 1px solid #f3f3f3;
  }
  header .menu-item .item-list {
    width: 100%;
    box-shadow: unset;
    padding: 0;
    opacity: unset;
    transform: unset;
    padding-top: 20px;
    display: none;
    transition: unset;
  }
  header .menu-item .item-list_text {
    height: 45px;
    font-size: 16px;
    color: #22223b;
    padding-left: 60px;
  }
  header .menu-item .item-list_text:hover {
    background-color: unset;
    color: #308af0;
  }
  header .menu.active {
    transform: translateX(0);
  }
  header .demo {
    font-size: 14px;
    padding: 12px;
  }
}
@media (max-width: 768px) {
  header .demo {
    display: none;
  }
}
@media (max-width: 576px) {
  html {
    font-size: calc(100vw / 375);
  }
  header {
    padding: 0 20rem;
  }
  header .container {
    gap: 20rem;
    height: 50rem;
    justify-content: space-between;
  }
  header .logo {
    flex: 0 0 auto;
  }
  header .mobile-switch {
    width: 20rem;
    height: 16rem;
  }
  header .menu {
    width: 250rem;
    gap: 20rem;
    padding: 20rem;
  }
  header .menu .icon-menu-close {
    width: 30rem;
    height: 30rem;
    background-size: 20rem 20rem;
  }
  header .menu-item {
    height: 40rem;
  }
  header .menu-item.more .item-text::after {
    width: 12rem;
    height: 12rem;
  }
  header .menu-item .item-text {
    padding-left: 30rem;
    border-bottom: 1rem solid #f3f3f3;
  }
  header .menu-item .item-list {
    padding-top: 20rem;
  }
  header .menu-item .item-list_text {
    height: 45rem;
    font-size: 16rem;
    padding-left: 60rem;
  }
  footer {
    padding: 0 20rem;
  }
  footer .content {
    border-bottom: 1rem solid #0000001f;
    padding-bottom: 55rem;
    margin-bottom: 25rem;
    gap: 40rem;
  }
  footer .info {
    width: 100%;
  }
  footer .info .logo {
    margin-bottom: 24rem;
  }
  footer .info-desc {
    width: 100%;
  }
  footer .info-desc,
  footer .info-email {
    font-size: 16rem;
    margin-bottom: 20rem;
  }
  footer .info-follow {
    gap: 10rem;
    font-size: 16rem;
  }
  footer .service,
  footer .about {
    width: 100%;
  }
  footer .service-title,
  footer .about-title {
    font-size: 20rem;
    margin-bottom: 30rem;
  }
  footer .service-item,
  footer .about-item {
    font-size: 16rem;
    margin-bottom: 10rem;
  }
  footer .copyright {
    gap: 20rem;
    padding-bottom: 20rem;
  }
  footer .copyright .links {
    justify-content: center;
  }
  footer .copyright .links a {
    font-size: 14rem;
    gap: 10rem;
    margin-right: 10rem;
  }
  footer .copyright .links a::after {
    width: 1rem;
    height: 16rem;
  }
  footer .copyright .links,
  footer .copyright-text {
    width: 100%;
    font-size: 16rem;
  }
  footer .copyright-text {
    text-align: center;
  }
}
