/* intro */
.intro {
	padding-top: 40px;
	padding-bottom: 30px;
}

.intro .row-narrow {
	max-width: 1063px;
}

.intro-left {
	margin-bottom: 22px;
}

.intro h2 {
	font-size: 2.813rem;
	line-height: 1;
	margin-bottom: 25px;
}

.intro .sub-title {
	margin-bottom: 12px;
	display: block;
}

.intro h2 strong {
	display: block;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-alternate);
	font-family: var(--font-family-heading);
}

.intro-left p {
	margin-bottom: 15px;
}

.intro-item {
	position: relative;
	margin-bottom: 25px;
}

.intro-item .button {
	position: relative;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.106rem;
	text-transform: uppercase;
	color: var(--color-alternate);
}

.intro-item .button:after {
	position: absolute;
	bottom: -3px;
	right: 1px;
	width: calc(100% - 30px);
	height: 3px;
	content: '';
	background-color: var(--color-primary);
}

.intro-item .button i {
	margin-right: 12px;
	color: var(--color-alternate);
}

.intro-dropdown {
	display: none;
	/* position: absolute; */
	/* bottom: -25px; */
	padding-left: 31px;
	font-size: 1rem;
	text-transform: capitalize;
	color: var(--color-primary);
	text-decoration: none;
}

.intro-dropdown.is-active {
	display: block;
}

@media screen and (min-width: 768px) {
	.intro {
		padding-top: 94px;
		padding-bottom: 71px;
	}

	.intro-holder {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.intro-left {
		width: 52%;
		margin-bottom: 0;
	}

	.intro h2 {
		font-size: 3.125rem;
	}

	.intro-right {
		width: 43%;
		margin-bottom: 60px;
	}
}

@media screen and (min-width: 1025px) {
	.intro-left {
		width: 65%;
	}

	.intro-right {
		width: 30.5%;
	}
}

@media screen and (min-width: 1441px) {
	.intro {
		padding-top: 104px;
		padding-bottom: 70px;
	}

	.intro-right {
		width: 29.4%;
	}
}

/* solutions */
.solutions {
	position: relative;
	padding-top: 34px;
	padding-bottom: 30px;
}

.solutions .row-narrow {
	max-width: 1063px;
}

.solutions:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(74, 99, 125, 0.1) 0%, rgba(74, 99, 125, 0) 74.59%);
	opacity: 0.5;
	pointer-events: none;
}

.solutions h2 {
	text-align: center;
	font-size: 2.813rem;
	font-weight: 500;
	margin-bottom: 15px;
	text-transform: uppercase;
	color: var(--color-alternate);
	font-family: var(--font-family-heading);
}

.content-tab-activate {
	text-align: left;
	width: 100%;
	padding: 22px 20px;
	font-size: 1.25rem;
	position: relative;
	background-color: transparent;
	color: var(--color-alternate);
	letter-spacing: unset;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: uppercase;
	border-bottom: solid 1px var(--color-green);
}

.content-tab-activate:last-of-type {
	border-bottom: none;
}

.content-tab-activate:focus,
.content-tab-activate:hover {
	color: var(--color-alternate);
	background-color: rgba(49, 122, 123, 0.3);
}

.content-tab-activate:focus i,
.content-tab-activate:hover i,
.content-tab-activate.active i {
	color: var(--color-alternate);
}

.content-tab-activate:after {
	position: absolute;
	top: 50%;
	right: 29px;
	transform: translateY(-50%);
	font-size: 1.25rem;
	content: '\f107';
	color: var(--color-secondary);
	font-family: var(--font-family-icon);
}

.content-tab-activate i {
	font-size: 1.5rem;
	color: var(--color-secondary);
}

.content-tab-activate.active {
	margin-bottom: 25px;
	border-bottom: none;
	color: var(--color-alternate);
	background-color: rgba(49, 122, 123, 0.3);
}

.content-tab-activate.active:after {
	color: var(--color-alternate);
}

.solutions-tab-right {
	position: relative;
}

.content-tab {
	display: none;
	line-height: 1.7;
	font-size: 1rem;
}

.content-tab h3,
.content-tab h3 a {
	font-size: 1.875rem;
	margin-bottom: 18px;
	color: var(--color-primary);
}

.content-tab p {
	margin-bottom: 3px;
}

.content-tab.active {
	display: block;
}

.solutions-tab-links {
	display: none;
}

