
:root {
	--bg: #f2f0eb;
	--white: #fff;
	--white_dark: #faf9f7;
	--black: #222223;
	--deep_green: #1a4449;
	--green: #2b6648;
	--purple: #d0aed8;
	--light_green: #a2e0b4;
	--highlight_green: #83f48d;
	--g1: linear-gradient(90deg, rgba(247, 247, 247, 0) 39%, #20f331 100%);
	--h1: max(38px, 100rem);
	--h2: max(28px, 64rem);
	--h3: max(24px, 30rem);
	--h4: max(18px, 20rem);
	--h5: max(16px, 20rem);
	--h6: max(16px, 20rem);
	--link: max(16px, 18rem);
	--body: max(14px, 20rem);
	--subtitle: max(16px, 18rem);
	--ease-out-expo: cubic-bezier(.19, 1, .22, 1);
}

/************************* reset *************************/
html {
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
	background: var(--bg);
	font-size: .052vw;
	scroll-behavior: smooth;
}

body {
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	color: var(--deep_green);
	font-size: var(--body);
	font-weight: 300;
	font-family: "FK Grotesk", Arial, Helvetica, sans-serif;
	/*	line-height: 120%;*/
	line-height: 130%;
	letter-spacing: -.03em;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6, p, ul, li, ol, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}

img {
	margin: 0;
	padding: 0;
	border-style: none;
	vertical-align: bottom;
}

input, textarea, select, button {
	font-weight: 300;
	font-family: "FK Grotesk", Arial, Helvetica, sans-serif;
	vertical-align: middle;
	border: 0;
	outline: 0;
	background: none;
}

a:hover {
	text-decoration: none;
}

::selection {
	background-color: #83f48d;
}

/************************* common styles *************************/
.holder {
	padding: 0 max(16px, 45rem);
}

.holder:after {
	display: block;
	content: "";
	clear: both;
}

h1, .h1 {
	display: block;
	font-family: "GT Ultra Fine";
	font-weight: 300;
	font-size: var(--h1);
	line-height: 100%;
	letter-spacing: -.03em;
}

h2, .h2 {
	display: block;
	font-family: "GT Ultra Fine";
	font-weight: 300;
	font-size: var(--h2);
	line-height: 100%;
	letter-spacing: -.03em;
}

h3, .h3 {
	display: block;
	font-family: "GT Ultra Fine";
	font-weight: 400;
	font-size: var(--h3);
	line-height: 110%;
	letter-spacing: -.03em;
	margin-bottom: .25em;
}

h4, .h4 {
	display: block;
	font-family: "GT Ultra Fine";
	font-weight: 400;
	font-size: var(--h4);
	line-height: 110%;
	letter-spacing: -.03em;
}

h5, .h5 {
	display: block;
	font-weight: 400;
	font-size: var(--h5);
	line-height: 100%;
	letter-spacing: -.03em;
}

h6, .h6 {
	display: block;
	font-weight: 700;
	font-size: var(--h6);
	line-height: 125%;
	letter-spacing: -.03em;
}

ul, ol {
	padding-left: max(24px, 30rem);
}

ul, ol, p {
	margin-bottom: max(19px, 25rem);
}

ul:last-child, ol:last-child, p:last-child {
	margin: 0;
}

a {
	transition: all .3s linear;
	color: inherit;
}

.center {
	text-align: center;
}

.upper {
	text-transform: uppercase;
}

.button-holder {
	text-align: center;
}

.button {
	position: relative;
	display: inline-block;
	padding: 12px 100px;
	color: var(--deep_green);
	font-weight: 400;
	font-size: var(--link);
	line-height: 125%;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 50px;
	transition: all .3s linear;
}

.button:hover {
	color: var(--white);
	background: transparent;
}

.button-dark {
	color: var(--white);
	background: var(--deep_green);
	border: 1px solid var(--deep_green);
}

.button-dark:hover {
	color: var(--deep_green);
	background: transparent;
}

.button-min {
	padding: 12px 41px;
}

.button-border {
	color: var(--white);
	background: transparent;
}

.button-border:hover {
	color: var(--deep_green);
	background: var(--white);
}

/************************* wrapper *************************/
#wrapper {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	padding-top: max(80px, 96rem);
	display: flex;
	flex-direction: column;
}

/************************* header *************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 300;
	background: var(--white_dark);
}

.header.header-beige .subnav {
	background-color: var(--bg);
}

.header .header-main {
	border-bottom: 1px solid rgba(26, 68, 73, .2);
}

.header-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: max(80px, 96rem);
}

.header-logo {
	position: relative;
	top: -7px;
}

.header-logo img {
	display: block;
	width: max(102px, 228rem);
}

.logo-white {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.header-right {
	display: flex;
	align-items: center;
	gap: max(15px, 42rem);
}

.header-phone {
	position: relative;
	font-weight: 400;
	font-size: max(16px, 18rem);
	line-height: 125%;
	color: #1c4750;
	text-decoration: none;
}

.header-phone::before, .header-phone::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--highlight_green);
	transition: 1.1s var(--ease-out-expo);
}

.header-phone::before {
	transform: scaleX(0);
	transform-origin: left;
}

.header-phone::after {
	transform-origin: right;
	transition-delay: .25s;
}

.header-phone:hover::before {
	transform: scaleX(1);
	transition-delay: .25s;
}

.header-phone:hover::after {
	transform: scaleX(0);
	transition-delay: 0s;
}

.header-nav-list {
	display: flex;
	gap: max(15px, 30rem);
	padding: 0;
	margin: 0;
	list-style: none;
}

.header-nav-list > li {
	display: flex;
	align-items: center;
	height: max(80px, 96rem);
	font-weight: 400;
	font-size: max(16px, 18rem);
	line-height: 125%;
}

.header-nav-list a {
	display: inline-flex;
	position: relative;
	color: #1c4750;
	text-decoration: none;
	line-height: 125%;
}

.header-nav-list a::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--highlight_green);
	transition: 1.1s var(--ease-out-expo);
}

.header-nav-list a::before {
	transform: scaleX(0);
	transform-origin: left;
}

.header-nav-list a:hover::before, .header-nav-list li:hover > a::before {
	transform: scaleX(1);
}

.nav-parent {
	position: relative;
	margin-right: 20px;
}

.nav-parent::after {
	position: absolute;
	top: 50%;
	right: -20px;
	content: "";
	width: 20px;
	height: 20px;
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/nav-arrow.svg") 50% 50% no-repeat;
	transition: all .3s linear;
	margin: -11px 0 0 0;
}

.subnav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 23px 0 27px;
	/*height: max(220px, 260rem);*/
	background: var(--white_dark);
}

.subnav .holder {
	display: flex;
}

.sub {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.sub-1, .sub-1:last-child {
	margin-left: min(-16px, -45rem);
}

.sub li {
	padding-right: 34px;
}

.header-nav-list .sub-parent {
	display: inline-block;
}

.sub-parent::after {
	display: inline-block;
	vertical-align: top;
	content: "";
	width: 20px;
	height: 20px;
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/nav-arrow.svg") 50% 50% no-repeat;
	transition: all .3s linear;
	transform: rotate(270deg);
}

.sub-2 {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 100%;
	width: 100%;
	max-width: 300px;
	padding: 0 0 0 20px;
	border-left: 1px solid rgba(26, 68, 73, .2);
}

.sub-3 {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 100%;
	width: 100%;
	max-width: 300px;
	padding: 0 0 0 20px;
	border-left: 1px solid rgba(26, 68, 73, .2);
}

.sub.vis {
	display: flex;
}

.mob-nav-icon {
	display: none;
}

.mob-nav-block {
	position: relative;
	display: block;
	width: 22px;
	height: 2px;
	margin: 6px 0;
	background: var(--deep_green);
	transition: all .3s linear;
}

.mob-nav-block:after {
	content: "";
	position: absolute;
	top: -6px;
	left: 0;
	width: 22px;
	height: 2px;
	background: var(--deep_green);
	transition: all .3s linear;
}

.mob-nav-block:before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 22px;
	height: 2px;
	background: var(--deep_green);
	transition: all .3s linear;
}

.mob-nav-icon.active .mob-nav-block {
	background: none;
}

.mob-nav-icon.active .mob-nav-block:before {
	top: 0;
	transform: rotate(45deg);
}

.mob-nav-icon.active .mob-nav-block:after {
	top: 0;
	transform: rotate(-45deg);
}

.header.header-beige {
	background: var(--bg);
}

.header-dark {
	background: var(--deep_green);
}

