@charset "utf-8";
@import url("../webfonts/sourcesanspro_regular/stylesheet.css");
@import url("../webfonts/SourceSansPro_Bold/stylesheet.css");
@import url("../webfonts/SourceSansPro_Light/stylesheet.css");

/* CSS Document */
/* default to Mobile Phone*/

html,
html * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-style: normal;
    font-weight: 400;
    font-family: "sourcesanspro regular" 
}

body {
    background-color: #000000; 
}


header {
    padding: 32px;
    background-color: rgba(0, 0, 0, 0.932);
}

a:visited {
    color: rgb(121, 94, 5);
  }


.card {
    background-color: rgb(0, 0, 0);
    display: block;
    grid-template-columns: repeat(2, 1.5fr);    
    grid-template-columns: minmax(); 
    grid-gap: 2rem;
    font-family: 'SourceSansPro Light';
    color: rgba(255,255,255,1.00); 
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    
}


.card-pitch {
      padding-bottom: 0rem; 
}


.card > div {
      padding: 3rem;  
      
}

 

.columnleft {
    padding-left: 44px;
    font-size: 56px;
    line-height: 56px;
    color: #000000;
    font-family: "SourceSansPro Bold";
    font-style: normal;
    font-weight: 200;
    text-align: left; 
}


.columnright{
    font-family: 'SourceSansPro Light';
    font-size: 24px;
   }

.columnright-title{
    font-size: 28px;
    }


.columnleft-tribecaselection {
    padding-top: 40px;
    } 
    
.columnright-tribecaannounce{
    top: 0px;
    margin-top: 0px;
    font-weight: bold;
    }


.columnleft-bridges {
    margin-top: 20px;
    margin-bottom: 20px;
} 

.columnleft-global {
    padding-top: 30px;
} 

.columnleft-shortline {
     padding-top: 30px;
} 

.columnteam {
    padding-top: 20px;
    font-size: 56px;
    line-height: 56px;
    color: #FFFFFF;
    font-family: "SourceSansPro Bold";
    font-style: normal;
    font-weight: 200;
    text-align: left; 
    border-top: 1px solid white;


}


/* Clear floats after the columns */
.row:after {
    content: "";
    clear: both;
}



.style-logo {
    max-width: 70%; 
    top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    opacity: 100%;
}


.style-nav ul {
    list-style-type: none;
    margin-top: 30px;
}

.style-nav ul li a{
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    display: block;
    padding: 8px;
}


.btn-nav {
    font-size: 24px;
}

.btn-nav:hover {
    text-decoration: underline;
}






.copyright {
	font-size: 14px;
	color: #ffffff;
    text-align: center;
    background-color: rgb(0, 0, 0);
}

.copyrightbox {
    background-color: rgb(0, 0, 0);
    margin-bottom: 30px;
}


.form-container {
    display: flex;
    align-items: center;
    font-size: 24px;
    /*font-weight: bold;*/
}
    



.style-navbar ul {
    border-bottom: 1px solid white;
}


.parallax {

    display: flex;
    justify-content: center; /* Center children horizontally */
    align-items: center; /* Center children vertically */


   /* max-width: 250%;*/
	padding: 100px 0px; 
    background: transparent;
    /*border: 1px solid white; /* Add a 1 pixel border with white color */


}


/* fix for phone */
.parallax-firstimage {
    border-top: 1px solid white;
    flex: 1; /* Allows the image to grow to fill the container */
}

/*new*/

input[type="checkbox"] {
    transform: scale(2.0); /* Adjust the scale value as needed */
  }

.form-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .form-input {
    flex-grow: 1;
  }
  
  .form-checkbox {
    flex-grow: 1;
    max-width: 360px;
    padding-top: 10px;
    padding-left: 8px;
    padding-right: 10px;
    margin-right: 10px;
    display: flex;
    align-items: center;
  }
  
  .checkbox-text {
    font-size: 12px;
    margin-left: 15px;
  }
  
  .email-input {
    /*flex: 1;*/
    min-width: 340px;
    min-height: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.submit-button {
    all: initial;
    all: unset;

    width: 70px;
    margin-right: 10px;
    margin-left: 260px;
    background-color: white;
    padding-left: 10px;
    border: none;
    border-radius: 2px;
    font-weight: bold;
    color: rgb(0, 0, 0)
}

.responsive-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
  }
  
  .responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  
