/* MAIN LAYOUT */
/* ----------------------------------------- */

/* ---------------------------------------
   			Vars
--------------------------------------- */

:root {
	--font: 'Rubik', sans-serif;
	--sub-font: 'Italiana', sans-serif;
	--main-color: #fff;
	--sub-color: #000;
	--text-color: #D8DADC;
}






/* ---------------------------------------
	HTML
--------------------------------------- */

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

html {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	position: static !important;
	display: flex;
	flex-direction: column;
	height: auto;
	font-family: var(--font);
	min-height: 100vh;
	margin: 0;
	background: #1A1A1A;
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.5;
}

main {
	display: block;
}

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


/* ---------------------------------------
	Preloader
--------------------------------------- */

.preloader {
	position: fixed;
	z-index: 100000000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	visibility: visible;
	opacity: 1;
	background-color: #fff;
	color: #222;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader--hidden {
	visibility: hidden;
	opacity: 0;
}

.position-center {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

img {
	transition: opacity 0.3s ease-in-out;
}

img.pre-lazyload, &[data-lazy-src] {
	opacity: 0;
}

img.lazyloaded {
	opacity: 1;
}

/* ---------------------------------------
   			Container
--------------------------------------- */

.container {
	width: 100%;
	max-width: 1310px;
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.main-content {

}

.two-columns {
	columns: 2;
}

@media (max-width: 767px) {
	.two-columns {
		columns: 1;
	}
}



/* ---------------------------------------
   			Typography
--------------------------------------- */

p {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

p:not(:last-child) {
	margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
	p {
		font-size: 14px;
		line-height: 20px;
	}
}

ul {
	list-style: disc;
	padding-left: 20px;
}

ol {
	list-style: decimal;
	padding-left: 20px;
}

ol:not(:last-child) {
	margin-bottom: 1rem;
}

ul:not(:last-child) {
	margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	font-family: var(--sub-font);
	margin-bottom: 1rem;
}


/*H1*/

h1 {
	font-size: 112px;
	line-height: 1;
}
@media (max-width: 992px) {
	h1 {
		font-size: 80px;
	}
}
@media (max-width: 768px) {
	h1 {
		font-size: 60px;
	}
}
@media (max-width: 576px) {
	h1 {
		font-size: 45px;
	}
}

/*H2*/


h2 {
	font-size: 62px;
	line-height: 1;
}
@media (max-width: 992px) {
	h2 {
		font-size: 50px;
	}
}
@media (max-width: 768px) {
	h2 {
		font-size: 40px;
	}
}
@media (max-width: 576px) {
	h2 {
		font-size: 35px;
	}
}

h2 strong {
	font-weight: 700;
}

/*H3*/

h3 {
	font-size: 52px;
	line-height: 1;
}
@media (max-width: 992px) {
	h3 {
		font-size: 43px;
	}
}
@media (max-width: 768px) {
	h3 {
		font-size: 35px;
	}
}
@media (max-width: 576px) {
	h3 {
		font-size: 30px;
	}
}

/*H4*/

h4 {
	font-size: 42px;
	line-height: 1;
}
@media (max-width: 992px) {
	h4 {
		font-size: 35px;
	}
}
@media (max-width: 768px) {
	h4 {
		font-size: 30px;
	}
}
@media (max-width: 576px) {
	h4{
		font-size: 25px;
	}
}

/*H5*/

h5 {
	font-size: 32px;
	line-height: 1.4;
	font-family: var(--font);
}
@media (max-width: 992px) {
	h5 {
		font-size: 26px;
	}
}
@media (max-width: 768px) {
	h5 {
		font-size: 24px;
	}
}
@media (max-width: 576px) {
	h5 {
		font-size: 22px;
	}
}

/*H6*/

h6 {
	font-size: 24px;
	line-height: 1.4;
	font-family: var(--font);
}
@media (max-width: 992px) {
	h6 {
		font-size: 22px;
	}
}
@media (max-width: 768px) {
	h6 {
		font-size: 20px;
	}
}
@media (max-width: 576px) {
	h6 {
		font-size: 18px;
	}
}

p a {
	text-decoration: underline;
	font-size: inherit;
	line-height: inherit;
	transition: all 0.3s ease-in-out;
}

a {

	transition: all 0.3s ease-in-out;
}

ul, ol {
	list-style-position: inside;
}

ul {

}

.button {
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	box-shadow: 0 15px 35px -5px #61B0DE;
	background: transparent;
	background-image: linear-gradient(90deg, #61B0DE 0%, #72C3F1 100%);
	padding: 15px 87px;
	display: inline-block;
	text-align: center;
	color: white;
	border: 1px solid #61B0DE;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.button:hover {
	opacity: 0.8;
}

.button:focus {
	opacity: 0.8;
}

/* ---------------------------------------
			Header
--------------------------------------- */

.header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 105;
	padding: 10px 0;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
}

.header-scrolled {
	background: rgba(0, 0, 0, 0.4);
}

.header .container {

}

.header__toggler {
	display: none;
}

.home .header {
	position: fixed;
}

.header-scrolled {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header-fixed {
	position: fixed;
}

.header__logo h1 {
	font-size: 0;
	line-height: 1;
}

.logo h1 a {
	max-height: 120px;
	object-fit: contain;
}

.logo h1 a img {
	max-width: 120px;
	object-fit: contain;
	height: auto;
}

.menu-item .sub-menu {
	display: none;
	top: 100%;
	right: auto;
	left: 0;
}

.header-menu .current_page_item > a {
	color: #666970;
}

.header-menu .menu-item a {
	color: var(--main-color);
	font-size: 16px;
	line-height: 1;
	text-transform: capitalize;
	text-decoration: none;
	font-weight: 400;
}

.header-menu .current-menu-item a {
	color: #72C3F1;
}

.menu-item a:hover {
	color: #72C3F1;
}

.header__buttons {
	display: flex;
	justify-content: flex-end;
	gap: 6px;
}

.header__buttons a {
	padding: 13px 20px;
}

.header__button-blue {
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #61B0DE;
	border-radius: 10px;
	text-decoration: none;
	background: transparent;
}

.header__button-blue:hover {
	background-color: #61B0DE;
	color: white;
	border-color: #61B0DE;
}

.header__button-orange {
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #F26E3B;
	border-radius: 10px;
	text-decoration: none;
	background: transparent;
}

.header__button-orange:hover {
	background-color: #F26E3B;
	color: white;
	border-color: #F26E3B;
}

.header-contacts {
	background-color: #123D68;
	padding: 5px 0;
	z-index: 150;
}

.header__row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
}

.header-contacts__row {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}


.contact-link {
	font-size: 16px;
	line-height: 1.4;
	color: white;
	display: flex;
	gap: 5px;
	text-decoration: none;
	align-items: center;
}

.contact-link:hover {
	opacity: 0.8;
}

.header-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	gap: 40px;
	padding: 0;
	list-style: none;
}

.header-button {
	color: #004F9F;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	font-family: var(--sub-font);
	border: 2px solid #004F9F;
	border-radius: 12px;
	display: inline-block;
	padding: 9px 20px 9px 20px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	transition: all 0.3s ease-in-out;
	text-align: center;
}

.header-button:hover {
	border-color: #004F9F;
	background-color: #004F9F;
	color: white;
}

.header__btn {
	display: none;
}

.menu-item-has-children {
	position: relative;

}

.menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}



.menu-item-has-children >  a:after {
	content: url("../images/arrow_ico.svg");
	width: 12px;
	height: 12px;
	position: relative;
	display: inline-block;
	top: 0;
	transform: translate(0%, 0%);
	transition: all 0.3s ease-in-out;
}

.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
	filter: brightness(0) saturate(100%) invert(70%) sepia(13%) saturate(1621%) hue-rotate(163deg) brightness(91%) contrast(91%);
}

