@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');


@font-face {
  font-family: myFont;
  src: url(AmericanCaptain-MdEY.otf);
}

/* Universal Styles */
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Body */
body {
  font-family: 'Poppins', sans-serif;
}


label.logo {
  right: 5000px;
  line-height: 80px;
}

nav ul {
  float: right;
  margin-right: 20px;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}

nav ul li a {
  color: white;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
}


.checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

/* Additional styles from second CSS */


.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: url(https://i.ibb.co/HrfVRcx/menu.png) no-repeat center center;
  background-size: 30px;
  cursor: pointer;
}

.toggle.active {
  background: url(https://i.ibb.co/rt3HybH/close.png) no-repeat center center;
  background-size: 25px;
}

.showcase {
  position: relative;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}

.showcase.active {
  right: 300px;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  mix-blend-mode: overlay;
  opacity: 0.1;
}

.text {
  position: relative;
  z-index: 10;
}

.text h2 {
  font-size: 3em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}

.text h3 {
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}

.text p {
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}

.text a {
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}

.text a:hover {
  letter-spacing: 6px;
}

.social {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social li {
  list-style: none;
}

.social li a {
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}

.social li a:hover {
  transform: scale(0.5) translateY(-15px);
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu ul {
  position: relative;
}

.menu ul li {
  list-style: none;
}

.menu ul li a {
  text-decoration: none;
  font-size: 24px;
  color: #111;
}

.menu ul li a:hover {
  color: #03a9f4;
}

/* Media Queries */
.logo5 {
  height: 30px;
  width: 250px;
}

@media (max-width: 952px) {
  label.logo {
    font-size: 30px;
    padding-left: 50px;
  }
  nav ul li a {
    font-size: 16px;
  }
}

@media (max-width: 858px) {
  .checkbtn {
    display: block;
  }
  .social {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }
  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a {
    font-size: 20px;
  }
  a:hover, a.active {
    background: none;
    color: #0082e6;
  }
  #check:checked ~ ul {
    left: 0;
  }
}

/* Section */
section {
  background: url(bg1.jpg) no-repeat;
  background-size: cover;
  height: calc(100vh - 80px);
}

.consume {
color: rgb(0, 0, 0);
    font-size: 50px;
}

.button {
    background-color: rgb(255, 122, 42) !important;
    color: white !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3rem;
  background: rgba(0, 0, 0, .1);
  backdrop-filter: blur(2px); 
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.5s ease; /* Adjust the time for smoother or faster transition */

}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  backdrop-filter: blur(50px);
  z-index: -1;
}

.header-black {
  background-color: black !important;
}

nav.navbar a:hover {
  color: rgb(255, 122, 42) !important;
  transition: 0.5s ease;
}

.no-transition::after {
  transition: none !important;
}

.header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
  transition: .5s;
}

.animate-header::after {
  left: 100%;
}

.animation-end-state::after {
  left: 100%;
}


.navbar a {
  font-size: 1.15rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  margin-left: 2.5rem;
}

#check {
  display: none;
}

.icons {
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: white;
  cursor: pointer;
  display: none;
}

@media (max-width: 992px) {
.header {
  padding: 1.3rem 5%;
}
}

@media (max-width: 998px) {
  .icons {
    display: inline-flex;
  }

  #check:checked~.icons #menu-icon {
    display: none;
  }

  .icons #close-icon {
    display: none;
  }

  #check:checked~.icons #close-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: black;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3);
    overflow: hidden;
    transition: .3s ease;
  }



  #check:checked~.navbar {
    height: 27.7rem;
  }

  .navbar a {
    display: block;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: right;
    margin-right: 50px;
    transform: translateY(-50px);
    opacity: 0;
    transition: .3s ease;
  }

  #check:checked~.navbar a {
    transform: translateY(0);
opacity: 1;
    transition-delay: calc(.15s * var(--i));
  }
}

