/* Colors */
:root {
	--color-page-bg: #f1ebe8;
	--color-main: #FF9D9D;
	--color-sub1: #B7CB4F;
	--color-sub2: #C4769B;
	--color-sub3: #63D3EF;
	--color-text: #131010;
	--color-text-reversed: #fff;
	--color-text-second: #D16C6C;
	--color-caption: #999;
	--sour_gummy: "Sour Gummy", sans-serif;
	--assistant: "Assistant", sans-serif;

	/* mobile variables */
	--mobile-interview-title: 700 3.157rem/1.2 "Sour Gummy", sans-serif;
	--mobile-pullquote: 700 2.369rem/1.2 "Sour Gummy", sans-serif;
	--mobile-pullquote-color: #D16C6C;
	--mobile-pullquote-margin: 0 0 48px 0;

	/* desktop variable */
	--desktop-interview-title: 700 4.209rem/1.2 "Sour Gummy", sans-serif;
	--desktop-pullquote: 700 3.157rem/1.2 "Sour Gummy", sans-serif;
	--desktop-pullquote-margin: 72px;

	.dark-mode {
		--color-page-bg: #272426;
		--color-text: #fff;
		--color-text-reversed: #ffffff;
		--color-sub1: #95a837;
		--color-text-second: #FF9D9D;
		--mobile-pullquote-color: #FF9D9D;
		--color-main: #D16C6C;
	}
}

/* Typography */
:root {
	/* Perfect Fith */
	/* --size-080: .444rem;
	--size-090: .667rem;
	--size-100: 1rem;		
	--size-200: 1.5rem;
	--size-300: 2.25rem;
	--size-400: 3.375rem;
	--size-500: 5.063rem;
	--size-600: 7.594rem;
	--size-700: 11.391rem;	 */

	/* Perfect Fourth */
	--size-080: .563rem;
	--size-090: .75rem;
	--size-100: 1rem;
	--size-200: 1.333rem;
	--size-300: 1.777rem;
	--size-400: 2.369rem;
	--size-500: 3.157rem;
	--size-600: 4.209rem;
	--size-700: 5.61rem;

	/* Minor Third */
	/* --size-080: .0694rem;
	--size-090: .0833rem;
	--size-100: 1rem;		
	--size-200: 1.2rem;
	--size-300: 1.44rem;
	--size-400: 1.728rem;
	--size-500: 2.074rem;
	--size-600: 2.488rem;
	--size-700: 2.986rem;	 */

	/* font-weight */
	--weight-100: 100;
	--weight-200: 200;
	--weight-300: 300;
	--weight-400: 400;
	/*regular*/
	--weight-500: 500;
	--weight-600: 600;
	--weight-700: 700;
	/*bold*/
	--weight-800: 800;
	--weight-900: 900;

	/* margin */
	--margin-side-mobile: 16px;
	--margin-side-desktop: 74px;

	/* line-height */
	--line-height-100: 1;
	--line-height-120: 1.2;
	--line-height-130: 1.3;
	--line-height-140: 1.4;


	/* @media screen and (min-width: 400px) {
		font-size: 1.05rem;
	}
	@media screen and (min-width: 600px) {
		font-size: 1.1rem;
	}
	@media screen and (min-width: 800px) {
		font-size: 1.2rem;
	}
	@media screen and (min-width: 1000px) {
		font-size: 1.25rem;
	}
	@media screen and (min-width: 1200px) {
		font-size: 1.3rem;
	}
	@media screen and (min-width: 1400px) {
		font-size: 1.4rem;
	} */
}

/* common */
.mobile__button {
	width: 52px;
	height: 52px;
	border-radius: 50px;
	background-color: var(--color-main);
	color: var(--color-text-reversed);
	margin-top: 8px;
	transition: width 0.2s ease;
	font-size: var(--size-200);
}

.mobile__button>a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 800px) {
	.mobile__button:hover {
		background-color: var(--color-main);
		width: 100%;
		color: var(--color-text-reversed);
		border-radius: 50px;
		text-align: right;
		padding-right: 16px;
	}
}



/* all */
*,
a {
	text-decoration: none;
}


body {
	padding-top: 130px;
	line-height: 1.4;
	background-color: var(--color-page-bg);
	color: var(--color-text);
	font-family: var(--assistant);
	font-size: var(--size-100);
}

/* header */

.header {
	position: relative;
}

.header__content__wrap {
	background-color: var(--color-main);
	padding: 16px;
	border-radius: 30px;
	box-sizing: border-box;
	position: fixed;
	z-index: 1;
	top: 16px;
	width: calc(100% - 32px);
	margin: 0 var(--margin-side-mobile);
	display: flex;
	justify-content: space-between;
	align-items: center;

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

	@media screen and (min-width: 800px) {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

.logo__box>a {
	font: bold var(--size-200) var(--sour_gummy);
	text-decoration: none;
	color: var(--color-text-reversed);
}

.sound__icon,
.darkmode__icon,
.menu__icon,
.close__icon, .nosound__icon {
	width: 28px;
	filter: invert(1);
}

.mobile__close__button {
	z-index: 100;
}

.mobile__close__button, .nosoundbtn {
	display: none;
}

/* mobile navigation */
.mobile__nav {
	display: none;
	position: fixed;
	width: 100%;
	top: 0;
	height: 100vh;
	padding-top: 130px;
	background: url('../images/mobile\ menu\ bg.svg') no-repeat bottom center;
	background-size: cover;
	color: var(--color-text-reversed);
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;

	@media screen and (min-width: 800px) {
		padding-bottom: 100%;
	}
}

.mobile__nav.dark {
	background:
		url('../images/mobile\ menu\ bg_dark.svg') no-repeat bottom center;
	background-size: cover;
	background-blend-mode: multiply;
}

/* Show the mobile navigation */
.mobile__nav.show {
	display: block;
	opacity: 1;
	z-index: 0;
}

/* Disable scrolling on the body */
.no-scroll {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

.mobile__nav__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 var(--margin-side-mobile) 48px;
	padding: 16px 0;
}

.mobile__nav__content {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 var(--margin-side-mobile);
}

.mobile__nav__list {
	margin-bottom: 28px;
}

.mobile__nav__list>li {
	margin-bottom: 28px;
}

.mobile__nav__list>li>a {
	font: var(--weight-700) var(--size-400) var(--sour_gummy);
}

.search-container {
	position: relative;
	width: 450px;
	height: 52px;
	margin-bottom: 28px;

	@media screen and (min-width: 800px) {
		width: 800px;
	}
}

.search-container>input {
	width: 100%;
	height: 52px;
	padding-left: 16px;
	border-radius: 50px;
	background-color: var(--color-text-reversed);
	color: var(--color-text);
	font-size: var(--size-200);
	border: none;
	outline: none;
}

.search-button>img {
	width: 28px;
	height: 28px;
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	opacity: .8;
}

/*  */

/* footer */
.footer {
	text-align: center;
}

.social__media {
	padding: 20px 0;
	border-top: 2px solid var(--color-sub1);
	background-color: var(--color-text-reversed);
	background: var(--color-page-bg);
}

.contact__us {
	padding: 20px 0;
	background-color: var(--color-sub1);
	font-weight: 700;
}

.info {
	background-color: black;
	padding: 20px 0;
	color: var(--color-text-reversed);
}

.info>.footer__logo>a {
	font: bold var(--size-200) var(--sour_gummy);
}

.info>p {
	margin-bottom: 8px;
}

.info>small {
	font-size: var(--size-090);
	color: var(--color-caption);
}