@keyframes gridEntrance {
	0% {
		opacity: 0;
		transform: scaleY(.001);
		transform-origin: bottom
	}

	to {
		opacity: 1;
		transform: scaleY(1)
	}
}

@keyframes gridColor {
	0% {
		filter: grayscale(100%) brightness(80%)
	}

	50% {
		filter: grayscale(0) brightness(90%)
	}

	to {
		filter: grayscale(100%) brightness(80%)
	}
}

@keyframes rotating {
	0% {
		rotate: 0deg
	}

	to {
		rotate: 180deg
	}
}

@keyframes navLinkFade {
	0% {
		opacity: 0;
		margin-left: -10rem
	}

	to {
		opacity: 1;
		margin-left: 0
	}
}

@keyframes gradientMotion {
	0% {
		background-position: 0
	}

	to {
		background-position: -200%
	}
}

.footer {
	width: 80%;
	margin: 0 auto
}

@media (max-width:599px) {
	.footer {
		width: 100%
	}
}

.footer__container {
	display: flex;
	justify-content: space-between
}

@media (max-width:899px) {
	.footer__container {
		flex-direction: column-reverse;
		align-items: center
	}
}

.footer__subcontainer1 {
	width: 45%;
	position: relative;
	transform: translateY(-5rem);
	opacity: 0;
	filter: blur(3px);
	transition: .5s ease-in .1s
}

@media (max-width:899px) {
	.footer__subcontainer1 {
		width: 80%
	}
}

.footer__logo {
	width: 20rem;
	margin-bottom: 3rem
}

@media (max-width:1279px) {
	.footer__logo {
		width: 17rem
	}
}

.footer__copy {
	color: #fff;
	font-size: 1.2rem;
	margin-bottom: 3rem
}

.footer__socials {
	width: 30%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 4rem;
	margin-left: -1rem
}

.footer__socials a {
	padding: 1rem;
	transition: .2s ease-in-out
}

.footer__socials a:hover {
	transform: scale(1.5)
}

.footer__social-icon {
	width: 2rem
}

.footer__info {
	display: flex;
	padding: 1rem 2rem;
	color: #142240;
	background-color: #edb01f;
	position: absolute;
	bottom: 0;
	width: 70%
}

@media (max-width:1279px) {
	.footer__info {
		width: 80%
	}
}

@media (max-width:899px) {
	.footer__info {
		width: 94%
	}
}

@media (max-width:599px) {
	.footer__info {
		padding: .7rem 1rem
	}
}

.footer__email {
	flex-grow: 0.5
}

.footer__email-heading {
	font-size: 1.5rem;
	font-weight: 700
}

@media (max-width:1279px) {
	.footer__email-heading {
		font-size: 1.2rem
	}
}

@media (max-width:599px) {
	.footer__email-heading {
		font-size: 1rem
	}
}

.footer__email-email {
	font-size: 1rem
}

.footer__phone {
	flex-grow: 0.5
}

.footer__phone-heading {
	font-size: 1.5rem;
	font-weight: 700
}

@media (max-width:1279px) {
	.footer__phone-heading {
		font-size: 1.2rem
	}
}

@media (max-width:599px) {
	.footer__phone-heading {
		font-size: 1rem
	}
}

.footer__phone-phone {
	font-size: 1rem
}

.footer__subcontainer2 {
	display: flex;
	flex-direction: column;
	width: 40%;
	position: relative;
	transform: translateY(-5rem);
	opacity: 0;
	filter: blur(3px);
	transition: .5s ease-in .1s
}

@media (max-width:899px) {
	.footer__subcontainer2 {
		width: 80%;
		margin-bottom: 5rem
	}
}

.footer__heading {
	color: #fff;
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1rem
}

@media (max-width:1279px) {
	.footer__heading {
		font-size: 2.5rem
	}
}

.footer__contact {
	display: flex;
	flex-direction: column;
	height: 60%
}

.footer__contact input {
	height: 3rem;
	background: transparent;
	border: 5px solid hsla(0, 0%, 100%, .5);
	border-radius: 2rem;
	padding: 5px 1rem;
	font-size: 1.2rem;
	color: #fff;
	outline: none;
	margin-bottom: 1rem
}

.footer__contact input::placeholder {
	color: hsla(0, 0%, 100%, .5)
}