.menu-item-has-children:hover .sub-menu {
	position: absolute;
	right: auto;
	left: 0;
	min-width: 200px;
	padding: 15px;
	z-index: 11;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column-reverse;
	gap: 15px;
	list-style: none;
}

#clickWrapper {
	cursor:pointer;
	height:27px;
	width:27px;
}

/* menu start */
.menu {
	position: absolute;
	background-color: white;
	width: 27px;
	height: 2px;
	margin-top:12px;
}

.animate.menu{
	animation-name: menu-menu;
	animation-duration: 0.3s;
}

@keyframes menu-menu {
	0% {
		width:0;
		height:0;
	}
	50% {
		width:0;
		height:0;
	}
	51%{
		position: absolute;
		background-color: white;
		width: 27px;
		height: 2px;
	}
}

.menu:after {
	content: "";
	position: absolute;
	background-color: white;
	width: 27px;
	height: 2px;
	margin-top: -12px;
}

.animate.menu:after {
	animation-name: menu-after;
	animation-duration: 0.3s;
}

@keyframes menu-after {
	0% {
		transform: rotate(-45deg);
		margin-top:0;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(0deg);
		margin-top:-12px;
	}
}

.menu:before {
	content: "";
	position: absolute;
	background-color: white;
	width: 27px;
	height: 2px;
	margin-top: 12px;
}

.animate.menu:before{
	animation-name: menu-before;
	animation-duration: 0.3s;
}
@keyframes menu-before {
	0% {
		transform: rotate(45deg);
		margin-top:0;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(0deg);
		margin-top: 12px;
	}
}
/* menu end */

/* close start */
.close {
	position: absolute;
	margin-top: 12px;
	margin-left: 0;
	opacity: 1 !important;
	text-shadow: none;
}

.close.animate{
	animation-name: close-close;
	animation-duration: 0.3s;
}

@keyframes close-close {
	0% {
		position: absolute;
		background-color: white;
		width: 27px;
		height: 2px;
		margin-top: 12px;
	}
	50% {
		display:none;
		width:27px;
		height: 2px;
	}
	100%{
		width:0;
		height:0;
	}
}

.close:after {
	content: "";
	position: absolute;
	background-color: white;
	width: 27px;
	height: 2px;
	transform: rotate(45deg);
}

.animate.close:after {
	animation-name: close-after;
	animation-duration: 0.3s;
}

@keyframes close-after {
	0% {
		transform: rotate(0deg);
		margin-top: 14px;
	}
	50% {
		transform: rotate(0deg);
		margin-top: 0;
	}
	100%{
		transform: rotate(45deg);
	}
}

