

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}
@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/poppins/Poppins-Medium.ttf');
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/poppins/Poppins-Regular.ttf');
}
@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/poppins/Poppins-SemiBold.ttf');
}


.overall-bg {
    background: url(../images/landing/overall-bg.jpg);
    min-height: 100vh;
    background-size: 100% 100%;
    padding-bottom: 3%;
}

/************* HEADER SECTION */
header {
    padding: 2% 2%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
header .logo img {
    width: 135px;
}
header .menu-list {
    margin-left: auto;
    margin-right: 4%;
    margin-top: 7px;
}
header .menu-list img {
    width: 17px;
}

/************* CATEGORY SECTION */
.category-section {
    width: 95%;
    margin: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}
.category-list {
    width: 10%;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.41);
    margin-left: .5%;
    margin-right: .5%;
    height: 301px;
    overflow: hidden;
}
.category-list .list__inner {
    height: 301px;
}
.category-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.category-list .name {
    background: linear-gradient(90deg, #000000 0%, rgba(9, 5, 5, 0.74) 68.71%, rgba(255, 0, 0, 0) 127.02%);
    height: 22px;
    width: 100%;
    font-family: 'Poppins-Regular';
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    position: absolute;
    bottom: 0px;
    letter-spacing: 0.02em;
    padding-left: 7px;
}

.category-list:nth-child(1), .category-list:nth-child(9) {
    margin-top: 8%;
}
.category-list:nth-child(2), .category-list:nth-child(8) {
    margin-top: 5%;
}
.category-list:nth-child(3), .category-list:nth-child(7) {
    margin-top: 1%;
}
.category-list:nth-child(4), .category-list:nth-child(6) {
    margin-top: -3%;
}
.category-list:nth-child(5) {
    margin-top: -7%;
}
.animatable {
    /* initially hide animatable objects */
    visibility: hidden;
    
    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;   
    -moz-animation-play-state: paused;     
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;   
    animation-play-state: paused; 
}
.category-list .list__inner:before {
	position: absolute;
	top: 0;
	left: -100%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.2) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.2) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);

    -webkit-animation: shine 1.75s;
	animation: shine 1.75s;
}
.category-list:nth-child(1) .list__inner:before {
	animation-delay: 1.4s;
}
.category-list:nth-child(2) .list__inner:before {
	animation-delay: 2s;
}
.category-list:nth-child(3) .list__inner:before {
	animation-delay: 2.6s;
}
.category-list:nth-child(4) .list__inner:before {
	animation-delay: 3.2s;
}
.category-list:nth-child(5) .list__inner:before {
	animation-delay: 3.8s;
}
.category-list:nth-child(6) .list__inner:before {
	animation-delay: 4.4s;
}
.category-list:nth-child(7) .list__inner:before {
	animation-delay: 5s;
}
.category-list:nth-child(8) .list__inner:before {
	animation-delay: 5.6s;
}
.category-list:nth-child(9) .list__inner:before {
	animation-delay: 6.2s;
}

.category-list:nth-child(1) {
    animation-delay: 1.3s; animation-duration: 1.5s;
}
.category-list:nth-child(2) {
    animation-delay: .9s; animation-duration: 1.5s;
}
.category-list:nth-child(3) {
    animation-delay: .7s; animation-duration: 1.5s;
}
.category-list:nth-child(4) {
    animation-delay: .5s; animation-duration: 1.5s;
}
.category-list:nth-child(5) {
    animation-delay: .3s; animation-duration: 1.5s;
}
.category-list:nth-child(6) {
    animation-delay: .5s; animation-duration: 1.5s;
}
.category-list:nth-child(7) {
    animation-delay: .7s; animation-duration: 1.5s;
}
.category-list:nth-child(8) {
    animation-delay: .9s; animation-duration: 1.5s;
}
.category-list:nth-child(9) {
    animation-delay: 1.3s; animation-duration: 1.5s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}



