/* ************************************************************************
   ************************************************************************

    COMMON SETTINGS

   ************************************************************************
   ************************************************************************ */
/* ------------------------------
    RESPONSIVE SETTINGS
  ------------------------------ */
/* ------------------------------
    FONT
  ------------------------------ */
@font-face {
  font-family: "quentin";
  src: url("../fonts/Quentin.otf") format("opentype");
}

/* ------------------------------
    COLOR SETTINGS
  ------------------------------ */
/* ------------------------------
    MIXIN
  ------------------------------ */
/* ------------------------------
    KEYFRAMES
  ------------------------------ */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@-webkit-keyframes loopClY {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes loopClY {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@-webkit-keyframes loopClYRv {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes loopClYRv {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@-webkit-keyframes loopRotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loopRotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes scrbarY {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
}

@keyframes scrbarY {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
}

@-webkit-keyframes textGradient {
  0% {
    color: #81adef;
  }
  20% {
    color: #0090f1;
  }
  40% {
    color: #4746f3;
  }
  60% {
    color: #1ccaee;
  }
  100% {
    color: #81adef;
  }
}

@keyframes textGradient {
  0% {
    color: #81adef;
  }
  20% {
    color: #0090f1;
  }
  40% {
    color: #4746f3;
  }
  60% {
    color: #1ccaee;
  }
  100% {
    color: #81adef;
  }
}

@-webkit-keyframes strokeOffset {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeOffset {
  to {
    stroke-dashoffset: 0;
  }
}

@media screen and (min-width: 320px) {
  #isArticle .sectionInner {
    padding: 2.5rem 5vw 5rem;
  }
}

@media screen and (min-width: 600px) {
  #isArticle .sectionInner {
    padding: 5rem 17.5vw 5rem;
  }
}

#isArticle .sectionInner *:first-child {
  margin-top: 0 !important;
}

#isArticle h2 {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#0b99eb), to(#009944));
  background: linear-gradient(90deg, #0b99eb 0%, #009944 100%);
  color: white;
  border-radius: 1rem;
}

@media screen and (min-width: 320px) {
  #isArticle h2 {
    font-size: 1.6rem;
    margin: 5rem 0 1.5rem;
    padding: 1.25rem 1.5rem;
  }
}

@media screen and (min-width: 600px) {
  #isArticle h2 {
    font-size: 1.8rem;
    margin: 5rem 0 1.5rem;
    padding: 1.25rem 1.5rem;
  }
}

#isArticle h3 {
  display: inline-block;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#0b99eb), to(#009944));
  background: linear-gradient(90deg, #0b99eb 0%, #009944 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 2rem 0 1rem;
  line-height: 1.72;
}

@media screen and (min-width: 320px) {
  #isArticle h3 {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 600px) {
  #isArticle h3 {
    font-size: 1.6rem;
  }
}

#isArticle p {
  font-size: 1.1rem;
  margin: 1rem 0 1.5rem;
}

#isArticle p a {
  display: inline-block;
  text-decoration: underline;
  color: #0b99eb;
  margin: 0 3px;
}

#isArticle p a:hover {
  text-decoration: none;
}

#isArticle p strong {
  font-weight: 700;
  font-size: 150%;
}

#isArticle ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .5rem;
}

#isArticle ul li {
  position: relative;
  background: rgba(11, 153, 235, 0.075);
  line-height: 1.74;
  border-radius: .5rem;
}

@media screen and (min-width: 320px) {
  #isArticle ul li {
    font-size: 1.1rem;
    padding: 1rem 2rem 1rem 4rem;
  }
}

@media screen and (min-width: 600px) {
  #isArticle ul li {
    font-size: 1.1rem;
    padding: 1rem 2rem 1rem 4rem;
  }
}

#isArticle ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: #009944;
  border-radius: 50%;
}

#isArticle .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  border-radius: 1rem;
  background: #0b99eb;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

@media screen and (min-width: 320px) {
  #isArticle .btn a {
    padding: 1rem 4rem 1rem 1rem;
  }
}

@media screen and (min-width: 600px) {
  #isArticle .btn a {
    padding: 1rem 4rem 1rem 1rem;
  }
}

#isArticle .btn a:hover {
  opacity: .6;
}

#isArticle .btn .icon {
  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;
}

@media screen and (min-width: 320px) {
  #isArticle .btn .icon {
    width: 5rem;
  }
}

@media screen and (min-width: 600px) {
  #isArticle .btn .icon {
    width: 5rem;
  }
}

#isArticle .btn .icon svg {
  fill: #FFFFFF;
}

@media screen and (min-width: 320px) {
  #isArticle .btn .icon svg {
    width: 3rem;
    height: 3rem;
  }
}

@media screen and (min-width: 600px) {
  #isArticle .btn .icon svg {
    width: 3rem;
    height: 3rem;
  }
}

#isArticle .btn .text {
  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;
  font-weight: 700;
}

@media screen and (min-width: 320px) {
  #isArticle .btn .text {
    width: calc(100% - 5rem);
    font-size: 1.45rem;
  }
}

@media screen and (min-width: 600px) {
  #isArticle .btn .text {
    width: calc(100% - 5rem);
    font-size: 1.45rem;
  }
}

@media screen and (min-width: 320px) {
  #isArticle .btn .text span:nth-child(2) {
    font-size: 60%;
  }
}

@media screen and (min-width: 600px) {
  #isArticle .btn .text span:nth-child(2) {
    font-size: 60%;
  }
}
/*# sourceMappingURL=page.css.map */