.close:before {
	content: "";
	position: absolute;
	background-color: white;
	width: 27px;
	height: 2px;
	transform: rotate(-45deg);
}

.animate.close:before {
	animation-name: close-before;
	animation-duration: 0.3s;
}

@keyframes close-before {
	0% {
		transform: rotate(0deg);
		margin-top:-12px;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(-45deg);
	}
}
/* close end */

.mega-header {
	display: none;
}

.header__menus {
	padding-left: 130px;
}

@media (max-width: 1240px) {
	.header-menu {
		gap: 15px;
	}
	.header__menus {
		padding-left: 0;
	}
}

@media (max-width: 992px) {
	.header-contacts__row {
		gap: 15px;
		justify-content: space-between;
	}
	.header-menu .menu-item a {
		font-size: 24px;
	}
	.header-menu .sub-menu {
		display: flex;
		flex-direction: column;
		padding: 10px 0;
		list-style: none;
		gap: 15px;
		border-top: 1px solid white;
		border-bottom: 1px solid white;
		margin: 10px 0;
	}
	.header-menu .sub-menu a {
		font-size: 20px;
	}
	.header__buttons-lg {
		display: none;
	}
	.header__toggler {
		display: flex;
	}
	.header__menus {
		display: none;
	}
	.header__btn {
		display: flex;
	}
	.header__button {
		display: flex;
		gap: 15px;
		align-items: center;
	}
	.header-button {
		padding: 8px 15px;
		font-size: 14px;
		line-height: 1;
	}
	.mega-header {
		position: fixed;
		top: 0;
		padding-top: 100px;
		padding-bottom: 100px;
		right: 0;
		height: 100vh;
		width: 100%;
		transition: all 0.3s ease-in-out;
		opacity: 0;
		z-index: -1;
		overflow: scroll;
		display: block;
		visibility: hidden;
	}
	.bg {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: black;
	}
	.header-button {
		display: block;
	}
	.header__buttons {
		z-index: 55;
		justify-content: center;
		gap: 15px;
		flex-wrap: wrap;
	}
	.header__menus {
		display: none;
	}
	.mega-header-active {
		opacity: 1;
		z-index: 104;
		visibility: visible;
	}
	.mega-header__block {
		padding: 15px;
		justify-content: center;
		display: flex;
		height: 100%;
		flex-direction: column;
	}
	.header-menu-nav {
		overflow: scroll;
		height: calc(100vh - 61px);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		z-index: 200;
	}
	.header-menu li a {
		color: white;
		font-size: 22px;
		line-height: 25px;
	}
	.mega-header__container {
		height: 100%;
	}

	.header-menu {
		flex-direction: column;
		gap: 15px;
		width: 100%;
	}
	.menu-item-has-children > a:after {
		display: none;
	}
}

@media (max-width: 768px) {
	.contact-link {
		font-size: 14px;
		line-height: 1.2;
	}
	.header-contacts__row .contact-link:last-child {
		display: none;
	}
	.header-contacts__row {
		justify-content: center;
	}
	.header-button {
		padding: 8px 5px;
		font-size: 12px;
		line-height: 1;
	}
	.header-contacts__row .contact-link:first-child {
		display: none;
	}
}


/* ---------------------------------------
			Footer
--------------------------------------- */

.footer {
	margin-top: auto;
	background-color: #0F0F0F;
	color: white;
	padding: 81px 0 0 0;
}

.footer-text {
	padding-bottom: 30px;
}

.footer-text h2 {
	margin-bottom: 10px;
}

.footer-text p {
	font-size: 21px;
}

.copyright {
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #1A1A1A;
}

.copyright p {
	color: #B0B5BA;
	font-weight: 300;
}

.socials {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	justify-content: center;
	list-style: none;

}

.footer .socials {
	padding: 0 0 60px 0;
	margin-bottom: 0 !important;
}

.socials li a {
	width: 42px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
	background-color: #272727;
}

.socials li a:hover {
	background-color: #4F5259;
}

.socials li a img {
	max-width: 30px;
}

.socials a:hover {
	opacity: 0.8;
}

.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu li a {
	color: white;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	font-family: var(--sub-font);
	text-transform: capitalize;
}

.footer-menu li a:hover {
	opacity: 0.8;
	color: white;
}

.footer__logo {
	margin-bottom: 14px;
}

.footer__links {
	display: inline-flex;
	flex-direction: column;
	gap: 10px;
}

.footer__links a {

}

.footer__links p {
	font-size: 16px;
	line-height: 1.4;
	color: white;
	display: flex;
	gap: 5px;
	text-decoration: none;
	align-items: center;
}

.footer__row {
	display: grid;
	grid-template-columns: 1fr 0.85fr 0.4fr;
	gap: 20px;
	padding-bottom: 23px;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__column .footer-menu {
	columns: 2;
	padding-top: 50px;
}

.footer__column .footer-menu li {
	margin-bottom: 7px;
}

.footer__column .socials {
	padding-top: 53px;
}

.footer__bottom .footer-menu {
	display: flex;
	justify-content: flex-end;
	gap: 25px;
	flex-wrap: wrap;
}

.main-content-text {
	padding: 96px 0;
}

@media (max-width: 1240px) {
	.footer__row {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 20px;
		padding-bottom: 23px;
	}
}

@media (max-width: 992px) {
	.footer__column .footer-menu {
		padding-top: 0;
	}
	.footer__column .socials {
		padding-top: 0;
	}
	.footer {
		padding: 66px 0 0 0;
	}
}

@media (max-width: 768px) {
	.main-content-text {
		padding: 36px 0;
	}
	.footer {
		padding: 36px 0 0 0;
	}
	.footer .socials {
		padding-bottom: 36px;
	}
	.footer-text {
		padding-bottom: 36px;
	}
}

/* ---------------------------------------
				Slider
--------------------------------------- */

.slick-dots {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,-200%);
	list-style: none;
	gap: 10px;
	z-index: 60;
}


