@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
@font-face {
  font-family: "Mardoto";
  src: local("Mardoto"), url(./fonts/Mardoto-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Mardoto";
  src: local("Mardoto"), url(./fonts/Mardoto-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Mardoto";
  src: local("Mardoto"), url(./fonts/Mardoto-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  font-family: "Roboto", "Mardoto", sans-serif;
  font-optical-sizing: auto;
  line-height: 130%;
}
* a {
  text-decoration: none;
  display: contents;
}

body {
  background: #f8f8f8;
  color: #252525;
}

.width {
  width: calc(100% - 48px);
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 920px) {
  .width {
    width: calc(100% - 24px);
  }
}

.hover {
  cursor: pointer;
}
.hover:hover {
  opacity: 0.7;
}

.header {
  background: #FFFFFF;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
}
.header .header-in {
  padding: 24px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 920px) {
  .header .header-in {
    padding: 18px 12px;
  }
}
@media screen and (max-width: 560px) {
  .header .header-in {
    padding: 12px 12px;
  }
}
.header .header-in .logo-content {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #233686;
  max-width: 400px;
}
@media screen and (max-width: 480px) {
  .header .header-in .logo-content {
    font-size: 0;
  }
}
.header .header-in .logo-content .logo {
  width: 216px;
  height: 40px;
}
.header .header-in .logo-content .logo img {
  width: 100%;
  height: 100%;
  object-position: left center;
  object-fit: contain;
}
@media screen and (max-width: 560px) {
  .header .header-in .logo-content .logo {
    width: 180px;
  }
}
.header .header-in .menu-content {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 12px;
  margin-right: 24px;
}
.header .header-in .menu-content .menu-item {
  font-size: 20px;
  text-transform: uppercase;
  padding: 8px;
  color: #17A755;
  position: relative;
  cursor: pointer;
}
.header .header-in .menu-content .menu-item::after {
  content: "";
  width: 0;
  height: 2px;
  background: #17A755;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  transition: 0.2s width;
}
.header .header-in .menu-content .menu-item:hover::after {
  width: calc(100% - 16px);
  background: #17A755;
}
.header .header-in .menu-content .menu-item.active {
  color: #233686;
}
.header .header-in .menu-content .menu-item.active::after {
  width: calc(100% - 16px);
  background: #233686;
}
@media screen and (max-width: 1024px) {
  .header .header-in .menu-content .menu-item {
    font-size: 16px;
  }
}
.header .header-in .menu-content .menu-close {
  position: absolute;
  top: 18px;
  right: 12px;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 920px) {
  .header .header-in .menu-content .menu-close {
    display: flex;
  }
}
.header .header-in .menu-content .menu-close svg {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 920px) {
  .header .header-in .menu-content {
    position: fixed;
    background: #FFFFFF;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    flex-direction: column;
    align-items: center;
    transition: 0.2s left;
  }
  .header .header-in .menu-content.opened {
    left: 0;
  }
}
.header .header-in .lang-content {
  width: 24px;
  margin-left: auto;
}
.header .header-in .lang-content img {
  width: 24px;
  height: 16px;
}
.header .header-in .menu-button {
  margin-left: 12px;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 920px) {
  .header .header-in .menu-button {
    display: flex;
  }
}
.header .header-in .menu-button svg {
  width: 36px;
  height: 36px;
}

#mob-iframe {
  width: 100%;
  max-width: 1920px;
  height: calc(100vh - 90px);
}

.content-404 {
  margin-top: 48px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.content-404 .big-text {
  font-size: 72px;
  font-weight: 700;
}
.content-404 .go-main-page {
  color: #17A755;
}

/*# sourceMappingURL=main.css.map */
