*{
	margin: 0;
	position: 0;
	padding: 0;
	border: 0;
	outline: 0; 
	box-sizing: border-box;
	text-decoration: none;
} 

body{
	font-family: 'Poppins', sans-serif;
    text-align: center;

}




.container{
	width: 80%;
	margin: 0 auto;
}


.logoo-img{
    margin: auto;
    width: 25%;
}

.logoo1-img{
    margin: auto;
    width: 10%;
}

.section-data{
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}

.section-titles{
    margin-top: 6rem;
    font-size: 28px;
    letter-spacing: 1.5px;
}

.section-titles h1{
    margin-bottom: 1rem;
}



.grid{
    display: grid;
    gap: 1.5rem;

}


.header{
	min-height: 55vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.5),rgba(4, 9, 30, 0.5)),url(image/g3.webp);
	background-position: center;
	background-size: cover;
	position: relative;
}

.center-text{
	width: 90%;
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
    letter-spacing: 0.3rem;
	transform: translate(-50%,-50%);
	text-align: center;
}

.center-text h1{
    font-weight: 250;
	font-size: 28px;
}




/*------- Navbar Begin -----*/

nav{
    z-index: 999;
    position: sticky;
    top: 0;
    display: flex;
    left: 0;
    width: 100%;
    background-color: rgb(26, 23, 23);
    justify-content: space-between;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    padding: 10px 80px 0 0;
    transition: 0.3s;
}

nav .logo{
    height: 30px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0rem;
    cursor: pointer;
}


.brand1{
    padding-right: 6rem;
    padding-bottom: 2.5rem;
}

.brand1 .logoo1-img{
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-top: 0.2rem;
}

.nav-vertical{
	position: absolute;
	display: none;
	list-style: none;
	width: 190px;
    height: 120px;
    background-color: rgba(26, 23, 23, 0.897);
    transition: 0.3s;
}

#navlinks li:hover .nav-vertical{
	display: block;
    transition: 0.3s;
}

.nav-container .nav-vertical li a{
	display: block;
	color: white;
	padding: 0.5rem 0 0.5rem 0;
	text-decoration: none;
    text-align: left;
    letter-spacing: 1px;
	height: 0px;;
    transition: 0.3s;
}

.nav-container .nav-vertical li a:hover{
	color: rgb(93, 95, 212);
    transition: 0.3s;
}

.nav-container li{
    padding-top: 1rem;

}


nav .nav-container .nav-vertical li a{
	margin: 18px 15px;
}

nav ul{
    display: flex;
    list-style: none;
    margin: auto 0;
}

nav ul li{
    margin: 0 2px;
}

.nav-container .fa-angle-down{
    margin-left: 0.5rem;
}

nav ul li a{
    color: rgba(255, 254, 251, 0.952);
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 30px;
    transition: 0.3s;
}

nav ul li:hover a{
    color: rgb(93, 95, 212);
    transition: 0.3s;
}

.nav-container ul li .active{
	color: rgb(93, 95, 212);
	transition: 0.1s;
}

.nav-container .nav-vertical ul li .active{
	color: rgb(93, 95, 212);
	transition: 0.1s;
}

nav .menubar{
    position: relative;
    margin: auto;
    display: none;
}

nav .menubar i{
    position: absolute;
    color: white;
    font-size: 35px;
}
input[type="checkbox"]{
    --webkit-appearance: none;
    display: none;
}


/*------- Navbar Section End  -----*/



/*----- New Section  Called Footer ----*/

.footer{
	text-align:center ;
	padding-top: 20px;
	min-height: 55vh;
	background:rgb(26, 23, 23);
	background-position: center;
	background-size: cover;
	position: relative;
}

.footer-container{
    margin-top: 60px;
	width: 80%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.footer ul li a{
	color: white;
}

.footer ul li{
	margin-bottom: 0.3rem;
	list-style: none;
	color: white;
}
.footer ul li a:hover{
	text-decoration: underline;
}


.footer h4{
	color: rgb(93, 95, 212);
	margin-bottom: 25px;
	margin-top: 20px;
	font-weight: 600;
    text-transform: uppercase;
}
.footer-3 p{
	color: white;
    font-size: 15px;
}

.footer ul li{
    font-size: 15px;
}


.footer input, textarea{
    width: 90%;
    padding: 15px 12px;
    margin-bottom: 10px;
    background: rgb(255, 251, 251);
    color: rgb(10, 10, 10);
}

.tnk_msg{
    color: rgb(14, 168, 14);
    margin-top: 10px;
    display: block;
}

.logo2{
    padding-top: 1.3rem;
    height: 40px;
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 254, 251, 0.952);
    cursor: pointer;
}

.brand h5{
    padding: 0.4rem 0 1rem 0;
    font-size: 11px;
    font-weight: 400;
    color: white;
}

.brand p{
    margin-top: 5rem;
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
    color: white;
}

.btn1{
	display: inline-block;
	text-decoration: none;
	color: white;
	padding: 10px 30px;
	font-size: 10px;
	background: rgb(93, 95, 212);
	position: relative;
	cursor: pointer;
} 

.btn1:hover {
	border: 1px rgba(3, 144, 252,0.9);
	background: transparent;
	border: 1px solid white;
	transition: 0.5s;
}

.copy{
    background: rgb(8, 8, 8);
    width: 100%;
    height: 65px;
}

.copyright{
    width: 78%;
    display: flex;
	text-align: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 140px 0 0 140px;
    padding: 0 0 0 40px;
}


.copyright p{
    color: white;
	font-size: 14px;
    line-height: 2;
}

.copyright i{
    line-height: 1.2;
}

 .icons .fa{
	color: rgb(247, 249, 252);
	margin:0 8px;
	cursor: pointer;
}

