* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
}

body {
  font-family: "Montserrat", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;

  /* background-color: #F0F0F0; */
  background-color: #f0f0f05e;
  background-color: #f9f9f9;
  /* background-color: #EAEDED; */
  /* background-color: #FAF3E0; */

  font-size: clamp(16px, 1.5vw, 20px);
}
h1 {
  font-size: clamp(28px, 4vw, 40px);
}
h2 {
  font-size: clamp(22px, 3.5vw, 30px);
}

.and {
  margin: 0 2px 0 4px;
}

/* HEADER */
:root {
  --air-force-blue: #688b9cff;
  --prussian-blue: #0c3652ff;
  --prussian-blue2: #344858;
  --prussian-blue4: #344858;
  --prussian-blue2: #253546;
  --prussian-blue2: #153243;
  --alabaster: #edefeaff;
  --alabasterLight: rgb(255, 255, 254);
  /* --prussian-blue-lighter-1: #F4F9FC; */
  --prussian-blue-lighter-1: #f4f9fc2f;
  --walnut-brown: #54504aff;
  --eerie-black: #1c1c1cff;
  --alabaster2: #eef0eb;
}

header {
  width: 100%;
  height: 60px;
  background-color: var(--prussian-blue2);
  color: #fefefa;
  top: 0;
  position: relative;
  z-index: 1000;
}

/* header h1 {
    flex-shrink: 0;
    font-size: clamp(22px, 5vw, 36px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  } */
.main-head {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  flex-shrink: 0;
  font-size: clamp(25px, 5vw, 30px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

header > nav {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1001;
  box-sizing: content-box;
  padding: 0 auto;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  height: 100vh;
  width: 300px;
  transition: 0.2s linear;
  background-color: #fefefa;
  color: #111111;
  z-index: 3;
  padding: 60px 10px;
}
.sidebar.is-active {
  left: 0;
  box-shadow: 5px 0 3px -3px #00000030;
}
.sidebar h2 {
  color: #fefefa;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.sidebar a {
  font-size: 0.85rem;
}

.menu-item {
  display: flex;
  padding: 10px 20px;
  color: #202930;
  text-decoration: none;
  transition: 0.3s ease-out;
}

.menu-item:hover,
.menu-item.is-active {
  color: #ff0800;
}

.content {
  flex-grow: 1;
  padding: 20px;
}

.content h1 {
  margin-bottom: 1rem;
}

.hamburger-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
}

.menu-toggle {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.hamburger {
  cursor: pointer;
  position: relative;
  top: 17%;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fefefa;
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menuButton {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ITEMS */
.container {
  width: 80%;
  min-height: calc(100vh - 60px);
  margin: 10px auto;
}

h1 {
  text-align: center;
}
h1,
h2 {
  color: #0b1a24;
}

p {
  /* margin: 5px 0 10px 0; */
  color: #0b1a24;
}
.dark-link {
  color: #0b1a24;
  text-decoration: underline;
}

.section-title {
  font-size: 34px;
  color: #0b1a24;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  position: relative;
  /* text-decoration: underline; */
  /* padding: 0 210px; */
  /* text-align: start; */
  /* margin-left: 50px; */
}
.section-title::after {
  content: "";
  width: 200px;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border-bottom: 1px solid #0b1a24;
}

.section {
  width: 100%;
  min-height: 200px;
  margin: 20px auto;
}
.grid-boxes {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* grid-template-rows: 320px; */
  gap: 20px;
  /* padding: 0.5rem; */
}

.grid-item {
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.171);
}
.grid-boxes .item-image {
  width: 100%;
  /* flex: 2; */
  /* flex: 2 0 65%; */
  height: 65%;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.grid-boxes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.5);
}

.grid-boxes .item-info {
  /* background-color: var(--prussian-blue2); */
  background-color: #163446;
  width: 100%;
  height: 35%;
  padding: 12px;
  border-radius: 0 0 5px 5px;
  font-size: 16px;
}
.grid-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.item-info-description {
  color: #f0f0f0;
}

/* COOKIE */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f9f9f9;
  background-color: #344858;
  color: #f9f9f9;
  padding: 10px;
  border-top: 1px solid #ccc;
  text-align: center;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cookie-link{
  text-decoration: underline;
}
.cookie-btn{
  padding: 2px 5px;
  border: none;
  cursor: pointer;
}
/* FOOTER */

footer {
  width: 100%;
  height: 360px;
  background-color: #0b1a24;
  color: #f0f0f0;
  margin-top: 180px;
  position: relative;
}
.footer-items {
  width: 100%;
  height: 70%;
  display: flex;
}
.footer-logo {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #f0f0f0;
  /* font-size: 30px; */
}
.footer-logo-name {
  font-size: 46px;
  font-family: "Montserrat", sans-serif;
}
.footer-logo::after {
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  left: 0;
  top: 20%;
  border-right: 1px solid #f0f0f0;
}

.footer-logo-name,.slogan,
a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 100px;

}

.footer-contact {
  display: flex;
  flex-direction: column;
  /* font-size: 16px; */
}

.blog-credits-legal {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.legal {
  display: flex;
  flex-direction: column;
}
.footer-social-links {
  margin-top: 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-icon {
  width: 20px;
}

.footer-bottom {
  /* border: 1px solid white; */
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  height: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f0f0f0;
}
.footer-bottom p {
  color: #f0f0f0;
}

@media (max-width: 1440px) {
}

@media (max-width: 1366px) {
}

@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
  .section {
    width: 90%;
  }
  .grid-boxes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-head {
    margin-left: 0;
    text-align: center;
    width: calc(100% - 25px);
    position: relative;
    left: 0;
    transform: translateX(-20px);
  }

  .grid-boxes {
    grid-template-columns: 1fr;
  }

  #cookie-consent-banner{
    flex-direction: column;
  }
  .footer-logo {
    display: none;
  }
  .footer-right {
    width: 100%;
  }
}

@media (max-width: 425px) {
  
}

@media (max-width: 320px) {
}

@media (max-height: 425px) {
}
