@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0%;
    padding: 0%;
    font-size: normal;
    font-family: "Lora" ;
    
}

/* NAVIGATION PANE */

.navigation-bar-container {
   background-color: #101a31;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   padding: 16px 8%;
   width: auto;
}

.top-bar {
   display: flex;
   min-height: 100px;
   width: 100%;
   align-items: center;
   justify-content: space-between; 
   flex-wrap: wrap;
   z-index: 2;
}
.Company-info-top{
   width: 100%;
   display: flex;
   align-content: center;
   justify-content: space-between;
}
.navigation-bar a {
   padding: 8px 0;
   text-decoration: none;
}

.logo-wrapper {
   align-self: stretch;
   display: flex;
   min-width: 240px;
   min-height: 80px;
   align-items: center;
   justify-content: flex-start;
   flex: 1;
}


.company-logo {
   aspect-ratio: 1.88;
   object-fit: cover;
   object-position: center;
   width: 150px;
   max-width: 150px;
}

.nav-contact-info-row {
   display: flex;
   flex-direction: row;
}

.nav-contact-item {
   display: flex;
   width: 100%;
   align-items: center;
   gap: 8px;
   flex-wrap: wrap;
}

.nav-contact-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 26px;
   padding: 3px;
}

.nav-contact-icon img {
   aspect-ratio: 1;
   object-fit: contain;
   width: 24px;
}

.nav-contact-text {
   flex: 1;
   min-width: 80px;
   color: white;
   font: 600 15px/1.2 "Montserrat", sans-serif;
}


.navigation-links-container {
   height: 100%;
   width: 100%;
   align-items: center;
   display: flex;
   flex-direction: row;
   margin: 16px 0; 
}

.navigation-bar {
   display: flex;
   justify-content: flex-end;
   width: 100%;
   height: 100%;
   margin: 8px 0; 
   gap: 5px;
}

.nav-button {
   display: flex;
   justify-content: center;
   border-radius: 24px;
   width: 160px;
   font: 600 15px/1.2 "Montserrat", sans-serif;
   text-align: center;
   color: white;
   border: 2.5px solid white;
}


.nav-button:hover {
   background-color: white;
   color: black;
}
.nav-button-highlight {
   background-color: #fca31f;
   border: none;
}
.sidebar-nav{
   display: flex;
   align-content: space-between;
   justify-content: flex-end;
   width: 100%;
   height: 100%;
   gap:8px;
}
nav svg{
   fill: #FCA311;
}
#Nav-sidebar-active{
   display: none;
}
.Open-sidebar-btn, .Close-sidebar-btn{
   display: none;
}

/* FOOTER SECTION */

.footer-content {
   display: flex;
   padding: 40px 40px;

}

.image-container{
   display: flex;
   flex-direction: column;
   width: 33%;
   justify-content: center;
   padding: 64px 16px;
}

.full-width-image {
   aspect-ratio: 1.24;
   object-fit: contain;
   object-position: center;
   width: 66%;
   border-radius: 24;
}

.footer-content-container{
   font-display: flex;
   flex-direction: row;
   justify-content: center;
   max-width: 100%;
}

.social-links {
   align-self: flex-start;
   display: flex;
   align-items: flex-start;
   gap: 16px;
}

.social-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 48px;
   padding: 6px;
   overflow: hidden;
}

.social-icon img {
   aspect-ratio: 1;
   object-fit: contain;
   width: 36px;
}

.contact-info {
   display: flex;
   margin-top: 40px;
   width: 100%;
   flex-direction: column;
   gap: 24px;
}

.contact-item {
   display: flex;
   width: 100%;
   align-items: center;
   gap: 16px;
   flex-wrap: wrap;
}

.contact-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 26px;
   padding: 3px;
}

.contact-icon img {
   aspect-ratio: 1;
   object-fit: contain;
   width: 24px;
}

.contact-text {
   flex: 1;
   min-width: 240px;
   color: white;
   font: 400 12px/1.2 "Lora", sans-serif;
}

.footer-bottom {
   display: flex;
   margin-top: 120px;
   width: 100%;
   align-items: center;
   color: white;
   justify-content: center;
   flex-wrap: wrap;
   gap: 40px;
   font: 400 12px/1.2 "Lora", sans-serif;
}

.copyright{
   display: flex;
   min-width: 240px;
   align-items: center;
   gap: 8px;
   font-weight: 400;
}

.copyright img {
   aspect-ratio: 1;
   object-fit: contain;
   width: 24px;
}

.footer-nav {
   display: flex;
   min-width: 240px;
   align-items: center;
   gap: 24px;
   font-weight: 600;
}

