@import "/common/static/css/flex-layout.min.css";

:root {
  --sl-link-color: #33a5f2;
  --sl-emphasize-color: #33a5f2;
  --sl-sec3-bg: linear-gradient(0deg, #0000ff 0%, #1a80ff 90%);
  --sl-sec3-color: #fff;
  --sl-h2-size: 36px;
  --sl-h2-sm-size: 21px;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.txt-emphasize {
  color: var(--sl-emphasize-color);
}

div.sl-link.center {
  text-align: center !important;
}

div.sl-link a {
  color: var(--sl-link-color);
  padding: 5px 25px 5px 0;
  position: relative;
  font-size: 22px;
  display: inline-block;
  text-decoration: none;
}

div.sl-link a:after {
  content: ' ';
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  overflow: hidden;
  border-right: 2px solid var(--sl-link-color);
  border-bottom: 2px solid var(--sl-link-color);
  transform: rotate(-45deg) translate3d(0, -50%, 0);
}
.sec-sl {
  margin:0 auto 20px;
  max-width: 1200px;
}
.sec-sl .txt-wrapper {
  padding: 70px 30px;
  box-sizing: border-box;
}

@media all and (max-width: 768px) {
  .sec-sl .txt-wrapper {
    padding: 30px 15px;
  }
}

.sl-list ul {
  margin: 15px 0 34px 34px;
}

.sl-list ul > li {
  list-style-type: none !important;
  position: relative;
  padding-left: 18px;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.5;
  font-size: 16px;
}

.sl-list ul > li a {
  color: var(--sl-link-color);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  padding-left: 10px;
}

.sl-list ul > li a:hover {
  opacity: 0.8;
}

.sl-list ul > li a:before {
  content: '';
  background-color: var(--sl-link-color);
  width: 5px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  opacity: 0.7;
  left: 0;
}

h2.sl-h2 {
  font-size: var(--sl-h2-size);
  margin: 0 0 10px;
  line-height: 1.2;
  font-weight: 700;
}

p.sl-p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media all and (max-width: 768px) {
  h2.sl-h2 {
    font-size: var(--sl-h2-sm-size);
  }
}

.sec-contact {
  position: relative;
}
.sec-contact > img {
  width: 100%;
  min-height: 200px;
}
.sec-contact > div.sl-contact-content {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
}
.sec-contact > div.sl-contact-content > .h1 {
  font-size: 4em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 24px;
}
.sec-contact > div.sl-contact-content > .sl-btn > p {
  text-align: center;
}

.sec-sl-introduce {
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
  padding: 30px 0;
}

.sec-sl-introduce > div {
  max-width: 850px;
  margin: 0 auto 25px;
  font-size: 16px;
}

.sec-sl-introduce > img {
  width: 100%;
}

@media all and (max-width: 768px) {
  .sec-sl-introduce {
    padding: 25px 0;
  }
}

.sec-sl-pos .img-wrapper {
  position: relative;
  overflow: hidden;
}

.sec-sl-pos .img-wrapper > img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

@media all and (max-width: 768px) {
  .sec-contact > div.sl-contact-content > .h1 {
    font-size: 2em;
    margin-bottom: 12px;
  }

  .sec-sl-pos .img-wrapper {
    min-height: 200px;
  }

  .sec-sl-pos .img-wrapper > img {
    width: 100%;
  }
}

.section-3 {
  background: var(--sl-sec3-bg);
  color: var(--sl-sec3-color);
  padding: 100px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
}

.section-3 > h1 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 10px;
}

.section-3 .sec3-list {
  display: grid;
  grid-template-rows: auto repeat(4, 1fr);
}
.section-3 .sec3-list >h3 {
  font-size: 22px;
  font-weight: bold;
  padding: 10px 0;
}

.section-3 .sec3-list .sec3-list-item {
  padding: 5px 20px;
}

.section-3 .sec3-list .sec3-list-item .text {
  padding-left: 20px;
}

.section-3 .sec3-list .sec3-list-item img {
  width: 37px;
  max-width: unset;
}

@media all and (max-width: 768px) {
  .section-3 {
    padding: 20px;
  }
  .section-3 > h1 {
    font-size: 22px;
  }
  .section-3 .sec3-list >h3 {
    font-size: 18px;
  }
  .section-3 .sec3-list {
    display: block;
    grid-template-rows: unset;
    /*flex-direction: column;*/
  }
}