/*
COLOR PALETTE
https://coolors.co/0f1d42-f3a713-036fb7-ffffff-9a8f97
#0f1d42 - dark blue
#f3a713 - mustard yellow
#036fb7 - baby blue
#FFFFFF - white
#9A8F97 - light gray
*/

/* Global-styles */
body {
    margin: 0 ;
    font-family: poppins;
}

.content-wrap {
    width: 70%;
    margin: 0 auto;
  }
  

/*General*/



/* NavBar*/
.nav-bar{ 
    display: flex;
    position: fixed;
    top: 0;
    left:0;
    height: 100px;
    width: 100%;
    padding: 10px;
    z-index: 10;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px 0px #000;
}

.nav-bar h1{
    display: inline-block;
    background-size: 70px 50px;
    font-size: 0px;
    cursor: pointer;
}

.nav-area{
    float: right;
    list-style: none;
    margin-top: 30px;
}



/*-----------menu------------*/
#menuToggle
{
  display: block;
  position: relative;
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #0f1d42;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #f3a713;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  right: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #9A8F97;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}







/*------------Sections-------------*/

.section {
    display: flex;
    margin: 0px 0px;
    width: 100%;

}

/*----------Intro--------------*/
.section-1{
    height: 100vh;
    margin-top: 50px;
    background-color: #0f1d42;
    background-image: url('../images/intro-1.jpg');
    background-size: cover;
    overflow: hidden;
    
}


.section-1 h1{
    position: absolute;
    font-weight: 700;
    font-size: 8vh;
    max-width: 5vh;
    line-height: 9vh;
    text-align: left;
    top:30%;
    left: 8%;
    color: #FFFFFF;
}


/*----------About Sidra Crew--------------*/
.section-2{
    padding-top: 80px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    background-color: #FFFFFF;
}

.aboutus{
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}


.aboutus img{
    height: 400px ;
    width: 340px;
    box-shadow: 0px 0px 10px 0px #000;
}

.aboutus .aboutus-body{
    flex:2;
    padding: 0;
    margin-left: 30px;
    
}

.aboutus h1{
    margin-top: 0;
    padding-top: 0;
    color: #0f1d42;
}

.aboutus p{
    font-weight: 100;
    color: #9A8F97;
    font-weight: bold;
    

}

/*----------Crewing--------------*/

.section-3{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    background-color: #f3a713;
    background-image: url(../images/crewing-bkg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
}

.crewing-cover{
    background-color: #036fb733;
}

.crewing{
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}

.crewing h1{
    margin-top: 0;
    padding-top: 0;
    color: #0f1d42;
}

.crewing-header p{
    font-weight: 100;
    font-weight: bold;
    color: #0f1d42;

}

.crewing-body{
 display: flex;
 flex-wrap: wrap;
 flex-direction: row;
 justify-content: space-between;
 width: 80%;
 margin: 0 auto;
}

.crewing-body p{
    color: #0f1d42;

}

.card-crewing{
    margin-top: 25px;
    height: 400px;
    width: 450px;
    padding: 15px ;
    padding-left: 20px;
    background-color: #fff;
    text-align: left;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
}








/*----------Crew Management--------------*/

.section-4{
    background-color: #fff;
}

.crew-management{
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;

}

.crew-management .crew-management-text{
    flex: 2;
    color: #0f1d42;
}

.crew-management .crew-management-photo{
    margin-left: 30px;
    margin-top: 30px;
    flex: 1;
    position: relative;}

.crew-management .crew-management-photo img{
    margin-bottom: 10px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4); 
    height: 200px;
    width: 200px;
}

.crew-management .crew-management-photo .shift{
    position: absolute;
    margin-left: 40%;
    margin-top: 20%;
}

/*--------Training----------*/
.section-5{
    background-color: #f3a713;
    background-image: url("../images/training-bkg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 80vh;
}

/*
.cover-training{

}
*/


.training{
    background-color: #ffffffcc;
    min-height: 50vh;
    margin-top: 10vh;
    margin-bottom: 10vh;
    padding: 20px 50px;
}

.training .training-header h1{
    color: #f3a713;
    font-weight: 700 ;
}

.training .training-body p{
    color: #0f1d42;
    font-weight: 300;
}


/*--------Innovation----------*/
.section-6{
    background-color: #ffffff;
    min-height: 80vh;

}

/*
.cover-innovation{

}
*/


.innovation{
    background-color: #ffffffcc;
    min-height: 50vh;
    margin-top: 10vh;
    margin-bottom: 10vh;
    padding: 20px 50px;
}

.innovation .innovation-header h1{
    color: #0f1d42;
    font-weight: 700 ;
}


.innovation .innovation-body h3{
    display: inline;
}

.innovation .innovation-body p{
    color: #0f1d42;
    font-weight: 300;
}



/*----------Our Team--------------*/

.section-7{
    background-color: #036fb7;
}



.team{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: 80px;
}



.team .team-header{
    text-align: center;
    color: #fff;
    margin-top: 0;
    display: flex;
    flex-direction: row;
    width: 70%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}



.team-bkg{
    max-height: 25%;
    max-width: 25%;
    
}

.team .team-body{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;   
    
}

.team .team-card{
    margin-bottom: 5%  ;
    position: relative;
    height: 300px;
    width: 500px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4); 
    transition: transform 0.2s;
    margin-right: 20px;
}


.team .team-card:hover{
    transform: scale(1.05);
}


.team .team-card .team-card-text{
    margin: 0 5%  ;
    color: #0f1d42;
    
}

.team .team-card .team-card-text h4{
    margin-bottom: 0;
    margin-top: 0;
    
}

.team .team-card .team-card-text p{
    margin-bottom: 0;
    margin-top: 6px;
}

.team .team-card img{
    position: absolute;
    bottom: 0;
}

/*--------Jobs----------*/
.section-8{
    background-color: #9A8F97;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.8); 

}




.job{
    margin-top: 5vh;
    margin-bottom: 5vh;
    padding: 20px 50px;
}

.job .job-header h1{
    color: #0f1d42;
    font-weight: 700 ;
}


.job .job-body h3{
    display: inline;
}

.job .job-body p{
    color: #0f1d42;
    font-weight: 300;
    font-size: 20px;
}

.job .job-body i{
    cursor: pointer;
        
}

.job .job-body a{
    cursor: pointer;
    text-decoration: none;
    color: #0f1d42;
    font-weight: 300;
}

.job .job-body a :hover{
    color: #f3a713;
}





/*----------Contact Us--------------*/

.section-9{
    background-color: #0f1d42;
    min-height: 40vh;
    background-image: url("../images/contactus-bkg.jpg");
    background-size: cover;
}

.contactus-cover{
    min-height: 40vh;
    width: 100%;
    background-color: #0f1d42e1;
}

.contactus{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin: 50px;
}

.contactus .contactus-card h1{
    text-decoration: underline;
    color: #f3a713;
    font-weight: 700;
}

.contactus .contactus-card p{
    color: #9A8F97;
    font-weight: 700;
}

.contactus .contactus-card .btn{
    background-color: #f3a713;
    color: #0f1d42;
    font-weight: 700;
    text-decoration: none;
    padding: 8px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4); 
    border-radius: 5px;

}

.contactus .contactus-card .btn:hover{
    padding: 10px;
}