@media screen and (min-width: 768px) {
	.solutions {
		padding-top: 82px;
		padding-bottom: 80px;
	}

	.solutions h2 {
		font-size: 3.125rem;
		margin-bottom: 79px;
		text-align: left;
	}

	.solutions-title {
		padding-top: 32px;
	}

	.solutions-title:before {
		top: 3px;
	}

	.solutions-tab {
		display: flex;
		justify-content: space-between;
	}

	.solutions-tab-links {
		width: 40%;
		display: block;
	}

	.content-tab-activate.active {
		margin-bottom: 0;
	}


		.solutions-tab-right {
		width: 52%;
		display: block;
	}

	.solutions-tab-right:before {
		display: block;
		position: absolute;
		top:-23px;
		left: -35px;
		width: 1px;
		height: calc(100% + 58px);
		content: '';
		pointer-events: none;
		background-color: var(--color-gray);
	}

	.solutions-tab-content {
		margin-bottom: 0;
	}

	.content-tab-activate {
		width: 100%;
		margin-left: 0;
		padding: 22px 9px;
	}

	.content-tab-activate:after {
		display: none;
	}

	.content-tab {
		padding: 0;
		width: 100%;
		border-bottom: none;
	}
}

@media screen and (min-width: 1025px) {
	.solutions {
		padding-bottom: 120px;
	}

	.solutions-tab-content {
		font-size: 1.063rem;
	}

	.solutions-tab-links {
		width: 36.3%;
	}

	.solutions-tab-right {
		width: 52.7%;
	}

	.solutions-tab-right:before {
		left: -66px;
	}

	.content-tab-activate {
		padding: 22px 29px 18px 37px;
	}
}

@media screen and (min-width: 1441px) {
	.solutions-tab-right {
		width: 52.9%;
	}
}

/* process */
.process {
	padding-top: 39px;
	padding-bottom: 3px;
}

.process .row-narrow {
	max-width: 1030px;
}

.process-heading {
	margin-bottom: 29px;
}

.process .sub-title {
	margin-bottom: 5px;
	letter-spacing: 1px;
}

.process h2 {
	font-size: 2.813rem;
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--color-alternate);
	font-family: var(--font-family-heading);
	overflow: hidden;
}

.process h2 span {
	display: block;
}

.process-column {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--color-alternate);
}

.process-column p strong {
	font-weight: 500;
}

@media screen and (min-width: 768px) {
	.process {
		padding-top: 110px;
		padding-bottom: 68px;
	}

	.process-heading {
		margin-bottom: 50px;
	}

	.process .sub-title {
		margin-bottom: 3px;
	}

	.process h2 {
		font-size: 3.125rem;
	}

	.process-holder {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-column-gap: 126px;
	}
}

/* copy */
.work {
	position: relative;
	padding-top: 34px;
	padding-bottom: 34px;
}

.work:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(74, 99, 125, 0.1) 0%, rgba(74, 99, 125, 0) 74.59%);
	transform: matrix(-1, 0, 0, 1, 0, 0);
	opacity: 0.5;
	pointer-events: none;
}

.work-heading {
	text-align: center;
	margin-bottom: 33px;
}

.work .sub-title {
	line-height: 1;
}

.work h2 {
	line-height: 1.1;
	font-size: 2.813rem;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-alternate);
	font-family: var(--font-family-heading);
}

.work-holder {
	display: grid;
	grid-template-columns: repeat(2,1fr );
	grid-column-gap: 25px;
	grid-row-gap: 25px;
	margin-bottom: 29px;
}

.work-item {
	font-size: 1.375rem;
	padding-bottom: 8px;
	color: var(--color-alternate);
	border-bottom: solid 1px var(--color-black);
}

.work-number {
	font-size: 2.75rem;
	line-height: 1;
	margin-bottom: 8px;
	color: var(--color-secondary);
}

.work p:last-of-type {
	margin-bottom: 0;
}

.work-bottom {
	line-height: 1;
	text-align: center;
	font-size: 1.063rem;
	color: var(--color-black);
}

.work-block {
	margin-bottom: 24px;
}

.work-block .button {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: space-between;
	padding: 10px 15px;
	text-transform: capitalize;
	letter-spacing: 0;
	font-size: 1rem;
}

.work-block .button + .button {
	margin-top: 16px;
}

.work-block .button i {
	font-size: 1.063rem;
	transform: rotate(45deg);
}

.work-block .button:focus,
.work-block .button:hover {
	background-color: var(--color-secondary);
}

