/* ======= About ======= */

.about-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100vw;
	max-width: 1080px;
	padding: 0 32px;
	box-sizing: border-box;
	margin: 72px 0;

	scroll-margin: 540px;
}

@media screen and (max-width: 640px) {
	
	.about-section {
		scroll-margin: 132px;
	}
	
}

.about-section h2 {
	font-size: 1.3em;
	color: var(--black-light-transp);
	text-transform: uppercase;
	font-weight: 700;
	padding-bottom: 8px;
}

.dark-theme .about-section h2 {
	color: var(--black-light-transp-dt);
}

.about-section p {
	font-size: 1.2em;
	line-height: 29px;
	color: var(--black-light-transp);
}

.dark-theme .about-section p {
	color: var(--black-light-transp-dt);
}



/* ======= Contact ======= */

.contact-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100vw;
	max-width: 1080px;
	padding: 0 32px;
	box-sizing: border-box;
	
	margin-bottom: 72px;
}

.contact-section h2 {
	font-size: 1.3em;
	color: var(--black-light-transp);
	text-transform: uppercase;
	font-weight: 700;
	padding-bottom: 8px;
}

.dark-theme .contact-section h2 {
	color: var(--black-light-transp-dt);
}

.contact-section p {
	font-size: 1.2em;
	line-height: 29px;
	color: var(--black-light-transp);
	text-align: center;
}

.dark-theme .contact-section p {
	color: var(--black-light-transp-dt);
}

.contact-section a {
	font-weight: 600;
	color: var(--logo-darker-grey);
	line-height: 64px;
	text-decoration: none;
	background: rgba(69, 69, 69, 0.10);
	padding: 6px 14px;
	border-radius: 6px;
}

.dark-theme .contact-section a {
	color: #919191;
	background: rgb(156 156 156 / 10%);
}

.contact-section a:hover {
	color: var(--black-light-transp);
}

.dark-theme .contact-section a:hover {
	color: var(--black-light-transp-dt);
}


/* ======= FAQ ======= */

.faq-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100vw;
	max-width: 1080px;
	padding: 0 32px;
	box-sizing: border-box;

	margin-bottom: 72px;
}

.faq-section h2 {
	font-size: 1.3em;
	color: var(--black-light-transp);
	text-transform: uppercase;
	font-weight: 700;
	padding-bottom: 8px;
}

.dark-theme .faq-section h2 {
	color: var(--black-light-transp-dt);
}

.faq {
	margin-top: 16px;
	margin-left: -16px;
}

.faq .acordeon {
	position: relative;
	width: 100%;
	color: #999;
	overflow: hidden;
	border-bottom: 1px solid #edecec;
}

.dark-theme .faq .acordeon {
	border-bottom: 1px solid rgb(255 255 255 / 12%);
}

/* Acordeon Title Section */
.faq .acordeon label {
	position: relative;
	line-height: 29px;
	height: fit-content;
	box-sizing: border-box;
	font-size: 1.1em;
	color: var(--black-light-transp);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 8px 0;
	padding: 0 16px;
	border-radius: 8px;
	min-height: 56px;
}

.dark-theme .faq .acordeon label {
	color: var(--black-light-transp-dt);
}

.faq .acordeon label:hover {
	background: rgb(246 241 237 / 44%);
}

.dark-theme .faq .acordeon label:hover {
	background: rgb(40 39 38);
}

.faq .acordeon label b {
	font-weight: 500;
	max-width: calc(100% - 32px);
	width: -webkit-fill-available;
	border-radius: 8px;
	padding: 0;
	margin-right: 16px;
}

/* Acordeon Content For Anything */
.faq .acordeon-content {
	max-height: 0;
	overflow: hidden;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition: max-height .44s;
	transition: max-height .44s;
}

/* Acordeon Content P Text */
.faq .acordeon-content p {
	color: #919191;
	max-width: 100%;
	padding: 8px 32px 16px 16px;
	margin: 0;
	box-sizing: border-box;
	font-size: 1.1em;
	line-height: 29px;
}

.faq .acordeon-content ol {
	margin: 0;
	line-height: 27px;
	padding: 0 32px 16px 40px;
}

/* Acordeon Check Box Hidden */
.faq .acordeon input {
	display:none;
	position: absolute;
	opacity: 0;
	z-index: -1;
}

/* :checked */
.faq input:checked ~ .acordeon-content {
	max-height: 30em;
	max-height: 52em;
	padding-bottom: 32px;
}

/* Acordeon Icon*/
.faq label::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #a8a8a8;
	border-right: 2px solid #a8a8a8;
	transform: rotate(135deg);
	margin-right: 4px;
}

.faq label:hover::after {
    border-top: 2px solid var(--black-med-transp);
    border-right: 2px solid var(--black-med-transp);
}

.dark-theme .faq label:hover::after {
    border-top: 2px solid var(--black-med-transp-dt);
    border-right: 2px solid var(--black-med-transp-dt);
}

/* Acordeon Icon Content Animation*/
.faq input[type=checkbox]:checked + label::after {
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
	margin-top: 7px;
}


/* ======= Insta feed ======= */

.instaFeed-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100vw;
	max-width: 1080px;
	max-width: 100%;
	padding: 0 32px;
	box-sizing: border-box;
	margin-bottom: 32px;
}