*, *::before, *::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    width: 100%;
    box-sizing: border-box;
    font-family: 'Lexend Deca', sans-serif;
    border: none;
    margin: 0 auto;
    max-width: 1280px;
    background-color: black;
}

.section {
    height: 55px;
    display: inline-flex; 
    width: 100%;
    margin:0;
    border: none;
    text-align: center;
    background: black;
}
#check, label, .category .aem-small{
    display: none;
    position: absolute;
}
.aem-big{
    display: none;
    position: absolute;
}
.logo{
    margin: 0;
    padding: 0;
    margin-top: 12px;
    margin-left: 30px;
    background: black;
}
.logo img{
    width:100px;
    height: 50px;
}

/*edit on category box as a whole*/
.category {
    z-index: 999;
    padding: 15px 10px; 
    margin-left: 20px;
    width: 100%;
}

/*edit on each specific boxes category unordered list form*/
ul {
    color: white;
    list-style: none;
    display: flex;
    width: 100%;
}
.category .service-cat{
    display: none;
    position: absolute;
}
.category .product-list img{
    display: none;
}
/*To put the catogery in the center - vertically [padding-top]
Extended the each catogery border [width]*/
.list1, .product-list{
    background-color:black;
    border: 1px solid black;
    border-radius: 10px;
    position: relative;
    float: left;
    width: 165px;
    height: 40px;
    padding: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.list1:hover, .product-list:hover{
    background-color: lightslategray;
    transition: background-color 0.2s linear;
}

/*Product *drop down menu* initiated here*/
/*to avoid overlapping of the drop menu and product box
~ put margin-top for drop menu box*/
ul.drop-menu-1 {
    flex-direction: column;
    margin-top:6%;
}
ul.drop-menu-2{
    display: none;
    position: absolute;
}
/*To centered the category [padding-top]*/
ul.drop-menu-1 li{
    padding-top: 9.5%;
    border: 1px solid black;
    border-radius: 5px;
    display: none;
    height: 50px;
    width: 100%;
    background-color: lightgray;
    color: black;
}

ul.drop-menu-1 li:hover{
    background-color: cyan;
    transition: background-color 0.2s ease-out;
}

/*edit on long categories[to center accordingly]*/
#pneu-category, #ind-category {
    padding-top: 3%;
}
/*give a 3D feel-no outcome displayed-affect on the drop down menu*/
li:hover>ul.drop-menu-1 {
    perspective: 1000px;
}
/*default hover*/
li:hover>ul.drop-menu-1 li{
    display: block;
    opacity: 0;
}
/*additional perk on same categories: animation*/
li:hover>ul.drop-menu-1 li:nth-child(1){
    animation: menu1 300ms ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: -100ms;
}

li:hover>ul.drop-menu-1 li:nth-child(2){
    animation: menu1 500ms ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: -50ms;
}

li:hover>ul.drop-menu-1 li:nth-child(3){
    animation: menu1 700ms ease-in-out;
    animation-fill-mode: forwards;
}

li:hover>ul.drop-menu-1 li:nth-child(4){
    animation: menu1 900ms ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 50ms;
}

@keyframes menu1{
    0%{
        opacity: 0;
        transform: rotateY(-90deg) translateY(30px);
    }
    100%{
        opacity: 1;
        transform: rotateY(0deg) translateY(0px);
    }
}

/*search box animation initiated*/
.content .search{
    margin-top: 0.9%;
    height: 37px;
    width: 250px;
    padding: 0px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}
.search .input{
    font-family: 'Lexend Deca', sans-serif;
    width: 75%;
    padding: 15px 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    color:rgb(36, 35, 35);
    font-size: 13.4px;
}
.searchbtn{
    background: black ;
    width: 20%;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}
.searchbtn img{
    position: absolute;
    transform: translate(-50%,-50%);
    height: 20px;
}
/*search button ends here*/

/*The banner (LAPA) starts here*/
.banner{
    text-align: center;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    height: 60px;
}
.banner svg{
    width:491px; 
    height:70px;
}
#aem-1{
    opacity: 0;
    animation: menu2 2s ease forwards;
}

