/* slider */
#Accordion {
  overflow: hidden;
  height: 400px;
  cursor: pointer;
}
@keyframes logoshrink {
  0% {
    width: 30vw;
    margin-left: -15vw;
  }
  100% {
    width: 20vw;
    margin-left: -10vw;
  }
}
@keyframes logoshrinkNormal {
  0% {
    width: 20vw;
    margin-left: -10vw;
  }
  100% {
    width: 30vw;
    margin-left: -15vw;
  }
}
#Accordion:hover #thelogo {
  animation-name: logoshrink;
  animation-duration: 1s;
  width: 20vw;
  margin-left: -10vw;
}
#Accordion:hover {}
@keyframes titlepositionhover {
  from {
    top: 75%;
  }
  to {
    top: 30%;
  }
}
@keyframes titlepositionhoverout {
  from {
    right: 46%;
  }
  to {
    right: 35%;
  }
}
@keyframes fadeinopacity {
  0% {
    opacity: 0
  }
  20% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@keyframes whitetogrey {
  0% {
    color: #fff;
  }
  100% {
    color: #555;
  }
}
@keyframes movetitleslowup {
  0% {
    bottom: 0%
  }
  100% {
    bottom: 65%
  }
}
@keyframes movetitleslowdown {
  0% {
    bottom: 65%
  }
  100% {
    bottom: 0%
  }
}
h1.vert {
  position: relative;
  margin-bottom: 45px;
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  text-transform: uppercase;
  color: #424242;
}
h1.item-title {
  transform-origin: top left;
  font-size: 1.8em;
  position: absolute;
  bottom: 0%;
  width: auto;
  text-align: left;
  left: 6%;
  color: #FFFFFF;
  text-transform: uppercase;
  min-width: 350px;
  animation-name: movetitleslowdown;
  animation-duration: 1s;
  margin-bottom: 34px;
  overflow: hidden;
  line-height: 0.8em;
}
h1.item-title span {
  display: table;
  clear: both;
  font-size: 1.5rem;
}
h1.item-title.first-h1 {}
.item-content h2 {
  font-size: 1.7em;
}
.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.gallery-wrap__slide .second-img {
  display: none;
}
.item-content ul {
  list-style: none;
    font-size: 1.3em;
    line-height: 1.3em;
}
.item-content a {
    color:#cb1f21;
}
@media (min-width: 992px) {
  .gallery-wrap__slide-image {
    display: inline-block;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
  }
  .gallery-wrap__slide .second-img {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    border-radius: 50%;
    transition: 0.5s;
    transform: translateY(100%);
  }
  .gallery-wrap__slide:hover .first-img {
    visibility: hidden;
  }
  .gallery-wrap__slide:hover .second-img {
    transform: translateY(0);
  }
}
.item-content {
  flex: 1;
  transition: background-color 0.5s ease;
  background-color: rgba(0, 0, 0, 0.1); /* gray tint */
  color: #EEEEEE;
  padding: 20px;
  height: 100%;
  max-width: 640px;   
    width: 100%;
     margin: 0 auto;
    
}
.item-content .item-title {
  font-weight: bold;
}
.item {
  flex: 1;
  height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
  position: relative;
  font-size: 0.8em;
  color: #fff;
  overflow: hidden;
  line-height: 1.3em;
  /*
  &:hover{
    flex: 7;
  }
  */
  /*
-webkit-transform: skew(-5deg);
-moz-transform: skew(-5deg);
-o-transform: skew(-5deg);
transform: skew(-5deg);  
*/
}
.item-content .item-description {
  display: none;
}
p.item-description {
  opacity: 1;
  margin: 0 110px;
  bottom: 20px;
  text-align: left;
}
p.item-description a {
  color: #fff;
  font-weight: bold;
}
.item:hover h1.item-title, .item.active-hover h1.item-title {
  bottom: 65%;
  animation-name: movetitleslowup;
  animation-duration: 1s;
}
.item:hover, .item.active-hover {
  flex: 7;
}
.item:hover .item-content, .item.active-hover .item-content {
  transition: background-color 0.5s ease;
  background-color: rgba(0, 0, 0, 0.4); /* dark tint */
  display: block;
  height: 100%;
  transition: flex 0.8s ease;
}
.item:hover .item-content .item-description, .item.active-hover .item-content .item-description {
  display: block;
  text-shadow: 2px 2px 4px #000000;
}
.item:hover .item-content .pdct-items, .item.active-hover .item-content .pdct-items {
  display: flex;
  animation-name: fadeinopacity;
  animation-duration: 2s;
}
.item:hover p.item-description, .item.active-hover p.item-description {
  animation-name: fadeinopacity;
  animation-duration: 2s;
}
.item.disactive-hover .item-title {
  color: #555;
  animation-name: whitetogrey;
  animation-duration: 2s;
}
@media (max-width: 992px) {
  .item {
    flex: 7;
  }
  .item h1.item-title {
    bottom: 65%;
    animation-name: unset;
  }
  .item .item-content {
    background-color: rgba(0, 0, 0, 0.4); /* dark tint */
    display: block;
    height: 100%;
  }
  .item .item-content .item-description {
    display: block;
    text-shadow: 2px 2px 4px #000000;
  }
  .item .item-content .pdct-items {
    display: flex;
  }
}
.item-1 {
  background-image: url('/assets/images/awareness.jpg');
}
.item-2 {
  background-image: url('/assets/images/analysis.jpg');
  border-right: thin solid #fff;
  border-left: thin solid #fff;
}
.item-3 {
  background-image: url('/assets/images/response.jpg');
}
div.item-content-hide {
  display: none;
}
/* slider end */
.t-clearall {
  background: none;
  padding: 0px;
  margin: 0px;
  float: none;
  background-image: none;
}
@media (max-width: 992px) {
  #Accordion {
    overflow: visible;
    height: auto;
  }
  .gallery-wrap {
    display: block;
  }
  h1.item-title {
    margin-bottom: 15px;
  }
  .item {
    height: 300px !important;
    width: 100% !important;
    float: none;
    flex: none;
  }
  p.item-description {
    margin-left: 50px;
    margin-top: 45px;
  }
}
@media (max-width: 769px) {
  .item-2 {
    border-top: thin solid #fff;
    border-bottom: thin solid #fff;
    border-right: none;
    border-left: none;
  }
    p.item-description {
    margin-top: 0px;
  }
    .item {
    height: 465px !important;
    } 
}