@media (max-width: 826px) {
  .LA {
    font-size: 46px !important;
  }}

  @media (max-width: 678px) {
    .LA {
      font-size: 30px !important;
    }}

  @media (max-width: 736px) {
    .consume {
      font-size: 30px !important;
    }}

    @media (max-width: 961px) {
      .consume {
        font-size: 40px;
      }}

      @media (max-width: 826px) {
        .consume {
          font-size: 32px;
        }}

        @media (max-width: 678px) {
          .consume {
            font-size: 21.5px !important;
          }}
      

.snorkling {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 65vh;
  max-height: 650vh;
  height: 65vh;
  background-image: url(IMG_3652.png);
}

          .diving {
            max-width: 400px;
            float: right;
            margin-left: 15px;
          }

      

          .wrapper {
            position: relative;
            margin: 150px auto;
            width: 70%;
          }

          .text-box {
            color: white;
            position: relative; /* Keep the text box in the document flow */
            z-index: 2;
            top: 100px;
        
          }

          .text-box h2 {
            font-size: 42px;
          }

          .text-box p {
            font-size: 16px;
          }

          @media (min-width: 1129px) {
            .diving {
              max-width: 480px;
            }
           }

           .Gary {
            width: 250px;
          }

          @media (min-width: 1354px) {
            .diving {
              max-width: 640px;
              
            }
            .Gary {
              width: 550px;
            }}
            .background-image {
              position: absolute; /* Set to absolute */
      /* Remove any fixed top, left, transform settings */
      /* JavaScript will handle the positioning */
      max-width: none;
      height: auto;
      width: auto;
            }

            .showcase {
           margin-bottom: 50px;
            }

            .yellow-text {
              color: rgb(221, 187, 108);
              padding-left: 30px;
              transform: translateY(-20px); /* Moves the text up by 50 pixels */
            }

            .yellow-text2 {
              color: rgb(221, 187, 108);
              margin-top: 40px;
              transform: translateY(-20px); /* Moves the text up by 50 pixels */
              cursor: pointer;
            }
            
      @media (max-width: 1375px) {
        .snorkling {
          display: flex;
          justify-content: center;
          align-items: center;
          min-height: 65vh;
          max-height: 650vh;
          height: 80vh;
          background-image: url(IMG_3655.png);
        }
      }        
        

      @media (max-width: 680px) {
        .snorkling {
          display: flex;
          justify-content: center;
          align-items: center;
          min-height: 65vh;
          max-height: 650vh;
          height: 100vh;
          background-image: url(IMG_3655.png);
        }
      }        
        
      @media (max-width: 632px) {
        .snorkling {
          background-image: url(img55.png);
        }
      }    

     

      @media screen and (max-width: 1013px) {
        .snorkling .wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    
.snorkling {
  height: 100vh;
}

        .snorkling .diving {
            order: 1; /* Diving image stays at the top */
        }
    
        .snorkling .text-box {
            order: 3; /* Text box below the yellow text */
            position: relative;
            z-index: 2; /* Above the background image */
        }
    
        .snorkling .background-image {
            order: 2; /* Below the diving image and above the text box */
            position: absolute;
            top: 50%; /* Center vertically */
            left: 50%; /* Center horizontally */
            transform: translate(-50%, -30px) scale(0.7); /* Adjust position and scale down */
            z-index: 1; /* Below the yellow text but above the text box */
        }
    
        .yellow-text {
            position: relative;
            z-index: 3; /* Ensures it's above the background image */
        }

        .Gary {
          width: 350px;
        }
    }

    /*-----------------------------------------------------*/

    .snorkling2 {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 65vh;
      max-height: 650vh;
      height: 65vh;
      background-image: url(beees.png);
      margin-top: 50px;
      margin-bottom: 50px;
    }

    @media only screen and (min-width: 601px) and (max-width: 1013px) {
      .diving2 {
        margin-right: 180px !important;
        margin-bottom: 400px !important;
      }
    }
    
    .diving2 {
      max-width: 400px;
      float: left;
      margin-right: 15px;
      margin-bottom: 10px !important;
    }

    
    
    .wrapper2 {
      position: relative;
      margin: 150px auto;
      width: 70%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .text-box2 {
      color: white;
      position: relative;
      z-index: 2;
      top: 10vh; /* 10% of the viewport height */
      margin-left: 10vw; /* 20% of the viewport width */
      order: 2;
      margin-bottom: 100px;
    }
    
    .text-box2 h2 {
      font-size: 42px;
    }
    
    .text-box2 p {
      font-size: 16px;
    }
    
    @media (min-width: 1129px) {
      .diving2 {
        max-width: 480px;
      }
    }
    
    .Gary2 {
      width: 250px;
    }
    
    @media (min-width: 1354px) {
      .diving2 {
        max-width: 640px;
      }
      .Gary2 {
        width: 550px;
      }
    }
    
    .background-image2 {
      position: absolute; /* Set to absolute */
      /* Remove any fixed top, left, transform settings */
      /* JavaScript will handle the positioning */
      max-width: none;
      height: auto;
      width: auto;
    }
    
    .yellow-text3 {
      color: rgb(221, 187, 108);
      padding-left: 30px;
      transform: translateY(-20px);
      display: inline-block;
      position: relative;
   
    }

    
    
      
    
  

    @media only screen and (max-width: 1013px) {

      .text-box {
        margin-right: 115px;
      }

      .text-box2 {
        margin-right: 220px;
      }

      .diving {
        margin-right: 150px;
      }


      .diving3 {
        margin-right: 150px;
      }
  }

    @media only screen and (max-width: 600px) {
      .diving {
          width: 200px !important; /* or any other size you prefer */
          height: auto;
          margin-right: 10px;
      }
  }

    @media only screen and (max-width: 600px) {
      .diving2 {
          width: 200px !important; /* or any other size you prefer */
          height: auto;
      }
  }

  @media only screen and (max-width: 600px) {
    .diving3 {
        width: 200px !important; /* or any other size you prefer */
        height: auto;
        margin-right: 10px;
    }

    .text-box {
      color: white;
      position: relative;
      z-index: 2;
      top: 10vh; /* 10% of the viewport height */
      margin-left: 10vw; /* 20% of the viewport width */
      order: 2;
      margin-bottom: 100px;
      text-align: center;
      margin-right: 40px;
    }

    .text-box2 {
      color: white;
      position: relative;
      z-index: 2;
      top: 10vh; /* 10% of the viewport height */
      margin-left: 10vw; /* 20% of the viewport width */
      order: 2;
      margin-bottom: 100px;
      text-align: center;
      margin-right: 40px;
    }

    .text-box3 {
      color: white;
      position: relative;
      z-index: 2;
      top: 10vh; /* 10% of the viewport height */
      margin-left: 10vw; /* 20% of the viewport width */
      order: 2;
      margin-bottom: 100px;
      text-align: center;
      margin-right: 40px;
    }

    .yellow-text {
      margin-right: 40px;
    }

    .yellow-text2 {
      margin-right: 40px;
    }
    .yellow-text3 {
      margin-right: 40px;
    }
    .yellow-text4 {
      margin-right: 40px;
    }
    .yellow-text5 {
      margin-right: 40px;
    }
    .yellow-text6 {
      margin-right: 40px;
    }

.text h2 {
  text-align: center;
}

.consume {
  text-align: center;
}

.LA {
  text-align: center;
}

.expert {
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

}

    
    .yellow-text4 {
      color: rgb(221, 187, 108);
      margin-top: 40px;
      transform: translateY(-20px);
      cursor: pointer;
    }
    
    @media (max-width: 1375px) {
      .snorkling2 {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 65vh;
        max-height: 650vh;
        height: 80vh;
        background-image: url(beees.png);
      }
    }
    
    @media (max-width: 680px) {
      .snorkling2 {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 65vh;
        max-height: 650vh;
        height: 100vh;
        background-image: url(beees.png);
      }
    }
    
    @media screen and (max-width: 1013px) {
      .snorkling2 .wrapper2 {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
    
      .snorkling2 {
        height: 100vh;
      }
    
      .snorkling2 .diving2 {
        order: 1;
        max-width: 400px; /* Ensures max-width remains 400px */
        float: none; /* Remove float for alignment */
        margin: 0 auto; /* Center the image */
      }
    


      .snorkling2 .text-box2 {
        order: 2;
        position: relative;
        z-index: 2;
      }
    
      .snorkling2 .background-image2 {
        order: 3;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -30px) scale(0.7);
        z-index: 1;
      }
    
      .yellow-text3 {
        position: relative;
        z-index: 3;
      }
    
      .Gary2 {
        width: 350px;
      }

   



      
    }
    

    /*-----------------------------------*/

    .snorkling3 {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 65vh;
      max-height: 650vh;
      height: 65vh;
      background-image: url(nummergary\ \(2\).png);
      margin-top: 50px;
    }

    .diving3 {
      max-width: 400px;
      float: right;
      margin-left: 15px;
    
    
    }

  
 

    

    .wrapper3 {
      position: relative;
      margin: 150px auto;
      width: 70%;
    }

    .text-box3 {
      color: white;
      position: relative; /* Keep the text box in the document flow */
      z-index: 2;
      top: 100px;
  
    }

    .text-box3 h2 {
      font-size: 42px;
    }

    .text-box3 p {
      font-size: 16px;
    }

    @media (min-width: 1129px) {
      .diving3 {
        max-width: 480px;
      }
     }

     .Gary3 {
      width: 250px;
    }

    @media (min-width: 1354px) {
      .diving3 {
        max-width: 640px;
        
      }
      .Gary3 {
        width: 550px;
      }}
      .background-image3 {
        position: absolute; /* Set to absolute */
        /* Remove any fixed top, left, transform settings */
        /* JavaScript will handle the positioning */
        max-width: none;
        height: auto;
        width: auto;
      }


      .yellow-text5 {
        color: rgb(221, 187, 108);
        padding-left: 30px;
        transform: translateY(-20px); /* Moves the text up by 50 pixels */
      }

      .yellow-text6 {
        color: rgb(221, 187, 108);
        margin-top: 40px;
        transform: translateY(-20px); /* Moves the text up by 50 pixels */
        cursor: pointer;
      }
      
@media (max-width: 1375px) {
  .snorkling3 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 65vh;
    max-height: 650vh;
    height: 80vh;
    background-image: url(nummergary\ \(2\).png);
  }
}        
  

@media (max-width: 680px) {
  .snorkling3 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 65vh;
    max-height: 650vh;
    height: 100vh;
    background-image: url(nummergary\ \(2\).png);
  }
}        
  


