/* Variables */
:root {
	--blue-primary: rgb(16, 29, 71);
	--blue-tertiary: rgb(141, 176, 243);
	--yellow-primary: rgb(243, 205, 36);
	--yellow-secondary: rgb(217, 166, 39);
	--gray-primary: rgb(73, 80, 87);
}

body {
	font-family: 'Montserrat';
}

h1, h2, h3 {
	font-family: 'Kumbh Sans';
}

/* Auxiliary */
.bg-blue-primary {
	background-color: var(--blue-primary);
}

.bg-yellow-primary {
	background-color: var(--yellow-primary);
}

.border-yellow-primary {
	border-color: var(--yellow-primary);
}

.text-blue-primary {
	color: var(--blue-primary);
}

.text-blue-tertiary {
	color: var(--blue-tertiary);
}

.text-yellow-primary {
	color: var(--yellow-primary);
}

.text-gray-primary {
	color: var(--gray-primary);
}

/* Components */
.navbar {
	background-color: rgba(0, 0, 0, 0.5);
	height: 5rem;
	display: flex;
	flex-direction: row;
	position: fixed;
	width: 100%;
	align-items: center;
	z-index: 100;
}

.navbar-logo {
	margin-left: 2rem;
}

.navbar a {
	position: relative;
	padding-bottom: 0.125rem;
}

.hamburger {
	margin-left: 2rem;
}

.section-list-mobile {
	flex-direction: column;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	width: 100%;
	position: absolute;
	top: 100%;     
}

.section-list {
	color: white;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
}

.section-list a:hover {
	color: var(--yellow-primary);
}

.section-list a::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 0.125rem;
	border-radius: 0.25rem;
	background-color: var(--yellow-primary);
	bottom: -0.25rem;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform .4s ease-in-out;
}

.section-list a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

.nav-icon {
	font-size: 1.5rem;
}

.header {
	width: 100%;
	color: white;
}

.header .btn-consultation {
	width: 80%;
}

.header-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.header-content {
	margin-left: 15vw;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	width: 33.333333%;
}

.header-text-title {
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	width: 30vw;
}

.header-text-description {
	font-weight: 400;
	font-size: 1.125rem;
	width: 32vw;
}

.footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--blue-primary);
	color: rgb(209 213 219);
	font-size: 0.75rem; 
	line-height: 1rem;
	padding-top: 1.75rem;
	padding-bottom: 1.75rem;
}

#whatsapp:hover {
	animation: shake 1s cubic-bezier(.36,.07,.19,.97) both;
	transform: translate3d(0, 0, 0);
}

/* Sections */
.section-col {
	display: flex;
	flex-direction: column;
}

.section-row {
	display: flex;
	flex-direction: row;
}

.section-introduction {
	align-items: center;
	justify-content: center;
}

.section-aboutme {
	width: 100%;
	color: white;
}

.aboutme-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.aboutme-content {
	margin-left: 15vh;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	width: 33.333333%;
}

.section-blog {
	align-items: center;
	margin-top: 4rem;
	margin-bottom: 1.5rem;    
}

.blog-selector {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap; 
	justify-content: center;
	width: 80%;
	margin-bottom: 4rem;   
}

.blog-selector-tag {
	font-weight: 600;
	border-radius: 624.9375rem;
	border-width: 0.1875rem;
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
	margin-bottom: 0.75rem;
	width: 8rem;
	border-color: var(--yellow-primary);
}

.blog-selector-tag:hover {
	cursor: pointer;
	background-color: var(--yellow-secondary);
	color: white;
	border-color: var(--yellow-secondary);
}

.blog-card-list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 75%;
}

.blog-recommendation-list {
	display: flex;
	flex-direction: row;
	width: 100%
}

.blog-card {
	display: flex;
	flex-direction: column;
	width: 27.5%;
	background-color: white;
	align-items: center;
}

.blog-thumb {
	background-size: contain; 
	background-position: center; 
	background-repeat: no-repeat;
	object-fit: cover;
	height: 50%; 
	width: 100%;
	margin-bottom: 0.75rem;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;    
}

.blog-post-header {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 70vh;
	background-size: cover;
	background-position: center;
	color: white;
}

.blog-post-content {
	text-align: justify;
}

