@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

*{
    margin : 0;
    padding: 0;
    box-sizing: border-box;
}
p, h4, h3{
  font-family: 'lora', serif;
  color: #ffffff;
}
/* h4{
  font-size: 20px;
} */
a{
  text-decoration: none;
  color: inherit;
}





.navbar {
    /* font-size: 18px; */
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0.7623249128753063) 21%, #f0f0f0  66%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
    position: sticky;
    top: 0;
    z-index: 12;
  }
  
  .main-nav {
    list-style-type: none;
    display: none;
  }
  
  .nav-links,
  .logo {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
  }
  
  .main-nav li {
    text-align: center;
    margin-left: 2%;
    margin-right: 2%;
  }
  
  .logo {
    display: inline-block;
    font-size: 22px;
    margin-top: 10px;
    margin-left: 20px;
  }
  
  .navbar-toggle {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.8);
    font-size: 24px;
  }
  
  
  .headerSection{
    width: auto;
    height: auto;
    display: flex;
  }
  .headerSlide {
    width: 100%;
    height: 100%;
    padding-top: 2%;
    padding-bottom: 2%;
    background-position: bottom;
    background-size: cover;
    color: #FFF;
    flex: 1;
    display: block;
  }
  .header1{
    height: 100%;
    background-image: url(./../img/index.jpeg);
    background-position: center center;
    background-size: cover;
    top: 5%;
    height: 100%;
  }
  .header2{
    height: 100%;
    background-image: url(./../img/header2.jpeg);
    background-position: center center;
    background-size: cover;
    top: 5%;
    height: 100%;
    position: relative;
  }

  .header3{
    height: 100%;
    background-image: url(./../img/header3.jpeg);
    background-position: center center;
    background-size: cover;
    top: 5%;
    height: 100%;
    position: relative;
  }

  .citySelect {
    align-items: center;
    margin-top: 3%;
    border-radius: 50px;
    border: none;
    background-color: #1e2225cc;
    width: 55%;
    padding: 3%;
    cursor: pointer;
    transition: .5s;
  }

  /*--Event Section--*/
.event{
  width: 80%;
  margin-left: 10%;
  margin-top: 3%;
  z-index: 5;
}
.event-title{
  font-family: 'lora', serif;
  padding: 1%;
  font-size: 30px;
  font-style: italic;
  color: #d0850b;
  text-align: center;
}
.eventDetail{
  margin-left: 2%;
  margin-right: 2%;
  -webkit-box-shadow: 13px 7px 18px 4px #000000;
  -moz-box-shadow: 13px 7px 18px 4px #000000;
  box-shadow: 13px 7px 18px 4px #000000;
  background-color: #00000057;
}
.eventdate{
  font-family: 'lora', serif;
  padding: 5%;
  font-style: italic;
  color: #d0850b;
}
.eventTitle{
  margin-bottom: 5%;
}
.eventpara{
  margin-bottom: 2%;
}

/*--Subscription parallax--*/
.parallax {
  margin-top: 3%;
  /* The image used */
  background-image: url("./../img/parallax.jpeg");
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  /* Full height */
  height: 43vh;
  width: 100%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/**subscribe*/
.c-checkbox {
  display: none;
}
.c-checkbox:checked + .c-formContainer .c-form {
  width: 37.5em;
}
.c-checkbox:checked + .c-formContainer .c-form__toggle {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.7);
}
.c-checkbox:checked + .c-formContainer .c-form__input,
.c-checkbox:checked + .c-formContainer .c-form__buttonLabel {
  transition: 0.2s 0.1s;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.c-checkbox:not(:checked) + .c-formContainer .c-form__input:required:valid ~ .c-form__toggle::before, .c-checkbox:checked + .c-formContainer .c-form__input:required:valid ~ .c-form__toggle::before {
  content: 'Thank You! \1F60A';
}
.c-checkbox:not(:checked) + .c-formContainer .c-form__input:required:valid ~ .c-form__toggle {
  pointer-events: none;
  cursor: default;
}

.c-formContainer,
.c-form,
.c-form__toggle {
  width: 20em;
  height: auto;
  padding: 3%;
}

.c-formContainer {
  position: relative;
  font-weight: 700;
}

.c-form,
.c-form__toggle {
  position: absolute;
  border-radius: 6.25em;
  background-color: #ffffff4a;
  transition: 0.2s;
}

.c-form {
  left: 50%;
  transform: translateX(-50%);
  padding: 0.625em;
  box-sizing: border-box;
  box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
}

.c-form__toggle {
  color: #ff7b73;
  top: 0;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-form__toggle::before {
  font-size: 1.75em;
  content: attr(data-title);
}

.c-form__input,
.c-form__button {
  font: inherit;
  border: 0;
  outline: 0;
  border-radius: 5em;
  box-sizing: border-box;
}

.c-form__input,
.c-form__buttonLabel {
  font-size: 1.75em;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.7);
  transition: 0s;
}

.c-form__input {
  color: #ffcccc;
  height: 100%;
  width: 100%;
  padding: 0 0.714em;
}
.c-form__input::placeholder {
  color: currentColor;
}
.c-form__input:required:valid {
  color: #ff7b73;
}
.c-form__input:required:valid + .c-form__buttonLabel {
  color: #ffffff;
}
.c-form__input:required:valid + .c-form__buttonLabel::before {
  pointer-events: initial;
}

.c-form__buttonLabel {
  color: #ffaea9;
  height: 100%;
  width: auto;
}
.c-form__buttonLabel::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  cursor: pointer;
}

.c-form__button {
  color: inherit;
  padding: 0;
  height: 100%;
  width: 5em;
  background-color: #ff7b73;
}