/*Phone specific View ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*Phone is too narrow to show the title capsule with logo on the left, so we disable the parallax effect on this screen size*/

@media (min-width: 320px){ 

    .parallax-firstimage {
        background-size: cover;
        background-position: center; /* Adjust as needed to focus on a specific part of the image */
        height: 200px; /* Adjust based on your design needs */
      }

}


/*Tablet View ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
 @media (min-width: 768px){ 
    /* @media (min-width: 667px){ */
    
    .style-nav ul li {
        display: inline-block;
    }
    
    .style-nav ul {
        text-align: center;

    }
    
    .style-nav {
        position: fixed;
        right: 0;
        top: 30px;
        margin-top: -40px;
        z-index: 5; /* Setting the depth. Adjust the value as needed */

    }

    .parallax {
        max-width: 250%;
        min-height: 400px;
        top: 20px;
    }
    
    .parallax-firstimage {
        margin-top: 46px;
        max-width: 250%;
    }

    .style-logo {
        max-width: 15%;
        position: fixed;
        z-index: 5; /* Setting the depth. Adjust the value as needed */
    }

    .style-logo-fade {
        opacity: 0%;
        transition: opacity 0.5s;
        z-index: 5; /* Setting the depth. Adjust the value as needed */
    }
 
    .style-navbar{
        top: 0px;
        left:-100px;
        position: fixed;
        width: 150%;
        height: 110px;
        padding-bottom: 140px;
        border-bottom: 1px solid white;
        z-index: 5; /* Setting the depth. Adjust the value as needed */
    }

    .card {
    display: grid;
    grid-gap: 2rem;
    margin-bottom: 1.5rem;
    }

    .columnleft {
        font-size: 76px;
        line-height: 76px;
    }

    .card {
        padding: 0px;
        margin: 0px; 
    }

   .columnright-title{
    font-size: 28px;
    font-weight: bold;
    }

    .columnright-aboutus{
    padding-top: 20px;
   }

   .columnleft-tribecaselection {
    padding-top: 40px;
    /*padding-bottom: 10px;*/
} 
   .columnright-tribecaannounce{
    top: 0px;
    margin-top: 0px;
    font-weight: bold;
   }

   .columnright-mission{
    padding-top: 60px;
   }

   .columnright-bridge{
    top: 0px;
    margin-top: 16px;
    font-weight: bold;
   }

   .columnright-pitch{
    top: 0px;
    font-weight: bold;
    /* margin-top: 27px; */
   }

   .columnright-voice{
    padding-top: 27px; 
    font-weight: bold;
   }

   .columnleft-global {
        padding-top: 90px;
    } 

    .columnleft-bridges {
    padding-bottom: 50px;
    } 

   .columnleft-shortline {
    padding-top: 30px;
    margin-bottom: 33px;
    top: 0px;
   }

   
input[type="checkbox"] {
    transform: scale(2.0); /* Adjust the scale value as needed */
    z-index: 2; /* Setting the depth. Adjust the value as needed */
  }

