@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #171615;

}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 120px;
  background: #171615;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.logo img {
  height: 30px;
}


.navbar {
  display: flex;
  justify-content: space-around;
  /* align-items: center; */
  padding: 10px;
}

.nav-link {

  padding: 5px 5px;
  background-color: #171615;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  margin-right: 16px;
  border: 1px solid;
  -o-border-image: linear-gradient(45deg, #F6C705, #55ACEF, #3A5997) 1;
  border-image: linear-gradient(45deg, #F6C705, #55ACEF, #3A5997) 1;
  box-shadow: 0 0 10px #939191;
  border-radius: 0;

}

/* div containing the whatsapp image and link */
.whatsapp-box
{
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */

}

/* logo of whatsapp */
.whatsapp-logo
{
  height: 17px;
  width: 17px;
  /* background-color: white; */

  margin-right: 7px;
}
.nav-link:hover {
  background-color: #171615;
}

.home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 110px;
  flex-wrap: wrap;
  background: #171615;
  min-height: 100vh;

}

.content {
  flex: 1 1 60%;
}

.title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 60px;
  margin: 0;
}

.title span {
  color: #eab32a;
  margin-top: 45px;
  margin-bottom: 45px;
}

.description {
  margin: 30px 0 20px;
  color: #fff;
  font-size: 20px;
}

.input {
  display: block;
  width: 60%;
  padding: 10px;
  margin: 10px 0;
  background-color: rgb(38 37 36);
  border-radius: 6px;
  outline-color: #f6c705;
  --tw-border-opacity: 1;
  border-color: rgb(66 66 65 / var(--tw-border-opacity));
  color: white;
  }

