:root {
	--green: #0b4148;
	--gold: #dfc17a;
	--teal: #4f8a83;
	--yellow: #a9732d;
	--cream: #f8f6f1;
	--sage: #adc0bd;
	--white: #fffcf6;
	--gray: #6b7280;
	--green-gradient: linear-gradient(90deg, #0b4148 0%, #4f8a83 100%);
	--gold-gradient: linear-gradient(90deg, #dfc17a 0%, #f2ede1 100%);
}

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

*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	min-width: 320px;
	background: #fff;
	color: var(--gray);
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

header,
footer,
main,
nav,
section,
article,
aside {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	color: var(--green);
	font-weight: 600;
	line-height: 1.2;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 42px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5,
h6 {
	font-size: 16px;
}

p {
	margin-bottom: 20px;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul,
ol {
	margin: 0 0 24px 24px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li {
	margin-bottom: 8px;
}

li:last-child {
	margin-bottom: 0;
}

ul ul,
ul ol,
ol ul,
ol ol {
	margin-top: 8px;
	margin-bottom: 0;
}

img,
picture,
svg,
video,
iframe {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

figure {
	margin-bottom: 24px;
}

figcaption,
.wp-caption-text,
.gallery-caption {
	margin-top: 8px;
	color: var(--gray);
	font-size: 14px;
	line-height: 1.5;
}

blockquote {
	margin: 32px 0;
	padding: 20px 24px;
	border-left: 4px solid var(--gold);
	background: var(--cream);
	color: var(--green);
}

blockquote p:last-child {
	margin-bottom: 0;
}

table {
	width: 100%;
	margin-bottom: 24px;
	border-spacing: 0;
	border-collapse: collapse;
}

th,
td {
	padding: 12px 16px;
	border: 1px solid var(--sage);
	text-align: left;
	vertical-align: top;
}

th {
	background: var(--cream);
	color: var(--green);
	font-weight: 600;
}

hr {
	margin: 40px 0;
	border: 0;
	border-top: 1px solid var(--sage);
}

button,
input,
select,
textarea {
	max-width: 100%;
	border-radius: 0;
	color: inherit;
	font: inherit;
}

button,
input[type="button"],
input[type="submit"] {
	border: 0;
	background: none;
	cursor: pointer;
	appearance: none;
}

button:disabled,
input:disabled {
	cursor: default;
}

textarea {
	resize: vertical;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

[hidden] {
	display: none !important;
}

/* WordPress */

.alignleft {
	float: left;
	margin: 0 30px 20px 0;
}

.alignright {
	float: right;
	margin: 0 0 20px 30px;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.alignwide {
	width: calc(100% + 100px);
	max-width: calc(100% + 100px);
	margin-left: -50px;
}

.alignfull {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
}

.wp-caption,
.wp-caption img,
.wp-video,
.wp-audio-shortcode {
	max-width: 100%;
}

.wp-block-image img {
	width: auto;
}

.wp-block-image.alignwide img,
.wp-block-image.alignfull img {
	width: 100%;
}

.wp-block-embed,
.wp-block-video {
	margin-bottom: 24px;
}

.wp-block-embed iframe {
	width: 100%;
}

.wp-block-separator {
	margin: 40px 0;
	border: 0;
	border-top: 1px solid var(--sage);
}

.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border: 1px solid var(--gold);
	border-radius: 0;
	background: var(--gold);
	color: var(--green);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.wp-block-button__link:hover {
	background: var(--green);
	color: var(--white);
}

.has-text-align-center {
	text-align: center;
}

.has-text-align-right {
	text-align: right;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	background: #fff;
	color: var(--green);
	clip: auto;
	white-space: normal;
}

.clear::before,
.clear::after {
	display: table;
	content: "";
}

.clear::after {
	clear: both;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 19px 41px;
	border: 1px solid transparent;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	transition: 0.2s;
	border-radius: 5px;
}

.button span {
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
}

.button--gold {
	background: var(--gold);
	color: var(--green);
}

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

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

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

.button--outline {
	border-color: var(--white);
	background: transparent;
	color: var(--white);
	border: 2px solid #FFFCF6;
}

.button--outline:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.site-header {
	width: 100%;
	color: var(--white);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 149px;
}

.site-header__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: min(100% - 80px, 1440px);
	margin: 0 auto;
	padding-top: 28px;
}

.site-header__logo {
	position: relative;
	z-index: 22;
	display: block;
	width: 114px;
}

.site-header__logo img {
	width: 100%;
}

.site-header__content {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 27px;
}

.site-header__top,
.site-header__bottom {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 43px;
}

.language-switcher {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}

.language-switcher__list {
	display: flex;
	margin: 0;
	list-style: none;
}

.language-switcher__list li {
	display: flex;
	margin: 0;
	align-items: center;
}

.language-switcher__list li:not(:last-child)::after {
	margin: 0 4px;
	content: "/";
}

.language-switcher__list a {
	transition: color 0.2s;
	color: #FFFCF6;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.language-switcher__list a:hover,
.language-switcher__list .is-active a {
	color: var(--gold);
	text-decoration: underline;
}

.site-header__login {
	padding: 8px 13px;
	font-size: 16px;
	border-radius: 5px;
}

.site-header__login span {
	font-size: 16px;
}

.site-header__bottom {
	gap: 34px;
}

.site-menu {
	display: flex;
	align-items: center;
	gap: 34px;
	margin: 0;
	list-style: none;
}

.site-menu li {
	position: relative;
	margin: 0;
}

.site-menu > li > a {
	display: block;
	padding: 8px 0;
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.site-menu > li.current-menu-item::after,
.site-menu > li.current-menu-ancestor::after,
.site-menu > li:hover::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 14px;
	height: 2px;
	margin: auto;
	background: var(--gold);
	content: "";
}

.site-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	width: 260px;
	margin: 0;
	padding: 15px 0;
	background: var(--green);
	list-style: none;
}

.site-menu li:hover > .sub-menu {
	display: block;
}

.site-menu .sub-menu li {
	margin: 0;
}

.site-menu .sub-menu a {
	display: block;
	padding: 10px 20px;
	color: var(--white);
	font-size: 13px;
}

.site-menu .sub-menu a:hover {
	color: var(--gold);
}

.site-header__consultation {padding: 14px 30px;}

.mobile-menu-toggle {
	display: none;
}

.hero {
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--white);
	overflow: hidden;
	padding-bottom: 270px;
	z-index: 2;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(11, 65, 72, 0.8);
	z-index: 1;
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: min(100% - 80px, 1440px);
	min-height: 700px;
	margin: 0 auto;
	padding: 170px 0 120px;
}

.hero__content {
	position: relative;
	z-index: 3;
	width: min(100%, 800px);
}

.hero--person .hero__content {
	width: 58%;
}

.hero__tagline {
	margin-bottom: 8px;
	color: var(--yellow);
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 4.8px;
	text-transform: uppercase;
}

.hero h1 {
	margin-bottom: 20px;
	color: var(--gold);
	font-family: Montserrat;
	font-size: 60px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.hero__text {
	max-width: 860px;
	font-size: 17px;
	line-height: 1.6;
	color: #F8F6F1;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 150% */
}

.hero__text p {
	margin-bottom: 18px;
}

.hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 50px;
}

.hero__person {
	position: absolute;
	z-index: 2;
	right: 0;
	top: 211px;
	width: 40%;
	height: 80%;
	pointer-events: none;
}

.hero__person > img {
	object-fit: contain;
	object-position: center bottom;
}

.hero__person-info {
	position: absolute;
	right: 0;
	color: var(--white);
	text-align: right;
	bottom: -60px;
	background: #0d3d43;
	padding: 10px;
	border-radius: 20px;
}

.hero__person-title {
	color: var(--gold);
	font-family: "Playfair Display";
	font-size: 56px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	background: linear-gradient(0deg, #DA9234 0%, #DFC17A 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero__person-subtitle {
	font-size: 13px;
	color: #FFFCF6;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.hero__stripe {
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	bottom: -1px;
	width: 100%;
	height: min(6.2vw, 119px);
	pointer-events: none;
	background-image: url('../images/lines/Home_Section_1.svg');
	background-position: center bottom;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

div#wpadminbar {
	top: auto;
	bottom: 0;
}

html {
	margin: 0!important;
}

.container {
	max-width: 1560px;
	padding: 0 15px;
	margin: auto;
}

.hero>.container {
	position: relative;
	z-index: 2;
}

span.language-switcher__label {
	margin-right: 6px;
}

.menu {
	display: flex;
	margin: 0;
	gap: 34px;
	list-style: none;
}

.menu-item a {
	color: #FFFCF6;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 4px;
	text-transform: uppercase;
	padding-top: 9px;
	display: block;
}

.trust-bar {
	margin: 50px 0;
	position: relative;
	z-index: 3;
	border-radius: 15px;
	background: #F2EDE1;
	box-shadow: 0 10px 30px 5px rgba(223, 193, 122, 0.15);
	padding: 34px 62px;
}

main>.container:first-child>.trust-bar:first-child {
	margin-top: -117px;
}

.trust-title {
	color: #A9732D;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 187.5% */
	letter-spacing: 4.8px;
	text-transform: uppercase;
	margin-bottom: 17px;
}

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

.trust-column {
	/* flex: 1; */
	border-right: 1px solid #C1BDB4;
	padding: 0 60px;
	display: flex;
	gap: 12px;
	align-items: center;
}

.trust-columns .trust-column:last-child {
	border: none;
	padding-right: 0;
}

.trust-columns .trust-column:first-child {
	padding-left: 0;
}

.trust-column__title {
	color: #000;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 150% */
}

.trust-column__subtitle {
	color: #6B7280;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 187.5% */
}

h4.mititle__tagline {
	color: #A9732D;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 4.8px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.services-list {margin-top: 81px;margin-bottom: 38px;}

h2.mititle__title {margin-bottom: 15px;}

.mititle {
	margin-bottom: 29px;
}

.services-list__columns {
	display: flex;
	flex-wrap: wrap;
	gap: 3.4%;
}

.service-column {
	width: 31%;
	margin-bottom: 3.1%;
}

.services-list__columns .service-column:nth-child(3n) {
	margin-right: 0;
}

.service-title {
	color: #0B4148;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 11px;
}

.service-svg {margin-bottom: 17px;}

a.service-link {
	display: inline-flex;
	border-radius: 5px;
	border: 2px solid #0B4148;
	background: rgba(255, 252, 246, 0.00);
	color: #0B4148;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 11px 37px;
	align-items: center;
	gap: 17px;
}

.service-text {
	margin-bottom: 28px;
}

.audience-list {
	background-color: var(--green);
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' rx='.5' fill='%230D4C54'/%3E%3C/svg%3E");
	background-repeat: repeat;
	position: relative;
	padding-top: 174px;
	padding-bottom: 158px;
	overflow-x: clip;
	/* overflow-y: visible; */
}
.audience-list::before {
	position: absolute;
	z-index: 1;
	top: -1px;
	left: 0;
	width: 100%;
	height: 4.9vw;
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	content: "";
	pointer-events: none;
}


section.audience-list h2.mititle__title {
	color: #DFC17A;
}

.audience-list .container {

	padding-right: min(29%, 500px);
}

.audience-list .mititle__text {
	line-height: 1.2;
	margin-top: 18px;
	color: #ADC0BD;
}

.audience-list__items {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.audience-list__item {
	width: 48%;
	margin-bottom: 39px;
}

h3.audience-list__item-title {
	color: #DFC17A;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.audience-list__item-image {
	margin-bottom: 18px;
}

p.audience-list__item-description {
	color: #ADC0BD;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 150% */
}

.audience-list:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 5;
	right: 0;
	bottom: 0;
	left: 0;
	height: 6.2vw;
	pointer-events: none;
	background: url(../images/lines/Home_Section_2.svg);
	background-size: cover;
}

.audience-list__bg-wrap {
	position: absolute;
	bottom: 0;
	z-index: 3;
	left: 62%;
	top: -18.6vw;
	width: 38%;
	overflow: hidden;
}

img.audience-list__bg {
	position: absolute;
	left: -16%;
	top: 0;
	width: auto;
	height: 115%;
	max-width: 999999px;
}

section.locations {
	padding: 73px 0;
	padding-bottom: 67px;
}

.locations-map-image {
	text-align: center;
	margin-bottom: 33px;
}

.locations-map-image img {
	display: inline-block;
}

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

.location-item {
	border-right: 1px solid #EAE4D6;
	width: 24%;
	padding-right: 30px;
}

.locations-items .location-item:nth-child(4n) {
	border-right: 0;
	padding-right: 0;
}

.locations-items .location-item:nth-child(4n - 3) {
	padding-left: 0;
}

.location-item-title {
	display: flex;
	gap: 18px;
	align-items: center;
	margin-bottom: 19px;
}

.location-item-text {color: #6B7280;font-family: Montserrat;font-size: 20px;font-style: normal;font-weight: 500;line-height: 30px; /* 150% */}

span.location-code {
	width: 35%;
	border-radius: 5px;
	border: 1px dashed #0B4148;
	background: #F2EDE1;
	color: #0B4148;
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding: 7px;
}

.location-item-title h3 {
	margin: 0;
}

section.experience {
	position: relative;
	padding-top: 219px;
	background: #F8F6F1;
	background-image: url(../images/palm.svg);
	background-repeat: no-repeat;
	padding-bottom: 174px;
	background-size: contain;
}

section.experience:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 5;
	right: 0;
	top: 0;
	left: 0;
	height: 6.5vw;
	pointer-events: none;
	background: url(../images/lines/Home_Section_3_Upper.svg);
	background-size: cover;
}

section.experience:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 5;
	right: 0;
	bottom: 0;
	left: 0;
	height: 4.5vw;
	pointer-events: none;
	background: url(../images/lines/Home_Section_3_Lower.svg);
	background-size: cover;
}

section.experience .mititle__text {
	max-width: 1340px;
}

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

.experience__item {
	width: 23.4%;
}

.experience__item-title {
	color: #0B4148;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.experience__item img {
	margin-bottom: 15px;
	height: 95px;
	width: auto;
}

.experience__item-text {
	color: #6B7280;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 150% */
	margin-bottom: 28px;
}

.experience__item .button {
	padding: 13px 32px;
	padding-bottom: 10px;
	min-width: 222px;
}

section.leadership {
	padding: 88px 0;
	padding-bottom: 27px;
}

.leadership-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.leadership-item {
	width: 31%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	margin-bottom: 32px;
}

.leadership-items .leadership-item:first-child {
	width: 100%;
	flex-direction: row;
	gap: 60px;
}

.leadership-item img {
	background: #0B4148;
	border-radius: 15px;
	margin-bottom: 27px;
}

.leadership-items .leadership-item:first-child img {
	max-width: 50%;
	object-fit: cover;
}


.leadership-text h3 {
	margin-bottom: 7px;
}

.leadership-text h4 {
	color: #6B7280;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 4.8px;
	text-transform: uppercase;
}

.leadership-text p {
	margin-bottom: 31px;
}

.leadership-items .leadership-item:first-child .leadership-text h3 {
	color: #0B4148;
	font-family: Montserrat;
	font-size: 42px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-top: -8px;
	margin-bottom: 12px;
}

.leadership-items .leadership-item:first-child .leadership-text h4 {
	margin-bottom: 31px;
}

.leadership-items .leadership-item:first-child .leadership-text p {
	margin-bottom: 51px;
}

.leadership-items .leadership-item:first-child .leadership-text a.service-link {padding: 16px 49px;}

.leadership-items .leadership-item:first-child .leadership-text p:last-of-type {
	margin-bottom: 30px;
}

section.testimonials-wrap {
	background: url(../images/80aec1a1d88ef35639569a06b469363f9a1c33f4.webp);
	background-size: cover;
}

.testimonials {
	background: #0B4148CC;
	padding-top: 218px;
	position: relative;
	padding-bottom: 177px;
}

.testimonials:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 5;
	right: 0;
	top: 0;
	left: 0;
	height: 7.1vw;
	pointer-events: none;
	background: url(../images/lines/Home_Section_4.svg);
	background-size: cover;
}

.testimonials:after {
	position: absolute;
	z-index: 1;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 4.9vw;
	background: #fff;
	clip-path: polygon(0 0, 100% 100%, 0 100% );
	content: "";
	pointer-events: none;
}

.testimonials h2.mititle__title {
	color: #DFC17A;
}

.testimonials .mititle__text {
	color: #ADC0BD;
}

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

.testimonial {
	border-radius: 15px;
	border: 2px solid #4F8A83;
	background: #0B4148;
	width: 48.7%;
	position: relative;
	padding: 38px 53px;
	padding-bottom: 29px;
}

.testimonial:before {
	content: url(../images/quote.svg);
	display: block;
	position: absolute;
	right: 39px;
	top: -9px;
}

.testimonial-text {
	margin-bottom: 18px;
	color: #FFFCF6;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 150% */
}

.testimonial-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #ADC0BD;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
}

.testimonial-name {
	color: #FFFCF6;
}

.latest-insights__author {
	text-decoration: underline;
	text-underline-offset: 2px;
	color: #0B4148;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

section.latest-insights {
	padding-top: 82px;
	padding-bottom: 74px;
}

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

article.latest-insights__item {
	width: 31%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

a.latest-insights__image .wp-post-image {
	aspect-ratio: 1.4;
	object-fit: cover;
	object-position: center;
}

h3.latest-insights__item-title {
	color: #0B4148;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 36px; /* 150% */
	margin-bottom: 0;
}

a.latest-insights__image {
	display: block;
	margin-bottom: 29px;
}

.latest-insights__meta {
	color: #6B7280;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 26px;
}

article.latest-insights__item a.service-link {
	margin-top: auto;
	padding: 11px 30px;
}

.latest-insights__excerpt p {
	color: #6B7280;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 150% */
	margin-bottom: 30px;
}

footer.site-footer {
	background: var(--green);
	background-image: url('../images/__ Logo_Gold  3.png');
	background-position: right bottom;
	background-repeat: no-repeat;
	position: relative;
	padding-top: 208px;
}

footer.site-footer:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 5;
	right: 0;
	top: 0;
	left: 0;
	height: 6.6vw;
	pointer-events: none;
	background: url(../images/lines/Home_Section_5.svg);
	background-size: cover;
}

h4.footer-cta__tagline {color: #A9732D;font-family: Montserrat;font-size: 16px;font-style: normal;font-weight: 600;line-height: normal;letter-spacing: 4.8px;text-transform: uppercase;margin-bottom: 3px;}

h2.footer-cta__title {
	color: #DFC17A;
	font-family: Montserrat;
	font-size: 42px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 16px;
}

.footer-cta__text {
	color: #ADC0BD;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 150% */
	max-width: 1200px;
	margin-bottom: 49px;
}

.footer-cta__buttons {
	gap: 14px;
	display: flex;
}

.footer-cta__buttons a.button.button--white {
	padding: 19px 53px;
}

.footer-cta {
	margin-bottom: 86px;
}

.footer-columns {
	border-top: 1px solid #4F8A83;
	border-bottom: 1px solid #4F8A83;
	padding-top: 45px;
	display: flex;
	justify-content: space-between;
	padding-bottom: 78px;
	margin-bottom: 29px;
}

.footer-logo img {
	width: 130px;
	min-width: 130px;
}

.footer-column h3 {
	color: #DFC17A;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 125% */
	margin-bottom: 22px;
}

.footer-column a {
	color: #ADC0BD;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 150% */
	letter-spacing: 0;
	text-transform: none;
	padding: 0;
}

.footer-about__text {
	color: #ADC0BD;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 150% */
	width: 268px;
}

footer .menu {
	display: block;
}

footer li {
	margin-bottom: 6px;
}

.footer-column.footer-contact {
	max-width: 290px;
}

.footer-logo {
	margin-right: 2%;
}

.footer-contact__item {
	color: #ADC0BD;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 150% */
	display: flex;
	margin-bottom: 12px;
}

span.footer-contact__icon {
	min-width: 32px;
}

footer .footer-legal .menu {
	display: flex!important;
	gap: 0;
}

nav.footer-legal a {
	color: #ADC0BD;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 1; /* 150% */
	letter-spacing: 0;
	text-transform: none;
	padding: 0 7px;
	border-left: 1px solid #ADC0BD;
}

footer .footer-legal .menu li:first-child a {
	padding-left: 0;
	border-left: 0;
}

.footer-copyright {
	color: #ADC0BD;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 150% */
	padding-top: 11px;
	padding-bottom: 70px;
}

.pt-item {
	cursor: pointer;
	border-radius: 25px;
	border: 1px solid #F2EDE1;
	background: #FFF;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	transition: 0.2s;
}


.lstyle-style2 .leadership-item img {
	margin-bottom: 15px;
}

.lstyle-style2 .leadership-item:not(:first-child) img {
	max-width: 356px;
}

.lstyle-style2 .leadership-items .leadership-item:not(:first-child) {
	justify-content: flex-start;
}

.lstyle-style2 .leadership-items .leadership-item:nth-child(2), .lstyle-style2 .leadership-items .leadership-item:nth-child(3) {
	border-right: 1px solid #EAE4D6;
}

.services-list.sstyle-horizontal:after {
	display: block;
	background: #F8F6F1;
	transform-origin: left center;
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	clip-path: polygon(
  0 0,
  100% 10%,
  100% 87%,
  0 100%
 );
}

.services-list.sstyle-horizontal {
	position: relative;
	margin-top: -24px;
	padding-bottom: 132px;
	z-index: 22;
}

.services-list.sstyle-horizontal:before {
	content:"";
	position: absolute;
	z-index: 5;
	right: 0;
	top: 0;
	left: 0;
	height: 6.2vw;
	pointer-events: none;
	background: url(../images/lines/Service_Section_2.svg);
	background-size: cover;
	z-index: 22;
}

.services-list.sstyle-horizontal .mititle {
	padding-top: 120px;
}

.services-list.sstyle-horizontal .service-column {padding-left: 115px;position: relative;width: 100%;margin: 0;margin-bottom: 10px;padding-right: 36px;}

.services-list.sstyle-horizontal .service-svg {
	position: absolute;
	left: 0;
	top: 0;
}

.services-list.sstyle-horizontal .services-list__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
}

.services-list.sstyle-horizontal .services-list__columns .service-column:nth-child(odd) {
	border-right: 1px solid #EAE4D6;
}

.services-list.sstyle-horizontal .services-list__columns .service-column:after {
	content: "";
	display: block;
	border-bottom: 1px solid #EAE4D6;
	position: absolute;
	left: 0px;
	right: 34px;
	bottom: -14px;
}

.services-list.sstyle-horizontal .services-list__columns .service-column:nth-last-child(1):after, .services-list.sstyle-horizontal .services-list__columns .service-column:nth-last-child(2):after {
	display: none;
}

.services-slider {
	width: 100%;
	margin-top: 51px;
}

.ss-items {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.ss-items::-webkit-scrollbar {
	display: none;
}

.ss-item {
	flex: 0 0 calc((100% - 24px) / 2);
	min-width: 0;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	border-radius: 15px;
	border: 2px solid #4F8A83;
	background: #0B4148;
	padding: 28px 35px;
}

.ss-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	margin-top: 38px;
}

.ss-pagination button {
	width: 20px;
	height: 20px;
	padding: 0;
	border: 1px solid var(--gold);
	border-radius: 50%;
	background: transparent;
}

.ss-pagination button.is-active {
	background: var(--gold);
}

.ss-items {
	cursor: grab;
	user-select: none;
}

.ss-items.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	scroll-behavior: auto;
}

.services-list.sstyle-horizontal+.container+section.services-slider-wrap {
	position: relative;
	z-index: 10;
	margin-top: -140px;
	padding-top: 181px;
}

section.services-slider-wrap {
	background-color: var(--green);
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' rx='.5' fill='%230D4C54'/%3E%3C/svg%3E");
	background-repeat: repeat;
	padding-bottom: 121px;
	margin-bottom: 0px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 5vw));
}

section.services-slider-wrap h2.mititle__title {
	text-transform: capitalize;
	color: #DFC17A;
	margin-bottom: 19px;
}

h3.ss-item__title {
	color: #DFC17A;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 125% */
	text-transform: capitalize;
	border-bottom: 1px solid #4F8A83;
	padding-bottom: 20px;
}

.ss-item a.service-link {
	border-radius: 5px;
	border: 2px solid #DFC17A;
	background: rgba(255, 252, 246, 0.00);
	color: #DFC17A;
	margin-bottom: 25px;
}

.ss-item__text {
	margin-bottom: 26px;
	color: #ADC0BD;
}

.services-list-line:after {
	content: "";
	position: absolute;
	z-index: 5;
	right: 0;
	top: -4.8vw;
	left: 0;
	height: 6.2vw;
	pointer-events: none;
	background: url(../images/lines/Service_Section_3.svg);
	background-size: cover;
	z-index: 34;
}

.services-list-line+.container .quote-content-container {
	position: relative;
	z-index: 5;
	margin-top: -75px;
}

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

.quote-content-quote {
	width: 520px;
	background: linear-gradient(180deg, #4F8A83 0%, #0B4148 100%);
	padding-top: 292px;
	padding-left: 39px;
	padding-right: 39px;
}

.quote-content {
	width: calc(100% - 630px);
	padding-top: 156px;
}

.services-list-line {
	position: relative;
}

.quote-content h2.mititle__title {
	text-transform: capitalize;
	margin-bottom: 20px;
}

.quote-content-items ul {
	list-style: none;
	margin: 0;
}

.quote-content-items ul li {
	position: relative;
	padding-left: 39px;
	margin-bottom: 44px;
}

.quote-content-items ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8' fill='white' stroke='%23A9732D' stroke-width='2'/%3E%3Ccircle cx='9' cy='9' r='4' fill='%23A9732D'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.qcq-text {
	color: #DFC17A;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 150% */
	margin-bottom: 20px;
}

.qcq-text:before {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background: #DFC17A;
	margin-bottom: 12px;
}

.qcq-name {
	color: #DFC17A;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 150% */
	text-transform: capitalize;
}

.qcq-position {
	color: #FFF;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	text-transform: capitalize;
	margin-bottom: 26px;
}

.quote-content-quote img {
	width: 87%;
	position: relative;
	left: -30%;
}

section.pricing-table {
	position: relative;
	z-index: 10;
	margin-top: -86px;
	margin-bottom: 40px;
}

.pricing-table-back {
	position: relative;
	background: #F8F6F1;
	background-image: url(../images/palm.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 850px;
	clip-path: polygon(0 0, 100% 11%, 100% 100%, 0 100%);
}

.pricing-table-back:after {
	content: "";
	position: absolute;
	z-index: 5;
	right: 0;
	bottom: 0;
	left: 0;
	height: 4.6vw;
	pointer-events: none;
	background: url(../images/lines/Service_Section_4_Lower.png);
	background-size: cover;
	z-index: 34;
}

section.pricing-table .container {
	position: relative;
	z-index: 15;
	padding-top: 173px;
}

section.pricing-table .mititle {
	max-width: 1295px;
}

.pt-items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	margin-top: 56px;
}

.pt-header {
	border-radius: 25px 25px 0 0;
	background: linear-gradient(270deg, #8E6212 0%, #A7771E 17.5%, #BF9436 35%, #D8B85C 60%, #F3DF9D 82%, #FFF6D6 100%);
	padding: 19px;
	display: flex;
	flex-direction: column;
	padding-left: 36px;
	padding-bottom: 26px;
}

.pt-tag {
	border-radius: 20px;
	background: #A9732D;
	color: #FFF;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	 /* 187.5% */
	letter-spacing: 4.8px;
	text-transform: uppercase;
	align-self: flex-end;
	padding: 3px 24px;
	padding-bottom: 1px;
	margin-bottom: 8px;
}

.pt-price {
	color: #A9732D;
	font-family: Montserrat;
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px; /* 80% */
}

.pt-subtitle {
	color: #6B7280;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
}

.pt-body {
	padding: 23px 36px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	transition: 0.2s;
}

ul.pt-list {
	margin-left: 0;
	list-style: none;
	position: relative;
	padding-bottom: 6px;
	flex-grow: 1;
}

ul.pt-list::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: repeating-linear-gradient(
		to right,
		#D4CBB4 0,
		#D4CBB4 9px,
		transparent 9px,
		transparent 18px
	);
}
ul.pt-list li {
	position: relative;
	padding-left: 33px;
	margin-bottom: 16px;
	color: #6B7280;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 150% */
}

ul.pt-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 24px;
	height: 24px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='%234F8A83'/%3E%3Cpath d='M16.828 7.75761C17.2185 7.36717 17.8516 7.36734 18.2421 7.75761C18.6326 8.14813 18.6326 8.78115 18.2421 9.17167L11.1718 16.243C10.7813 16.6335 10.1473 16.6335 9.75676 16.243C9.68039 16.1665 9.61964 16.0804 9.57317 15.9891L6.87883 13.2937C6.48831 12.9032 6.48831 12.2702 6.87883 11.8797C7.26937 11.4893 7.90243 11.4892 8.29289 11.8797L10.4989 14.0857L16.828 7.75761Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pt-text {
	margin-bottom: 19px;
}

a.button.pt-button {
	align-self: center;
	margin-left: auto;
	margin-right: auto;
	border-radius: 5px;
	border: 2px solid #0B4148;
}

.pt-color-black .pt-header {
	background: linear-gradient(270deg, #000 0%, #0B0B0B 17.5%, #131313 35%, #1E1E1E 60%, #353535 82%, #4D4D4D 100%);
}

.pt-color-black .pt-tag {
	background: black;
}

.pt-color-black h3.pt-title {
	color: #DFC17A;
}

.pt-color-black .pt-subtitle {
	color: #ADC0BD;
}

.pt-color-silver .pt-header {
	background: linear-gradient(270deg, #B2B2B2 0%, #BCBCBC 17.5%, #C8C8C8 35%, #D8D8D8 60%, #ECECEC 82%, #F7F7F7 100%);
}

.pt-color-silver .pt-tag {
	background: #A1A1A1;
}

.pt-item.is-big {
	margin-top: -25px;
	margin-right: -32px;
	z-index: 5;
}

.pt-item.is-big .pt-header {
	padding: 32px 51px;
	padding-right: 26px;
	padding-bottom: 38px;
}

.pt-item.is-big .pt-body {
	padding: 23px 51px;
}

.pt-items * {
	transition: 0.2s;
}

.pt-item.pt-color-gold.is-big {
	margin-left: -16px;
	margin-right: -16px;
}

.pt-item.pt-color-silver.is-big {
	margin-left: -32px;
	margin-right: 0;
}

a.button.pt-button:hover {
	/* border-color: transparent; */
	color: black;
}

.testimonials-2 .testimonial::before {display: none;}

testimonials-2 .testimonial {}

.testimonials-2 .testimonial {
	padding: 29px 35px;
}

.testimonial-title {
	color: #DFC17A;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 125% */
	text-transform: capitalize;
	border-bottom: 1px solid #4F8A83;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.testimonial-note {
	color: #ADC0BD;
	font-family: Montserrat;
	font-size: 16px;
	font-style: italic;
	font-weight: 500;
	line-height: 30px; /* 187.5% */
}

section.disclaimer-wrap {
	border: 2px solid #A9732D;
	background: #F2EDE1;
	display: flex;
	margin-bottom: 75px;
	margin-top: 33px;
}

.dis-lt {
	background: #A9732D;
	color: #FFF;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 4.8px;
	text-transform: uppercase;
	padding: 12px;
	text-align: center;
	min-width: 205px;
}

.dis-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	padding-top: 28px;
	padding-bottom: 8px;
}

.dis-left {
	display: flex;
	flex-direction: column;
}

.dis-right {
	border-left: 2px solid #A9732D;
}

.dis-top {
	color: #6B7280;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding: 24px 34px;
	border-bottom: 2px solid  #A9732D;
	max-width: 1110px;
}

.dis-bottom {
	color: #6B7280;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding: 10px 34px;
}

section.testimonials-wrap.testimonials-2 {
	background: url(../images/5a43953a2e2872fafc0fa6c55cae2d4bda3dfcb8.webp);
}


.quote-content-container {
	/*padding-bottom: 86px;*/
}
.quote-content {
	padding-bottom: 86px;
}

.quote-content-quote {
	display: flex;
}

.qcq {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.quote-content-quote img {
	margin-top: auto;
}
.quote-content-quote {
	display: flex;
}

.qcq {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.quote-content-quote img {
	margin-top: auto;
}

h3.pt-title {
	font-size: 20px;
}

.services-slider-wrap .mititle__text {
	color: #ADC0BD;
}

.site-header__nav .menu-item-has-children {
		position: relative;
	}

	.site-header__nav .sub-menu {
		position: absolute;
		z-index: 30;
		top: 100%;
		left: 50%;
		width: 330px;
		margin: 0;
		padding: 8px;
		border: 1px solid rgba(223, 193, 122, 0.35);
		border-top: 3px solid var(--gold);
		background: rgba(11, 65, 72, 0.98);
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
		list-style: none;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate(-50%, 8px);
		transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
	}

	.site-header__nav .sub-menu::before {
		position: absolute;
		right: 0;
		bottom: 100%;
		left: 0;
		height: 12px;
		content: "";
	}

	.site-header__nav .sub-menu li {
		margin: 0;
	}

	.site-header__nav .sub-menu li + li {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.site-header__nav .sub-menu a {
		display: block;
		padding: 13px 16px;
		color: var(--white);
		font-size: 13px;
		font-weight: 500;
		line-height: 1.35;
		letter-spacing: 1px;
		text-transform: none;
		transition: color 0.2s, background-color 0.2s;
	}

	.site-header__nav .sub-menu a:hover {
		color: var(--gold);
		background: rgba(255, 255, 255, 0.05);
	}

	.site-header__nav .menu-item-has-children:hover > .sub-menu,
	.site-header__nav .menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(-50%, 0);
	}

header .menu-item {
	margin-bottom: 0;
	padding-bottom: 8px;
}

section.team-lead {
	padding-top: 75px;
	background: url(../images/palm2.svg);
	background-position: 0% 117%;
	background-repeat: no-repeat;
	padding-bottom: 26px;
}

.team-lead__photo {
	border-radius: 15px;
	background: #0B4148;
}

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

.team-lead__content {
	width: 49%;
}

.team-lead__left {
	width: 47%;
}

.team-lead__photo img {
	height: 510px;
	object-fit: cover;
	object-position: top;
	width: 100%;
}

.team-lead__overline {
	color: #A9732D;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 4.8px;
	text-transform: uppercase;
}

h2.team-lead__name {
	margin-bottom: 7px;
}

.team-lead__position {
	margin-bottom: 27px;
}

.team-lead__text {
	margin-bottom: 35px;
}

.team-lead__credentials li {
	list-style: none;
	position: relative;
	margin-bottom: 21px;
}

.team-lead__credentials li:before {
	content: "";
	position: absolute;
	left: -43px;
	width: 30px;
	height: 30px;
	background: url(../images/CheckMark.svg);
}

.team-lead__credentials ul {
	margin-left: 43px;
	margin-bottom: 38px;
}

.team-lead__credentials h3 {
	margin-bottom: 10px;
}

.team-lead__tag-list span, .team-lead__tag-list span {
	border-radius: 5px;
	border: 1px dashed #0B4148;
	background: #F2EDE1;
	color: #0B4148;
	text-align: center;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding: 7px 34px;
}

.team-lead__tag-list {
	margin-bottom: 45px;
}

section.team {
	position: relative;
}

.team {
	--top-line: min(6.72vw, 129px);
	--bottom-line: min(7.14vw, 137px);
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-top: calc(var(--top-line) + 70px);
	padding-bottom: calc(var(--bottom-line) + 70px);
	background: #fff;
}

/* Бежевый фон с косым верхом и низом */
.team::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #F8F6F1;
	clip-path: polygon(
		0 30px,
		100% 123px,
		100% calc(100% - 137px),
		0 calc(100% - 47px)
	);
}

/* Верхняя и нижняя диагонали */
.team::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background-image:
		url("../images/lines/Team_Section_2.svg"),
		url("../images/lines/Team_Section_2_Lower.svg");
	background-position:
		center top,
		center bottom;
	background-size:
		100% var(--top-line),
		100% var(--bottom-line);
	background-repeat: no-repeat;
}

.team > .container {
	/* position: relative; */
	z-index: 1;
	padding-top: 13px;
}

/* Полупрозрачная жёлтая статуя */
.team > .container::before {
	content: "";
	position: absolute;
	z-index: 0;
	right: -196px;
	bottom: calc(var(--bottom-line) - 28px);
	width: min(40vw, 700px);
	aspect-ratio: 1046 / 1922;
	background-image: url("../images/a404b9de2d76fe342ca72a484d2fc9d5d6f09755.webp");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	opacity: 0.09;
	pointer-events: none;
}

.team > .container > * {
	position: relative;
	z-index: 1;
}

.team {
	--team-width: 1400px;
}

.team .mititle,
.team__underline,
.team__members {
	position: relative;
	z-index: 2;
	width: min(100%, var(--team-width));
}

.team .mititle {
	margin-bottom: 28px;
}

.team__underline {
	margin-bottom: 32px;
	color: var(--gray);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.team__members {
	display: flex;
	flex-direction: column;
}

.team-member {
	display: grid;
	grid-template-columns: 474px minmax(0, 1fr);
	gap: 48px;
	padding: 0 0 34px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(169, 115, 45, 0.22);
}

.team-member:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}

.team-member__left {
	align-self: start;
}

.team-member__photo {
	overflow: hidden;
	height: 336px;
	border-radius: 16px;
	background: var(--green);
	margin-bottom: 10px;
}

.team-member__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	border-radius: 15px;
}

.team-member__linkedin {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 19px;
	width: 100%;
	min-height: 40px;
	margin-top: 8px;
	border: 2px solid var(--green);
	border-radius: 3px;
	color: var(--green);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 11px;
	margin-bottom: 15px;
}

.team-member__overline {
	margin-bottom: 15px;
	color: var(--brown);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
	color: #A9732D;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.team-member__name {
	margin-bottom: 8px;
	color: var(--green);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	color: #0B4148;
	font-family: Montserrat;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.team-member__position {
	margin-bottom: 22px;
	color: var(--gray);
	font-size: 13px;
	line-height: 1.5;
	color: #6B7280;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.team-member__description {
	margin-bottom: 18px;
	color: var(--gray);
	font-size: 15px;
	line-height: 1.55;
	color: #6B7280;
	font-family: Montserrat;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px; /* 150% */
}

.team-member__tags {
	margin-top: 23px;
}

.team-member__tags h4 {
	margin-bottom: 22px;
	color: var(--green);
	font-size: 24px;
	font-weight: 600;
}

.team-member__tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.team-member__tag-list span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 129px;
	min-height: 28px;
	padding: 7px 34px;
	border: 1px dashed rgba(169, 115, 45, 0.65);
	border-radius: 3px;
	color: var(--green);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2;
	border-radius: 5px;
	border: 1px dashed #0B4148;
	background: #F2EDE1;
}

.team__underline b {
	color: #0B4148;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 4.8px;
	text-transform: uppercase;
}

.team--experts {
	padding-top: 22px;
	padding-bottom: 70px;
	background: #fff;
	overflow-x: clip;
}

/* Убираем бежевую форму основного Team */
.team--experts::before {
	inset: 0;
	background: #fff;
	clip-path: none;
}

/* Убираем диагональные разделители */
.team--experts::after {
	display: none;
}

/* Вместо статуи ставим карту */
.team--experts > .container::before {
	right: 0;
	bottom: 0;
	width: 72%;
	height: 76%;
	aspect-ratio: auto;
	background: url("../images/Map.png") center bottom / contain no-repeat;
	opacity: 0.07;
}

/* Контент экспертов шире */
.team--experts .mititle,
.team--experts .team__underline,
.team--experts .team__members {
	width: 100%;
}

/* Две колонки */
.team--experts .team__members {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 56px;
}

/* Внутри карточка уже не горизонтальная */
.team--experts .team-member {
	display: block;
	padding: 0;
	margin: 0;
	border: 0;
}

/* Фото занимает не всю колонку */
.team--experts .team-member__left {
	width: 64%;
	margin-bottom: 18px;
}

.team--experts .team-member__photo {
	width: 100%;
	height: auto;
	aspect-ratio: 1.42 / 1;
}

.team--experts .team-member__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.team--experts .team-member__linkedin {
	margin-top: 7px;
}

/* Текст уже использует всю ширину колонки */
.team--experts .team-member__content {
	width: 100%;
}

.team--experts .team-member__overline {
	margin-bottom: 14px;
}

.team--experts .team-member__position {
	margin-bottom: 22px;
}

.team--experts .team-member__description {
	max-width: 100%;
	margin-bottom: 30px;
	padding-right: 32px;
}

.team--experts .team-member__tags {
	margin-top: 25px;
}
.partners {
	--top-line: min(6.72vw, 129px);
	position: relative;
	isolation: isolate;
	overflow-x: clip;
	padding-top: calc(var(--top-line) + 84px);
	padding-bottom: 85px;
	background: var(--light-yellow);
}

/* Большой глобус */
.partners::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: calc(var(--top-line) - 126px);
	left: 47%;
	width: min(60vw, 989px);
	height: calc(100% + 424px);
	transform: translateX(-42%);
	background: url("../images/partners-globe.webp") center top / contain no-repeat;
	opacity: 0.13;
	pointer-events: none;
	-webkit-mask-image: linear-gradient(
			to bottom,
			transparent 0,
			#000 16%,
			#000 76%,
			transparent 100%
	);
	mask-image: linear-gradient(
			to bottom,
			transparent 0,
			#000 16%,
			#000 76%,
			transparent 100%
	);
}

/* Только верхняя диагональ */
.partners::after {
	content: "";
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--top-line);
	background: url("../images/lines/Team_Section_2.svg") center top / 100% 100% no-repeat;
	pointer-events: none;
}