@media screen and (min-width: 768px) {
	.work {
		padding-top: 86px;
		padding-bottom: 65px;
	}

	.work-heading {
		margin-bottom: 52px;
	}

	.work .sub-title {
		margin-bottom: 15px;
	}

	.work h2 {
		font-size: 3.125rem;
	}

	.work-holder {
		grid-template-columns: repeat(4,1fr );
		grid-column-gap: 20px;
		margin-bottom: 52px;
	}

	.work-block {
		margin-bottom: 52px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.work-block .button {
		max-width: 315px;
	}

	.work-block .button + .button {
		margin-top: 0;
		margin-left: 19px;
	}
}

/* image-text */
.image-text {
	padding-top: 31px;
	padding-bottom: 30px;
}

.image-text .row-narrow {
	max-width: 1061px;
}

.image-text-left {
	margin-bottom: 15px;
}

.image-text .sub-title {
	line-height: 1;
	margin-bottom: 3px;
}

.image-text h2 {
	font-size: 2.813rem;
	line-height: 1.1;
	font-weight: 500;
	margin-bottom: 3px;
	text-transform: uppercase;
	font-family: var(--font-family-heading);
	color: var(--color-alternate);
}

.image-text p:last-of-type {
	margin-bottom: 0;
}

.image-text-right img {
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 768px) {
	.image-text {
		padding-top: 118px;
		padding-bottom: 95px;
	}

	.image-text-holder {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.image-text-left {
		width: 45%;
		margin-top: 20px;
		margin-bottom: 0;
	}

	.image-text .sub-title {
		margin-bottom: 4px;
	}

	.image-text h2 {
		font-size: 3.125rem;
		margin-bottom: 22px;
	}

	.image-text-right {
		width: 53.6%;
	}
}

/* experience */
.experience {
	padding-top: 44px;
	padding-bottom: 32px;
	position: relative;
	background-size: cover;
}

.experience:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	pointer-events: none;
	background: linear-gradient(0deg, rgba(172, 172, 172, 0.05), rgba(172, 172, 172, 0.05));
}

.experience-text {
	position: relative;
	z-index: 1;
	margin-left: 10px;
	max-width: 920px;
}

.experience h2 {
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 0;
	text-transform: uppercase;
	color: var(--color-alternate);
	font-family: 'Cormorant Infant';
}

.experience .sub-title {
	margin-bottom: 9px;
}

.experience h4 {
	font-size: 1.563rem;
	line-height: 1;
	margin-bottom: 7px;
	color: var(--color-secondary);
}

.experience-note {
	margin-bottom: 27px;
	line-height: 1;
	font-size: 1.063rem;
}

.experience-note p {
	margin-bottom: 8px;
}

.experience .content {
	width: 100%;
	margin-bottom: 0;
}

.experience .content ul {
	margin-bottom: 0;
}

.experience .content li {
	line-height: 1.6;
	color: var(--color-alternate);
}

.experience .content li:not(:last-of-type) {
	margin-bottom: 14px;
}

.experience-watermark {
	position: absolute;
	top: -5px;
	right: 0;
	pointer-events: none;
	width: 450px;
}

@media screen and (min-width: 768px) {
	.experience {
		padding-top: 150px;
		padding-bottom: 140px;
	}

	.experience-text {
		margin-left: 17px;
	}

	.experience .sub-title {
		margin-bottom: 30px;
	}

	.experience-note {
		font-size: 1.125rem;
	}

	.experience-note p {
		margin-bottom: 7px;
	}

	.experience .content li:not(:last-of-type) {
		margin-bottom: 15px;
	}
}

@media screen and (min-width: 1200px) {
	.experience-watermark {
		width: auto;
	}
}

@media screen and (min-width: 1441px) {
	.experience-watermark {
		right: unset;
		left: 50%;
		transform: translateX(-50%);
		margin-left: 308px;
	}
}

/* review */
.review {
	padding-top: 34px;
	padding-bottom: 20px;
}

.review-bg {
	position: relative;
	padding: 37px 45px 30px;
	max-width: 954px;
	margin: 0 auto;
	text-align: center;
	background-color: rgba(220, 220, 220, 0.1);
}

.review h2 {
	font-size: 1.875rem;
	font-weight: 500;
	margin-bottom: 18px;
	text-transform: uppercase;
	color: var(--color-alternate);
	font-family: var(--font-family-heading);
}

.review-text {
	font-size: 1.063rem;
	line-height: 1.6;
	color: var(--color-alternate);
}

.review-post {
	font-style: italic;
	font-weight: 500;
	margin-bottom: 23px;
	line-height: 1;
	font-family: var(--font-family-heading);
}

.review-text p:last-of-type {
	margin-bottom: 22px;
}

.review .button.no-button {
	font-size: 1rem;
	text-transform: uppercase;
}

.review .button.no-button i {
	font-size: 1.563rem;
	vertical-align: middle;
}

.review-controller {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.review .swiper-navigation-icon {
	display: none;
}

.review .swiper-button-next:after,
.review .swiper-button-prev:after {
	display: none;
}

.review .swiper-button-prev i,
.review .swiper-button-next i {
	font-weight: 500;
	color: var(--color-secondary);
}

.review .swiper-button-prev {
	left: -17px;
	/* padding-right: 3px; */
}

.review .swiper-button-next {
	right: -15px;
	padding-left: 3px;
}

.review-controller button{
	width: 58px;
	height: 58px;
}

@media screen and (min-width: 768px) {
	.review {
		padding-top: 102px;
		padding-bottom: 102px;
	}

	.review-bg {
		padding: 53px 80px 40px;
	}

	.review h2 {
		font-size: 2.5rem;
		margin-bottom: 17px;
	}

	.review-post {
		margin-bottom: 34px;
	}

	.review-text p:last-of-type {
		margin-bottom: 20px;
	}

	.review-controller {
		margin-top: 4px;
	}
}

@media screen and (min-width: 1201px) {
	.review .swiper-button-prev {
		left: -34px;
	}

	.review .swiper-button-next {
		right: -35px;
	}
}

/* news */
.news {
	padding-bottom: 32px;
}

.news-left {
	position: relative;
	margin-bottom: 30px;
	margin-left: 14px;
}

.news h2 {
	font-size: 2.813rem;
	font-weight: 500;
	margin-bottom: 18px;
	text-transform: uppercase;
	color: var(--color-alternate);
	font-family: var(--font-family-heading);
}

.news-item {
	padding-bottom: 15px;
	margin-bottom: 11px;
	border-bottom: solid 1px var(--color-green);
}

.news-slider {
	height: auto;
}

.news-slider .swiper-slide {
	height: auto;
}

@media (max-width: 768px) {
	.news-slider.swiper,
	.news-slider .swiper-wrapper {
		touch-action: pan-y;
	}
}

.swiper-slide-next .news-item {
	margin-bottom: 0;
	border-bottom: none;
}

.news-item a {
	font-size: 1.188rem;
	font-weight: 500;
	margin-bottom: 8px;
	text-transform: capitalize;
	color: var(--color-alternate);
	text-decoration: none;
	display: block;
}

.news-item a:focus,
.news-item a:hover {
	color: var(--color-secondary);
}

.news-text {
	font-size: 1.063rem;
	line-height: 1.6;
	padding-right: 35px;
}

.news-text p:last-of-type {
	margin-bottom: 0;
}

.news .no-button {
	font-size: 1rem;
	text-transform: uppercase;
}

.news .no-button i {
	font-size: 1.438rem;
	vertical-align: middle;
	font-weight: 500;
}

.news-arrow {
	position: absolute;
	bottom: 9px;
	right: 10px;
	z-index: 2;
}

.news-arrow button:first-of-type {
	margin-bottom: 11px;
}

.news-arrow button {
  padding: 2px 0 0 1px;
	font-size: 0.813rem;
	width: 31px;
	height: 31px;
	display: flex;
	align-items: center;
	border-radius: 100%;
	justify-content: center;
	background: transparent;
	color: var(--color-secondary);
	border: solid 1px var(--color-secondary);
}

.news-arrow button:focus,
.news-arrow button:hover {
	color: var(--color-primary);
	border: solid 1px var(--color-primary);
}

.news-image img {
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 768px) {
	.news {
		padding-bottom: 50px;
	}

	.news-holder {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}

	.news-left {
		width: 59%;
		margin-left: 0;
		margin-bottom: 0;
	}

	.news-item {
		max-width: 488px;
	}

	.news-text {
		max-width: 440px;
		padding-right: 0;
	}

	.news h2 {
		font-size: 3.125rem;
		margin-bottom: 44px;
	}

	.news .no-button {
		margin-top: 31px;
	}

	.news-arrow {
		bottom: 5px;
	}

	.news-image {
		width: 34.6%;
		margin-top: 10px;
	}
}

@media screen and (min-width: 1025px) {
	.news {
		padding-bottom: 98px;
	}

	.news-arrow {
		right: 89px;
	}

	.news-arrow button:first-of-type {
		margin-bottom: 21px;
	}
}