@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;
}
body a {
  color: #252525;
}

b font {
  font-weight: 700;
}

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

.min-height {
  min-height: calc(100vh - 590px);
}

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

.b-tx {
  font-weight: bold;
}

.up-tx {
  text-transform: uppercase;
}

.page-title {
  font-size: 56px;
  font-weight: 500;
}
.page-title.center-title {
  text-align: center;
}
.page-title.s {
  font-size: 42px;
}
@media screen and (max-width: 1024px) {
  .page-title {
    font-size: 48px;
  }
}
@media screen and (max-width: 560px) {
  .page-title {
    font-size: 32px;
  }
}

.mt-6 {
  margin-top: 6px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-50 {
  margin-top: 32px;
}

.flex-end {
  justify-content: flex-end;
}

.button {
  padding: 20px 32px;
  background-color: #233686;
  color: #FFFFFF;
  font-size: 18px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.5s all;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  width: fit-content;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: fit-content;
}
.button.disable {
  background: #7D7D7D;
  pointer-events: none;
}
.button.small-button {
  padding: 10px 18px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .button {
    padding: 16px 24px;
    font-size: 18px;
    border-radius: 8px;
  }
}
.button:hover {
  background-color: #17A755;
}
.button.light-button {
  color: #233686;
  background: white;
}
.button.light-button:hover {
  background: white;
  color: #17A755;
}
.button.transparent-button {
  color: #233686;
  background: unset;
  box-shadow: unset;
}
.button.transparent-button:hover {
  background: white;
  color: #17A755;
}

.more-button {
  margin: 24px auto 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 18px;
  color: #7D7D7D;
  cursor: pointer;
  align-items: center;
}
.more-button:hover {
  color: #17A755;
}
.more-button:hover svg path {
  fill: #17A755;
}

.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 {
  width: 216px;
  height: 40px;
}
.header .header-in .logo img {
  width: 100%;
  height: 100%;
  object-position: left center;
  object-fit: contain;
}
@media screen and (max-width: 560px) {
  .header .header-in .logo {
    width: 180px;
  }
}
.header .header-in .menu-content {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 12px;
}
.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: #233686;
  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;
}

.main-slider {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 50vw;
  max-height: 960px;
  min-height: 380px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
}
.main-slider.s {
  max-height: 420px;
}
.main-slider.m {
  max-height: 620px;
}
.main-slider .slider-bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}
.main-slider .slider-bg .sl-tx {
  color: #FFFFFF;
  font-size: 56px;
  max-width: 600px;
}
.main-slider .slider-bg .sl-tx b {
  color: #FFFFFF;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .main-slider .slider-bg .sl-tx {
    font-size: 36px;
  }
}
@media screen and (max-width: 780px) {
  .main-slider .slider-bg .sl-tx {
    font-size: 28px;
  }
}
.main-slider .slider-bg .sl-tx-2 {
  font-size: 20px;
  color: #FFFFFF;
  margin-top: 24px;
  max-width: 600px;
  line-height: 160%;
}
@media screen and (max-width: 1024px) {
  .main-slider .slider-bg .sl-tx-2 {
    font-size: 18px;
  }
}
.main-slider .slider-bg .sl-buttons {
  margin-top: 72px;
  display: flex;
  justify-content: space-between;
}
.main-slider .slider-bg .sl-buttons .button {
  text-transform: uppercase;
}

.courses-content {
  margin-top: 50px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .courses-content {
    margin-top: 32px;
  }
}
@media screen and (max-width: 920px) {
  .courses-content {
    gap: 24px;
  }
}

