html, body {
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-family: "Poppins", sans-serif;
	font-style: normal;
	font-weight: 800;
}
.page-header {
	background-color: rgba(255, 255, 255, .95);
	backdrop-filter: blur(5px);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
	display: block;
	left: 0;
	padding: 1rem 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.page-footer {
	background-color: #222;
	padding: 1.5rem 0 1.5rem 0;
}

@media(min-width: 64em) {
	.page-footer {
		padding: 3rem 0 10rem 0;
	}
}

.section {
	background-color: #fff;
	position: relative;
}

.section__content {
	padding: 1.5rem 0;
}

@media(min-width: 64em) {
	.section__content {
		padding: 5rem 0;
	}
}
.section--media-as-bg .section__content {
	position: relative;
	z-index: 3;
}
.section--media-as-bg .section__media {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}
.section--media-as-bg .section__image {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.button {
	border-radius: 1000px;
}
.button--large {
	font-size: 1.5rem;
}
.button--white {
	background-color: #fff;
	color: #000;
}
.button--hollow {
	background-color: transparent;
	border-width: 2px;
}
.button--white.button--hollow {
	border-color: #fff;
	color: #fff;
}
.button--white.button--hollow:hover {
	background-color: #fff;
	color: #000;
}

.menu--tags {
	font-size: .75rem;
}
.menu--tags .menu__item {
	margin: 0 .25rem .25rem 0;
}
.menu--tags .menu__link {
	background-color: rgba(255, 255, 255, .95);
	border-radius: .25rem;
	color: #000;
	text-transform: uppercase;
}
.menu--tags .menu__link:hover {
	background-color: #1779ba;
	color: #fff;
}

.menu--primary .menu__item {
	margin-left: .25rem;
}
.menu--primary .menu__link {
	border: 1px solid transparent;
	border-radius: 1000px;
	color: #000;
	text-transform: uppercase;
}
.menu--primary .menu__link:hover {
	border-color: #1779ba;
}
.menu--primary .menu__link:active,
.menu--primary .menu__link.is-active {
	background-color: #1779ba;
	color: #fff;
}

.expert {
	display: grid;
	gap: 1rem;
	grid-template-columns: 110px 1fr;
	margin-bottom: 1rem;
}

.expert__details {
	overflow: hidden;
}

.expert__label {
	color: #999;
	font-weight: 700;
	font-size: .8rem;
	margin-bottom: .15rem;
	text-transform: uppercase;
}

.expert__name {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: .25rem;
	text-transform: uppercase;
}

.expert__image {
	filter: grayscale(100%);
	height: 110px;
	image-rendering: -webkit-optimize-contrast;
	width: 110px;
}

.expert__email,.expert__phone {
    color: #999;
    display: block;
}

.expert__email {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.expert__email a,.expert__phone a {
    color: #999;
    text-decoration: none;
}

/*
.expert__email::before,.expert__phone::before {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    width: 1.5em;
}

.expert__email::before {
    content: "";
}

.expert__phone::before {
    content: "";
}
*/

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.h-100 {
	height: 100%;
}

.text-uppercase {
	text-transform: uppercase !important;
}
.text-white {
	color: #fff !important;
}

.fw-bold {
	font-weight: 800;
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    line-height: 1;
}

@media(min-width: 1200px) {
    .display-1 {
        font-size:6rem;
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    line-height: 1;
}

@media(min-width: 1200px) {
    .display-2 {
        font-size:4.5rem;
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    line-height: 1;
}

@media(min-width: 1200px) {
    .display-3 {
        font-size:4rem;
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    line-height: 1;
}

@media(min-width: 1200px) {
    .display-4 {
        font-size:3.5rem;
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    line-height: 1;
}

@media(min-width: 1200px) {
    .display-5 {
        font-size:3rem;
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    line-height: 1;
}

@media(min-width: 1200px) {
	.display-6 {
		font-size:2.5rem;
	}
}

.mb-0 {
	margin-bottom: 0!important;
}

.mb-1 {
	margin-bottom: .25rem!important;
}

.mb-2 {
	margin-bottom: .5rem!important;
}

.mb-3 {
	margin-bottom: 1rem!important;
}

.mb-4 {
	margin-bottom: 1.5rem!important;
}

.mb-5 {
	margin-bottom: 3rem!important;
}

.mr-3 {
	margin-right: 1rem!important;
}


@media(min-width: 64em) {
	.mb-lg-0 {
		margin-bottom: 0!important;
	}

	.mb-lg-1 {
		margin-bottom: .25rem!important;
	}

	.mb-lg-2 {
		margin-bottom: .5rem!important;
	}

	.mb-lg-3 {
		margin-bottom: 1rem!important;
	}

	.mb-lg-4 {
		margin-bottom: 1.5rem!important;
	}

	.mb-lg-5 {
		margin-bottom: 3rem!important;
	}
}

.bg-gray-light {
	background-color: #eee;
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw)!important;
}

.fs-2 {
    font-size: calc(1.325rem + .9vw)!important;
}

.fs-3 {
    font-size: calc(1.3rem + .6vw)!important;
}

.fs-4 {
    font-size: calc(1.275rem + .3vw)!important;
}

.fs-5 {
    font-size: 1.25rem!important;
}

.fs-6 {
    font-size: 1rem!important;
}