.header-dark .header-main {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.header-dark .header-block {}

.header-dark .logo-white {
	opacity: 1;
}

.header-dark .logo-green {
	opacity: 0;
}

.header-dark .button {
	color: var(--deep_green);
	background: var(--white);
	border: 1px solid var(--white);
}

.header-dark .button:hover {
	color: var(--white);
	background: transparent;
}

.header-dark .header-phone {
	color: var(--white);
	opacity: .8;
}

.header-dark .header-phone:hover {
	opacity: 1;
}

.header-dark .header-phone::before, .header-dark .header-phone::after {
	background: var(--highlight_green);
}

.header-dark .header-nav-list a {
	color: var(--white);
	opacity: .8;
}

.header-dark .header-nav-list a:hover, .header-dark .header-nav-list li:hover > a {
	opacity: 1;
}

.header-dark .header-nav-list a::before {
	background: var(--highlight_green);
}

.header-dark .nav-parent::after {
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/nav-arrow-white.svg") 50% 50% no-repeat;
}

.header-dark .subnav {
	background: var(--deep_green);
}

.header-dark .sub-parent::after {
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/nav-arrow-white.svg") 50% 50% no-repeat;
}

.header-dark .sub-2 {
	border-left: 1px solid rgba(255, 255, 255, .2);
}

.header-dark .sub-3 {
	border-left: 1px solid rgba(255, 255, 255, .2);
}

.header-dark .mob-nav-block, .header-dark .mob-nav-block:after, .header-dark .mob-nav-block:before {
	background: var(--white);
}

.header-hidden {
	display: none;
}

@media screen and (min-width: 1024px) {
	.header-nav-list a:hover::after, .header-nav-list li:hover > a::after {
		transform: rotate(180deg);
	}
	
	.header-nav-list li:hover > .subnav {
		display: block;
	}
	
	.sub li:hover > .sub {
		display: flex;
	}
	
	.header-nav-list .sub-parent:hover::after, .header-nav-list li:hover > .sub-parent::after {
		transform: rotate(270deg);
	}
}

@media screen and (max-width: 1320px) {
	.header-right {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}
	
	.header-right .button-min {
		padding: 7px 25px 8px;
	}
}

@media screen and (max-width: 1024px) {
	#wrapper {
		padding-top: 68px;
	}
	
	.header-block {
		height: 68px;
	}
	
	.header-right {
		display: none;
	}
	
	.header-logo {
		z-index: 600;
		top: auto;
	}
	
	.mob-nav-icon {
		display: block;
		z-index: 600;
	}
	
	.mob-nav-icon.active .mob-nav-block:after, .mob-nav-icon.active .mob-nav-block:before {
		background: var(--white);
	}
	
	.header-logo.active .logo-white {
		opacity: 1;
	}
	
	.header-logo.active .logo-green {
		opacity: 0;
	}
	
	.header-nav {
		position: fixed;
		top: 0;
		left: -100%;
		bottom: 0;
		width: 100%;
		z-index: 540;
		padding: 86px 0 30px;
		overflow-y: auto;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		background: var(--deep_green);
		box-shadow: none;
		transition: all .5s ease;
	}
	
	.header-nav.vis {
		left: 0;
	}
	
	.header-nav-list {
		flex-direction: column;
		gap: 0;
	}
	
	.header-nav-list > li {
		display: block;
		height: auto;
		border-bottom: 1px solid rgba(255, 255, 255, .4);
	}
	
	.header-nav-list a {
		display: flex;
		align-items: center;
		gap: 2px;
		color: var(--white);
	}
	
	.header-nav-list a::before {
		display: none;
	}
	
	.header-nav-list > li > a {
		height: 61px;
		padding: 0 16px;
	}
	
	.nav-parent {
		margin-right: 0;
	}
	
	.nav-parent::after {
		position: relative;
		top: 5px;
		right: auto;
		background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/nav-arrow-white.svg") 50% 50% no-repeat;
	}
	
	.subnav {
		display: none;
		position: static;
		padding: 0 0 27px;
		height: auto;
		background: none;
	}
	
	.subnav .holder {
		display: block;
	}
	
	.sub {
		position: static;
		gap: 20px;
	}
	
	.sub-1, .sub-1:last-child {
		margin-left: 0;
		padding-left: 0 !important;
	}
	
	.sub li {
		padding-right: 0;
	}
	
	.sub-parent::after {
		position: static;
		background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/nav-arrow-white.svg") 50% 50% no-repeat;
		transform: rotate(0deg);
	}
	
	.sub-2, .sub-3 {
		display: none;
		position: static;
		width: auto;
		max-width: none;
		padding: 20px 0 5px 20px;
		border-left: 0;
	}
	
	.sub-2 li {
		margin: 0 0 20px;
	}
	
	.sub-2 li:last-child {
		margin: 0;
	}
	
	.nav-parent.active::after {
		transform: rotate(180deg);
	}
	
	.header-hidden {
		display: flex;
		flex-direction: column;
		margin: auto 0 0;
		gap: 80px;
		padding: 60px 16px 0;
	}
	
	.header-hidden .button {
		color: var(--deep_green);
		background: var(--white);
		border: 1px solid var(--white);
	}
	
	.header-hidden .button:hover {
		color: var(--white);
		background: transparent;
	}
	
	.header-hidden .header-phone {
		margin: 0 auto 0 0;
		color: var(--white);
	}
	
	.header-dark .header-nav-list a {
		opacity: 1;
	}
	
	.header-dark .sub-2, .header-dark .sub-3 {
		border-left: 0;
	}
}

/************************* bar *************************/
#wrapper.with-bar {
	padding-top: max(80px, 109rem);
}

.bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 65rem;
	height: max(40px, 50rem);
	padding: 0 16px;
	text-align: center;
	background: var(--highlight_green);
}

.bar-text {
	font-size: max(14px, 18rem);
	line-height: 120%;
}

.bar-link {
	position: relative;
	font-size: max(14px, 16rem);
	line-height: 120%;
	color: var(--black);
	text-decoration: none;
}

.bar-link::before, .bar-link::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--black);
	transition: 1.1s var(--ease-out-expo);
}

.bar-link::before {
	transform: scaleX(0);
	transform-origin: left;
}

.bar-link::after {
	transform-origin: right;
	transition-delay: .25s;
}

.bar-link:hover::before {
	transform: scaleX(1);
	transition-delay: .25s;
}

.bar-link:hover::after {
	transform: scaleX(0);
	transition-delay: 0s;
}

.bar-dark {
	color: var(--white);
	background: var(--deep_green);
}

.bar-dark .bar-link {
	color: var(--white);
}

.bar-dark .bar-link::before, .bar-dark .bar-link::after {
	background: var(--highlight_green);
}

@media screen and (max-width: 1024px) {
	#wrapper.with-bar {
		padding-top: 144px;
	}
	
	.bar {
		flex-direction: column;
		gap: 6px;
		height: 76px;
	}
	
	.bar-text {
		max-width: calc(100% - 32px);
		margin: 0 auto;
	}
	
	.with-bar .header-nav {
		padding-top: 162px;
	}
}

@media screen and (max-height: 740px) and (max-width: 1024px) {
	.header-nav {
		padding: 76px 0 20px;
	}
	
	.header-hidden {
		gap: 30px;
		padding: 30px 16px 0;
	}
}

/************************* footer *************************/
.footer {
	margin: auto 0 0;
	padding: max(40px, 70rem) 0 20px;
}

.footer-block {
	display: flex;
	justify-content: space-between;
	padding: max(20px, 60rem) 0 0;
	border-top: 1px solid rgba(26, 68, 73, .2);
}

.footer-side {
	width: 35%;
	display: flex;
	flex-direction: column;
}

.footer-logo {
	margin: 0 0 max(20px, 25rem);
}

.footer-logo img {
	width: max(102px, 277rem);
}

.footer-subtitle {
	margin: 0 0 50px;
	font-weight: 300;
	font-size: max(18px, 26rem);
	line-height: 100%;
}

.footer-copy {
	margin: auto 0 0;
}

.footer-content {
	width: 61%;
	display: flex;
	position: relative;
}

.footer-col {
	width: 33.33%;
	padding: 0 10px 0 0;
}

.footer-title {
	margin: 0 0 max(20px, 25rem);
	font-weight: 400;
	font-size: max(16px, 18rem);
	line-height: 125%;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	list-style: none;
	max-width: max(240px, 290rem);
	padding: 0;
	margin: 0 0 max(40px, 50rem);
}

.footer-nav:last-child {
	margin: 0;
}

.footer-nav a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: max(16px, 18rem);
	line-height: 125%;
	color: var(--deep_green);
	text-decoration: none;
}

.footer-nav a::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--highlight_green);
	transition: 1.1s var(--ease-out-expo);
}

.footer-nav .with-icon::before {
	left: 28px;
	width: calc(100% - 28px);
}

.footer-nav a::before {
	transform: scaleX(0);
	transform-origin: left;
}

.footer-nav a:hover::before {
	transform: scaleX(1);
}

.footer-nav .footer-phone::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--highlight_green);
	transition: 1.1s var(--ease-out-expo);
}

.footer-nav .footer-phone::after {
	transform-origin: right;
	transition-delay: .25s;
}

.footer-nav .footer-phone:hover::before {
	transition-delay: .25s;
}

.footer-nav .footer-phone:hover::after {
	transform: scaleX(0);
	transition-delay: 0s;
}

.footer-bottom {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 66.66%;
	display: flex;
	align-items: flex-end;
}

.footer-bottom .footer-copy {
	display: none;
}

.footer-cert {
	width: 50%;
}

.footer-cert img {
	width: max(240px, 323rem);
}

.footer-studio {
	width: 50%;
}

.footer-studio a {
	position: relative;
	color: var(--deep_green);
	text-decoration: none;
}

.footer-studio a::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--black);
	transition: 1.1s var(--ease-out-expo);
}

.footer-studio a::before {
	transform: scaleX(0);
	transform-origin: left;
}

.footer-studio a:hover::before {
	transform: scaleX(1);
}

@media screen and (max-width: 1320px) {
	.footer-side {
		width: 26%;
	}
	
	.footer-content {
		width: 70%;
	}
}

@media screen and (max-width: 1024px) {
	.footer {
		padding-bottom: 35px;
	}
	
	.footer-block {
		display: block;
	}
	
	.footer-side, .footer-content {
		width: auto;
		display: block;
	}
	
	.footer-side .footer-copy {
		display: none;
	}
	
	.footer-col {
		width: auto;
		padding: 0 0 40px;
	}
	
	.footer-bottom {
		position: static;
		display: block;
		padding: 30px 0 0;
		width: auto;
		border-top: 1px solid rgba(26, 68, 73, .2);
	}
	
	.footer-bottom .footer-copy {
		display: block;
		margin: 0 0 40px;
	}
	
	.footer-cert {
		margin: 0 0 40px;
		width: auto;
	}
	
	.footer-cert img {
		width: 100%;
		max-width: 323px;
	}
	
	.footer-studio {
		width: auto;
	}
}

/************************* hero *************************/
.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 85dvh;
	overflow: hidden;
	/*margin-top: min(-80px, -96rem);*/
	margin-bottom: max(40px, 70rem);
}

.hero .holder {
	width: 100%;
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-bg img {
	width: 100%;
	height: 85dvh;
	object-fit: cover;
}

.hero-bg video {
	width: 100%;
	height: 85dvh;
	object-fit: cover;
}

.hero-bg::after {
	position: absolute;
	inset: 0;
	content: "";
	background: #000;
	opacity: .3;
}

.hero-block {
	position: relative;
	padding: max(60px, 85rem) 0;
	color: #fff;
}

.hero-block h1 {
	margin: 0 0 max(45px, 65rem);
}

.hero-block h1:last-child {
	margin: 0;
}

.with-line {
	padding-bottom: max(5px, 10rem);
}

.with-line span {
	position: relative;
}

.with-line span::after {
	position: absolute;
	right: 0;
	bottom: min(-5px, -10rem);
	content: "";
	width: 150%;
	height: max(5px, 10rem);
	background: var(--g1);
}

.hero-2 h1.with-line, .hero-2 h2.with-line {
	margin: 0 0 40px;
}

.hero-2 .hero-bg::after {
	opacity: .5;
}

.hero-text {
	max-width: max(380px, 550rem);
	margin: min(-29px, -45rem) 0 max(30px, 50rem);
	font-size: max(14px, 20rem);
	opacity: .8;
}

.hero-text:last-child {
	margin-bottom: 0;
}

.with-line span::after {
	width: 120%;
}

.hero-3 .hero-bg::after, .hero-4 .hero-bg::after {
	display: none;
}

.hero-4 .hero-block {
	color: var(--deep_green);
}

.hero-5 {
	background: var(--deep_green);
}

.hero-5 .hero-bg {
	width: 40%;
	left: auto;
}

.hero-5 .hero-bg img, .hero-5 .hero-bg video {
	height: 100%;
}

.hero-5 .hero-bg::after {
	display: none;
}

.hero-5 .hero-block {
	width: 60%;
	padding-right: max(40px, 80rem);
}

.hero-5 .hero-text {
	max-width: max(400px, 640rem);
}

.hero-6 {
	height: auto;
	padding: max(80px, 100rem) 0 0 0;
	background: var(--bg);
}

.hero-6 h5 {
	margin: 0 0 max(10px, 21rem);
}

.hero-6 h1 {
	margin: 0 0 max(20px, 40rem);
}

.hero-wrap {
	max-width: 1024px;
	margin: 0 auto;
}

.hero-img img {
	width: 100%;
	border-radius: 20px;
}

.hero-7 {
	height: auto;
	padding: max(206px, 307rem) 0 max(40px, 70rem);
	background: var(--bg);
}

@media screen and (max-width: 1024px) {
	.hero {
		margin-top: -68px;
	}
	
	.hero .breadcrumbss {
		top: max(60px, 120rem);
	}
}

@media screen and (max-width: 767px) {
	.hero-5 {
		display: flex;
		flex-direction: column;
		padding-top: 58px;
	}
	
	.hero-5 .hero-bg {
		position: static;
		width: 100%;
		flex: 1;
	}
	
	.hero-5 .hero-block {
		width: auto;
		padding-right: 0;
	}
}

@media screen and (max-width: 576px) {
	.button {
		display: block;
		padding: 12px 44px;
	}
	
	.hero-text, .hero-5 .hero-text {
		max-width: none;
	}
	
	.hero {
		margin-top: -80px;
	}
	
	.hero .breadcrumbss {
		top: max(20px, 60rem);
	}
	
	.breadcrumbs li {
		font-size: max(13px, 15rem);
	}
}

/************************* cta *************************/
.section {
	padding: max(40px, 70rem) 0;
}

.cta {
	display: flex;
	overflow: hidden;
	height: max(520px, 720rem);
	background: var(--green);
	border-radius: 30px;
}

.cta-deepgreen {
	background: var(--deep_green);
}

.cta-content {
	display: flex;
	align-items: center;
	flex: 1;
	padding: max(25px, 46rem);
}

.cta-wrap h2 {
	margin: 0 0 max(20px, 40rem);
	color: var(--white_dark);
}

.cta-text {
	max-width: max(330px, 480rem);
	margin: min(0px, -20rem) 0 max(30px, 60rem);
	color: var(--white);
	font-size: max(14px, 20rem);
	opacity: .8;
}

.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: max(8px, 13rem);
}

