body {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
p {
  font-size: 35px;
}
a {
  color: black;
  border-bottom:#30AAE3 3px solid;
  text-decoration:none;
}
.header {
  display: block;
  width: 90%;
  margin-left: 5%;
  height: auto;
  float: left;
}
.headerFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.yellowButton {
  color: black;
  text-decoration: none;
  background: #9acb45;
  padding: 30px;
  transition: 0.5s all;
  border-bottom:none;
}
.yellowButton:hover {
  background: #9acb45;
  transition: 0.5s all;
}
.hero {
  display: block;
  width: 100%;
  height: auto;
  float: left;
}
.heroImg,
img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
}
.logoLink {
  width: 16.5%;
  border-bottom:none;
}
.bodyContent {
  display: grid;
  grid-template-columns: 65% 30%;
  grid-gap: 5%;
  width: 90%;
  margin-left: 5%;
  align-items: center;
}
.leftContent,
.rightContent {
  padding: 10px 35px;
}
.logoFlex {
  display: grid;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  grid-template-columns: auto auto auto auto;
  grid-gap: 40px;
}
.buttonCol {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.conversion {
  font-size: 28px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}
.blueButton {
  text-decoration: none;
  color: black;
  background: #30AAE3;
  padding: 25px 5px;
  border-radius: 5px;
  margin-top: 20px;
  width: 100%;
  text-align: center;
  transition: 0.5s all;
}

.blueButton:hover {
  background: #5bcdd7;
  transition: 0.5s all;
}
.footer {
  display: block;
  float: left;
  height: auto;
  width: 100%;
  padding: 50px 0px;
  background: black;
  margin-top: 5%;
}
.footer * {
  color: white;
  font-size: 12pt;
}
.footer > div {
  display: flex;
  justify-content: space-between;
}
.socialLogos {
  display: flex;
  width: 35%;
  justify-content: space-evenly;
  align-items: center;
}
.socialLogos a{
    border-bottom:none;
}

.socialLogos svg {
  fill: white;
  height: 45px;
  width: 45px;
}
.copyright {
  padding: 20px;
  margin-left: 5%;
}

@media only screen and (max-width: 1300px) {
  .bodyContent {
    grid-template-columns: 55% 45%;
  }
}

@media only screen and (max-width: 980px) {
  .header {
    display: block;
    width: 95%;
    margin-left: 2.5%;
    height: auto;
    float: left;
  }
  .bodyContent {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin-left: 0%;
  }
  .footer > div {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  .socialLogos {
    width: 55%;
  }
}

@media only screen and (max-width: 700px) {
  .logoLink {
    width: 40%;
  }
  .logoFlex {
    display: grid;
    grid-template-columns: auto auto;
  }
  .leftContent {
    margin-top: 5%;
  }
}
