@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital@1&display=swap');

.navbar{
    padding: 0px 30px;
    color: #FFF;
    background-color: #292b3a;
    padding: 0px 30px;
    box-shadow: 3px 5px 10px rgb(0 0 0 / 100%);
}

.navbar-brand img{
    width: 120px;
    margin: 7px 0;
}

.navbar-nav{
    flex: 1;
}

.navbar .navbar-brand, .navbar .navbar-brand:hover{
    font-size: 28px;
    font-weight: 600;
    color: #F7971E;
}

.navbar .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    margin-right: 20px;
    color: #FFF;
}

.navbar-light .navbar-nav .nav-link.active {
    color: #F7971E;
}

.navbar .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #F7971E;
}

.navbar-collapse{
    margin-left: 50px;
}

.navbar-light .navbar-toggler-icon{
    background: none;
    color: #F7971E;
    font-size: 24px;
}

.navbar-light .navbar-toggler-icon:focus{
    border: none;
    outline: none;
    
}

.fa-bars{
    font-size: 24px;
}

.btn-sbmt{
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  padding: 7px 24px;
  border-radius: 7px;
  color: transparent;
  /* background-color: #09c6f9; */
  width: 120px;
  height: 42px;
  background-image: url('img/btn-filmfreeway.png');
  background-size: cover;
}

.btn-sbmt:hover{
    color: transparent;

}

a {
    text-decoration: none;
}

a:hover {
    color: #3eadcf;
    text-decoration: none;
}

/* img{
    width: 100%;
} */

/* gradients */
.grad-1{
    background: #F7971E;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FFD200, #F7971E);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FFD200, #F7971E); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.grad-2{
    background-color: #abe9cd;
    background-image: linear-gradient(315deg, #abe9cd 0%, #3eadcf 74%);
}

.grad-3{
    background-color: #3bb78f;
    background-image: linear-gradient(315deg, #3bb78f 0%, #0bab64 74%);
}

.grad-4 {
    background-color: #045de9;
    background-image: linear-gradient(315deg, #045de9 0%, #09c6f9 74%);
}

/* .clr-1 {

}] */

main{
    margin: auto; 
    background-image: url('img/cover-horizontal.jpg');
    padding-top: 2px;
    padding-bottom: 50px;
}

.main_in{
    max-width: 900px;
    margin: auto;
}

#cover{
    position: relative;
    width: 100%;
    background-color: #000;
    background-image: url('img/cover-horizontal.jpg');
    background-size: cover;
    height: 100vh;
}

.cov_lr{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 2;
}

.cov_con{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    color: #FFF;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.con_card{
    border-radius: 15px;
    background-color: #F7971E;
    max-width: 400px;
    margin: auto;
    /* position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);*/
}

.con_card img{
    width: 300px;
    height: auto;
}

#cover img{
    width: 100%;
}

.abt-card{
    padding: 20px;
    margin: 50px 0px;
    border-radius: 10px;
    background-image: linear-gradient(
	to right,	
    #cb9b51 0%, 
	#f6e27a 45%,
	#f6f2c0 50%,
	#f6e27a 55%,
	#cb9b51 100%	
	);
}

/* #about{
    background-image: url('img/card-hr.jpg');
    background-size: cover;
} */

/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: rgb(193, 193, 193);
    top: 0;
    bottom: 0;
    left: 30px;
    margin-left: -3px;
  }
  
  /* Container around content */
  .container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 100%;
  }
  
  /* The circles on the timeline */
  .container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: red;
    border: 4px solid #f6e27a;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Place the container to the left */
  .left {
    left: 0;
  }
  
  /* Place the container to the right */
  .right {
    left: 30px;
  }
  
  /* Add arrows to the left container (pointing right) */
  .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
  }
  
  /* Add arrows to the right container (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  
  /* Fix the circle for containers on the right side */
  .right::after {
    left: -16px;
  }
  
  /* The actual content */
  .content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
  }
  

  section{
      margin-bottom: 0px;
  }

  main > section {
      margin-bottom: 50px;
  }

  .sec_in{
      padding: 12px;
      background-color: #FFF;
  }

.awd-hdg {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  background-color: #cb9b51;
  padding: 12px;
  border-radius: 3px 3px 0 0;
  margin: 0;
}

ul{
    padding: 0;
}

#awards ul li {
    list-style: none;
    text-transform: capitalize;
}

#awards .fa-trophy {
    color: #F7971E;
    margin-right: 8px;
}

/* .sec_in {
    background-image: url('img/card-hr.jpg');
} */

#rules{
    margin-top: 50px;
}

#rules ul{
    padding-left: 20px;
}

#rules ul li {
    list-style: decimal;
    margin-bottom: 12px;
}

/* #awards ul li .awd-icon {
    position: relative;
    width: 24px;
    padding-top: 24px;
    border-radius: 3px;
    background-color: #000;
} */

#submit{
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

#organiser{
    color: #FFF;
    background-color: #F7971E;
    padding: 100px 0;
}

.aame-text{
    font-size: 42px;
    font-family: 'Lobster Two', cursive;
    background-image: linear-gradient(
	to right,
       	#cb9b51 0%, 
	#f6e27a 45%,
	#f6f2c0 50%,
	#f6e27a 55%,
	#cb9b51 100%
	);
   color:transparent;
   background-clip: text;
   -webkit-background-clip:text;
}

.font-sm{
    font-size: 28px;
    display: block;
}

.sec_cont{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px auto;
    align-items: center;
}

.sec_cont img {
    width: 200px;
    margin: 30px auto;
    border-radius: 15px;
}

.map-con{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow-y: hidden;
}
iframe{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer{
    color: #FFF;
    background-color: rgb(44, 40, 40);
}

.foo-social-icon{
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: #FFF;
}



@media (max-width : 900px) {
    .main_in{
        width: calc(100% - 32px);
        margin-left: 16px;
    }

    .navbar-collapse {
        margin-left: 0px;
    }

    .navbar-nav {
        flex: 1;
        margin-bottom: 11px;
    }

     /* Place the timelime to the left */
  .timeline::after {
    left: 31px;
    }
    
    /* Full-width containers */
    .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
    }
  
    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
    left: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    .right {
    left: 2px;
    }

}

@media (max-width : 768px) {

    .btn-sbmt{
        padding: 12px 24px;
    }

    .main_in{
        width: calc(100% - 32px);
        margin-left: 16px;
    }

    .navbar-collapse {
        margin-left: 0px;
        padding-bottom: 20px;
    }

    .navbar-nav {
        flex: 1;
        margin-bottom: 11px;
    }

    #cover{       
        background-image: url('img/cover-landscap.jpg');
    }

    .con_card{
        width: calc(100% - 32px);
        margin: auto;
    }

    /* Place the timelime to the left */
  .timeline::after {
    left: 31px;
    }
    
    /* Full-width containers */
    .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
    }
  
    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
    left: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    .right {
    left: 2px;
    }
}