/* assets/scss/_base.scss */
.container {
  width: 100%;
  max-width: 1262px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1262px) {
  .container {
    padding: 0;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.col-1 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-1 {
    width: 96px;
  }
}

.col-2 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-2 {
    width: 202px;
  }
}

.col-3 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-3 {
    width: 308px;
  }
}

.col-4 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-4 {
    width: 414px;
  }
}

.col-5 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-5 {
    width: 520px;
  }
}

.col-6 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-6 {
    width: 626px;
  }
}

.col-7 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-7 {
    width: 732px;
  }
}

.col-8 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-8 {
    width: 838px;
  }
}

.col-9 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-9 {
    width: 944px;
  }
}

.col-10 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-10 {
    width: 1050px;
  }
}

.col-11 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-11 {
    width: 1156px;
  }
}

.col-12 {
  width: 100%;
}
@media (min-width: 992px) {
  .col-12 {
    width: 1262px;
  }
}

.justify-content-center {
  justify-content: center;
}

@media (max-width: 991px) {
  .col-mobile-8 {
    width: 66.666667%;
  }
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts/montserrat-light-webfont.woff2") format("woff2"), url("../fonts/montserrat-light-webfont.woff") format("woff");
  font-weight: light;
  font-style: normal;
}
@font-face {
  font-family: "montserrat";
  src: url("../fonts/montserrat-bold-webfont.woff2") format("woff2"), url("../fonts/montserrat-bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-semibold-webfont.woff2") format("woff2"), url("../fonts/montserrat-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-ExtraBold, Montserrat";
  src: url("../fonts/montserrat-extrabold-webfont.woff2") format("woff2"), url("../fonts/montserrat-extrabold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  color: #707070;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.site-header .logo-container {
  margin-top: 2rem;
}
.site-header .logo-container img {
  display: block;
  width: 100%;
}
.site-header .title-container {
  max-width: 75%;
}
.site-header .title-container h1 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.site-main {
  padding: 4rem 0;
}
.site-main .content-area {
  padding: 2rem;
  min-height: 400px;
  font-size: 1.1rem;
  text-align: justify;
}
.site-main .content-area h2,
.site-main .content-area p {
  margin-top: 0;
  margin-bottom: 1em;
}
.site-main .content-area ul {
  list-style-position: inside;
}
.site-main .sidebar-area {
  padding: 2rem;
}
.site-main .sidebar-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-main .sidebar-area ul li {
  margin-bottom: 1rem;
}
.site-main .sidebar-area ul li a {
  display: block;
  background-color: #8DC73F;
  color: white;
  padding: 1rem;
  text-decoration: none;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer {
  width: 100%;
  background-color: #010624;
  color: white;
  padding: 3rem 0;
}
.site-footer .row {
  align-items: center;
}
.site-footer .row .col-4 {
  color: #8DC73F;
  text-align: center;
  font-size: 2rem;
}
.site-footer .row .col-4 a {
  color: #8DC73F;
  text-decoration: none;
}
.site-footer .row .col-4 a:hover {
  color: white;
}
.site-footer .row .col-8 ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
}
.site-footer .row .col-8 ul a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.site-footer .row .col-8 ul a:hover {
  color: white;
}
.site-footer .row .col-8 ul a i {
  font-size: 4.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  background: #333;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.btn:hover {
  opacity: 0.9;
}

@media (max-width: 991px) {
  .site-header {
    height: auto;
    min-height: 100vh;
  }
  .site-header .title-container {
    max-width: 90%;
  }
  .site-header .title-container h1 {
    font-size: 1.8rem;
  }
  .site-main {
    padding: 2rem 0;
  }
  .site-main .content-area,
.site-main .sidebar-area {
    padding: 1rem;
  }
  .site-footer {
    padding: 2rem 0;
  }
  .site-footer .row {
    flex-direction: column;
    gap: 2rem;
  }
  .site-footer .col-4,
.site-footer .col-8 {
    width: 100%;
    text-align: center;
  }
  .site-footer .col-8 ul {
    justify-content: space-evenly !important;
    flex-wrap: wrap !important;
    gap: 1rem 0 !important;
  }
  .site-footer .col-8 ul li {
    width: calc((100% - 2rem) / 3);
    display: flex;
    justify-content: center;
  }
  .site-footer .col-8 ul a i {
    font-size: 3rem;
  }
}

/*# sourceMappingURL=default.css.map */