.footer__contact input:focus-visible {
	border: 5px solid #fff
}

@media (max-width:1279px) {
	.footer__contact input:focus-visible {
		border: 3px solid #fff
	}
}

@media (max-width:1279px) {
	.footer__contact input {
		height: 2.5rem;
		border: 3px solid hsla(0, 0%, 100%, .5)
	}
}

.footer__contact textarea {
	margin-bottom: 2rem;
	background: transparent;
	border: 5px solid hsla(0, 0%, 100%, .5);
	border-radius: 1rem;
	padding: 5px 1rem;
	font-size: 1.2rem;
	color: #fff;
	outline: none;
	resize: none;
	font-family: Poppins, sans-serif
}

.footer__contact textarea::-webkit-scrollbar-track {
	background-color: transparent
}

.footer__contact textarea::-webkit-scrollbar-thumb {
	background-color: #fff
}

.footer__contact textarea::placeholder {
	color: hsla(0, 0%, 100%, .5)
}

.footer__contact textarea:focus-visible {
	border: 5px solid #fff
}

@media (max-width:1279px) {
	.footer__contact textarea:focus-visible {
		border: 3px solid #fff
	}
}

@media (max-width:1279px) {
	.footer__contact textarea {
		border: 3px solid hsla(0, 0%, 100%, .5);
		height: 10rem
	}
}

.footer__cta {
	color: #fff;
	background-color: transparent;
	text-decoration: none;
	padding: .5rem 1.5rem;
	font-size: 1.2rem;
	border: 4px solid #fff;
	border-radius: 5rem;
	transition: .2s ease-in-out;
	width: 7rem;
	position: relative;
	align-self: end;
	text-align: center;
	cursor: pointer
}

.footer__cta:hover {
	background-color: #fff;
	color: #090f19
}

@media (max-width:1279px) {
	.footer__cta {
		border: 2px solid #fff;
		font-size: 1rem
	}
}

.copyright {
	background: #fff;
	height: 3rem;
	display: grid
}

@media (max-width:1279px) {
	.copyright {
		height: 2rem
	}
}

.copyright__text {
	margin: auto;
	font-size: 1rem
}

@media (max-width:1279px) {
	.copyright__text {
		font-size: .8rem
	}
}

@-moz-document url-prefix() {
	textarea {
		height: 10rem
	}
}

.navbar {
	width: 80%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 4vh auto 4rem
}

.navbar__logo {
	width: 150px
}

@media (max-width:1279px) {
	.navbar__logo {
		width: 100px
	}
}

@media (max-width:899px) {
	.navbar__logo {
		width: 150px;
		width: 100px
	}
}

.navbar__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative
}

.navbar__item {
	font-size: 1rem;
	padding: 2rem;
	font-weight: 600;
	letter-spacing: 3px;
	transition: .3s
}

.navbar__item:hover {
	font-size: 1.3rem
}

@media (max-width:1279px) {
	.navbar__item {
		font-size: .9rem
	}
}

.navbar__vibration {
	color: #edb01f;
	text-decoration: none
}

.navbar__nectar {
	color: #fff;
	text-decoration: none
}

.navbar__nectar span {
	color: #ff1a00
}

.navbar__nectar:after {
	position: absolute;
	display: inline-block;
	top: 3px;
	border-radius: 50%;
	height: 4px;
	width: 4px;
	background: #ff1a00
}

.navbar__academy,
.navbar__cta {
	color: #fff;
	text-decoration: none
}

.navbar__cta {
	font-weight: 600;
	font-size: 1rem;
	padding: .75rem 2rem;
	border: 2px solid #fff;
	letter-spacing: 3px;
	transition: .2s ease-in-out
}

.navbar__cta:hover {
	color: #142240;
	background-color: #fff
}

@media (max-width:1279px) {
	.navbar__cta {
		font-size: .9rem
	}
}

@media (max-width:899px) {
	.navbar__cta {
		display: none
	}
}

.navbar__seperator {
	background-color: #003049
}

@media (max-width:899px) {
	.navbar__seperator {
		display: none
	}
}

.navbar__burger {
	display: none
}

.navbar__burger div {
	height: 3px;
	width: 25px;
	background-color: #fff;
	margin: 5px;
	border-radius: 10px;
	transition: .3s ease
}

