/* line 4, ../sass/all/base.scss */
.w100 {
  width: 100% !important;
}

/* line 8, ../sass/all/base.scss */
.ttu {
  text-transform: uppercase !important;
}

/* line 12, ../sass/all/base.scss */
.tac {
  text-align: center !important;
}

/* line 16, ../sass/all/base.scss */
.tal {
  text-align: left !important;
}

/* line 20, ../sass/all/base.scss */
.tar {
  text-align: right !important;
}

/* line 24, ../sass/all/base.scss */
.ltr {
  direction: ltr;
}

/* line 28, ../sass/all/base.scss */
.rtl {
  direction: rtl;
}

/* line 32, ../sass/all/base.scss */
.d-f {
  display: -webkit-flex !important;
  display: -moz-flex !important;
  display: -ms-flex !important;
  display: -o-flex !important;
  display: flex !important;
}

/* line 40, ../sass/all/base.scss */
.f-w-w {
  -webkit-flex-wrap: wrap !important;
  -moz-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  -o-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

/* line 48, ../sass/all/base.scss */
.j-c-c {
  justify-content: center !important;
}

/* line 52, ../sass/all/base.scss */
.j-c-s-b {
  justify-content: space-between !important;
}

/* line 56, ../sass/all/base.scss */
.a-i-c {
  -ms-align-items: center !important;
  align-items: center !important;
}

/* line 61, ../sass/all/base.scss */
.no-pad-top {
  padding-top: 0 !important;
}

/* line 65, ../sass/all/base.scss */
.no-pad-bot {
  padding-bottom: 0 !important;
}

/* line 69, ../sass/all/base.scss */
.no-pad-left {
  padding-left: 0 !important;
}

/* line 73, ../sass/all/base.scss */
.no-pad-right {
  padding-right: 0 !important;
}

/* line 77, ../sass/all/base.scss */
.no-mar-top {
  margin-top: 0 !important;
}

/* line 81, ../sass/all/base.scss */
.no-mar-left {
  margin-left: 0 !important;
}

/* line 85, ../sass/all/base.scss */
.no-mar-right {
  margin-right: 0 !important;
}

/* line 89, ../sass/all/base.scss */
.no-mar-bot {
  margin-bottom: 0 !important;
}

/* line 93, ../sass/all/base.scss */
.global-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

/* line 5, ../sass/index/i-grid.scss */
.i-grid-wr {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

/* line 12, ../sass/index/i-grid.scss */
.i-grid-box {
  background-color: #1eb4fe57;
  border-radius: 20px;
  width: calc(100% / 2 - 25px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* line 21, ../sass/index/i-grid.scss */
.i-grid-box .img {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s ease-in-out;
}
/* line 29, ../sass/index/i-grid.scss */
.i-grid-box .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
/* line 36, ../sass/index/i-grid.scss */
.i-grid-box .text {
  text-align: center;
}
/* line 39, ../sass/index/i-grid.scss */
.i-grid-box .text h4 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
/* line 46, ../sass/index/i-grid.scss */
.i-grid-box .desc {
  padding: 50px;
}
/* line 50, ../sass/index/i-grid.scss */
.i-grid-box .list {
  display: flex;
  flex-direction: column;
  background-color: var(--color-blue-blue);
  padding: 30px 50px;
  gap: 20px;
  color: #fff;
}
/* line 58, ../sass/index/i-grid.scss */
.i-grid-box .list i {
  display: flex;
  gap: 10px;
  align-items: center;
}
/* line 63, ../sass/index/i-grid.scss */
.i-grid-box .list i svg {
  width: 16px;
  height: 16px;
}
/* line 68, ../sass/index/i-grid.scss */
.i-grid-box .list i span {
  display: block;
  font-size: 18px;
  position: relative;
  --bottom: -.2em;
}
/* line 74, ../sass/index/i-grid.scss */
.i-grid-box .list i span:after, .i-grid-box .list i span::before {
  background-color: currentColor;
  bottom: var(--bottom);
  content: "";
  height: .05em;
  left: 0;
  min-height: 1px;
  position: absolute;
  right: 0;
}
/* line 85, ../sass/index/i-grid.scss */
.i-grid-box .list i span::before {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: .5s;
}
/* line 92, ../sass/index/i-grid.scss */
.i-grid-box .list i span:after {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0s;
}
/* line 104, ../sass/index/i-grid.scss */
.i-grid-box .list i:hover span::before {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0s;
}
/* line 111, ../sass/index/i-grid.scss */
.i-grid-box .list i:hover span:after {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: .2s;
}
/* line 124, ../sass/index/i-grid.scss */
.i-grid-box:hover .img {
  transform: translateY(-10px);
}

/* line 132, ../sass/index/i-grid.scss */
.he .i-grid {
  direction: rtl;
}
/* line 142, ../sass/index/i-grid.scss */
.he .i-grid-box .list i svg {
  transform: scaleX(-1);
}

@media only screen and (min-width: 1241px) and (max-width: 1460px) {
  /* line 153, ../sass/index/i-grid.scss */
  .i-grid-box .desc {
    padding: 40px;
  }
  /* line 157, ../sass/index/i-grid.scss */
  .i-grid-box .list {
    padding: 25px 40px;
  }
  /* line 162, ../sass/index/i-grid.scss */
  .i-grid-box .list i span {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1240px) {
  /* line 172, ../sass/index/i-grid.scss */
  .i-grid-wr {
    gap: 35px;
  }

  /* line 176, ../sass/index/i-grid.scss */
  .i-grid-box {
    width: calc(100% / 2 - 17.5px);
  }
  /* line 179, ../sass/index/i-grid.scss */
  .i-grid-box .img {
    height: 210px;
  }
  /* line 183, ../sass/index/i-grid.scss */
  .i-grid-box .desc {
    padding: 32px;
  }
  /* line 187, ../sass/index/i-grid.scss */
  .i-grid-box .list {
    padding: 20px 32px;
  }
  /* line 192, ../sass/index/i-grid.scss */
  .i-grid-box .list i span {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* line 203, ../sass/index/i-grid.scss */
  .i-grid-wr {
    gap: 25px;
  }

  /* line 207, ../sass/index/i-grid.scss */
  .i-grid-box {
    width: calc(100% / 2 - 12.5px);
  }
  /* line 210, ../sass/index/i-grid.scss */
  .i-grid-box .img {
    height: 162px;
  }
  /* line 214, ../sass/index/i-grid.scss */
  .i-grid-box .desc {
    padding: 25px;
  }
  /* line 218, ../sass/index/i-grid.scss */
  .i-grid-box .list {
    padding: 15px 25px;
  }
  /* line 223, ../sass/index/i-grid.scss */
  .i-grid-box .list i span {
    font-size: 16px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  /* line 234, ../sass/index/i-grid.scss */
  .i-grid-wr {
    gap: 15px;
  }

  /* line 238, ../sass/index/i-grid.scss */
  .i-grid-box {
    border-radius: 15px;
    width: 100%;
  }
  /* line 242, ../sass/index/i-grid.scss */
  .i-grid-box .img {
    height: 74vw;
  }
  /* line 246, ../sass/index/i-grid.scss */
  .i-grid-box .desc {
    padding: 15px;
  }
  /* line 250, ../sass/index/i-grid.scss */
  .i-grid-box .list {
    padding: 15px 15px;
  }
}
/* line 1, ../sass/index/i-top.scss */
.i-top {
  position: relative;
  padding-top: 168px;
  overflow: hidden;
}
/* line 6, ../sass/index/i-top.scss */
.i-top.min-h {
  min-height: calc(100vh - 130px);
}

/* line 11, ../sass/index/i-top.scss */
.i-top-wr {
  position: relative;
  z-index: 2;
}

/* line 16, ../sass/index/i-top.scss */
.i-top-left {
  position: relative;
}
/* line 19, ../sass/index/i-top.scss */
.i-top-left .i-top-label {
  position: relative;
  color: var(--color-blue-dark);
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
/* line 29, ../sass/index/i-top.scss */
.i-top-left .section-title {
  max-width: 43%;
}
/* line 34, ../sass/index/i-top.scss */
.i-top-left .section-title.large.small {
  max-width: 57%;
  font-size: 70px;
}
/* line 42, ../sass/index/i-top.scss */
.i-top-left .section-undertitle {
  max-width: 50%;
}
/* line 46, ../sass/index/i-top.scss */
.i-top-left .widget {
  max-width: 50%;
  transform: translateX(-31%);
}

/* line 52, ../sass/index/i-top.scss */
.i-top-desc {
  position: relative;
  width: 550px;
  padding: 117px 53px 42px 80px;
  background-color: var(--color-blue-dark);
  margin-top: 67px;
}
/* line 59, ../sass/index/i-top.scss */
.i-top-desc .alert {
  width: calc(100% + 53px + 80px);
  margin-right: -80px;
  margin-bottom: -42px;
  padding: 42px 53px 42px 80px;
  background: #ed143d;
  color: #fff;
}
/* line 68, ../sass/index/i-top.scss */
.i-top-desc:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  left: -200%;
  background-color: var(--color-blue-dark);
  height: 100%;
}

/* line 80, ../sass/index/i-top.scss */
.i-top-desc-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #fff;
  padding: 20px;
  border-top: 1px solid #fff;
}
/* line 90, ../sass/index/i-top.scss */
.i-top-desc-row:last-child {
  border-bottom: 1px solid #fff;
}
/* line 94, ../sass/index/i-top.scss */
.i-top-desc-row svg {
  width: 15px;
  height: 15px;
}

/* line 104, ../sass/index/i-top.scss */
.i-top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* line 112, ../sass/index/i-top.scss */
.i-top-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 120, ../sass/index/i-top.scss */
.i-top-prod-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 45%;
  left: 15vw;
  width: 25%;
  transform: translateY(-50%);
  max-width: 400px;
  max-height: 400px;
}
/* line 132, ../sass/index/i-top.scss */
.i-top-prod-img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
/* line 138, ../sass/index/i-top.scss */
.i-top-prod-img .circle {
  position: absolute;
  width: 160px;
  height: 160px;
  background: var(--color-blue-dark);
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  top: -50px;
  left: -50px;
  transform: rotate(-32deg);
}

/* line 159, ../sass/index/i-top.scss */
.he .i-top {
  direction: rtl;
}
/* line 163, ../sass/index/i-top.scss */
.he .i-top-desc {
  padding-right: 80px;
  padding-left: 53px;
}
/* line 167, ../sass/index/i-top.scss */
.he .i-top-desc:after {
  right: initial;
  right: -200%;
}
/* line 172, ../sass/index/i-top.scss */
.he .i-top-desc .alert {
  font-size: 18px;
  padding: 42px 80px 42px 53px;
}

@media only screen and (min-width: 1241px) and (max-width: 1460px) {
  /* line 187, ../sass/index/i-top.scss */
  .i-top {
    padding-top: 140px;
  }

  /* line 191, ../sass/index/i-top.scss */
  .i-top-desc {
    margin-top: 55px;
    padding-top: 80px;
  }

  /* line 198, ../sass/index/i-top.scss */
  .i-top-left .section-title.large.small {
    max-width: 57%;
    font-size: 62px;
  }
  /* line 203, ../sass/index/i-top.scss */
  .i-top-left .i-top-left .widget {
    transform: translateX(-34%);
  }

  /* line 208, ../sass/index/i-top.scss */
  .i-top-prod-img {
    max-width: 350px;
    max-height: 350px;
  }
  /* line 212, ../sass/index/i-top.scss */
  .i-top-prod-img .circle {
    width: 140px;
    height: 140px;
    font-size: 16px;
    padding: 15px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1240px) {
  /* line 224, ../sass/index/i-top.scss */
  .i-top {
    padding-top: 120px;
  }

  /* line 228, ../sass/index/i-top.scss */
  .i-top-desc {
    margin-top: 50px;
    padding: 50px 40px 30px 40px;
    width: 500px;
  }

  /* line 235, ../sass/index/i-top.scss */
  .i-top-desc-row {
    font-size: 18px;
    padding: 18px;
  }

  /* line 241, ../sass/index/i-top.scss */
  .i-top-left .section-title.large.small {
    max-width: 60%;
    font-size: 54px;
  }
  /* line 246, ../sass/index/i-top.scss */
  .i-top-left .i-top-left .widget {
    transform: translateX(-39%);
  }

  /* line 251, ../sass/index/i-top.scss */
  .i-top-prod-img {
    max-width: 280px;
    max-height: 280px;
  }
  /* line 255, ../sass/index/i-top.scss */
  .i-top-prod-img .circle {
    width: 110px;
    height: 110px;
    font-size: 14px;
    padding: 12px;
  }

  /* line 265, ../sass/index/i-top.scss */
  .he .i-top-desc {
    padding: 50px 40px 30px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* line 274, ../sass/index/i-top.scss */
  .i-top {
    padding-top: 100px;
  }

  /* line 278, ../sass/index/i-top.scss */
  .i-top-desc {
    margin-top: 50px;
    padding: 50px 40px 30px 40px;
    width: 480px;
  }

  /* line 285, ../sass/index/i-top.scss */
  .i-top-desc-row {
    font-size: 16px;
    padding: 16px;
  }

  /* line 291, ../sass/index/i-top.scss */
  .i-top-left .section-title.large.small {
    max-width: 61%;
    font-size: 44px;
  }
  /* line 296, ../sass/index/i-top.scss */
  .i-top-left .widget {
    transform: translateX(-39%);
  }

  /* line 301, ../sass/index/i-top.scss */
  .i-top-prod-img {
    left: 55px;
    max-width: 215px;
    max-height: 215px;
  }
  /* line 306, ../sass/index/i-top.scss */
  .i-top-prod-img .circle {
    width: 85px;
    height: 85px;
    font-size: 13px;
    padding: 10px;
  }

  /* line 316, ../sass/index/i-top.scss */
  .he .i-top-desc {
    padding: 50px 40px 30px 40px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  /* line 324, ../sass/index/i-top.scss */
  .i-top {
    padding-top: 100px;
  }

  /* line 328, ../sass/index/i-top.scss */
  .i-top-desc {
    margin-top: 50px;
    padding: 50px 40px 30px 40px;
    width: 100%;
  }

  /* line 335, ../sass/index/i-top.scss */
  .i-top-desc-row {
    font-size: 16px;
    padding: 16px;
  }

  /* line 340, ../sass/index/i-top.scss */
  .i-top-left {
    max-width: 100%;
  }
  /* line 343, ../sass/index/i-top.scss */
  .i-top-left .section-title.large.small {
    max-width: 100%;
    font-size: 54px;
  }
  /* line 348, ../sass/index/i-top.scss */
  .i-top-left .widget {
    max-width: 100%;
    transform: translateX(0);
    margin-top: 30px;
  }

  /* line 355, ../sass/index/i-top.scss */
  .i-top-prod-img {
    position: relative;
    top: initial;
    left: initial;
    width: calc(100% - 30px);
    transform: translateY(0);
    max-width: 200px;
    max-height: initial;
    margin: auto;
    margin-top: 80px;
  }
  /* line 366, ../sass/index/i-top.scss */
  .i-top-prod-img .circle {
    width: 85px;
    height: 85px;
    font-size: 13px;
    padding: 10px;
  }

  /* line 376, ../sass/index/i-top.scss */
  .he .i-top-desc {
    padding: 15px;
  }
}
/* line 1, ../sass/index/i-why.scss */
.i-why {
  position: relative;
}

/* line 5, ../sass/index/i-why.scss */
.i-why-wr {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 50px;
  align-items: center;
}

/* line 14, ../sass/index/i-why.scss */
.i-why-box {
  border-radius: 20px;
  width: calc(100% / 2 - 25px);
  background-color: var(--color-blue-blue);
  padding: 50px;
  position: relative;
  overflow: hidden;
}
/* line 25, ../sass/index/i-why.scss */
.i-why-box:nth-child(1) .text, .i-why-box:nth-child(3) .text {
  max-width: 78%;
}
/* line 30, ../sass/index/i-why.scss */
.i-why-box.w100 {
  width: 100%;
}
/* line 33, ../sass/index/i-why.scss */
.i-why-box.w100 .text {
  max-width: 50%;
}
/* line 38, ../sass/index/i-why.scss */
.i-why-box .text {
  --color: #fff;
  color: #fff;
  position: relative;
  z-index: 2;
}
/* line 46, ../sass/index/i-why.scss */
.i-why-box .text p b {
  font-weight: 600;
}
/* line 52, ../sass/index/i-why.scss */
.i-why-box.trans {
  background-color: transparent !important;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
/* line 58, ../sass/index/i-why.scss */
.i-why-box.trans .text {
  --color: #000;
  color: #000;
}
/* line 64, ../sass/index/i-why.scss */
.i-why-box .img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px;
  padding-bottom: 0;
  pointer-events: none;
}
/* line 77, ../sass/index/i-why.scss */
.i-why-box .img .img-circle {
  width: 300px;
  height: 300px;
  background-color: var(--color-blue-dark);
  border-radius: 50%;
  position: absolute;
  right: -80px;
  bottom: -80px;
  opacity: .1;
}
/* line 87, ../sass/index/i-why.scss */
.i-why-box .img .img-circle:nth-child(2) {
  transform: scale(1.4);
  opacity: 0.05;
}
/* line 92, ../sass/index/i-why.scss */
.i-why-box .img .img-circle:nth-child(3) {
  transform: scale(1.8);
  opacity: 0.02;
}
/* line 98, ../sass/index/i-why.scss */
.i-why-box .img img {
  max-width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  width: 135px;
}

/* line 108, ../sass/index/i-why.scss */
.i-why-box-link {
  color: var(--color-blue-blue);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
/* line 115, ../sass/index/i-why.scss */
.i-why-box-link svg {
  width: 22px;
  height: 22px;
  position: relative;
  top: 1px;
}

/* line 123, ../sass/index/i-why.scss */
.i-why-box-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* line 128, ../sass/index/i-why.scss */
.i-why-box-list .list-box {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* line 136, ../sass/index/i-why.scss */
.i-why-box-list .list-box .icon img, .i-why-box-list .list-box .icon svg {
  height: 50px;
}

/* line 145, ../sass/index/i-why.scss */
.he .i-why {
  direction: rtl;
}
/* line 153, ../sass/index/i-why.scss */
.he .i-why-box .img {
  right: initial;
  left: 0;
}
/* line 157, ../sass/index/i-why.scss */
.he .i-why-box .img .img-circle {
  right: initial;
  left: -80px;
}
/* line 167, ../sass/index/i-why.scss */
.he .i-why-box-link svg {
  transform: scaleX(-1);
}

@media only screen and (min-width: 1024px) and (max-width: 1240px) {
  /* line 175, ../sass/index/i-why.scss */
  .i-why-wr {
    gap: 18px 35px;
  }

  /* line 179, ../sass/index/i-why.scss */
  .i-why-box {
    border-radius: 15px;
    width: calc(100% / 2 - 18px);
    padding: 35px;
  }
  /* line 184, ../sass/index/i-why.scss */
  .i-why-box .img {
    padding: 15px;
  }
  /* line 187, ../sass/index/i-why.scss */
  .i-why-box .img .img-circle {
    width: 210px;
    height: 210px;
    right: -56px;
    bottom: -56px;
  }
  /* line 194, ../sass/index/i-why.scss */
  .i-why-box .img img {
    width: 95px;
  }

  /* line 200, ../sass/index/i-why.scss */
  .i-why-box-link {
    font-size: 16px;
    gap: 5px;
  }
  /* line 204, ../sass/index/i-why.scss */
  .i-why-box-link svg {
    width: 18px;
    height: 18px;
    top: 1px;
  }

  /* line 214, ../sass/index/i-why.scss */
  .i-why-box-list .list-box .icon img, .i-why-box-list .list-box .icon svg {
    height: 40px;
  }

  /* line 224, ../sass/index/i-why.scss */
  .he .i-why-box .img .img-circle {
    left: -56px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* line 235, ../sass/index/i-why.scss */
  .i-why-box {
    width: 100%;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  /* line 243, ../sass/index/i-why.scss */
  .i-why-wr {
    gap: 15px;
  }

  /* line 247, ../sass/index/i-why.scss */
  .i-why-box {
    border-radius: 15px;
    width: 100%;
    padding: 15px;
  }
  /* line 252, ../sass/index/i-why.scss */
  .i-why-box .img {
    width: 25%;
    padding: 5px;
  }
  /* line 256, ../sass/index/i-why.scss */
  .i-why-box .img .img-circle {
    width: 200px;
    height: 200px;
    right: -40px;
    bottom: -40px;
  }

  /* line 269, ../sass/index/i-why.scss */
  .i-why-box-list .list-box .icon img, .i-why-box-list .list-box .icon svg {
    height: 40px;
  }

  /* line 279, ../sass/index/i-why.scss */
  .he .i-why-box .img .img-circle {
    left: -40px;
  }
}
/* line 1, ../sass/index/i-yel.scss */
.i-yel {
  position: relative;
  background-color: var(--color-blue);
  overflow: hidden;
}

/* line 7, ../sass/index/i-yel.scss */
.i-yel-wr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* line 12, ../sass/index/i-yel.scss */
.i-yel-wr .col {
  max-width: 35%;
}
/* line 15, ../sass/index/i-yel.scss */
.i-yel-wr .col:nth-child(2) {
  display: flex;
  justify-content: space-between;
  max-width: 45%;
  gap: 40px;
  align-items: center;
}
/* line 24, ../sass/index/i-yel.scss */
.i-yel-wr .text {
  width: calc(100% - 150px - 40px);
}
/* line 28, ../sass/index/i-yel.scss */
.i-yel-wr .img {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
/* line 40, ../sass/index/i-yel.scss */
.i-yel-wr .img img {
  display: block;
  max-width: 80%;
  max-height: 80%;
}
/* line 47, ../sass/index/i-yel.scss */
.i-yel-wr .demo3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
}
/* line 54, ../sass/index/i-yel.scss */
.i-yel-wr .demo3 #demo3 {
  animation: spin 15s linear infinite;
  animation-delay: 2s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1240px) {
  /* line 70, ../sass/index/i-yel.scss */
  .i-yel-wr .col:nth-child(2) {
    gap: 28px;
  }
  /* line 75, ../sass/index/i-yel.scss */
  .i-yel-wr .text {
    width: calc(100% - 105px - 28px);
  }
  /* line 79, ../sass/index/i-yel.scss */
  .i-yel-wr .img {
    width: 105px;
    height: 105px;
  }
  /* line 84, ../sass/index/i-yel.scss */
  .i-yel-wr .demo3 {
    font-size: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* line 95, ../sass/index/i-yel.scss */
  .i-yel-wr .col:nth-child(2) {
    max-width: 60%;
    gap: 28px;
  }
  /* line 101, ../sass/index/i-yel.scss */
  .i-yel-wr .text {
    width: calc(100% - 105px - 28px);
  }
  /* line 105, ../sass/index/i-yel.scss */
  .i-yel-wr .img {
    width: 105px;
    height: 105px;
  }
  /* line 110, ../sass/index/i-yel.scss */
  .i-yel-wr .demo3 {
    font-size: 10px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  /* line 120, ../sass/index/i-yel.scss */
  .i-yel-wr .col {
    max-width: 100%;
  }
  /* line 123, ../sass/index/i-yel.scss */
  .i-yel-wr .col:nth-child(2) {
    max-width: 100%;
    gap: 15px;
    margin-top: 15px;
  }
  /* line 130, ../sass/index/i-yel.scss */
  .i-yel-wr .text {
    width: calc(100% - 125px);
  }
  /* line 134, ../sass/index/i-yel.scss */
  .i-yel-wr .img {
    width: 100px;
    height: 100px;
  }
  /* line 139, ../sass/index/i-yel.scss */
  .i-yel-wr .demo3 {
    font-size: 9px;
  }
}
/* line 1, ../sass/index/i-how.scss */
.i-how {
  position: relative;
}

/* line 5, ../sass/index/i-how.scss */
.i-how-top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 35px;
}

/* line 15, ../sass/index/i-how.scss */
.i-how-link {
  display: block;
  font-size: 18px;
  position: relative;
  --bottom: -.2em;
}
/* line 21, ../sass/index/i-how.scss */
.i-how-link:after, .i-how-link::before {
  background-color: currentColor;
  bottom: var(--bottom);
  content: "";
  height: .05em;
  left: 0;
  min-height: 1px;
  position: absolute;
  right: 0;
}
/* line 32, ../sass/index/i-how.scss */
.i-how-link::before {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: .5s;
}
/* line 39, ../sass/index/i-how.scss */
.i-how-link:after {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0s;
}
/* line 49, ../sass/index/i-how.scss */
.i-how-link:hover::before {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0s;
}
/* line 56, ../sass/index/i-how.scss */
.i-how-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: .2s;
}

/* line 65, ../sass/index/i-how.scss */
.i-how-wr {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* line 71, ../sass/index/i-how.scss */
.i-how-row {
  display: flex;
  justify-content: space-between;
  padding: 55px 0;
  border-top: 1px solid #dfe6ea;
}
/* line 77, ../sass/index/i-how.scss */
.i-how-row:last-child {
  border-bottom: 1px solid #dfe6ea;
}
/* line 81, ../sass/index/i-how.scss */
.i-how-row .img {
  display: block;
  overflow: hidden;
  width: 277px;
  height: 187px;
  border-radius: 12px;
  isolation: isolate;
}
/* line 89, ../sass/index/i-how.scss */
.i-how-row .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* line 97, ../sass/index/i-how.scss */
.i-how-row .desc {
  width: 60%;
  display: flex;
}
/* line 101, ../sass/index/i-how.scss */
.i-how-row .desc i {
  display: block;
  width: 160px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
/* line 110, ../sass/index/i-how.scss */
.i-how-row .desc-wr {
  width: calc(100% - 200px);
}

@media only screen and (min-width: 768px) and (max-width: 1240px) {
  /* line 125, ../sass/index/i-how.scss */
  .i-how-top {
    gap: 15px;
    margin-bottom: 25px;
  }

  /* line 130, ../sass/index/i-how.scss */
  .i-how-link {
    font-size: 16px;
  }

  /* line 134, ../sass/index/i-how.scss */
  .i-how-row {
    padding: 40px 0;
  }
  /* line 138, ../sass/index/i-how.scss */
  .i-how-row .img {
    width: 194px;
    height: 130px;
    border-radius: 10px;
  }
  /* line 145, ../sass/index/i-how.scss */
  .i-how-row .desc i {
    width: 112px;
    font-size: 30px;
  }
  /* line 151, ../sass/index/i-how.scss */
  .i-how-row .desc-wr {
    width: calc(100% - 130px);
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  /* line 160, ../sass/index/i-how.scss */
  .i-how-top {
    gap: 15px;
  }

  /* line 164, ../sass/index/i-how.scss */
  .i-how-link {
    font-size: 16px;
  }

  /* line 168, ../sass/index/i-how.scss */
  .i-how-row {
    position: relative;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 0;
  }
  /* line 177, ../sass/index/i-how.scss */
  .i-how-row .img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    margin-right: 20%;
  }
  /* line 184, ../sass/index/i-how.scss */
  .i-how-row .desc {
    width: 100%;
  }
  /* line 187, ../sass/index/i-how.scss */
  .i-how-row .desc i {
    position: absolute;
    top: 15px;
    right: 0;
    width: 20%;
  }
  /* line 195, ../sass/index/i-how.scss */
  .i-how-row .desc-wr {
    width: 100%;
    margin-top: 15px;
    margin-right: 20%;
  }
}
/* line 1, ../sass/index/road-tw.scss */
.road-tw {
  position: relative;
  direction: ltr;
}
/* line 5, ../sass/index/road-tw.scss */
.road-tw .tradingview-widget-container {
  display: inline-block;
  margin: 0 10px;
  background: #fff;
  box-shadow: 0 2px 35px 0 rgba(49, 58, 90, 0.1);
  border-radius: 15px;
  z-index: 5;
  padding: 25px;
  pointer-events: none !important;
}
/* line 15, ../sass/index/road-tw.scss */
.road-tw .tradingview-widget-container .blue-text {
  display: none !important;
}

/* line 21, ../sass/index/road-tw.scss */
.i-crypto-widget {
  direction: ltr;
}
/* line 24, ../sass/index/road-tw.scss */
.i-crypto-widget .pull-right {
  display: none !important;
}
/* line 28, ../sass/index/road-tw.scss */
.i-crypto-widget .cc-coin {
  pointer-events: none;
  cursor: default;
}

/* line 19, ../sass/index.scss */
.header-logo img {
  transform: scale(1.1);
}