.blog-post-header-content {
	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: center;
  	text-align: center;
  	width: 50%;              
  	height: 100%;	
}

.blog-post-subtitle {
	font-size: 1.875rem;
  	line-height: 2.25rem;
  	font-weight: 600;
  	margin-top: 2.5rem;
	color: var(--blue-primary);
}

.blog-post-bullet-list {
  	list-style-type: disc;
  	color: var(--gray-primary);
  	margin-left: 1.5rem;
}

.blog-post-bullet-list > * + * {
  	margin-top: 0.25rem;
}

.blog-post-tag {
	font-weight: 600;
	border-radius: 624.9375rem;
	border-width: 0.1875rem;
	padding-top: 0.1875rem;
	padding-bottom: 0.1875rem;
	width: 8rem;
	text-align: center;
	border-color: var(--yellow-primary);
	color: var(--yellow-primary);
}

.blog-post-profile-pic-wrapper { 
	width: 4rem;
	height: 4rem;
	border-radius: 100%; 
	overflow: hidden; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
} 

.blog-post-profile-pic { 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
}

.section-faq {
	align-items: center;
	justify-content: center;
}

.faq-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.faq-answer {
	background-color: rgb(250, 250, 255);
	display: flex;
	flex-direction: column;
	align-items: end;
	height: 85%;
	width: 55%;
	z-index: 0;
}

.faq-answer-wrapper {
	display: flex;
	flex-direction: column;
	padding: 2.5rem 1.5rem;
	width: 90%;
}

.faq-question-list {
	background-color: white;
	border-width: 0.0625rem;
	border-radius: 0.125rem;
	border-color: rgb(243 244 246);
	z-index: 10;
	width: 50%;
}

.faq-question-list> *:not(:last-child) {
	border-bottom-width: 0.0625rem;
	border-color: rgb(243 244 246);
}

.faq-question-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around; 
	padding: 1.25rem 0.25rem;   
}

.faq-question-row:hover {
	cursor: pointer;
}

.faq-question-row p {
	font-family: 'Inter';
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--blue-primary);
}

.faq-question-row:hover i {
	color: rgb(93, 95, 239);
}

.faq-question-row:hover {
	background-color: rgb(250, 251, 255);
}

.faq-answer-header {
	font-family: 'Inter';
	font-weight: 700;
}

.section-reviews {
	background-size: cover;
	background-position: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-bottom: 1.25rem;
}

.review-list {
	display: flex;
	flex-direction: row;
	align-items: start;
	justify-content: center;
}

.review-list> *:not(:last-child) {
	margin-right: 1.25rem;
}

.review-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: white;
	padding: 1.5rem;
	border-radius: 0.75rem;
	width: 16.666667%;
}

.review-score {
	display: flex;
	flex-direction: row;
	color: rgb(250 204 21);
	margin-bottom: 1rem;
}

.review-link {
	font-size: 0.75rem; 
	line-height: 1rem;
	text-decoration-line: underline;
	color: rgb(14 165 233);
}

.section-consultation {
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.section-consultation .btn-consultation {
	width: 66.666667%;
}

.consultation-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 40%;
	color: var(--blue-primary);
	text-align: center;
}

.btn-consultation {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	color: black;
	font-weight: 600;
	border-radius: 624.9375rem;
	height: 3.5rem;
}

.btn-consultation i {
	color: white;
}

.btn-consultation:hover {
	cursor: pointer;
	background-color: var(--yellow-secondary);
	animation: pulse 1s linear;
}

.section-address {
	background-color: var(--blue-primary);
	align-items: center;
	font-style: normal;
}

.section-address i {
	color: var(--yellow-primary);
}

.address-columns {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	width: 100%;
	color: white;
}

.address-column {
	display: flex;
	flex-direction: column;
}

.address-row {
	display: flex;
	flex-direction: row;
	font-size: 0.875rem; 
	line-height: 1.25rem;
}

