@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.6;
}

.top-bar {
  background-color: white;
  padding: 1rem 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.top-bar-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .logo {
  font-size: 24px;
  font-weight: bold;
}
.top-bar .quote {
  color: #009EE0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 9px;
  line-height: 16px;
}

.banner {
  overflow: hidden;
  background-color: #acc705;
  padding: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15rem;
  position: relative;
}
.banner img {
  position: absolute;
  transform: translate(-50%, -50%);
  height: 100%;
}

.main-content {
  max-width: 1000px;
  margin: 0px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  gap: 40px;
}
.main-content .sidebar-left {
  display: flex;
  align-items: flex-start;
}
.main-content .sidebar-quote {
  color: #666;
  font-size: 26px;
  margin-top: 30px;
  text-align: center;
  font-weight: 300;
}
.main-content .content-middle h2 {
  margin-bottom: 8px;
  margin-top: 30px;
  color: #009ee0;
  font-weight: normal;
  font-size: 20px;
}
.main-content .content-middle p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
  font-size: 75%;
}
.main-content .content-middle ul {
  margin-left: 2rem;
  margin-bottom: 20px;
}
.main-content .content-middle ul li {
  color: #555;
  line-height: 1.8;
  font-size: 75%;
}
.main-content .content-middle a {
  color: #009ee0;
}
.main-content .content-middle .quote-blue {
  color: #009ee0;
  font-weight: 500;
  font-style: italic;
}
.main-content .sidebar-right {
  display: flex;
  align-items: flex-start;
}
.main-content .cta-box {
  background-color: #009ee0;
  padding: 1.5rem 1rem 2.25rem 1rem;
  color: white;
  width: 200px;
  position: relative;
}
.main-content .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 0;
  height: 0;
  border-top: 20px solid #009ee0;
  border-left: 25px solid transparent;
}
.main-content .cta-box h3 {
  font-size: 1rem;
}
.main-content .cta-box p {
  font-size: 75%;
  margin-bottom: 0.5rem;
}
.main-content .cta-box .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: white;
  color: #009ee0;
  padding: 4px 0.8rem 4px 0.5rem;
  text-decoration: none;
  font-size: 75%;
}
.main-content .cta-box .cta-button svg {
  height: 1rem;
}

.footer {
  margin-top: 80px;
}
.footer-sections {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-section {
  padding: 0.5rem 0;
}
.footer-section h4 {
  margin-bottom: 8px;
  color: #009ee0;
  font-weight: 400;
}
.footer-section p, .footer-section li, .footer-section a {
  color: #666;
  font-size: 70%;
}
.footer-section ul {
  list-style: none !important;
}
.footer-section li {
  position: relative;
  padding-left: 1.5em; /* space to preserve indentation on wrap */
}
.footer-section li:before {
  content: "✓"; /* placeholder for the SVG */
  position: absolute;
  left: 0; /* place the SVG at the start of the padding */
  width: 1em;
  height: 1em;
  color: #e2007a;
}
.footer-section a {
  color: #009ee0;
}
.footer-bar {
  background-color: #333;
  color: white;
  margin-top: 40px;
}
.footer-bar-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .pink-section {
  border-top: 8px solid #f9cce4;
  border-bottom: 8px solid #e2007a;
}
.footer .orange-section {
  border-top: 8px solid #fce8de;
  border-bottom: 8px solid #f08d5b;
}
.footer .green-section {
  border-top: 8px solid #eef4cd;
  border-bottom: 8px solid #acc705;
}
.footer .footer .footer-content {
  flex-direction: row;
  margin: 2rem auto 0 auto;
  display: flex;
  width: clamp(1rem, 100%, 1000px);
  justify-content: space-around;
}
.footer .footer .contact h4 {
  font-size: 0.8;
}
.footer .footer .contact p {
  font-size: 80%;
  color: #555;
}
.footer .footer .contact a {
  color: #009ee0;
}
.footer .footer .info .social-links {
  display: row;
  flex-direction: column;
}
.footer .footer .info .social-links svg {
  width: 2rem;
  color: #009EE0;
}
.footer .footer .copyright {
  font-size: 75%;
  color: #555;
  text-align: center;
}

@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr 3fr 1fr;
    gap: 20px;
  }
  .sidebar-quote {
    font-size: 18px;
  }
  .cta-box {
    width: 180px;
  }
  .footer-sections {
    gap: 30px;
  }
  .footer .footer-content {
    width: 90%;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .top-bar {
    padding: 0.75rem 12px;
  }
  .top-bar-content {
    padding: 0 12px;
  }
  .top-bar .logo img {
    max-height: 80px;
  }
  .top-bar .quote {
    font-size: 12px;
    letter-spacing: 4px;
  }
  .banner {
    height: 12rem;
  }
  .main-content {
    grid-template-columns: 4fr 1fr;
    gap: 20px;
    padding: 0 12px;
  }
  .sidebar-left {
    display: none !important;
  }
  .cta-box {
    width: 160px;
    padding: 1rem 0.75rem 1.5rem 0.75rem;
  }
  .cta-box::before {
    left: -20px;
    border-top: 15px solid #009ee0;
    border-left: 20px solid transparent;
  }
  .cta-box h3 {
    font-size: 0.9rem;
  }
  .cta-box p {
    font-size: 70%;
  }
  .content-middle h2 {
    font-size: 18px;
    margin-top: 20px;
  }
  .content-middle p, .content-middle ul li {
    font-size: 70%;
  }
  .footer-sections {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 12px;
  }
  .footer .footer-content {
    flex-direction: column;
    width: 100% !important;
    padding: 0 12px;
    gap: 20px;
    align-items: flex-start;
  }
  .footer .footer-content .social-links {
    flex-direction: row;
    gap: 15px;
  }
  .footer .footer-content .social-links svg {
    width: 1.5rem;
  }
  .footer-bar-content {
    padding: 0 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
  }
}
@media (max-width: 580px) {
  .top-bar .quote {
    display: none;
  }
  .main-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sidebar-right {
    width: 100%;
  }
  .cta-box {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .cta-box::before {
    display: none;
  }
  .banner {
    height: 10rem;
  }
  .content-middle h2 {
    font-size: 16px;
  }
  .footer {
    margin-top: 40px;
  }
  .footer-section h4 {
    font-size: 16px;
  }
  .footer-section p, .footer-section li, .footer-section a {
    font-size: 65%;
  }
  .footer .footer-content {
    margin-top: 1rem;
  }
  .footer .footer-content h4 {
    font-size: 14px;
  }
  .footer .footer-content p {
    font-size: 70%;
  }
  .footer .copyright {
    font-size: 65%;
    padding: 1rem 0;
  }
  .footer-bar-content {
    font-size: 11px;
  }
}/*# sourceMappingURL=main.css.map */