@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.header-inner {  
  background-color: rgb(7, 54, 107);
  height: 100px;
  display: flex;
  flex-direction: column;
  padding-left: 70px;
  padding-right: 70px;
}

.page-title {
  color: rgb(255, 255, 255);
  font-size: 2.6rem;
  text-transform: none;
  font-weight: normal;
  font-family: 'Lobster', cursive;
  margin-bottom: 10px;
  margin-top: 25px;
  line-height: 35px;
}

.page-title-2 {
color: #96cec5;
font-size: 12px;
font-weight: bold;
margin-bottom: 15px;
border-bottom: 1px rgb(219, 219, 219) solid;
}

.footer {
  background-color: #efefef;
  height: 12px;
  padding-left: 75px;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  color:  rgb(16, 65, 122);
  line-height: 5px;
}

@media (max-width: 800px) {
  
  .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background-color: #ffffff;
      height: 80px;
      z-index: 10;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
  
    .header-inner {
      
      position: relative;
      background-color: rgb(7, 54, 107);
      padding-left: 20px;
      padding-right: 20px;
      height: 100%;
      height: 85px;
    }
  
    .page-title {
      font-size: 1.75rem;
      line-height: 20px;
      margin-top: 25px;
      margin-bottom: 10px;
    }
  
    .page-title-2 {
      font-size: 8px;
    }
  
    .main {
      padding-top: 45px;
    }
  
    .footer {
      background-color: #000000; 
      height: 8px;
      text-align: center;
      padding-left: 0px;
    }
    
    .copyright {
      color: #ffffff;
      margin-bottom: 10px;
    }
  }