.course-item {
  width: calc((100% - 80px) / 3);
  background-color: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.course-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.course-item .course-title {
  margin-top: 20px;
  font-size: 18px;
  padding: 0 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .course-item .course-title {
    font-size: 16px;
  }
}
.course-item .course-description {
  margin-top: 16px;
  font-size: 18px;
  color: #7D7D7D;
  padding: 0 20px;
  line-height: 22px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .course-item .course-description {
    font-size: 15px;
  }
}
.course-item .course-item-space {
  height: 100%;
}
.course-item .previous-modules {
  margin-top: 4px;
  font-size: 12px;
  color: #DEDEDE;
  visibility: hidden;
}
.course-item .button {
  margin-top: 4px;
  margin-bottom: 20px;
}
.course-item.disable .previous-modules {
  visibility: visible;
}
.course-item.disable a {
  pointer-events: none;
}
.course-item.disable a .button {
  background: #7D7D7D;
}
@media screen and (max-width: 920px) {
  .course-item {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 560px) {
  .course-item {
    width: 100%;
  }
}

.main-courses-content {
  display: flex;
  gap: 78px;
  flex-wrap: wrap;
}
.main-courses-content .main-course-item {
  width: calc((100% - 78px) / 2);
  background-color: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-courses-content .main-course-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.main-courses-content .main-course-item .main-course-title {
  margin-top: 20px;
  font-size: 32px;
  line-height: 108%;
  padding: 0 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .main-courses-content .main-course-item .main-course-title {
    font-size: 24px;
  }
}
.main-courses-content .main-course-item .main-course-description {
  margin-top: 16px;
  font-size: 18px;
  color: #7D7D7D;
  padding: 0 20px;
  line-height: 22px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .main-courses-content .main-course-item .main-course-description {
    font-size: 15px;
  }
}
.main-courses-content .main-course-item .main-course-item-space {
  height: 100%;
}
.main-courses-content .main-course-item .button {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .main-courses-content {
    gap: 48px;
  }
  .main-courses-content .main-course-item {
    width: calc((100% - 48px) / 2);
  }
}
@media screen and (max-width: 920px) {
  .main-courses-content {
    gap: 24px;
  }
  .main-courses-content .main-course-item {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 560px) {
  .main-courses-content .main-course-item {
    width: 100%;
  }
}

.partners-content {
  padding: 48px 24px 24px 24px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  box-sizing: border-box;
}
.partners-content::-webkit-scrollbar {
  display: none;
}
.partners-content .partner-item {
  width: calc((100% - 120px) / 6);
  height: 120px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-content .partner-item img {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  object-position: center;
}

.footer-full {
  margin-top: 50px;
  background: #FFFFFF;
}
.footer-full .footer {
  background: #FFFFFF;
  width: 100%;
  padding: 0 0 50px 0;
}
.footer-full .footer .footer-items-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-full .footer .footer-items-content .footer-item {
  width: calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  line-height: 26px;
}
.footer-full .footer .footer-items-content .footer-item .footer-logo {
  margin-bottom: 24px;
}
.footer-full .footer .footer-items-content .footer-item .p-p {
  color: #7D7D7D;
}
.footer-full .footer .footer-items-content .footer-item .p-p a {
  text-decoration: underline;
  color: #233686;
}
.footer-full .footer .footer-items-content .footer-item .footer-title {
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .footer-full .footer .footer-items-content .footer-item .footer-title {
    font-size: 18px;
  }
}
.footer-full .footer .footer-items-content .footer-item .footer-links-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 12px;
}
.footer-full .footer .footer-items-content .footer-item .footer-links-content .footer-link {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc((100% - 12px) / 2);
  color: #252525;
}
.footer-full .footer .footer-items-content .footer-item .footer-links-content .footer-link:hover {
  color: #233686;
}
.footer-full .footer .footer-items-content .footer-item .soc-icon {
  width: 32px;
  height: 32px;
}
.footer-full .footer .footer-items-content .footer-item .soc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 780px) {
  .footer-full .footer .footer-items-content .footer-item {
    width: 100%;
  }
}
.footer-full .footer .footer-info {
  color: #7D7D7D;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
  max-width: 960px;
}
.footer-full .footer .footer-info .p {
  color: #7D7D7D;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
}

.cookie-content {
  position: fixed;
  box-sizing: border-box;
  bottom: 0;
  background: #24252a;
  color: white;
  padding: 12px;
  margin: auto;
  width: 100%;
}
.cookie-content .width {
  display: flex;
  gap: 12px;
}
.cookie-content .width span {
  font-size: 13px;
  font-weight: 400;
}
.cookie-content .width span a {
  font-size: 13px;
  color: #17A755;
}
@media screen and (max-width: 520px) {
  .cookie-content .width {
    flex-direction: column;
    align-items: center;
  }
}

.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;
}

.contacts-form {
  margin-top: 12px;
}
.contacts-form.loading {
  opacity: 0.6;
  pointer-events: none;
}
.contacts-form .cn-title {
  margin-top: 20px;
  font-size: 14px;
  color: #7D7D7D;
}
.contacts-form .cn-input {
  padding: 10px;
  margin-top: 4px;
  border-radius: 8px;
  border: 1px solid #7D7D7D;
  font-size: 16px;
  width: 100%;
  max-width: 480px;
}
.contacts-form .cn-input.err {
  border-color: #DE4646;
}
.contacts-form .cn-input:focus {
  border-color: #17A755;
  outline: none;
}
.contacts-form textarea {
  height: 200px;
  resize: vertical;
}
.contacts-form .err-message {
  color: #DE4646;
  margin-top: 6px;
  display: none;
}
.contacts-form .err-message.show {
  display: block;
}
.contacts-form .sent-message {
  color: #17A755;
  margin-top: 6px;
  display: none;
}
.contacts-form .sent-message.show {
  display: block;
}
.contacts-form .button {
  margin-top: 30px;
}

#content-items {
  display: flex;
  margin-top: 50px;
  flex-direction: column;
  gap: 12px;
}
#content-items img {
  width: fit-content;
  max-width: 100%;
  border-radius: 6px;
  margin: 0 auto;
}
#content-items .content-file {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}
#content-items .content-file .content-file-icon {
  width: 24px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#content-items .content-file .content-file-icon .file-extension {
  position: absolute;
  width: calc(100% - 2px);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 7px;
  padding: 0 1px;
  color: white;
  margin-top: 4px;
  font-weight: bold;
}
#content-items .content-file .content-file-icon svg {
  width: 24px;
  height: 32px;
}
#content-items .p-title-2 {
  font-weight: 700;
  font-size: 24px;
}
#content-items .p-text {
  white-space: pre-wrap;
  line-height: 130%;
}
#content-items .p-text font {
  color: attr(color, #252525);
}
#content-items .content-video {
  display: flex;
  justify-content: center;
}
#content-items .content-video iframe {
  width: 100%;
  height: calc((100vw - 24px) / 1.77);
  max-height: 542px;
  max-width: 960px;
  border-radius: 6px;
}