/************ DETAILS SECTION */
.details-section {
    width: 60%;
    margin: auto;
}
.line {
    position: relative;height: 19px;
}
.line img {
    width: 60px;
    margin: auto auto auto;
    display: block;
    position: relative;
    top: -30px;
    background: linear-gradient(#8a1818, #92191a);
    z-index: 1;
    padding: 6px;
}
.line:after {
    content: '';
    width: 100%;
    height: 1px;
    border-top: 1px dashed #fff;
    position: absolute;
    top: 0;
}
.details-lft {
    width: 41%;
}
.details-lft h4 {
    letter-spacing: 0.02em;
    color: #FFFFFF;
    font-size: 26px;
    font-family: 'Poppins-Medium';
    line-height: 36px;
}
.details-btn {  
    background: #FFF38B;
    border-radius: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #000000 !important;
    font-size: 14px;
    text-decoration: none !important;
    font-family: 'Poppins-Medium';
    padding: 4px 16px;
    position: relative;
    top: 10%;
}  
.details-lft:nth-child(2) {
    margin-left: auto;
    width: 36%;
}
.details-section .btm-line {
    border-bottom: 1px dashed #fff;
    width: 100%;
    height: 10px;
    margin-top: 3%;
}
.details-section .detail-cnt {
    padding: 0px 1%;
}

@media (max-width:768px) {
     .category-list {
        width: 48%;
        margin-top: 3% !important;
    }
    .category-list .name {
        height: 35px;
        line-height: 35px;
    }

    .category-list img {
    
    object-position: top;
}
}


@media (max-width: 600px) {
    header .logo img {
        width: 80px;
    }
    header .menu-list {
        margin-left: auto;
        margin-right: 12%;
        margin-top: 14px;
    }
   
    .details-section {
        width: 95%;
        margin: 15% auto auto;
    }
    .details-lft h4 {
        font-size: 15px;
        line-height: 25px;
    }
    .details-btn {
        font-size: 11px !important;
        padding: 4px 7px;
        letter-spacing: 0.1em;
    }
    .details-lft {
        width: 45% !important;
    }
    .line img {
        background: linear-gradient(#961818, #9b1617);
        width: 47px;
        top: -26px;
    }
    .details-section .btm-line {
        margin-top: 7%;
    }
    .category-list:nth-child(1) {
        animation-delay: .3s; animation-duration: 1.5s;
    }
    .category-list:nth-child(2) {
        animation-delay: .5s; animation-duration: 1.5s;
    }
    .category-list:nth-child(3) {
        animation-delay: .7s; animation-duration: 1.5s;
    }
    .category-list:nth-child(4) {
        animation-delay: .9s; animation-duration: 1.5s;
    }
    .category-list:nth-child(5) {
        animation-delay: 1.2s; animation-duration: 1.5s;
    }
    .category-list:nth-child(6) {
        animation-delay: 1.5s; animation-duration: 1.5s;
    }
    .category-list:nth-child(7) {
        animation-delay: 1.8s; animation-duration: 1.5s;
    }
    .category-list:nth-child(8) {
        animation-delay: 2.1s; animation-duration: 1.5s;
    }
    .category-list:nth-child(9) {
        animation-delay: 2.4s; animation-duration: 1.5s;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) {
    .category-list .name {
        font-size: 9px;
        line-height: 23px;
        padding-left: 3px;
    }
    .category-section {
        width: 98%;
    }
    .details-section {
        width: 80%;
        margin: 5% auto auto;
    }
    .details-lft h4 {
        font-size: 18px;
        line-height: 30px;
    }
    .details-btn {
        font-size: 13px;
        padding: 4px 12px;
    }
    .line img {
        background: linear-gradient(#7b1b1c, #7f1a1a);
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .category-list .name {
        font-size: 11px;
        line-height: 23px;
    }
    .category-section {
        width: 98%;
    }
    .details-section {
        width: 80%;
        margin: 5% auto auto;
    }
}
@media screen and (min-width: 1199px) and (max-width: 1365px) {
    .details-lft:nth-child(2) {
        width: 40%;
    }
}


