@import url(https://fonts.googleapis.com/css?family=Poppins:400,300,500);
*,
*:before,
*:after {
  // box-sizing: inherit;
}

hsection.card {
  background: #000046;
  background: -webkit-linear-gradient(to right, #327cdd, #000046); 
  background: linear-gradient(to right, #327cdd, #000046);
  border-radius: 24px 24px 24px 48px;
  padding: 48px 48px 48px 308px;
  min-width: 640px;
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  position: relative;
  box-shadow: 5px 0 0 0 rgba(204,204,204,0.3), -5px 0 0 0 rgba(204,204,204,0.3), 0 5px 0 0 rgba(204,204,204,0.3);
}
hsection.card .text-content {
  display: flex;
  flex-direction: column;
  width:calc(60vw - 192px);
}
hsection.card .text-content h3 {
  margin: 0;
  font-size: 1.5em;
  max-width: 20ch;
  color: #fff;
}
hsection.card .text-content p {
  margin: 25px 0 24px;
  color: #fff;
}
hsection.card .text-content a {
  border: 3px solid #f2f2f2;
  color: #ffffff;
  align-self: flex-start;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  transition: 400ms all;
}
hsection.card .text-content a:hover {
  background: #051c5e;
  color: white;
}
hsection.card .visual {
  width: 240px;
  height: 100%;
  position: absolute;
  top: -24px;
  left: 24px;
  overflow: hidden;
  border-radius: 24px;
}
hsection.card .visual img {
  width: 300px;
}
article {
  display: block;
  min-width:calc(640px + 248px); 
}
@media all and (max-width: 1100px) {
  article {
    width: 100%;
    min-width: 100%;
  }
  hsection.card {
    min-width: 100%;
  }
  hsection.card .text-content {
    width: 100%;
  }
}
@media all and (max-width: 720px) {
  hsection.card {
    padding: 88px 36px 36px;
    flex-direction: column;
    border-radius: 24px;
  }
  hsection.card .text-content h3 {
    max-width:calc(100% - 150px);
    font-size: 1em;
  }
  hsection.card .text-content p,
  hsection.card .text-content a {
    font-size: 0.8em;
  }
  hsection.card .visual {
    width: 150px;
    height: 150px;
    right: 16px;
    left: auto;
    border-radius: 50%;
  }
  hsection.card .visual img{
    width: 100%;
    height: auto;
    }
}