.partners > .container {
	position: relative;
	z-index: 1;
}

.partners .mititle {
	margin-bottom: 26px;
}

.partners__underline {
	margin-bottom: 34px;
	color: var(--gray);
	font-size: 14px;
	line-height: 1.5;
	color: #6B7280;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.partners__underline b {
	color: var(--green);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #0B4148;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 4.8px;
	text-transform: uppercase;
}

.partners__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.partner {
	display: flex;
	flex-direction: column;
	min-height: 405px;
	padding: 52px 40px 40px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.91);
}

.partner__tagline {
	margin-bottom: 13px;
	color: var(--brown);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: #A9732D;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.partner__title {
	margin-bottom: 8px;
	color: var(--green);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
}

.partner__subtitle {
	margin-bottom: 20px;
	color: var(--gray);
	font-size: 16px;
	line-height: 1.4;
}

.partner__text {
	margin-bottom: 28px;
	color: var(--gray);
	font-size: 18px;
	line-height: 1.65;
}

.partner__link {
	align-self: flex-start;
	margin-top: auto;
	gap: 12px;
	min-width: 210px;
	border-radius: 5px;
	border: 2px solid #0B4148;
	color: #0B4148;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 12px 43px;
}

.partner__link svg {
	flex: 0 0 24px;
}