.cta-img {
	width: 48.6%;
}

.cta-img img, .cta-img video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-reverse {
	flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
	.cta {
		flex-direction: column;
		height: auto;
		border-radius: 10px;
	}
	
	.cta-content {
		padding: 40px 16px 50px;
	}
	
	.cta-text {
		max-width: none;
	}
	
	.cta-img {
		width: auto;
		height: 295px;
	}
}

/************************* cta-floating *************************/
.cta-floating {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: max(155px, 180rem) max(16px, 40rem);
	text-align: center;
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/uploads/2024/09/Floating-CTA-1-Light.webp");
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	border-radius: 20px;
}

.cta-floating h2 {
	max-width: max(360px, 770rem);
	margin: 0 0 max(20px, 40rem);
}

.cta-floating h2:last-child {
	margin-bottom: 0;
}

.cta-floating-text {
	max-width: max(300px, 700rem);
	margin: min(0px, -20rem) 0 max(30px, 60rem);
	font-size: max(14px, 20rem);
	line-height: 125%;
}

.cta-floating-text:first-child {
	margin-top: 0;
}

.cta-floating-text:last-child {
	margin-bottom: 0;
}

.cta-floating-2 {
	color: var(--white);
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/uploads/2024/09/Floating-CTA-2-Dark-1.webp") 50% 50% no-repeat;
	background-size: cover;
}

.cta-floating-3 {
	background: var(--white_dark);
}

.app {
	display: flex;
	flex-wrap: wrap;
	gap: max(8px, 20rem);
	justify-content: center;
	align-items: center;
}

.app-item img {
	/*height: max(40px, 70rem);*/
	width: max(120px, 150rem);
}

.section.post-class a {
	color: var(--deep_green);
}

.cta-4 {
	max-width: max(720px, 910rem);
	margin: 0 auto;
	font-size: max(16px, 20rem);
}

.cta-floating-2.nitro-lazy {
	background: none !important;
}

.cta-4 h3 {
	margin: 0 0 21px;
}

.cta-4 h3:last-child {
	margin: 0;
}

@media screen and (max-width: 576px) {
	.cta-floating h2, .cta-floating-text {
		max-width: none;
	}
	
	.cta-floating .button {
		width: 100%;
	}
	
	.cta-floating {
		background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/uploads/2024/09/Floating-CTA-1-Light-Mob.webp") 50% 50% no-repeat;
		background-size: cover;
	}
	
	.cta-floating.nitro-lazy {
		background: none !important;
	}
	
	.cta-floating-2 {
		background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/uploads/2024/09/Frame-738003970.webp") 50% 50% no-repeat;
		background-size: cover;
	}
	
	.cta-floating-2.nitro-lazy {
		background: none !important;
	}
	
	.cta-floating-3 {
		background: var(--white_dark);
	}
}

/************************* faq *************************/
.faq {
	display: flex;
	justify-content: space-between;
}

.faq-side {
	width: calc(50% - 5px);
	padding-right: max(30px, 50rem);
}

.faq-side h2 {
	max-width: max(480px, 680rem);
	margin: 0 0 max(20px, 40rem);
}

.faq-content {
	width: calc(50% - 5px);
}

.faq-item {
	padding: max(24px, 30rem) max(15px, 30rem);
	margin: 0 0 10px;
	background: var(--white);
	border-radius: 10px;
}

.faq-item:last-child {
	margin: 0;
}

.faq-link {
	display: block;
	position: relative;
	padding: 0 40px 0 0;
	font-weight: 400;
	font-size: max(16px, 20rem);
	line-height: 125%;
	color: #121127;
	text-decoration: none;
}

.faq-link::after {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	width: 20px;
	height: 20px;
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/chevron-down.svg") 50% 50% no-repeat;
	transition: all .3s linear;
}

.faq-link.active::after {
	transform: rotate(180deg);
}

.faq-hidden {
	display: none;
	padding: 16px 0 0;
	color: #121127;
	opacity: .56;
}

@media screen and (max-width: 767px) {
	.faq {
		display: block;
	}
	
	.faq-side {
		width: auto;
		padding-right: 0;
	}
	
	.faq-side h2 {
		max-width: none;
	}
	
	.faq-content {
		width: auto;
	}
}

/************************* media + text section *************************/
.media {
	display: flex;
	justify-content: space-between;
	padding: max(30px, 50rem);
	/*height: max(680px, 800rem);*/
	background: var(--white_dark);
	border-radius: 20px;
}

.media-img {
	width: 47.4%;
	position: relative;
}

.media-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.media-video, .media-video-vimeo {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.media-video img, .media-video-vimeo img {
	width: max(80px, 120rem);
	height: max(80px, 120rem);
}

.media-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 16px;
}

.media-content {
	width: 48.5%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.media-content .button {
	margin: auto 0 0;
}

.media-text {
	width: 100%;
	max-width: 85%;
	font-size: max(18px, 20rem);
	margin: 0 0 max(30px, 50rem);
	line-height: 130%;
}

.media-content h2 {
	width: 100%;
	max-width: max(380px, 780rem);
	margin: 0 0 20px;
}

h1.with-line, h2.with-line {
	margin: 0 0 10px;
	padding-bottom: max(20px, 30rem);
}

h1.with-line span, h2.with-line span {
	position: relative;
}

h1.with-line span::after, h2.with-line span::after {
	bottom: min(-4px, -9rem);
	width: 130%;
	height: max(4px, 9rem);
}

.media-reverse {
	flex-direction: row-reverse;
}

.media-compact {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding: max(30px, 50rem);
	/*	height: max(680px, 800rem);*/
	background: var(--white_dark);
	border-radius: 20px;
}

.media-compact-side {
	width: 50%;
}

.media-compact-content {
	width: 45%;
	padding-top: 120rem;
}

.media-compact-wrap {}

.media-compact-wrap h4 {
	margin: 0 0 max(20px, 30rem);
}

.media-compact .media-img {
	/*	position: absolute;*/
	width: 100%;
	/*	width: max(300px, 360rem);*/
	height: max(400px, 360rem);
}

.link {
	position: relative;
	font-size: var(--link);
	line-height: 120%;
	color: var(--black);
	text-decoration: none;
}

.link::before, .link::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--highlight_green);
	transition: 1.1s var(--ease-out-expo);
}

.link::before {
	transform: scaleX(0);
	transform-origin: left;
}

.link::after {
	transform-origin: right;
	transition-delay: .25s;
}

.link:hover::before {
	transform: scaleX(1);
	transition-delay: .25s;
}

.link:hover::after {
	transform: scaleX(0);
	transition-delay: 0s;
}