@keyframes menu2{
    0%{
        opacity: 0;
        transform: rotateY(180deg) translateX(30px);
    }
    100%{
        opacity: 1;
        transform: rotateY(0deg) translateY(0px);
    }
}
#apeu path:nth-child(1),#apeu path:nth-child(3),#apeu path:nth-child(5),#apeu path:nth-child(7),#apeu path:nth-child(9),#apeu path:nth-child(11),#apeu path:nth-child(13),#apeu path:nth-child(15){
    stroke-dasharray: 200px;
    stroke-dashoffset: 200px;
    animation: line-anim 4s ease forwards;
}
#apeu path:nth-child(2),#apeu path:nth-child(4),#apeu path:nth-child(6),#apeu path:nth-child(8),#apeu path:nth-child(10),#apeu path:nth-child(12),#apeu path:nth-child(14){
    stroke-dasharray: 200px;
    stroke-dashoffset: 200px;
    animation: line-anim 5s ease forwards 1.5s;
}
@keyframes line-anim{
    to{
        stroke-dashoffset: 0;
    }
}
#apeu{
    animation: fill 5s ease forwards 2s;
}
@keyframes fill{
    to{
        fill: gold;
    }
}
/*The banner ends here*/

.overview {
    display: flex;
    width: 100%;
    height:80%;
    align-content: stretch;
    justify-content: flex-start;
    background-color: black;
}
.intro{
    font-size: 24px;
    letter-spacing: 4px;
    animation: text 3s 1;
    font-weight: 500;
    color: white;
}
#intro-2{
    display: none;
    position: absolute;
}
@keyframes text{
    0%{
        color: black;
        margin-right: -40px;
    }
    30%{
        letter-spacing: 20px;
        margin-right: -40px;
    }
    85%{
        letter-spacing: 4px;
        margin-right: -40px;
    }
}
.intro ul{
    font-family: 'Open Sans', sans-serif;
}

.intro ul li{
    text-indent: 10%s;
    margin: 0;
    display: inline;
}
#em{
    font-size: 18px;
}
#A,#em{
    font-family: 'Noticia Text', serif;
}

.overview .info {
    padding-left: 23px;
    margin: 0;
    width: 50%;
}

.info p{
    line-height: 16px;
    font-weight: 500;
    font-size: 15px;
    color: white;
    padding-top: 10px;
}

.info img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 1;
    height: 100%;
}

.container-info{
    position: relative;
    width: 100%;
    height: 200px;
    margin: 6px auto;
    
}
.container-info .box{
    position: relative;
    width: 195px;
    height: 175px;
    float: left;
    margin: 2px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 30px;
}

#two-boxes{
    width: 100%;
    position: absolute;
    margin-top: 30%;
    text-align: center;
    padding-left: 15%;
}

/*Abrasive SandPaper Small Box*/
.sand, .other, .woven, .tool, .item{
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color:white;
    transition: 0.5s ease-out;
    z-index: 1;
}

.container-info .box:hover .sand, .container-info .box:hover .other, .container-info .box:hover .woven, .container-info .box:hover .tool, .container-info .box:hover .item{
    top: -100%;
    border-radius: 50%;
}


.sand .sand-info, .other .other-info, .woven .woven-info, .tool .tool-info, .item .item-info{
    color: white;
    text-shadow: 1px 2px 1px red;
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    line-height: 22px;
}

