/* Basic utility colors */
@font-face {
  font-family: "cursive";
  src: url("../fonts/brannboll.otf") format("opentype");
}
@font-face {
  font-family: "raleway-regular";
  src: url("../fonts/raleway-regular.ttf") format("truetype");
}
@font-face {
  font-family: "raleway-bold";
  src: url("../fonts/raleway-bold.ttf") format("truetype");
}
.main-container {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-be;
  margin-bottom: 0;
}
.main-container .left-side {
  flex: 1;
}
.main-container .left-side div {
  padding: 0 4rem;
  background-color: #cad8e0;
  width: 100%;
  margin-bottom: 2.8rem;
  text-align: center;
}
.main-container .left-side div a {
  display: block;
  position: relative;
  cursor: pointer;
}
.main-container .left-side div a:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.main-container .left-side div a:after {
  width: 0;
  height: 0;
  top: calc(50% - 2rem);
  left: calc(50% - 2rem);
  border-top: 2rem solid transparent;
  border-left: 4rem solid rgba(255, 255, 255, 0.8);
  border-bottom: 2rem solid transparent;
  z-index: 10;
}
.main-container .left-side div a:after, .main-container .left-side div a:before {
  content: "";
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease-in-out;
}
.main-container .left-side div a:hover:after, .main-container .left-side div a:hover:before {
  opacity: 1;
}
.main-container .left-side img {
  width: 100%;
  height: auto;
}
.main-container .right-side {
  flex: 1;
  text-align: left;
}
.main-container .right-side h1 {
  font-family: "raleway-bold";
  font-size: 3rem;
  line-height: 1em;
  color: #264b5a;
  margin-bottom: 2.8rem;
}
.main-container .right-side p, .main-container .right-side ul {
  margin-bottom: 1.5rem;
}
.main-container .right-side p.list-header, .main-container .right-side ul.list-header {
  font-family: "raleway-bold";
  margin-bottom: 0;
}
.main-container .right-side ul {
  padding-left: 1.5rem;
}
.main-container .right-side ul li {
  list-style: disc;
  margin-bottom: 1rem;
}
.main-container .right-side ul li li {
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
}
.main-container .right-side ul li li:before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

.learn-more {
  margin-top: 4rem;
  border-top: 4px solid #6492a6;
  padding-top: 4rem;
  text-align: center;
}
.learn-more h2 {
  font-family: "raleway-bold";
  font-size: 2rem;
  line-height: 1em;
  margin-bottom: 2.8rem;
}
.learn-more .button {
  margin-bottom: 4rem;
}
.learn-more img {
  margin: 0 auto;
  width: 40%;
}

@media screen and (max-width: 600px) {
  .learn-more img {
    width: 70%;
  }
  .videos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.8rem;
  }
}