@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /*justify-content: center;*/
    /*align-items: center; create issue in footer */

}

body{
    background-color: #f0f0f0;
    line-height: 1.5;
	font-family: 'Poppins', sans-serif;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

header {
    background-color: #fff;
    color: #2a2929;
    /* padding: 15px 0; */
    width: 100%;
}

.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header_logo a {
    color: #2a2929;
    text-decoration: none;
    font-size: 1.5em;
}

nav ul {
    list-style: none;
    display: flex;
    /* gap: 20px; */
}

nav ul li ul.dropdown li{
	display: block;
    width: fit-content;
}

nav ul li ul.dropdown {
	width:100%;
	/*background: #3bad5b;*/
	position: absolute;
	z-index: 999;
	display: none;
}

nav ul li a:hover{
	/* background: #cee5d5; */
	/* ; */
}

nav ul li:hover ul.dropdown{
	display: block;
}

nav ul li a {
    color: #2a2929;
    text-decoration: none;
    font-size: 1em;
}

nav ul li a.login {
    background-color: #a4ed44;
    padding: 5px 10px;
    border-radius: 5px;
}

/*  */

/* Full-width banner section */


.banner {
    width: 100%;
    background-color: #28221f; /* Adjust the background color as needed */
    padding: 20px 0; /* Adjust the padding as needed */
}

.banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    padding: 0;
    margin: 0 auto;
}



.banner-text {
    color: white;
    flex: 1;
    padding-right: 20px;
}

.banner-image {
    flex: 1;
    text-align: right;
}

.banner img {
    max-width: 35%;
    height: auto;
}



/*  */



/* Terms and Conditions section */
.terms {
    padding: 76px 20px 40px 20px;
}

.terms .container {
    padding: 0 15px;
    max-width: 1300px; /* Set max-width to 1300px */
    margin: 0 auto; /* Center the container */
}

.terms .terms_content {
    /* padding-top: 60px; */
    line-height: 2.0;
    color: #000000;
    text-align: justify;
}

.terms .lis {
    padding-top: 20px;
}

.terms h3 {
    padding-top: 40px;
}

/* Mobile View */
@media (max-width: 768px) {
    .banner .container {
        flex-direction: column;
    }

    .banner-image {
        order: -1; /* Move image after heading */
        margin-bottom: 20px;
        text-align: center; /* Center align the image */
    }
}




/*footer*/
/* .footer_container{
	max-width: 1315px;
	margin:auto;
}
.footer .row{
	display: flex;
	flex-wrap: wrap;
}
.footer ul{
	list-style: none;
}
.footer{
	background-color: #24262b;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive

@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
} */