.modules-content {
  margin-top: 12px;
  display: flex;
  gap: 24px;
  background: white;
  padding: 12px;
  border-radius: 8px;
}
.modules-content .modules-list-content {
  margin-top: 50px;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modules-content .modules-list-content .module-item a .module-list-item {
  padding: 6px 6px 6px 22px;
  position: relative;
  color: #252525;
  border-radius: 6px;
  font-size: 15px;
}
.modules-content .modules-list-content .module-item a .module-list-item:after {
  content: "";
  position: absolute;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DEDEDE;
  top: 10px;
}
.modules-content .modules-list-content .module-item.disable a {
  pointer-events: none;
}
.modules-content .modules-list-content .module-item.disable a .module-list-item {
  opacity: 0.5;
}
.modules-content .modules-list-content .module-item.active a {
  pointer-events: none;
}
.modules-content .modules-list-content .module-item.active a .module-list-item {
  background: #233686;
  color: white;
}
.modules-content .module-content-item {
  width: 100%;
}
@media screen and (max-width: 860px) {
  .modules-content {
    flex-direction: column;
  }
  .modules-content .modules-list-content {
    width: 100%;
    margin-top: 0;
  }
  .modules-content #content-items {
    margin-top: 0;
  }
  .modules-content #content-items .page-title {
    margin-top: 0;
  }
}

#test-content .test-content-item {
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #DEDEDE;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#test-content .test-content-item .test-question {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#test-content .test-content-item .test-option {
  padding: 10px 6px;
  border-radius: 4px;
  border: 1px solid #DEDEDE;
  cursor: pointer;
}
#test-content .test-content-item .test-option.active {
  border-color: #233686;
  background: rgba(35, 54, 134, 0.1);
}
#test-content .test-content-item .button {
  margin: 12px auto 0 auto;
}