a.team-lead__linkedin {
	border-radius: 5px;
	border: 2px solid #0B4148;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0B4148;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	gap: 18px;
	padding: 13px;
	margin-top: 23px;
}

a.team-lead__linkedin:hover {
	text-decoration: underline;
}

.team-lead__tags h3 {
	margin-bottom: 21px;
}

.team-lead__tag-list span, .team-lead__tag-list span {
	display: inline-block;
	font-size: 14px;
	margin-bottom: 13px;
}
/* Featured Article — desktop Figma */
section.featured-insights {
	padding: 102px 0 100px;
}

.featured-insights__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 59px;
	align-items: start;
}

.featured-insights__image {
	position: relative;
	display: block;
	/* width: 720px; */
	height: 510px;
	overflow: hidden;
	border-radius: 15px;
}

.featured-insights__image .wp-post-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.featured-insights__content {
	/* width: 750px; */
	padding-top: 0;
}

.featured-insights__eyebrow {
	margin-bottom: 19px;
	color: #A9732D;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 4.8px;
	line-height: normal;
	text-transform: uppercase;
}

.featured-insights__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.featured-insights__categories span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 190px;
	height: 35px;
	padding: 0 10px;
	border: 1px dashed #0B4148;
	border-radius: 5px;
	background: #F2EDE1;
	color: #0B4148;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-align: center;
}