.media-big {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.media-big-side {
	width: 50%;
}

.media-big-side h2 {
	max-width: max(500px, 840rem);
	margin: 0 0 20px;
}

.media-big-content {
	width: 37.2%;
	padding: 0 0 30px;
}

.media-big-content h3 {
	max-width: max(400px, 460rem);
	margin: 0 0 max(20px, 30rem);
	font-weight: 300;
}

.media-big-text {
	max-width: max(400px, 460rem);
	margin: 0 0 30px;
}

.media-big-img {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 30px;
}

.media-big-img img {
	width: 100%;
	min-height: 480px;
	object-fit: cover;
	height: 650rem;
	object-fit: contain;
	object-position: center;
}

.media-big-img video {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	overflow: hidden;
	z-index: 2;
}

.media-big-img .media-video img {
	width: max(80px, 120rem);
	height: max(80px, 120rem);
	min-height: 1px;
}

.media-dir {
	display: flex;
	justify-content: space-between;
	padding: max(30px, 50rem);
	background: var(--white_dark);
	border-radius: 20px;
}

.media-dir-img {
	width: 47.4%;
	min-height: max(560px, 680rem);
	position: relative;
	overflow: hidden;
	border-radius: 16px;
}

.media-dir-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-dir .media-video img {
	width: max(80px, 120rem);
	height: max(80px, 120rem);
}

.media-dir-content {
	width: 48.5%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.media-dir-content h2 {
	margin: 0 0 30px;
}

.media-dir-content h3 {
	margin: 0 0 20px;
}

.media-dir-item {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
	margin: 0 0 30px;
}

.media-dir-item:last-child {
	margin: 0;
}

.media-dir-text a {
	color: var(--deep_green);
	text-decoration: none;
}

.media-dir-reverse {
	flex-direction: row-reverse;
}

.media-dir-img iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

@media screen and (max-width: 1200px) {
	.media-compact-side {
		width: 46%;
	}
	
	.media-compact-content {
		width: 50%;
	}
}

@media screen and (max-width: 960px) {
	.media-compact {
		display: block;
		padding: 40px 16px;
		height: auto;
		border-radius: 10px;
	}
	
	.media-compact-side {
		width: auto;
	}
	
	.media-compact-content {
		width: auto;
		padding: 0 0 40px;
	}
	
	.media-compact-wrap {
		max-width: none;
	}
	
	.media-compact .media-img {
		position: relative;
		left: auto;
		bottom: auto;
	}
	
	.media-big-side, .media-big-content {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.media {
		flex-direction: column-reverse;
		padding: 0;
		height: auto;
		overflow: hidden;
		border-radius: 10px;
	}
	
	.media-img {
		width: auto;
		height: auto;
	}
	
	.media-content {
		width: auto;
		padding: 40px 16px 50px;
	}
	
	.media-content .button {
		width: 100%;
	}
	
	.media-text {
		max-width: none;
	}
	
	.media-content h2 {
		max-width: none;
	}
	
	h1.with-line, h2.with-line {
		margin: 0 0 16px;
	}
	
	h1.with-line span::after, h2.with-line span::after {
		width: 100%;
	}
	
	.media-reverse {
		flex-direction: column;
	}
	
	.media-reverse .media-content {
		padding: 50px 16px 40px;
	}
	
	.media-img img, .media-iframe {
		border-radius: 0;
	}
	
	.media-big {
		display: block;
		margin: 0 -16px;
		padding: 40px 16px 0;
		background: var(--white_dark);
		border-radius: 10px;
	}
	
	.media-big-content {
		padding: 0 0 40px;
	}
	
	.media-big-content h3, .media-big-text {
		max-width: none;
	}
	
	.media-big-img {
		width: auto;
		margin: 0 -16px;
		border-radius: 0;
	}
	
	.media-dir {
		flex-direction: column-reverse;
		margin: 0 -16px;
		padding: 0;
		border-radius: 10px;
	}
	
	.media-dir-reverse {
		flex-direction: column;
	}
	
	.media-dir-reverse .media-dir-img {
		border-radius: 10px 10px 0 0;
	}
	
	.media-dir-img {
		width: auto;
		border-radius: 0 0 10px 10px;
	}
	
	.media-dir-content {
		width: auto;
		padding: 40px 16px 50px;
	}
	
	.media-dir-content h3 {
		font-size: 18px;
	}
	
	.media-dir-img iframe {
		min-height: 295px;
		min-height: max(560px, 680rem);
	}
}

@media screen and (max-width: 576px) {
	.media, .media-compact {
		margin: 0 -16px;
	}
	
	.media-compact .media-img {
		width: 100%;
		height: 180px;
	}
	
	.media-big-side h2 {
		max-width: none;
	}
	
	.media-big-img img {
		/*		min-height: 242px;		*/
		min-height: 1600rem;
	}
	
	.header.header-beige .subnav {
		background: none;
	}
	
	.media-big {
		background: none;
	}
	
	.cta-wrap h2 {
		text-align: center;
	}
	
	.cta-buttons {
		justify-content: center;
	}
	
	.trustpilot-widget {
		margin: -100px 0 0 0;
	}
	
	.bar {
		height: auto;
		padding: 5px 0;
	}
	
	.bar-text {
		max-width: 100%;
	}
	
	.header-logo.active::before {
		content: "";
		position: absolute;
		left: -20px;
		right: 0px;
		top: -1000px;
		width: 1000px;
		background: var(--deep_green);
		height: 1040px;
	}
	
	.header-nav-list > li > a {
		height: 50px;
	}
}

/************************* media sections *************************/
.media-photo-big {
	overflow: hidden;
	position: relative;
	border-radius: 30px;
}

.media-photo-big img {
	width: 100%;
	min-height: 400px;
	object-fit: cover;
	height: auto;
}

.media-photo-big .media-video img, .media-photo-min .media-video img {
	width: max(80px, 120rem);
	height: max(80px, 120rem);
	min-height: 1px;
}

.media-photo-min {
	overflow: hidden;
	position: relative;
	max-width: max(720px, 930rem);
	margin: 0 auto;
	border-radius: 30px;
}

.media-photo-min img {
	width: 100%;
	min-height: 200px;
	object-fit: cover;
	height: auto;
}

.media-slider {
	width: calc(100% + ( 100vw - 100% ) / 2);
	margin: 0 0 max(25px, 40rem);
}

.media-slide {
	padding: 0 5px 0 0;
}

.media-slide img {
	width: max(308px, 680rem);
	border-radius: 30px;
	height: auto;
}

.slider-arrows {
	display: flex;
	gap: 10px;
}

.slider-arrow {
	width: 28px;
	height: 28px;
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/arrow-slider.svg") 50% 50% no-repeat;
	background-size: contain;
}

.slider-arrow.nitro-lazy {
	background: none !important;
}

.media-slider-prev {
	transform: scale(-1, 1);
}

.media-carousel-top {
	position: relative;
	padding-right: 80px;
	margin: 0 0 60px;
}

.media-carousel-top h2 {
	max-width: max(320px, 644rem);
	margin: 0 0 20px;
}

.media-carousel-top h2:last-child {
	margin: 0;
}

.media-carousel-text {
	max-width: max(560px, 644rem);
}

.media-carousel-top .slider-arrows {
	position: absolute;
	right: 0;
	bottom: 0;
}

.media-carousel .button {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.media-photo-big {
		border-radius: 10px;
	}
	
	.media-carousel-top {
		padding: 0 0 30px;
		margin: 0 0 30px;
	}
}

/************************* testimonials *************************/
.trust-review-top {
	position: relative;
	padding-right: 150px;
	margin: 0 0 max(25px, 50rem);
}

.trust-logo {
	position: absolute;
	top: 0;
	right: 0;
}

.trust-logo img {
	width: 125px;
}

.trust-review-top h2 {
	max-width: max(400px, 780rem);
	margin: 0 0 max(14px, 20rem);
}

.trust-review-top h2:last-child {
	margin: 0;
}

.trust-review-text {
	max-width: max(560px, 644rem);
}

.trust-review-top .slider-arrows {
	position: absolute;
	right: 0;
	bottom: 0;
}

.trust-slider-prev {
	transform: scale(-1, 1);
}

.trust-slider {
	width: calc(100% + ( 100vw - 100% ) / 2);
}

.trust-slide {
	padding: 0 10px 0 0;
}

.trust-wrap {
	display: block;
	width: max(360px, 450rem);
	padding: max(10px, 20rem) 20px;
	color: var(--deep_green);
	text-decoration: none;
	background: var(--white_dark);
	border-radius: 30px;
}

.trust-wrap:hover {
	background: var(--white);
}

.trust-top {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0 0 20px;
}

.trust-top img {
	border-radius: 50%;
	max-width: 48px;
}

.trust-name {
	margin: 0 0 10px;
	font-weight: 400;
	font-size: 20px;
	line-height: 125%;
}

.trust-name span {
	opacity: .6;
}

.trust-text {
	max-width: max(252px, 290rem);
	opacity: .6;
}

.trust-rating {
	width: 107px;
	height: 20px;
}

.trust-rating img {
	display: block;
	width: 100%;
	border-radius: 0;
	max-width: 100%;
}

.review {
	position: relative;
	padding: max(78px, 180rem) max(34px, 55rem) max(37px, 75rem);
	background: var(--purple);
	border-radius: 20px;
}

.review h2 {
	max-width: max(500px, 1000rem);
	margin: 0 auto max(35px, 40rem);
	text-align: center;
}

.review-slider {
	padding: 0 max(40px, 60rem) max(58px, 105rem);
}

.review-item {
	display: flex;
	max-width: max(480px, 672rem);
	margin: 0 auto;
	padding: max(36px, 52rem) 0 0;
	position: relative;
}

.review-item::before {
	position: absolute;
	top: 0;
	left: max(134px, 192rem);
	content: "";
	width: max(64px, 96rem);
	height: max(64px, 96rem);
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/quote.svg") 50% 50% no-repeat;
	background-size: contain;
}

.review-ava {
	width: max(108px, 140rem);
	min-width: max(108px, 140rem);
	margin: 0 max(26px, 52rem) 0 0;
}

.review-ava img {
	width: 100%;
	border-radius: 50%;
}

.review-text {
	position: relative;
	margin: 0 0 max(26px, 32rem);
	font-weight: 400;
	font-size: max(14px, 20rem);
	line-height: 125%;
}

.review-name {
	margin: 0 0 8px;
	font-weight: 400;
	font-size: max(24px, 30rem);
	line-height: 110%;
}

.review-status {
	max-width: max(260px, 375rem);
	font-weight: 400;
	font-size: max(14px, 20rem);
	line-height: 125%;
}

.review-main {
	position: relative;
}

.slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.slick-dots li {
	list-style: none;
}

.slick-dots button {
	display: block;
	width: max(8px, 10rem);
	height: max(8px, 10rem);
	font-size: 0;
	cursor: pointer;
	border-radius: 50%;
	background: var(--black);
	opacity: .2;
}

.slick-dots .slick-active button {
	opacity: 1;
}

.review .slider-arrow {
	position: absolute;
	top: 0;
	z-index: 10;
	width: max(28px, 40rem);
	height: max(28px, 40rem);
}

.review-prev {
	left: 0;
	transform: scale(-1, 1);
}

.review-next {
	right: 0;
}

@media screen and (max-width: 576px) {
	.trust-review-top {
		padding: 0 0 72px;
	}
	
	.trust-logo {
		top: auto;
		right: auto;
		bottom: 0;
		left: 0;
	}
	
	.trust-review-top h2, .trust-review-text {
		max-width: none;
	}
	
	.trust-wrap {
		width: 340px;
	}
	
	.review {
		border-radius: 10px;
	}
	
	.review h2 {
		max-width: none;
		text-align: left;
	}
	
	.review-slider {
		padding: 0 0 max(58px, 105rem);
	}
	
	.review-item {
		display: block;
		max-width: none;
		padding: 0;
	}
	
	.review-item::before {
		display: none;
	}
	
	.review-ava {
		margin: 0 0 26px;
	}
	
	.review-main {
		position: static;
	}
	
	.review .slider-arrows {
		position: absolute;
		top: 25px;
		right: 16px;
		display: flex;
	}
	
	.review .slider-arrow {
		position: static;
	}
}

/************************* card sections *************************/
.serv h2 {
	margin: 0 0 max(25px, 50rem);
}

.serv-block {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}

.serv-col {
	width: 33.33%;
	padding: 0 5px;
	margin: 0 0 15px;
}

.serv-item {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.serv-img {
	overflow: hidden;
	border-radius: 30px 30px 0 0;
}

.serv-img img {
	width: 100%;
	height: max(200px, 270rem);
	object-fit: cover;
	transition: all .3s linear;
}

.serv-item:hover .serv-img img {
	transform: scale(1.1);
}

.serv-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: max(30px, 35rem) max(16px, 20rem) max(16px, 30rem);
	background: var(--white_dark);
	border-radius: 0 0 30px 30px;
	gap: max(30px, 35rem);
}

.serv-content h3 {
	overflow: hidden;
	max-height: 3.3em;
	margin: 0 0 max(8px, 10rem);
}

/*.serv-text {
	overflow: hidden;
	max-height: 3.4em;
}*/
.serv-buttons {
	margin: auto 0 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.serv-buttons .button {
	width: 100%;
	padding: 12px 15px;
}

.blog {
	position: relative;
}

.blog-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 0 max(25px, 56rem);
}

.blog-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 0;
	margin: 0 -5px;
}

.blog-col {
	display: block;
	width: 50%;
	padding: 0 5px;
	cursor: pointer;
}

.blog-item {
	display: flex;
	flex-direction: column;
	height: max(550px, 728rem);
}

.blog-img {
	overflow: hidden;
	border-radius: 30px 30px 0 0;
}

.blog-img img {
	width: 100%;
	height: max(325px, 420rem);
	object-fit: cover;
	transition: all .3s linear;
}

.blog-item:hover .blog-img img {
	transform: scale(1.1);
}

.blog-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: max(30px, 44rem) max(12px, 20rem) max(30px, 50rem);
	background: var(--white_dark);
	border-radius: 0 0 30px 30px;
}

.blog-content h3 {
	overflow: hidden;
	/*max-width: max(300px, 402rem);*/
	max-width: 100%;
	max-height: 2.2em;
	margin: 0 0 max(8px, 30rem);
}

.blog-text {
	overflow: hidden;
	max-width: max(280px, 340rem);
	max-height: 4em;
}

.blog-content .link {
	margin: auto 0 0;
}

.team-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 max(25px, 30rem);
}