.slick-dots li {

}


.slick-dots li button {
	background-color: transparent;
	padding: 0;
	font-size: 0;
	width: 12px;
	height: 12px;
	border: 1px solid white;
	border-radius: 50%;
}

.slick-dots .slick-active button {
	background-color: white;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 0;
	outline: none;
	box-shadow: none;
	border: 1px solid rgba(0, 79, 159, 0.15); /* Border with 15% opacity */
	z-index: 80;
	transform: translate(0%, -50%);
	cursor: pointer;
}

.slick-arrow:after {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slick-arrow:hover {
	border-color: #004F9F;
}

.slick-prev {
	left: 0;
}

.slick-prev:after {
	content: url("../images/left-arrow.png");

}

.slick-next {
	right: 0;
}

.slick-next:after {
	content: url("../images/right-arrow.png");
}

.hero-slider .slick-prev {
	transform: translate(-60%, -50%);
}

.hero-slider .slick-next {
	transform: translate(60%, -50%);
}

/* ---------------------------------------
			Home
--------------------------------------- */

.hero-slider {
	padding: 18px 0;
	overflow: hidden;
}

.hero-slider .wp-block-cover {
	border-radius: 24px;
	position: relative;
	padding: 39px 20px 10px 90px;
}

.hero-slider .wp-block-cover:before {
	background-color: #205993;
	position: absolute;
	top: 0;
	left: 0;
	width: 22%;
	height: 100%;
	object-fit: cover;
	content: '';
	opacity: 0.5;
	z-index: 1;
}

.hero-slider .wp-block-cover p {
	font-family: var(--sub-font);
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.4;
	margin-bottom: 20px;
}

.hero-slider .wp-block-button__link {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	padding: 12px 38px;
	font-family: var(--sub-font);
	transition: all 0.3s ease-in-out;
}

.hero-slider .wp-block-button__link:hover {
	background-color: #004F9F !important;
	color: white !important;
}

.wp-block-cover .wp-block-cover__inner-container {
	position: relative;
	z-index: 20;
}

@media (min-width: 1240px) {
	.hero-slider .wp-block-cover p {
		max-width: 490px;
	}
}

@media (max-width: 1240px) {
	.hero-slider .slick-prev {
		transform: translate(-10%, -50%);
	}
	.hero-slider .slick-next {
		transform: translate(10%, -50%);
	}
}

@media (max-width: 992px) {
	.hero-slider .wp-block-cover {
		padding: 30px 15px;
	}
	.hero-slider .slick-arrow {
		display: none !important;
	}
	.hero-slider .slick-dots {
		transform: translate(-50%, -20%);
	}
}

@media (max-width: 767px) {
	.spacer-sm-25 {
		height: 25px !important;
	}
	.spacer-sm-36 {
		height: 36px !important;
	}
}

.our-process__list {

}

.our-process__columns {
	gap: 11px;
	justify-content: center;
	padding-top: 10px;
}

.our-process__columns h6 {
	margin-bottom: 5px;
}

.our-process__column-image {

}

.our-process__column-text {
	max-width: 500px;
}

.team {

}

.team__column {

}

.team__list {
	max-width: 1008px;
	margin: 0 auto;
}

.team__image {

}

.team__title {
	margin-top: 15px;
	margin-bottom: 5px;
}

.team__subtitle {
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 1px;
}

.work-with-us__heading {
	margin-bottom: 4px;
}

.work-with-us__text {
	font-family: var(--sub-font);
	margin-bottom: 67px !important;
}

.work-with-us__image {
	margin-top: auto;
}

.work-with-us__column {
	display: flex;
	flex-direction: column;
	height: auto;
}

.p-0-15 {
	padding: 0 15px;
}

.banner p {
	margin-bottom: 0;
}

.banner p a {
	padding-left: 24px;
	position: relative;
}

.banner p a:hover {
	opacity: 0.8;
}

.banner p a:before {
	content: url("../images/phone_ico.png");
	padding: 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0%, -35%);
}

.contact-us {
	padding: 80px 0;
}

.contact-us__column {
	max-width: 576px;
	margin: 0 auto;
	border-radius: 24px;
	padding: 33px 40px;
}

.contact-us__column h3 {
	margin-bottom: 5px;
}

.contact-us__text {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500;
	margin-bottom: 24px !important;
}


.contact-us label {
	font-size: 12px !important;
	color: #393939 !important;
	line-height: 1.4 !important;
	margin-bottom: 4px !important;
}

.contact-us .gform_fields {
	row-gap: 15px !important;
}


.contact-us label .gfield_required {
	display: none;
}

.contact-us .gform_body input {
	height: 48px !important;
}

.contact-us .gform_body input::placeholder {
	color: #B5B5B5;
}

