:root {
	--primary-color: #c51c2f;
	--secondary-color: #ffe0e4;
	--like-secondary-color: #fff3f5;
	--tertiary-color: #ffcb3c;
	--border-radius: 5px;
	--white: #ffffff;
	--dark-blue: #444;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 10px;
}

body {
	background-color: #ffffff;
	font-family: Inter;
	overflow-x: hidden;
}

#main {
	max-width: 1440px;
	overflow-x: hidden;
	margin: 0 auto 0 auto;
	padding: 0 75px;
}

.primary-button {
	font-family: "Lato";
	font-style: normal;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 28px;
	height: 50px;
	display: inline-block;
	text-align: center;
	padding: 10px 46px;
	background: var(--primary-color);
	border-radius: 5px;
	border: none;
	color: var(--white);
}

a.primary-button:hover {
	background-color: rgb(197 28 47 / 85%);
	text-decoration: none;
	color: var(--white);
}

.primary-button.second {
	display: none !important;
}

.secondary-button {
	font-family: "Lato";
	font-style: normal;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 28px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 46px;
	background: transparent;
	border-radius: 5px;
	border: 1.5px solid var(--primary-color);
	color: var(--primary-color);
}

a.secondary-button:hover {
	text-decoration: none;
	color: var(--primary-color);
	background-color: rgba(0, 0, 0, 0.1);
}

.tertiary-button {
	font-family: "Lato";
	font-style: normal;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 28px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 46px;
	border-radius: 5px;
	border: none;
	background-color: var(--tertiary-color);
}

.top-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
}

.nav-right {
	position: relative;
	height: 40px;
}

.nav-right a.icon {
	display: none;
}

ul.nav-buttons {
	display: flex;
	justify-content: flex-end;
	list-style: none;
}

ul a {
	text-decoration: none;
}

ul a:hover {
	text-decoration: none;
}

li.nav-button {
	padding: 12px 15px;
	border-radius: 5px;
	color: #676767;
	font-family: "Lato";
	font-style: normal;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 19px;
}

li.nav-button:hover {
	color: var(--primary-color);
}

li.nav-button.active {
	padding: 12px 25px;
	background-color: var(--primary-color);
	color: white !important;
}

li.nav-button.active:hover {
	background-color: rgb(197 28 47 / 85%);
}

section {
	margin: 30px 0 120px;
}

/*  */
/*  */
/*  */
/* section-1 */
/*  */
/*  */
/*  */

.section-1 {
	display: flex;
}

.section-1 .left {
	display: flex;
	flex-direction: column;
	flex: 4;
	padding: 80px 0 120px;
}

.section-1 .right {
	display: flex;
	flex: 5;
	opacity: 0;
	background-image: url(../images/hero.png);
	background-position: 200px 0;
	background-repeat: no-repeat;
	background-size: contain;
	transition: background-position 1s, opacity 1s;
}

.section-1 .right.active {
	opacity: 1;
	background-position: center;
}

.section-1 .title {
	font-style: normal;
	font-weight: 700;
	font-size: 5rem;
	line-height: 130%;
	color: var(--primary-color);
	width: 409px;
	opacity: 0;
	transition: opacity 1s;
}

.section-1 .title.active {
	opacity: 1;
}

.section-1 .subtitle {
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	font-size: 2.2rem;
	line-height: 150%;
	color: #484848;
	width: 353px;
	margin-bottom: 25px;
	opacity: 0;
	transition: opacity 1s;
	transition-delay: 0.5s;
}

.section-1 .subtitle.active {
	opacity: 1;
}

.button-area {
	display: flex;
	opacity: 0;
	transition: opacity 1s;
	transition-delay: 0.5s;
}

.button-area.active {
	display: flex;
	opacity: 1;
}

/*  */
/*  */
/*  */
/* section-2 */
/*  */
/*  */
/*  */
.section-2 .title-area {
	display: flex;
	justify-content: space-between;
	margin-bottom: 21px;
}