/**#End Of Subscribe*/


/*--#End Of Subscription Parallax--*/

/*--#End Of Event section--*/


/*--App-LastWeek Section--*/
#featured-slider {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

#slider {
  width: 100%;
  height: 1250px;
  position: absolute;
  top: 0px;
  left: 0px;
}
#slider .slide {
  width: 100%;
  height: 250px;
  position: relative;
}
#slider h2 {
  /* background: url(http://depo.webogrencisi.com/jqueryslider/images/titlebg.png); */
  width: 406px;
  height: 27px;
  padding-top: 3px;
  text-align: center;
  position: absolute;
  left: 10px;
  top: 10px;
  font: 18px 'Trebuchet MS';
  color: #fff;
}
#slider #pagination {
  position: absolute;
  left: 10px;
  bottom: 10px;
}
#slider #pagination a {
  /* background: url(http://depo.webogrencisi.com/jqueryslider/images/link.png); */
  width: 16px;
  height: 16px;
  margin-right: 2px;
  display: block;
  float: left;
  text-decoration: none;
}
#slider #pagination a span {
  display: none;
}

.downloadAppParent{
  width: 50%;
  height: 100%;
  margin-bottom: -1%;
}
.downloadAppParent-title{
  font-family: 'lora', serif;
  padding: 5%;
  font-size: 30px;
  font-style: italic;
  color: #d0850b;
}
.downloadApp{
  width: 100%;
  font-weight: 600;
  text-align: center;
  margin-right: 5%;
  padding: 2%;
  padding-bottom: 4%;
  -webkit-box-shadow: 13px 7px 18px 4px #000000;
  -moz-box-shadow: 13px 7px 18px 4px #000000;
  box-shadow: 13px 7px 18px 4px #000000;
  background-color: #00000057;
}
/* .downloadApp-p{
  padding-top: 2%;
  font-weight: 600;
  text-align: center;
  line-height: 1.5em;
  font-family: 'lora', serif;
} */
/*--#End Of App-LastWeek Section--*/


/*--Footer--*/




/*-- Start Responsive Design*/
 /* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */

 /* @media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}  */
  @media screen and (min-width: 768px) {
    .navbar {
      display: flex;
      justify-content: space-between;
      padding-bottom: 0;
      height: 80px;
      align-items: center;
      position: relative;
      z-index: 12;
      position: sticky;
    }
  
    .main-nav {
      display: flex;
      margin-right: 30px;
      flex-direction: row;
      justify-content: flex-end;
    }
  
    .main-nav li {
      margin-left: 2%;
      margin-bottom: 0%;
    }
  
    .nav-links {
      margin-left: 80px;
    }
  
    .logo {
      margin-top: 0;
    }
  
    .navbar-toggle {
      display: none;
    }
  
    .logo:hover,
    .nav-links:hover {
      color: rgba(255, 255, 255, 1);
    }
  }

  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #1e2225;
    display: block;
    transition: 0.3s;
  }
  
  .sidenav a:hover {
    color: #6e6e6e;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
.dropdown {
  overflow: hidden;
  width: auto;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: inherit;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #000;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Gradient color1 - color2 - color1 */

hr.style-one {
  border: 0;
  height: 1px;
  background: #333;
  margin-top: 5%;
  background-image: -webkit-linear-gradient(left, #ccc, #333, #ccc);
  background-image: -moz-linear-gradient(left, #ccc, #333, #ccc);
  background-image: -ms-linear-gradient(left, #ccc, #333, #ccc);
  background-image: -o-linear-gradient(left, #ccc, #333, #ccc);
  }
.social{
  width: 100%;
  display: inline-flex;
  justify-content: space-evenly;
  align-items: center;
  box-sizing: border-box;
}


  #main {
    transition: margin-right .5s;
    padding: 0;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }


  /*--the select city modal
/* The city Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 20;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: #524e4e7c;
	/* Black w/ opacity */
    color: #000;
    transition: ease-in-out 2s;
  }
  
  /* Modal Content/Box */
  /* .modal-content {
	background-color: #000000a1;
    margin: 5% auto 2%;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
    min-height: 70vh;
    height: auto;
    border: #000000;
    border-radius: 26px;
  }
   */
  /* The Close Button */
  .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  }
  
  .autocomplete {
	/*the container must be positioned relative:*/
	position: relative;
	display: inline-block;
    width: 80%;
    height: 100%;
  }
  
  .input-field {
	margin-left: 0%;
	width: 100%;
  }
  
  input {
	border: 1px solid transparent;
	background-color: #00000088;
	padding: 10px;
	font-size: 16px;
	width: 80%;
	margin-left: 10%;
  }
  
  input[type=text] {
      background-color: #ffffffad;
    width: 100%;
    border-radius: 5%;
    border-bottom: 2px solid #000;
    height: 9vh;
  }
  
  input[type=submit] {
	background-color: #8a8e92;
	color: #000;
  }
  
  .autocomplete-items {
	position: absolute;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	/*position the autocomplete items to be the same width as the container:*/
	top: 100%;
	left: 0;
	right: 0;
  }
  
  .autocomplete-items div {
	padding: 10px;
	cursor: pointer;
	background-color: rgba(15, 2, 2, 0.719);
	color: #fff;
	border-bottom: 1px solid #d4d4d4;
  }
  
  .autocomplete-items div:hover {
	/*when hovering an item:*/
	background-color: #e9e9e9;
	color: #000;
  }
  
  .autocomplete-active {
	/*when navigating through the items using the arrow keys:*/
	background-color: DodgerBlue !important;
	color: #ffffff;
  }
  
  .submit {
	width: 20%;
  }