*{
    margin: 0;
    padding: 0;
    font-family: 'Inter';
  }
  
  
  ::-webkit-scrollbar {
  width: 6px; /* Change width as needed */
  height: 6px; /* Change height for horizontal scrollbar if needed */
  }
  
  .header{
    min-height: 35vh;
    width: 100%;
  }
  
  nav{
    display: flex;
    padding: 1% 10%;
    justify-content: space-between;
    align-items: center;
    background-color: #081825d8;
    /* position: fixed; */
    width: 100%;
    z-index: 20;
  }
  nav img{
    width: 50px;
    height: 56px;
    align-items: center;
    justify-content: baseline;
  }
  .nav-links{
    flex: 1;
    text-align: left;
    align-items: center;
    justify-content: baseline;
  }
  .nav-links ul li{
    list-style: none;
    display: inline-block;
    /* padding: 8px 15px; */
    position: relative;
    padding-top: 18px;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  .nav-links ul li a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14px;
  }
  .nav-links ul li::after{
    content: '';
    width: 0%;
    height: 4px;
    background: rgba(226, 226, 226, 0.74);
    display: block;
    margin: auto;
    transition: 0.2s;
  }
  .nav-links ul li:hover::after{
    width: 100%;
  }
  .contact{
    color: #ffffff;
  }
  .flag{
    color: #ffffff;
    scale: 0.8;
  }
  .button{
  background-color: #E36B4A;
  padding: 4px 8px;
  font-weight: 500;
  color: #ffffff;
  border-radius: 5px;
  font-size: 14px;
  }

  
  
  /*# sourceMappingURL=style.css.map */
  /* footer */
  
  
  section-f {
    margin: 0;
    font-family: Inter, sans-serif;
    width: 100%;
  }
  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .footer {
    background-color: #021828;
    color: #fff;
    padding-top: 40px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-left {
    flex: 1;
    margin: 20px;
    padding-right: 150px;
  }
  
  .footer-right {
    flex: 1;
    margin: 20px;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    height: 50px;
    margin-right: 10px;
  }
  
  .footer-left h2 {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 700;
  }
  
  .footer-left p {
    font-size: 14px;
    line-height: 1.5;
    color: #8C8C8C;
    margin-top: 10px;
  }
  
  .contact-section {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
    flex: 1;
  
    .s-p-p {
      color: #8C8C8C;
      font-size: 14px;
      padding-bottom: 0%;
    }
  
    .s-p {
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      padding-top: 0%;
    }
  }
  
  .contact-icon {
    font-size: 20px;
    margin-right: 10px;
  }
  
  .newsletter-section h3,
  .social-section h3 {
    margin-top: 0;
  }
  
  .newsletter-section h2 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
  }
  
  .newsletter-section p {
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 400;
    color: #8C8C8C;
  }
  
  .newsletter-form {
    display: flex;
    align-items: center;
    margin: 10px 0;
  }
  
  .newsletter-input {
    padding: 10px;
    border: none;
    border-radius: 20px;
    margin-right: 10px;
    flex: 1;
    background-color: #333344;
  }
  
  .newsletter-button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: #E36B4A;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: visible;
  }
  
  .social-section {
    margin-top: 20px;
  }
  
  .social-icon {
    display: flex;
    margin-top: 10px;
  }
  
  .social-icons {
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
    padding: 5px 5px;
  }
  
  .bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #15243b;
    padding: 10px 170px;
    color: #aaa;
    font-size: 14px;
  }
  
  .footer-nav {
    display: flex;
  }
  
  .footer-nav a {
    color: #aaa;
    margin: 0 10px;
    text-decoration: none;
  }
  
  .footer-nav a:hover {
    text-decoration: underline;
  }
  
  .copyright {
    margin: 0;
  
    a {
      color: #E36B4A;
    }
  }
  .bottom-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px 180px;
    color: #aaa;
    font-size: 14px;
    height: 30px;
  }
  

  /* gallery */
  .gallery-1 {
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    padding: 60px 130px;
    
    @media only screen and (max-width: 1260px) {
      grid-template-columns: 1fr 1fr 1fr;
    }
    
    @media only screen and (max-width: 1000px) {
      grid-template-columns: 1fr 1fr;
    }
    
    @media only screen and (max-width: 600px) {
      grid-template-columns: 1fr;
    }
  }
  .grid-item {
    box-shadow: 0px 6px 12px rgba(255, 255, 255, 0);
    transition: box-shadow .3s;
    
    a {
      display: block;
      width: 100%;
      height: 100%;
      text-decoration: none;
      color: inherit;
    }
    
    .image {
      height: 200px;
      box-shadow: 0px 3px 6px rgba(255, 255, 255, 0.5);
    }
    
    .info {
      background-color: #0000008a;
      position: relative;
      height: calc(100% - 200px);
      padding: 25px 25px 86px 25px;
      color: #fff;
      text-align: center;

      .ab-tit {
        font-weight: 500;
        font-size: 24px;
      }
    }
    
    .button-wrap {
      display: inline-block;
      width: calc(100% - 50px);
      height: auto;
      position: absolute;
      padding: 10px 30px;
      border: 0;
      border-radius: 4px;
      bottom: 25px;
      left: 25px;
      color: #000000;
      background: rgb(255, 255, 255);
      box-shadow: 0px 3px 6px rgba(255, 255, 255, 0);
      transition: box-shadow .3s;
      text-align: center;
      font-weight: 500;
      font-size: 16px;
    }
    
    &:hover {
      box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.808);
      
      .button-wrap {
        box-shadow: 0px 3px 6px rgba(255, 255, 255, 0.801);
        
      }
    }
    
    &:active {
      .button-wrap {
        box-shadow: 0px 3px 6px rgba(255, 255, 255, 0.562);
        color: #fff;
      }
    }
  }
  
  h2 {
    margin-bottom: 0.5em;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
  }
  
  .copy {
    p {
      margin-bottom: 0.5em;
      line-height: 1.2em;
      
      &:last-child {
        margin-bottom: 0;
      }
    }
  }
  
  
  .object-fit {
    display: block;
    width: 100%;
    height: 100% !important;
  
    &.cover {
      object-fit: cover;
    }
    
    &.contain {
      object-fit: contain;
    }
  }

  .lib {
    text-align: center;
    justify-content: center;
    padding-top: 80px;
    font-weight: 700;
    font-size: 56px;
  }
  .sub-lib {
    text-align: center;
    justify-content: center;
    font-weight: 600;
    font-size: 24px;
    
  }
  .seamore {
    height: auto;
    text-align: center;
    justify-content: center;
    padding: 0;
    margin: 0; 
    padding-bottom: 30px;
  }
  .seamore-btn {
    background-color: #cecece;
    margin: 0 700px;
    justify-items: auto;
    border-radius:10px;
    margin-bottom: 40px;
  }
  
  
  
  