.sand-content, .other-content,.tool-content, .woven-content, .item-content{
    display: inline-block;
    background: linear-gradient(-45deg, rgb(252, 157, 128),#e7fa7d, #ffa2c6, rgb(98, 245, 255));
    background-size: 400% 400%;
    animation: change 10s ease-in-out infinite;
    position: relative;
    height: 100%;
}

@keyframes change{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
}
.sand-category, .other-category, .woven-category,.tool-category,.item-category{
    position: relative;
    float: left;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    text-align: center;
}

.sand-category{
    margin-top: 90px;
    padding: 0px 20px;
    text-align: center;
}

.sand-intro h3, .other-intro h3, .woven-intro h3, .item-intro h3, .tool-intro h3{
    position: absolute;
    text-align: start;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    padding-left: 29px;
    padding-top: 15px;
    font-size: 12px;
}

.sand-category p , .other-category p, .woven-category p, .item-category p, .tool-category p{
    display: inline-flex;
    box-sizing: border-box;
    position: relative;
    font-size: 11px;
    color: black;
    font-weight: bold;
}
.sand-category p {
    margin: 3px;
}
/*Other Abrasive Small Box*/

.other-category {
    margin: 5px;
    margin-top: 75px;
    padding-left: 10px;
    padding-right: 20px;
    padding-top: 0px;
}

.other-category p {
    margin-top: 0px;
    height: 25px;
    padding: -5px 3px;
}

/*Non-Wove Small box*/
.woven-category{
    margin-top: 85px;
    margin-left: 0px;
    margin-right: 0px;
}

.woven-intro h3{
    padding: 15px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-top: 5px;
}

.woven-category p {
    height: 25px;
    padding: -10px 5px;
}

/*Pneumatic Tool Small Box*/
.tool-category{
    margin: 0px;
    margin-top: 67px;
}

.tool-intro h3{
    padding: 15px;
    padding-left: 20px;
    padding-top: 5px;
}

.tool-category p {
    margin: -1.5px -0.5px;
}

/*Industrial Item Small Box*/

.item-category{
    margin-top: 70px;
}

.item-intro h3{
    padding: 15px;
    padding-left: 20px;
    padding-top: 10px;
}

.item-category p {
    margin: -1.5px 0px;
}
.slider{
    color: white;
    overflow: hidden;
    margin-top: 2%;
}
#slider-1 img,#slider-2 img,#slider-3 img,#slider-4 img{
    height:427px;
    width:620px;
}

#slider-1,#slider-2,#slider-3,#slider-4 {
    position: absolute;
    overflow: hidden;
}
#slider-1{
    animation: slide1 12s ease-in-out infinite;
}
#slider-2{
    animation: slide2 12s ease-in-out infinite;
}
#slider-3{
    animation: slide3 12s ease-in-out infinite;
}
#slider-4{
    animation: slide4 12s ease-in-out infinite;
}

@keyframes slide1{
    0%{
        visibility: visible;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }
}
@keyframes slide2{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: visible;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: hidden;
    }
}
@keyframes slide3{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: visible;
    }
    100%{
        visibility: hidden;
    }
}
@keyframes slide4{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }
}
.office-deets{
    display: none;
    position: absolute;
}

.media-icons{
    display: none;
    position: absolute;
}
.footer-mobile{
    display: none;
    position: absolute;
}
.footer {
    width: 100%;
    text-align: center;
    margin: 0;
	margin-top: 10px;
    padding: 15px 0px;
    background-color: #2b2c33;
    color: white;
    bottom: 0;
    position: static;
}

.footer .icons-main{
    margin-bottom: 0px;
}
.footer .icons-main img{
    margin: 0px 12px;
    height: 50px;
}
.big-cat .icons-main{
    margin-left: 165px;
    margin-top:450px;
}
.big-cat .icons-main img{
    margin: 0px 15px;
    height: 35px;
}
#add-content{
    display: flex;
}
#add-content p{
    margin: 2px 20px;
}
#add-content .add-content-1{
    margin-left: 30%;
}

/*screen resolution*/


@media screen and (max-height: 550px){
    .footer{
        display: none;
    }
}

