@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
    background: #000; 
}

.faq-section {
	font-family: "Montserrat", sans-serif;
	color: white;
    width: 95vw;
	height: auto;
	padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
	flex-wrap: wrap;
}


.faq-title {
    font-size: 3rem;
    margin: 0;
}

.faq-section .topic {
    font-size: 3vw;
	font-style: italic;
    margin: 4rem 0 0 0;
	text-transform: uppercase;
	text-align: center;
}

.faq {
    width: 60vw;
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fff;
    cursor: pointer;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question h4 {
    font-size: 1.2rem;
    margin: 0 0 1rem;
}

.answer {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;
}
.answer p {
    line-height: 1.6;
    font-size: 1rem;
}

.answer a {
	font-weight: bold;
	color: #dfc47d;
	text-decoration: none;
}

.answer a:hover {
	text-decoration: underline;
}

.answer li {
	padding-bottom: 12px;
}

.faq.active .answer {
    max-height: 300px;
    animation: answer-fade 1s ease-in-out;
}

/* SVG TRANSFORM */ /*
.faq.active svg {
    transform: rotate(180deg);
}

svg {
	margin: 0 0 18px 32px;
    transition: transform .5s ease-in;
}
*/

.faq.active i {
    transform: rotate(180deg);
}

i {
	margin: 0 0 18px 32px;
    transition: transform .5s ease-in;
}

@keyframes answer-fade {
    
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }    
}

.pd-section {
	font-family: "Montserrat", sans-serif;
	color: white;
    width: 95vw;
	height: auto;
	padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
	flex-wrap: wrap;
}

.infoButton-container {
	display: flex;
	justify-content: flex-start;
	padding: 12px 0;
	margin-bottom: 12px;
	font-family: "Montserrat";
}
.infoButton-container a {
	text-decoration: none;
}
.info-btn {
	color: #bfbfbf;
	background: rgba(70,120,150,0.8);
	padding: 10px 24px;
	border-radius: 6px;
	text-transform: uppercase;
	font-weight: bold;
	transition: .3s ease-out;
}
.info-btn:hover {
	color: #fff;
	background: rgba(70,120,150,1);
}

.info-container {
	width: 65%;
}

.general-title {
    font-size: 3vw;
	text-transform: uppercase;
	text-align: center;
}

.general-info {
	font-size: 1vw;
}
.general-info span {
	display: block;
	font-weight: bold;
	padding: 24px 0 12px;
}

.pd-section .answer {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.dd-section {
	font-family: "Montserrat", sans-serif;
	color: white;
    width: 95vw;
	height: auto;
	padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
	flex-wrap: wrap;
}

.aboutMCAS-section{
	font-family: "Montserrat", sans-serif;
	color: white;
    width: 95vw;
	height: auto;
	padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
	flex-wrap: wrap;
}

@media (min-width:1081px) {
	.hero-desktop {
		display: block;
	}
	.hero-mobile {
		display: none;
	}
}

@media (max-width:1080px) {
	.hero-desktop {
		display: none;
	}
	.hero-mobile {
		display: block;
	}
}

@media (max-width:700px) {
	
	svg {
		width: 30px;
		height: 20px;
	}
	
	.faq {
    width: 70vw;
		
	}
	
	.faq-section .topic {
		font-size: 4vw;
	}
	
	.question h4 {
    	font-size: 3vw;
	}
	
	.faq.active .answer {
    max-height: 500px;
	}
	
	.info-container {
	width: 75%;
	}
	.general-title {
    font-size: 4vw;
	}
	
	.general-info {
	font-size: 3vw;
	}
}

@media (max-width:600px) {
	
	.hero-desktop {
		display: none;
	}
	.hero-mobile {
		display: block;
	}