:root{
    --mount-meadow: #342359;
    --white-smoke: #f0f0f0;
    --night-rider: #343434;
    --black: #111113;
    --transition: all 0.5s ease-in-out;
}
*{
    font-family: 'Hind Siliguri', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    color: var(--black);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: var(--black);
}
li{
    list-style-type: none;
}
button{
    cursor: pointer;
    outline: 0;
    background: transparent;
}

.header{
	width: 100%;
	background-color: #212343;
}

.header img{
    width: 300px;   
}

.container{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}
h1, h2, h3, h4, h5, h6{
    margin: 0.6rem 0;
    line-height: 1.25;
    font-weight: 400;
    text-transform: capitalize;
}
.text{
    margin: 0.6rem 0;
    opacity: 0.8;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
section{
    padding: 6.5rem 0;
    margin-top: -50px;
}
.title{
    padding: 0.6rem 0;
    text-align: center;
}
.title h2{
    font-size: 2.2rem;
    color: #0A1B3E;
}
.title .text{
    font-weight: 500;
    font-size: 1.1rem;
}

.faq{
    background: #f7f7f7;
}
.faq .row{
    margin-top: 6rem;
}
.faq-item{
    margin: 0.6rem 0;
}
.faq-head{
    background: var(--white-smoke);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.10rem 1.8rem;
}
.faq-head h3{
    font-weight: 300;
    opacity: 0.8;
}

.faq-content {
    background: #fff;
    overflow: hidden;
    max-height: 0; /* Alterado de height para max-height */
    padding: 0 1.8rem;
    transition: var(--transition);
}

.faq-content p span{
    font-weight: bold;
}


.faq-content li{
    list-style: disc;
    margin-left: 50px;
}

.show-faq-content {
    max-height: 1000px; /* Defina um valor grande o suficiente para acomodar o maior conteúdo */
    padding: 0.6rem 1.8rem;
}

footer.footer1{
	background: #9e9e9e;
	padding: 100px 0;
	color:white;
	padding-left: 50px;
	}

	footer.footer1 h2{
	font-weight: normal;
	font-size: 23px;
	}

	footer.footer1 p{
	margin-top: 8px;
	font-weight: lighter;
	}

	footer.footer1 a{
	display: block;
	color:white; 
	}

	div.group-icons a{
	font-size: 18px;
	display: inline-block;
	margin: 15px 10px;
	}

	footer.footer2{
	padding: 15px 0;
	background:#212343;
	text-align: center;
	color:white;
	}		



@media screen and (min-width: 768px){
    .team-item{
        margin: 0;
    }
    .faq .row{
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

}

