body {
  font-family: "Kanit", sans-serif;
}

.header {
  width: 100%;
}
.header__up {
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px solid #b7b7b7;
}
.header__title {
  display: flex;
  align-items: center;
}
.header__title img {
  width: 60px;
  height: 60px;
}
.header__title h1 {
  color: #526371;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0px;
}
.header__down {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
}
.header__down nav {
  margin-left: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.header__down nav a {
  color: #526371;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0px;
  text-decoration: none;
  margin: 10px;
  padding: 7px;
  border: 1px solid #b7b7b7;
  background-color: #b1f0eb;
}
.header__down nav a:hover {
  color: #1fb9b9;
  transition: 0.5s;
}

.icons {
  display: flex;
  justify-content: space-between;
}
.icons__top {
  display: flex;
}
.icons__top img {
  margin-left: 15px;
}
.icons__top h6 {
  color: #526371;
  font-size: 14px;
  line-height: 26px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0px;
  margin: 0px 0px -11px 12px;
}
.icons__top p {
  color: #b7b7b7;
  font-size: 14px;
  line-height: 25px;
  font-style: normal;
  font-weight: 400;
  margin: 0px 0px 0px 12px;
}

@media screen and (max-width: 1024px) {
  .header__title h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 992px) {
  .header__title h1 {
    font-size: 32px;
  }
  .header__up {
    flex-direction: column;
    height: auto;
  }
  .header__down {
    justify-content: center;
  }
  .header__down nav {
    margin-left: 0px;
  }
}
@media screen and (max-width: 480px) {
  .header__title h1 {
    font-size: 22px;
  }
  .header__down {
    margin: 20px 0 20px 0;
  }
  .header__down nav a {
    font-size: 18px;
    margin: 4px;
    padding: 4px;
  }
  .icons {
    flex-direction: column;
    align-items: center;
  }
  .icons__top img {
    margin-left: 0px;
  }
}
.box {
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.box:nth-of-type(even) {
  transform: translateX(-100%);
}

.box.show {
  transform: translateX(0);
}

.main h1 {
  color: #313538;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0px;
  text-align: center;
}
.main img {
  width: 100%;
}
.main__top {
  margin: 0 auto;
  width: 85%;
  overflow-x: hidden;
}
.main__left {
  display: flex;
  justify-content: space-evenly;
}
.main__left img {
  width: 40%;
}
.main__left p {
  border-left: 10px dotted black;
}
.main__left h2 {
  width: 40%;
  color: #313538;
  font-style: normal;
  font-size: 24px;
  font-weight: 400;
}
.main__right {
  display: flex;
  justify-content: space-evenly;
}
.main__right img {
  width: 40%;
}
.main__right p {
  border-left: 10px dotted black;
}
.main__right h2 {
  width: 40%;
  color: #313538;
  font-style: normal;
  font-size: 24px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .main h1 {
    font-size: 35px;
  }
  .main__left img {
    width: 30%;
  }
  .main__left h2 {
    width: 30%;
    font-size: 17px;
  }
  .main__left p {
    border-left: 8px dotted black;
  }
  .main__right img {
    width: 30%;
  }
  .main__right h2 {
    width: 30%;
    font-size: 17px;
  }
  .main__right p {
    border-left: 8px dotted black;
  }
}
@media screen and (max-width: 480px) {
  .main h1 {
    font-size: 27px;
  }
  .main__left {
    flex-direction: column;
    align-items: center;
    border-bottom: 6px dotted black;
    margin-top: 20px;
  }
  .main__left img {
    width: 90%;
  }
  .main__left h2 {
    width: 90%;
    font-size: 17px;
    text-align: center;
    margin-bottom: 30px;
  }
  .main__left p {
    display: none;
  }
  .main__right {
    flex-direction: column-reverse;
    align-items: center;
    border-bottom: 6px dotted black;
    margin-top: 20px;
  }
  .main__right img {
    width: 90%;
  }
  .main__right h2 {
    width: 90%;
    font-size: 17px;
    text-align: center;
    margin-bottom: 30px;
  }
  .main__right p {
    display: none;
  }
}
.t {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.tabs {
  display: flex;
  flex-direction: column;
  width: 85%;
  border: 2px solid #1fb9b9;
}

.tabs label {
  font-size: 20px;
  order: 1;
  display: block;
  padding: 10px 30px;
  cursor: pointer;
  background-color: #1fb9b9;
  font-weight: bold;
  transition: background ease 0.3s;
}

.tab h1 {
  color: #526371;
  font-size: 26px;
  line-height: 25px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
}

.t-text {
  width: 90%;
  margin: 0 auto;
}
.t-text h2 {
  color: #8c8c8c;
  font-size: 22px;
  line-height: 25px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.tabs .tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  height: auto;
  display: none;
  background-color: #fff;
}

.tabs input[type=radio] {
  display: none;
}

.tabs input[type=radio]:checked + label {
  background-color: #fff;
}

.tabs input[type=radio]:checked + label + .tab {
  display: block;
}

@media screen and (max-width: 768px) {
  .tabs label {
    font-size: 18px;
  }
  .tab h1 {
    font-size: 20px;
  }
  .t-text h2 {
    font-size: 17px;
  }
}
.telephone {
  padding-top: 40px;
  margin: 0 auto;
  width: 60%;
}
.telephone__top {
  display: flex;
  justify-content: center;
}
.telephone__img img {
  height: 230px;
}
.telephone__text h1 {
  color: #526371;
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0px;
}
.telephone__tel {
  display: flex;
  justify-content: center;
  margin-top: -20px;
}
.telephone__tel a {
  margin-left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: #8c8c8c;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
}
.telephone__tel a:hover {
  color: #1fb9b9;
}

@media screen and (max-width: 768px) {
  .telephone__img img {
    height: 190px;
  }
  .telephone__text h1 {
    font-size: 21px;
  }
  .telephone__tel {
    display: block;
    margin-top: -35px;
  }
  .telephone__tel a {
    margin-left: 90px;
    font-size: 26px;
  }
  .telephone__tel img {
    height: 25px;
  }
}
@media screen and (max-width: 480px) {
  .telephone__img img {
    height: 190px;
  }
  .telephone__text h1 {
    font-size: 15px;
  }
  .telephone__tel {
    margin-top: -10px;
  }
  .telephone__tel a {
    margin-left: 0px;
    font-size: 20px;
  }
  .telephone__tel img {
    height: 25px;
  }
}
.footer {
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
}
.footer__top {
  border-top: 1px solid #b7b7b7;
  display: flex;
  justify-content: flex-end;
}
.footer__top p {
  margin-right: 7px;
  color: #526371;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0px;
}

@media screen and (max-width: 480px) {
  .footer__top {
    justify-content: center;
  }
}/*# sourceMappingURL=block-2.css.map */