.articlesShare__container, .categoryList__container, .archiveList__container, .archiveDesc__container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
@media only screen and (min-width: 1400px) {
  .articlesShare__container, .categoryList__container, .archiveList__container, .archiveDesc__container {
    max-width: 1340px;
  }
}

.articlesShare__pic img, .categoryList__list__pic__img, .archiveList__list__item .archiveListItem__pic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.archiveDesc__readMore__link {
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
}
@media only screen and (min-width: 765px) {
  .archiveDesc__readMore__link {
    padding: 12px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .archiveDesc__readMore__link {
    padding: 14px 25px;
  }
}

.archiveDesc__readMore__link {
  background-color: #01b7f2;
  color: #ffffff;
}

.archiveDesc {
  background-color: #f6f7f8;
  padding: 30px 0;
  margin-bottom: 1px;
}
@media only screen and (min-width: 765px) {
  .archiveDesc {
    padding: 45px 0;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .archiveDesc {
    padding: 60px 0;
    margin-bottom: 100px;
  }
}
.archiveDesc__hiddenText {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .archiveDesc__hiddenText {
    display: block;
  }
}
.archiveDesc__text {
  padding-bottom: 15px;
  line-height: 1.6;
}
@media only screen and (min-width: 1020px) {
  .archiveDesc__text {
    line-height: 1.7;
  }
}
.archiveDesc__text--last {
  padding-bottom: 0;
}
.archiveDesc__readMore {
  display: flex;
  padding-bottom: 3px;
}
@media only screen and (min-width: 1200px) {
  .archiveDesc__readMore {
    display: none;
  }
}
.archiveList__list {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media only screen and (min-width: 765px) {
  .archiveList__list {
    max-width: 800px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .archiveList__list {
    max-width: none;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.archiveList__list__item .archiveListItem__link {
  display: block;
}
@media only screen and (min-width: 1200px) {
  .archiveList__list__item .archiveListItem__link:hover .archiveListItem__pic__img {
    transform: scale(1.1);
  }
}
.archiveList__list__item .archiveListItem__location {
  text-align: center;
  padding-top: 7px;
  color: #0e131f;
  font-size: 14px;
}
.archiveList__list__item .archiveListItem__pic {
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 500px) {
  .archiveList__list__item .archiveListItem__pic {
    height: 320px;
  }
}
@media only screen and (min-width: 765px) {
  .archiveList__list__item .archiveListItem__pic {
    height: 300px;
    border-radius: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .archiveList__list__item .archiveListItem__pic {
    border-radius: 28px;
    margin-bottom: 18px;
  }
}
.archiveList__list__item .archiveListItem__pic__img {
  transition: transform 0.5s;
}
.archiveList__list__item .archiveListItem__title {
  text-align: center;
  font-weight: 500;
  font-size: 28px;
  color: #0e131f;
  transition: color 0.5s;
  line-height: 1.3;
}
@media only screen and (min-width: 765px) {
  .archiveList__list__item .archiveListItem__title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1200px) {
  .archiveList__list__item .archiveListItem__title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1200px) {
  .archiveList__list__item .archiveListItem__title:hover {
    color: #149547;
  }
}

.categoryList {
  position: relative;
  background-color: #161e31;
  padding: 60px 0 20px;
  margin-bottom: 60px;
  overflow: hidden;
}
@media only screen and (min-width: 765px) {
  .categoryList {
    padding: 80px 0 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .categoryList {
    padding: 100px 0 130px;
  }
}
.categoryList:before, .categoryList:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: url("../images/shape-dots-white.png") center/cover;
}
@media only screen and (min-width: 1200px) {
  .categoryList:before, .categoryList:after {
    width: 300px;
    height: 300px;
  }
}
.categoryList:before {
  top: -100px;
  left: -100px;
}
@media only screen and (min-width: 1200px) {
  .categoryList:before {
    top: -150px;
    left: -150px;
  }
}
.categoryList:after {
  bottom: -100px;
  right: -100px;
}
@media only screen and (min-width: 1200px) {
  .categoryList:after {
    bottom: -150px;
    right: -150px;
  }
}
.categoryList__container {
  position: relative;
  z-index: 1;
}
.categoryList__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  .categoryList__list {
    margin: 0 -10px;
  }
}
@media only screen and (min-width: 1400px) {
  .categoryList__list {
    margin: 0 -15px;
  }
}
.categoryList__list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
}
@media only screen and (min-width: 765px) {
  .categoryList__list__item {
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .categoryList__list__item {
    width: calc(25% - 30px);
  }
}
@media only screen and (min-width: 1400px) {
  .categoryList__list__item {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .categoryList__list__item:hover .categoryList__list__pic__img {
    transform: scale(1.1);
  }
}
@media only screen and (min-width: 1200px) {
  .categoryList__list__item:hover .categoryList__list__num {
    background-color: #01b7f2;
  }
}
.categoryList__list__pic {
  background-color: rgba(255, 255, 255, 0.15);
  height: 320px;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
@media only screen and (min-width: 1200px) {
  .categoryList__list__pic {
    height: 240px;
  }
}
.categoryList__list__pic__img {
  transition: transform 0.5s;
}
.categoryList__list__icon {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: rgba(0, 0, 0, 0.75);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.categoryList__list__icon .icon {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}
.categoryList__list__num {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #149547;
  margin: -35px auto 15px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s;
}
.categoryList__list__name {
  font-size: 24px;
  line-height: 1.3;
}

.articlesShare {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1200px) {
  .articlesShare__container {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1200px) {
  .articlesShare__left {
    width: 60%;
  }
}
.articlesShare__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 20px;
  color: #149547;
}
@media only screen and (min-width: 765px) {
  .articlesShare__title {
    font-size: 30px;
    padding-bottom: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .articlesShare__title {
    font-size: 36px;
    padding-bottom: 30px;
  }
}
.articlesShare__title .inlineBlock {
  display: inline-block;
}
.articlesShare__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 765px) {
  .articlesShare__list {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .articlesShare__list {
    gap: 20px 30px;
    padding: 0 40px 0 0;
  }
}
.articlesShare__list__item {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
}
.articlesShare__list__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media only screen and (min-width: 765px) {
  .articlesShare__list__item:nth-last-child(2) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .articlesShare__list__item:hover .articlesShare__list__title {
    color: #e67e22;
  }
}
.articlesShare__list__title {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  transition: color 0.5s;
}
@media only screen and (min-width: 765px) {
  .articlesShare__list__title {
    font-size: 21px;
  }
}
@media only screen and (min-width: 1200px) {
  .articlesShare__list__title {
    font-size: 24px;
    padding-bottom: 5px;
  }
}
.articlesShare__list__text {
  color: #34495e;
  font-size: 15px;
}
@media only screen and (min-width: 1200px) {
  .articlesShare__pic {
    width: 40%;
    margin-top: -150px;
  }
}
@media only screen and (min-width: 1200px) {
  .articlesShare__pic img {
    object-position: bottom right;
  }
}

/*# sourceMappingURL=archive-travel-agencies.css.map */