@charset "utf-8";
/* CSS Document */

/* features-cta */
.features-cta{
  max-width: 1340px;
  padding: 0 20px;
  margin: 40px auto;
}
.features-cta img{
  max-width: 100%;
}

/* link-section */

.link-section{
  background: linear-gradient(to right, #0018F2, #0095EF);
  padding: 80px 20px;
}
.link-section h3{
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
}
.link-section ul{
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap:30px;
  list-style: none;
  padding: 0;
}
.link-section ul li{
  width:calc((100% - 60px ) / 3 );
  height: 118px;
}
.link-section ul li a{
  display: flex;
  width: 100%;
  height: 100%;
  padding: 40px 30px 40px 26px;
  align-items: center;
  position: relative;
  color: #0018F2;
  font-size: 2rem;
  font-weight: 700;
  background-color: #fff;
}
.link-section ul li a:hover{
  text-decoration:none;
}
.link-section ul li a::before{
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 26px;
  border-top: 1px solid #0018F2;
}
@media screen and (max-width:1024px){
  .link-section ul li{
    width:calc((100% - 30px ) / 2 );
    height: 100px;
  }
}
@media screen and (max-width:768px){
  .link-section{
    padding: 40px 20px;
  }
  .link-section h3{
    font-size: 26px;
    margin-bottom: 40px;
  }
  .link-section ul{
    gap:15px;
  }
  .link-section ul li{
    width:100%;
    height: 52px;
  }
  .link-section ul li a{
    font-size:1.4rem;
    height: 52px;
    padding: 10px 30px 10px 26px;
  }
}