/* HEADER */

.nav-item {
  padding: 10px;
}

.dropdown-menu {
  background: #355C7D;
  border-radius: 8px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.navbar-nav .nav-link {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

/* SECTION */
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: -10;
}

.section-overlay+.container {
  position: relative;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.home-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
}

.home-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.home-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.home-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.home-section .container .row {
  height: 100%;
}

/* GALLERY */

.portfolio-menu {
  text-align: center;
}

.portfolio-menu ul li {
  display: inline-block;
  margin: 0;
  list-style: none;
  padding: 10px 15px;
  cursor: pointer;
  -webkit-transition: all 05s ease;
  -moz-transition: all 05s ease;
  -ms-transition: all 05s ease;
  -o-transition: all 05s ease;
  transition: all .5s ease;
}

.portfolio-item {
  /*width:100%;*/
}

.portfolio-item .item {
  /*width:303px;*/
  float: left;
  margin-bottom: 10px;
}

/* CAROUSEL */

.carousel-cell {
  align-items: center;
  border-radius: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.carousel-cell img {
  border-radius: 20px;
  width: auto;
  height: 150px;
  margin: 10px;
}

.carousel-bg {
  background: lightgrey;
}

.indexheader {
  text-align: left;
  height: 120px;
  padding-left: 0px;
  width: 100%;
  font-size: 36px;
  font-weight: bold;
}

.indexnavbar {
  background-color: #355C7D;
  text-align: center;
  height: 60px;
  margin: 0px;
  padding: 0px;
  width: 100%;

}

.indexnavbar ul {
  display: inline-flex;
  list-style: none;
  width: 100%;
  padding: 0px;


}

.indexnavbar ul li {
  width: 120%;
  margin: 7px;
  color: white;
  font-weight: 900;


}

.indexnavbar ul li a {
  text-decoration: none;
  color: white;
}

.activeh,
.indexnavbar ul li:hover {
  background: #456dad;
  border-radius: 8px;
  padding: 10px;
}


.Login {
  display: none;
  width: 10%;
  align-content: center;
  margin: 0 auto;
}

.Login ul {
  width: 80%;
  align-content: center;
}

.Login ul li {
  text-align: center;
  width: 100%;
}



.indexnavbar ul li:hover .Login {
  display: block;
  position: absolute;
  background-color: #355C7D;
  border-radius: 8px;
  width: auto;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

.indexnavbar ul li:hover .Login ul {
  display: block;
  margin: 10px;
}

/*scrolling notification*/
.marquee {
  width: 100%;
  background-color: whitesmoke;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee div {
  animation: animate 10s linear infinite;
  padding-left: 100%;
  width: 100%;
}

@keyframes animate {
  100% {
    transform: translate(-100%, 0);
  }
}

.placement-partners {
  font-size: 1.700em;
  font-weight: bold;
  text-align: center;
}

/*scrolling posters*/
.slider {

  margin: auto;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  /*padding-top: 50px;
  padding-bottom:30px;*/

}

.slide-track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll 10s linear infinite;

}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 4));
  }
}


.slide-images {
  height: 200px;
  width: auto;
  display: flex;
  /* align-items: center; */
  padding: 20px;
  /*padding-bottom: 10px;
  perspective: 100px;*/
  opacity: 1;
  transition: opacity 0.5s ease-in-out;

}

.slide-images.hidden {
  opacity: 0;
}

.mobile {
  display: none;
}


@media only screen and (max-width: 767px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .dropdown-menu {
    background: #456dad;
    box-shadow: none;
  }

  .nav-item {
    padding: 0;
  }

  .carousel-cell img {
    width: auto;
    height: 100px;
  }

}