*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Druk Wide";
   
}
body{
    background-color: black;
    
}
#img1{
    position: fixed;
    z-index: -1;
    bottom: 0px;
    width: 100%;
    
    background-color: black;
}
@font-face {
    font-family: 'Druk Wide';
    src: url('DrukWide-Bold.woff2') format('woff2'),
        url('DrukWide-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
    nav{
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 20px 8%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
nav .logo{
	width: 160px;
}
nav ul li{
	list-style: none;
	display: inline-block;
	margin-left: 40px;
}
nav ul li a{
	text-decoration: none;
	color: #fff;
	font-size: 17px;
    transition: 0.5s;
}    
nav ul li a:hover{
    -webkit-text-stroke: 2px #ff9900;
    color: transparent;
    }
    .about{
        font-size: 10px;
        color: #fff;
        font-weight: 1;
        margin-top: 100px;
        padding: 78px 0px;
        width: 100%;
    }
 
    .about-text{
        width: 1000px;
    }
    .main{
        width: 1400px;
        max-width: 95%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .about-text h1{
        color: #fff;
        font-size: 80px;
        text-transform: capitalize;
        margin-bottom: 20px;
        letter-spacing: 2px;
        transition: 0.5s;
}
.about-text h1:hover{
    -webkit-text-stroke: 2px #ff9900;
    color: transparent;
    }
    .about-text h5{
        color: #fff;
        font-size: 25px;
        text-transform: capitalize;
        margin-bottom: 25px;
        letter-spacing: 2px;
    }
    p1{
        font-size: 16px;
        color: #fff;
        font-weight: 600;
        text-align: left;
        margin-left: 50px;
    }
    p{
        font-size: 15px;
        color: #fff;
        font-weight: 600;
        text-align: center;
        padding: 0px 50px;
    }
    span{
        color:#ff9900;
    }
    .about-text p{
        color:#fff;
        letter-spacing: 1px;
        line-height: 28px;
        font-size: 15px;
        margin-left: -1000px;
    }
    button{
        background: #ff9900;
        color: #fff;
        text-decoration: none;
        border: 2px solid transparent;
        font-weight: bold;
        padding: 13px 30px;
        border-radius: 30px;
        transform: 0.4s;
        margin-left: 0;
        margin-top: 20px;
    }
    button:hover{
        background: transparent;
        border: 2px solid;
        cursor: pointer;
    }
    a{
        color: #fff;
        text-decoration: none;
        background-color:transparent;
    }
    .back{
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    .back-video{
        width: 300px;
        z-index: -1;
        display: flex;
        flex-wrap: wrap;
        
    }
    .loader_bg{
        position: fixed;
        z-index: 999999;
        background: black;
        width: 100%;
        height: 100%;
    }
    .loader{
        border: 0 solid transparent;
        border-radius: 50%;
        width: 150px;
        height: 150px;
        position: absolute;
        top: calc(50vh - 75px);
        left: calc(50vw - 75px);
    }
    .loader::before, .loader:after{
        content: '';
        border: 1em solid #ff9900;
        border-radius: 50%;
        width: inherit;
        height: inherit;
        position: absolute;
        top: 0;
        left: 0;
        animation: loader 2s linear infinite;
        opacity: 0;
    }
    .loader:before{
        animation-delay: 0.5s;
    }
    @keyframes loader{
        0%{
            transform: scale(0);
            opacity: 0;
        }
        50%{
            opacity: 1;
        }
        100%{
            transform: scale(1);
            opacity: 0;
        }
    }
    @media screen and (max-width: 430px) {
        .hero {
            max-width: 430px;
        }
    }
    @media screen and (max-width: 475px) {
        .hero {
            max-width: 475px;
        }
        body{
            overflow-x: hidden;
            background: url(Images/2004.jpg) no-repeat center center fixed;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
                  background-position-x: 0px;
        }
        .back-video {
            width: 0%;
        }
        .about-text h1{
            font-size: 45px;
        }
        .about-text{
            display: flexbox;
            width: 100vh;
        }
        .p1 p1{
            margin-top: 0px;
        }
        .p3 p{
            font-size: 13px;
            margin-bottom: 30px;
            width: 400px;
        }
        nav{
            display:flex;
            width: 450px;
            left: -25px;
        }
        nav ul li a{
            font-size: 15px;
        }
        p{
            padding: 10px;
        }
        }
        @media (max-width: 640px) {
            .hero {
                max-width: 640px;
            }
        }
        @media (max-width: 768px) {
            .hero {
                max-width: 768px;
            }
        }
        @media (max-width: 1024px) {
            .hero {
                max-width: 1024px;
            }
        }
        @media (max-width: 1280px) {
            .hero {
                max-width: 1280px;
            }
        }
        @media (max-width: 1536px) {
            .hero {
                max-width: 1536px;
            }
        }