@media screen and (max-width: 1210px) {
    body{
        overflow: scroll;
        margin: 0 auto;
    }
    .aem-big{
        margin: 20px auto;
        display: block;
        position: relative;
    }
    .aem-big img{
        width: 700px;
    }
    .banner{
        display: none;
    }
    .logo{
        position: absolute;
    }
    #pic-logo{
        display: none;
    }
    label, .category .aem-small{
        display: block;
        position: absolute;
    }
    label #bar-btn, label #cancel{
        height: 80px;
        position: absolute;
        cursor: pointer;
        border-radius: 3px;
    }
    label #cancel{
        background: white;
    }
    label #bar-btn{
        background:red;
        border-radius: 10px;
        z-index: 1;
        left: 35px;
        top: 50px;
        padding: 6px 12px;
        position: fixed;
        transition: all 0.5s;
    }
    label #cancel{
        border-radius: 10px;
        z-index: 1111;
        left: -250px;
        top: 40px;
        padding: 15px 10px;
        position: fixed;
        opacity: 0;
        transition: all 0.5s ease;
    }
    #check{
        display: none;
    }
    #check:checked ~.category{
        left: 0;
    }
    #check:checked ~label #bar-btn{
        left: 250px;
        opacity: 0;
        pointer-events: none;
    }
    #check:checked ~label #cancel{
        opacity: 1;
        left: 85%;
    }
    .category .aem-small{
        margin-top: 50px;
        margin-left: 95px;
    }
    .category .aem-small img{
        width: 510px;
        border-radius: 10%;
    }
    .section{
        text-align: unset;
    }
    .section .category{
        overflow-y: auto;
        overflow-x: hidden;
        left: -1280px;
        position: fixed;
        background-color: rgb(2, 2, 49);
        margin: 0;
        height: 100vh;
        padding: 0;
        transition: all 0.5s ease;
        z-index: 1;
    }
    .category ul{
        position: relative;
        flex-direction: column;
        padding: 0;
        margin: 0;
        transition: 0.3s;
        transition-property: width;
    }
    .section .collapse .category{
        width: 0px;
    }
    
    .category .service-cat{
        display: block;
        position: relative;
    }
    .list1,.product-list{
        background-color: rgb(2, 2, 49);
        border-radius: 0%;
        font-size: 35px;
        width:100%;
        height: auto;
        padding: 30px 0px;
        padding-left: 100px;
        border-top: 2px solid rgba(200, 215, 255, 0.1);
        position: relative;
    }
    .category .service-cat img, .category .product-list img{
        border-radius: 50%;
        padding: 10px;
        background-color: white;
        height:41px;
        margin-left: 408px;
    }
    .category .service-cat img{
        margin-left: 424px;
    }
    .category .product-list img{
        position: relative;
        display: inline-block;
    }
    .category .product-list .plus{
        background-color: black;
        margin-left: 210px;
    }
    #fa-1{
        margin-left: 112px;
    }
    #fa-2{
        margin-left: 236px;
    }
    #fa-3{
        margin-left: 149px;
    }
    #fa-4{
        margin-left: 222px;
    }
    #fa-5{
        margin-left: 484px !important;
    }
    #drop-2, #sub-drop, #drop-3{
        position: relative !important;
        left: 0;
        top: 0;
        display: none;
    }
    #sub-drop{
        padding: 0px;
        margin-top: 30px;
        display: none;
    }
    #sub-drop li{
        height: auto;
        color: rgb(13, 19, 46) !important;
    }
    #drop-2, #drop-3{
        padding-top: 30px;
        padding-bottom: 0px;
        bottom: 0;
    }
    #drop-2 li, #drop-3 li{
        font-weight: bold;
        color: black;
        margin: 0;
        height: auto;
        padding: 30px 0px;
        margin-left: -100px;
        padding-left: 100px;
        transition: padding-left 0.5s ease-in-out;
    }
    #sub-drop{
        padding: 0px;
        margin-top: 30px;
        display: none;
        color: red !important;
    }
    #drop-2 li:hover, #drop-3 li:hover{
        color: rgb(56, 54, 54);
        padding-left: 120px;
    }
    .product-list:hover #drop-2{
        display: block;
    }
    .service-cat:hover #drop-3{
        display: block;
    }
    #coat:hover #sub-drop, #non-woven:hover #sub-drop, #other-abra:hover #sub-drop, #pneu-tool:hover #sub-drop,
    #ind-item:hover #sub-drop{
        display: block;
    }
    #sub-drop li:hover{
        color: rgb(13, 60, 107) !important;
    }
    .category .home-cat{
        margin-top: 270px !important;
    }
    #search-area{
        position: absolute;
    }
    #drop-1 {
        display: none;
        position: absolute;
    }
    
    .content .search{
        margin-left: 100px;
        margin-top: 175px;
        height: 70px;
        width: 550px;
    }
    .search .input{
        width: 82%;
        font-size: 35px;
    }
    .searchbtn {
        width: 15%;
    }
    .searchbtn img{
        height: 45px;
    }
    .overview .info{
        width: 100%;
        padding: 2% 3%;
        margin-top: 660px;
    }
    .overview .intro{
        font-size: 50px;
    }
    #em{
        font-size: 35px;
    }
    .overview p{
        font-size: 35px;
        line-height: 44px;
        width: 100%;
    }

    .overview .info .office-deets{
        position: relative;
        display: block;
        margin-top: 20px;
        font-size: 35px;
        color: white;
        padding-bottom: 0px;
    }
    .overview .info .office-deets .building{
        margin-left: 230px;
        height: 50px;
        width: 60px;
        margin-top: -5px;
    }
    .overview .info .office-deets h2{
        color: goldenrod;
        font-size: 38px;
    }
    .overview .info .office-deets p{
        margin-top: 10px;
    }
    .overview .info .office-deets .office-img{
        display: flex;
    }
    .overview .info .office-deets .office-img .img1{
        position: relative;
        margin-top: 15px;
        margin-left: 10px;
        height: 100px;
        width: 100px;
    }
    .overview .info .office-deets .office-img .img2{
        position: relative;
        margin-top: 25px;
        margin-left: 20px;
        width: 90px;
        height: 90px;
        border-radius: 20%;
    }
    .overview .info .office-deets .contact-deets{
        margin-top: 20px;
    }
    .overview .info .office-deets .contact-deets ul{
        display: flex;
        flex-direction: column;
    }
    .overview .info .office-deets .contact-deets .fas img{
        position: relative;
        margin-top: 10px;
        margin-bottom: -10px;
    }
    .overview .info .office-deets .contact-deets .fas{
        font-family: 'Lexend Deca', sans-serif;
        font-weight: normal;
        padding-top: 0px;
    }

    .overview .info .office-deets .contact-deets .phone-no img{
        height: 40px;
        width:50px;
    }
    .overview .info .office-deets .contact-deets .print img{
        height: 50px;
        width: 48px;
    }
    .overview .info .office-deets .contact-deets .mail{
        padding: 10px 0px;
    }
    .overview .info .office-deets .contact-deets .mail img{
        margin-bottom: -6px;
        height: 30px;
        width: 48px;
    }
    .overview .info .office-deets .contact-deets .globe-icon img{
        margin-bottom: -12px;
        margin-right: 10px;
        height: 48px;
        width: 48px;
    }
    .overview .info .office-deets .contact-deets .phone-no a{
        text-decoration: none;
        color:inherit;
    }
    .overview .info .office-deets .contact-deets .globe-icon a{
        text-decoration: none;
        color: white;
    }
    .overview .info .office-deets .working-hours .clock{
        margin-bottom: -10px;
        position: relative;
        height: 50px;
        width: 50px;
    }
    .overview .info .office-deets .working-hours{
        margin-top: 40px;
        color: orange;
    }
    .overview .info .office-deets .working-deets{
        margin-top: 15px;
    }
    .overview .info .office-deets .working-deets p{
        padding: 0px;
        margin: 0px;
    }
    .overview .info .office-deets .working-deets .weekday .dot{
        height: 25px;
        width: 25px;
        border-radius: 50%;
        display: inline-block;
        background-color: rgb(66, 255, 66);
        margin-right: 10px;
    }
    .overview .info .office-deets .working-deets .weekend .dot{
        margin-bottom: -5px;
        margin-right: 10px;
        height: 25px;
        width: 25px;
        border-radius: 50%;
        display: inline-block;
        background-color: red;
    }
	#qr-code{
        position: absolute;
        margin-top: 270px;
        margin-left: 600px;
        height: 250px;
        width: 250px;
    }
    .container-info{
       display: none;
       position: absolute;
    }
    .overview .slider{
        margin:0 auto;
        margin-top: 90px;
        position: absolute;
        overflow: visible;
    }
    #slider-1 img, #slider-2 img, #slider-3 img, #slider-4 img{
        width: 960px;
        height: 600px;
    }
    .icons-section{
        position: fixed;
        width: 100%;
        bottom: 0px;      
    }
	.big-cat{
		position:absolute;
	}
    #media-icons{
        background-color: rgb(3, 3, 39);
        width: 100%;
        color: white;
    }
    #media-icons ul{
        display: flex;
        justify-content: center;
    }
    #media-icons ul li label{
        padding: 25px 50px;
        position: relative;
        font-size: 90px;
    }
  
    #media-icons ul li label .fa{
        height: 80px;
        width: 80px;
    }

    .footer-mobile{
        margin-left: -25px;
        padding: 20px 260px;
        position: absolute;
        height: 180px;
        border-top: 3px solid rgb(255, 217, 0);
        background-color: rgb(196, 147, 25);
        font-size: 30px;
        display: block;
        text-align: center;
        color: white;
        margin-top: 40px;
        padding-bottom:280px;
    }
    .footer{
        display: none;
    }
}
@media screen and (min-width: 1360px){
    .section{
        height: 10%;
    }
    .banner{
        height: 10%;
    }
    .overview{
        height: 73%;
    }
}