.certificate-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificate-bg .certificate-popup {
  padding: 24px;
  background: white;
  width: calc(100% - 72px);
  max-width: 920px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 520px) {
  .certificate-bg .certificate-popup {
    width: calc(100% - 48px);
    padding: 12px;
  }
}
.certificate-bg .certificate-popup .cer-logo {
  width: 100%;
  height: 32px;
  background: url("../images/mobility-logo.svg") no-repeat;
  background-position: right center;
  background-size: contain;
}
.certificate-bg .certificate-popup .cer-icon {
  margin-top: 12px;
}
.certificate-bg .certificate-popup .cer-text {
  margin-top: 12px;
  max-width: 680px;
  font-size: 18px;
  color: #7D7D7D;
  line-height: 150%;
}
@media screen and (max-width: 520px) {
  .certificate-bg .certificate-popup .cer-text {
    font-size: 16px;
  }
}
.certificate-bg .certificate-popup .cer-input {
  margin-top: 12px;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  max-width: 420px;
  font-size: 15px;
  border: 1px solid #DEDEDE;
}
.certificate-bg .certificate-popup .cer-input:focus {
  outline: none;
  border-color: #233686;
}
.certificate-bg .certificate-popup .cer-err {
  color: #DE4646;
  margin-top: 12px;
  font-size: 13px;
  visibility: hidden;
}
.certificate-bg .certificate-popup .cer-err.view {
  visibility: visible;
}
.certificate-bg .certificate-popup .buttons-content {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
@media screen and (max-width: 520px) {
  .certificate-bg .certificate-popup .buttons-content {
    width: 100%;
    flex-direction: column-reverse;
  }
  .certificate-bg .certificate-popup .buttons-content .button {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}
.certificate-bg .certificate-popup .cert-loader {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificate-bg .certificate-popup .cert-loader .cert-loader-in {
  border: 4px solid #DEDEDE;
  border-top: 4px solid #17A755;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin-loader 1.5s linear infinite;
}
@keyframes spin-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.c-content {
  position: relative;
}
.c-content #certificate-content {
  margin-left: -5mm;
  width: 302mm;
  height: 210mm;
  background: url("../images/mobility-certificate.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}
.c-content #certificate-content #text-content {
  font-family: Nimbus;
  color: #3A4548;
  width: 170mm;
  top: 74mm;
  left: 98mm;
  position: absolute;
  text-align: center;
  line-height: 8mm;
  font-size: 5mm;
}
.c-content #certificate-content #text-content #name-tx {
  font-weight: 600;
  font-size: 7mm;
  line-height: 10mm;
  margin-top: -2mm;
}
.c-content #certificate-content #text-content #title-tx {
  font-weight: 700;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.welcome-content .welcome-text {
  white-space: pre-wrap;
  line-height: 150%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  font-size: 16px;
}
.welcome-content .welcome-text.show {
  -webkit-line-clamp: 9999;
}
.welcome-content .video-cover {
  width: 100%;
  height: calc((100vw - 48px) / 1.77);
  max-height: 540px;
  background: url("../images/video-cover.png") no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
}
.welcome-content .video-cover svg {
  width: 56px;
  height: 56px;
}
.welcome-content .video-cover svg path {
  fill: #17A755;
}
.welcome-content .video-cover:hover svg {
  opacity: 0.7;
}
.welcome-content .welcome-video-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
}
.welcome-content .welcome-video-bg.show {
  display: flex;
}
.welcome-content .welcome-video-bg video {
  width: calc(100% - 48px);
  border-radius: 10px;
  max-width: 1240px;
}
@media screen and (max-width: 920px) {
  .welcome-content .welcome-video-bg video {
    width: calc(100% - 24px);
  }
}
.welcome-content .welcome-video-bg .video-close {
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.welcome-content .welcome-video-bg .video-close svg {
  width: 32px;
  height: 32px;
}
.welcome-content .welcome-video-bg .video-close svg path {
  fill: #FFFFFF;
}
.welcome-content .welcome-video-bg .video-close:hover svg path {
  fill: #17A755;
}

.main-mobility-content {
  display: flex;
  margin-top: 48px;
  gap: 78px;
}
@media screen and (max-width: 1024px) {
  .main-mobility-content {
    gap: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .main-mobility-content {
    gap: 24px;
  }
}
.main-mobility-content .mobility-item {
  padding: 12px;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: calc((100% - 78px) / 2);
  display: flex;
  gap: 12px;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .main-mobility-content .mobility-item {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  .main-mobility-content {
    flex-direction: column;
  }
  .main-mobility-content .mobility-item {
    width: 100%;
    box-sizing: border-box;
  }
}

@font-face {
  font-family: "Nimbus";
  src: local("Nimbus"), url("fonts/nimbus-regular.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Nimbus";
  src: local("Nimbus"), url("fonts/nimbus-bold.otf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

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