* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  letter-spacing: 0.5px;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

@font-face {
  font-family: Ariall-Narrow;
  src: url(../font/arial-narrow.ttf);
}

@font-face {
  font-family: Gotham-Light;
  src: url(../font/Gotham-Light.otf);
}

@font-face {
  font-family: Gotham-Medium;
  src: url(../font/Gotham-Medium_0.otf);
}

@font-face {
  font-family: Gotham-Bold;
  src: url(../font/Gotham-Bold_0.otf);
}

@font-face {
  font-family: Gotham-Black;
  src: url(../font/Gotham-Black_1.otf);
}

@font-face {
  font-family: impacts;
  src: url(../font/IMPACT.TTF);
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
}

body .go {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4.6rem;
  height: 4.6rem;
}

@media screen and (max-width: 480px) {
  body .go {
    bottom: 1rem;
    right: 1rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}

body .go img {
  opacity: 0.8;
}

body .go img:hover {
  opacity: 1;
  transition: .3s all ease;
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -ms-transition: .3s all ease;
  -o-transition: .3s all ease;
  cursor: pointer;
}

body .shows {
  z-index: 10;
}

body .shows img {
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
}

body .container {
  width: 100%;
}

body .container .header {
  width: 100%;
}

body .container .header .header-top {
  width: 100%;
  height: 91px;
  padding: 0 14.427083vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body .container .header .header-top .logo {
  width: 100%;
}

body .container .header .header-top .menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .container .header .header-top .menu .menu_container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body .container .header .header-top .menu .menu_container .menu_item {
  padding-left: 2.604167vw;
  /* 50/1920 */
}

body .container .header .header-top .menu .menu_container .menu_item a {
  font-family: Ariall-Narrow;
  font-size: 15px;
  color: #000;
}

body .container .header .header-top .xs-show {
  display: none;
}

body .container .header .header-top .xs-hide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .container .header .header-mid {
  width: 100%;
  height: 50px;
  background-color: #00b8e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .container .header .header-mid .question {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 14.427083vw 0 0;
}

body .container .header .header-mid .question .question_item {
  padding-left: 3.125vw;
  /* 60/1920 */
}

body .container .header .header-mid .question .question_item a {
  color: #ffffff;
  font-size: 15px;
  font-family: Ariall-Narrow;
}

body .container .header .header-slider {
  width: 100%;
}

body .container .header .header-slider .header-slider-container {
  width: 100%;
  min-height: 340px;
  background-image: url(../img/fondo.jpg);
  background-repeat: no-repeat;
  background-size: 100%, contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .container .header .header-slider .header-slider-container .slider-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60vw;
          flex: 0 0 60vw;
  /* 1200/1920 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .container .header .header-slider .header-slider-container .slider-text h1 {
  color: #fff;
  font-family: impacts;
}

body .container .header .header-slider .header-slider-container .slider-text h1:last-of-type {
  padding: 20px 0 25px 0;
}

body .container .header .header-slider .header-slider-container .slider-text a {
  background-color: #00b8e7;
  color: #fff;
  width: 200px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 40px;
  position: relative;
  font-family: Gotham-Light;
}

body .container .header .header-slider .header-slider-container .slider-text a::after {
  content: "\25B6";
  display: inline-block;
  position: absolute;
  color: #fff;
  right: 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body .container .header .header-slider .header-slider-container .slider-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38vw;
          flex: 0 0 38vw;
  /* 720/1920 */
  position: relative;
}

body .container .header .header-slider .header-slider-container .slider-img ul li {
  position: absolute;
  bottom: 0;
}

body .container .header .header-slider .header-slider-container .slider-img ul li img {
  width: 85%;
  max-width: 500px;
  min-width: 300px;
}

body .container .header .header-bottom {
  width: 100%;
  height: 185px;
  background-color: #3e4c55;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .container .header .header-bottom p {
  color: #ffffff;
  padding: 0 14.427083vw;
  letter-spacing: 1px;
  font-family: Gotham-Light;
  line-height: 25px;
  font-size: 14px;
}

body .container .main {
  width: 100%;
}

body .container .main .main-container {
  width: 100%;
  padding: 75px 14.427083vw 0 14.427083vw;
}

body .container .main .main-container .main-row {
  width: 100%;
  margin-bottom: 80px;
}

body .container .main .main-container .main-row h1 {
  font-size: 20px;
  color: #626262;
  font-weight: normal;
  font-family: Gotham-Bold;
}

body .container .main .main-container .main-row p {
  margin-top: 25px;
  color: #626262;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 25px;
  font-family: Gotham-Light;
}

body .container .main .main-container .main-row .container-table, body .container .main .main-container .main-row .container-table-2 {
  width: 100%;
  margin: 25px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr 0.1fr;
      grid-template-columns: 1fr 3fr 0.1fr;
  grid-auto-rows: auto;
  border: 0.5px solid;
  font-size: 14px;
  color: #626262;
  font-family: Gotham-Light;
}

body .container .main .main-container .main-row .container-table .table_header, body .container .main .main-container .main-row .container-table-2 .table_header {
  font-weight: bold;
  border: 0.5px solid;
  padding: 0 5px;
}

body .container .main .main-container .main-row .container-table .table_item, body .container .main .main-container .main-row .container-table-2 .table_item {
  border: 0.5px solid;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .container .main .main-container .main-row .container-table .table_empty, body .container .main .main-container .main-row .container-table-2 .table_empty {
  width: 100%;
  height: 25px;
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 4;
  border: 0.5px solid;
}

body .container .main .main-container .main-row .container-table-2 {
  border-top: 0;
  border-right: 0;
}

body .container .main .main-container .main-row .container-table-2 .table_item-2 {
  border: 0.5px solid;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(1) {
  border-top: 1px solid;
  border-right: 1px solid;
}

body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(14) {
  border-top: 1px solid;
}

body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(4), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(7), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(10) {
  border-right: 1px solid;
}

body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(1), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(4), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(7), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(10) {
  width: 100%;
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 2;
}

body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(2), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(3), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(5), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(6), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(8), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(9), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(11), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(12) {
  border: 0;
}

body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(15) {
  border-right: 1px solid;
  border-top: 1px solid;
}

body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(18), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(21), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(24), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(27), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(30), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(33), body .container .main .main-container .main-row .container-table-2 .table_item-2:nth-child(36) {
  border-right: 1px solid;
}

body .container .footer {
  width: 100%;
  background-color: #676767;
}

body .container .footer .footer-container {
  width: 100%;
  padding: 70px 14.427083vw 10px 20.3125vw;
}

body .container .footer .footer-container .footer_questions {
  width: 100%;
}

body .container .footer .footer-container .footer_questions h2 {
  color: #fff;
  font-size: 22px;
  font-family: Gotham-Medium;
  line-height: 30px;
  margin-bottom: 10px;
}

body .container .footer .footer-container .footer_questions p {
  color: #fff;
  font-family: Gotham-Light;
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
  letter-spacing: 1px;
}

body .container .footer .acordeon {
  width: 100%;
  padding: 10px 14.427083vw 90px 14.427083vw;
}

body .container .footer .acordeon .panel {
  width: 100%;
  border-top: 1px solid #fff;
}

body .container .footer .acordeon .panel:last-of-type {
  border-bottom: 1px solid #fff;
}

body .container .footer .acordeon .panel .panel_title {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 15px;
  font-family: Gotham-Medium;
  color: #fff;
  cursor: pointer;
  padding-left: 45px;
  position: relative;
}

body .container .footer .acordeon .panel .panel_title::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 11px;
  display: block;
  width: 4px;
  height: 20px;
  background: #fff;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

body .container .footer .acordeon .panel .panel_title::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 3px;
  display: block;
  width: 20px;
  height: 4px;
  margin-top: 0;
  background: #fff;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

body .container .footer .acordeon .panel .panel_contenido {
  display: none;
  padding-bottom: 20px;
  font-family: Gotham-Light;
  color: #fff;
  padding-left: 45px;
}

body .container .footer .acordeon .panel .cambiarIcon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #c81b26;
}

body .container .footer .acordeon .panel .cambiarIcon::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #c81b26;
}

body .container .footer .Copyright {
  width: 100%;
  height: 65px;
  background-color: #00b8e7;
  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;
}

body .container .footer .Copyright span {
  color: #fff;
  font-size: 12px;
  font-family: Gotham-Light;
}

@media screen and (min-width: 1241px) and (max-width: 1350px) {
  body {
    /* 110% / 1366*/
  }
  body .container .header .header-slider .header-slider-container {
    min-height: 320px;
  }
}

@media screen and (min-width: 1138px) and (max-width: 1240px) {
  body {
    /* 120% / 1366*/
  }
  body .container .header .header-slider .header-slider-container {
    min-height: 300px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1137px) {
  body {
    /* 133% / 1366*/
  }
  body .container .header .header-slider .header-slider-container {
    min-height: 280px;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1 {
    font-size: 25px;
  }
}

@media screen and (min-width: 910px) and (max-width: 1023px) {
  body {
    /* 150% / 1366*/
  }
  body .container .header .header-slider .header-slider-container {
    min-height: 260px;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1 {
    font-size: 20px;
  }
  body .container .header .header-slider .header-slider-container .slider-text a {
    width: 150px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
}

@media screen and (max-width: 1023px) {
  body {
    /* 150% / 1366*/
  }
  body .container .main .main-container {
    padding: 75px 14.427083vw 90px 14.427083vw;
  }
  body .container .main .main-container .main-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  body .container .main .main-container .main-row .main-items {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  body .container .main .main-container .main-row .main-items:last-of-type {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 20px;
    padding-left: unset;
  }
  body .container .main .main-container .main-row .main-items h3 {
    margin-top: 20px !important;
    text-align: left;
  }
}

@media screen and (max-width: 909px) {
  body {
    /* 170% / 1366*/
  }
  body .container .header .header-slider .header-slider-container {
    min-height: 240px;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1 {
    font-size: 20px;
  }
  body .container .header .header-slider .header-slider-container .slider-text a {
    width: 150px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  body {
    /* tablet 768px*/
  }
  body .container .header .header-top {
    position: relative;
    padding: 0 3.427vw;
  }
  body .container .header .header-top .xs-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  body .container .header .header-top .xs-show .menu_btn {
    position: relative;
    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;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
  }
  body .container .header .header-top .xs-show .menu_btn .menu_btn_burguer {
    width: 30px;
    height: 4px;
    background-color: #626262;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
  }
  body .container .header .header-top .xs-show .menu_btn .menu_btn_burguer::before, body .container .header .header-top .xs-show .menu_btn .menu_btn_burguer::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 4px;
    background-color: #626262;
    border-radius: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
  }
  body .container .header .header-top .xs-show .menu_btn .menu_btn_burguer::before {
    transform: translateY(-12px);
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    -o-transform: translateY(-12px);
  }
  body .container .header .header-top .xs-show .menu_btn .menu_btn_burguer::after {
    transform: translateY(12px);
    -webkit-transform: translateY(12px);
    -moz-transform: translateY(12px);
    -ms-transform: translateY(12px);
    -o-transform: translateY(12px);
  }
  body .container .header .header-top .xs-show .menu_container {
    height: 100vh;
    position: absolute;
    left: 0;
    top: 90px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .container .header .header-top .xs-show .menu_container .menu_item {
    color: #ffffff;
    padding-bottom: 10px;
  }
  body .container .header .header-top .xs-show .menu_container .menu_item a {
    color: #ffffff;
    font-size: 25px;
    letter-spacing: 1px;
  }
  body .container .header .header-top .xs-show .menu_container .menu_item:first-of-type {
    padding-top: 13vh;
  }
  body .container .header .header-top .xs-show .menu_container .question_item {
    color: #00b8e7;
    padding-bottom: 15px;
  }
  body .container .header .header-top .xs-show .menu_container .question_item a {
    color: #00b8e7;
    font-family: Ariall-Narrow;
  }
  body .container .header .header-top .xs-show .menu_container li:nth-child(4) {
    padding-top: 5vh;
  }
  body .container .header .header-top .xs-show .menu_btn.open .menu_btn_burguer {
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    background: transparent;
  }
  body .container .header .header-top .xs-show .menu_btn.open .menu_btn_burguer::before {
    transform: rotate(45deg) translate(35px, -35px);
    -webkit-transform: rotate(45deg) translate(35px, -35px);
    -moz-transform: rotate(45deg) translate(35px, -35px);
    -ms-transform: rotate(45deg) translate(35px, -35px);
    -o-transform: rotate(45deg) translate(35px, -35px);
  }
  body .container .header .header-top .xs-show .menu_btn.open .menu_btn_burguer::after {
    transform: rotate(-45deg) translate(35px, 35px);
    -webkit-transform: rotate(-45deg) translate(35px, 35px);
    -moz-transform: rotate(-45deg) translate(35px, 35px);
    -ms-transform: rotate(-45deg) translate(35px, 35px);
    -o-transform: rotate(-45deg) translate(35px, 35px);
  }
  body .container .header .header-top .xs-hide {
    display: none;
  }
  body .container .header .header-mid {
    display: none;
  }
  body .container .header .header-slider .header-slider-container {
    min-height: 240px;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1 {
    font-size: 15px;
    letter-spacing: 1px;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul li img {
    min-width: 240px;
  }
}

@media screen and (max-width: 660px) {
  body .container .header .header-bottom {
    height: auto;
  }
  body .container .header .header-mid .question .question_item a {
    font-size: 11px;
  }
  body .container .header .header-slider .header-slider-container {
    min-height: 220px;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul li img {
    min-width: 260px;
  }
}

@media screen and (max-width: 660px) and (min-width: 600px) {
  body .container .header .header-bottom {
    height: auto;
  }
  body .container .header .header-slider .header-slider-container {
    min-height: 200px;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul li img {
    min-width: 240px;
  }
}

@media screen and (max-width: 598px) and (min-width: 560px) {
  body .container .header .header-bottom p {
    font-size: 12px;
  }
  body .container .header .header-slider .header-slider-container {
    min-height: 190px;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul li img {
    min-width: 220px;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1 {
    font-size: 14px;
    letter-spacing: 1px;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1:last-of-type {
    padding: 7px 0 15px 0;
  }
}

@media screen and (max-width: 559px) and (min-width: 480px) {
  body .container .header .header-bottom p {
    font-size: 12px;
    padding: 20px 4.427vw;
    text-align: justify;
  }
  body .container .header .header-mid .question {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: unset;
  }
  body .container .header .header-slider .header-slider-container {
    min-height: 160px;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul li img {
    min-width: 190px;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1 {
    font-size: 12px;
    letter-spacing: 1px;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1:last-of-type {
    padding: 7px 0 15px 0;
  }
  body .container .main .main-container {
    padding: 75px 8.427vw 90px 8.427vw;
  }
}

@media screen and (max-width: 479px) and (min-width: 414px) {
  body .container .header .header-top .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .container .header .header-bottom p {
    font-size: 12.5px;
    padding: 40px 6.427vw;
    text-align: justify;
    line-height: 20px;
    letter-spacing: 0.5px;
  }
  body .container .header .header-mid .question {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: unset;
  }
  body .container .header .header-mid .question .question_item a {
    font-size: 9.5px;
  }
  body .container .header .header-slider .header-slider-container {
    background-image: url(../img/home_02.png);
    min-height: 350px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  body .container .header .header-slider .header-slider-container .slider-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    height: 245px;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul li img {
    min-width: 300px;
    max-width: 350px;
  }
  body .container .header .header-slider .header-slider-container .slider-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    background-color: #171c20;
    height: 180px;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1 {
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1:last-of-type {
    padding: 7px 0 15px 0;
  }
  body .container .main .main-container {
    padding: 75px 8.427vw 90px 8.427vw;
  }
}

@media screen and (max-width: 413px) and (min-width: 320px) {
  body .container .header .header-top .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .container .header .header-bottom p {
    font-size: 12.5px;
    padding: 40px 6.427vw;
    text-align: justify;
    line-height: 20px;
    letter-spacing: 0.5px;
  }
  body .container .header .header-mid .question {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 3.427vw 0 0;
  }
  body .container .header .header-mid .question .question_item a {
    font-size: 9.5px;
  }
  body .container .header .header-slider .header-slider-container {
    background-image: url(../img/home_02.png);
    min-height: 350px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  body .container .header .header-slider .header-slider-container .slider-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    height: 189px;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body .container .header .header-slider .header-slider-container .slider-img ul li img {
    min-width: 245px;
    max-width: 285px;
  }
  body .container .header .header-slider .header-slider-container .slider-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    background-color: #171c20;
    height: 180px;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1 {
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
  }
  body .container .header .header-slider .header-slider-container .slider-text h1:last-of-type {
    padding: 7px 0 15px 0;
  }
  body .container .main .main-container {
    padding: 75px 8.427vw 90px 8.427vw;
  }
}
/*# sourceMappingURL=style.css.map */