.navbar__logo2 {
	display: none
}

@media (max-width:899px) {
	.navbar__logo2 {
		display: block;
		width: 150px;
		margin-bottom: 7rem;
		margin-top: 4vh
	}
}

@media (max-width:599px) {
	.navbar__logo2 {
		width: 100px
	}
}

.navbar__cta2 {
	display: none
}

.page-overlay {
	transition: .9s !important;
	opacity: 0;
	position: absolute
}

@media (max-width:899px) {
	.navbar__logo {
		position: absolute;
		left: 10vw;
		top: 4vh
	}

	.navbar__burger {
		display: block;
		cursor: pointer;
		position: absolute;
		right: 10vw;
		top: 4vh;
		z-index: 100000
	}

	.navbar__container {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 60%;
		background-color: #142240;
		transform: translateX(-120%);
		z-index: 100000;
		transition: .5s ease-in
	}

	.navbar__list {
		flex-direction: column;
		align-items: center
	}

	.navbar__list li {
		margin-bottom: 5rem
	}

	.navbar__item {
		opacity: 0;
		transform: translateX(50px)
	}

	.navbar__item,
	.navbar__item:hover {
		font-size: 1.5rem
	}

	.navbar__nectar {
		color: #fff;
		text-decoration: none
	}

	.navbar__nectar span {
		color: #ff1a00
	}

	.navbar__nectar:after {
		content: "";
		position: absolute;
		display: inline-block;
		top: 3px;
		border-radius: 50%;
		height: 0;
		width: 0;
		background: #ff1a00
	}
}

@media (max-width:599px) {
	.navbar__container {
		width: 75%
	}

	.navbar__item {
		opacity: 0;
		transform: translateX(50px)
	}

	.navbar__item,
	.navbar__item:hover {
		font-size: 1.2rem
	}
}

.nav-active {
	transform: translateX(0)
}

.fixed {
	position: fixed;
	right: 10%;
	top: 4vh
}

.burger-toggle .navbar__line1 {
	transform: rotate(-45deg) translate(-5px, 6px);
	background-color: #fff
}

.burger-toggle .navbar__line2 {
	opacity: 0;
	background-color: #fff
}

.burger-toggle .navbar__line3 {
	transform: rotate(45deg) translate(-5px, -6px);
	background-color: #fff
}

.overlay-show {
	opacity: 1;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .5);
	z-index: 20
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth
}

@media (min-width:1280px) {
	html {
		overflow: overlay;
		overflow-x: hidden
	}
}

body {
	height: 100%;
	width: 100%;
	font-family: Poppins, sans-serif;
	overflow-x: hidden
}

body,
h1,
h2,
h3,
p {
	margin: 0;
	padding: 0
}

::-webkit-scrollbar {
	width: 10px
}

@media (max-width:1279px) {
	::-webkit-scrollbar {
		width: 0
	}
}

::-webkit-scrollbar-track {
	background-color: transparent
}

::-webkit-scrollbar-thumb {
	width: 10px;
	background-color: #fff;
	border-radius: 30px
}

::-webkit-scrollbar-thumb:hover {
	background-color: hsla(0, 0%, 100%, .7)
}