/* Animations */
@keyframes shake {
	10%, 90% {
		transform: translate3d(-0.0625rem, 0, 0);
	}

	20%, 80% {
		transform: translate3d(0.125rem, 0, 0);
	}
	
	30%, 50%, 70% {
		transform: translate3d(-0.125rem, 0, 0);
	}

	40%, 60% {
		transform: translate3d(0.125rem, 0, 0);
	}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 var(--yellow-primary);
	}

	40% {
		box-shadow: 0 0 0 0.625rem rgba(217, 166, 39, 0);
	}

	80% {
		box-shadow: 0 0 0 0.625rem rgba(243, 205, 36, 0);
	}

	100% {
		box-shadow: 0 0 0 rgba(217, 166, 39, 0);
	}
}

/* Media Query */

/* Smartphones and Tablets */
@media (max-width: 61.99875rem) {
	.hamburger {
		display: flex;
	}

	.navbar {
		height: 4rem;
	}

	.section-list {
		display: none;
	}

	.header {
		display: flex;
		flex-direction: column;
	}

	.header .btn-consultation {
		width: 75%;
	}

	.header-bg {
		display: block;
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.header-content {
		background-color: rgb(0, 22, 69);
		margin-left: 0;
		align-items: center;
		text-align: center;
		width: 100%;
		padding: 4rem 0rem;
	}

	.header-text-title, .header-text-description {
		width: 70%;
	}

	.section-introduction {
		padding-top: 5rem;
		flex-direction: column;
		text-align: center;
	}

	.section-introduction div {
		width: 75%;
		margin-bottom: 4rem;
	}

	.section-introduction img {
		width: 60%;
	}

	.section-aboutme {
		display: flex;
		flex-direction: column;
	}

	.aboutme-bg {
		display: block;
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.aboutme-content {
		background-color: rgb(0, 11, 43);
		margin-left: 0;
		align-items: center;
		text-align: center;
		width: 100%;
		padding: 4rem 0rem;
	}

	.aboutme-content * {
		width: 70%;
	}

	.aboutme-content ul {
		text-align: center;
	}

	.aboutme-content ul li {
		display: inline-block;
		text-align: center;
	}

	.blog-card-list, .blog-recommendation-list {
		flex-direction: column;
		align-items: center;
	}

	.blog-card {
		width: 75%;
		margin-bottom: 2rem;
	}

	.section-recommendations h2 {
		text-align: center;
	}

	.section-faq {
		margin-top: 4rem;
	}

	.section-faq h2 {
		text-align: center;
		margin-bottom: 2.5rem;
	}

	.faq-wrapper {
		flex-direction: column;
		margin-bottom: 3rem;
	}

	.faq-answer {
		margin-top: -0.75rem;
		width: 80%;
	}

	.faq-answer-wrapper {
		text-align: center;
		width: 100%;
	}

	.faq-question-list {
		width: 70%;
	}

	.review-list {
		flex-direction: column;
		align-items: center;
	}

	.review-list> *:not(:last-child) {
		margin-right: 0rem;
	}

	.review-card {
		width: 50%;
		margin-bottom: 1.5rem;
	}

	.section-consultation .btn-consultation {
		width: 90%;
	}

	.consultation-content {
		width: 75%;
	}

	.address-columns {
		flex-direction: column;
		width: 100%;
		margin: 3rem 3rem 1.5rem 3rem;
	}

	.address-column {
		margin-bottom: 1.5rem;
		align-items: center;
		width: 100%;
	}

	.address-row {
		text-align: center;
	}
}

/* Desktops */
@media (min-width: 62rem) {
	.header {
		height: 100vh;
		position: relative;
	}

	.header-content {
		position: absolute;
		top: 0;
	}

	.hamburger {
		display: none;
	}

	.section-list {
		display: flex;
	}

	.section-introduction {
		height: 100vh;
	}

	.section-introduction img {
		margin-right: 3.5rem;
		width: 80%;
	}

	.section-aboutme {
		height: 100vh;
		position: relative;
	}

	.aboutme-content {
		position: absolute;
		top: 0;
	}

	.section-faq {
		height: 100vh;
	}

	.faq-answer {
		position: absolute;
		right: 0;
	}

	.blog-card-list> *:not(:last-child) {
		margin-right: 1.25rem;
	}

	.blog-recommendation-list> *:not(:last-child) {
		margin-right: 1.25rem;
	}

	.section-reviews {
		height: 100vh;
	}

	.section-address {
		height: 16rem;
	}
}