@media screen and (max-width: 1013px) {
  .snorkling3 .wrapper3 {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

.snorkling3 {
height: 100vh;
}

  .snorkling3 .diving3 {
      order: 1; /* Diving image stays at the top */
  }

  .snorkling3 .text-box3 {
      order: 3; /* Text box below the yellow text */
      position: relative;
      z-index: 2; /* Above the background image */
  }

  .snorkling3 .background-image3 {
      order: 2; /* Below the diving image and above the text box */
      position: absolute;
      top: 50%; /* Center vertically */
      left: 50%; /* Center horizontally */
      transform: translate(-50%, -30px) scale(0.7); /* Adjust position and scale down */
      z-index: 1; /* Below the yellow text but above the text box */
  }

  .yellow-text5 {
      position: relative;
      z-index: 3; /* Ensures it's above the background image */
  }

  .Gary3 {
    width: 350px;
  }
}

.diving3 {
  transition: transform 0.3s ease;
}

/*---------------------------------------------------------------*/

.custom-container {
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  background-color: rgb(254, 254, 254);
  padding: 20px;
  flex-direction: column;
  padding-bottom: 20vh;
  margin-top: 100px;
}

.box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-boxOG {
  width: 400px;
  height: 700px;
  background-color: rgb(254, 254, 254);
  text-align: center;
  margin: 0.5% 1%;
  min-height: 500px;
  max-height: 600px;
}


.custom-box {
  width: 400px;
  height: 700px;
  background-color: rgb(254, 254, 254);
  text-align: center;
  margin: 0.5% 1%;
  min-height: 500px;
  max-height: 600px;
}

.custom-box2 {
  width: 400px;
  height: 700px;
  background-color: rgb(254, 254, 254);
  text-align: center;
  margin: 0.5% 1%;
  min-height: 500px;
  max-height: 600px;
}

.box-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  padding: 10px;
  max-height: 200px;
}

