/* homepage*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }
 
 body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Change the font family here */
    font-size: 16px;
    line-height: 1.5;
    margin-top: -10px;
 }
 
 /*Header*/
 header {
    background-color: rgba(0, 0, 0, 1);
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
 }
 
 header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
 }

 /*Header logo in top left*/
 .logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-left: 20px;
 }

 /*navigation menu*/
 nav ul {
    display: flex;
    list-style: none;
    margin-right: 20px;
 }
 
 nav ul li {
    margin: 0 15px;
 }
 
 nav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: "Open Sans", sans-serif; /* Change the font family here for the navigation links */
 }
  /*hover over navigation menu - underline and change color to green*/
  nav ul li a:hover {
    text-decoration: underline;
    color: #C1FF72;
 }
 /*elements of navigation menu*/
 h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif; /* Change the font family here for headings */
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
 }

/* Body */
.sponsoring {
   background-color: #C1FF72;
   padding: 50px 0;
 }
 
 .sponsoring .container {
   max-width: 1300px;
   margin: 0 auto;
   display: flex;
   flex-wrap: wrap;
   justify-content: center; /* align the boxes horizontally in the center */
 }
 
 .sponsoring h2 {
   font-size: 36px;
   color: black;
   text-align: center;
   margin-bottom: 50px;
 }
 
 .sponsoring-box {
   background-color: white;
   box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
   padding: 30px;
   margin: 0 15px 30px 15px; /* set a margin on all sides of the boxes */
   width: calc(33.33% - 30px);
   border-radius: 10px;
   overflow: hidden;
 }
 
 .sponsoring-box:last-child {
   margin-right: 0;
 }
 
 .sponsoring .container .sponsoring-box h3 {
   font-size: 24px;
   color: black;
   margin-bottom: 20px;
 }
 
 .sponsoring .container .sponsoring-box p {
   font-size: 18px;
   color: gray;
   line-height: 1.5;
 }

 /* second section */

 .sponsors {
   background-color: #F9F9F9;
   padding: 50px 0;
 }
 
 .sponsors h2 {
   font-size: 36px;
   color: black;
   text-align: center;
   margin-bottom: 50px;
 }
 
 .sponsors .container {
   max-width: 1200px;
   margin: 0 auto;
 }
 
 .sponsors-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   grid-gap: 30px;
 }
 
 .sponsor {
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: black;
   box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
   padding: 20px;
   border-radius: 10px;
   overflow: hidden;
   transition: transform 0.2s ease-in-out;
   width: 300px;
   height: 100px; 
 }
 
 .sponsor:hover {
   transform: scale(1.1);
 }
 
 .sponsor img {
   max-width: 100%;
   max-height: 100%;
 }
 
 @media screen and (max-width: 900px) {
   .sponsors-grid {
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   }
 }
 
/* third section */

.contact
{
  position: relative;
  min-height: 100vh;
  padding: 10px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  background-image: url('../images/sponsor-bg.png');
}
.contact .content
{
  max-width: 800px;
  text-align: center;
}

.contact .content h2
{
  font-size: 36px;
  font-weight: 500;
  color: white;
}

.contact .content p{
  font-weight: 300;
  color: white;
}