.featured-insights__title {
	margin: 0 0 20px;
	color: #0B4148;
	font-size: 42px;
	font-weight: 600;
	line-height: normal;
}

.featured-insights__title a {
	color: inherit;
}

.featured-insights__meta {
	display: flex;
	gap: 5px;
	margin-bottom: 28px;
	color: #6B7280;
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
}

.featured-insights__meta span:nth-child(3) {
	color: #0B4148;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.featured-insights__excerpt,
.featured-insights__excerpt p {
	margin: 0;
	color: #6B7280;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
}

.featured-insights__excerpt p {
	margin-bottom: 10px;
}

.featured-insights__excerpt p:last-child {
	margin-bottom: 0;
}

.featured-insights .service-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	height: 45px;
	margin-top: 17px;
	padding: 0 30px;
	border: 2px solid #0B4148;
	border-radius: 5px;
	color: #0B4148;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.featured-insights .service-link span {
	font-size: 24px;
	line-height: 1;
}

/* Insights Browser */

section.insights-browser {
	padding: 0;
	background: #fff;
}

.insights-browser__filters {
	position: relative;
	isolation: isolate;
	padding: 198px 0 120px;
	background: #F8F6F1;
}

.insights-browser__filters::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 137px;
	background: url("../images/lines/Insight_Section_2.svg")
 center top / 100% 137px no-repeat;
	pointer-events: none;
	/* transform: scaleY(-1); */
}