.btn1 {
  padding: 15px 35px;
  background-color: #171615;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  border: .5px solid;
  -o-border-image: linear-gradient(45deg, #F6C705, #55ACEF, #3A5997) 1;
  border-image: linear-gradient(45deg, #F6C705, #55ACEF, #3A5997) 1;
  box-shadow: 0 0 10px #939191;
  margin-top: 10px;

}

.btn1:hover {
  background-color: #171615;
}

.image {
  flex: 1 1 40%;
}

.image img {
  max-width: 100%;
  height: auto;
}

.nav-link {
  margin-top: 10px;
  width: 94%;
}

.nav-link:first-child {
  margin-top: 0;
}


/* Media Queries */
/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: white;

}


/* for very small screen sizes */
@media only screen and (max-width: 370px) {
  /* Styles for all mobile devices (header alignment in a single line) */

  .header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    /* width: 185%; */
    /* Scale logo image down as needed */
    max-width: 150px;
    /* Set a maximum width for the logo */
    margin-left: -90px;

  }

  .navbar {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent buttons from wrapping onto new lines */
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-right: -118px;

  }

  .nav-link {
    width: auto;
    margin: 5px;
    text-align: center;
    font-size: 12px;
    background-color: #F6C705;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
  }
  .whatsapp-box
  {
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */

  }

  .whatsapp-logo
  {
  height: 25px;
  width: 25px;
  /* background-color: white; */

  margin-right: 1px;
  }
  .nav-link.jobs {
    background-color: #55ACEF;
  }

  .home {
    padding: 50px 20px;
    flex-direction: column;
    align-items: center;
  }

  .content,
  .image {
    flex: 1 0 100%;
    margin-top: 20px;
    /* Make each section take up full width on small screens */
  }

  .image img
  {
    height: 40vh;
    width: 100%;
  }
  .title {
    font-size: 30px;
    /* Adjust title size for mobile devices */
    line-height: 35px;
  }

  .description {
    font-size: 14px;
    /* Adjust description size for mobile devices */
  }

  .input {
    width: 100%;
  }

  .join-whatsapp {
    /* Assuming this is a section below the content */
    display: flex;
    flex-direction: column;
    /* Stack elements vertically on small screens */
    align-items: center;
    margin-top: 20px;
    /* Add some space between content and join button */
  }

  .join-whatsapp img {
    width: 100%;
    /* Scale image down for smaller screens */
    max-width: 200px;
    /* Set a maximum width for the join button image */
  }

  .btn1 {
    height: 30px;
    width: 100px;
    font-size: 10px;
    padding: 5px 10px;
    background-color: #171615;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    border: .5px solid;
    -o-border-image: linear-gradient(45deg, #F6C705, #55ACEF, #3A5997) 1;
    border-image: linear-gradient(45deg, #F6C705, #55ACEF, #3A5997) 1;
    box-shadow: 0 0 10px #939191;
    margin-top: 10px;
  
  }
  
  .btn1:hover {
    background-color: #171615;
  }
}

/* for moderate screen sizes */
@media only screen and (min-width: 371px) and (max-width:768px) {
  /* Styles for all mobile devices (header alignment in a single line) */

  .header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    /* width: 185%; */
    /* Scale logo image down as needed */
    max-width: 150px;
    /* Set a maximum width for the logo */
    margin-left: -90px;

  }

  .navbar {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent buttons from wrapping onto new lines */
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-right: -118px;

  }

  .nav-link {
    width: auto;
    margin: 5px;
    text-align: center;
    font-size: 12px;
    background-color: #F6C705;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
  }
  .whatsapp-box
  {
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */

  }

  .whatsapp-logo
  {
  height: 17px;
  width: 17px;
  /* background-color: white; */

  margin-right: 7px;
  }
  .nav-link.jobs {
    background-color: #55ACEF;
  }

  .home {
    padding: 50px 20px;
    flex-direction: column;
    align-items: center;
  }

  .content,
  .image {
    flex: 1 0 100%;
    margin-top: 20px;
    /* Make each section take up full width on small screens */
  }
  .image img
  {
    height: 40vh;
    width: 100%;
  }
  .title {
    font-size: 30px;
    /* Adjust title size for mobile devices */
    line-height: 35px;
  }

  .description {
    font-size: 14px;
    /* Adjust description size for mobile devices */
  }

  .input {
    width: 100%;
  }

  .join-whatsapp {
    /* Assuming this is a section below the content */
    display: flex;
    flex-direction: column;
    /* Stack elements vertically on small screens */
    align-items: center;
    margin-top: 20px;
    /* Add some space between content and join button */
  }

  .join-whatsapp img {
    width: 100%;
    /* Scale image down for smaller screens */
    max-width: 200px;
    /* Set a maximum width for the join button image */
  }
}

/* for large screen sizes */
@media only screen and (min-width: 769px) {
  /* Styles for all mobile devices (header alignment in a single line) */

  .header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    /* width: 185%; */
    /* Scale logo image down as needed */
    width: 200px;
    height: 55px;
    /* Set a maximum width for the logo */
    margin-left: -90px;

  }

  .navbar {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent buttons from wrapping onto new lines */
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    margin-right: -118px;

  }

  .nav-link {
    width: auto;
    margin: 5px;
    text-align: center;
    font-size: 12px;
    background-color: #F6C705;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
  }
  .whatsapp-box
  {
  display: flex;
  justify-content: space-evenly;
  }

  .whatsapp-logo
  {
  height: 25px;
  width: 25px;
  margin-right: 7px;
  }

  .join-text
  {
    font-size: 15px;
  }
  .nav-link.jobs {
    background-color: #55ACEF;
  }

  .title {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 60px;
    margin: 0;
  }
  
  .title span {
    color: #eab32a;
    margin-top: 45px;
    margin-bottom: 45px;
  }
  
  .description {
    margin: 30px 0 20px;
    color: #fff;
    font-size: 20px;
  }
  
  .input {
    display: block;
    width: 60%;
    padding: 10px;
    margin: 10px 0;
    background-color: rgb(38 37 36);
    border-radius: 6px;
    outline-color: #f6c705;
    --tw-border-opacity: 1;
    border-color: rgb(66 66 65 / var(--tw-border-opacity));
    color: white;
    }
  
  .btn1 {
    padding: 15px 35px;
    background-color: #171615;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    border: .5px solid;
    -o-border-image: linear-gradient(45deg, #F6C705, #55ACEF, #3A5997) 1;
    border-image: linear-gradient(45deg, #F6C705, #55ACEF, #3A5997) 1;
    box-shadow: 0 0 10px #939191;
    margin-top: 10px;
  
  }
  
  .btn1:hover {
    background-color: #171615;
  }

}

/* dont remove */
/* Base Styles (These styles will apply to larger screens) */
.header {
  justify-content: space-between;
  align-items: center;
  background: #171615;
  padding: 10px 120px;
  /* Adjust padding as needed */
}

/* .logo img {
  height: 30px;
} */

.navbar {
  display: flex;
}

.nav-link {
  padding: 5px 5px;
  /* Adjust padding as needed for larger screens */
  background-color: #171615;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  border: 1px solid;
  border-image: linear-gradient(45deg, #F6C705, #55ACEF, #3A5997) 1;
  box-shadow: 0 0 10px #939191;
  cursor: pointer;
}

.nav-link:hover {
  background-color: #171615;
}