.section-2 .title {
	font-style: normal;
	font-weight: 700;
	font-size: 4.8rem;
	line-height: 64px;
	color: var(--primary-color);
	width: 580px;
	transform: translateX(-100px);
	opacity: 0;
	transition: transform 1s, opacity 1.5s;
}

.section-2 .title.active {
	transform: translateX(0);
	opacity: 1;
}

.section-2 .subtitle {
	font-family: "Lato";
	width: 474px;
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 150%;
	color: #484848;
	margin-bottom: 50px;
	transform: translateX(-100px);
	opacity: 0;
	transition: transform 1.5s, opacity 1.5s;
}

.section-2 .subtitle.active {
	transform: translateX(0);
	opacity: 1;
}

.can-do {
	background-color: var(--like-secondary-color);
	padding: 75px 45px;
	border-radius: 20px;
	min-height: 370px;
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1.5s, opacity 2s;
}

.can-do.active {
	transform: translateY(0);
	opacity: 1;
}

.can-do .header {
	margin-top: 10px;
	font-style: normal;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 38px;
	color: var(--primary-color);
}

.can-do .text {
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 150%;
	color: #594345;
	margin: 0 !important;
}

/*  */
/*  */
/*  */
/* section-3 */
/*  */
/*  */
/*  */
.section-3 {
	background-image: url(../images/polkadots.png);
	background-color: #fffaf8;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 20px;
	padding: 80px 60px;
	display: flex;
	flex: 1;
}

.section-3 .left,
.section-3 .right {
	flex: 1;
}

.section-3 .sub-heading {
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 32px;
	letter-spacing: 0.35em;
	color: #594345;
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1.5s, opacity 1.5s;
}

.section-3 .sub-heading.active {
	transform: translateY(0);
	opacity: 1;
}

.section-3 .title {
	font-style: normal;
	font-weight: 700;
	font-size: 4.8rem;
	line-height: 64px;
	color: var(--primary-color);
	width: 448px;
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1.5s, opacity 1.5s;
}

.section-3 .title.active {
	transform: translateY(0);
	opacity: 1;
}

.section-3 .subtitle {
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 153%;
	color: #594345;
	max-width: 395px;
	margin: 25px 0;
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1.5s, opacity 1.5s;
}

.section-3 .subtitle.active {
	transform: translateY(0);
	opacity: 1;
}

.info-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.section-3-info {
	background-color: var(--white);
	display: flex;
	align-items: flex-start;
	border-radius: 20px;
	padding: 15px;
	margin-bottom: 25px;
	width: 490px;
	transform: translateX(100px);
	opacity: 0;
	transition: transform 1s, opacity 1.5s;
}

.section-3-info.active {
	transform: translateX(0);
	opacity: 1;
}

.section-3-icon {
	width: 44px;
	height: 44px;
	margin-right: 25px;
}

.section-3-writeup {
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 150%;
	color: #594345;
	margin: 0;
}

.section-3-writeup span {
	font-family: "Lato";
	font-weight: 700;
}

.section-3 .primary-button {
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1s, opacity 1.5s;
}

.section-3 .primary-button.active {
	transform: translateY(0);
	opacity: 1;
}

/*  */
/*  */
/*  */
/* section-4 */
/*  */
/*  */
/*  */

.section-4 .sub-heading {
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 32px;
	letter-spacing: 0.35em;
	color: #594345;
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1.5s, opacity 1.5s;
}

.section-4 .title {
	font-style: normal;
	font-weight: 700;
	font-size: 4.8rem;
	line-height: 64px;
	color: var(--primary-color);
	width: 448px;
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1.5s, opacity 1.5s;
}

.section-4 .sub-heading.active,
.section-4 .title.active {
	transform: translateX(0);
	opacity: 1;
}

.section-4 .right {
	display: flex;
	flex-direction: column;
	width: 395px;
	align-self: flex-end;
}

.section-4 .right .text {
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 150%;
	color: #594345;
}

