*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:#d9e6f7;
  color:#111;
  font-family:Arial, Helvetica, sans-serif;
}

/* TITLE */

.fixed-title{
  position:fixed;
  top:26px;
  left:34px;
  width:calc(100% - 68px);

  display:grid;
  grid-template-columns:1fr 1fr 1fr;

  z-index:100;
  pointer-events:none;
}

.fixed-title span{
  font-family:Helvetica, Arial, sans-serif;
  font-size:clamp(34px,5vw,88px);
  font-weight:900;
  letter-spacing:-6px;
  text-transform:uppercase;
  line-height:.82;
}

.fixed-title span:nth-child(1){
  text-align:left;
}

.fixed-title span:nth-child(2){
  text-align:center;
}

.fixed-title span:nth-child(3){
  text-align:right;
}

/* PAGE */

.page{
  width:100%;
  padding:200px 34px 120px 300px;
}

/* INFO BOX */

.info-box{
  position:fixed;
  top:200px;
  left:34px;

  width:230px;

  background:white;
  border:2px solid #b7c9ea;
  border-radius:20px;

  overflow:hidden;
}

.info-header{
  padding:14px 16px;

  background:#f4f7ff;

  border-bottom:2px solid #b7c9ea;

  color:#e15aa7;
  font-weight:800;
  font-size:22px;
}

.info-box p{
  margin:0;
  padding:18px 20px 0;
  font-size:15px;
  line-height:1.2;
}

.info-box p:last-of-type{
  padding-bottom:18px;
}

/* NAVIGATION */

.button-box{
  display:grid;
  gap:8px;
  padding:0 20px 20px;
}

.button-box a{
  display:block;

  padding:10px;

  background:#f4f7ff;

  border:2px solid #b7c9ea;
  border-radius:10px;

  color:#315a98;
  text-decoration:none;

  font-size:14px;
  font-weight:700;
}

.button-box a:hover{
  background:#fff0fa;
  color:#e15aa7;
}

/* CONTENT */

.text-panel{
  width:100%;
  max-width:1280px;

  background:white;

  border:2px solid #b7c9ea;
  border-radius:26px;

  padding:40px;
}

.page-title{
  margin:0 0 30px;

  color:#e15aa7;

  font-size:48px;
  font-weight:900;

  letter-spacing:-2px;
  line-height:.9;
}

.text-panel p{
  margin:0 0 26px;

  font-size:20px;
  line-height:1.22;
  letter-spacing:-0.5px;
}

.quote{
  margin:42px 0 !important;

  padding-left:20px;

  border-left:8px solid #e15aa7;

  color:#e15aa7;

  font-size:28px !important;
  font-weight:900;

  line-height:1.02 !important;
}

.final-line{
  margin-top:60px !important;
}

/* IMAGES */

.feature-image{
  width:100%;
  max-width:700px;

  display:block;

  margin:50px auto;

  border-radius:18px;
  border:2px solid #b7c9ea;
}

/* REFERENCE */

.reference{
  margin-top:60px !important;

  padding-top:18px;

  border-top:2px solid #b7c9ea;

  color:#315a98;

  font-size:14px !important;
}

/* TABLET */

@media (max-width:1100px){

  .fixed-title{
    position:static;
    width:88vw;
    margin:24px auto 20px;
    display:block;
  }

  .fixed-title span{
    display:block;
    font-size:52px;
    letter-spacing:-4px;
    text-align:left !important;
  }

  .page{
    padding:0 0 90px;
  }

  .info-box{
    position:static;
    width:88vw;
    margin:0 auto 20px;
  }

  .text-panel{
    width:88vw;
    margin:0 auto;
    padding:28px;
  }

  .page-title{
    font-size:40px;
  }

  .text-panel p{
    font-size:18px;
  }
}

/* PHONE */

@media (max-width:600px){

  .fixed-title{
    width:92vw;
    margin:18px auto 14px;
  }

  .fixed-title span{
    font-size:36px;
    letter-spacing:-3px;
    line-height:.88;
  }

  .info-box{
    width:92vw;
    border-radius:16px;
    margin-bottom:16px;
  }

  .info-header{
    font-size:20px;
    padding:12px 14px;
  }

  .info-box p{
    font-size:14px;
    line-height:1.25;
    padding:14px 16px 0;
  }

  .button-box{
    padding:0 16px 16px;
  }

  .button-box a{
    font-size:13px;
    padding:9px;
  }

  .text-panel{
    width:92vw;
    padding:20px;
    border-radius:18px;
  }

  .page-title{
    font-size:32px;
  }

  .text-panel p{
    font-size:16px;
    line-height:1.28;
    letter-spacing:-0.2px;
    margin-bottom:20px;
  }

  .quote{
    margin:32px 0 !important;
    padding-left:14px;
    border-left:6px solid #e15aa7;
    font-size:22px !important;
  }

  .reference{
    font-size:12px !important;
    word-break:break-word;
  }
}