.contact-us .gform_body textarea::placeholder {
	color: #B5B5B5;
}

.contact-us .gform_body textarea {
	min-block-size: 100px !important;
	height: 100px !important;
}

.contact-us .gform-footer {
	text-align: center;
	justify-content: center;
	margin-top: 18px !important;
}

.contact-us .gform-footer .gform_button {
	font-size: 16px !important;
	line-height: 1.4 !important;
	padding: 13px 65px !important;
	text-transform: uppercase !important;
	border-radius: 12px !important;
}

@media (max-width: 992px) {
	.contact-us__column {
		padding: 30px 15px ;
	}
}

@media (max-width: 767px) {
	.contact-us {
		padding: 36px 0;
	}
}

.home {
	background: #1A1A1A;
}


.hero-video {

}

.hero-video h2 {
	font-weight: 300;
	font-family: var(--font);
	line-height: 1.5;
}

.hero-video p {
	font-size: 21px;
}

.hero-video__blue .wp-block-button__link {
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	box-shadow: 0 15px 35px -5px #61B0DE;
	background: transparent;
	background-image: linear-gradient(90deg, #61B0DE 0%, #72C3F1 100%);
	padding: 15px 75px;
}

.hero-video__blue .wp-block-button__link:hover {
	opacity: 0.7;
}

.hero-video__orange .wp-block-button__link {
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	box-shadow: 0 15px 35px -5px #F26E3B;
	background: transparent;
	background-image: linear-gradient(90deg, #F26E3B 0%, #FF8252 100%);
	padding: 15px 65px;
}

.hero-video__orange .wp-block-button__link:hover {
	opacity: 0.7;
}

.hero-video__buttons {
	gap: 20px;
	padding-top: 35px;
}

.hero-video {
	position: relative;
}

.hero-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video .wp-block-cover__background {

}

.hero-video:after {
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(to bottom, white 0%, #1A1A1A 100%);
	mix-blend-mode: multiply;
	width: 100%;
	height: 100%;
	z-index: 1;
	content: '';
}

.web-section {
	padding: 96px 0;
}

.section-top .wp-block-columns {
	gap: 55px;
}

.section-top .wp-block-button__link {
	border-radius: 12px;
}

.section-workshops .wp-block-button__link {
	border-radius: 12px;
}

.blue-block {
	border-radius: 20px;
	padding: 60px 60px 70px 60px;
	position: relative;
}


.blue-block:after {

}

.blue-block h5 {
	font-family: var(--font);
	letter-spacing: -0.02em;
}

.blue-block .wp-block-cover__image-background {

}

.blue-block .wp-block-button__link {
	font-weight: 500;
	font-size: 16px;
	padding: 12px 65px;
}

.blue-block .wp-block-button__link:hover {
	opacity: 0.8;
}

.section-recording .wp-block-button__link {
	border-radius: 12px;
}

.services-list-icons .wp-block-image {
	display: flex;
}

.services-section .container {
	max-width: 1095px;
}

.services-section h6 {
	font-weight: 300;
	margin-bottom: 5px;
}

.services-section h5 {
	font-weight: 300;
	font-family: var(--font);
	font-size: 36px;
	margin-bottom: 10px;
}

.services-section p {
	font-weight: 300;
}

.services-section .wp-block-button__link  {
	border-radius: 12px;
	min-width: 235px;
}

.testimonials-section {
	padding: 96px 0 0 0;
	position: relative;
}

.testimonial-item {
	border-radius: 20px;
	background-color: #282727;
	padding: 20px 20px;
}

.testimonial-item__title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font);
	font-size: 21px;
	color: white;
	line-height: 1.5;
}

.testimonial-item__title img {
	position: relative;
	top: 1px;
}

.testimonials-list {
	height: 625px;
	overflow: hidden;
	padding: 10px 0;
	transition: all 0.3s ease-in-out;
}

.testimonials-list-active {
	height: 100% !important;
}

.testimonials-grid {
	column-count: 3; /* Number of masonry columns */
	column-gap: 20px;
}

.testimonial-item {
	break-inside: avoid;
	margin-bottom: 20px;
}


.testimonial-content p {
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
	color: #D8DADC;
}

.show-more-block {
	text-align: center;
	z-index: 55;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0%);
	width: 100%;
	padding-bottom: 175px;
}

.bg-testimonials {
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 20;
}

.show-more-block img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 240px;
	z-index: 20;
}

.show-more-block .button {
	z-index: 25;
	position: relative;
}

.bg-testimonials img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.interviews-section {

}

.interviews-section  .wp-block-embed__wrapper {
	padding-bottom: 13px;
}

.interviews-section  .wp-block-embed__wrapper iframe {
	width: 100%;

	border-radius: 20px;
}

.interviews-section h6 {
	font-family: var(--font);
	font-size: 21px;
	margin-bottom: 7px;
}

.interviews-section p {
	font-weight: 300;
}

.contact-us-section__text {
	font-size: 21px;
	font-weight: 300;
	margin-bottom: 20px !important;
}

.contact-us-section h2 {
	margin-bottom: 10px;
}

.contact-us-link {
	margin-bottom: 10px;
}

.contact-us-link figure {
	display: flex;
}

.contact-us-link a {
	text-decoration: none;
}