.team-top-title {
	width: calc(50% - 5px);
	margin: 0 0 20px;
}

.team-top-title h2 {
	max-width: max(440px, 640rem);
}

.team-top-text {
	width: calc(50% - 5px);
	margin: 0 0 20px;
}

.team-top-text-wrap {
	max-width: max(380px, 460rem);
	margin: 0 0 max(20px, 30rem);
}

.team-top-subtitle {
	width: calc(50% - 5px);
}

.team-block {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}

.team-col {
	width: 25%;
	padding: 0 5px;
	margin: 0 0 max(10px, 30rem);
}

.team-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: max(25px, 50rem) 25px;
	background: var(--white_dark);
	border-radius: 14px;
}

.team-photo {
	overflow: hidden;
	margin: 0 max(10px, 25rem) 21px;
	border-radius: 50%;
}

.team-photo img {
	width: 100%;
	height: auto;
	transition: all .3s linear;
}

.team-item:hover .team-photo img {
	transform: scale(1.1);
}

.team-name {
	margin: 0 0 14px;
	font-family: "GT Ultra Fine";
	font-weight: 400;
	font-size: var(--h3);
	line-height: 110%;
}

.team-icons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 14px;
}

.team-icon {
	position: relative;
}

.team-icon img {
	display: block;
}

.team-status {
	margin: 0 0 14px;
	position: relative;
	font-family: "GT Ultra Fine";
	font-weight: 400;
	font-size: var(--h4);
	line-height: 110%;
}

.team-stat {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0 0 20px;
}

.team-stat-item {
	display: flex;
}

.team-stat-icon {
	width: 24px;
	min-width: 24px;
	margin: 0 20px 0 0;
}

.team-stat-text {
	flex: 1;
	padding: max(3px, 5rem) 0;
	opacity: .7;
	line-height: 120%;
}

.team-item .button {
	width: 100%;
	padding: 12px 15px;
	margin: auto 0 0;
}

.with-tooltip {
	position: relative;
}

.with-tooltip:hover .tooltip {
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;
}

.tooltip {
	position: absolute;
	z-index: 10;
	top: 100%;
	margin-top: 5px;
	left: -4px;
	max-width: 264px;
	min-width: max-content;
	padding: 12px;
	font-size: 12px;
	line-height: 125%;
	color: var(--white);
	background: var(--black);
	border-radius: 10px;
	transform: translateY(5px);
	opacity: 0;
	visibility: hidden;
	transition: all .3s linear;
}

.tooltip::before {
	position: absolute;
	top: -7px;
	left: 10px;
	content: "";
	border-bottom: 7px solid var(--black);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}

.tooltip::after {
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	content: "";
	height: 12px;
}

.team-status .tooltip {
	left: 20px;
}

.team-slider {
	margin: 0 -5px;
}

.team-slide {
	padding: 0 5px;
	margin: 0;
}

.team-top-slider {
	position: relative;
	padding: 0 0 28px;
}

.team-top-slider .slider-arrows {
	position: absolute;
	right: 0;
	bottom: 0;
}

.team-prev {
	transform: scale(-1, 1);
}

@media screen and (max-width: 1320px) {
	.team-col {
		width: 33.33%;
	}
}

@media screen and (max-width: 1200px) {
	.serv-col {
		width: 33.33%;
	}
}

@media screen and (max-width: 1024px) {
	.serv-col {
		width: 50%;
	}
	
	.team-col {
		width: 50%;
	}
}

@media screen and (max-width: 576px) {
	.serv-col {
		width: 100%;
	}
	
	.blog {
		padding-bottom: 73px;
	}
	
	.blog-top .button {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
	}
	
	.blog-col {
		width: 100%;
	}
	
	.team-col {
		width: 100%;
	}
	
	.team-photo {
		margin: 0 0 21px;
	}
	
	.team-top {
		display: block;
	}
	
	.team-top-title {
		width: auto;
		margin: 0 0 14px;
	}
	
	.team-top-title h2 {
		max-width: none;
	}
	
	.team-top-text {
		width: auto;
		margin: 0 0 25px;
	}
	
	.team-top-text-wrap {
		max-width: none;
	}
	
	.team-top-subtitle {
		width: auto;
	}
}

/************************* list sections *************************/
.list-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 14px 0;
	margin: 0 0 max(48px, 50rem);
}

.list-top-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 23px 0;
	width: calc(50% - 5px);
}

.list-top h2 {
	max-width: max(410px, 820rem);
}

.list-top-text {
	max-width: max(410px, 470rem);
}

.list-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 0;
}

.list-item {
	width: calc(50% - 5px);
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding: max(16px, 30rem);
	background: var(--white_dark);
	border-radius: 30px;
}

.list-img {
	/*	width: max(89px, 128rem);*/
	width: 50%;
	min-width: max(89px, 128rem);
	margin: 0 0 0 30px;
}

.list-img img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.list-content {
	flex: 1;
	max-width: max(500px, 560rem);
}

.list-content h3 {
	overflow: hidden;
	/*	height: 3.3em;*/
	margin: 0 0 max(10px, 40rem);
}

.list-text {
	overflow: hidden;
}

.calendar-top {
	display: flex;
	flex-direction: column;
	gap: max(14px, 20rem) 0;
	margin: 0 0 max(21px, 35rem);
}

.calendar h2 {
	max-width: max(410px, 800rem);
}

.calendar-text {
	max-width: max(310px, 370rem);
}

.calendar-list {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}

.calendar-item {
	display: flex;
	align-items: center;
	padding: max(16px, 50rem);
	color: var(--white);
	background: var(--deep_green);
	border-radius: 30px;
}

.calendar-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0 50px 0 0;
	gap: 12px 0;
	font-family: "GT Ultra Fine";
	font-weight: 400;
	font-size: var(--h3);
	line-height: 110%;
	letter-spacing: -.03em;
}

.calendar-date {
	display: flex;
	gap: 20px;
}

.calendar-item .button {
	padding: 12px max(100px, 144rem);
}

.news-top {
	display: flex;
	flex-direction: column;
	gap: max(14px, 25rem) 0;
	margin: 0 0 max(45px, 54rem);
}

.news-top h2 {
	max-width: max(410px, 800rem);
}

.news-top-text {
	max-width: max(310px, 370rem);
}

.news-subtitle {
	margin: 0 0 max(25px, 35rem);
}

.news-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 0;
}

.news-item {
	width: calc(50% - 5px);
	display: flex;
	padding: max(16px, 30rem);
	background: var(--white_dark);
	border-radius: 30px;
	cursor: pointer;
	transition: background-color .1s ease;
}

.news-item:hover {
	background-color: var(--white);
}

.news-img {
	width: 180px;
	min-width: 180px;
	height: 180px;
	margin: 0 20px 0 0;
	border-radius: 20px;
	overflow: hidden;
}

.news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease;
}

.news-item:hover img {
	transform: scale(105%);
}

.news-content {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	flex: 1;
	gap: 10px;
}

.news-date {
	width: max(80px, 100rem);
	min-width: max(80px, 100rem);
	margin: 0 0 0 15px;
	opacity: .48;
}

.news-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	max-width: max(380px, 440rem);
}

.news-info h3 {
	margin: 0 0 max(10px, 12rem);
}

.news-info .link {
	margin: auto auto 0 0;
}

.news-list.news_list_7 .news-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex: 1;
	align-items: center;
	gap: 10px;
}

.news-list.news_list_7 .news-info {
	flex: 1;
	display: flex;
	max-width: initial;
}

.base-top {
	display: flex;
	flex-direction: column;
	gap: max(14px, 25rem) 0;
	margin: 0 0 25px;
}

.base-top h2 {
	max-width: max(350px, 700rem);
}

.base-top-text {
	max-width: max(310px, 370rem);
}

.base-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 0;
}

.base-col {
	width: calc(50% - 5px);
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}

.base-item {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	background: var(--white_dark);
	border-radius: 30px;
	transition: background-color .1s ease;
}

.base-item:hover {
	background-color: var(--white);
}

.base-item h3 {
	margin-bottom: 0;
}

.base-item .item-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	text-decoration: none;
	padding: max(16px, 30rem);
}

.base-item .link {
	margin: 0 0 3px 15px;
	white-space: nowrap;
}

.list-compact {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.list-compact-col {
	width: calc(50% - 5px);
}

.list-compact-col h2 {
	max-width: max(360px, 640rem);
	margin: 0 0 max(14px, 20rem);
}

.list-compact-text {
	max-width: max(540px, 635rem);
	margin: 0 0 max(32px, 41rem);
}

.list-compact-col .button {
	padding: 12px max(100px, 144rem);
}

.list-compact-sutitle {
	max-width: max(340px, 400rem);
	margin: 0 0 max(15px, 30rem);
}

.list-compact-sutitle h3 {
	margin: 0 0 max(8px, 10rem);
}

.list-compact-block {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}

.list-compact-item {
	display: flex;
	justify-content: flex-start;
	padding: max(16px, 30rem);
	background: var(--white_dark);
	border-radius: 30px;
	align-items: center;
}

.list-compact-icon {
	width: 48px;
	min-width: 48px;
	margin: 0 30px 0 0;
	align-self: flex-start;
}

.list-compact-content {
	max-width: max(400px, 600rem);
	margin-right: max(20px, 50rem);
}

.list-compact-content h5 > ul {
	margin: max(10px, 20rem) 0 0;
}

.webinar-top {
	margin: 0 0 max(40px, 47rem);
}

.webinar-top h2 {
	max-width: max(420px, 640rem);
	margin: 0 0 max(14px, 25rem);
}

.webinar-top-text {
	max-width: max(440px, 480rem);
	margin: 0 0 30px;
}

.webinar-top .button {
	padding: 12px max(100px, 144rem);
}

.webinar-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 50px 0;
}

.webinar-col {
	width: calc(50% - 5px);
}

.webinar-col h3 {
	margin: 0 0 max(20px, 25rem);
}

.webinar-list {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}

@media screen and (max-width: 1320px) {
	.news-item {
		/*		width: 100%;*/
		width: calc(50% - 5px);
	}
}

@media screen and (max-width: 1024px) {
	.list-top-col, .list-item {
		width: calc(50% - 5px);
	}
	
	.list-top .button {
		width: 100%;
	}
	
	.list-item {
		flex-direction: column;
	}
	
	.list-img {
		margin: 0 0 30px;
		width: 100%;
	}
	
	.list-content {
		margin: auto 0 0;
		/*		flex: none;*/
		max-width: none;
	}
	
	.base-col {
		width: 100%;
	}
	
	.list-compact {
		gap: 40px 0;
	}
	
	.list-compact-col {
		width: 100%;
	}
	
	.webinar-col {
		width: 100%;
	}
}

