﻿@font-face {
  font-family: "Gilroy";
  src: url("/Fonts/Gilroy-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url("/Fonts/Gilroy-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Gilroy-Semi-Bold";
  src: url("/Fonts/Gilroy-Semibold.woff2") format("woff2");
}
body, html {
  width: 100%;
  height: 100%;
  position: relative;
}

body {
  font-family: "Gilroy", Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.site-button {
  font-family: Gilroy-Bold, Arial, Helvetica, sans-serif;
  background-color: #032d42;
  color: #86ed78;
  border: 0;
  border: 0;
  padding: 5px 20px;
  border-radius: 8px;
}
.site-button:hover {
  color: #fff;
}

.header-container {
  background-color: #fff;
  padding: 30px 0;
}
.header-container img.header-logo {
  height: 30px;
}

.hero-container {
  background: url("/Images/BannerBG.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero-container .hero-content {
  box-sizing: border-box;
  padding: 100px 60px 100px 0;
}
.hero-container .hero-content h2 {
  font-size: 48px;
  font-family: "Gilroy-Bold", Arial, Helvetica, sans-serif;
  color: #fff;
  margin-bottom: 20px;
}
.hero-container .hero-content p {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
}
.hero-container .hero-content p .green {
  color: #86ed78;
  font-weight: bold;
}

.logos-container {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 190px;
  gap: 20px;
}
.logos-container .logo-item {
  width: 30%;
  margin-bottom: 22px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #e7e7e7;
  position: relative;
  height: 330px;
}
.logos-container .logo-item .logo-image img {
  width: 100%;
}
.logos-container .logo-item .logo-content {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  box-sizing: border-box;
  padding: 0 10px;
}
.logos-container .logo-item .logo-content h4 {
  font-size: 20px;
}
.logos-container .logo-item .logo-content p {
  font-size: 14px;
}

.form-item {
  margin: 0 0 20px 0;
}
.form-item label, .form-item .form-error {
  font-family: Gilroy-Bold, Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.form-item .form-error {
  display: none;
  color: #f00;
}

.modal {
  background: none;
  backdrop-filter: blur(10px);
}

.modal-content .modal-header {
  background-color: #032d42;
}
.modal-content .modal-header .modal-title {
  font-family: Gilroy-Bold, Arial, Helvetica, sans-serif;
  color: #86ed78;
  font-size: 28px;
}

@media screen and (max-width: 599px) {
  .header-container {
    padding: 20px 0;
  }
  .header-container img.header-logo {
    height: 20px;
  }
  .hero-container {
    background-image: none;
    background-color: #032d42;
  }
  .hero-container .hero-content {
    padding: 40px 0px 40px 0px;
  }
  .hero-container .hero-content h2 {
    color: #86ed78;
  }
  .logos-container {
    padding: 0;
  }
  .logos-container .logo-item {
    height: 250px;
    width: 47%;
  }
  .logos-container .logo-item .logo-content h4 {
    font-size: 16px;
  }
  .modal-content .modal-header .modal-title {
    font-size: 22px;
  }
}