.contact-us-link a:hover {
	opacity: 0.8;
}

.contact-us-section form {
	max-width: 620px;
	margin: 0 auto;
	border-radius: 20px;
	background-color: #CBE2EF;
	padding: 40px 40px;
}

.contact-us-section form input {
	height: 48px !important;
	font-size: 16px;
	font-weight: 300;
	color: #1A1A1A;
}

.contact-us-section form input::placeholder {
	color: #8C8C8C;
	font-size: 16px;
	font-weight: 300;
}

.contact-us-section form input:focus {
	outline: none;
}

.contact-us-section form label .gfield_required {
	display: none;
}

.contact-us-section form label {
	text-transform: uppercase;
	margin-bottom: 4px;
}

.contact-us-section form textarea {
	height: 100px !important;
	min-block-size: 100px !important;;
	font-size: 16px;
	font-weight: 300;
	color: #1A1A1A;
}

.contact-us-section form textarea:focus {
	outline: none;
}

.contact-us-section form textarea::placeholder {
	color: #8C8C8C;
	font-size: 16px;
	font-weight: 300;
}

.contact-us-section .gform_fields {
	grid-row-gap: 14px !important;
	grid-column-gap: 28px !important;
}

.contact-us-section .gform-footer {
	width: 100%;
}

.contact-us-section .gform-footer .gform_button  {
	width: 100% !important;
	box-shadow: 0 15px 35px -5px #F26E3B !important;
	background-color: transparent !important;
	background-image: linear-gradient(90deg, #F26E3B 0%, #FF8252 100%);
	font-weight: 500 !important;
	font-size: 16px !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
	padding: 15px 10px !important;
}

.gform_confirmation_message {
	color: white !important;
	text-align: center !important;
}

.main-content {
	position: relative;
}

.bg-image-page {
	position: absolute;
	left: 0;
	bottom: 0;
	width: auto;
	object-fit: contain;
	height: auto;
	max-width: 100%;
	z-index: 0;
}

.main-content section {

}

.section-top-block p {
	font-size: 21px;
	font-weight: 300;
}

.nm-posts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px 37px;
}

.nm-post__image {
	position: relative;
	padding-bottom: 72%;
}

.nm-post {
	border-radius: 20px;
	background-color: #282727;
}

.nm-post__title {
	font-family: var(--sub-font);
	font-size: 32px;
	line-height: 1;
	color: white;
	margin-bottom: 10px;
}

.nm-post__title a {
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	font-family: inherit;
	text-decoration: none;
}

.nm-post__title a:hover {
	color: #F26E3B;
}

.nm-post__excerpt p {
	color: #D8DADC;
	font-size: 16px;
	font-weight: 300;
}

.nm-post__column {
	padding: 20px;
}

.nm-post__image {
	overflow: hidden;
	border-radius: 20px;
}

.nm-post__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.3s ease-in-out;
}

.nm-post__image:hover img {
	transform: scale(1.1);
}

.nm-post__link {
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	color: #F26E3B;
	text-decoration: none;
	font-family: var(--font);
	padding-top: 15px;
}

.nm-post__link:hover {

}



.nm-post__link img {
	margin-left: 9px;
	transition: all 0.3s ease-in-out;
}

.nm-post__link:hover img {
	margin-left: 2px;
}