.section-4 .right .text,
.section-4 .primary-button {
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1.5s, opacity 1.5s;
}

.section-4 .right .text.active,
.section-4 .primary-button.active {
	transform: translateY(0);
	opacity: 1;
}

.box {
	padding: 25px;
	border: 1px solid #e7e5ea;
	border-radius: 10px;
	min-height: 221px;
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1.5s, opacity 2s;
}

.box.active {
	transform: translateY(0);
	opacity: 1;
}

.box-title {
	font-family: "Lato";
	font-style: normal;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 32px;
	color: #000000;
	margin: 12px 0;
}

.box-text {
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 150%;
	color: #594345;
}

/*  */
/*  */
/*  */
/* section-5 */
/*  */
/*  */
/*  */
.section-5 {
	background-color: #fffaf8;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 20px;
	padding: 80px 60px;
	display: flex;
	margin-bottom: 0;
	/* perspective: -100px; */
	perspective-origin: center center;
}

.section-5 .left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	padding: 115px 0 115px;
	transform-style: preserve-3d;
	transform: rotateX(45deg);
	transition: all 2s;
}

.section-5 .title {
	font-style: normal;
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 46px;
	color: var(--primary-color);
	width: 390px;
	margin-bottom: 15px;
}

.section-5 .text {
	font-family: "Lato";
	width: 350px;
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 150.8%;
	color: #303030;
}

