@import url('header.css');
@import url('footer.css');
:root {
  --primary-color: #ac885a;
  --secondary-color: #193c44;
}


*{
    padding: 0;
    margin: 0;
    font-family: 'Avenir LT Std', sans-serif;
}

@font-face {
  font-family: 'Avenir LT Std';
  src: url('/path/to/avenir-lt-std-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}


@font-face {
  font-family: 'Avenir LT Std';
  src: url('/path/to/avenir-lt-std-book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir LT Std';
  src: url('/path/to/avenir-lt-std-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir LT Std';
  src: url('/path/to/avenir-lt-std-heavy.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir LT Std';
  src: url('/path/to/avenir-lt-std-black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

.section {
  max-width: 1400px;
  width: auto;
  margin: auto;
  padding: 4rem 24px;
  
}

body {
    /* background-color: #22353a; */  
    background-color: var(--secondary-color);
    /* color: #fff; */
    line-height: 1.4;
}

a {
  color: #ac885a;
  text-decoration: none;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1.4rem;
}


/* Loading */
.container .loader{
display: flex;
align-items: center;
justify-content: center;
margin: auto;
width: 100%;
/* height:100%; */
position: absolute;
top: 50%;

}
.spinner {
 
  width: 40px;
  height: 40px;
  border: 4px solid #a68960;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loader {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.loader.hidden {
  opacity: 0;
  pointer-events: none;
}