.globe-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: 30%;
  background-position: left;
  transition: background-size 0.3s ease;
  box-sizing: border-box;
  max-height: 100%;
  background-repeat: no-repeat;
}
.garden-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: 30%;
  background-position: left;
  transition: background-size 0.3s ease;
  box-sizing: border-box;
  max-height: 100%;
  background-repeat: no-repeat;

}
.message-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: 30%;
  background-position: left;
  transition: background-size 0.3s ease;
  box-sizing: border-box;
  max-height: 100%;
  background-repeat: no-repeat;
}



.box-image:hover {
  background-size: 35%;
}

.bold-text {
  font-size: 40px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  font-weight: 700;
  margin-top: -25px;
}

.small-text {
  font-size: 15px;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  font-weight: 500;
}

.garycool {
  width: 100%;
  height: auto;
  margin-bottom: -50px;
  margin-top: -150px;
}

.image-containergary {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
}

.image-containergary img {
  display: block;
  width: 100%;
  height: auto;
} 

.overlay-text {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  color: #fff; /* Default color */
  padding: 10px 20px; 
  font-size: 4vw; /* Adjusted for responsiveness */
  text-align: left;
  font-family: myFont;
}

.colored-text {
  color: rgb(255, 122, 42); /* Color for the special word */
  font-family: myFont;
}