@media screen and (max-width: 1024px) {
	.news-content {
		/*
		display: block;
		margin: 0 0 12px;
*/
		flex-direction: column;
		align-items: flex-start;
	}
	
	.news-date {
		width: 100%;
		margin: 0;
	}
	
	.news-item {
		width: 100%;
	}
	
	.news-list.news_list_7 .news-content {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.news-img {
		width: 100%;
		max-width: calc(100% / 6);
		min-width: calc(100% / 5);
		margin: 0 20px 0 0;
		border-radius: 10px;
		overflow: hidden;
		aspect-ratio: 1/1;
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 120px;
		height: auto;
	}
	
	.news-img img {
		width: 100%;
		height: auto;
		object-fit: cover;
		display: block;
		aspect-ratio: 1/1;
		border-radius: 10px;
	}
}

@media screen and (max-width: 767px) {
	.list-top h2, .list-top-text {
		max-width: none;
	}
	
	.calendar h2, .calendar-text {
		max-width: none;
	}
	
	.calendar-item {
		flex-direction: column;
		gap: 50px 0;
		border-radius: 10px;
	}
	
	.calendar-item .button {
		width: 100%;
		padding: 12px 20px;
	}
	
	.calendar-content {
		padding: 0;
		gap: 19px 0;
	}
	
	.calendar-date {
		gap: 8px;
	}
	
	/*
	.news-item {
		display: block;
	}
	.news-img {
		width: auto;
		min-width: 1px;
		height: auto;
		margin: 0 0 20px;
	}
	.news-content {
		display: block;
	}
	.news-date {
		width: auto;
		min-width: 1px;
		margin: 0 0 12px;
	}
	.news-info {
		max-width: none;
	}
	.news-text {
		margin: 0 0 40px;
	}
*/
	.base-top {
		margin: 0 0 32px;
	}
	
	.base-item {
		min-height: 70px;
		border-radius: 30px;
	}
}

@media screen and (max-width: 576px) {
	.list-block, .calendar-list, .news-list, .base-list {
		margin: 0;
	}
	
	.news-item, .news-img img, .list-item {
		border-radius: 10px;
		min-width: 100%;
	}
	
	.list-compact-block {
		margin: 0 -16px;
	}
	
	.list-compact-item {
		display: block;
		padding: 16px 16px 30px;
		border-radius: 10px;
	}
	
	.list-compact-icon {
		margin: 0 0 60px;
	}
	
	.list-compact-content {
		max-width: none;
		padding: 0;
	}
	
	.list-compact-col .button, .webinar-top .button {
		width: 100%;
		padding: 12px 20px;
	}
	
	.webinar-list {
		margin: 0 -16px;
	}
}

/************************* share *************************/
.share {
	padding: max(20px, 30rem) 0;
}

.share-block {
	display: flex;
	align-items: center;
	max-width: max(640px, 910rem);
	margin: 0 auto;
}

.share-text {
	margin: 0 max(100px, 180rem) 0 0;
	font-family: "GT Ultra Fine";
	font-weight: 400;
	font-size: max(16px, 20rem);
	line-height: 110%;
	letter-spacing: -.03em;
	opacity: .6;
}

.share-webs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.share-webs img {
	display: block;
}

.share-webs a:hover {
	opacity: .5;
}

@media screen and (max-width: 576px) {
	.share-block {
		max-width: none;
	}
	
	.share-text {
		margin: 0 34px 0 0;
	}
}

/************************* podcast *************************/
.podcast img {
	max-width: 100%;
}

/************************* table *************************/
.table-section h2 {
	margin: 0 0 14px;
}

.table-block {
	display: flex;
}

.table-section-text {
	width: max(240px, 280rem);
	min-width: max(240px, 280rem);
	margin-right: max(80px, 140rem);
}

.table-wrap {
	max-width: max(800px, 1140rem);
	margin: -30px 0 0;
	flex: 1;
}

.table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.table th {
	padding: 0 0 max(10px, 18rem);
	font-weight: 400;
	font-size: max(11px, 20rem);
	line-height: 125%;
	vertical-align: bottom;
	text-align: left;
}

.th-wrap {
	width: max(80px, 132rem);
	min-width: max(80px, 132rem);
	margin-left: max(80px, 132rem);
}

.th-wrap-1 {
	margin-left: 0;
	padding-left: max(5px, 10rem);
}

.th-wrap-2 {
	font-weight: 700;
}

.th-wrap img {
	display: block;
	margin: 0 0 8px;
}

.table td {
	padding: 0;
	border-top: 1px solid #1c4750;
	border-bottom: 1px solid #1c4750;
}

.table tr:nth-child(even) td {
	background: var(--white_dark);
}

.table td:first-child {
	width: 100%;
}

.table-text {
	width: 100%;
	padding: max(6px, 10rem) max(13px, 20rem);
	font-weight: 400;
	font-size: max(12px, 20rem);
	line-height: 120%;
}

.table-num {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 42px;
	padding: max(9px, 19rem) max(5px, 10rem);
	font-family: "GT Ultra Fine";
	font-weight: 400;
	font-size: max(14px, 32rem);
	line-height: 100%;
	letter-spacing: -.03em;
}

.table-num-dark {
	width: max(80px, 132rem);
	min-width: max(80px, 132rem);
	margin-left: max(80px, 132rem);
	color: var(--white);
	text-align: center;
	justify-content: center;
	background-color: var(--deep_green);
}

.table-num-green {
	width: max(80px, 132rem);
	min-width: max(80px, 132rem);
	margin-left: max(80px, 132rem);
	text-align: center;
	justify-content: center;
	/*background-color: var(--highlight_green);*/
	background-color: #83f48d;
}

@media screen and (max-width: 1024px) {
	.table-block {
		display: block;
	}
	
	.table-section-text {
		width: auto;
		min-width: 1;
		margin: 0 0 23px;
	}
	
	.table-wrap {
		margin: 0;
	}
	
	.table td:first-child {
		width: 43%;
	}
	
	.bar-text {
		font-size: 12px;
		line-height: 16px;
	}
	
	.bar-link {
		font-size: 12px;
	}
	
	.table-num {
		padding-right: 15px;
	}
	
	.table-num-dark {
		width: auto;
		min-width: 64px;
		margin-left: 0;
		padding-right: 0;
	}
	
	.table-num-green {
		width: auto;
		min-width: 54px;
		margin-left: 0;
		padding-right: 0;
	}
	
	.th-wrap img {
		display: none;
	}
	
	.th-wrap {
		width: max(80px, 132rem);
		min-width: max(80px, 132rem);
		margin-left: max(80px, 132rem);
	}
	
	.th-wrap-1 {
		margin-left: 0;
		padding-left: max(5px, 10rem);
	}
	
	.th-wrap-2 {
		width: auto;
		min-width: 64px;
		margin-left: 0;
		padding-right: 0;
	}
	
	.th-wrap-3 {
		width: auto;
		min-width: 54px;
		margin-left: 0;
		padding-right: 0;
	}
}

@media screen and (max-width: 767px) {
	.table-section h2 {
		margin: 0 0 20px;
	}
}

@media screen and (max-width: 576px) {}

/************************* 404 *************************/
.page404 {
	padding: max(100px, 120rem) 0;
	color: var(--white);
	background: var(--deep_green);
}

.page404-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.page404-num {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "GT Ultra Fine";
	padding-right: max(15px, 40rem);
	font-weight: 300;
	font-size: max(160px, 500rem);
	line-height: 100%;
	letter-spacing: -.03em;
}

.page404-num img {
	width: max(140px, 440rem);
	margin: 0 min(-35px, -120rem) 0 min(-20px, -80rem);
}

.page404-text {
	margin: 0 0 20px;
	font-size: max(16px, 20rem);
	line-height: 125%;
}

@media screen and (max-width: 576px) {
	.page404 {
		padding: 100px 0 140px;
	}
	
	.page404-num {
		margin: 0 0 20px;
	}
	
	.page404 .button {
		width: 100%;
	}
}

/************************* blog *************************/
.blog {
	padding: max(50px, 50rem) 0 max(40px, 70rem);
}

.blog-main {
	margin: 0 0 max(110px, 160rem);
}

.blog-main h1 {
	max-width: max(400px, 840rem);
	margin: 0 0 max(28px, 70rem);
}

.blog-list {
	gap: max(10px, 60rem) 0;
}

.blog .trust-review {
	margin: 0 0 max(40px, 70rem);
}

.search {
	position: relative;
	margin: 0 0 max(25px, 62rem);
}

section .search::before {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: max(17px, 34rem);
	content: "";
	width: 24px;
	height: 24px;
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/loupe.svg") 50% 50% no-repeat;
	pointer-events: none;
}

.search .wpcf7-form-control-wrap input {
	height: max(61px, 66rem);
	padding: 0 max(53px, 70rem) 0 max(53px, 70rem);
	margin: 0;
	font-size: 16px;
	color: var(--black);
	background: var(--white);
}

.search .button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 9px;
}

.search-empty {
	/*	max-width: max(450px, 900rem);*/
	padding: 0 0 100px;
}

.header-grey {
	background: var(--bg);
}

@media screen and (max-width: 576px) {
	.search .button {
		display: none;
	}
}

/************************* counselors page *************************/
.header-transparent {
	background: transparent;
	transition: background linear .3s;
}

.header-transparent.fixed {
	background: var(--deep_green);
}

.counselor {
	padding: max(25px, 85rem) 0 max(40px, 70rem);
}

.counselor-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px 0;
	margin: 0 0 max(50px, 60rem);
}

.counselor-top-col {
	width: calc(50% - 5px);
}

.counselor-top h2 {
	max-width: max(320px, 650rem);
}

.counselor-top-text {
	max-width: max(400px, 460rem);
}

.counselor-main {
	display: flex;
	justify-content: space-between;
	padding: 0 0 max(40px, 185rem);
}

.counselor-side {
	width: calc(25% - 5px);
}

.counselor-content {
	width: calc(75% - 5px);
}

.counselor-content .team-col {
	width: 33.33%;
}

.filter-button {
	display: none;
}

.filter-mask {
	display: none;
}

.filter-close {
	position: absolute;
	top: 30px;
	right: 30px;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--deep_green);
	border-radius: 50%;
}

.filter {
	/*position: sticky;
	top: max(80px, 96rem);
	left: 0;*/
	padding: 48px 25px 30px;
	background: var(--white_dark);
	border-radius: 10px;
}

.filter h3 {
	margin: 0 0 30px;
}

.filter-item {
	margin: 0 0 max(20px, 20rem);
}

.filter-title {
	display: flex;
	align-items: center;
	gap: 3px;
	margin: 0 0 20px;
}

.filter-icon {
	position: relative;
}

.tooltip b {
	display: block;
}

.label {
	display: flex;
	flex-wrap: wrap;
	gap: max(4px, 6rem);
}

.label-item {
	position: relative;
}