.form-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .form-input {
    flex-grow: 1;
  }
  
  .form-checkbox {
    flex-grow: 1;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 10px;
    display: flex;
    align-items: center;
  }
  
  .checkbox-text {
    font-size: 12px;
    margin-left: 15px;
  }
  
  .email-input {
    /*flex: 1;*/
    min-width: 380px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.submit-button {
    all: initial;
    all: unset;

    width: 70px;
    margin-right: 10px;
    margin-left: 300px;
    background-color: white;
    padding-left: 10px;
    border: none;
    border-radius: 2px;
    font-weight: bold;
    color: rgb(0, 0, 0)
}





/*Desktop View 1200  ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@media (min-width: 1200px){
    
    .style-logo{
        max-width: 10%;
        float: left;
        position: fixed;
        opacity: 0%;
    }
    
    .style-logo-fade{
        opacity: 0%;
        transition: opacity 0.5s;
    }

    
    .style-nav {
        position: fixed;
        right: 0;
        top: 30px;
        margin-top: -30px;
    }

    .style-navbar{
        background-color: rgba(0,0,0,1.00);
        top: 0px;
        left:-100px;
        position: fixed;
        width: 150%;
        height: 140px;
        padding-bottom: 150px;
    }
    
    .btn-nav {
        font-size: 24px;
    }


    .columnleft {
        font-size: 76px;
        line-height: 76px;
        padding-bottom: 20px;
        top: 0px;
    }
    
    .columnright-aboutus{
        padding-top: 0px;
    }

    .columnright-mission{
        padding-top: 0px;
    }

    .columnright-bridge{
        top: 0px;
        margin-top: 26px;
    }
    
    .columnright-voice{
        top: 0px;
        padding-top: 20px;
    }

    .columnright-pitch{
        top: 0px;
        margin-top: 0px;
    }




    .columnleft-global {
        padding-top: 120px;
   } 




   .columnleft-bridges {
    margin-top: 50px;
    } 

    .columnleft-shortline {
        padding-top: 40px;
   } 



    .parallax {
        max-width: 100%;
        min-height: 800px; 
    }



    .card {
        padding: 0px;
        margin: 0px; 
    }

      
input[type="checkbox"] {
    transform: scale(1.5); /* Adjust the scale value as needed */
  }

.form-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .form-input {
    flex-grow: 1;
  }
  
  .form-checkbox {
    flex-grow: 1;
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 10px;
    margin-right: 10px;
    display: flex;
    align-items: center;
  }
  
  .checkbox-text {
    font-size: 12px;
    margin-left: 15px;
  }
  
  .email-input {
    /*flex: 1;*/
    min-width: 700px;
    margin-right: 0px;
    margin-bottom: 10px;
}

.submit-button {
    all: initial;
    all: unset;

    width: 70px;
    min-height: 40px;
    margin-right: 10px;
    margin-left: 0px;
    background-color: white;
    padding-left: 10px;
    border: none;
    border-radius: 2px;
    font-weight: bold;
    color: rgb(0, 0, 0)
}


     
}



/*Desktop View 2560 very wide monitor fixes ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@media  (min-width: 2000px)  { 


/* my test 3*/

    .style-navbar{
    padding-bottom: 120px;

    }

    .style-logo {
        max-width: 8%; /* 8 */
    }

    .parallax {
        max-width: 100%;
        min-height: 950px; 
    }

    .columnleft-global {
        padding-top: 100px;
   } 

   .columnright-pitch{
        margin-top: 20px;
    }

    .style-navbar{
        background-color: rgba(0,0,0,1.00);
        top: 0px;
        left:-100px;
        position: fixed;
        width: 150%;
        height: 190px;
        padding-bottom: 200px;
    }

          
input[type="checkbox"] {
    transform: scale(1.5); /* Adjust the scale value as needed */
  }

.form-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .form-input {
    flex-grow: 1;
  }
  
  .form-checkbox {
    flex-grow: 1;
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 10px;
    margin-right: 10px;
    display: flex;
    align-items: center;
  }
  
  .checkbox-text {
    font-size: 12px;
    margin-left: 15px;
  }
  
  .email-input {
    /*flex: 1;*/
    min-width: 1050px;
    margin-right: 0px;
    margin-bottom: 10px;
}

.submit-button {
    all: initial;
    all: unset;

    width: 70px;
    min-height: 40px;
    margin-right: 10px;
    margin-left: 0px;
    background-color: white;
    padding-left: 10px;
    border: none;
    border-radius: 2px;
    font-weight: bold;
    color: rgb(0, 0, 0)
}


}
}