.insights-browser__filters::after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 137px;
	background: url("../images/lines/Insight_Section_3.svg")
	center bottom / 100% 137px no-repeat;
	pointer-events: none;
}

.insights-browser__filters > .mititle {
	margin-bottom: 28px;
}

.insights-browser__filter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.insights-browser__tags {
	margin-top: 28px;
	margin-bottom: 85px;
}

.insights-browser__filter-label {
	margin-bottom: 12px;
	color: #0B4148;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
}

.insights-browser__filter {
	min-width: 150px;
	height: 35px;
	padding: 0 18px;
	border: 1px dashed #0B4148;
	border-radius: 5px;
	background: #F2EDE1;
	color: #0B4148;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s;
}

.insights-browser__filter.is-active, .insights-browser__filter:hover {
	border-style: solid;
	background: #fff;
}

.insights-browser__results {
	padding: 82px 0 74px;
}

.insights-browser__results > .mititle {
	margin-bottom: 28px;
}

.insights-browser__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 54px 30px;
}

.insights-browser__item {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.insights-browser__item.is-hidden {
	display: none;
}

.insights-browser__image {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 12px;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 1.49;
}

.insights-browser__image .wp-post-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.insights-browser__play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 76px;
	height: 76px;
	place-items: center;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: rgba(223, 193, 122, .8);
	color: #0B4148;
	font-size: 24px;
}