.label-input {
	position: absolute;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.label-text {
	position: relative;
	display: block;
	/*	padding: 6px 11px 4px;*/
	padding: 10px 11px 8px;
	font-weight: 400;
	font-size: max(14px, 16rem);
	line-height: 1;
	border: 1px solid var(--green);
	border-radius: 30px;
	cursor: pointer;
	transition: all .3s linear;
}

.label-text:hover {
	background: rgba(43, 102, 72, .1);
}

.label-input:checked + .label-text {
	padding-right: 35px;
	color: var(--white);
	background: var(--green);
}

.label-input:checked + .label-text::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 12px;
	content: "";
	width: 16px;
	height: 16px;
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/delete.svg") 50% 50% no-repeat;
}

.check-list {
	display: flex;
	flex-direction: column;
	gap: 3px;
	max-height: 135px;
	max-height: 82px;
	overflow-y: auto;
}

.check-list::-webkit-scrollbar-track {
	background-color: rgba(28, 71, 80, .1);
}

.check-list::-webkit-scrollbar {
	width: 2px;
	background-color: rgba(28, 71, 80, .1);
}

.check-list::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: #1c4750;
}

.check-item {
	position: relative;
}

.check-input {
	position: absolute;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.check-label {
	position: relative;
	display: block;
	height: auto;
	padding: 0 0 0 32px;
	font-weight: 400;
	font-size: max(14px, 16rem);
	line-height: 24px;
	cursor: pointer;
	transition: all .3s linear;
}

.check-label::after {
	position: absolute;
	top: -1px;
	left: 0;
	content: "";
	width: 24px;
	height: 24px;
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/check-1.svg") 50% 50% no-repeat;
}

.check-label:hover::after {
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/check-2.svg") 50% 50% no-repeat;
}

.check-input:checked + .check-label::after {
	background: url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/check-3.svg") 50% 50% no-repeat;
}

.filter-buttons {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: max(6px, 12rem) 0 0;
}

.filter-buttons .button {
	flex: 1;
	padding: 12px 10px;
}

.filter-reset {
	white-space: nowrap;
}

.filter-reset::before, .filter-reset::after {
	background: var(--deep_green);
}

@media screen and (max-width: 1320px) {
	.counselor-side {
		width: calc(33.33% - 5px);
	}
	
	.counselor-content {
		width: calc(66.66% - 5px);
	}
	
	.counselor-content .team-col {
		width: 50%;
	}
}

@media screen and (max-width: 1024px) {
	.counselor-top-col {
		width: 100%;
	}
	
	.counselor-main {
		display: block;
	}
	
	.counselor-side {
		width: auto;
		margin: 0 0 20px;
	}
	
	.counselor-content {
		width: auto;
	}
	
	.filter-button {
		display: block;
		max-width: 200px;
		padding: 12px 20px;
		color: var(--white);
		background: var(--green);
		border-color: var(--green);
	}
	
	.filter-button:hover {
		color: var(--green);
	}
	
	.filter-mask {
		position: fixed;
		inset: 0;
		display: block;
		z-index: 500;
		background: var(--black);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all .3s linear;
	}
	
	.filter-mask.vis {
		opacity: .5;
		visibility: visible;
		pointer-events: all;
	}
	
	.filter {
		position: fixed;
		top: 0;
		right: -350px;
		left: auto;
		bottom: 0;
		overflow-y: auto;
		z-index: 600;
		width: 324px;
		padding: 80px 25px 30px;
		border-radius: 0;
		transition: all .3s linear;
	}
	
	.filter.vis {
		right: 0;
	}
	
	.filter-close {
		display: flex;
	}
	
	.filter-reset {
		position: absolute;
		top: 40px;
		right: 90px;
	}
}

@media screen and (max-width: 576px) {
	.counselor-content .team-col {
		width: 100%;
	}
}

/************************* person page *************************/
.person {
	padding: max(55px, 45rem) 0 max(40px, 70rem);
}

.person-block {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	margin: 0 0 max(35px, 210rem);
	gap: 30px;
}

.person-side {
	position: sticky;
	top: max(80px, 96rem);
	left: 0;
	width: calc(100% / 3);
	min-width: 420px;
	padding: max(40px, 55rem) max(16px, 35rem) max(30px, 42rem);
	background: var(--white_dark);
	border-radius: 30px;
}

.person-content {
	width: calc(( 100% / 3 ) * 2);
	min-width: 0;
}

.person-top {
	display: flex;
	margin: 0 0 max(30px, 55rem);
}

.person-photo {
	width: 44.6%;
	min-width: 44.6%;
	margin: 0 20px 0 0;
}

.person-photo img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}

.person-top-content {
	flex: 1;
}

.person-top-content h3 {
	margin: 0 0 8px;
}

.person-part {
	padding: 23px 0;
	border-top: 1px solid rgba(26, 68, 73, .2);
}

.person-part h4 {
	margin: 0 0 max(10px, 20rem);
}

.person-info {
	display: flex;
}

.person-icon {
	width: 24px;
	min-width: 24px;
	margin: 0 20px 0 0;
}

.person-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 5px 0 0;
}

.person-info-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 19px 0;
}

.person-info-col {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 15px;
}

.person-info-col .person-info {
	width: calc(50% - 15px);
}

.person-info-list .person-info {
	align-items: center;
}

.person-info-list .person-icon {
	margin: 0 15px 0 0;
}

.person-info-list .person-text {
	display: block;
	padding: 0;
}

.person-button {
	padding: 30px 0 0;
	border-top: 1px solid rgba(26, 68, 73, .2);
}

.person-button .button {
	width: 100%;
	padding: 5px 20px;
}

.article-img {
	position: relative;
	overflow: hidden;
	margin: 0 0 20px;
	border-radius: 30px;
}

.article-img:last-child {
	margin: 0;
}

.article-img img {
	width: 100%;
}

.article-img > img {
	height: auto;
}

.article h3 {
	margin: 0 0 max(20px, 30rem);
	padding-top: 30px;
}

.article h4 {
	margin: 0 0 max(12px, 28rem);
	padding-top: 10px;
}

.article h3:first-child, .article h4:first-child {
	padding-top: 0;
}

.link-list {
	margin: 0 0 30px;
	padding: 0;
}

.link-list:last-child {
	margin: 0;
}

.link-list li {
	margin: 0 0 max(8px, 24rem);
	list-style: none;
}

.link-list li:last-child {
	margin: 0;
}

.link-list a {
	color: var(--black);
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 0 16px;
	margin: 0;
}

.breadcrumbs li {
	padding: 0;
	font-size: max(14px, 16rem);
	line-height: 21px;
	list-style: none;
}

.breadcrumbs li:before {
	display: inline-block;
	vertical-align: top;
	content: "/";
	margin: 0 8px 0 0;
}

.breadcrumbs li:first-child:before {
	display: none;
}

.breadcrumbs a {
	color: var(--deep_green);
	text-decoration: none;
}

.breadcrumbs a:hover {
	opacity: .5;
}

@media screen and (max-width: 1024px) {
	.person-block {
		flex-direction: column;
		gap: 0;
	}
	
	.person-side {
		position: unset;
		margin: 0 0 3em 0;
		background-color: unset;
	}
	
	.person-side, .person-content {
		width: 100%;
		min-width: auto;
	}
	
	.breadcrumbs {
		padding: 0 0 30px;
	}
	
	.person-top {
		display: block;
		margin: 0 0 15px;
	}
	
	.person-photo {
		width: 257px;
		min-width: 1px;
		margin: 0 auto 10px;
	}
	
	.person-top-content h3 {
		margin: 0 0 10px;
	}
	
	.person-part {
		padding: 15px 0;
		border-top: 0;
		border-bottom: 1px solid rgba(26, 68, 73, .2);
	}
	
	.person-button {
		padding: 25px 0 0;
		border-top: 0;
	}
}

@media screen and (max-width: 767px) {
	.person-info-col {
		width: 100%;
		gap: 10px 0;
	}
	
	.person-info-list {
		gap: 10px 0;
	}
	
	.person-button .button {
		width: 100%;
		padding: 13px 20px;
	}
	
	.article-img {
		border-radius: 10px;
	}
	
	.article h3 {
		padding-top: 20px;
	}
	
	.article h4 {
		padding-top: 5px;
	}
	
	.person-info-col .person-info {
		width: 100%;
	}
}

.team-details {
	margin: 0 0 30px;
}

.team-details .team-slide > a {
	text-decoration: none;
}

.team-details .team-item {
	padding: 0px 0px;
	border-radius: 15px;
	overflow: hidden;
}

.team-details .team-photo {
	border-radius: initial;
	margin: 0 0 1em 0;
}

.team-details .team-photo img {
	width: 100%;
	height: max(110px, 190rem);
	object-fit: cover;
	transition: all .3s linear;
	border-radius: 15px 15px 0 0;
}

.team-details .team-status {
	margin: 0 .5em 1em;
	position: relative;
	font-family: "GT Ultra Fine";
	font-weight: 400;
	font-size: var(--h4);
	line-height: 110%;
}

.team-details .slick-track {
	display: flex;
}

.team-details .slick-slide {
	height: auto;
}

.single-tutors .team-details .team-photo img, .single-staff .team-details .team-photo img, .single-counselor .team-details .team-photo img {}

@media screen and (max-width: 1024px) {
	.single-tutors .team-details .team-photo img, .single-staff .team-details .team-photo img, .single-counselor .team-details .team-photo img {
		height: max(180px, 250rem);
	}
}

/************************* form sections *************************/
.form {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: max(769px, 823rem);
	padding: 50px max(16px, 50rem);
	background: var(--purple) url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/form-bg.jpg") 50% 50% no-repeat;
	background-size: cover;
	border-radius: 20px;
}

.form.nitro-lazy {
	background: none !important;
}

.form h2 {
	max-width: max(560px, 1270rem);
	margin: 0 auto max(21px, 62rem);
	text-align: center;
}

.form-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: max(960px, 1270rem);
	margin: 0 auto;
}

.form-block .wpcf7-form-control-wrap {
	width: calc(50% - 5px);
}

.wpcf7-form-control-wrap input {
	display: block;
	width: 100%;
	height: 61px;
	padding: 0 30px;
	margin: 0 0 max(8px, 20rem);
	font-size: max(14px, 16rem);
	color: var(--black);
	border: 1px solid transparent;
	background: rgba(255, 255, 255, .2);
	border-radius: 30px;
	transition: all .3s linear;
}

.wpcf7-form-control-wrap textarea {
	display: block;
	width: 100%;
	height: 122px;
	padding: 20px 30px;
	margin: 0 0 max(8px, 20rem);
	font-size: max(14px, 16rem);
	color: var(--black);
	resize: vertical;
	border: 1px solid transparent;
	background: rgba(255, 255, 255, .2);
	border-radius: 30px;
	transition: all .3s linear;
}

.wpcf7-form-control-wrap input:hover, .wpcf7-form-control-wrap textarea:hover {
	border-color: #fff;
}

.wpcf7-form-control-wrap input:focus, .wpcf7-form-control-wrap textarea:focus {
	border-color: #fff;
}

.wpcf7-form-control-wrap.error input, .wpcf7-form-control-wrap.error textarea {
	border-color: #dc2626;
}

.inactive {
	opacity: .5;
	pointer-events: none;
}

::-webkit-input-placeholder {
	color: var(--black);
}

:-moz-placeholder {
	color: var(--black);
	opacity: 1;
}

::-moz-placeholder {
	color: var(--black);
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--black);
}