@media (max-width:1279px) {
	::-webkit-scrollbar-thumb {
		display: none
	}
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

html {
	overflow-x: hidden
}

@media (max-width:1599px) {
	html {
		font-size: 12px
	}
}

@media (max-width:1279px) {
	html {
		font-size: 10px
	}
}

body {
	scroll-behavior: smooth;
	background: linear-gradient(225deg, #ed911f, #fbc316 50%, #ed911f)
}

.mic {
	position: absolute;
	right: 0;
	top: 0;
	z-index: -10;
	overflow-x: hidden
}

@media (max-width:1599px) {
	.mic {
		width: 25%
	}
}

@media (max-width:899px) {
	.mic {
		width: 40%
	}
}

@media (max-width:599px) {
	.mic {
		display: none
	}
}

.navbar__logo {
	width: 250px
}

@media (max-width:1599px) {
	.navbar__logo {
		width: 200px
	}
}

@media (max-width:1279px) {
	.navbar__logo {
		width: 150px
	}
}

@media (max-width:899px) {
	.navbar__logo {
		width: 200px
	}
}

@media (max-width:599px) {
	.navbar__logo {
		width: 150px
	}
}

@media (max-width:899px) {
	.navbar__container {
		background-color: #f39c10
	}
}

.navbar__list {
	align-items: center
}

.navbar__item {
	color: #fff;
	text-decoration: none
}

.navbar__item:hover {
	transform: scale(1.1)
}

.navbar__nectar:after {
	content: "";
	width: 0;
	height: 0y
}

.navbar__empty {
	width: 10rem
}

.navbar__seperator {
	width: 5px;
	height: 5px;
	background-color: #fff;
	transform: rotate(45deg);
	margin: 0 1rem
}

@media (max-width:899px) {
	.navbar__burger {
		top: 6vh
	}
}

@media (max-width:599px) {
	.navbar__burger {
		top: 5.5vh
	}
}

@media (max-width:899px) {
	.navbar__logo2 {
		width: 200px
	}
}

.hero {
	width: 80%;
	margin: 0 auto 20rem
}

@media (max-width:899px) {
	.hero {
		margin-top: 15rem
	}
}

@media (max-width:599px) {
	.hero {
		margin-top: 10rem
	}
}

@media (max-width:399px) {
	.hero {
		width: 90%
	}
}

.hero__heading {
	color: #fff;
	font-size: 3.5rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 5rem;
	opacity: 0;
	transform: translateY(-5rem);
	filter: blur(5px);
	transition: 1s ease
}

.hero__heading--span1 {
	font-weight: 700;
	font-style: italic
}

.hero__heading--span2 {
	font-style: italic
}

@media (max-width:899px) {
	.hero__heading {
		font-size: 2.5rem
	}
}

@media (max-width:599px) {
	.hero__heading {
		font-size: 2rem
	}
}

@media (max-width:399px) {
	.hero__heading {
		font-size: 1.7rem
	}
}

.hero__container {
	display: flex;
	justify-content: space-evenly;
	width: 90%;
	margin: 0 auto
}

.hero__image {
	width: 28%;
	border-radius: 30px;
	border-color: hsla(0, 0%, 100%, .7) hsla(0, 0%, 100%, .7) hsla(0, 0%, 69.4%, .7) hsla(0, 0%, 69.4%, .7);
	border-style: solid;
	border-width: 5px 5px 3px 3px;
	transform: translateY(-5rem);
	opacity: 0;
	filter: blur(5px);
	transition: all calc(200ms*var(--order)) 1s ease
}

@media (max-width:899px) {
	.hero__image {
		width: 40%
	}
}

@media (max-width:599px) {
	.hero__image {
		width: 90%;
		border-radius: 20px
	}
}

@media (max-width:899px) {
	.hero__image--1 {
		display: none
	}
}

@media (max-width:599px) {
	.hero__image--2 {
		display: none
	}
}

.episodes {
	width: 80%;
	margin: 0 auto 10rem
}

@media (max-width:899px) {
	.episodes {
		width: 100%
	}
}

.episodes__heading {
	color: #fff;
	font-size: 3.5rem;
	text-align: center;
	margin-bottom: 5rem;
	transform: translateY(-5rem);
	opacity: 0;
	filter: blur(5px);
	transition: all 1s ease
}

@media (max-width:599px) {
	.episodes__heading {
		font-size: 3rem;
		margin-bottom: 2.5rem
	}
}

.episodes__latest {
	margin-bottom: 7rem
}

.episodes__latest,
.episodes__link1 {
	display: flex;
	justify-content: center
}

.episodes__link1 {
	align-items: center;
	width: 80%;
	position: relative
}

.episodes__link1:hover .episodes__play {
	width: 11rem;
	height: 11rem;
	fill: #fff
}

@media (max-width:1599px) {
	.episodes__link1:hover .episodes__play {
		width: 10rem;
		height: 10rem
	}
}

@media (max-width:599px) {
	.episodes__link1:hover .episodes__play {
		width: 5rem;
		height: 5rem
	}
}

.episodes__content1 {
	width: 100%;
	aspect-ratio: 16/9;
	background: url(../img/doubra-prince.51490333.jpg);
	background-size: cover;
	border-radius: 50px;
	border: 5px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(5rem);
	opacity: 0;
	filter: blur(5px);
	transition: all 1s ease;
	transition-delay: .1s
}

@media (max-width:1599px) {
	.episodes__content1 {
		border: 4px solid #fff
	}
}

@media (max-width:1279px) {
	.episodes__content1 {
		border: 3px solid #fff;
		border-radius: 30px
	}
}

@media (max-width:599px) {
	.episodes__content1 {
		aspect-ratio: 16/10;
		border-radius: 20px;
		border: 2px solid #fff
	}
}

.episodes__play {
	width: 10rem;
	height: 10rem;
	transition: .3s;
	fill: hsla(0, 0%, 100%, .7)
}

@media (max-width:1599px) {
	.episodes__play {
		width: 9rem;
		height: 9rem
	}
}

@media (max-width:599px) {
	.episodes__play {
		width: 6rem;
		height: 6rem
	}
}

.episodes__overlay {
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 50px;
	background-image: radial-gradient(transparent, rgba(0, 0, 0, .25));
	border: 5px solid #fff;
	position: absolute;
	top: 0;
	transform: translateY(5rem);
	filter: blur(5px);
	transition: transform 1s ease, filter 1s ease, opacity .5s;
	transition-delay: .1s
}

.episodes__overlay:hover {
	opacity: 0
}

@media (max-width:1599px) {
	.episodes__overlay {
		border: 4px solid #fff
	}
}

@media (max-width:1279px) {
	.episodes__overlay {
		border: none;
		background: none
	}
}

.episodes__more {
	display: flex;
	justify-content: space-between
}

@media (max-width:899px) {
	.episodes__more {
		justify-content: space-around
	}
}

@media (max-width:599px) {
	.episodes__more {
		flex-direction: column
	}
}

.episodes__link2 {
	width: 30%;
	aspect-ratio: 16/9;
	border-radius: 50px;
	border: 5px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform: translateY(-5rem);
	opacity: 0;
	filter: blur(5px);
	transition: all 1s ease;
	transition-delay: calc(200ms*var(--order))
}

@media (max-width:1599px) {
	.episodes__link2 {
		border-radius: 30px;
		border: 4px solid #fff
	}
}

@media (max-width:1279px) {
	.episodes__link2 {
		border: 3px solid #fff;
		border-radius: 20px
	}
}

@media (max-width:899px) {
	.episodes__link2 {
		border: 2.5px solid #fff;
		border-radius: 15px
	}
}

@media (max-width:599px) {
	.episodes__link2 {
		aspect-ratio: 16/10;
		border: 2px solid #fff;
		border-radius: 10px;
		margin-bottom: 2rem;
		margin-top: 2rem;
		margin-left: 5%;
		width: 35%
	}
}

.episodes__link2-1 {
	background: url(../img/strategy.47d8f4bc.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-clip: content-box
}

.episodes__link2-2 {
	background: url(../img/branding.8de21a36.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-clip: content-box
}

.episodes__link2-3 {
	background: url(../img/damiana.009fe8cb.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-clip: content-box
}

.episodes__play2 {
	z-index: 1;
	fill: #fff;
	transition: .4s;
	width: 4rem;
	height: 4rem
}

@media (max-width:1599px) {
	.episodes__play2 {
		width: 3rem;
		height: 3rem
	}
}

@media (max-width:700px) {
	.episodes__play2 {
		width: 2rem;
		height: 2rem
	}
}

@media (max-width:599px) {
	.episodes__play2 {
		width: 1.5rem;
		height: 1.5rem
	}
}

.episodes__overlay2 {
	width: 40%;
	aspect-ratio: 16/9;
	border-radius: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, .5);
	transition: .4s
}

@media (max-width:1279px) {
	.episodes__overlay2 {
		border-radius: 10px;
		background: rgba(0, 0, 0, .6)
	}
}

@media (max-width:599px) {
	.episodes__overlay2 {
		border-radius: 5px
	}
}

.episodes__title {
	display: none
}

@media (max-width:599px) {
	.episodes__title {
		display: block;
		position: absolute;
		margin-left: 250%;
		width: 130%;
		color: #fff;
		font-size: 1.5rem
	}
}

.episodes__break {
	display: none
}

@media (max-width:599px) {
	.episodes__break {
		display: block;
		width: 80%;
		margin: 0 auto;
		height: 1px;
		background-color: #fff
	}
}

@media (min-width:1280px) {

	.episodes__overlay2,
	.episodes__play2 {
		opacity: 0
	}

	.episodes__link2:hover .episodes__overlay2,
	.episodes__link2:hover .episodes__play2 {
		opacity: 1
	}
}

.hosts {
	width: 80%;
	margin: 0 auto 10rem
}

@media (max-width:599px) {
	.hosts {
		width: 90%
	}
}

@media (max-width:350px) {
	.hosts {
		width: 100%
	}
}

.hosts__heading {
	font-size: 3.5rem;
	text-align: center;
	color: #fff;
	margin-bottom: 5rem;
	transform: translateY(-5rem);
	opacity: 0;
	filter: blur(5px);
	transition: all 1s ease
}

@media (max-width:599px) {
	.hosts__heading {
		font-size: 3rem
	}
}

.hosts__container {
	display: flex;
	justify-content: center;
	align-items: center
}

@media (max-width:599px) {
	.hosts__container {
		justify-content: space-around
	}
}

.hosts__subcontainer {
	margin: 0 5rem;
	display: flex;
	flex-direction: column;
	align-items: center
}

@media (max-width:599px) {
	.hosts__subcontainer {
		margin: 0
	}
}

.hosts__picture-1 {
	width: 25rem;
	aspect-ratio: 11/14;
	background-image: url(../img/samy.4fec6b8d.jfif);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	border: 5px solid #fff;
	border-radius: 30px;
	transform: translateX(-50%);
	opacity: 0;
	filter: blur(5px);
	transition: scale .3s ease-out, transform 1s ease, opacity 1s ease, filter 1s ease
}

@media (max-width:1599px) {
	.hosts__picture-1 {
		border: 4px solid #fff
	}
}

@media (max-width:1279px) {
	.hosts__picture-1 {
		border: 3px solid #fff;
		border-radius: 20px
	}
}

@media (max-width:899px) {
	.hosts__picture-1 {
		width: 20rem
	}
}

@media (max-width:599px) {
	.hosts__picture-1 {
		border: 2px solid #fff;
		width: 15rem
	}
}

@media (max-width:350px) {
	.hosts__picture-1 {
		width: 13rem
	}
}

@media (min-width:1280px) {
	.hosts__picture-1:hover {
		scale: 1.1
	}
}

.hosts__picture-2 {
	width: 25rem;
	aspect-ratio: 11/14;
	background-image: url(../img/mehdi.07dc76df.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	border: 5px solid #fff;
	border-radius: 30px;
	transform: translateX(50%);
	opacity: 0;
	filter: blur(5px);
	transition: scale .3s ease-out, transform 1s ease, opacity 1s ease, filter 1s ease
}

@media (max-width:1599px) {
	.hosts__picture-2 {
		border: 4px solid #fff
	}
}

@media (max-width:1279px) {
	.hosts__picture-2 {
		border: 3px solid #fff;
		border-radius: 20px
	}
}

@media (max-width:899px) {
	.hosts__picture-2 {
		width: 20rem
	}
}

@media (max-width:599px) {
	.hosts__picture-2 {
		border: 2px solid #fff;
		width: 15rem
	}
}

@media (max-width:350px) {
	.hosts__picture-2 {
		width: 13rem
	}
}

@media (min-width:1280px) {
	.hosts__picture-2:hover {
		scale: 1.1
	}
}

.hosts__name {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-top: 1.5rem;
	transform: translateY(5rem);
	opacity: 0;
	filter: blur(5px);
	transition: all 1s ease
}

@media (max-width:599px) {
	.hosts__name {
		font-size: 1.5rem
	}
}

.testimonials {
	width: 80%;
	margin: 0 auto 15rem
}

@media (max-width:1279px) {
	.testimonials {
		width: 85%
	}
}

.testimonials__heading {
	font-size: 3.5rem;
	text-align: center;
	color: #fff;
	margin-bottom: 5rem;
	transform: translateY(-5rem);
	opacity: 0;
	filter: blur(5px);
	transition: all 1s ease
}

@media (max-width:599px) {
	.testimonials__heading {
		font-size: 3rem
	}
}

.testimonials__container {
	display: flex;
	justify-content: space-between
}

@media (max-width:899px) {
	.testimonials__container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 5rem
	}
}

@media (max-width:599px) {
	.testimonials__container {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(4, 1fr)
	}
}

.testimonials__subcontainer {
	width: 17rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff
}

@media (max-width:899px) {
	.testimonials__subcontainer {
		width: 100%
	}
}

.testimonials__picture {
	width: 15rem;
	height: 15rem;
	border-radius: 50%;
	border-color: #e7e7e7 hsla(0, 0%, 100%, .9) hsla(0, 0%, 100%, .9) #e7e7e7;
	border-style: solid;
	border-width: 5px;
	margin-bottom: 2rem;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .5);
	transform: translateX(-100%) scale(1.5);
	opacity: 0;
	filter: blur(5px);
	transition: transform calc(100ms*var(--order)) .8s ease, opacity calc(100ms*var(--order)) .8s ease, filter calc(100ms*var(--order)) .8s ease, box-shadow .3s ease-out, scale .3s ease-out
}

@media (max-width:1279px) {
	.testimonials__picture {
		border-color: #e7e7e7 hsla(0, 0%, 100%, .9) hsla(0, 0%, 100%, .9) #e7e7e7;
		border-style: solid;
		border-width: 3px
	}
}

.testimonials__picture--1 {
	background-image: url(../img/sanfara.3900f521.jpg);
	filter: brightness(95%)
}

.testimonials__picture--1,
.testimonials__picture--2 {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%
}

.testimonials__picture--2 {
	background-image: url(../img/souha.e237c1fa.jpg)
}

.testimonials__picture--3 {
	background-image: url(../img/prince.dbfa3d31.jfif)
}

.testimonials__picture--3,
.testimonials__picture--4 {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%
}

.testimonials__picture--4 {
	background-image: url(../img/abdelwaheb.da8952f9.jpg)
}

@media (min-width:1280px) {
	.testimonials__picture:hover {
		box-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
		scale: 1.1
	}
}

.testimonials__name {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	transform: translateY(5rem)
}

.testimonials__name,
.testimonials__par {
	opacity: 0;
	filter: blur(5px);
	transition: 1s ease;
	animation-delay: calc(.8s + 100ms*var(--order))
}

.testimonials__par {
	text-align: center;
	transform: translateY(10rem)
}

@media (max-width:899px) {
	.testimonials__par {
		max-width: 25rem
	}
}

.footer__subcontainer1 {
	transition-duration: .7s
}

@media (max-width:899px) {
	.footer__subcontainer1 {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		margin-top: 0
	}
}

.footer__subcontainer2 {
	transition-duration: .7s
}

.footer__copy {
	margin-bottom: 5rem
}

@media (max-width:899px) {
	.footer__copy {
		font-size: 1.5rem
	}
}

.footer__socials {
	width: 60%
}

@media (max-width:399px) {
	.footer__socials {
		width: 90%
	}
}

.footer__social-icon {
	width: 4rem
}

.footer__contact input {
	border: 5px solid hsla(0, 0%, 100%, .7)
}

@media (max-width:1599px) {
	.footer__contact input {
		border: 4px solid hsla(0, 0%, 100%, .7)
	}
}

@media (max-width:1279px) {
	.footer__contact input {
		height: 4rem;
		border: 3px solid hsla(0, 0%, 100%, .7)
	}
}

.footer__contact input::placeholder {
	color: hsla(0, 0%, 100%, .7);
	font-weight: 500
}

.footer__contact textarea {
	border: 5px solid hsla(0, 0%, 100%, .7)
}

.footer__contact textarea::placeholder {
	color: hsla(0, 0%, 100%, .7);
	font-weight: 500
}

@media (max-width:1599px) {
	.footer__contact textarea {
		border: 4px solid hsla(0, 0%, 100%, .7)
	}
}

@media (max-width:1279px) {
	.footer__contact textarea {
		border: 3px solid hsla(0, 0%, 100%, .7)
	}
}

@media (max-width:375px) {
	.footer__contact textarea {
		margin-bottom: 1rem
	}
}

@media (max-width:1279px) {
	.footer__cta {
		font-size: 1.3rem
	}
}

.show {
	opacity: 1;
	transform: translate(0) scale(1);
	filter: blur(0)
}

/*# sourceMappingURL=/_vibration.b74d16f8.css.map */
