@font-face {
  font-family: "Geominist";
  src: url("/fonts/GeomanistExtraLight.ttff") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geominist";
  src: url("/fonts/Geomanist-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geominist";
  src: url("/fonts/GeomanistRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geominist";
  src: url("/fonts/Geominist-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geominist";
  src: url("/fonts/GeoministBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



body {
    font-family: "Geominist", Arial, sans-serif;
    font-weight: 300;
    overflow-y: scroll;
}
h1 { 
font-size: clamp(2.2rem, 5vw, 3.5rem); 
font-weight:400;
letter-spacing:-1px;
}
h2 { 
font-size: clamp(1.5rem, 4vw, 2.5rem); 
font-weight:400;
letter-spacing:-1px;

}
h3 { 
font-size: 1.6rem;
width:80%;
text-align: right;
}

p  { font-size: 16px; line-height: 1.6; }




.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

 .section {
  padding: 80px 0;
   max-width: 1400px;
}

.container {
  width: 100%;
  padding: 2rem;
  
}

.section-divider {
  width: 100%;
  height: 1px;
  background: #000;
  margin-bottom: 2.5rem;
}



.grid {
  display: grid;
  gap: 2rem;
}
.two-col.col-40 {
  grid-template-columns: 40% 60%;

}

.two-col.col-50 {
  grid-template-columns: 1fr 1fr;
}














.header {
  background: #fff;
  position: relative;
  max-width:100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  z-index: 1;
}
.header a {
  text-decoration: none;
  color: #000;
  
}

.header ul {
  list-style: none;
}

.menu-items li {
  padding: 0.5rem 1rem;
  transition: background 0.3s ease-in-out;
}

.link-logo {
    background: url('images/1722751001501.svg');
    display: block;
    background-position: center;
    height: 36px;
    width: 81px;
    background-size: cover;
    background-repeat: no-repeat;
}

.menu-items {
  display: flex;
  align-items: center;
}





.menu-btn__lines::before,
.menu-btn__lines::after {
  content: "";
  position: absolute;
}
.menu-btn__lines,
.menu-btn__lines::before,
.menu-btn__lines::after {
  width: 2rem;
  height: 1.2px;
  background: #000;
  transition: all 0.5s ease-in-out;
}
.menu-btn__lines::before {
  transform: translateY(-0.5rem);
}
.menu-btn__lines::after {
  transform: translateY(0.5rem);
}
/* animation */
.menu-btn.open .menu-btn__lines {
  transform: translateX(2rem);
  background: transparent;
}
.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-1.5rem, 1.5rem);
  background: #000;
}
.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-1.5rem, -1.5rem);
  background: #000;
}


.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}







@media screen and (max-width: 990px) {
  .menu-btn {
    display: flex;
  }
  
   .header .menu-items {
    position: absolute;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    top: 100%;
    right: 0;
    background: #122331;
    display: block;
    padding: 1rem;
    line-height: 3rem;
    overflow-y: auto;
    transform: translateX(-100vh);
    transition: transform 0.3s ease-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .grid {
    grid-template-columns: 1fr !important;
  }
  
  }
  
