.pack-8-essential .p-relative{
  position: relative;
}
.pack-8-essential .mb-40{
  margin-bottom: 51px;
}
.pack-8-essential .mb-15{
  margin-bottom: 15px;
}
.pack-8-essential .row{
  display: flex;
  flex-wrap: wrap;
}
.pack-8-essential .row .col{
  flex-basis: 37%;
}
.pack-8-essential .row .content-col-re{
  flex-basis: 63%;
}
.pack-8-essential .row .content-col-re{
  padding: 50px 50px 20px 0px;
}
.pack-8-essential .row .section-title h2{
  display: block;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.pack-8-essential .row .section-title p{
  font-weight: 400;
  line-height: 1.5;
}
.pack-8-essential .row .single-gallery{
  background: none;
  border: 1px solid rgba(93,100,106,.2);
  padding: 30px 30px 10px 30px;
  cursor: pointer;
}
.pack-8-essential .d-flex{
  display: flex;
}
.pack-8-essential .row .thumb-content{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.pack-8-essential .row .capt h6{
  margin-bottom: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.pack-8-essential .row .capt p{
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 13px;
}
.pack-8-essential .row .thumb-content a{
  background: transparent;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
}
.pack-8-essential .row .thumb-content a,
.pack-8-essential .row .capt p,
.pack-8-essential .row .capt h6,
.pack-8-essential .row .thumb-content,
.pack-8-essential .row .content-col-re,
.pack-8-essential .d-flex,
.pack-8-essential .row .thumb-content .capt,
.pack-8-essential .row .single-gallery{
  -webkit-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  -ms-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
}
.pack-8-essential .img-col .image-div{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 41%;
  overflow: hidden;
}
.pack-8-essential .img-col{
  height: 752px;
}
.pack-8-essential .img-col .image-div img{
  object-fit: cover;
  height: 100%;
  display: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}
@media all and (max-width: 1199px){
  .pack-8-essential .row .content-col-re{
    flex-basis: 80%;
    padding: 50px 20px 50px 0px;
  }
  .pack-8-essential .img-col .image-div{
    top: unset;
    left: 0;
    right: 0;
    height: 752px;
    width: 100%;
  }
}
@media all and (max-width: 767px){
  .pack-8-essential .row .content-col-re{
    flex-basis: 100%;
    padding: 50px 3px;
  }
  .pack-8-essential .img-col .image-div{
    height: 500px;
  }
  .pack-8-essential .img-col{
    height: 500px;
  }
}
/* xxxxxxxxxxxxxxxxxxxxxxxxxxxx Keyframes  xxxxxxxxxxxxxxxxxxxxxxxxxxxx */
@-webkit-keyframes fadeEffect {
  0% {
    opacity: 0;
    transform: translateX(-100%)
  }
  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes fadeEffect {
   0% {
    opacity: 0;
    transform: translateX(-100%)
  }
  100% {
    opacity: 1;
    transform: translateX(0)
  }
}