.form-button {
	width: 100%;
	padding: max(11px, 14rem) 0 0;
}

.form-button .button {
	width: 100%;
	padding: max(13px, 18rem) 20px;
}

.form-thanks {
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
	display: none;
}

.form-sent .form-main {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.form-sent .form-thanks {
	display: flex;
}

.contacts {
	display: flex;
}

.contacts-side {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
	width: max(340px, 450rem);
	min-width: max(340px, 450rem);
}

.contacts-box {
	display: flex;
	flex-direction: column;
	height: max(400px, 464rem);
	padding: max(40px, 50rem) max(16px, 50rem);
}

.contacts-info {
	background: var(--green);
	border-radius: 20px 0 0 0;
	color: var(--white);
}

.contacts-follow {
	background: var(--light_green);
	border-radius: 0 0 0 20px;
}

.contacts-box h5 {
	margin: 0 0 20px;
}

.contacts-wrap {
	margin: auto 0 0;
	display: flex;
	flex-direction: column;
	gap: 40px 0;
}

.contacts-list {
	display: flex;
	flex-direction: column;
	gap: 8px 0;
	padding: 0;
	margin: 0;
}

.contacts-list li {
	list-style-type: none;
}

.contacts-link {
	display: flex;
	gap: 10px;
	align-items: center;
	color: var(--deep_green);
	text-decoration: none;
}

.contacts-link-text {
	position: relative;
}

.contacts-link-text::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--deep_green);
	transition: 1.1s var(--ease-out-expo);
}

.contacts-link-text::before {
	transform: scaleX(0);
	transform-origin: left;
}

.contacts-link:hover .contacts-link-text::before {
	transform: scaleX(1);
}

.contacts-link-icon {
	display: flex;
	gap: 2px;
}

.contacts-info .contacts-link {
	color: var(--white);
}

.contacts-info .contacts-link-text::before {
	background: var(--highlight_green);
}

.contacts-content {
	flex: 1;
	padding-left: 10px;
}

.contacts-form {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	padding: 40px max(16px, 50rem) max(40px, 50rem);
	background: var(--black);
	border-radius: 0 20px 20px 0;
}

.contacts-form-all {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.contacts-form-top {
	margin: 0 0 70px;
	color: #fff;
}

.contacts-form-top h2 {
	max-width: max(340px, 740rem);
	margin: 0 0 20px;
}

.contacts-form-top h2:last-child {
	margin: 0;
}

.contacts-form-text {
	font-size: max(14px, 18rem);
	line-height: 125%;
}

.contacts-form-main {
	margin: auto 0 0;
}

.contacts-form-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contacts-form-wrap .wpcf7-form-control-wrap {
	width: calc(50% - 5px);
}

.contacts-form-wrap .wpcf7-form-long {
	width: 100%;
}

.contacts-form-main .form-button {
	padding: max(10px, 22rem) 0 0;
}

.contacts-form .wpcf7-form-control-wrap input, .contacts-form .wpcf7-form-control-wrap textarea {
	color: var(--white);
}

.contacts-form input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .4);
}

.contacts-form input:-moz-placeholder {
	color: rgba(255, 255, 255, .4);
	opacity: 1;
}

.contacts-form input::-moz-placeholder {
	color: rgba(255, 255, 255, .4);
	opacity: 1;
}

.contacts-form input:-ms-input-placeholder {
	color: rgba(255, 255, 255, .4);
}

.contacts-form textarea::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .4);
}

.contacts-form textarea:-moz-placeholder {
	color: rgba(255, 255, 255, .4);
	opacity: 1;
}

.contacts-form textarea::-moz-placeholder {
	color: rgba(255, 255, 255, .4);
	opacity: 1;
}

.contacts-form textarea:-ms-input-placeholder {
	color: rgba(255, 255, 255, .4);
}

.contacts-form .form-thanks {
	padding: 40px max(16px, 50rem) max(40px, 50rem);
}

.form-sent .contacts-form-all {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.contacts-form.form-sent .form-thanks {
	display: block;
	color: #fff;
}

@media screen and (max-width: 1024px) {
	.contacts {
		flex-direction: column-reverse;
	}
	
	.contacts-side {
		width: auto;
		min-width: 1px;
	}
	
	.contacts-content {
		padding: 0 0 10px;
	}
	
	.contacts-form, .contacts-info, .contacts-follow {
		border-radius: 10px;
	}
}

@media screen and (max-width: 767px) {
	.form-block .wpcf7-form-control-wrap {
		width: 100%;
	}
	
	.contacts-form-wrap .wpcf7-form-control-wrap {
		width: 100%;
	}
	
	.contacts-form-main .form-button {
		padding: 0;
	}
}

@media screen and (max-width: 576px) {
	.form {
		margin: 0 -16px;
		border-radius: 10px;
		background: var(--purple) url("https://cdn-ileoeah.nitrocdn.com/pBVPlxkqxnkIifgYsfOqhhsQzCeSvZVv/assets/images/optimized/rev-95fcff3/www.ivywise.com/wp-content/themes/ivywise-theme/images/form-bg-mob.jpg") 50% 50% no-repeat;
		background-size: cover;
	}
	
	.contacts {
		margin: 0 -16px;
	}
	
	.list-item {
		height: auto;
	}
	
	.list-text {
		height: auto;
	}
	
	.form.nitro-lazy {
		background: none !important;
	}
}

/**************** Video ****************/
.md-video {
	position: relative;
	z-index: 0;
	padding: 0 0 57.5% 0;
	margin-bottom: max(19px, 25rem);
}

/* lead generation forms */
.iframe-embed iframe, iframe {
	max-width: 100%;
}

.md-video embed, .md-video iframe, .md-video video {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	border: none;
}

/*Custom*/
.blog-item a {
	color: var(--deep_green);
	text-decoration: none;
}

.hero.hero-6 img {
	height: 650rem;
	object-fit: cover;
	object-position: center;
}

body .button {
	line-height: 1;
}

.list-compact-content {
	font-size: max(16px, 20rem);
}

.list-compact-icon img {
	width: 100%;
	height: auto;
}

details summary {
	cursor: pointer;
	margin-bottom: .25em;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

details[open] summary {
	margin-bottom: .5em;
}

@media (min-width:1900px) {
	.header-nav-list a {
		line-height: 1;
	}
}

@media (min-width:1024px) {
	.media-compact-wrap {
		font-size: var(--link);
		line-height: 130%;
	}
}

/************************* loader *************************/
.with-loader {
	overflow: hidden;
}

.loader {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--deep_green);
}

.loader-wrap {
	width: max(340px, 600rem);
	height: max(340px, 600rem);
}

#lottie {
	width: 100%;
	height: 100%;
}

.filter-icon.with-tooltip .tooltip {
	max-width: max-content;
	min-width: 400rem;
}

/*Podcast New Block*/
.podcast_wrapper {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: max(20px, 30rem);
}

@media (min-width:1024px) {
	.podcast_wrapper {
		grid-template-columns: 6fr 4fr;
	}
	
	ul.footer-nav.footer-nav_edits {
		padding-right: 40rem;
	}
}

.podcast_content-card {
	background-color: #d0aed8;
	padding: max(20px, 50rem);
	border-radius: max(20px, 30rem);
	height: fit-content;
}

.podcast_content-card h2 {
	text-align: center;
	color: #222223;
	margin-bottom: 100rem;
}

.podcast-floating-text {
	color: #222223;
}

ul.footer-nav.footer-nav_edits {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 10px;
}

ul.footer-nav.footer-nav_edits a:hover::before {
	content: none;
}

ul.footer-nav.footer-nav_edits a img {
	transition: all .3s linear;
}

ul.footer-nav.footer-nav_edits a:hover img {
	transform: scale(1.1);
}

@media (max-width:1024px) {
	.code_iframe iframe {
		width: 100%;
	}
}

@media screen and (min-width: 1024px) {
	.sub-1 {
		opacity: 0;
		transition: opacity .2s linear;
	}
	
	.sub-1.show {
		opacity: 1;
	}
}

.podcast-player-container {
	position: fixed;
	right: 0;
	bottom: 15px;
	width: 100%;
	max-width: 100%;
	height: 150px;
	max-height: 150px;
	z-index: 999;
	box-shadow: 0px 0px 20px -3px rgba(0, 0, 0, .6);
	border: 0;
	outline: 0;
	background-color: #1a4449;
	background-position: center center;
	background-repeat: no-repeat;
	margin: 0 auto !important;
}

/************************* begin: admissions couseling toggle element *************************/
body.page-id-2032 .hidden-row {
	display: none;
}

body.page-id-2032 .hidden-row {
	display: none;
}

body.page-id-2032 #view-all-btn {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	cursor: pointer;
	border: none;
	color: var(--deep_green);
	background-color: #f5f5f5;
	padding: .5em 1em;
	border-radius: .25em;
	margin: 0 auto;
	transition: background .2s;
	display: block;
	padding-top: 1em;
	width: 100%;
	padding-bottom: 1em;
	font-size: .95em;
}

@media (hover: hover) and (pointer: fine) {
	body.page-id-2032 #view-all-btn:hover {
		color: #fff !important;
		background: var(--deep_green) !important;
	}
}

body.page-id-2032 #view-all-btn svg {
	width: 1em;
	height: 1em;
	vertical-align: middle;
	fill: currentColor;
	transition: transform .2s;
}

body.page-id-2032 #view-all-btn.flipped svg {
	transform: rotate(180deg);
}

/************************* end: admissions couseling toggle element *************************/
.cta-banner-callout {
	background: var(--white_dark);
	border-radius: 30px;
	padding: 30px;
	display: flex;
	align-items: center;
	gap: 2em;
}

.cta-banner-callout .cta-banner-callout-text {
	padding-right: 3em;
}

.cta-banner-callout .cta-banner-callout-buttons {
	flex: 0 0 20em;
}

.cta-banner-callout .cta-banner-buttons a {
	white-space: nowrap;
	text-decoration: none;
}

.cta-banner-callout .cta-banner-callout-learn-more {
	padding: 0;
	margin: 0 1em;
	white-space: nowrap;
	display: inline-block;
}

.cta-banner-callout .cta-banner-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	flex: 1;
}

@media screen and (max-width: 1250px) {
	.cta-banner-callout {
		flex-direction: column;
		gap: 1.5em;
		/* slightly smaller gap on mobile, adjust as needed */
		text-align: center;
		padding: 20px;
	}
	
	.cta-banner-callout .cta-banner-callout-buttons {
		width: 100%;
		justify-content: center;
		margin-top: 1em;
	}
	
	.cta-banner-callout .cta-banner-callout-text {
		padding-right: 0;
	}
}

.cta-4.flexx .texts-wrap {
	width: calc(100% - 380px - 100px);
}

@media screen and (max-width: 1000px) {
	.cta-4.flexx .texts-wrap {
		width: 100%;
	}
}

.cta-4.flexx .texts-wrap .texts {
	width: 100%;
}

.cta-4.flexx .texts-wrap .texts ul:last-child, .cta-4.flexx .texts-wrap .texts ol:last-child, .cta-4.flexx .texts-wrap .texts p:last-child {
	margin: revert;
}
