@import url('https://fonts.googleapis.com/css2?family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --primary: #2855bf;
  --secondary: #03045a;
  --accent: #061bb0;
  --text: #1f2937;
  --bg: #f9fafb;
  --font-sans-serif: "Open Sans", sans-serif;
  --font-tomorrow: "Tomorrow", sans-serif;
}

* {
  line-height: 2em;
}

body {
  font-size: 16px;
  background-color: #fff;
  font-family: var(--font-tomorrow);
  overflow-x: hidden;
}

button {
  font-family: 'Anton', sans-serif !important;
  letter-spacing: 1px;
}

.space-top-lg {
  padding-top: 8vh;
}

a {
  transition: color 0.3s ease, transform 0.3s ease-in-out;
}

.logo img {
  width: 80%;
}

.margin-top-lg {
  margin-top: 30px;
}

.margin-bottom-lg {
  margin-bottom: 30px;
}

.margin-bottom-sm {
  margin-bottom: 5px;
}

.margin-bottom-md {
  margin-bottom: 20px;
}

.card-icon {
  position: absolute;
  top: -20px;
  left: 42%;
  font-size: 42px;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

section {
  background-color: #fff;
  color: #000;
  min-height: 90vh;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .175);
}

section.content {
  padding: 10vh 0;
}

section.background-1 {
  background-image: url('bg1.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

section.background-2 {
  background-image: url('bg2.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

section .title {
  font-family: var(--font-tomorrow);
  font-size: 54px;
}

section .title-alt {
  font-family: var(--font-sans-serif);
  color: var(--secondary);
  font-size: 44px;
  margin-bottom: 20px;
  font-weight: 600;
}

p {
  font-family: var(--font-tomorrow);
}

.clr-primary {
  color: var(--primary);
}

.card-box {
  display: block;
  background-color: var(--primary);   /* pick your solid color */
  background: linear-gradient(to right, var(--secondary) 10%, var(--primary) 80%);
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;  /* round left side, flat right side */
}

.card-box-content {
  padding: 10px 15px;
}

ul {
  margin-top: 20px;
}

h4, h5 {
  font-family: var(--font-tomorrow);
  color: var(--accent);
  margin-bottom: 10px;
}

.w-20 {
  width: 20%;
}

.icon-box {
  border-radius: 100%;
  background-color: var(--secondary);
  color: #fff;
  width: 36px;
  height: 36px;
  float: left;
  padding-top: 2px;
  margin-top: 15px;
  margin-right: 10px;
  text-align: center;
}

.icon-box.big {
  width: 64px;
  height: 64px;
  margin-top: 20px
}

.icon-box.big i {
  font-size: 32px;
  margin-top: 13px;
}

footer {
  text-align: center;
  padding: 20px 0 10px;
  background: var(--primary);
  color: #fff;
}

footer p {
  margin-bottom: 0;
  font-family: var(--font-sans-serif);
}

footer ul {
  list-style-type: none;
  margin: 0;
}

footer ul li {
  display: inline-block;
  padding: 0 2.5vw;
  font-family: var(--font-sans-serif);
}

.fa-brands {
  padding-right: 5px;
}


footer ul li > a:link,
footer ul li > a:hover,
footer ul li > a:visited {
  color: #fff;
}

.hexagon {
  width: 420px;       /* adjust size */
  height: 420px;
  overflow: hidden;
  clip-path: polygon(
    25% 5%,   /* top-left */
    75% 5%,   /* top-right */
    100% 50%, /* right middle */
    75% 95%,  /* bottom-right */
    25% 95%,  /* bottom-left */
    0% 50%    /* left middle */
  );
}

.hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(min-height: 800px) {
  section {
    min-height: 60vh;
  } 
}

@media(max-width: 640px) {
  .w-20 {
    width: 30%;
  }

  .hexagon {
    width: 240px;
    max-height: 240px;
    margin: 0 auto;
  }
}