/* Media queries for font size adjustments */
@media (min-width: 1582px) {
  .overlay-text {
    font-size: 80px; /* Fixed font size for large screens */
  }
}


@media (max-width: 1334px) {
  .garycool {
    margin-top: 0px;
  }
}

@media (max-width: 1333px) {
  .garycool {
    margin-top: -60px;
  }
}

@media (max-width: 1206px) {
  .garycool {
    margin-top: -10px;
  }
}

@media (max-width: 875px) {
  .garycool {
    margin-top: 20px;
  }
}

@media (max-width: 802px) {
  .garycool {
    margin-top: 660px;
  }
}

@media (max-width: 500px) {
  .garycool {
    margin-top: 800px;
  }
}

@media (max-width: 370px) {
  .garycool {
    margin-top: 900px;
  }
}

@media (max-width: 800px) {
.bold-text {
  font-size: 40px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-weight: 700;
}

.small-text {
  font-size: 15px;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-weight: 500;
}

.garden-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: 30%;
  background-position: center;
  transition: background-size 0.3s ease;
  box-sizing: border-box;
  max-height: 100%;
  background-repeat: no-repeat;

}

.message-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: 30%;
  background-position: center;
  transition: background-size 0.3s ease;
  box-sizing: border-box;
  max-height: 100%;
  background-repeat: no-repeat;
}

.globe-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: 30%;
  background-position: center;
  transition: background-size 0.3s ease;
  box-sizing: border-box;
  max-height: 100%;
  background-repeat: no-repeat;
}

.custom-box2 {
  width: 400px;
  height: 700px;
  background-color: rgb(254, 254, 254);
  text-align: center;
  margin: 0.5% 1%;
  min-height: 500px;
  max-height: 600px;
  margin-top: -160px;
}

.custom-boxOG {
  width: 400px;
  height: 700px;
  background-color: rgb(254, 254, 254);
  text-align: center;
  margin: 0.5% 1%;
  min-height: 500px;
  max-height: 600px;
  margin-top: -100px;
}

}

.footer-container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.footerul{
	list-style: none;
}
.footer{
	background-color: black;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: rgb(255, 122, 42);
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 1084px){
  .tarzannn {
    font-size: 7px !important;
  }


  

  .footer-container{
    margin-left: 50px;
}

.footer-text{
  transform: translateX(-30px) !important;
}

}

.footer-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  padding-top: 65px;
}

.footer-image-container img {
  max-width: 100%;
  height: auto;
  padding: 0 10px; /* Adjust spacing between images */
}