.icons .fa:hover{
    color: white;
    transition: color 0.2s;
    text-decoration: none;
}



@media(max-width: 1024px){

    .header{
        min-height: 60vh;
    }


    nav{
        position: relative;
        display: block;
        padding: 0;
        text-align: left;
        z-index: 999999;
        transition: all 0.1s ease
    }

    nav .logo{
        font-size: 36px;
        height: 100px;
        display: inline-block;
        padding-top: 0.6rem;
        margin-bottom: -2rem;
    }

    .brand1 h5{
        margin-left: 75px;
        padding-top: 1px;
        margin-top: -1rem;
        padding-bottom: 0.3rem;
        font-size: 14px;
        font-weight: 400;
    }

    .brand1{
        padding-left: 3rem;
        padding-bottom: 0.5rem;
    }

    .brand1 .logoo1-img{
        padding-right: 0.5rem;
        padding-bottom: 0.5rem;
        padding-top: 0.5rem;
    }

    nav ul{
        display: flex;
        flex-direction: column;
        background: white;
        height: 0px;
        visibility: hidden;
        z-index: 999999;
        transition: all 0.1s ease;
    }


    nav ul li{
        text-align: center;;
        opacity: 0;
        transition: all 0s ease
    }


    nav ul li a{
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        color: black;
        font-size: 28px;
        padding: 16px;
        display: block;
    }

    
.nav-vertical{
    background: white;
	position: relative;
	width: 100%;
    height: 0px;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
    top: -100%;
    z-index: 999999;
    transition: all 0.1s ease;
}

.nav-container input{
    display: none;
}


#navlinks li:hover .nav-vertical{
	display: block;
}


.nav-container .nav-vertical li a{
	
	color: rgb(9, 9, 9);
	padding: 1.3rem 0 1.3rem 0;
	height: 70px;;
    text-align: center;
}


nav .nav-container .nav-vertical li a{
	margin: 0 0;
}

 
    nav .menubar{
        display: block;
        position: absolute;
        top: 25px;
        right: 80px;
        cursor: pointer;
    }

    nav .menubar #times{
        display: none;
    }

#check:checked ~ nav .menubar #times{
    display: block;
}
#check:checked ~ nav .menubar #bars{
    display: none;
}

#check:checked ~ nav ul{
    visibility: visible;
    height: auto;
    z-index: 999999;
    transition: all 0.1s ease;
}


#check:checked ~ nav ul li{
    opacity: 1;
    z-index: 999999;
    transition: all 0.1s ease;
}





.footer-container{
    margin-top: 30px;
	width: 80%;
    grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.footer{
	min-height: 40vh;

}

.btn1{
	font-size: 12px;
} 


.copyright{
    margin: 120px 0 0 90px;
    padding: 0 14px 0 0px; 
}

.copyright p{
    font-size: 1rem;
    line-height: 1.6;
}
.copyright i{
    font-size: 1rem;
    line-height: 0.6;
}

.brand p{
    margin-top: 6rem;
    font-size: 15px;
    
}

   
}


@media(max-width: 700px){

    .header{
        min-height: 60vh;
    }


    nav{
        position: relative;
        display: block;
        padding: 0;
       
    }

    nav .logo{
        font-size: 22px;
        height: 65px;
        display: inline-block;
        margin-left: 20px;
        margin-bottom: -1rem;
    }

    .brand1 h5{
        margin-left: 30px;
        padding-top: 2px;
        margin-top: -1rem;
        font-size: 9px;
        font-weight: 400;
    }

    .brand1{
        padding-bottom: 0;
    }

    nav ul{
        display: flex;
        flex-direction: column;
        background: white;
        height: 0px;
        visibility: hidden;
        transition: all 0s ease;
    }


    nav ul li{
        text-align: center;
        transition: all 0s ease;
        opacity: 0;
    }


    nav ul li a{
        color: black;
        font-size: 15px;
        padding: 10px;
        display: block;

    }

    
.nav-vertical{
    background: white;
	position: relative;
	width: 100%;
    height: 0px;
    margin-bottom: 0;
    padding-bottom: 0;
}

#navlinks li:hover .nav-vertical{
	display: block;
    transition: 0.3s;
}

.nav-container .nav-vertical li a{
	display: block;
	color: rgb(9, 9, 9);
	padding: 0.8rem 0 0.8rem 0;
	height: 45px;;
    text-align: center;
}



    nav .menubar{
        display: block;
        position: absolute;
        top: 16px;
        right: 50px;
        cursor: pointer;
    }

    nav .menubar i{
        font-size: 24px;
    }



#check:checked ~ nav ul{
    visibility: visible;
    height: auto;
    transition: 0.5s;
}





.slide{
    height: 385px;
}

.slider{
    height: 385px;
}

.slideimg{
    height: 385px;
}

.content{
	margin-top: 0rem;
	margin-bottom: 10px;
}

.content h3{
    font-weight: 450;
    font-size: 1.3rem;
    
}
.content p{
    font-weight: 250;
    font-size: 0.9rem;
    padding: 1rem 0;
}



    .footer-container{
        margin-top: 20px;
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    
    .footer{
        min-height: 55vh;
    
    }
    
    .copyright{
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 20px 0 0 0;
        padding: 20px 0 0 0;
    }

    .copyright p{
        font-size: 12px;
    }

    .copyright i{
        line-height: 1.5;
        font-size: 16px;
    }
    
    
    
    }




    @media(max-width: 600px){


        .logoo1-img{
            margin: auto;
            width: 22%;
        }

        .brand p{
            margin-top: 6rem;
            font-size: 14px;
            
        }
        

    }        


