@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

:root {
 --primary-color:#047aed;
 /*--primary-color:#fff; */
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-y: scroll;
}

ul{
    list-style-type: none;
}

a{
    text-decoration: none;
    color: #333;
}

h1 {
    font-weight: 300;
    line-height: 1.5;
    margin: 10px 0;
    font-size: 30px;

}

h2 {
    font-weight: 300;
    line-height: 1.2;
    margin: 10px 0;
    font-size: 25px;
}

h3, h4{
    font-weight: 300;
    line-height: 1.2;
    margin: 10px 0;
}

p{
    margin: 10px 0;
    font-size: 14px;
}

img{
    width: 100%;
}
/* Navabr */
.navbar{
    /*background-color: var(--primary-color); */
    background-color: #fff;
    color: #333;
    height: 180px;
    border-bottom: 3px solid #002240;
 

}
.navbar ul{
    display: flex;
}
.navbar li a {
    color: #333;
    padding: 10px;
    margin: 0 5px;
    font-size: 20px;
}

.navbar li a:hover{
    border-bottom: 2px #333 solid;
}
.navbar .flex{
    justify-content: space-between;
    
}
.navbarlogo{
    width: 150px;
    height: 150px;
    margin: 5px;
    padding: 0;
}

.navbarlogo a:hover{
    transform: scale(2);
}

/* Actual Image */
.actualImage {
    max-height: 1000px;
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
    padding-bottom: 30px;

}

.archivImage{
    background-color: #fff;
    position: relative;

}

.archivImage-img{
    align-items: center;
    padding-bottom: 40px;
}

/* Construction */
.construction{
    background-color: var(--primary-color);
    position: relative;
    color: #fff;
    padding-bottom: 30px;

}

.grid2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    height: 100%;
}

.grid2 img{
    padding: 0 20 20 0px;

}

.twint {
   max-width: 400px;
   display: block;
   margin-left: auto;
   margin-right: auto;
   padding-bottom: 35px;
   
}


/* Contact */
.contact{
    min-height: calc(100vh - 292px) !important;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}

/* Footer */
.footer{
    background-color: #002240;
    position: relative;
    color: #fff;
    height: 100%;
    padding: 15px;
}   
.grid3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    justify-content: center;
    height: 100%;
}



.footer a {
    color: #fff;
}

/* Utilities */
.container{
    max-width: 1300px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 0 px;
    padding-left: 10px;
    padding-right: 10px;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.grid{
    display: grid;
    grid-template-columns: 1fr 1fr 8fr;
    gap: 5px;
    justify-content: center;
    height: 100%;

}

.btn{
    display: inline-block;
    padding: 10px 30px;
    cursor: pointer;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
}

.btn:hover{
    transform: scale(.98);
}

.sel{
    position: relative;

}

/* Tablets and under */
@media (max-width: 768px) {
    .grid,
    .grid2,
    .grid3 {
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
    }
  
    .actualImage {
      height: auto;
    }
    .container{
        padding: 0 0 px;
    }
  }
  
  /* Mobile */
  @media (max-width: 500px) {
    .navbar {
      height: 250px;
      padding-bottom: 15px;
      padding-top: 15px;
    }
  
    .navbar .flex {
      flex-direction: column;
    }
  
    .navbar ul {
      padding: 10px;
      background-color: rgba(0, 0, 0, 0.1);
    }
    
    .footer ul{
        padding-bottom: 15px;
    }

  }