﻿/* common border radius */
/* disable text selection */
section.gt-block.infoboxes-links {
  padding: 6rem 0;
}
section.gt-block.infoboxes-links h2 {
  padding: 0 0 3rem 0;
  color: #0b1119;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: bold;
  letter-spacing: -0.02em;
}
section.gt-block.infoboxes-links h2 small {
  padding: 0 0 1.2rem 0;
  display: block;
  color: #E01021;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: bold;
  letter-spacing: -0.02em;
}
section.gt-block.infoboxes-links .boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.4rem;
}
section.gt-block.infoboxes-links article {
  padding: 3rem 2.6rem;
  position: relative;
  background: white;
  -webkit-border-radius: 1.2rem;
  -moz-border-radius: 1.2rem;
  border-radius: 1.2rem;
  -webkit-box-shadow: 0px 2px 2rem rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 2px 2rem rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 2rem rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.gt-block.infoboxes-links article:hover {
  -webkit-box-shadow: 0px 2px 2rem rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 2px 2rem rgba(0, 0, 0, 0.12);
  box-shadow: 0px 2px 2rem rgba(0, 0, 0, 0.12);
}
section.gt-block.infoboxes-links article .icon {
  width: 5.4rem;
  height: 5.4rem;
  margin: 0 0 2rem;
  position: relative;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #E01021;
}
section.gt-block.infoboxes-links article .icon svg {
  width: auto;
  height: 2.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
section.gt-block.infoboxes-links article .icon svg path {
  fill: white;
}
section.gt-block.infoboxes-links article h3 {
  padding: 0 0 1.8rem 0;
  color: #0b1119;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.gt-block.infoboxes-links article:hover h3 {
  color: #e2001a;
}
section.gt-block.infoboxes-links article p {
  color: #737373;
  font-size: 1.5rem;
  line-height: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
section.gt-block.infoboxes-links article p a {
  color: #0b1119;
  text-decoration: underline;
}
section.gt-block.infoboxes-links article p a:hover {
  text-decoration: none;
}
section.gt-block.infoboxes-links article > a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  z-index: 100;
}
@media screen and (max-width: 1400px) {
  section.gt-block.infoboxes-links {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 1000px) {
  section.gt-block.infoboxes-links .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 750px) {
  section.gt-block.infoboxes-links {
    padding: 4rem 0;
  }
  section.gt-block.infoboxes-links h2 {
    padding: 0 0 4rem 0;
    font-size: 3.6rem;
    line-height: 4.4rem;
  }
  section.gt-block.infoboxes-links .boxes {
    grid-template-columns: repeat(1, 1fr);
  }
}