/*** Updated HP ***/
.txt-white:hover {
    color: var(---color-white);
}
.hp-sect-video {
    position: relative;
    /* background: url("../img/home_page_slider.jpeg") no-repeat; */
    background-size: cover;
    min-height: 400px;
}
.border-blue {
    padding: 15px;
    height: 100%;
    position:relative;
    z-index: 2;
}
.border-blue:after {
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border:1px solid transparent;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.border-blue:hover:after {
    border:1px solid var(--blue);
}
.sect3-top {    
    background: url("../img/hp-sect3-bg.jpg") bottom left no-repeat;
    background-size: cover;
    padding-bottom:170px;
}
.sect3-top p {  
    font-size: 16px;
    line-height: 22px;
}
.sect3-bottom {
    margin-top: -160px;
    position: relative;
}
.sect3-bottom:before, .sect3-bottom:after {
    content:'';
    position: absolute;
    z-index: 3;
}
.sect3-bottom:before {
    background: url("../img/bg-boy.jpg") top left no-repeat;
    background-size: contain;
    top: -110px;
    left: -15px;
    width: 400px;
    height: 1097px;
}
.sect3-bottom:after {
    background: url(../img/bg-girl.jpg) bottom right no-repeat;
    background-size: contain;
    bottom: 0px;
    right: 0;    
    width: 350px;
    height: 841px;
}
.hp-sect3-box {
    position: relative;
    z-index: 5;
    margin-bottom: 30px;
    min-height: 400px;
}
.hp-sect3-box:after {
    content:'';
    position:absolute;
    top: 0;
    left:0;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
}
.hp-box1 {    
    background: url(../img/men.jpg) no-repeat;
    background-size: cover;
}
.hp-box2 {    
    background: url(../img/woman.jpg) no-repeat;
    background-size: cover;
}
.hp-box3 {    
    background: url(../img/Kids.jpg) no-repeat;
    background-size: cover;
}
.hp-box4 {    
    background: url(../img/home.jpg) no-repeat;
    background-size: cover;
}
.hp-box5 {    
    background: url(../img/Accesories.png) no-repeat;
    background-size: cover;
}
.hp-box6 {    
    background: url(../img/Bazaar.png) no-repeat;
    background-size: cover;
}
.hp-sect3-box-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index:5;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px solid var(---color-orange);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hp-sect3-box-link {
    position: relative;
}
.long-arrow-icon {
    position: absolute;
    top: 23px;
    right: 15px;
}
.hp-sect3-box-inner-content {    
    position: absolute;
    width: 100%;
    display: flex;
    top: 0;
    flex-direction: column;
    left: 0;
    right: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    height: 0;
    transition: 0.5s;
}
.hp-sect3-box:hover .hp-sect3-box-inner-content {
    opacity: 1;
    height: 100%;
}
.hp-sect3-box-inner h3 {
    opacity: 1;
    transition: all 0.5s;
}
.hp-sect3-box:hover .hp-sect3-box-inner h3 {
    opacity: 0;
    transition: all 0.5s;
}
.bg-pink {
    background-color: #fbf0db;
}
.slider-arrows .slick-arrow:focus {
    outline: none;
}
.down-arrow-container {
    position: absolute;
    bottom: 0;
    z-index: 1000;
    width: 100px;
    height: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 24px;
    color: #168a37;
}
.down-arrow {
    position: absolute;
    width: 2.1rem;
    height: 0.48rem;
    opacity: 0;
    transform: scale(0.3);
    -webkit-animation: move-chevron 3s ease-out infinite;
    animation: move-chevron 3s ease-out infinite;
  }
  
.down-arrow:first-child {
    -webkit-animation: move-chevron 3s ease-out 1s infinite;
    animation: move-chevron 3s ease-out 1s infinite;
}
  
.down-arrow:nth-child(2) {
    -webkit-animation: move-chevron 3s ease-out 2s infinite;
    animation: move-chevron 3s ease-out 2s infinite;
}
  
@-webkit-keyframes move-chevron {
    25% {
      opacity: 1;
    }
    33.3% {
      opacity: 1;
      transform: translateY(2.28rem);
    }
    66.6% {
      opacity: 1;
      transform: translateY(3.12rem);
    }
    100% {
      opacity: 0;
      transform: translateY(4.8rem) scale(0.5);
    }
}
  
@keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }
    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }
    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}

@media (max-width: 991px) {
    .sect3-bottom:before, .sect3-bottom:after {
        display: none;
    }
}