.nm-posts {
	padding: 26px 0;
	max-width: 1066px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.pagination {
	text-align: center;
	padding: 36px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.pagination a {
	color: white;
	font-size: 20px;
	text-decoration: none;
	font-weight: 300;
}

.pagination span {
	font-weight: 300;
	color: #F26E3B;
	font-size: 20px;
}

.pagination a:hover {
	color: #F26E3B;
}

.nm-single-post__link {
	text-align: center;
	color: #F26E3B;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-weight: 500;
}

.nm-single-post-top {
	text-align: center;
	padding: 36px 0;
}

.nm-single-post__link img {
	transform: rotate(180deg);
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.nm-single-post__link:hover img {
	margin-right: 3px;
}

.nm-single-post__post-thumbnail {
	text-align: center;
	margin-bottom: 30px;
}

.nm-single-post__post-thumbnail img {
	border-radius: 20px;
	width: 100%;
	object-fit: contain;
	height: auto;
}

.nm-single-post__title {
	font-size: 62px;
	text-align: center;
	margin-bottom: 20px;
}

.nm-single-post__excerpt {
	text-align: center;
}

.nm-single-post__excerpt p {
	color: #D8DADC;
	font-size: 21px;
	font-weight: 300;
	line-height: 1.5;
}

.nm-single-post .container {
	max-width: 880px;
}

.nm-single-post__excerpt {
	padding-bottom: 43px;
}

.nm-single-post__content {

}

.nm-single-post__content p {
	color: #D8DADC;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}

.nm-single-post__content li {
	color: #D8DADC;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}

.nm-single-post {
	padding-bottom: 200px;
}

.testimonials-masonry {
	column-count: 3;
	column-gap: 20px;
}

.testimonials-grid-block {
	padding: 25px 0;
}

.book-section {
	padding: 40px 0;
}

.book-section .wp-block-columns {
	border-radius: 20px;
	max-width: 1140px;
	margin: 0 auto;
	padding: 42px 36px;
}

.book-section .wp-block-columns h6 {
	font-weight: 300;
	margin-bottom: 6px;
}

.book-section .wp-block-columns h5 {
	margin-bottom: 10px;
}

.book-section .services-list-icons p {
	font-size: 16px;
	font-weight: 300;
}

.book-section-text {
	font-size: 16px !important;
	font-weight: 300;
}

.single-lesson .book-section {
	padding-top: 0;
	padding-bottom: 47px;
}

.section-price .wp-block-columns {
	border-radius: 20px;
}

.section-price-price {
	font-size: 36px;
	font-weight: 300;
	font-family: var(--font);
	margin-bottom: 27px !important;
}

.section-price-hours {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	font-family: var(--font);
	line-height: 1;
}

.section-price form .gfield--type-product .gform-field-label {
	display: none;
}

.section-price .container {
	max-width: 876px;
}

.section-price .gfield--input-type-total {
	display: flex;
	gap: 6px;
}

.section-price .gfield--input-type-total label {
	color: white;
	font-size: 24px;
	font-weight: 300;
	line-height: 1.4;
}

.section-price .gfield--input-type-total input {
	color: white !important;
	font-size: 24px !important;
	font-weight: 300 !important;
	line-height: 1.4 !important;
}

.section-price .gfield--input-type-total input:focus {
	box-shadow: none !important;
	outline: none !important;
	border-color: transparent !important;
}

.section-price .gfield--input-type-total input:hover {
	box-shadow: none !important;
	outline: none !important;
	border-color: transparent !important;
}

.section-price .gfield--type-product input {
	color: #8C8C8C !important;
	width: 88px !important;
	height: 48px !important;
	border-radius: 12px !important;
	font-size: 16px !important;
	line-height: 1 !important;
	font-weight: 300 !important;
}

.section-price .ginput_container_singleproduct {
	padding-left: 103px;
	display: flex !important;
	position: relative;
	flex-direction: row !important;
	gap: 10px;
}

.section-price .ginput_container_singleproduct .ginput_quantity {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
}

.qty-plus {
	border: 1px solid #F26E3B !important;
	width: 32px !important;
	height: 32px !important;
	border-radius: 50% !important;
	color: white !important;
	background: transparent !important;
}

.qty-plus:focus {
	box-shadow: none !important;
	outline: none !important;
}

.qty-plus:hover {
	box-shadow: none !important;
	outline: none !important;
}

.qty-minus {
	border: 1px solid #F26E3B !important;
	width: 32px !important;
	height: 32px !important;
	border-radius: 50% !important;
	color: white !important;
	background: transparent !important;
}

.qty-minus:focus {
	box-shadow: none !important;
	outline: none !important;
}

.qty-minus:hover {
	box-shadow: none !important;
	outline: none !important;
}

.section-price form .gform-footer .gform_button {
	font-size: 16px !important;
	line-height: 1 !important;
	font-weight: 500 !important;
	box-shadow: 0 15px 35px -5px #61B0DE !important;
	background: transparent !important;
	background-image: linear-gradient(90deg, #61B0DE 0%, #72C3F1 100%) !important;
	padding: 15px 75px !important;
	border-radius: 12px !important;
	width: 100% !important;
	max-width: 235px !important;
}

.section-price form .gform-footer .gform_button:hover {
	opacity: 0.8 !important;
}

.section-price form .gform-footer {
	margin-top: 10px !important;
}

.section-price form .gform_fields {
	grid-row-gap: 15px !important;
}

.lesson-descriptions {
	padding: 36px 0;
}

.lesson-descriptions h5 {
	font-family: var(--sub-font);
}

.lesson-descriptions .container {
	max-width: 876px;
}

.lesson-descriptions-title {
	margin-bottom: 4px;
}

.lesson-descriptions-title figure {
	display: flex;
}

.lesson-descriptions-title p {
	font-weight: 400;
}

.lesson-descriptions-text {
	padding-left: 20px;
}

.lesson-blue-block {
	padding: 45px 0 150px 0;
}

.lesson-blue-block .container {
	max-width: 876px;
}

.section-price .gform_confirmation_message {
	text-align: left !important;
	padding: 0 30px 0 0;
}

.section-price form .gform_fields .gfield--input-type-text input  {
	color: #8C8C8C !important;
	height: 48px !important;
	border-radius: 12px !important;
	font-size: 16px !important;
	line-height: 1 !important;
	font-weight: 300 !important;
}

.section-price form .gform_fields .gfield--type-email input {
	color: #8C8C8C !important;
	height: 48px !important;
	border-radius: 12px !important;
	font-size: 16px !important;
	line-height: 1 !important;
	font-weight: 300 !important;
}

.section-price form .gform_fields .gfield--input-type-phone input {
	color: #8C8C8C !important;
	height: 48px !important;
	border-radius: 12px !important;
	font-size: 16px !important;
	line-height: 1 !important;
	font-weight: 300 !important;
}

.section-price form .gform_fields label .gfield_required {
	display: none;
}

.section-price form .gform_fields .gfield--input-type-textarea textarea {
	color: #8C8C8C !important;
	height: 120px !important;
	border-radius: 12px !important;
	font-size: 16px !important;
	line-height: 1 !important;
	font-weight: 300 !important;
	min-block-size: 120px !important;
}


.section-price .wp-block-column > .wp-block-group {
	padding: 15px 15px 15px 0;
}

.note-text {
	font-size: 14px;
	padding-top: 15px;
}

.row-mb-0 p {
	margin-bottom: 0 !important;
}

@media (min-width: 992px) {
	.hero-video h2 {
		font-size: 48px;
	}
	.contact-us-section-page {
		padding-top: 38px;
	}
	.section-workshops {
		padding-top: 122px;
	}
	.section-recording {
		padding-top: 26px;
	}
	.services-section {
		padding-bottom: 116px;
	}
	.section-blog {
		padding-top: 34px;
		padding-bottom: 177px;
	}
	.section-testimonials {
		padding-top: 35px;
	}
	.book-section .wp-block-columns h5 {
		font-size: 36px;
	}
}

@media (max-width: 992px) {
	.hero-video h2 {
		line-height: 1.3;
	}
	.web-section {
		padding: 66px 0;
	}
	.blue-block {
		padding: 30px 15px;
	}
	.testimonials-grid {
		column-count: 2; /* Number of masonry columns */
		column-gap: 15px;
	}

	.testimonial-item {
		break-inside: avoid;
		margin-bottom: 15px;
	}
	.show-more-block {
		padding-bottom: 100px;
	}
	.testimonials-list {
		padding: 10px 0;
	}
	.nm-posts {
		gap: 30px;
	}
	.nm-single-post {
		padding-bottom: 100px;
	}
	.nm-single-post__title {
		font-size: 40px;
	}
	.testimonials-masonry {
		column-count: 2;
		column-gap: 20px;
	}
	.book-section .wp-block-columns {
		padding: 30px 20px;
	}
	.section-price .gfield--input-type-total label {
		font-size: 18px;
	}

	.section-price .gfield--input-type-total input {
		font-size: 18px !important;
	}
	.section-price-price {
		margin-bottom: 15px !important;
		font-size: 30px !important;
	}
	.lesson-blue-block {
		padding: 45px 0;
	}
}

@media (max-width: 781px) {
	.image-center-mobile {
		text-align: center;
		display: flex;
		justify-content: center;
	}
	.section-price .wp-block-column > .wp-block-group {
		padding: 15px;
	}
	.nm-posts {
		gap: 20px;
		grid-template-columns: 1fr;
	}
	.nm-single-post {
		padding-bottom: 66px;
	}
	.nm-post__column {
		padding: 15px;
	}
	.show-more-block {
		padding-bottom: 15px;
	}
	.testimonials-list {
		padding: 10px 0 !important;
	}
	.testimonials-grid {
		column-count: 1; /* Number of masonry columns */
		column-gap: 15px;
	}
	.nm-single-post__title {
		font-size: 32px;
	}
	.testimonial-item {
		break-inside: avoid;
		margin-bottom: 15px;
	}
	.image-center-mobile img {
		float: none;
	}
	.about-section .wp-block-columns {
		flex-direction: column-reverse;
	}
	.about-section .wp-block-columns .image-center-mobile figure {
		margin: 0 !important;
	}
	.services-section-columns-reverse {
		flex-direction: column-reverse;
	}
	.mobile-36 {
		height: 36px !important;
	}
	.none-mobile {
		display: none;
	}
	.contact-us-section form {
		padding: 20px 15px;
	}
	.contact-us-section .gform_fields {
		grid-row-gap: 10px !important;
		grid-column-gap: 10px !important;
	}
	.contact-us-section__text {
		font-size: 18px;
	}
	.section-blog br {
		display: none;
	}
	.section-top-block p {
		font-size: 18px;
		line-height: 1.2;
	}
	.nm-single-post__excerpt {
		padding-bottom: 20px;
	}
	.nm-single-post__excerpt p {
		font-size: 18px;
		line-height: 1.3;
	}
	.nm-single-post-top {
		padding: 20px 0;
	}
	.nm-single-post__post-thumbnail {
		margin-bottom: 20px;
	}
	.testimonials-masonry {
		column-count: 1;
		column-gap: 20px;
	}
	.book-section .wp-block-columns {
		padding: 30px 15px;
	}
	.section-price .gfield--input-type-total label {
		font-size: 14px;
	}

	.section-price .gfield--input-type-total input {
		font-size: 14px !important;
	}
	.section-price form .gform-footer {
		padding-bottom: 30px;
	}
	.section-price form .gform-footer .gform_button {
		max-width: 100% !important;
	}
	.section-price-price {
		margin-bottom: 15px !important;
		font-size: 25px !important;
	}
	.lesson-blue-block {
		padding: 36px 0;
	}
}

@media (max-width: 768px) {
	.hero-video p {
		font-size: 18px;
		line-height: 1.3;
	}
	.hero-video__buttons {
		flex-direction: column;
		padding-top: 15px;
	}
	.hero-video h2 {
		line-height: 1.1;
	}
	.hero-video h2 {
		font-size: 30px;
	}
	.hero-video h1 {
		font-size: 40px;
	}
	.web-section {
		padding: 36px 0;
	}
	.section-top .wp-block-columns {
		gap: 25px;
	}
	.hide-mobile {
		display: none !important;
	}
	.image-center-mobile {
		text-align: center;
	}
	.blue-block {
		padding: 20px 15px;
	}

	.blue-block br {
		display: none;
	}
}