.insights-browser__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}

.insights-browser__terms span {
	padding: 5px 12px;
	border: 1px dashed #0B4148;
	border-radius: 5px;
	background: #F2EDE1;
	color: #0B4148;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
}

.insights-browser__item-title {
	margin: 0 0 4px;
	color: #0B4148;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
}

.insights-browser__item-title a {
	color: inherit;
}

.insights-browser__meta {
	display: flex;
	gap: 5px;
	margin-bottom: 18px;
	color: #6B7280;
	font-size: 16px;
	font-weight: 600;
}

.insights-browser__author {
	color: #0B4148;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.insights-browser__excerpt,
.insights-browser__excerpt p {
	margin-bottom: 22px;
	color: #6B7280;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

.insights-browser__item .service-link {
	margin-top: auto;
	padding: 11px 30px;
}

.insights-browser__load-more {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	margin: 100px auto 0;
	padding: 0 28px;
	border: 2px solid #0B4148;
	border-radius: 5px;
	background: transparent;
	color: #0B4148;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	gap: 20px;
}

.insights-browser__load-more[hidden] {
	display: none;
}

.insights-browser__empty {
	grid-column: 1 / -1;
	color: #6B7280;
	font-size: 18px;
}


.subscribe {
	position: relative;
	isolation: isolate;
	overflow-x: clip;
	padding: clamp(128px, 10.8vw, 208px) 0 clamp(105px, 8.4vw, 161px);
	background-color: #0B4148;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' rx='.5' fill='%230D4C54'/%3E%3C/svg%3E");
	background-repeat: repeat;
}

.subscribe::before,
.subscribe::after {
	position: absolute;
	z-index: 3;
	right: 0;
	left: 0;
	display: block;
	width: 100%;
	content: "";
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
}

.subscribe::before {
	top: -1px;
	height: min(6.72vw, 129px);
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 100% 24%, 0 100%);
}

.subscribe::after {
	bottom: -1px;
	height: min(7.14vw, 137px);
	background-image: url("../images/lines/Insight_Section_4.svg");
}

.subscribe .container {
	position: relative;
	z-index: 1;
}

.subscribe__content {
	width: min(100%, 760px);
}

.subscribe__tagline {
	margin-bottom: 6px;
	color: #DFC17A;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 4.8px;
	line-height: 1;
	text-transform: uppercase;
}

.subscribe__title {
	margin-bottom: 17px;
	color: #DFC17A;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
}

.subscribe__text {
	max-width: 650px;
	margin-bottom: 25px;
	color: #ADC0BD;
	font-size: 16px;
	line-height: 1.5;
}

.subscribe__form {
	width: min(100%, 720px);
}

.subscribe__form .ff-t-container {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 180px;
	gap: 13px;
	margin: 0 !important;
}

.subscribe__form .ff-t-cell {
	width: auto !important;
	padding: 0 !important;
	flex-basis: auto !important;
}

.subscribe__form .ff-el-group {
	margin: 0 !important;
}

.subscribe__form .ff-el-input--content input {
	width: 100%;
	height: 48px;
	padding: 0 20px;
	border: 1px solid #ADC0BD;
	border-radius: 3px;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 14px;
}

.subscribe__form .ff-el-input--content input::placeholder {
	color: #ADC0BD;
	opacity: 1;
}

.subscribe__form .ff_submit_btn_wrapper {
	height: 100%;
}

.subscribe__form .frm-fluent-form .wpf_has_custom_css.ff-btn-submit {
	display: inline-flex;
	width: 100% !important;
	min-width: 0 !important;
	height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border: 0 !important;
	border-radius: 3px;
	background: #DFC17A !important;
	color: #0B4148 !important;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.subscribe__form .frm-fluent-form .wpf_has_custom_css.ff-btn-submit:hover {
	background: #DFC17A !important;
	color: #0B4148 !important;
}

.subscribe__form .frm-fluent-form .wpf_has_custom_css.ff-btn-submit::after {
	display: block;
	width: 14px;
	height: 15px;
	margin-left: 17px;
	content: "";
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='15' viewBox='0 0 14 15' fill='none'%3E%3Cpath d='M1 6.36328C0.447715 6.36328 4.82823e-08 6.811 0 7.36328C-4.82823e-08 7.91557 0.447715 8.36328 1 8.36328L1 7.36328L1 6.36328ZM13.7071 8.07039C14.0976 7.67986 14.0976 7.0467 13.7071 6.65618L7.34315 0.292214C6.95262 -0.0983104 6.31946 -0.0983105 5.92893 0.292214C5.53841 0.682738 5.53841 1.3159 5.92893 1.70643L11.5858 7.36328L5.92893 13.0201C5.53841 13.4107 5.53841 14.0438 5.92893 14.4343C6.31946 14.8249 6.95262 14.8249 7.34315 14.4343L13.7071 8.07039ZM1 7.36328L1 8.36328L13 8.36328L13 7.36328L13 6.36328L1 6.36328Z' fill='%230B4148'/%3E%3C/svg%3E") center / 14px 15px no-repeat;
}

.subscribe__under-form {
	margin-top: 11px;
	color: #ADC0BD;
	font-size: 11px;
	font-style: italic;
	line-height: 1.4;
	margin-bottom: 50px;
}

.subscribe__route,
.subscribe__plane {
	position: absolute;
	pointer-events: none;
}

.subscribe__route {
	z-index: 0;
	top: 253px;
	right: clamp(126px, 17vw, 284px);
	width: min(30.4vw, 417px);
	height: auto;
}

.subscribe__plane {
	z-index: 3;
	top: 26px;
	right: clamp(62px, 8.5vw, 164px);
	width: min(16.35vw, 251px);
	height: auto;
}

@media (max-width: 1280px) {
	.subscribe__route {
		display: none;
	}
}

.shorts {
	padding: 100px 0 110px;
	background: #fff;
}

.shorts .mititle {
	margin-bottom: 35px;
}

.shorts__items {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 26px;
}

.shorts__item {
	position: relative;
	display: block;
	min-width: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 14px;
	background: #0B4148;
	aspect-ratio: 0.67;
	cursor: pointer;
	text-align: left;
}

.shorts__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shorts__overlay {
	position: absolute;
	inset: 0;
	background:
			linear-gradient(180deg, rgba(11, 65, 72, 0.02) 26%, rgba(11, 65, 72, 0.84) 100%),
			rgba(255, 255, 255, 0.22);
}

.shorts__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 76px;
	height: 76px;
	transform: translate(-50%, -50%);
}

.shorts__item-title {
	position: absolute;
	right: 20px;
	bottom: 20px;
	left: 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
}

.shorts-modal {
	position: fixed;
	z-index: 1000;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(11, 65, 72, 0.9);
}

.shorts-modal.is-open {
	display: flex;
}

.shorts-modal__video {
	width: min(90vw, 430px);
	aspect-ratio: 9 / 16;
	background: #000;
}

.shorts-modal__video iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.shorts-modal__close {
	position: absolute;
	top: 18px;
	right: 22px;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
}

section.contact-form {
	position: relative;
	padding: 110px 0;
	overflow: hidden;
}

.contact-form__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
	gap: 100px;
	align-items: start;
}

.contact-form__content {
	padding-top: 22px;
}

.contact-form__content .mititle {
	margin-bottom: 46px;
}

.contact-form__direct {
	max-width: 390px;
	padding-top: 26px;
	border-top: 1px solid rgba(169, 115, 45, 0.55);
}

.contact-form__direct-title {
	margin-bottom: 16px;
	color: var(--yellow);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3.6px;
	line-height: 1.3;
	text-transform: uppercase;
}

