@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Piazzolla:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

.main {
  font-family: Piazzolla, serif;
  color: var(--black);
}

a {
  color: var(--primary-color);
  font-size: 16.637px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  font-family: var(--primary-font);
}
a:hover {
  text-decoration: underline;
}

p {
  font-size: 16.024px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 992px) {
  p {
    font-size: 22.4px;
  }
}

:root {
  --primary-color: #234d34;
  --secondary-color: #e8dcc4;
  --tertiary-color: #c86f3c;
  --white: #fcfbf0;
  --black: #15150e;
  --lite-grey: #fafafa;
  --primary-font: Rubik, sans-serif;
  --secondary-font: Piazzolla, serif;
  --max-width: 1440px;
  --success-color: #4caf50;
  --error-color: #f44336;
  --info-color: #2196f3;
  --warning-color: #ff9800;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

.centered {
  display: block;
  margin: 0 auto;
}

.color-primary {
  color: var(--primary-color);
}

.mt-1 {
  margin-top: 16px;
}

.mt-2 {
  margin-top: 32px;
}

.mb-1 {
  margin-bottom: 16px;
}

.mb-2 {
  margin-bottom: 32px;
}

.alert {
  padding: 16px;
}
.alert--success {
  background-color: var(--success-color);
  color: var(--white);
}
.alert--error {
  background-color: var(--error-color);
  color: var(--white);
}
.alert--warning {
  background-color: var(--warning-color);
  color: var(--white);
}
.alert--info {
  background-color: var(--info-color);
  color: var(--white);
}

.header {
  background: var(--primary-color);
}
.header__container {
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 10px;
  color: var(--white);
  padding: 40px;
}
@media (min-width: 992px) {
  .header__container {
    grid-template-columns: 0.7fr 1.3fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
.header__container > * {
  align-self: center;
}
.header a {
  color: var(--white);
  text-decoration: none;
}
.header a:hover {
  text-decoration: underline;
}
.header__brand {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.125;
}
@media (min-width: 992px) {
  .header__brand {
    font-size: 20px;
  }
}
.header__tagline {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  text-align: right;
}
@media (min-width: 992px) {
  .header__tagline {
    text-align: left;
    font-size: 17px;
  }
}
.header__socials ul {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-end;
}

.btn {
  border: 2px solid var(--white);
  padding: 16px 24px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
  background: var(--primary-color);
}
.btn:hover {
  background: var(--white);
  color: var(--primary-color);
}

.hero {
  background: var(--primary-color);
}
.hero__row {
  max-width: var(--max-width);
  box-sizing: border-box;
  margin: 0 auto;
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 0 40px;
  gap: 48px;
}
@media (min-width: 992px) {
  .hero__row {
    flex-direction: row;
    align-items: center;
  }
}
.hero h1 {
  font-family: var(--primary-font);
  font-size: 35px;
  font-weight: 500;
  line-height: 1.125;
}
@media (min-width: 992px) {
  .hero h1 {
    font-size: 54px;
  }
}
.hero p {
  margin-top: 16px;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .hero p {
    font-size: 22px;
  }
}
.hero .btn {
  margin-top: 48px;
  display: inline-block;
}
.hero__col {
  flex: 1;
}
.hero__col > img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 10/14;
}
@media (min-width: 992px) {
  .hero__col > img {
    aspect-ratio: 10/9;
  }
}

.footer {
  background-color: var(--primary-color);
}
.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px;
  color: var(--white);
}
.footer a {
  color: var(--white);
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer__row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 992px) {
  .footer__row {
    flex-direction: row;
  }
}
.footer__col {
  flex: 1;
}
.footer__col .btn {
  margin-top: 48px;
  display: inline-block;
}
.footer__bottom {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 992px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__copyright {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

.nav li {
  display: inline-block;
  margin-right: 32px;
}
.nav li:last-child {
  margin-right: 0;
}
.nav a {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .nav a {
    font-size: 20px;
  }
}

.article {
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
}
.article--overlay {
  border-radius: 4px;
  background-color: var(--lite-grey);
}
.article a {
  text-decoration: none;
}
.article h3 {
  font-family: var(--primary-font);
  font-size: 25.6588px;
  font-weight: 400;
  line-height: 1.125;
  text-transform: none;
}
@media (min-width: 992px) {
  .article h3 {
    font-size: 38.4px;
  }
}
.article .date {
  display: block;
  margin-top: 48px;
}
.article p {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .article p {
    font-size: 22.4px;
  }
}
.article img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 10/7;
}

.heading1 {
  font-family: var(--primary-font);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.125;
}
@media (min-width: 992px) {
  .heading1 {
    font-size: 48px;
  }
}

.heading2 {
  font-size: 25.6588px;
  font-weight: 400;
  line-height: 1.125;
  font-family: var(--primary-font);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .heading2 {
    font-size: 38.4px;
  }
}

.heading3 {
  font-size: 25.6588px;
  font-weight: 400;
  line-height: 1.125;
  font-family: var(--primary-font);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .heading3 {
    font-size: 38.4px;
  }
}

.in-numbers {
  background-color: var(--secondary-color);
}
.in-numbers__container {
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .in-numbers__container {
    justify-content: center;
    flex-direction: row;
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .in-numbers__content {
    flex: 0 0 25%;
  }
}
.in-numbers__content .heading2 {
  color: var(--primary-color);
}
.in-numbers__content p {
  margin-top: 48px;
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
.in-numbers__bg {
  display: block;
  max-width: 778px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 10/14;
  min-width: 0;
}
@media (min-width: 992px) {
  .in-numbers__bg {
    flex: 1;
    object-fit: fill;
    aspect-ratio: auto;
  }
}

.last-actualities__container {
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px;
}
.last-actualities__container .heading1 {
  color: var(--tertiary-color);
}
.last-actualities__grid {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 992px) {
  .last-actualities__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.last-actualities__grid .article,
.last-actualities__grid .article a {
  color: var(--black);
}

.pagination {
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 40px 40px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pagination-centered {
  justify-content: center;
}
.pagination .page-item.active .page-link {
  font-weight: 800;
}
.pagination .page-link {
  color: var(--primary-color);
  font-size: 16.637px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
}
.pagination .page-link:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max-width);
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 40px;
}
.container--primary {
  background-color: var(--primary-color);
}

.date {
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.content {
  color: var(--primary-color);
}
.content p {
  margin-top: 32px;
}
.content p:first-child {
  margin-top: 0;
}
.content b,
.content em,
.content strong {
  font-weight: bold;
}
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-top: 32px;
}
.content h1 {
  font-size: 38.4px;
  font-weight: 400;
  line-height: 1.125;
}
.content h2 {
  font-size: 31.087px;
  font-weight: 500;
  line-height: 1.125;
}
.content h3 {
  font-size: 25.6588px;
  font-weight: 400;
  line-height: 1.125;
}

.icon::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-color: var(--tertiary-color);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: 25px 25px;
}
.icon--clock::after {
  mask-image: url("../images/icons/clock.png");
}
.icon--folder::after {
  mask-image: url("../images/icons/folder.png");
}
.icon--facebook::after {
  mask-image: url("../images/icons/facebook.png");
}
.icon--instagram::after {
  mask-image: url("../images/icons/instagram.png");
}
.icon--white::after {
  background-color: var(--white);
}
.icon--small::after {
  scale: 0.8;
}

.meta {
  color: var(--tertiary-color);
  display: flex;
  align-items: center;
  gap: 24px;
}
.meta__item {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact {
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.contact .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact .form-group label {
  margin-bottom: 0.5rem;
}
.contact .form-group input[type=text],
.contact .form-group input[type=email],
.contact .form-group textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}
.contact .form-group > ul {
  color: var(--error-color);
}

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