.container
{
  width: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.container .contactInfo
{
  width: 50%;
  display: flex;
}

.container .contactInfo .box
{
  position: relative;
  padding: 20px 0px;
  display: flex;
}

.container .contactInfo .box .icon
{
  min-width: 60px;
  height: 60px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.container .contactInfo .box .text
{
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: white;
  flex-direction: column;
  font-weight: 300;
}

.container .contactInfo .box .text h3
{
  font-weight: 500;
  color:#C1FF72;
}

.contactForm
{
  width: 40%; 
  padding: 40px; 
  background: white;
}

.contactForm h2{
  font-size: 30px;
  color: #333;
  font-weight: 500;
}

.contactForm .inputBox
{
  position: relative;
  width: 100%; 
  margin-top: 10px;
}

.contactForm .inputBox input, 
.contactForm .inputBox textarea 

{
  width: 100%; 
  padding: 12px 0; 
  margin: 10px 0; 
  border: none; 
  border-bottom: 1px solid #333; 
  outline: none;
  resize: none;
}

.contactForm .inputBox span{
  position: absolute; 
  left: 0; 
  padding: 5px 0; 
  margin: 10px 0; 
  pointer-events: none; 
  transition: 0.5;
  color: black; 

}

.contactForm .inputBox input:focus ~ span, 
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span, 
.contactForm .inputBox textarea:valid ~ span
{
  color: black;
  font-size: 12px;
  transform: translateY(-20px);
}

.contactForm .inputBox input[type="submit"]
{
  width: 100px; 
  background: #C1FF72;
  color: black; 
  border: none; 
  cursor: pointer; 
  padding: 10px; 
  font-size: 18px;
}
  
.dropBox
{
  margin-top: 10px;
}

/* footer */
body{
    margin:0;
    overflow-x:hidden;
    }
    
    .footer{
    background:#C1FF72;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:black;
    font-size:0.8em;
    }
    
    .footer .row a{
    text-decoration:none;
    color:black;
    transition:0.5s;
    }
    
    .footer .row a:hover{
    color: forestgreen;
    }
    
    .footer .row ul{
    width:100%;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }

/*SMALL SCREEN ADJUSTMENTS */ 

.mobile-nav{
  display:none; 
}

.hamburger{
  display:none; 
}

@media (max-width:900px){

  /* footer */
.footer{
text-align:center;
padding:5%;
}
.footer .row ul li{
display:block;
margin:10px 0px;
text-align:center;
}
.footer .row a i{
margin:0% 3%;
}

/* header */ 

nav ul {
  display: none;
}

.hamburger {
  position: relative; 
  display: block;
  width: 35px; 
  margin-right: 15px;
  cursor: pointer; 

  appearance: none; 
  background: none; 
  outline: none; 
  border: none; 
}

.hamburger .bar, .hamburger:after, .hamburger:before {
  content: ''; 
  display: block; 
  width: 100%; 
  height: 5px; 
  background-color: #C1FF72; 
  margin: 6px 0px; 
  transition: 0.4s; 
}

.hamburger.is-active:before{
  transform: rotate(-45deg) translate(-8px, 6px); 
}

.hamburger.is-active:after{
  transform: rotate(45deg) translate(-9px, -8px); 
}

.hamburger.is-active .bar{
  opacity: 0; 
}

.mobile-nav{
  position: fixed; 
  top: 0; 
  margin-top: 125px; 
  left: 100%; 
  width: 100%; 
  min-height: 100vh; 
  display: block; 
  z-index: 91; 
  background-color: #C1FF72;
  padding-top: 120px;
  transition: 0.4s; 
}

.mobile-nav.is-active{
  left: 0; 
}

.mobile-nav a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  color: black;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a::before {
  content: "\2022";
  margin-right: 8px;
  color: #C1FF72;
}

.mobile-nav a.active {
  font-weight: bold;
}

.mobile-nav a.active::before {
  margin-right: 8px;
  color: #C1FF72;
}    

 /* text-boxes */ 

 .container {
  width: 100%;
  padding: 0;
}

.sponsoring-box {
  width: 100%;
  margin: 10px 0;
  border: none;
  margin-left: 10px;
  margin-right: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

 /*
 .sponsoring-box {
  width: 100%;
  margin: 0;
  margin-bottom: 30px;
  margin-right: 10px; 
  margin-left: 10px; 
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  padding: 20px;
} */

}

@media (max-width: 950px)
{
  .contact{
    padding: 50px; 
  }

  .container .contactInfo
  {
    margin-bottom: 40px;
  }

  .container .contactInfo, 
  .contactForm
  {
    width: 100%;   
  }

  .inputBox 
  {
    padding-bottom: 10px;
  }

 
}