.container{
  position: relative;
  width: 100%;
  height: 600px;
  background-color: rgba(0,0,0,0.7);
 
}
.post-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.post {
  width: 500px;
  margin: 20px;
  border: 1px solid #FEDABB;
  border-radius: 8px;
  background-color: #FEDABB;
  box-shadow: #505050;
}


@media(max-width: 994px)
{ 
  .content .des
  {
   display: none;
  }
  .item .content
  {
    position: relative;
    top: 50%;
    left: 10px;
    font-size: 30px;
    text-align: left;
    color: #eee;
    display: none;
    padding: 15px;
    background-color: rgba(0,0,0,0.7);
  }
  
  .container
  {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: rgba(0,0,0,0.7);
  }
  .content .name
  {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
  }
  .overview-image-1
{
  width: 100%; 
  margin: 0; 
  padding: 0; 
  height: auto;
}
.overview-image-2
{
  width: 100%; 
  margin: 0; 
  padding: 0; 
  height: auto;
}
#overview
{
  background-color: #551014; 
  color: #FEDABB; 
  text-align: center; 
  padding: 20px; 
  border-radius: 20px 20px 20px 20px;
}
}

.container .slide .item{
  width: 200px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 10px 10px #505050;
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  transition: 0.2s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.slide .item:nth-child(3){
  left: 50%;
}
.slide .item:nth-child(4){
  left: calc(50% + 220px);
}
.slide .item:nth-child(5){
  left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
  left: calc(50% + 660px);
  opacity: 0;
}

@media(min-width: 994px)
{
  .item .content
  {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
   
    font-family: system-ui;
    display: none;
    padding: 15px;
    background-color: rgba(0,0,0,0.7);
  }
  .content .name
  {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
  }
  .overview-image-1
{
  width: 100%; 
  margin: 0; 
  padding: 0; 
  height: auto;
}
.overview-image-2
{
  width: 85%; 
  margin: 0; 
  padding: 0; 
  height: auto;
}
#overview
{
  background-color: #551014; 
  color: #FEDABB; 
  text-align: center; 
  padding: 20px; 
  border-radius: 20px 0 0 20px;
}
}




.slide .item:nth-child(2) .content
{
  display: block;
}




.content .des
{
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button
{
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate 
{
  from{
      opacity: 0;
      transform: translate(0, 100px);
      filter: blur(33px);
  }

  to{
      opacity: 1;
      transform: translate(0);
      filter: blur(0);
  }
}



.button
{
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  bottom: 20px;
}

.button button
{
  padding: 10px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  color: white;
  border: 1px solid white;
  transition: 0.3s;
  background: #551014;
}

.button button:hover
{
  background: #551014;
  color: #fff;
  color: #FEDABB;
  border: 1px solid #FEDABB;
}

@keyframes slide-1
{
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.logos-1 
{
  overflow: hidden;
  background: #551014;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}

.logos-1:before,
.logos-1:after 
{
  position: absolute;
  top: 0;
  width: auto;
  height: 200px;
  content: "";
  z-index: 2;
}

.logos-1:before 
{
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos-1:after 
{
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-1:hover .logos-slide-1 
{
  animation-play-state: paused;
}

.logos-slide-1 
{
  display: inline-block;
  animation: 78s slide-1 infinite linear;
}

.logos-slide-1 img 
{
  height: 150px;
  margin: 0 10px;
}
.logos-slide-1 img:hover 
{
  filter: grayscale(0);
  border: 1px solid white;
}
@keyframes slide-2
{
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos-2
{
  overflow: hidden;
  background: #551014;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
  margin: 0;
}

.logos-2:before,
.logos-2:after 
{
  position: absolute;
  top: 0;
  width: auto;
  height: 200px;
  content: "";
  z-index: 2;
}

.logos-2:before 
{
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos-2:after 
{
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-2:hover .logos-slide-2 
{
  animation-play-state: paused;
}

.logos-slide-2 
{
  display: inline-block;
  animation: 100s slide-2 infinite linear;
}

.logos-slide-2 img 
{
  height: 150px;
  margin: 0 10px;
}
.logos-slide-2 img:hover 
{
  filter: grayscale(0);
  border: 1px solid white;
}
@keyframes slide-3
{
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.logos-3
{
  overflow: hidden;
  background: #551014;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}

.logos-3:before,
.logos-3:after 
{
  position: absolute;
  top: 0;
  width: auto;
  height: 200px;
  content: "";
  z-index: 2;
}

.logos-3:before 
{
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos-3:after 
{
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-3:hover .logos-slide-3
{
  animation-play-state: paused;
}

.logos-slide-3
{
  display: inline-block;
  animation: 28.5s slide-3 infinite linear;
}

.logos-slide-3 img 
{
  height: 150px;
  margin: 0 10px;
}
.logos-slide-3 img:hover 
{
  filter: grayscale(0);
  border: 1px solid white;
}

@keyframes slide-4
{
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos-4
{
  overflow: hidden;
  background: #551014;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
  margin: 0;
}

.logos-4:before,
.logos-4:after 
{
  position: absolute;
  top: 0;
  width: auto;
  height: 200px;
  content: "";
  z-index: 2;
}

.logos-4:before 
{
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos-4:after 
{
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-4:hover .logos-slide-4 
{
  animation-play-state: paused;
}

.logos-slide-4 
{
  display: inline-block;
  animation: 19.5s slide-4 infinite linear;
}

.logos-slide-4 img 
{
  height: 150px;
  margin: 0 10px;
}
.logos-slide-4 img:hover 
{
  filter: grayscale(0);
  border: 1px solid white;
}
@keyframes slide-5
{
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.logos-5
{
  overflow: hidden;
  background: #551014;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}

.logos-5:before,
.logos-5:after 
{
  position: absolute;
  top: 0;
  width: auto;
  height: 200px;
  content: "";
  z-index: 2;
}

.logos-5:before 
{
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos-5:after 
{
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-5:hover .logos-slide-5
{
  animation-play-state: paused;
}

.logos-slide-5
{
  display: inline-block;
  animation: 12s slide-5 infinite linear;
}

.logos-slide-5 img 
{
  height: 150px;
  margin: 0 10px;
}
.logos-slide-5 img:hover 
{
  filter: grayscale(0);
  border: 1px solid white;
}

@keyframes slide-6
{
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos-6
{
  overflow: hidden;
  background: #551014;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
  margin: 0;
}

.logos-6:before,
.logos-6:after 
{
  position: absolute;
  top: 0;
  width: auto;
  height: 200px;
  content: "";
  z-index: 2;
}

.logos-6:before 
{
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos-6:after 
{
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-6:hover .logos-slide-6 
{
  animation-play-state: paused;
}

.logos-slide-6 
{
  display: inline-block;
  animation: 12s slide-6 infinite linear;
}

.logos-slide-6 img 
{
  height: 150px;
  margin: 0 10px;
}
.logos-slide-6 img:hover 
{
  filter: grayscale(0);
  border: 1px solid white;
}










.box {
  position: relative;
  width: 100%;
  margin: 15px 0;
}

.image 
{
  display: block;
  width: 100%;
  height: auto;
}

.overlay 
{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(94, 12, 26, 0.8);
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.box:hover .overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.text 
{
  color: white;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}







.card{
  border-radius: 25px;
  background-color: #FFF;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay-1{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #4070F4;
  border-radius: 25px 25px 0 25px;
}
.overlay-1::before,
.overlay-1::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4070F4;
}
.overlay-1::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4070F4;
}
.name-1{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button-1{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #4070F4;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button-1:hover{
  background: #265DF2;
}

#accordion
{
  width: 100%;
}
.card
{
  background-color: #551014;
  color: #FEDABB;
  box-shadow: transparent;
  border: transparent;
  margin: 10px 0;
}
.card-header a
{
color: #FEDABB;
width: 100%;
border-radius: 0;
text-align: center;
text-decoration: none !important;
border-bottom: 1px solid #FEDABB;
padding: 10px 20px 10px 20px;
animation-duration: .2s;
font-weight: 600;
}
.card-header a:hover  i.fa-solid.fa-chevron-down
{
  transform: rotate(-90deg);
}
.card-header a:focus  i.fa-solid.fa-chevron-down
{
  transform: rotate(-180deg);
}


















