/* Google Font CDN Link */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
  min-height: 100vh;
  background: #c8e8e9;
  display: block;
  align-items: center;
  justify-content: center;
  
}
a {
  text-decoration: none; color: inherit;
}
body,html {
  max-width: 100%;
  overflow-x: hidden;
}
nav {
    box-sizing: border-box;
    color:rgba(0,0,0,0.88);
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    justify-content: space-between;
    line-height: 32px;
    margin: 0 auto;
    max-width: 1072px;
    word-break: break-word;
}
.menu{
    display: flex;
    list-style: none;
    word-break: keep-all;
    overflow-x: auto;
    margin: 15px auto;
}
.menu li {
    display: list-item;
    text-align: -webkit-match-parent;
    margin: auto 10px;
}
.menu li a {
    color:#ecd6cf;
    transition: .5s;
    font-size: 25px;
}
.menu li a i{
    color:#ecd6cf;
    transition: .5s;
}
.menu li a i:hover {
    transition: .5s;
    transform: scale(1.3);
}
header {
    background: rgb(255,255,255);
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(241,90,41,1) 1%, rgba(35,31,32,1) 94%); 
}
.logo {
  margin: 15px 0px;
}
.logo img {
    width:80px;
    max-width: max-content;
}
.logo a{
    color:#F15A29;
}
footer {
    display: absolute;
    bottom:0;
}
.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
@media (max-width: 820px) {
  .logo {
    margin-left:10px;
  }
}
.logo-left {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}