html {
  background-color: rgb(255, 255, 255);
}

.top_box {
  width: 100%;
  /* height: 583px; */
  background-color: #222439;
  padding-top: 200px;
  box-sizing: border-box;
  background-image: url(/assets/img/pages/locations/proxies/bg.png);
  background-repeat: no-repeat;
  background-position: center;

  padding-bottom: 100px;
}

.top_box > div {
  display: flex;
}

.top_box .title {
  font-size: 42px;
  font-weight: 600;
  line-height: 58px;
  color: #ffffff;
  margin-top: 34px;
  margin-bottom: 24px;
}

.top_box .txt {
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
}

.top_box .started_btn {
  width: 253px;
  height: 52px;
  background-color: #ffbd00;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  line-height: 52px;
  text-align: center;
  margin-top: 32px;
  cursor: pointer;
}

.top_box .left {
  width: 490px;
  margin-right: 90px;
}

.top_b {
  justify-content: space-between;
  margin-top: 100px;
}

.top_b > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  color: #ffffff;
  opacity: 0.2;
}

.top_b > div .title {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 0;
  margin-bottom: 26px;
}

.top_bg {
  position: relative;
}

.top_bg .r_name {
  position: absolute;
  font-size: 16px;
  letter-spacing: 2px;
  color: #ffbd00;
}

.two_box {
  min-height: 195px;
  background-color: #fffdf7;
  border-radius: 24px;
  border: solid 1px #ffbd00;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  padding: 20px 14px;
  margin-top: 73px;
  margin-bottom: 114px;
}

.two_box > div {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 16px;
  min-height: 132px;
  position: relative;
}

.two_box > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 1px;
  height: calc(100% - 32px);
  background: rgba(255, 189, 0, 0.35);
}

.two_box .title {
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
}

.two_box .txt {
  font-size: 16px;
  color: #333333;
  margin-top: 14px;
  line-height: 1.4;
  min-height: 44px;
}

.therr_box > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 140px;
}

.therr_box > div > div:not(.img_box) {
  flex: 1 1 0;
  min-width: 0;
}

.therr_box > div .title {
  font-size: 34px;
  font-weight: 600;
  color: #333333;
}

.therr_box > div .txt {
  width: 100%;
  max-width: 533px;
  font-size: 15px;
  line-height: 28px;
  color: #333333;
  margin-top: 25px;
  margin-bottom: 30px;
}

.therr_box > div .started_btn {
  width: 199px;
  height: 48px;
  border-radius: 8px;
  border: solid 1px #191919;
  font-size: 16px;
  line-height: 48px;
  color: #1a1a1a;
  text-align: center;
  cursor: pointer;
}

.therr_box > div .started_btn:hover {
  background-color: #191919;
  color: #fff;
}

.therr_box > div .img_box {
  width: 100%;
  max-width: 469px;
  min-height: 226px;
  aspect-ratio: 469 / 226;
  background-color: #faf8f5;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin: 0;
  overflow: hidden;
  flex: 0 0 clamp(320px, 36vw, 469px);
}

.therr_box > div:nth-child(2n-1) .img_box {
  margin: 0;
}

.therr_box > div .img_box img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 1280px) {
  .therr_box > div .txt {
    width: auto;
    max-width: 100%;
  }

  .therr_box > div > div:not(.img_box) {
    width: auto;
    flex: 1 1 0;
  }

  .therr_box > div .img_box {
    max-width: 430px;
    flex-basis: clamp(300px, 34vw, 430px);
  }

  .therr_box > div:nth-child(2n-1) .img_box {
    margin: 0;
  }
}

@media only screen and (max-width: 1100px) {
  .top_bg {
    display: none;
  }

  .top_box {
    height: auto;
    padding-bottom: 50px;
  }

  .top_box > .w1280 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .top_box .left {
    width: 100%;
    max-width: 760px;
    margin-right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .top_box .title {
    font-size: 36px;
    line-height: 1.25;
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .top_box .txt {
    font-size: 16px;
    line-height: 1.7;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .top_box .started_btn {
    margin-left: auto;
    margin-right: auto;
  }

  .xi0_location_top_bg {
    margin-left: auto;
    margin-right: auto;
  }

  .two_box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 6px;
    margin-top: 44px;
    margin-bottom: 78px;
  }

  .two_box > div:nth-child(2n)::after {
    display: none;
  }

  .therr_box > div {
    margin-bottom: 92px;
    gap: 28px;
  }

  .therr_box > div .title {
    font-size: 30px;
    line-height: 1.28;
  }

  .therr_box > div .txt {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 900px) {
  .top_box > .w1280 {
    gap: 18px;
  }

  .top_box .left {
    max-width: 100%;
  }

  .therr_box > div {
    flex-direction: column;
    margin-bottom: 58px;
    align-items: center;
    gap: 18px;
  }

  .therr_box > div .img_box {
    width: 100%;
    max-width: 380px;
    padding: 12px;
    min-height: 0;
    aspect-ratio: auto;
    margin: 0 auto;
    flex: 0 1 auto;
  }

  .therr_box > div > div:not(.img_box) {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .therr_box > div .img_box img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 220px;
    height: auto;
    margin: 0 auto;
  }

  .therr_box > div:nth-child(2n-1) .img_box {
    margin-bottom: 0;
  }

  .therr_box > div:nth-child(2n-1) {
    flex-direction: column-reverse;
  }

  .therr_box > div .txt {
    width: 100%;
  }

  .two_box {
    height: auto;
    grid-template-columns: 1fr;
    padding: 10px 0;
    margin-top: 34px;
    margin-bottom: 56px;
  }

  .two_box > div {
    min-height: 0;
    padding: 14px 20px;
  }

  .two_box > div:not(:last-child)::after {
    display: block;
    left: 22px;
    right: 22px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
  }

  .top_box {
    padding-top: 158px;
    padding-bottom: 38px;
  }

  .top_box .title {
    font-size: 31px;
  }

  .top_box .started_btn {
    width: 100%;
    max-width: 260px;
  }
}

@media only screen and (max-width: 650px) {
  .two_box .title {
    font-size: 24px;
  }

  .two_box .txt {
    font-size: 15px;
    min-height: 0;
  }

  .therr_box > div .title {
    font-size: 26px;
    line-height: 1.3;
  }

  .therr_box > div .txt {
    font-size: 14px;
    line-height: 1.65;
  }

  .therr_box > div .started_btn {
    width: 100%;
    max-width: 220px;
  }

  .therr_box > div .img_box {
    max-width: 320px;
    padding: 10px;
  }

  .therr_box > div .img_box img {
    max-height: 190px;
  }
}