.contact-form__direct-link {
	display: block;
	width: fit-content;
	margin-bottom: 9px;
	color: var(--green);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

.contact-form__direct-link:hover {
	color: var(--yellow);
}

.contact-form__address {
	margin-top: 16px;
	color: var(--gray);
	font-size: 15px;
	line-height: 1.55;
}

.contact-form__card {
	padding: 48px;
	border: 1px solid rgba(169, 115, 45, 0.35);
	border-radius: 14px;
	background: var(--white);
	box-shadow: 0 18px 45px rgba(11, 65, 72, 0.08);
}

.contact-form .frm-fluent-form > fieldset {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.contact-form .frm-fluent-form > fieldset > .ff-field_container,
.contact-form .frm-fluent-form > fieldset > .ff-el-group:has(textarea),
.contact-form .frm-fluent-form > fieldset > .ff_submit_btn_wrapper {
	grid-column: 1 / -1;
}

.contact-form .frm-fluent-form .ff-field_container,
.contact-form .frm-fluent-form .ff-el-group {
	margin: 0;
}

.contact-form .frm-fluent-form .ff-t-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.contact-form .frm-fluent-form .ff-t-cell {
	width: auto;
	margin: 0;
	padding: 0;
}

.contact-form .frm-fluent-form .ff-el-input--label {
	margin-bottom: 8px;
}

.contact-form .frm-fluent-form .ff-el-input--label label {
	color: var(--green);
	font-family: Montserrat;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.6px;
	line-height: 1.3;
	text-transform: uppercase;
}

.contact-form .frm-fluent-form .ff-el-form-control {
	width: 100%;
	min-height: 54px;
	padding: 14px 16px;
	border: 1px solid rgba(11, 65, 72, 0.45);
	border-radius: 3px;
	background: transparent;
	color: var(--green);
	font-family: Montserrat;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
	box-shadow: none;
}

.contact-form .frm-fluent-form select.ff-el-form-control {
	padding-right: 42px;
	background-color: transparent;
}

.contact-form .frm-fluent-form textarea.ff-el-form-control {
	min-height: 150px;
	resize: vertical;
}

.contact-form .frm-fluent-form .ff-el-form-control::placeholder {
	color: #8b919b;
	opacity: 1;
}

.contact-form .frm-fluent-form .ff-el-form-control:focus {
	border-color: var(--yellow);
	box-shadow: 0 0 0 3px rgba(223, 193, 122, 0.28);
}

.contact-form .frm-fluent-form .ff_submit_btn_wrapper {
	margin-top: 4px;
}

.contact-form .frm-fluent-form .ff-btn.ff-btn-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 210px;
	min-height: 52px;
	padding: 14px 26px;
	border: 1px solid var(--gold) !important;
	border-radius: 3px;
	background: var(--gold) !important;
	color: var(--green) !important;
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.4px;
	line-height: 1;
	text-transform: uppercase;
	transition: 0.2s;
}

.contact-form .frm-fluent-form .ff-btn.ff-btn-submit::after {
	content: "→";
	margin-left: 13px;
	font-size: 17px;
	line-height: 0;
}

.contact-form .frm-fluent-form .ff-btn.ff-btn-submit:hover {
	border-color: var(--green) !important;
	background: var(--green) !important;
	color: var(--white) !important;
}

.contact-form .ff-el-is-error .ff-el-form-control {
	border-color: #b44343;
}

.contact-form .text-danger,
.contact-form .error {
	margin-top: 6px;
	color: #b44343;
	font-size: 12px;
	line-height: 1.4;
}

.contact-form .ff-message-success {
	margin-top: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(79, 138, 131, 0.5);
	border-radius: 3px;
	background: rgba(79, 138, 131, 0.1);
	color: var(--green);
	font-size: 14px;
}

/* Breathing room only for native Gutenberg blocks */
main > .container > :where(
	p,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	ul,
	ol,
	blockquote,
	figure,
	hr,
	table,
	.wp-block-columns,
	.wp-block-group,
	.wp-block-buttons,
	.wp-block-cover,
	.wp-block-embed,
	.wp-block-video,
	.wp-block-audio,
	.wp-block-media-text,
	.wp-block-pullquote,
	.wp-block-preformatted,
	.wp-block-code
) {
	margin-bottom: 0;
}

main > .container > :where(
	p,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	ul,
	ol,
	blockquote,
	figure,
	hr,
	table,
	.wp-block-columns,
	.wp-block-group,
	.wp-block-buttons,
	.wp-block-cover,
	.wp-block-embed,
	.wp-block-video,
	.wp-block-audio,
	.wp-block-media-text,
	.wp-block-pullquote,
	.wp-block-preformatted,
	.wp-block-code
) + :where(
	p,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	ul,
	ol,
	blockquote,
	figure,
	hr,
	table,
	.wp-block-columns,
	.wp-block-group,
	.wp-block-buttons,
	.wp-block-cover,
	.wp-block-embed,
	.wp-block-video,
	.wp-block-audio,
	.wp-block-media-text,
	.wp-block-pullquote,
	.wp-block-preformatted,
	.wp-block-code
) {
	margin-top: 32px;
}

/* Post content only */
.single-post main > .container {
	padding-top: 80px;
	padding-bottom: 80px;
}

/* Calculator */

section.calculator {
	position: relative;
	padding: 87px 0 100px;
	background: #fff;
	overflow: hidden;
}

section.calculator::before {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	width: 684px;
	height: 100%;
	min-height: 900px;
	background-image: url("../images/palm3.svg");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	content: "";
	pointer-events: none;
}

.calculator > .container {
	position: relative;
	z-index: 1;
}

.calculator__header {
	max-width: 1400px;
	margin-bottom: 45px;
}

.calculator__header .mititle {
	margin-bottom: 0;
}

.calculator__header h4.mititle__tagline {
	margin-bottom: 5px;
	color: #a9732d;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 4.8px;
	line-height: normal;
	text-transform: uppercase;
}

.calculator__header h2.mititle__title {
	margin-bottom: 15px;
	color: #0b4148;
	font-size: 42px;
	font-weight: 600;
	line-height: 1.2;
}

.calculator__header .mititle__text {
	max-width: 1400px;
	color: #6b7280;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
}

.calculator__layout {
	max-width: 1012px;
}

.calculator__form {
	width: 100%;
}

.calculator__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 491px));
	column-gap: 29px;
	row-gap: 42px;
}

.calculator__field,
.calculator__field--wide {
	grid-column: auto;
	min-width: 0;
}

.calculator__field label {
	display: block;
	margin-bottom: 13px;
	color: #0b4148;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
}

.calculator__field label::after {
	margin-left: 3px;
	color: #f51d09;
	content: "*";
}

.calculator__field input,
.calculator__field select {
	display: block;
	width: 100%;
	height: 51px;
	padding: 0 38px 10px 0;
	border: 0;
	border-bottom: 2px solid #d4cbb4;
	border-radius: 0;
	background-color: transparent;
	color: #0b4148;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	box-shadow: none;
	appearance: none;
}

