@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;

}

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;
    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: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;
}

/*footer*/
/* .footer_container{
	max-width: 1170px;
	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%;
}
} */
/* FQA */




/* 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: center;
}

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


.faq-container {
    max-width: 800px;
    margin: 50px auto;
    /* background: #fff; */
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.faq-container h1 {
    color: #2fb463;
    margin-bottom: 60px;
    font-family: 500;
}

.faq {
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.faq .question {
    background: #2fb463;
    color: white;
    padding: 15px;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq .question h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

.faq .question .arrow {
    font-size: 1.2em;
    transition: transform 0.3s;
}

.faq .answer {
    display: none;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    margin-top: 10px;
    text-align: left;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.faq .answer p {
    margin: 0;
    font-size: 0.95em;
}