/* Responsive adjustments */
@media(max-width: 704px){
  .footer-image-container {
    display: none;
  }
  .footer-image-container img {
    padding: 10px 0; /* Adjust spacing for mobile view */
  }
  .nakedandafraid {
    height: 48px;
    width: 112px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 600px) and (max-width: 1334px) {
  .custom-box, .custom-box2, .custom-boxOG {
    width: 320px; /* Initially smaller width */
    height: 560px; /* Initially smaller height */
  }

  .garden-image, .message-image, .globe-image {
    background-size: 40%; /* Initially smaller background size */
    background-position: center;
  }

  .bold-text {
    font-size: 32px; /* Initially smaller font size for bold text */
  }

  .small-text {
    font-size: 12px; /* Initially smaller font size for small text */
  }

  /* Styles for screen width up to 1207px */
  @media (max-width: 1207px) {
    .custom-box, .custom-box2, .custom-boxOG {
      width: 256px; /* Reduced width for screens smaller than 1207px */
    }
    .garden-image {
      position: relative;
      width: 100%;
      height: 100%;
      background-size: 50%;
      background-position: center;
      transition: background-size 0.3s ease;
      box-sizing: border-box;
      max-height: 100%;
      background-repeat: no-repeat;
    
    }

    .message-image {
      position: relative;
      width: 100%;
      height: 100%;
      background-size: 50%;
      background-position: center;
      transition: background-size 0.3s ease;
      box-sizing: border-box;
      max-height: 100%;
      background-repeat: no-repeat;
    
    }

    .globe-image {
      position: relative;
      width: 100%;
      height: 100%;
      background-size: 50%;
      background-position: center;
      transition: background-size 0.3s ease;
      box-sizing: border-box;
      max-height: 100%;
      background-repeat: no-repeat;
    
    }
  }

  /* Additional styles for screen width up to 874px */
  @media (max-width: 874px) {
    .custom-box, .custom-box2, .custom-boxOG {
      width: 216px; /* Further reduced width for screens smaller than 874px */
    }
  }

  @media (max-width: 801px) {
    .custom-box, .custom-box2, .custom-boxOG {
      width: 400px; /* Initially smaller width */
      height: 700px; /* Further reduced width for screens smaller than 874px */
      
    }
.garden-image, .message-image, .globe-image {
  background-size: 30%;
  background-position: center;
}

  }
  .bold-text {
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 700;
    margin-top: -25px;
  }
  
  .small-text {
    font-size: 15px;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 500;
  }

}


.nakedandafraid {
    height: 48px;
    width: 112px;
    margin-left: 100px;
    margin-right: 100px;
  }

  .discovery {
    height: 48px;
    width: 250px;
  }


.sajtfabriken {
  height: 43px;
  width: 130px;
  position: relative;
  display: inline-block;
}

.sajtfabriken img {
  display: block;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.sajtfabriken .default-image {
  opacity: 1;
}

.sajtfabriken .hover-image {
  opacity: 0;
}

.sajtfabriken:hover .hover-image {
  opacity: 1;
}

.sajtfabriken:hover .default-image {
  opacity: 0;
}

.footer-text {
  text-align: center;
  color: #d1d1d1; /* Choose the color that fits your design */
  font-size: 16px; /* Adjust font size as needed */
  font-weight: 305;
  transform: translateY(50px);
}

.tarzannn {
font-size: 15px;
}

.tarzannn {
  color: #bbbbbb;
}
.yeah {
  color: #bbbbbb;
}

.sajtfabriken-link {
  color: rgb(197, 197, 197); /* Sets the initial color to white */
  text-decoration: none; /* Optional: removes underline from the link */
  transition: color 0.3s ease;
}

.sajtfabriken-link:hover {
  color: rgb(35, 205, 203); /* Changes to blue on hover */
  cursor: pointer; /* Changes the cursor to a pointer to indicate it's clickable */
}

@media only screen and (min-width: 1014px) and (max-width: 1353px) {
  .diving2 {
    margin-bottom: 100px !important;
  }

.text-box2 {
  margin-top: 110px !important;
 }
}

