* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 1px;
}

body {
    color: white;    
    font-family: sans-serif;
    background-color: #192a51;
}


/* header: navbar */

li, a, i, button {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1rem;
    color: white;
    text-decoration: none;
}

header img {
    width: 60px;
    
}

header {
    display: flex ;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px ;
    background-color: #1d3772;
}

.menu {
    list-style: none;
   
    padding: 1% 50px;
}

.menu li {
    display: inline-block;
    padding: 15px 20px;
    
}

.menu i {
    padding: 15px 12px;

}

.logo {
    cursor: pointer;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #192a51;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #568cc9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  body.loading {
    overflow: hidden;
  }

/* MAIN */

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 200px 0 200px;
    
}

.all h1 {
    display: block;
    text-align: center;
    padding: 20px 0;

}

.box {
    padding: 40px;
    text-align: center;
    background-color: #1d346b;
    border-radius: 4px;
    margin-bottom: 120px;
}

.box i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    margin-top: 20px;
}

.box h3 {
    padding: 40px;
}

hr {
    border-color: rgb(207, 207, 207);
    opacity: 30%;
}

button {
    cursor: pointer;
    
    font-weight: 100;
    background-color: #568cc9;
    color: rgb(221, 221, 221);
    border: none;
    border-width: none;
    border-radius: 10px;
    padding: 20px 80px;
    margin-top: 10px;
    
}

.button a {
    font-size: 1.2rem;
}



/* FOOTER */

footer {
    width: 100%;
    bottom: 0;
    padding: 10px 5px;
    border: 125px;
    font-size: 0.8rem;
    line-height: 18px;
    background: linear-gradient(to right, #568cc9, #1d346b);
}

.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    
}

.col img {
    max-width: 100%;
    width: 150px;
    margin-bottom: 10px; 
}

col {
    flex-basis: 15%;
    padding: 10px;
} 

.col h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    
} 

.col h3 {
    
    margin-bottom: 15px;
    margin-top: 10px;
    position: relative;
}

.col h5 {
    font-size: 0.8rem;
    margin-top: 20px;
    letter-spacing: 1px;
}

.col ul li {
    list-style: none;
    line-height: 20px;
    font-weight: 100;
    font-size: 0.5rem;
}

form {
    
    display: flex;
    border-bottom: 1px solid rgb(131, 150, 189);
    margin-bottom: 10px;
    
}

form input {

    padding: 0 5px;
    background: transparent;
    border: 0;
}

form button {
    background: transparent;
    border: 0;
    padding: 2.5px;
    opacity: 50%;
}

@media screen and (max-width: 768px) {
    /* nav */

   header img {
       width: 80px;
   }

   header {
       justify-content: center;
       text-align: center;
       gap: 20px;
       font-size: 2rem;
   }

   
   .menu {
    padding: 5px;
   }

   .menu li {
       display: flex;
       flex-direction: column;
       justify-content: center;
       text-align: center;
   
       padding: 5px;
       gap: 20px;
   }

   .menu a {
       font-size: 1.6rem;
       background-color: #182747;
       border-radius: 8px;
       padding: 2px;
   }

   .menu i {
       flex-direction: row;
        font-size: 2rem;
   }

   input[type=email]::placeholder {
    color: rgb(199, 199, 199);
}

.wrapper {
    margin: 180px 0 180px;
}

.box {
    padding: 10px;
    margin: 40px 20px;
}

.box h3 {
    padding: 10px;
    font-size: 1.1rem;
    line-height: 25px;
}

.button {
    margin-top: 30px;
    padding: 20px 30px;
}












}