
html {
  font-family: system-ui, sans-serif;
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  max-width: 100%;
  box-sizing: border-box;
  height: 100%;
  background-image: linear-gradient(#e1e1e1 0%, white 100%);
}

/* /// CUSTOM MEDIA /// */

/* 640px  */

/* 768px  */

/* 1024px */

/* 1280px */

/* 1536px */

:root {
	--breakpoint-7xl: 96rem;
	--container-5xl: 64rem;
	--container-3xs: 16rem;
	--container-2xs: 18rem;
	--container-xs: 20rem;
	--container-sm: 24rem;
	--container-md: 28rem;
	--container-lg: 32rem;
	--container-xl: 36rem;
	--container-2xl: 42rem;
	--container-3xl: 48rem;
	--container-4xl: 56rem;
	--container-6xl: 72rem;
	--container-7xl: 80rem;
	--container-8xl: 96rem;


	/* spacing */
	--spacing: 0.5rem;
	--spacing-1: calc(var(--spacing) * 1);
	--spacing-2: calc(var(--spacing) * 2);
	--spacing-3: calc(var(--spacing) * 3);
	--spacing-4: calc(var(--spacing) * 4);
	--spacing-5: calc(var(--spacing) * 5);
	--spacing-6: calc(var(--spacing) * 6);
	--spacing-8: calc(var(--spacing) * 8);
	--spacing-10: calc(var(--spacing) * 10);
	--spacing-11: calc(var(--spacing) * 11);
	--spacing-12: calc(var(--spacing) * 12);

	/* container */
	--container-3xs: 16rem;
	--container-2xs: 18rem;
	--container-xs: 20rem;
	--container-sm: 24rem;
	--container-md: 28rem;
	--container-lg: 32rem;
	--container-xl: 36rem;
	--container-2xl: 42rem;
	--container-3xl: 48rem;
	--container-4xl: 56rem;
	--container-5xl: 64rem;
	--container-6xl: 72rem;
	--container-7xl: 80rem;
	--container-8xl: 96rem;

	/* page */
	--page-gap: clamp(var(--spacing-2), 4vw, var(--spacing-4));

}

:root {
	/* typography */
	--font-body: 'Poppins', sans-serif;
	--font-title: 'Poppins', sans-serif;
}

h1 {
  margin-top: 0;
  line-height: 1.1;
  font-size: clamp(32px, 6vw, 50px);
  text-wrap: balance;
  color: var(--wp--preset--color--accent-4);
}

h2 {
	font-size: clamp(24px, 4vw, 30px);
  margin-bottom: 0.5em;
  line-height: 1.1;
}

.h2-variant-2 {
	font-size: clamp(20px, 3vw, 24px);
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 0.5em;
	line-height: 1.1;
	color: var(--color-title);
}

h3 {
  margin-top: 0;
}

p {
  font-size: clamp(14.5px, 3vw, 16px); 
  font-family: var(--font-body);
  margin-top: 0;
}

p:empty {
  display: none;
}

:root {
	--wp--preset--color--base: #FFFFFF;
  --wp--preset--color--contrast: #111111;
  --wp--preset--color--accent-1: #dfdfdf;
  --wp--preset--color--accent-2: #55d8ff;
  --wp--preset--color--accent-3: #209ab7;
  --wp--preset--color--accent-4: #05486f;
  --wp--preset--color--accent-5: #191919;
  --wp--preset--color--accent-6: #1c1c1c;
}

:root {
	/* components button */
	--button-bg: var(--color-black);
	--button-text-color: var(--color-white);
}

a {
  text-decoration: none;
}

.wp-block-button__link {
	cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-button__link:hover {
  	transform: scale(1.1);
	}

.nelio-forms-field__error-label {
	margin-top: 5px;
}

.nelio-forms-field__error-label div {
		color: white !important;
		padding: 5px 15px;
		background-color: tomato;
		border-radius: 5px;
		font-size: 14px;
	}

:root {

	--line-element: 2px;

	/* top bar */
	--height-top-bar: 140px;

	/* icons*/

	/* side menu*/

	/* line */
	
}

@media screen and (max-width: 1199px) {

:root {
		--height-top-bar: 64px;
	
}
	}

:root {
	--icon-line: var(--line-element);
	--icon-menu-color: var(--wp--preset--color--base);
	--icon-size: var(--spacing-3);
	--icon-bg: transparent;
	--side-panel-bg: black;
	--side-panel-text: white;
	--side-panel-link: var(--wp--preset--color--accent-2);
	--line-a: #dfdfdf45;
}

.fade-in-wait {
	opacity: 0;
}

.fade-in-css {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.grow {
	flex-grow: 1;
}

.w-all {
	width: 100%;
}

.mb-1 {
	margin-bottom: 0.5rem;
}

.mb-2 {
	margin-bottom: 1rem;
}

.mb-4 {
	margin-block-end: 2rem !important;
}

.mb-6 {
	margin-bottom: var(--spacing-6);
}

.mb-12 {
	margin-bottom: var(--spacing-12);
}

.mt-6 {
	margin-top: var(--spacing-6);
}

.mt-12 {
	margin-top: var(--spacing-12);
}

.m-0 {
  margin-block-start: 0;
  margin-block-end: 0;
}

.align-center {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.w-full {
	width: 100%;
}

.gap-2 {
	gap: 1rem;
}

.gap-4 {
	gap: 2rem;
}

.align-center {
	align-items: center;
}

.space-nowrap {
	white-space: nowrap;
}

.text-gradient-child--1 strong {
		background: linear-gradient(90deg, rgba(36, 157, 219, 1) 0%, rgba(44, 173, 122, 1) 100%);
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}

.max-560  {
	max-width: 560px;
}

.negative-top-20 {
	position: relative;
	bottom: -20%;
	z-index: 1;
}

.justify-center {
	justify-content: center;
}

.text-blue-child strong {
		color: #00aeef;
	}

header {

}

footer {
	
}

.banner-main--inner  {
	gap: 1.5rem;
}

.banner-main--p  {
	max-width: 560px;
}

html {
  --adminbar-height: 0;
}

html:has(body.admin-bar) {
	--adminbar-height: 32px;
}

@media screen and (max-width: 782px) {

html:has(body.admin-bar) {
		--adminbar-height: 46px
}
	}

@media screen {
  html {
    margin-top: var(--adminbar-height) !important;
  }
}

#wpadminbar {
	height: var(--adminbar-height) ;
}

:root :where(.is-layout-constrained) > * {
  /* margin-block-start: auto; */
  /* margin-block-end: auto; */
}

:where(.wp-site-blocks :focus) {
  outline-width: 0 !important;
  outline-style: none !important;	
}

.menu__button {
	width: var(--icon-size);
	padding: var(--spacing-1);
	aspect-ratio: 1 / 1;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	display: none;
}

@media screen and (max-width: 1023px) {

.menu__button {
		display: flex
}
	}

.menu__button span {
		width: 100%;
		height: var(--icon-line);
		background-color: var(--wp--preset--color--accent-6);
		overflow: hidden;
		display: block;
	}

.menu__button.contrast span {
	background-color: white;
}

body {
	/* border: 5px solid gold; */
}

.menu__button-close {
  width: var(--icon-size);
  padding: var(--spacing-1);
  aspect-ratio: 1 / 1;
  background-color: var(--side-panel-bg);
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  cursor: pointer;
  position: relative;
  align-self: end;
}

.menu__button-close span {
    width: 100%;
    height: var(--icon-line);
    background-color: var(--icon-menu-color);
    position: absolute; 
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    will-change: transform, opacity;
		overflow: hidden;
  }

.menu__button-close span:nth-child(1) {
      transform: rotate(45deg);
    }

.menu__button-close span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

.menu__button-close span:nth-child(3) {
			transform: rotate(-45deg);
    }

body {
	/* border: 5px solid lime; */
}

.menu__side-panel {
	position: fixed;
  right: 0;
  top: var(--adminbar-height);
  padding-top: 0;
  padding-bottom: 0;
  max-width: 600px;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 20;
	will-change: transform, opacity;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
	transform: translateX(100%) scale(0.7);
	transform-origin: top right;
	opacity: 0;
  background-color: var(--side-panel-bg);
	margin-block-start: 0;
}

.menu__side-panel * {
		color: var(--side-panel-text);
	}

.menu__side-panel a, .menu__side-panel a span, .menu__side-panel a strong, .menu__side-panel a * {
		color: var(--side-panel-link);
		display: block;
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		width: 100%;
		text-decoration: none;
	}

.menu__side-panel a:hover, .menu__side-panel a span:hover, .menu__side-panel a strong:hover, .menu__side-panel a *:hover {
			/* background-color: var(--wp--preset--color--accent-4); */
		}

.menu__side-panel.open-menu {
		transform: translateX(0) scale(1);
		opacity: 1;
	}

.menu__side-panel__nav ul {
		display: block;
	}

.menu__side-panel__nav li {

	}

/* */

footer .wp-block-navigation__container  {
	margin-top: 1rem;
}

.logo-main {
	position: relative;
	left: 10px;
}

.logo-main:before {
		content: "";
		display: block;
		background-color: var(--wp--preset--color--base);
		position: absolute;
		z-index: 0;
		width: 410px;
		height: 410px;
		border-radius: 50%;
		left: -70%;
		bottom: -50%;
	}

@media screen and (max-width: 1023px) {

.logo-main:before {
			width: 270px;
			height: 270px
	}
		}

.logo-main .custom-logo-link {
		z-index: 1;
		position: relative;
		top: -6px;
	}

@media screen and (max-width: 1023px) {

.logo-main .custom-logo-link img {
				max-height: var(--height-top-bar);
				max-width: none !important;
				width: auto !important
		}
			}

html:has(body.open-modal ) {
	overflow: hidden;
	display: block;
}

.modal {
	display: none;
	position: fixed;
	z-index: 5;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	height: calc(100% - var(--adminbar-height, 0));
	top: 0;
	background-color: rgba(0,0,0,0.5);	
	margin: 0 !important;
	align-items: center;
	justify-content: center;
}

:where(body.open-modal) .modal{
		display: flex;
	}

.modal-content {
	display: none;
	padding: 20px;
	border-radius: 2rem ;
	border-radius: 2rem;
	width: 300px;
	max-width: 90%;
	position: relative;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	overflow-y: auto;
	max-height: 80vh;
}

.view-modal {
	display: block;
	width: 100%;
	max-width: 645px;
}

.view-modal p {
		margin-bottom: 1.5rem;
	}

.modal-close {
	background-color: transparent;
	position: absolute;
	right: 2rem;
	top: 2rem;
}

.form .nelio-forms-form {
		opacity: 0.8;
	}

.form .wp-block-column:first-child {
			display: flex;
			flex-direction: column;
			justify-content: center;
		}

.form .wp-block-column:last-child label {
				color: white;
				margin-bottom: 2px;
			}

.form .wp-block-column:last-child input {
				border-radius: 12px;
				border: 1px solid transparent;
				opacity: 0.9;
			}

.form .wp-block-column:last-child input[type=checkbox] {
					border-radius: 4px;
				}

.form .wp-block-column:last-child textarea {
				border-radius: 12px;
				border: 1px solid transparent;
				opacity: 0.9;
			}

body {
	background-color: #f2f2f2;
	/* border: 5px solid gold;  */ 
}