.section-5 .right {
	background-image: url(../images/phone.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	flex: 1;
	transform-style: preserve-3d;
	transform: rotateX(45deg);
	transition: all 2s;
}

.section-5 .right.active,
.section-5 .left.active {
	transform: rotateX(0);
}

/*  */
/*  */
/*  */
/* section-6 */
/*  */
/*  */
/*  */
.section-6 .left {
	flex: 1;
	background-color: rgba(255, 224, 228, 1);
	border-radius: 20px;
	padding: 60px;
}

.section-6 .right {
	flex: 1;
	background-color: rgba(241, 247, 255, 1);
	border-radius: 20px;
	padding: 60px;
}

.section-6 .left,
.section-6 .right,
.section-6 .title,
.section-6 .text {
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1s, opacity 1.5s;
}

.section-6 .left.active,
.section-6 .right.active,
.section-6 .title.active,
.section-6 .text.active {
	transform: translateY(0);
	opacity: 1;
}

.section-6 .title {
	width: 387.26px;
	font-style: normal;
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 46px;
	color: var(--primary-color);
	margin: 20px 0;
}

.section-6 .right .title {
	color: #2d5ac6 !important;
}

.section-6 .text {
	font-family: "Lato";
	width: 457.11px;
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 150.8%;
	color: #303030;
}

.section-6-img {
	width: 100%;
	aspect-ratio: 1;
}

/*  */
/*  */
/*  */
/* section-7 */
/*  */
/*  */
/*  */
.section-7 {
	display: flex;
	flex-direction: column;
}

.section-7 .title {
	width: 352px;
	font-style: normal;
	font-weight: 700;
	font-size: 4.8rem;
	line-height: 64px;
	color: var(--primary-color);
}

.section-7 .subtitle {
	font-family: "Lato";
	width: 345px;
	font-style: normal;
	font-weight: 400;
	font-size: 2.2rem;
	line-height: 32px;
	color: #484848;
}

.section-7 .title,
.section-7 .subtitle,
.patners,
.patners-row {
	transform: translateY(100px);
	opacity: 0;
	transition: transform 1s, opacity 1.5s;
}

.section-7 .title.active,
.section-7 .subtitle.active,
.patners.active,
.patners-row.active {
	transform: translateY(0);
	opacity: 1;
}

.patners {
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	font-size: 2.2rem;
	line-height: 32px;
	color: var(--primary-color);
	align-self: center;
	margin-top: 100px;
}

.patner-img {
	padding: 0 10px;
	width: 200px;
}

.patners-row {
	display: flex;
	/* justify-content: space-around; */
	align-items: center;
	overflow-x: scroll;
}

/*  */
/*  */
/*  */
/* section-8 */
/*  */
/*  */
/*  */

.section-8 {
	background-color: #fff7f3;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 150px 0;
	border-radius: 20px;
}

.section-8 .title {
	font-style: normal;
	font-weight: 700;
	font-size: 4.8rem;
	line-height: 64px;
	text-align: center;
	color: var(--primary-color);
}

.section-8 .subtitle {
	font-family: "Lato";
	width: 645px;
	font-style: normal;
	font-weight: 400;
	font-size: 2.2rem;
	line-height: 32px;
	text-align: center;
	color: #303030;
}

.form-items {
	display: flex;
}

input.subscribe {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 10px 46px 10px 25px;
	width: 350px;
	height: 50px;
	border: 1.5px solid rgba(48, 48, 48, 0.5);
	border-radius: 5px;
	background: transparent;
}

/*  */
/*  */
/*  */
/* .section-9 */
/*  */
/*  */
/*  */
.section-9 {
	margin-bottom: 0;
}

.contact,
.copyright-area {
	display: flex;
	justify-content: space-between;
}

.section-9 .header {
	font-style: normal;
	font-weight: 500;
	font-size: 2rem;
	line-height: 24px;
	color: #424242;
}

.section-9 .text {
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 24px;
	color: #424242;
}

p.copyright {
	color: #424242;
}

ul.social-links {
	display: flex;
	list-style: none;
}

li.social-link {
	text-decoration: none;
	margin: 0 10px;
	color: #424242;
}

.schrev-contact-card {
	background: var(--white);
	box-sizing: border-box;
	box-shadow: 8px 12px 24px rgba(36, 71, 113, 0.06);
	border-radius: 20px;
	height: 100%;
	position: relative;
}
.schrev-contact-card-alt {
	background: var(--primary-color);
	border-radius: 20px;
	height: 100%;
	padding: 45px 30px 45px 25px;
}
.schrev-contact-card-alt h3 {
	font-family: var(--main-font-style);
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	color: var(--white);
	margin-bottom: 30px;
}
.schrev-contact-card-alt h5 {
	font-family: var(--main-font-style);
	color: var(--white);
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 0.28em;
}
.schrev-contact-card-alt p {
	font-family: var(--main-font-style);
	color: var(--white);
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	opacity: 0.8;
}

.schrev-contact-form h3 {
	font-family: var(--main-font-style);
	color: var(--dark-blue);
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 23px;
	letter-spacing: -1px;
}
.schrev-contact-form {
	padding: 20px 40px;
	height: 100%;
}
.schrev-contact-form form {
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}
.schrev-contact-form .contact-input {
	border: 1px solid var(--dark-blue);
	box-sizing: border-box;
	border-radius: 10px;
	padding: 5px 20px;
	height: 48px;
	font-size: 14px;
}
.schrev-contact-form .contact-textarea {
	border: 1px solid var(--dark-blue);
	box-sizing: border-box;
	border-radius: 10px;
	padding: 5px 20px;
	height: 186px;
	resize: none;
	font-size: 14px;
}
.contact-textarea::-webkit-input-placeholder {
	font-family: var(--body-font-style);
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 27px;
	color: #4a4a4a;
}

.schrev-contact-form button {
	background: var(--primary-color);
	border-radius: 5px;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
	height: 48px;
	letter-spacing: -0.36px;
	color: var(--white);
	border: none;
	margin-top: 20px;
}
.schrev-contact-form .alert button {
	height: 0px;
	margin-top: 0px;
	background: none;
	color: red;
}
.contact-input::-webkit-input-placeholder,
.contact-textarea::-webkit-input-placeholder {
	font-size: 16px;
}

.error {
	margin-top: 3px;
	color: red;
	font-size: 10px;
}

@media only screen and (max-width: 1200px) {
	#main {
		padding: 0 45px;
	}

	.section-1 .left {
		display: flex;
		flex-direction: column;
		flex: 4;
		padding: 80px 0 120px;
	}

	.section-1 .right {
		display: flex;
		flex: 5;
		background-image: url(../images/hero.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}

	.can-do {
		/* background-color: var(--secondary-color); */
		padding: 35px 45px 25px;
		/* border-radius: 20px; */
		min-height: 380px;
	}

	.section-3 {
		display: block;
		flex: 1;
	}

	.section-3 .left,
	.section-3 .right {
		flex: 1;
	}

	.section-3 .title {
		width: 100%;
	}

	.section-3 .subtitle {
		width: 100%;
	}

	.info-wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		flex-direction: row;
		align-items: flex-start;
		margin-top: 50px;
		padding: 0 !important;
	}

	.section-3-info {
		width: 48%;
		min-height: 130px;
	}

	.box {
		min-height: 270px;
	}

	.section-6 .title,
	.section-6 .text {
		width: auto;
	}
}