.footer-nav a {
   color: #fff;
   text-decoration: none;
}

.visually-hidden {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;

}

.contact-info,
.contact-item,
.footer-bottom,
.copyright,
.footer-nav {
 max-width: 100%;
}

.contact-text,
.footer-nav a {
 white-space: normal;
}


.footer-container{
   display: flex;
   background-color: #101a31;
   width: auto;
   height: 100%;
   padding: 40px 128px;
}
@media(max-width:955px){
   .Company-info-top{
       padding: 0;
       display:flex;
       flex-direction: column;
       justify-content: space-between;
       align-items: flex-start;
       transition: .3s ease;
   }
   .top-bar{
       display: flex;
       justify-content: space-between;
       align-items: flex-start;
   }
   .nav-button {
       display: flex;
       justify-content: center;
       border-radius: 24px;
       width: 100%;
       font: 600 15px/1.2 "Montserrat", sans-serif;
       text-align: center;
       color: white;
       border: none;
   }
   .nav-contact-item{
      display: none;
   }
}

@media(max-width: 720px) {

   .Company-info-top {
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
      transition: 0.75s ease;
  }
  .navigation-bar-container {
   background-color: #101a31;
   display: flex;
   flex-direction: column;
   justify-content: start;
   padding: 16px 24px; 
}
.top-bar {
   display: flex;
   min-height: 80px;
   width: 100%;
   align-items: center;
   justify-content: flex-start;
   flex-wrap: wrap;
}
 
.nav-button {
   display: flex;
   border-radius: 24px;
   font: 600 15px/1.2 "Montserrat", sans-serif;
   text-align: center;
   color: white;
   border: none;
   margin: 8px 0;
}

   .sidebar-nav {
       flex-direction: column;
       align-content: space-between;
       padding: 50px 80px;
       position: fixed;
       top: 0;
       right: -100%;
       z-index: 10;
       width: max-content;
       height: 300px;
       background-color: #101a31;
       transition: 0.75s ease-out;
   }

   .nav-button-highlight {
       width: 200px;
   }

   .Open-sidebar-btn, .Close-sidebar-btn {
       padding: 20px;
       display: block;
       position: absolute;
       top: 0;
       right: 0;
   }

   #Nav-sidebar-active:checked ~ .sidebar-nav {
       right: 0;
   }

   .landing-page-content {
       width: 80%;
       margin-top: 10px;
       z-index: 1;
   }
   /* FOOTER SECTION */
   .footer-content {
      display: flex;
      flex-direction: row;  
      padding: 20px;
      align-items: center;  
      gap: 20px; 
      height: 100%;
  }

  .image-container {
      display: flex;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      padding: 32px 16px; 
  }

  .full-width-image {
      aspect-ratio: 1.24;
      object-fit: contain;
      object-position: center;
      width: 100%; 
      border-radius: 16px; 
  }

  .footer-content-container {
      font-display: flex;
      flex-direction: column; 
      justify-content: center;
      max-width: 100%;
      align-items: center; 
      gap: 16px; 
  }

  .social-links {
      align-self: center; 
      display: flex;
      align-items: center;
      gap: 12px;  
  }

  .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      padding: 6px;
      overflow: hidden;
  }

  .social-icon img {
      aspect-ratio: 1;
      object-fit: contain;
      width: 30px;
  }

  .contact-info {
      display: flex;
      margin-top: 20px;
      width: 100%;
      flex-direction: column;
      gap: 20px;
  }

  .contact-item {
      display: flex;
      width: 100%;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
  }

  .contact-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 22px; 
      padding: 3px;
  }

  .contact-icon img {
      aspect-ratio: 1;
      object-fit: contain;
      width: 20px;
  }

  .contact-text {
      flex: 1;
      min-width: 200px; 
      color: white;
      font: 400 14px/1.2 "Lora", sans-serif; 
  }

  .footer-bottom {
      display: flex;
      margin-top: 40px;
      width: 100%;
      align-items: center;
      color: white;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px; 
      font: 400 14px/1.2 "Lora", sans-serif; 
  }

  .copyright {
      display: flex;
      min-width: 240px;
      align-items: center;
      gap: 8px;
      font-weight: 400;
  }

  .copyright img {
      aspect-ratio: 1;
      object-fit: contain;
      width: 20px;
  }

  .footer-nav {
      display: flex;
      min-width: 240px;
      align-items: center;
      gap: 16px; 
      font-weight: 600;
  }

  .footer-nav a {
      color: #fff;
      text-decoration: none;
  }

  .footer-container {
      display: flex;
      background-color: #101a31;
      height: 100%;
      padding: 20px 40px; 
      flex-direction: column; 
      align-items: center;
  }
}