.calculator__field select {
	background-image:
			linear-gradient(45deg, transparent 50%, #a9732d 50%),
			linear-gradient(135deg, #a9732d 50%, transparent 50%);
	background-position:
			calc(100% - 14px) 19px,
			calc(100% - 9px) 19px;
	background-repeat: no-repeat;
	background-size: 5px 5px;
	cursor: pointer;
}

.calculator__field input::placeholder {
	color: #a1a1a1;
	opacity: 1;
}

.calculator__field input:focus,
.calculator__field select:focus {
	border-bottom-color: #a9732d;
}

.calculator__field input[type="date"] {
	color: #0b4148;
}

.calculator__field input[type="date"]::-webkit-calendar-picker-indicator {
	width: 24px;
	height: 24px;
	margin-right: -32px;
	opacity: 0.45;
	cursor: pointer;
}

.calculator__currency,
.calculator__percent {
	position: relative;
}

.calculator__currency > span {
	position: absolute;
	z-index: 1;
	bottom: 12px;
	left: 0;
	color: #0b4148;
	font-size: 16px;
	line-height: 1;
}

.calculator__currency input {
	padding-left: 17px;
}

.calculator__percent > span {
	position: absolute;
	right: 0;
	bottom: 12px;
	color: #0b4148;
	font-size: 16px;
	line-height: 1;
}

.calculator__percent input {
	padding-right: 22px;
}

.calculator__error {
	max-width: 1012px;
	margin-top: 24px;
	padding: 12px 16px;
	border-left: 3px solid #f51d09;
	background: rgba(245, 29, 9, 0.06);
	color: #b42318;
	font-size: 14px;
	line-height: 1.5;
}

.calculator__submit,
.calculator__contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 340px;
	height: 60px;
	padding: 0 28px;
	border-radius: 5px;
	color: #0b4148;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	transition:
			background-color 0.2s,
			color 0.2s,
			border-color 0.2s;
}

.calculator__submit {
	margin: 60px 0 0 520px;
	border: 2px solid #dfc17a;
	background: #dfc17a;
}

.calculator__submit svg,
.calculator__contact svg {
	width: 18px;
	height: 12px;
	margin-left: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2px;
}

.calculator__submit:hover {
	border-color: #0b4148;
	background: #0b4148;
	color: #fff;
}

.calculator__result-placeholder {
	display: none;
}

.calculator__result-content {
	margin-top: 48px;
	padding: 36px 40px;
	border: 1px solid #d4cbb4;
	border-radius: 10px;
	background: rgba(242, 237, 225, 0.92);
}

.calculator__result-eyebrow {
	margin-bottom: 10px;
	color: #a9732d;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3.6px;
	text-transform: uppercase;
}

.calculator__result-status {
	margin-bottom: 26px;
	color: #0b4148;
	font-size: 20px;
	font-weight: 600;
}

.calculator__result-items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.calculator__result-item {
	padding-top: 20px;
	border-top: 2px solid #d4cbb4;
}

.calculator__result-label {
	min-height: 48px;
	margin-bottom: 12px;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.5;
}

.calculator__result-value {
	color: #0b4148;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.2;
}

.calculator__contact {
	margin-top: 32px;
	border: 2px solid #0b4148;
	background: transparent;
}

.calculator__contact:hover {
	background: #0b4148;
	color: #fff;
}

.calculator__disclaimer {
	max-width: 1012px;
	margin-top: 30px;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.6;
}

.calculator input[type="number"] {
	appearance: textfield;
	-moz-appearance: textfield;
}

.calculator input[type="number"]::-webkit-inner-spin-button,
.calculator input[type="number"]::-webkit-outer-spin-button {
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
}

.calculator__currency {
	display: flex;
	align-items: center;
	height: 51px;
	border-bottom: 2px solid #d4cbb4;
}

.calculator__currency:focus-within {
	border-bottom-color: #a9732d;
}

.calculator__currency > span {
	position: static;
	flex: 0 0 auto;
	margin-right: 6px;
	color: #0b4148;
	font-size: 16px;
	line-height: 1;
}

.calculator__currency input {
	flex: 1;
	width: auto;
	height: 100%;
	min-width: 0;
	padding: 0;
	border: 0;
}

.calculator__price-group {
	grid-column: 1 / -1;
	margin-bottom: 0;
}

.calculator__choices--price .calculator__choice {
	width: 215px;
}
.calculator__section {
	margin-bottom: 38px;
}

.calculator__section-title {
	margin-bottom: 27px;
	color: #0B4148;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
}

.calculator__choice-group {
	margin-bottom: 28px;
}

.calculator__choice-label {
	margin-bottom: 11px;
	color: #0B4148;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

.calculator__choice-label span {
	color: #F51D09;
}

.calculator__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.calculator__choice {
	position: relative;
	display: block;
	width: 215px;
	margin: 0;
	cursor: pointer;
}

.calculator__choice input[type="radio"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 0;
	pointer-events: none;
}

.calculator__choice > span {
	display: flex;
	align-items: center;
	width: 100%;
	height: 42px;
	padding: 0 14px;
	border: 1px solid #D4CBB4;
	border-radius: 22px;
	background: #FFFFFF;
	color: #6B7280;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	transition: 0.2s;
}

.calculator__choice > span::before {
	content: "";
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	border: 1px solid #D4CBB4;
	border-radius: 50%;
	background: #F2EDE1;
	box-sizing: border-box;
	transition: 0.2s;
}

.calculator__choice:hover > span {
	border-color: #A9732D;
	color: #0B4148;
}

.calculator__choice input[type="radio"]:checked + span {
	background: #F2EDE1;
	color: #0B4148;
}

.calculator__choice input[type="radio"]:checked + span::before {
	border-color: #DFC17A;
	background: #DFC17A;
	box-shadow: inset 0 0 0 3px #F2EDE1;
}

.calculator__choice input[type="radio"]:focus-visible + span {
	outline: 2px solid #A9732D;
	outline-offset: 2px;
}

.calculator__price-group {
	grid-column: 1 / -1;
	margin-bottom: 0;
}

.calculator__choices--price {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.calculator__choices--price .calculator__choice {
	width: auto;
}

.calculator__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 60px;
}

.calculator__actions .calculator__contact,
.calculator__actions .calculator__submit {
	width: 340px;
	height: 60px;
	margin: 0;
}

/* MailerLite newsletter form */
.subscribe__form #mlb2-45798852.ml-form-embedContainer {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
}

.subscribe__form #mlb2-45798852 .ml-form-align-center,
.subscribe__form #mlb2-45798852 .ml-form-align-default,
.subscribe__form #mlb2-45798852 .ml-form-embedWrapper.embedForm {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	text-align: left !important;
	vertical-align: top !important;
}

.subscribe__form #mlb2-45798852 .ml-form-embedWrapper,
.subscribe__form #mlb2-45798852 .ml-form-embedBody {
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

.subscribe__form #mlb2-45798852 .ml-form-embedContent {
	display: none !important;
}

.subscribe__form #mlb2-45798852 .ml-form-formContent.horozintalForm {
	width: 100% !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

.subscribe__form #mlb2-45798852 .ml-form-horizontalRow {
	display: flex !important;
	gap: 13px;
	align-items: stretch;
}

.subscribe__form #mlb2-45798852 .ml-input-horizontal {
	flex: 1 1 auto;
	min-width: 0;
}

.subscribe__form #mlb2-45798852 .ml-button-horizontal {
	flex: 0 0 180px;
	width: 180px !important;
}

.subscribe__form #mlb2-45798852 .ml-form-horizontalRow input {
	width: 100% !important;
	height: 48px !important;
	margin: 0 !important;
	padding: 0 20px !important;
	border: 1px solid #ADC0BD !important;
	border-radius: 3px !important;
	background: transparent !important;
	color: #fff !important;
	font-family: inherit !important;
	font-size: 14px !important;
	line-height: 48px !important;
}

.subscribe__form #mlb2-45798852 .ml-form-horizontalRow input::placeholder {
	color: #ADC0BD !important;
	opacity: 1;
}

.subscribe__form #mlb2-45798852 .ml-button-horizontal button {
	width: 100% !important;
	height: 48px !important;
	margin: 0 !important;
	padding: 0 20px !important;
	border: 0 !important;
	border-radius: 3px !important;
	background: #DFC17A !important;
	color: #0B4148 !important;
	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 48px !important;
	text-transform: uppercase !important;
}

.subscribe__form #mlb2-45798852 .ml-button-horizontal button:hover {
	background: #DFC17A !important;
	color: #0B4148 !important;
}
.subscribe__form #mlb2-45798852 .ml-form-recaptcha {
	clear: both;
	margin: 12px 0 0 !important;
	float: left !important;
}

.subscribe__form #mlb2-45798852 .ml-block-form::after {
	display: block;
	clear: both;
	content: "";
}

.subscribe__under-form {
	clear: both;
}.subscribe__form #mlb2-45798852 .ml-button-horizontal button.primary {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
}

.subscribe__form #mlb2-45798852 .ml-button-horizontal button.primary::after {
	display: block;
	width: 14px;
	height: 15px;
	margin-left: 17px;
	content: "";
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='15' viewBox='0 0 14 15' fill='none'%3E%3Cpath d='M1 6.36328C.447715 6.36328 0 6.811 0 7.36328S.447715 8.36328 1 8.36328V6.36328ZM13.7071 8.07039C14.0976 7.67986 14.0976 7.0467 13.7071 6.65618L7.34315 .292214C6.95262-.0983104 6.31946-.0983105 5.92893 .292214C5.53841 .682738 5.53841 1.3159 5.92893 1.70643L11.5858 7.36328L5.92893 13.0201C5.53841 13.4107 5.53841 14.0438 5.92893 14.4343C6.31946 14.8249 6.95262 14.8249 7.34315 14.4343L13.7071 8.07039ZM1 7.36328V8.36328H13V6.36328H1Z' fill='%23FFFFFF'/%3E%3C/svg%3E") center / 14px 15px no-repeat;
}

.subscribe__form #mlb2-45798852.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-button-horizontal.primary button.primary {
	display: inline-flex !important;
	width: 100% !important;
	height: 48px !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 20px !important;
	border: 0 !important;
	border-radius: 3px !important;
	background: #DFC17A !important;
	background-color: #DFC17A !important;
	color: #0B4148 !important;
	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 48px !important;
	text-transform: uppercase !important;
}

.subscribe__form #mlb2-45798852.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-button-horizontal.primary button.primary:hover {
	background: #DFC17A !important;
	background-color: #DFC17A !important;
	color: #0B4148 !important;
}

.subscribe__form #mlb2-45798852 .ml-button-horizontal.primary button.primary::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='15' viewBox='0 0 14 15' fill='none'%3E%3Cpath d='M1 6.36328C.447715 6.36328 0 6.811 0 7.36328S.447715 8.36328 1 8.36328V6.36328ZM13.7071 8.07039C14.0976 7.67986 14.0976 7.0467 13.7071 6.65618L7.34315 .292214C6.95262-.0983104 6.31946-.0983105 5.92893 .292214C5.53841 .682738 5.53841 1.3159 5.92893 1.70643L11.5858 7.36328L5.92893 13.0201C5.53841 13.4107 5.53841 14.0438 5.92893 14.4343C6.31946 14.8249 6.95262 14.8249 7.34315 14.4343L13.7071 8.07039ZM1 7.36328V8.36328H13V6.36328H1Z' fill='%230B4148'/%3E%3C/svg%3E");
}
.calculator__field .calculator__currency input {
	padding: 0;
	border: 0;
}

.calculator__date {
	position: relative;
}

.calculator__field .calculator__date > input[name="service_date"] {
	padding-right: 52px;
}

.calculator__date svg {
	position: absolute;
	top: 11px;
	right: 7px;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #a1a1a1;
	stroke-width: 1.5;
	pointer-events: none;
}

.calculator__field .calculator__date-picker {
	position: absolute;
	top: 0;
	right: 0;
	width: 42px;
	height: 48px;
	padding: 0;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.calculator__date .calculator__date-picker::-webkit-calendar-picker-indicator {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}