@media only screen and (max-width: 1050px) {
	.section-1 .right {
		display: block;
		width: 100%;
		aspect-ratio: 1;
		background-image: url(../images/hero.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
}

@media only screen and (max-width: 950px) {
	section {
		margin: 30px 0 60px;
	}

	.section-1 {
		display: block;
	}

	.section-1 .title,
	.section-1 .subtitle {
		max-width: auto;
		width: auto;
	}

	.section-1 .right {
		display: block;
		width: 100%;
		aspect-ratio: 1;
		background-image: url(../images/hero.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}

	.section-1 .primary-button,
	.section-1 .secondary-button {
		width: 50% !important;
	}

	.section-2 .title-area {
		flex-direction: column;
	}

	.section-2 .subtitle {
		width: auto;
	}

	.can-do {
		padding: 45px;
		border-radius: 20px;
		min-height: 200px;
		margin-bottom: 15px;
	}

	.section-3-info {
		width: 100%;
		min-height: 130px;
	}

	.section-4 .title {
		width: auto;
	}

	.section-4 .right {
		width: auto;
		align-self: flex-start;
		padding: 0;
	}

	.section-5 .left {
		padding: 40px 0 40px;
	}

	.box {
		min-height: 294px;
	}

	.section-5 {
		padding: 30px;
	}

	.section-6 .left,
	.section-6 .right {
		padding: 30px;
		min-height: 630px;
	}

	.section-6 .title {
		font-size: 2.8rem;
	}

	.section-7 .title,
	.section-7 .subtitle {
		width: auto;
	}

	.patner-img {
		padding: 0 25px;
	}
}

@media only screen and (max-width: 550px) {
	#main {
		padding: 0 15px;
	}

	.top-nav {
		padding: 30px 0 15px;
	}

	section {
		margin: 70px 0 30px;
	}

	.section-1 {
		margin-top: 20px;
	}

	.section-1 .primary-button,
	.section-1 .secondary-button {
		width: 100% !important;
		margin: 0 0 15px !important;
	}

	.button-area {
		display: block !important;
	}

	.section-1 .title {
		font-size: 4rem;
	}

	.section-1 .subtitle {
		font-size: 1.8rem;
	}

	.section-1 .left {
		padding: 20px 0 20px;
	}

	.section-2 .title {
		width: auto;
		font-size: 3rem;
		line-height: 115%;
	}

	.section-2 .subtitle {
		width: auto;
		font-size: 1.6rem;
		margin-bottom: 15px;
	}

	.can-do {
		padding: 40px 25px;
	}

	.can-do img {
		width: 45px;
	}

	.can-do .header {
		font-size: 2rem;
	}

	.can-do .text {
		font-size: 1.4rem;
	}

	.section-3 {
		padding: 0;
		background: none;
	}

	.section-3 .title {
		width: auto;
		font-size: 3rem;
		line-height: 115%;
	}

	.section-3 .subtitle {
		width: auto;
		font-size: 1.6rem;
		margin: 10px 0;
	}

	.info-wrapper {
		margin: 0;
	}

	.section-3 .primary-button {
		display: none;
	}

	.section-3 .primary-button.second {
		display: inline-block !important;
		width: 100% !important;
		margin-bottom: 60px !important;
	}

	.section-4 .title {
		width: auto;
		font-size: 3rem;
		line-height: 115%;
	}

	.section-4 .text {
		width: auto;
		font-size: 1.6rem;
		margin: 0;
	}

	.section-4 .primary-button {
		display: none;
	}

	.section-4 .primary-button.second {
		display: inline-block !important;
		width: 100% !important;
		margin-bottom: 60px;
	}

	.box {
		height: auto;
		min-height: auto;
		margin-bottom: 15px;
		padding: 35px;
	}

	.section-5 {
		flex-direction: column-reverse;
	}

	.section-5 .title {
		font-size: 3rem;
		width: auto;
		line-height: 120%;
	}

	.section-5 .text {
		font-size: 1.4rem;
		width: auto;
	}

	.section-5 .left {
		padding: 20px 0;
	}

	.section-5 .right {
		width: 100%;
		aspect-ratio: 1;
		margin-bottom: 25px;
	}

	.section-6 {
		margin-top: 15px;
	}

	.section-6 .title {
		line-height: 120%;
	}

	.section-7 .title {
		font-size: 3rem;
		width: auto;
	}

	.section-7 .subtitle {
		font-weight: 400;
		font-size: 1.6rem;
		line-height: 135%;
		width: auto;
	}

	.patners {
		margin-top: 0;
	}

	.review__column-container {
		height: 320px !important;
	}

	.patner-img {
		padding: 0 15px;
	}

	.section-8 {
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 30px;
	}

	.section-8 .title {
		font-size: 3rem;
		width: auto;
	}

	.section-8 .subtitle {
		font-weight: 400;
		font-size: 1.4rem;
		line-height: 135%;
		width: auto;
		text-align: left;
	}

	.form-items {
		display: block;
	}

	form.subscribe {
		width: 100%;
	}

	input.subscribe {
		width: 100%;
		margin: 15px 0;
	}

	.form-items .tertiary-button {
		margin: 0 !important;
		width: 100%;
	}

	.contact,
	.copyright-area {
		display: flex;
		flex-direction: column-reverse;
	}

	li.social-link {
		margin: 0 10px;
	}

	li.social-link.first {
		margin-left: 0;
	}

	p.header {
		margin: 0;
	}

	.contact div {
		margin-bottom: 30px;
	}

	.schrev-contact-card-alt h3,
	.schrev-contact-form h3 {
		font-size: 16px;
	}
	.schrev-contact-card-alt,
	.schrev-contact-card {
		border-radius: 10px;
	}
	.schrev-contact-card-alt p {
		font-size: 12px;
	}

	.schrev-contact-form button {
		height: 40px;
		font-size: 14px;
	}

	.schrev-contact-form .contact-input {
		height: 40px;
		font-size: 14px;
		border-radius: 7px;
		padding: 10px;
	}
	.schrev-contact-form .contact-textarea {
		font-size: 14px;
		border-radius: 7px;
		padding: 10px;
	}
}

@media only screen and (max-width: 768px) {
	.nav-right a.icon {
		position: absolute;
		top: 0;
		right: 0px;
		color: var(--primary-color) !important;
		display: block;
		font-size: 2.4rem;
	}

	ul.nav-buttons {
		width: 100%;
		height: auto;
		flex-direction: column;
		display: none;
		background-color: #ddd;
		padding: 15px;
		transform: translateY(40px);
		position: relative;
	}

	ul.nav-buttons::before {
		position: absolute;
		top: -19px;
		right: 0px;
		content: "";
		width: 20px;
		height: 20px;
		border: solid 10px transparent;
		border-bottom: solid 10px #ddd;
	}
}
