/*Hero Section CSS Starts*/
body{
background-color: #f3eeeb;
font-family: "Times New Roman", Times, serif;
text-align: justify;
}
body a{
font-size: 17px!important;
color: #000000!important;
}
span{
font-size: 17px!important;
color: #000000!important;
}
p{
font-size: 18px!important;
color: #000000!important;
}
a:hover{
text-decoration: underline;
}
.button{background-color: #114fadee;}
.accordion-button:focus {
box-shadow: 0 0 10px 0rem rgb(26 155 204)!important;
}
.accordion-item {
background-color: transparent;
border: 2px solid #189dcd;
}
.navbar-nav .nav-link {
font-size: 20px!important;
}
/*.navbar-nav .nav-link:hover {
border: 1px solid #000000;
text-decoration: none;
padding: 6px;
transition-duration: 1.6s;
}*/
.card-body-img{
overflow: hidden;
}
.card-body-img img:hover
{
box-shadow: 0px 0px 150px #000000;
z-index: 2;
-webkit-transition: all 200ms ease-in;
-webkit-transform: scale(1.5);
-ms-transition: all 200ms ease-in;
-ms-transform: scale(1.5);
-moz-transition: all 200ms ease-in;
-moz-transform: scale(1.5);
transition: all 200ms ease-in;
transform: scale(1.5);
}
.core-card:hover{
box-shadow: 4px 4px 4px grey;
transition: 0.1s;
}
.animate__animated.animate__bounceInLeft {
  --animate-duration: 4s;
}
.animate__animated.animate__bounceInRight {
  --animate-duration: 4s;
}
/*#container {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  /*background: teal;*/
 /* display: grid ;
  place-items: center*/
/*}*/
#slider-container {
  height: 300px;
  /*width: 85vw;*/
  /*max-width: 1400px;*/
  /*background: #54d5e4;*/
  /*box-shadow: 5px 5px 8px gray inset;*/
  position: relative;
  overflow: hidden;
  padding: 20px;
}

#slider-container .btn {
  position: absolute;
  top: calc(50% - 30px);
  height: 15px;
  width: 15px;
  border-left: 2px solid #000000;
  border-top: 2px solid #000000;
  padding: 12px!important;
}

#slider-container .btn:hover {
  transform: scale(1.2);
}

#slider-container .btn.inactive {
  border-color: rgb(153, 121, 126)
}

#slider-container .btn:first-of-type {
  transform: rotate(-45deg);
  left: 10px
}

#slider-container .btn:last-of-type {
  transform: rotate(135deg);
  right: 10px;
}

#slider-container #slider {
  display: flex;
  width: 1000%;
  height: 100%; 
  transition: all .5s;
}

#slider-container #slider .slide {
  height: 90%;
  margin: auto 10px;
  background-color: #ffffff;
  box-shadow: 2px 2px 4px 2px white, -2px -2px 4px 2px white;
  display: grid;
  place-items: center;
}

#slider-container #slider .slide span {
  color: white;
  font-size: 150px;
}

@media only screen and (min-width: 1100px) {

  #slider-container #slider .slide {
    width: calc(2.5% - 20px);
  }

}

@media only screen and (max-width: 1100px) {

  #slider-container #slider .slide {
    width: calc(3.3333333% - 20px);
  }

}

@media only screen and (max-width: 900px) {

  #slider-container #slider .slide {
    width: calc(5% - 20px);
  }

}

@media only screen and (max-width: 550px) {

  #slider-container #slider .slide {
    width: calc(10% - 20px);
  }

}

