@charset "UTF-8";
@import url("./reset.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");

:root{
    --app-font-general: 'Inter', sans-serif;
    --font-color-blue:#00345A;
    --yellow-bg-color:#e1f86a;
	--dark-green-color: #006400;
    --nav-menu-border-radius:10px;
    --app-color-light-blue: #f0fcfc;
	--app-color-medium-light-blue: #cbd8e1;
    --app-color-light-gray: #f0f0f0;
    --app-color-medium-blue:#81a0b5;
	--app-color-dark-blue:#00345A;
    --header-height: 80px; 
	--yellow-hv-color:#C0E200;
	--font-color-white: #F0FCFC;
	--app-secondary-blue: #BACCCC;
}

/* BUTTONS */

.primary-button, 
input[type="button"], 
input[type="submit"] {
	position: relative;
    padding: 10px 25px;
	text-decoration: none;
	font-weight: 700;
    font-size: 1.4rem;
    border-radius: 8px;
	height: 42px;
    width: fit-content;
    color: var(--font-color-blue);
    background-color: var(--yellow-bg-color);
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	text-transform: capitalize;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
	z-index: 5;
}

.primary-button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
	background-color: var(--yellow-hv-color);
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.flex-container {
	display: flex;
	justify-content: center;
}


/* ELEMENTS */

.light-blue-rounded-bg-icon {
    display: inline-block;
    text-align: center;
    align-items: center; 
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--font-color-blue);
    color: var(--app-color-light-blue);
}

/* MARGINS*/

.mt-100 {
	margin-top: 100px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-35 {
    margin-top: 35px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mt-minus-20 {
	margin-top: -20px;
}

.mt-minus-40 {
	margin-top: -40px;
}

.mt-minus-50 {
	margin-top: -50px;
}

.mb-minus-30 {
	margin-bottom: -30px;
}

.mb-minus-5 {
	margin-bottom: -5px;
}

.mb-minus-20 {
	margin-bottom: -20px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-25 {
    margin-left: 25px;
}

.mr-25 {
    margin-right: 25px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-200 {
    margin-bottom: 200px;
}

/* PADDING */

.pt-120 {
    padding-top: 80px;
}

.pd-40 {
	padding: 40px;
}

.pd-60 {
	padding: 60px;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--app-color-light-blue);
}

::-webkit-scrollbar-thumb {
	height: 50px;
	border-radius: 6px;
  	background: var(--yellow-bg-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--yellow-hv-color);
}

/* TEXT APPEARANCE */

.text-align-left {
	text-align: left;
}

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

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

.bold-text {
	font-weight: 700;
}

.italics-text {
	font-style: italic;
}

/* SECTIONS BACKGROUNDS*/

.bg-dark-blue {
    background-color: var(--font-color-blue);
}

.bg-medium-blue {
    background-color: var(--app-color-medium-blue);
}

.bg-light-blue {
    background-color: var(--app-color-light-blue);
}

.bg-white {
    background-color: #fff;
}

.contact-shapes, .sub-shapes {
	position: absolute;
	transition: transform 0.1s linear;
}

.skew-20 {
	transform: skew(20deg);
}

/* GENERAL STYLES */

html, body {
	max-width: 100%;
	overflow-x: hidden;
}

body {
    font-family: var(--app-font-general);
    background-color: var(--app-color-light-blue);
	transition: overflow 0.3s ease-in-out;
}

.grid {
	display: grid;
}

.center {
	place-items: center;
}

.align-center {
	align-items: center;
}

.caption {
    font-size: 14px; 
    color: var(--font-color-blue); 
}

.caption a {
    color: var(--font-color-blue);
    text-decoration: none; 
}

.caption a:visited {
    color: var(--font-color-blue);
}

.caption a:hover {
    text-decoration: underline; 
}

.caption a:focus {
    outline: none; 
    text-decoration: underline; 
}

p {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
	color: var(--font-color-blue);
}


h1, h2 {
    color: #fff;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 65px;
    position: relative; 
    display: inline-block; 
}

h2 {
    font-size: 40px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

p {
	user-select: text; 
	-webkit-user-select: text; 
	-moz-user-select: text; 
	-ms-user-select: text;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container{
    width: min(100% - 30px, 1440px);
    margin-inline:auto;
}

.container-x-60percent{
    width: 60%;
    margin-inline:auto;
}

.container-x-50percent{
    width: 50%;
    margin-inline:auto;
}

.container-x-100percent{
    width: 100%;
    margin: 0;
    margin-inline:auto;
}

.no-scroll { 
	overflow: hidden; 
}

.flex {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

button {
    padding: 10px 25px;
    font-size: 1.4rem;
	font-weight: 700;
    border-radius: 8px;
	height: 42px;
    width: fit-content;
    color: var(--font-color-blue);
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

button:hover {
	background-color: var(--yellow-hv-color);
}

/* HEADER */

header {
    position: fixed;
    height: 80px; /* Fixed height for the header */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 0 solid rgba(114, 114, 114, 0.3); /* Thin bottom border instead of box-shadow */
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-shadow { 
	box-shadow: 0 2px 5px rgba(114, 114, 114, 0.15); 
}

.header-hidden { 
	transform: translateY(-100%);
	transition: all 0.3s ease;
}

.header-menu-container {
	height: 80px;
}

.display-menu {
	display: flex;
	justify-content: center;
	align-items: center;
}

.aryval-logo-container {
	margin: 0;
}

.aryval-logo-container svg {
	height: 30px;
	margin-left: -32px;
}

.logo {
	height: 80px;
	line-height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
    width: 160px;
    mix-blend-mode: multiply;
	cursor: pointer;
	overflow: hidden;
}

.logo a {
	display: flex;
}

nav {
    flex: 1;
    text-align: end;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative; /* Added for positioning submenu image */
}

nav ul {
    gap: 3px;
	padding: 0; 
	margin: 0; 
	list-style-type: none; 
	display: flex; 
	align-items: center;
}

nav ul li {
    display: inline;
    position: relative; /* Important for dropdown positioning */
    margin-left: 0;
}

nav ul li > a {
	margin-top: 10px;
	height: 70px;
}

nav ul li a {
     display: inline-flex;
    align-items: center;
    line-height: normal; /* Normal line-height for flex items */
    padding: 10px 12px;
    color: var(--font-color-blue);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
    box-sizing: border-box;
    position: relative;

    &::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
		height: 100%;
        background-color: var(--app-secondary-blue);
        z-index: -1;
        clip-path: inset(100% 0 0 0);
        transition: clip-path 0.6s ease; /* Transition effect */
		border-top-left-radius: 10px; 
		border-top-right-radius: 10px; 
    }

		&:hover::after {
				clip-path: inset(0 0 0 0); /* Reveal the background on hover */
		}
	
    &:hover {
		border-top-left-radius: 10px; 
		border-top-right-radius: 10px; 
    }
}

.parent-hover::after {
  clip-path: inset(0 0 0 0);
}

.parent-hover {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}


/* Mobile navigation */

.hamburger {
	margin-top: 20px;
    position: relative;
    display: block;
    width: 35px;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;
    z-index: 900;
}

.hamburger-bar, .hamburger:before, .hamburger:after {
    content: '';
    display: block;
    height: 5px;
    background-color: var(--font-color-blue);
    margin: 6px 0;
    transition: 0.3s;
}

.hamburger-bar {
	width: 80%;
}

.hamburger:before {
	width: 60%;
}

.hamburger:after {
	width: 100%;
}

.hamburger.is-active:before {
	width: 100%;
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.is-active:after  {
    transform: rotate(45deg) translate(-9px, -9px);
}

.hamburger.is-active .hamburger-bar {
  opacity: 0;
}

.mobile-nav {
    display: block;
    position: fixed;
	height: calc(100lvh + 20px);
    top: 0;
    left: 100%;
    width: 300px;
    z-index: 999;
    background-color: var(--font-color-blue);
    padding-top: 80px;
    transition: all 0.5s ease-in-out;
	overflow: scroll;
}

.mobile-nav > img {
	position: absolute;
}

.mn-left {
	top: -30px;
}

.mn-right {
	right: 5px;
	bottom: 80px;
}

.mobile-nav ul {
	margin-bottom: 80px;
	display: block;
}

.mobile-nav ul li {
    list-style: none;
}

.mobile-nav.is-active {
	left: calc(100vw - 290px);
    right: 0;
}

.mobile-nav-flex {
	margin-top: -7px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.mobile-nav-flex :hover {
	color: var(--dark-green-color); 
}

.mobile-nav-flex img {
	width: 6%;
	margin-left: 20px;
	height: 18px;
	cursor: pointer;
}

#mobile-nav-with-img {
	padding-left: 0;
}

.mobile-nav a {
    display: block;
	padding-left: 25px;
	margin-top: 0;
    text-align: left;
	height: auto;
    width: fit-content;
    color: #fff;
    text-decoration: none;
	
	&::after {
		background-color: transparent;
	}
}

.mobile-nav a:hover {
    color: var(--dark-green-color); 
}

.mobile-nav .get-started {
	margin-bottom: 15px;
}

.nav-major {
	font-size: 18px;
}

#nav-get-started, #nav-login {
	width: 240px;
	margin-left: 0;
}

#nav-login {
	background-color: var(--app-color-light-blue);
	
	&:hover {
    	background-color: rgba(255, 255, 255, 0.9);
		color: var(--font-color-blue);
	}
}

.nav-divisor-line {
	height: 1px;
	margin: 15px 0;
	background-color: var(--app-color-light-blue);
}

.nav-main {
	position: relative;
}

.nav-footer {
	position: relative;
	display: flex;
	/* align-items: flex-end;
	height: 40dvh; */
}

.nav-footer-socials {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.nav-footer-socials a {
	width: 22px;
	margin: 15px 0;
}

.nav-footer-socials a i {
	transition: all 0.25s ease-in-out;
}

.nav-footer-socials a i:hover {
	color: var(--yellow-bg-color);
	font-size: 26px;
}

.nav-footer-menu ul {
	margin: 0;
	gap: 10px;
	display: flex;
	justify-content: right;
	margin-top: 40px;
}

.nav-footer-menu ul li {
	color: var(--font-color-white);
	
	&:hover {
		color: var(--dark-green-color);
	}
}

.nav-footer-menu ul li a {
	font-size: 12px;
	padding: 0;
}

/* Submenu Items */ 

/* Dropdown Menu Container */ 

.header-menu li .sub-menu { 
	display: block;
	/* Hide sub-menu by default */  
	left: 0; 
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
	padding: 0 5px; 
	border-top-right-radius: 8px; 
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
} 

.header-menu .sub-menu li a { 
	margin-top: 0px;
	padding: 5px 20px; 
	color: var(--font-color-blue); 
	text-decoration: none; 
	transition: all 0.6s ease;
	/* line-height: normal; */
	
		&:hover { 
			background-color: transparent; 
			color: var(--dark-green-color); 
		} 
}

.header-menu .active, .header-menu .current-menu-item a:not(.header-menu .sub-menu li > a) {
  background-color: var(--font-color-blue);
	color: var(--font-color-white);
	transition: all 0.3s ease;
}

.header-menu .sub-menu li > a {
	height: auto; /* !important*/
}

.header-menu > li.active > a, 
.header-menu > li.current-menu-item > a, 
.header-menu > li.current-page-ancestor > a, 
.header-menu > li.current-menu-ancestor > a { 
	background-color: var(--font-color-blue); 
	color: var(--yellow-bg-color); 
	transition: all 0.3s ease;
	box-sizing: border-box; 
	border-top-left-radius: 10px; 
	border-top-right-radius: 10px; 
	overflow: visible;
	position: relative;
} 

.header-menu .sub-menu li a::after { 
	display: none;
}

.access-div {
    display: flex;
    align-items: center;
}

.access-div button {
	/* margin-top:10px; Maybe need this?*/
    padding: 10px 25px;
    font-size: 1.4rem;
	border-radius: 8px;
    color: var(--font-color-blue);
    cursor: pointer;
    transition: background-color 0.3s ease;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.get-started {
    background-color: var(--yellow-bg-color);
    margin-left: 10px;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.get-started:hover {
	background-color: var(--yellow-hv-color);
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.log-in {
    background-color: transparent;
    border: 1px solid var(--font-color-blue);
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.log-in:hover {
    background-color: rgba(0, 0, 0, 0.03);
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

/* Dropdown Menu */
.header-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.header-menu li {
    position: relative;
}

.header-menu li ul {
    position: absolute;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    transform: translateY(0px); /* Start slightly offscreen */
}

.header-menu li:hover ul {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Move to its normal position */
}

/* Fade-in and fade-out effect for the dropdown */

.header-menu li ul {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.header-menu li ul li {
    padding: 0 10px;
}

.header-menu li ul li a {
    text-decoration: none;
    color: var(--font-color-blue);
    display: block;
    text-align: left;
    transition: color 0.3s ease;

    /* Remove underline effect for submenu */
    &::before {
        display: none;
    }
}

/* Submenu item hover effect - text color change only */
.header-menu li ul li a:hover {
    color: var(--app-color-medium-blue); 
}

/* Submenu Image */
.submenu-image {
    position: absolute;
    top: calc(100% + 30px); /* Ajuste conforme necessário */
    left: -350px; /* Ajuste para posicionar a imagem à esquerda do menu */
    max-width: 500px;
    height: auto; /* Ajusta a altura com base no conteúdo */
    opacity: 0;
    visibility: hidden; /* Torna a imagem invisível quando não estiver visível */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; /* Transições suaves */
    transform: translateY(0px); /* Ajuste conforme necessário */
}

.header-menu li:hover .submenu-image {
    opacity: 1;
    visibility: visible; /* Torna a imagem visível quando estiver no estado hover */
    transform: translateY(0); /* Ajuste a posição final */
}


/* SVG ICONS */
#ejfz3JB1hdg1, #e1lG6MStFER1, #e4SdCLnAPsg1, #eKgslx2eG9d1, #eILVeENjmKq1, #efFN9srvlcB1, #eLpC06K4tlx1, #exeEoLBRMFd1 {
	width: 85px;
	height: 85px;
}

 /* SMOOTH SCROLLING*/
section {
	position: relative; 
}

 .row {
    align-items: center;
    text-align: center;
}

.s-one {
    background-color: var(--app-color-light-blue);
    min-height: calc(100dvh + 60px) ;
    position: relative;
	z-index:-1;
}

.hero-banner-section {
    background-color: var(--app-color-light-blue);
    position: relative;
	margin-bottom: -35px;
}

.product-overview-section {
    margin-top: -60px;
	z-index: 2;
    background-color: var(--app-color-medium-blue); 
}


.s-two {
    margin-top: -60px;
	z-index: 2;
    background-color: var(--app-color-medium-blue); 
}

.solutions-advert-section {
	background-color: var(--app-color-medium-light-blue);
}

.s-three {
    background-color: var(--font-color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top:-60px;

    h2 {
        color: var(--app-color-light-blue)
    }
    h3 {
        color: var(--app-color-light-blue)
    }
    p {
        color: var(--app-color-light-blue)
    }
}

.s-four {
    background-color: var(--app-color-medium-light-blue);
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	margin-top: -20px;
        

    h2 {
        color: var(--font-color-blue)
    }
    h3 {
        color: var(--font-color-blue)
    }
    p {
        color: var(--font-color-blue)
    }
}

.s-five {
	overflow: hidden;
	background-color: var(--font-color-blue);
    display: flex;
    justify-content: center;
	margin-top:-15px;
}

.s-bottom-banner {
    position: relative;
    h2 {
        color: var(--app-color-light-blue);
    }
    h3 {
        color: var(--font-color-blue);
    }
    p {
        color: var(--app-color-light-blue);
    }
}

.s-six {
	position: relative;
	background-color: var(--app-color-light-blue);
    display: flex;
    justify-content: center;
	margin: -45px 0 -20px;
}


/* Extensions */
/* This property is to extend the previous section and ensure that the background 
color behind the rounded border effect matches the color of the above section */

.extension-light-blue {
	background-color: var(--app-color-light-blue);
    height: 100px; 
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -2; 
}

.extension-medium-light-blue {
	background-color: var(--app-color-medium-light-blue);
    height: 100px; 
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -2; 
}

.extension-medium-blue {
	background-color: var(--app-color-medium-blue);
    height: 100px; 
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -2; 
}

.extension-dark-blue {
	background-color: var(--app-color-dark-blue);
    height: 100px; 
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -2; 
}

.scroll-control {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.scroll-control span {
    cursor: pointer;
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 10px 0;
    background-color: #000;
    opacity: 0.7;
}

.scroll-control span:hover {
    opacity: 1;
}

@media all and (max-width: 1023px) {
    .scroll-control span {
        display: none;
    }
}

 /* SECTIONS (S)*/

.border-top-radius {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
	box-shadow: 
		0px -18px 24px 0px #00345A1A, 
		0px -6px 18px 0px #00345A26, 
		0px 0px 9px 0px #00345A1A;
}

.bg-dark {
    background-color: var(--font-color-blue);
}

.bg-medium {
    background-color: var(--app-color-medium-blue);
}

.bg-medium-light {
	background-color: var(--app-color-medium-light-blue);
}

.bg-light {
    background-color: var(--app-color-light-blue);
}

.bg-white {
    background-color: #fff;
}

.bg-yellow {
    background-color: var(--yellow-bg-color);
}

.bg-off-white {
    background-color: var(--app-color-light-blue);
}

.light-text {
    color: var(--app-color-light-blue);
}

.dark-text {
    color: var(--font-color-blue);
}


 /* HERO BANNER (S-ONE) */

 .hero-banner {
    width: 100%;
    height: calc(100lvh + 30px);
    display: flex;
    position: relative;
}

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

mark {
	line-height: 0em;
	padding: 0 0.1em 0.6em 0.1em;
	display: inline-block;
	background: var(--yellow-bg-color);
	color: var(--font-color-blue);
}

.columns {
    display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
    width: 100%;
    height: 100%;
    position: relative;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-banner .columns {
	justify-content: left;
	width: 1400px;
	transform: skew(-20deg);
	margin-left: -800px;
}

.hero-banner .column-1 {
	background-color: rgba(240, 252, 252, 0.8);
	width: 100%;
	padding: 20px 10px 20px 800px;
}

.hero-banner .column-1 .container {
	width: min(100% - 120px, 1440px);
	max-width: 800px;
}

.column-1 {
    padding: 0;
    width: 40%;
    position: relative; 
}

.column-1-text {
    text-align: left;
}

.column-1-text h1 {
    display: block;
    color: var(--font-color-blue);
    letter-spacing: -0.5px;
}

.column-2 {
    width: 60%;
    position: relative; 
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100%;
}

.herobanner-subpages-two-columns {
    width: 100%;
    height: calc(80lvh + 80px);
    display: flex;
    justify-content: center;
    position: relative;
    background-color: var(--app-color-light-blue);
}

.herobanner-single-post {
    width: 100%;
    height: 70lvh; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.herobanner-single-post::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
}

.herobanner-single-post .content {
    position: relative; 
    z-index: 2;
    text-align: center;
}

.herobanner-single-post h1 {
    font-size: 45px; 
	line-height: 45px;
    margin-bottom: 10px;
}

.herobanner-single-post .author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.author-info p {
	color: var(--font-color-white);
}

.herobanner-single-post .author-avatar {
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.herobanner-single-post p {
    margin: 0;
}

/* EXPLORE FEATURES SECTION */
.explore-features-section h2 {
	color: var(--font-color-blue);
}

/* FEATURES OVERVIEW (S-TWO) */ 

.overview-container {
    display: flex;
  }

  .overview-container > * {
    width: 50%;
  }


  .centered-title {
    width: 100%;
    text-align: center;
    z-index: 2;
}
  
  .right-content {
	  margin-left: 30px;
	  
		h2 {
			display: inline-block;
			vertical-align: middle;
			font-size: 3rem;
			font-weight: 600;
			letter-spacing: -0.5px;
			color: #fff
		}
  }
  
  .left-content {
    height: 100svh;
    position: relative;
  }
  
  .left-content > * {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
  }
  
  @media screen and (max-width: 800px) {
    .left-content {
      display: none;
    }
    .right-content {
      padding-left: 15px;
    }
  }
  
  .header-section {
    text-align: center;
    padding: 1rem 6rem;
  }

/* PRODUCT SECONDARY FEATURES SECTION */
.product-overview-title {
	display: flex;
	place-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.aryval-a-img {
	position: absolute;
	right: 100px;
	min-height: 750px;
}

.product-overview-title > h2 {
	color: var(--yellow-bg-color);
	text-align: center;
	margin-bottom: 20px;
}

.product-secondary-column-holder {
	height: 33%;
	width: 100%;
	display: flex;
	justify-content: center;
}

.product-secondary-column-description {
	margin-top: 20px;
	height: 180px;
}

.product-secondary-column-description > p {
	text-align: center;
	color: #fff;
}

.product-secondary-animation {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: var(--font-color-white);
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.product-secondary-row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.product-secondary-column {
	width: 33.33%;
	height: 300px;
	padding: 10px;
}
  
/* TESTIMONIAL SECTION */

.testimonial-section {
	width: 100%;
}

.testimonial-title > h2 {
	margin-bottom: 35px;
	color: var(--font-color-blue);
	text-align: center;
}

.testimonial-row {
	height: 450px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 30px;
}

.testimonial-column { 
	border-radius: 15px; 
	width: 380px; 
	height: 420px; 
	position: relative;
}

.testimonial-aside {
	width: 60%;
	margin-left: 40px;
}

.darker-image { 
	filter: brightness(95%); 
}

.testimonial-aside {
	width: 65%;
}

.testimonial-aside > article {
	margin-top: 50px;
	margin-left: 40px;
	position: relative;
	height: 180px;
}

.testimonial-aside article p {
	font-size: 18px;
}

.testimonial-exclamation {
	position: absolute;
	height: 100px;
	width: 140px;
}

.testimonial-column > p {
	text-align: center;
	color: #fff;
	z-index: 40;
}

.testimonial-aside > div {
	display: flex;
	justify-content: space-between;
}

.testimonial-author-details {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.lcs-school-author {
	margin-left: -20px;
}

.testimonial-author-container {
	display: grid;
	align-items: center;
}

.testimonial-author p {
	font-weight: 600;
	margin: 0;

}

.testimonial-author h3 {
	font-size: 20px;
	color: var(--font-color-blue);
	font-weight: 700;
}

.testimonial-author em {
	color: var(--font-color-blue);
}

.school-logo {
	display: flex;
	align-content: center;
	margin-left: 40px;
}

.school-logo figure {
	padding-top: 10px;
	display: flex;
	align-items: center;
}

.school-logo figure img {
	height: 120px;
	width: 80px;
	object-fit: contain;
}

#lcs-logo {
	width: 145px;
}

.testimonial-button-container {
	display: grid;
	align-items: center;
	justify-content: right;
	transition: all 0.2s ease-in-out;
	button{
		text-wrap-mode: nowrap;
	}
}

#testimonial-cancel-button {
	top: 12px;
	right: 12px;
}

.display-none {
	opacity: 0;
}

.display-visible {
    opacity: 1;
}

.testimonial-video-dialog {
    background-color: var(--app-color-light-blue);
	height: 560px;
	width: 900px;
    border-radius: 8px;
    padding: 45px;
	display: none;
	z-index: 500;
	color: var(--font-color-blue);
	position: relative;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.video-container { 
	position: relative; 
	padding-bottom: 56.25%; /* 16:9 aspect ratio */ 
	padding-top: 25px; 
	height: 0; 
} 

.video-container iframe { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	border-radius: 8px;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides, .sub-slides {
  display: none;
  justify-content: space-between;
}

.swipe-left {
  animation-name: swipe-left;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}

.swipe-right {
  animation-name: swipe-right;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}

@keyframes swipe-left {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes swipe-right {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.dot-container {
	display: flex;
	justify-content: center;
	z-index: 100;
	margin-bottom: 20px;
}

.dot, .sub-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  box-shadow: 0px 3px 3px 0px #00345A40 inset;
}

.dot-is-active, .sub-dot-is-active, .sub-dot:hover, .dot:hover {
  background-color: var(--yellow-hv-color);
}
 
/* TEAM SECTION (S-THREE) */

.team-article > h2 {
	color: var(--font-color-blue);
	margin-bottom: 40px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.team-member {
    flex: 1 1 21%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    text-align: center;
    transform: translateY(20px); /* Slightly moved down */
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; /* Animation */
	cursor: pointer;
}

.team-member.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to original position */
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--app-color-light-blue);
    background-size: cover;
    background-position: center;
}

.team-name {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
}

.team-role {
    margin-top: 5px;
    font-size: 14px;
    color: #ffffff;
}

.team-description {
    margin-top: 5px;
    font-size: 14px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .team-member {
        flex: 1 1 45%; /* Two items per row */
    }
}

@media (max-width: 480px) {
    .team-member {
        flex: 1 1 100%; /* One item per row */
    }
}

/* FIELD NOTES (S-FOUR) */
.field-notes-container {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    box-sizing: border-box; 
}

.post-column {
    display: flex;
    flex-direction: column;
    flex: 1; 
    width: 100%; 
    position: relative; 
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Slightly moved down */
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; /* Animation */
}

.post-column.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to original position */
}

.post-thumbnail {
    width: 100%; 
    height: 200px; 
    background-color: var(--font-color-blue);
    position: relative;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center; 
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.post-description {
    width: 100%;
    height: 270px; 
    padding: 15px;
    background-color: var(--app-color-light-blue);
    border-radius: 0 0 15px 15px; 
    box-sizing: border-box;
    position: relative;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.post-title {
	margin-top: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 48px;
}

.post-writeup {
	height: 120px;
	margin-bottom: 15px;
}

.post-description h2 {
	position: relative;
	text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--font-color-blue);
}

.post-description p {
    font-size: 14px;
    color: var(--font-color-blue);
    text-align: left;
	margin: 0;
	padding: 8px 0;
}

.author-name {
	font-weight: 600;
}

.tab {
    display: flex;
    align-items: center;
    position: absolute;
    top: -35px; 
    left: 5px; 
    background-color: var(--app-color-light-blue);
    padding: 5px 10px 10px;
    border-radius: 10px 10px 0 0; 
}

.author-photo {
    width: 30px; 
    height: 30px; 
    border-radius: 50%; 
    margin-right: 10px;
}

.author-name {
	margin: 5px 0;
    font-size: 10px; 
    color: var(--font-color); 
}

.post-content {
    margin: 0 auto; 
    text-align: left;
}

.post-content .wp-block-image {
	display: flex;
	justify-content: center;
}

.post-content .wp-block-image img {
	min-width: 600px;
	max-height: 650px;
}

.post-content h2, .post-content li {
	color: var(--font-color-blue);
}

.post-socials {
	display: flex;
	justify-content: center;
	gap: 20px;
	padding-bottom: 60px;
}

.post-socials .fa-brands {
	color: var(--font-color-blue);
	font-size: 24px;
}

.post-socials .fa-brands:hover {
	color: var(--yellow-hv-color);
}

.post-meta p a {
	text-decoration: none;
	font-weight: 600;
	color: var(--dark-green-color);
	
	&:hover {
		color: var(--yellow-hv-color);
	}
}

/* Single Post Articles */

@media screen and (max-width: 768px) {
    .post-content {
        width: 100%;
    }
}

/* ARYVAL-SOLUTIONS */

.solutions-img, .field-notes-img {
	margin: 120px 0 0 120px;
}

.herobanner-subpages-two-columns h2, .aryval-p-column h3 {
	color: var(--font-color-blue);
}

.aryval-products-section {
	position: relative;
	padding: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #81A0B5;
	overflow: hidden;
}

.aryval-products-section > img {
	position: absolute;
	transition: all ease-in-out; 
}

.aps-left {
	top: -30px;
	left: -10px;
}

.aps-right {
	right: 0;
	bottom: -30px;
}

.aryval-products-section h2 {
	position: relative;
	text-align: center;
}

.aryval-products-section .container > div {
	position: relative;
	display: flex;
	justify-content: space-evenly;
	gap: 30px;
}

.aryval-p-column {
	background: #fff;
	max-width: 600px;
	border-radius: 12px;
	margin: 30px 0;
	padding: 40px;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.aryval-p-column img {
	height: 45px
}

.aryval-p-column article {
	min-height: 330px;
}

.aryval-p-column h3 {
	font-weight: 700;
	padding: 30px 0 20px;
}

.aryval-p-column p {
	margin: 5px 0;
	padding-left: 15px;
	position: relative;
}

.aryval-p-column p::before { 
	content: "\2022";
	position: absolute; 
	left: 0; 
	color: var(--font-color-blue);
	font-size: 16px;
	line-height: 1.2;
}

.aryval-p-column span {
	font-weight: 700;
}

/* ARYVAL PROMOTE */
.promote-img {
	margin: 120px 0 0 60px;
}

#ap-hero figure {
	margin: 0;
}

.promote-video {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 25px 0;
}

.promote-cta-btn {
	display: flex;
	justify-content: center;
	align-items: start;
}

#promote-button {
	background: var(--font-color-blue);
	color: #fff;
}

.ap-hero-logo, .ae-hero-logo {
	height: 45px;
	width: fit-content;
}

.promote-hero-article {
	position: relative;
	background: #E3FF54;
	display: flex;
	justify-content: center;
	padding: 40px 0;
}

.promote-hero-article h2 {
	color: var(--font-color-blue);
	text-align: center;
	font-weight: 700;
}

.promote-hero-article p:first-of-type {
	font-size: 24px;
}

.promote-hero-article p:last-of-type {
	font-size: 20px;
}

.promote-hero-article p {
	text-align: center;
	max-width: 1000px;
}

.product-secondary-column-description h3 {
	color: #fff;
	text-align: center;
	font-weight: 700;
}

.aryval-promote-solutions {
	background: #81A0B5;
	padding: 40px 0;
	margin-top: -20px;
	overflow: hidden;
}

.aryval-promote-solutions > img {
	position: absolute;
}

.pr-left {
	left: -200px;
	bottom: -350px;
}

.pr-right {
	right: -300px;
	top: -300px;
}

.aryval-promote-solutions h2 {
	text-align: center;
	padding: 0 30px;
}

.aryval-promote-solutions .container {
	display: flex;
	justify-content: center;
}

.promote-solutions-article div {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
	background: #fff;
	max-width: 800px;
	position: relative;
	border-radius: 12px;
	padding: 30px;
	margin: 20px 0;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.promote-solutions-article h3 {
	color: var(--font-color-blue);
	font-weight: 700;
}

.aryval-promote-campaign {
	background: #BACCCC;
	padding: 40px 0 100px;
	margin-top: -20px;
}

.aryval-promote-campaign h2 {
	text-align: center;
	color: var(--font-color-blue);
	margin-bottom: 30px
}

.apc-row {
	display: flex;
	gap: 20px;
}

.apc-row h3 {
	font-weight: 700;
	padding: 10px 0;
	text-align: center;
	color: var(--font-color-blue);
}

.apc-row p {
	text-align: center;
}

.apc-row div {
	width: 33.33%;
}

.apc-row div figure {
	height: 200px;
	display: flex;
	justify-content: center;
}

/* WHY ARYVAL */

.aryval-group {
	margin-top: 120px;
}

.modal-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(255 255 255 / 0.65);
	transition: all 0.2s ease-in-out;
}

.modal-background {
	z-index: 900;
	transition: all 0.2s ease-in-out;
}

.team-member-dialog {
  background-color: var(--font-color-white);
	height: 360px;
	width: 900px;
  border-radius: 8px;
  padding: 40px;
	display: none;
	z-index: 500;
	color: var(--font-color-blue);
	position: relative;
   box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.xmark {
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 20px;
}

.team-section {
	position: relative;
	overflow: hidden;
	background: #81A0B5;
}

.team-h-divisor {
	height: 2px;
	width: 100%;
	background: #81A0B5;
	margin: 20px 0;
}

.story-section > figure img {
	position: absolute;
	max-height: 800px;
	max-width: 800px;
}

.at-oval {
	left: 50px;
	top: -150px;
}

.at-poly {
	left: -150px;
	bottom: -200px;
}

.at-rec {
	right: -100px;
	top: 450px;
}

.team-member-about {
	display: flex;
	gap: 30px;
}

.team-member-about h3 {
	font-size: 23px;
	margin: 20px 0 5px;
}

.team-member-about img {
	width: 250px;
	max-width: none;
}

.team-member-info {
	display: flex;
	align-items: center;
}

.team-member-about h3, .team-member-about h4 {
	color: var(--font-color-blue);
	font-weight: 600;
}

.grid-center {
	display: grid;
	place-content: center;
}

.block {
  display: block;
}

.none {
  display: none !important;
}

.vision-section {
	background: var(--font-color-blue);
	text-align: left;
}

.vision-container p {
	color: var(--font-color-white);
	text-align: center;
}

.vision-container p span {
	font-weight: 700;
}

.our-vision-article h2 {
	text-align: center;
	color: var(--yellow-bg-color);
}

.story-section {
	background: var(--font-color-blue);
	text-align: left;
	position: relative;
	overflow: hidden;
}

.story-section > figure img {
	position: absolute;
	transition: all ease-in-out;
}

.os-left {
	left: -100px;
	top: -120px;
}

.os-right {
	right: -100px;
	bottom: -80px;
}

.story-row {
	margin-bottom: 60px;
	gap: 20px;
}

.story-column {
	width: calc(50% - 20px);
}

.story-column p {
	color: var(--font-color-white);
	text-align: left;
	margin: 0;
}

.our-story-article h2 {
	color: var(--yellow-bg-color);
	text-align: center;
	padding-bottom: 20px;
}

.team-container {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.team-carousel {
	display: flex;
	flex-wrap: nowrap;
	height: auto;
	white-space: nowrap;
	transition: transform 0.3s;
	padding: 10px;
	box-sizing: border-box;
	align-items: center;

}

.team-carousel-container {
	height: auto;
}

.team-member {
	position: relative;
	display: inline-block;
	width: 250px;
	height: 250px; 
	margin: 0 10px;
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	flex: 0 0 auto;
	cursor: pointer;
}

.info {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 5px;
	background: rgba(0, 52, 90, 0.7);
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.3s ease-in-out;
	border-radius: 50%;
	box-sizing: border-box;
}

.team-member:hover {
	transform: scale(1);
}

.team-member:hover .info {
	opacity: 1;
	transform: translateY(0);
}

.dialog {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
	z-index: 1000;   
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s;
}

.dialog.show {
	opacity: 1;
	visibility: visible;
}

.dialog-content {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	position: relative;
	max-width: 600px;
	width: 100%;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	cursor: pointer;
}

.dialog-info {
	padding: 20px;
}

.name {
	font-size: 20px;
	margin-bottom: 0;
	font-weight: 600;
	color: #f0f0f0;
}

.position {
	margin-top: 0;
	font-size: 14px;
	color: #f0f0f0;
}

/* ARYVAL-EVENTS */

.solutions-section {
	background: #81A0B5;
	padding-bottom: 60px;
	position: relative;
	overflow: hidden;
}

.solutions-extension {
	background: #81A0B5;
	height: 70px;
}

.solutions-section > .container {
	height: 100lvh;
	overflow-y: scroll; 
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.solutions-section > .container::-webkit-scrollbar { 
	display: none;
}

.solutions-section > .container > div {
	height: 100lvh;
	display: flex;
	justify-content: center;
	align-items: center;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	transition: all 0.4s ease-in-out;
}

.solutions-section > figure img {
	position: absolute;
	transition: transform 0.1s linear;
}

.solutions-section > article {
	padding: 50px 0;
	position: relative;
}

.solutions-section > article h3 {
	text-align: center;
	color: var(--font-color-blue);
}

.solutions-section > figure {
	position: relative;
}

.sn-shapes {
	top: -500px;
	left: -500px;
	min-height: 3000px;
	min-width: 3000px;
}

.solutions-summary {
	height: 100dvh;
	padding-top: 50px;
	position: relative;
}

.solutions-summary > div > div {
	display: flex;
	justify-content: center;
}

.solutions-summary article {
	max-width: 1000px;
	text-align: center;
}

.solutions-summary article figure {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.solutions-summary article h2,
.solutions-summary article p {
	color: var(--font-color-blue);
}

.summary-box {
	background: var(--font-color-white);
	padding: 30px 180px 20px 35px;
	border-radius: 12px;
	height: fit-content;
	color: var(--font-color-blue);
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.summary-box:first-of-type {
	margin-right: 30px;
}

.summary-box h3,
.summary-box h4 {
	font-weight: 700;
}

.summary-box h3 {
	font-size: 22px;
}

.summary-box ul {
	padding: 10px 0;
	margin-bottom: 0;
}

.summary-box li {
	text-transform: capitalize;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 10px;
}

.summary-box li a {
	text-decoration: none;
	color: var(--font-color-blue);
	
	&:hover {
		color: #BACCCC;
	}
}

.summary-box li h4 {
	margin: 1px 0 0;
}

.summary-box li > div {
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background: var(--dark-green-color);
	border: 1px solid #00345A40;
	box-shadow: 0px 3px 3px 0px #00345A40 inset;
}

.solutions-features {
	position: relative;
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.v-divisor {
	height: 80%;
	margin: 140px 0 80px;
	width: 2px;
	background: #BACCCC;
}

.solutions-scroller {
	height: 100dvh;
	overflow-y: scroll; 
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.solutions-scroller .h-divisor {
	height: 2px;
	background: #BACCCC;
	width: 100%;
	margin: 10px 0;
}

.solutions-scroller::-webkit-scrollbar { 
	display: none;
}

.solutions-scroller > section {
	height: 100dvh;
	display: flex;
	align-items: center;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	transition: all 0.4s ease-in-out;
}

.solutions-features-nav {
	display: flex;
	align-items: center;
}

.solutions-features-nav > div {
	width: 200px;
}

.solutions-features-nav ul {
	padding: 0;
	margin-bottom: 100px;
}

.solutions-features-nav ul li {
	padding-bottom: 15px;
	list-style: none;
	cursor: pointer;
}

.solutions-features-nav ul li a {
	text-decoration: none;
	display: flex;
	gap: 10px;
}

.solutions-features-nav ul li h4 {
	font-weight: 700;
	color: #BACCCC;
	text-transform: uppercase;
}

#solutions-features {
	position: relative;
}

#top-btn {
	opacity: 0;
	position: fixed;
	bottom: 30px;
	right: 30px;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	background: #BACCCC99;
	height: 42px;
	border-radius: 8px;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
	z-index: 5;
}

#top-btn p {
	font-weight: 700;
}

#top-btn img {
	margin-right: 8px;
}

#top-btn.display-top-btn {
	opacity: 1;
}
	
.solutions-features-nav ul li a > div {
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background: #BACCCC;
	box-shadow: 0px 4px 4px 0px #00000040 inset;
}

.solutions-features-nav ul li a.solutions-features-nav-link.feature-is-active h4 {
    color: #F0FCFC;
}

.solutions-features-nav ul li a.solutions-features-nav-link.feature-is-active > div {
    background-color: var(--dark-green-color);
	box-shadow: 0px 4px 4px 0px #00000040 inset;
}

.solutions-scroller section figure {
	margin-right: 20px;
}

.solutions-scroller section > figure img {
	width: 600px;
}

.solutions-png {
	display: none;
}

.solutions-scroller section article figure:last-of-type {
	cursor: pointer;
	margin: 0;
}

.solutions-scroller section article {
	width: 60%;
}

.solutions-scroller section article > div {
	display: flex;	
	align-items: center;
}

.read-more-feature {
	gap: 15px;
	opacity: 0; 
	max-height: 0; 
	overflow: hidden; 
	transition: all 0.5s ease-in-out;
}

.read-more-feature.show { 
	opacity: 1; 
	max-height: 1000px;
}

.read-more-text {
	transition: all 0.5s ease-in-out;
}

.read-more-feature > div p {
	margin: 0 0 10px;
}

.read-more-feature > div span {
	font-weight: 700;
}

.solutions-scroller section article > div:first-of-type {
	justify-content: space-between;
}

.solutions-scroller section article > div:last-of-type {
	gap: 10px;
}

.solutions-scroller section article > div:last-of-type p {
	margin: 0;
}

.read-more-text {
	cursor: pointer;
}

.solutions-scroller section article h2 {
	width: 60%;
	font-size: 25px;
}

.solutions-scroller section article h2 span {
	text-decoration: underline;
}

.solutions-scroller section article > div .feature-type {
	width: 140px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #A8C900;
	border-radius: 24px;
	box-shadow: 0px 4px 4px 0px #00000040 inset;
}

#benefit {
	background: #BACCCC;
}

.solutions-scroller section article > div .feature-type p {
	font-weight: 600;
}

/* SUBSCRIPTIONS */

.sub-plan-section {
	position: relative;
	background: #CBD3DC;
	padding-bottom: 60px;
	overflow: hidden;
}

.sp-left, .sp-right {
	position: absolute;
}

.sp-left {
	top: 140px;
	left: 0;
}

.sp-right {
	top: 330px;
	right: 0;
}

.sub-plan-section h2, .sub-plan-section h3 {
	color: var(--font-color-blue);
	text-align: center;
}

.sub-plan-section h2 {
	padding: 120px 0 20px;
}

.sp-section-heading {
	display: flex;
}

.sp-section-heading figure {
	margin: 110px 50px -30px 30px;
}

.sp-section-heading article {
	padding-top: 45px;
	max-width: 600px;
}

.sp-section-heading article h3 {
	font-size: 28px;
	font-weight: 400;
}

.sp-section-heading article h2, .sp-section-heading article h3 {
	text-align: left;
}

.features-table {
	position: relative;
	background: #fff;
	border-radius: 12px;
	margin: 0 0 80px;
	transition: all 0.4s ease-in-out;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.features-table h3, .recommendations-questions h3 {
	font-weight: 700;
	padding: 30px 0 20px;
}

.features-table a {
	margin-bottom: 40px;
}

.features-t-row {
	display: flex;
	padding: 0 20px;
}

.features-t-column {
	margin-left: 20px;
	width: 33.33%;
}

.features-t-column:last-of-type {
	margin-right: 20px;
}

.features-t-column p {
	width: calc(100% - 68px);
	margin: 0 44px;
	font-size: 14px;
	display: none;
}

.features-display-none, .c-up {
	display: none;
}

.f-column-line {
	height: 2px;
	background: var(--app-color-medium-light-blue);
	margin: 10px 0 20px;
}

.f-column-feature {
	display: flex;
	align-items: center;
}

.f-column-feature figure {
	width: 24px;
}

.f-column-feature figure:last-of-type img {
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.f-column-feature h4 {
	color: var(--font-color-blue);
	font-weight: 600;
	width: calc(100% - 48px);
	padding-left: 20px;
	cursor: pointer;
}

.c-down, .c-up {
    transition: all 0.45s ease-in-out;
}

.c-down.spin, .c-up.spin {
    transform: rotate(180deg);
}

.f-column-feature + p {
    display: none;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.recommendations-questions {
	background-color: rgba(129, 160, 181, 0.2);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 
		inset 0px 18px 24px 0px #00345A0D, 
		inset 0px 6px 18px 0px #00345A12, 
		inset 0px 0px 9px 0px #00345A0D;
}

.sub-slideshow {
	display: none;
}

.rq-row {
	display: flex;
	padding: 0 30px;
	gap: 20px;
	justify-content: space-between;
}

.rq-column {
	width: 33.33%;
}

.rq-column p {
	margin: 0;
}

.rq-column label {
	color: var(--font-color-blue);
	display: block;
	font-weight: 400;
	font-size: 14px;
}

.rq-column input[type="radio"], 
.rq-column input[type="checkbox"] {
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	 border: 1px solid #ccc;
	background: #fff;
	color: #fff;
	height: 20px;
	width: 20px;
	vertical-align: middle;
	margin: 0 8px 2px 0;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	display: inline-flex; 
	align-items: center; 
	justify-content: center;
}

.rq-column input[type="checkbox"] {
	border-radius: 5px;
}

.rq-column input[type="radio"] {
	border-radius: 50%;
}

.rq-column input[type="checkbox"]:checked {
  background-color: var(--font-color-blue);
  border: 1px solid var(--font-color-white);
}

.rq-column input[type="radio"]:checked {
  background-color: var(--font-color-blue);
  border: 1px solid var(--font-color-white);
  
}

.rq-column input[type="checkbox"]:checked::before {
  content: '✔';
  color: #fff;
}

.rq-column input[type="radio"]:checked::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

.rp-row {
	display: flex;
	gap: 25px;
	justify-content: space-between;
}

.rp-column {
	position: relative;
	width: 33.33%;
	border-radius: 12px;
	background: #fff;
	transition: all 0.4s ease-in-out;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.rp-column.highlight {
    transform: translateY(-10px);
    border: 2px solid var(--font-color-blue);
}

.rp-column.highlight .rp-column-head {
    background-color: var(--font-color-blue);
	border: 2px solid var(--font-color-blue);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}


.sub-plan-section .rp-column h2 {
	padding-top: 0;
	font-size: 27px;
	color: var(--font-color-white);
}

.rp-title {
	font-weight: 700;
	padding: 30px 0;
}

.rp-column-head figure {
	padding-top: 20px;
	height: 65px;
	display: flex;
	justify-content: center;
}

@keyframes grow {
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 48px;
        height: 48px;
    }
}

.rp-column-head {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	background: #8394AA;
	border: 1px solid #8394AA;
}

.rp-column-body {
	padding: 20px;
	height: 320px;
}

.rp-column-body p {
	text-align: center;
}

.rp-column-body a {
	text-decoration-color: var(--font-color-blue);
}

.rp-col-body-row {
	display: flex;
}

.rp-col-body-col {
	width: 50%;
}

.rp-col-body-col h3 {
	font-size: 24px;
}

.rp-col-body-col p:first-of-type {
	margin-bottom: 0;
}

.rp-col-body-col p:last-of-type {
	margin-top: 0;
}

.rp-v-divisor, .rp-h-divisor {
	background: #BACCCC
}

.rp-v-divisor {
	width: 2px;
	height: 90px;
}

.rp-h-divisor {
	height: 2px;
	width: 100%;
}

.rp-flex-feature {
	display: flex;
}

.rp-flex-feature figure {
	display: flex;
	align-items: center;
	margin: 0 20px 0 15px;
}

.sub-plan-section .container > p {
	text-align: center;
}

.aryval-promote-section {
	position: relative;
	background: var(--font-color-blue);
	display: flex;
    justify-content: center;
	margin-top: -20px;
	overflow: hidden;
}

.sub-plan-section > figure {
	position: relative;
	margin-bottom: 0;
}

.ap-left, .ap-right {
	position: absolute;
    transition: all ease-in-out;
}

.ap-left {
	top: -60px;
	left: -100px;
}

.ap-right {
	right: -100px;
	bottom: -60px;
}

.aryval-promote-section .container {
	max-width: 900px;
}

.aryval-promote-section figure {
	display: flex;
	justify-content: center;
}

.aryval-promote-section .call-container {
	margin: 30px 0;
	display: flex;
	justify-content: center;
}

.aryval-promote-section h2 {
	max-width: 700px;
	color: var(--yellow-bg-color);
	text-align: center;
}

.aryval-promote-section p {
	color: var(--font-color-white);
	text-align: center;
}

.button-center {
	display: flex;
	justify-content: center;
}

/* CONTACT US PAGE */

.contact-us-section {
	padding: 120px 0 40px;
	background: #CBD3DC;
	position: relative;
	overflow: hidden;
}

.contact-us-section .container {
	position: relative;
}

.cu-oval, .cu-t, .cu-rec {
	position: absolute;
}

.cu-oval {
	top: 0;
	left: 0;
}

.cu-t {
	top: 700px;
	left: 0;
}

.cu-rec {
	top: 300px;
	right: 0;
}

.contact-link {
	color: var(--font-color-blue);
}

.contact-us-section h2,
.contact-us-section h3,
.contact-us-section .container > p {
	text-align: center;
	color: var(--font-color-blue);
}

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

.contact-us-section h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}

.contact-us-section p {
	margin: 0 0 5px;
}

.question-block {
	margin-top: 20px;
	padding: 10px 14px;
	background: var(--font-color-white);
	/*background: rgba(129, 160, 181, 0.2);*/
	border: 1px solid var(--font-color-blue);
	border-radius: 8px;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.question-block > div:first-of-type {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.question-block p {
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	padding-left: 15px;
	margin-bottom: 0;
}

.question-block figure {
	position: absolute;
	right: 15px;
	margin-bottom: 0;
}

.question-block figure img {
	cursor: pointer;
}

.question-block .ab-divisor {
	height: 2px;
	background: #01345A33;
	margin: 6px 8px;
}

.answer-block,
.question-block .ab-divisor {
	display: none;
	transition: all 0.5s ease-in-out;
}

.answer-block.answer-show {
	display: block;
	opacity: 1;
}

.answer-block p {
	font-size: 15px;
	font-weight: 400;
}

.answer-block span {
	font-weight: 600;
}

.contact-info {
	margin: 50px 0;
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.contact-box {
	background: var(--font-color-white);
	border-radius: 8px;
	width: 33.33%;
	height: 345px;
	padding: 40px 75px;
	text-align: center;
	position: relative;
	box-shadow: 
        0px 18px 24px 0px #00345A08, 
        0px 6px 18px 0px #00345A0D, 
        0px 0px 9px 0px #00345A08; 
}

.contact-line {
	height: 2px;
	width: 100%;
	background: #BACCCC;
	margin: 8px 0;
}

.contact-btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.contact-btn h4 {
	color: var(--font-color-blue);
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 0;
}

.contact-btn figure {
	margin-bottom: 0;
}

.contact-box > figure {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

#frustrations-p {
	display: block;
	text-align: center;
	margin: 0;
}

.contact-box h3 {
	margin-bottom: 8px;
}

.contact-box p {
	text-align: left;
	display: none;
	transition: all 0.4s ease-in-out;
}

.contact-box p.contact-visible {
	display: block;
}

.contact-box p:first-of-type {
	margin-top: 8px;
}

.contact-box p span {
	font-weight: 700;
}

.contact-box p a {
	color: var(--font-color-blue);
}

/* Recent posts page */
.category-filter-dropdown {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

#category-filters .category-filter {
	border-radius: 24px;
	background: #F0FCFC;
	margin: 4px 4px 4px 0;
	box-shadow: 0px 4px 4px 0px #00000040 inset;
}

#category-filters .category-filter.active, #category-filters .category-filter:hover {
	background: var(--yellow-bg-color);
}

.field-notes-imgx {
	margin: 120px 0 0 120px;
}

.recent-posts-content-section {
    padding: 20px;
	margin-bottom : -10px;
	position: relative;
	box-shadow: 
		0px -18px 24px 0px #00345A1A, 
		0px -6px 18px 0px #00345A26, 
		0px 0px 9px 0px #00345A1A;
}

.recent-posts-row {
    display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; 
}

.recent-posts-list {
    display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; 
}

.recent-posts-item {
	position: relative;
    width: calc(50% - 20px); 
    box-sizing: border-box; 
    margin-bottom: 20px; 
    background: #fff; 
    border-radius: 15px; 
    overflow: hidden; 
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.recent-posts-thumbnail {
    width: 100%; 
    height: 200px; 
    overflow: hidden; 
    border-top-left-radius: 15px; 
    border-top-right-radius: 15px; 
}

.recent-posts-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.recent-posts-content {
	position: relative;
    padding: 30px;
}

.recent-posts-content h3 {
	color: var(--font-color-blue);
	text-align: center;
	font-weight: 700;
	margin-bottom: 20px;
}

.recent-posts-content > p {
	height: 160px;
}

.recent-posts-author-info {
	height: 56px;
	top: -40px;
	left: 5px;
	border-radius: 10px 10px 0 0;
	padding: 5px 10px 10px;
	background: #fff;
	position: absolute;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.recent-posts-author-info img {
	height: 30px;
	width: 30px;
	margin-right: 8px;
}

.page-link {
	background-color: transparent;
	border: none;
}

.active>.page-link, .page-link.active {
	color: var(--dark-green-color);
	background-color: transparent;
	border: none;
}

.recent-posts-author-photo {
    border-radius: 50%;
    width: 40px; 
    height: 40px; 
    margin-right: 10px;
}

.recent-posts-author-name {
	font-weight: 600;
}

.recent-posts-thumbnail + .recent-posts-content {
    margin-top: 0;
}

/* Field Notes Pagination */
.pagination {
    text-align: center; 
    margin: 20px 0; 
	display: flex;
	justify-content: center;
	--bs-pagination-focus-box-shadow: transparent;
}

.pagination-container {
	display: flex;
	justify-content: center;
}

.pagination a, .pagination span {
    display: inline-block;
    margin: 0 5px; 
    padding: 5px 10px; 
    font-size: 14px; 
	font-weight: 600;
    color: #003366; 
    text-decoration: none; 
}

.pagination .current {
    font-weight: 700; 
    color: var(--dark-green-color);
}

.pagination a:hover {
	background-color: transparent;
    color: var(--yellow-bg-color);
}


/* Generic Section - Animation*/

.animated-content {
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Slightly moved down */
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; /* Animation */
}

.animated-content.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to original position */
}

/* NOT FOUND PAGE */
.not-found-main {
	overflow: hidden;
}

.not-found-section {
  height: calc(100lvh - 120px);
}

.not-found-container {
	position: relative;
	display: grid;
	place-items: center;
	height: calc(100lvh - 120px);
}

.not-found-container > div {
	width: 100%;
	text-align: center;
}

.not-found-main img {
	position: absolute;
}

.not-found-yellow-block {
	display: inline;
	background: var(--yellow-bg-color);
}

.not-found-content {
	position: absolute;
}

.not-found-container h1 {
	font-size: 100px;
	color: var(--font-color-blue);
}

/* FOOTER */

footer {
	position: relative;
}

.footer-a-animation-container svg {
	z-index: 1;
	position: absolute;
	left: -400px;
	bottom: 120px;
	pointer-events: none;
}

.footer-a-animation {
	position: absolute;
	left: 140px;
	bottom: -60px;
}

.s-footer {
	position: relative;
    background-color: var(--app-color-dark-blue);
	height: 120px;
	align-content: center;
}

.footer {
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    max-height: 120px;
}

.footer-top, .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-top a {
	display: inline-block;
}

.footer-logo img {
    height: 30px;
	position: relative;
}

.footer-socials {
    display: flex;
    gap: 15px; /* Space between social icons */
}

.footer-socials .social-icon img {
    height: 24px; /* Adjust the size of the social icons */
}

.footer-socials i {
	color: var(--font-color-white);
	transition: all 0.2s ease-in-out;
}

.footer-socials i:hover {
	color: var(--yellow-bg-color);
	font-size: 26px;
}

.footer-bottom {
    font-size: 14px;
}

.footer-copyright {
    flex: 1;
    color: #fff;
}

.footer-menu {
    display: flex;
    gap: 15px;
	margin-top: 8px;
	list-style: none;
}

.footer-menu a {
    text-decoration: none;
    color: var(--app-color-light-blue)
}

.footer-menu a:hover {
    color: var(--yellow-bg-color);
}

/* COLOR PICKER */

.color-picker{
    width: 40%;
    height: 190px;
    position: relative;
}


.color-section {
    padding: 10px 0;
    display: flex;
    label{
        width: 150px;
        height: 50px;
        line-height: 50px;
    }

    .color-pick-input{
        width: 60px;
        height: 50px;
        
    }

    .color-code{
        border: 1px solid var(--font-color-blue);
        height: 50px;
        width: 140px;
        margin-left: 20px;
        font-size: 1.7rem;
        padding: 0px 20px;
        text-align: center;
        background: linear-gradient(0deg, rgba(0, 52, 90, 0.05) 0%, rgba(0, 52, 90, 0.05) 100%), #FFF;
    }
}

.step-2{
    padding: 15px 25px;
    font-size: 1.6rem;
    border-radius: 10px;
    background-color: var(--font-color-blue);
    color: #fff;
    position: absolute;
    left: 58%;
}

/*---------BOOK DEMO-----------*/

.illustration-dialog {
  background-color: var(--font-color-white);
  border-radius: 8px;
  padding: 40px;
  display: none;
  z-index: 500;
  color: var(--font-color-blue);
  position: relative;
  box-shadow: 
        0px 18px 24px 0px #00345A08, 
        0px 6px 18px 0px #00345A0D, 
        0px 0px 9px 0px #00345A08; 
}

.illustration-dialog h3 {
	font-weight: 600;
}

.illustration-dialog p {
	margin: 0;
}

.illustration-dialog p:last-of-type {
	margin-bottom: 10px;
}

.book-demo-section {
	overflow: hidden;
	background: #CBD3DC;
	padding-top: 120px;
	position: relative;
}

.book-demo-section .container {
	overflow: hidden;
	position: relative;
}

.book-demo-section figure img {
	position: absolute;
}

.bd-t {
	top: 0;
	left: 0;
}

.bd-oval {
	top: 400px;
	right: 0;
}

.bd-rec {
	left: 0;
	top: 800px;
}

#bd-lady {
	position: static;
}

.book-demo-section h2, 
.book-demo-section h3,
.book-demo-section p {
	color: var(--font-color-blue);
}

.book-demo-section h3 {
	font-weight: 600;
	margin-top: 30px;
}

.book-demo-form {
	display: flex;
	justify-content: center;
	position: relative;
}

.book-demo-form .form {
	width: 600px;
}

#bd-form-p-last {
	text-align: left;
	margin-bottom: 15px;
}

::placeholder {
	color: #81A0B5;
}

.icon-placeholder { 
	position: relative; 
} 

.icon-placeholder .fa-asterisk { 
	position: absolute; 
	font-size: 8px;
	top: 35%; 
	transform: translateY(-50%); 
	color: #f90606; 
	pointer-events: none;
}

#a-first-name {
	left: 98px;
}

#a-last-name {
	left: 97px;
}

#a-email {
	left: 58px;
}

#a-phone-number {
	left: 131px;
}

#a-school-name {
	left: 117px;
}

.book-demo-form .form #next-admission-event {
	height: 50px;
	width: 100%;
	color: var(--font-color-blue);
	text-align: left;
}

/* General styling for the datepicker widget */
.ui-datepicker {
    background: var(--font-color-white);
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* Header styling */
.ui-datepicker-header {
    background: var(--font-color-blue);
    color: #fff;
    padding: 10px;
    border-bottom: 1px solid #00897b;
}

/* Navigation buttons */
.ui-datepicker-prev, .ui-datepicker-next {
    color: #fff;
    cursor: pointer;
}

/* Days of the week */
.ui-datepicker th {
    color: var(--font-color-blue);
    font-weight: 700;
}

/* Selected date styling */
.ui-datepicker .ui-state-active {
    background: var(--dark-green-color);
    color: #fff;
    border-radius: 4px;
}

/* Hover and focus effects for dates */
.ui-datepicker .ui-state-hover,
.ui-datepicker .ui-state-focus {
    background: var(--yellow-hv-color);
    color: #fff;
    border-radius: 4px;
}

.ui-state-highlight, 
.ui-widget-content .ui-state-highlight {
	background: var(--yellow-bg-color);
}

.ui-widget-header .ui-icon {
	background-image: url('https://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_444444_256x240.png');
}

.ui-icon-circle-triangle-e {
	 background-position: -32px -16px;
}

.ui-icon-circle-triangle-w {
	background-position: -96px -16px;
}

.ui-icon-circle-triangle-e {
	color: var(--font-color-white);
}

.ui-datepicker td span, .ui-datepicker td a {
	text-align: center;
}

.w-100, .w-100 > div {
	width: 100%;
}

.book-demo-form .form textarea {
	padding: 10px 20px;
	display: block;
	background: var(--font-color-white);
	color: var(--font-color-blue);
	width: 100%;
	resize: none;
}

.book-demo-form .form p {
	margin: 0;
}

.book-demo-form .button-center {
	position: relative;
}

.book-demo-form .button-center p {
	height: 42px;
}

.book-demo-form input[type="text"],
.book-demo-form .form #phone-number,
.book-demo-form input[type="date"],
input[type="email"],
input[type="tel"], 
.book-demo-form .form textarea,
.book-demo-form select,
.book-demo-form .dropdown-select {
    padding: 10px 14px;
    background: #F0FCFCBF;
    color: var(--font-color-blue);
    margin-bottom: 30px;
	border: 2px solid #BACCCC;
    border-bottom: 2px solid var(--font-color-blue);
    box-shadow: 
        0 4px 8px #00345A1A,      
        inset 0 2px 5px #F0FCFCBF; 
}


.book-demo-form input[type="text"],
.book-demo-form .form #phone-number,
input[type="email"],
input[type="tel"],
.book-demo-form select,
.book-demo-form .dropdown-select {
	width: 290px;
	height: 50px;
}

.book-demo-form .dropdown-select{
	margin-bottom: 0;
	cursor: pointer;
	text-align: left;
	overflow: auto;
	position: relative;
	display: flex;
}

.book-demo-form select:first-child, .book-demo-form .dropdown-select p{
	color: #81A0B5;
}

.book-demo-form .dropdown-select p {
	pointer-events: none;
}


.form-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.book-demo-form label {
	color: var(--font-color-blue);
	font-weight: 400;
	font-size: 15px;
}

.book-demo-form .form-row label span {
	color: #f00;
}

#radio-row span {
	color: var(--font-color-blue);
}

.book-demo-form input[type="radio"], 
.book-demo-form input[type="checkbox"] {
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	 border: 1px solid #ccc;
	background: #fff;
	color: #fff;
	height: 20px;
	width: 20px;
	vertical-align: middle;
	margin: 0 8px 2px 0;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	display: inline-flex; 
	align-items: center; 
	justify-content: center;
}

.wpcf7 input[type="date"]:before {
	content: attr(placeholder);
	color: #81A0B5;
	float: left;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
	text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form .wpcf7-response-output {
	position: absolute;
	margin-top: 0;
	color: var(--font-color-blue);
}

.book-demo-form input[type="checkbox"] {
	border-radius: 5px;
}

.book-demo-form input[type="radio"] {
	border-radius: 50%;
}

.book-demo-form input[type="checkbox"]:checked {
  background-color: var(--font-color-blue);
  border: 1px solid var(--font-color-white);
}

.book-demo-form input[type="radio"]:checked {
  background-color: var(--font-color-blue);
  border: 1px solid var(--font-color-white);
  
}

.book-demo-form input[type="checkbox"]:checked::before {
  content: '✔';
  color: #fff;
}

.book-demo-form input[type="radio"]:checked::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

.book-demo-h-divisor {
	height: 2px;
	width: 100%;
	background: #81A0B5;
	margin: 50px 0;
}

.interactive-container {
	display: flex;
}

.interactive-input {
	max-width: 450px;
}

.interactive-email-template {
	min-width: 450px;
	position: relative;
	border-radius: 14px;
	box-shadow: 
        0px 18px 24px 0px #00345A08, 
        0px 6px 18px 0px #00345A0D, 
        0px 0px 9px 0px #00345A08; 
}

.interactive-school-description {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 30px 50px;
	margin-bottom: -15px;
	background: #F5F5F5;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.isd-brand-color {
	height: 55px;
	width: 55px;
	border-radius: 50%;
	background: #5A1600;
}

.isd-text {
	color: var(--font-color-blue);
}

.isd-text h4 {
	font-weight: 700;
}

.isd-text p {
	margin: 0;
}

.ie-banner .ie-logo img {
	max-height: 100px;
	max-width: 150px;
}

.ie-body .ie-logo {
	margin: 10px 0 20px;
}

.ie-body .ie-logo img {
	max-height: 60px;
	max-width: 85px;
}

.interactive-email-body > div:first-of-type {
	background: #5A1600;
	height: 120px;
}

.interactive-email-body > div:nth-of-type(2) {
	width: 80%;
	position: absolute;
	left: 10%;
	top: 15%;
}

.ie-banner {
	padding: 0 28px;
	background: #B5A081;
	height: 160px;
	display: flex;
	align-items: center;
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
}

.ie-body {
	background: #fff;
	padding: 20px 30px;
}

.ie-strip {
	background: #B5A081;
	height: 9px;
	border-bottom-left-radius: 14px;
	border-bottom-right-radius: 14px;
}

.interactive-email-body > div:last-of-type {
	background: rgba(181, 160, 129, 0.1);
	min-height: 700px;
	border-bottom-left-radius: 14px;
	border-bottom-right-radius: 14px;
}

.interactive-email-body > div:last-of-type article {
	position: absolute;
	padding: 0 22px 10px;
	bottom: 20px;
}

.interactive-email-body > div:last-of-type article p:first-of-type {
	color: #B5A081;
}

.interactive-email-body > div:last-of-type article p:last-of-type {
	color: rgba(90, 22, 0, 0.7);
}

.interactive-email-body > div:last-of-type article span {
	text-decoration: underline;
}

.interactive-email-body > div:last-of-type p {
	text-align: center;
	font-size: 10px;
	font-family: 'Inter', sans-serif;
}

.ie-body p {
	font-size: 11px;
	color: #000;
	font-family: 'Inter', sans-serif;
}

.ie-socials {
	height: 20px;
}

.irf-strip {
	height: 10px;
	background: #B5A081;
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
}

.irf-body .ie-logo {
	display: flex; 
	justify-content: center;
	margin-bottom: 17px;
}

.irf-body h3 {
	margin-top: 9px;
	color: rgba(0, 0, 0, 0.9);
	font-size: 16px;
	font-family: 'Inter', sans-serif;
}

.irf-box {
	background: #fff;
	border-radius: 4px;
	border: 1px solid rgba(0, 0, 0, 0.4);
	height: 46px;
	margin: 8px 0;
}

.irf-box-btn {
	height: 49px;
	border-radius: 8px;
	display: flex; 
	justify-content: center;
	align-items: center;
}

.irf-b-btn-1 {
	margin: 10px 0;
	background: #ccc;
}

.irf-b-btn-1 p, .irf-box-btn:last-of-type p {
	color: #000;
}

.irf-b-btn-2 {
	margin-bottom: 10px;
	background: #5A1600;
}

.irf-b-btn-2 p {
	color: #fff;
}

.irf-box-btn:last-of-type {
	background: transparent;
	border: 1px solid rgba(90, 22, 0, 0.4);
}

.irf-box-btn p {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
}

.irf-body > div:nth-of-type(2) {
	background: rgba(181, 160, 129, 0.2);
	border: 1px solid rgba(90, 22, 0, 0.4);
	border-radius: 8px;
	padding: 12px;
	margin: 8px 0;
}

.irf-body > div:nth-of-type(2) div:first-of-type {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.irf-divisor {
	margin: 10px 0;
	height: 1px;
	background: rgba(90, 22, 0, 0.2);
}

.irf-body > h3 span, .irf-body > div:nth-of-type(2) h3 span {
	color: #f00;
}

.irf-body .ie-logo img {
	max-height: 85px;
	max-width: 110px;
}

.irf-body {
	padding: 30px 25px;
	background: rgba(181, 160, 129, 0.1);
	border-bottom-left-radius: 14px;
	border-bottom-right-radius: 14px;
}

.irf-body h2 {
	text-align: center;
	font-weight: 700;
	padding-bottom: 20px;
	color: #5A1600;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 28px;
}

#f-500 {
	font-weight: 500;
}

#f-400 {
	font-weight: 400;
}

.irf-body article {
	display: flex;
	margin: 15px 0;
}

.irf-body article div {
	height: 20px;
	width: 20px;
	border-radius: 4px;
	border: 1px solid rgba(90, 22, 0, 0.4);
	margin-right: 3px;
}

.irf-body article h3 {
	width: calc(100% - 26px);
	margin: 0;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
}

.irf-body article h3 span {
	text-decoration: underline;
}

#isd-text-2 {
	text-decoration: none;
}

.interactive-output {
	display: flex;
	justify-content: center;
	width: 55%;
	transition: all 0.4s ease-in-out;
}

.bd-panel-btn-container {
	width: 55%;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
}

.bdt-button {
	height: 48px;
	border-radius: 30px;
	position: relative;
	background: #BACCCC;
	cursor: pointer;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.button-circle {
	height: 40px;
	border-radius: 30px;
	background: var(--font-color-blue);
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.bdt-button span {
	font-size: 12px;
	font-weight: 600;
	position: absolute;
	color: var(--font-color-blue);
}

.bdt-btn-one {
	width: 260px;
}

.bdt-btn-one .button-circle {
	width: 120px;
	left: 25%;
}

.bdt-btn-one .button-circle.active {
	left: 75%;
}

.bdt-btn-one .bdt-b-left {
	left: 10%;
	top: 30%;
}

.bdt-btn-one .bdt-b-right {
	left: 55%;
	top: 30%;
}

.bd-interactive-panel {
	background: #fff;
	border-radius: 12px;
	padding: 40px 25px;
	margin: 40px 0;
	position: relative;
	box-shadow: 
        0px 18px 24px 0px #00345A08, 
        0px 6px 18px 0px #00345A0D, 
        0px 0px 9px 0px #00345A08; 
}

.interactive-email-template.is-active {
	display: none;
}

.interactive-registration-form {
	max-width: 400px;
	display: none;
	border-radius: 14px;
	box-shadow: 
        0px 18px 24px 0px #00345A08, 
        0px 6px 18px 0px #00345A0D, 
        0px 0px 9px 0px #00345A08; 
}

.interactive-registration-form.is-active {
	display: block;
}

.demo-exp-button {
	margin-bottom: 15px;
	position: absolute;
	right: 40px;
	top: 40px;
}

.interactive-input h3:first-of-type {
	margin: 0 0 15px;
}

.interactive-input p {
	font-size: 14px;
}

.logo-input {
	padding: 30px 20px;
	width: 450px;
	height: 100px;
	display: flex;
	align-items: center;
	border: 1px solid var(--font-color-blue);
	border-radius: 8px;
}

.logo-input.dragover { 
	border-color: var(--font-color-blue); 
}

.logo-input input[type="file"] {
	display: none;
}

.logo-input p {
	margin: 0 10px;
}

.color-input {
	display: flex;
}

.color-display {
	height: 46px;
	width: 70px;
	cursor: pointer;
	border: 1px solid var(--font-color-blue);
	border-right: none;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.display-p {
	background: #5A1600;
}

.display-s {
	background: #B5A081;
}

.color-input-text, .school-details-text {
	height: 46px;
	background: #fff;
	padding: 10px 14px;
	color: var(--font-color-blue);
	border: 1px solid var(--font-color-blue);
}

.bdt-btn-two {
	width: 200px;
}

.bdt-btn-two .button-circle {
	width: 100px;
	left: 27%;
}

.bdt-btn-two .button-circle.btn-2-active {
	left: 72%;
}

.bdt-btn-two .bdt-b-left {
	left: 10%;
	top: 30%;
}

.bdt-btn-two .bdt-b-right {
	left: 65%;
	top: 30%;
}

.school-details-text {
	border-radius: 8px;
	width: 450px;
}

.color-input-text {
	width: 370px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.book-demo-section figure {
	display: flex;
	justify-content: center;
}

#clear-btn, #logo-input-btn {
	min-width: 135px;
	background: #BACCCC;
}

#clear-btn {
	margin-bottom: 20px;
}

.row {
    align-items: center;
    height: 100%;
    align-content: center;
}

.content-section {
    padding: 40px 0 55px;
    height: 100%;
	margin-bottom: -15px;
	
	.general-template article {
	max-width: 1000px;
	place-self: center;
	}
}

/*----------FORM SECTION---------------*/
.wpcf7-list-item {
	margin: 0;
}

.wpcf7-spinner {
	position: absolute;
	top: 25%;
	background: var(--font-color-blue);
}

.wpcf7-spinner::before {
	background: var(--yellow-hv-color);
}

.wpcf7-not-valid-tip {
	position: absolute;
	top: 35px;
}

/* FOOTER */
.footer-p-container {
	display: flex;
	justify-content: center;
}

.footer-p-container p {
	max-width: 900px;
	text-align: center;
}

.footer-b-animation-container {
	margin-bottom: 0;
	position: relative;
}

.footer-b-animation {
	position: absolute;
	right: 0;
	bottom: -80px;
}

.footer-b-animation-arm {
	position: absolute;
	bottom: -8px;
	right: 210px;
	transform-origin: bottom right;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(-6deg); }
    100% { transform: rotate(0deg); }
}

.footer-b-animation-arm.waving {
    animation: wave 3s infinite ease-in-out;
}

/* FRUSTRATIONS */
.frustrations, .ems-contact {
	min-height: calc(100lvh - 120px);
}

.frustrations-section, .ems-contact-section {
	display: grid;
	align-content: center;
	min-height: calc(100lvh - 120px - 226px);
	background: #CBD3DC;
	margin-bottom: -20px;
}

.frustrations-section > div, .ems-contact-section > div {
	display: flex;
	gap: 40px;
	padding: 140px 0 60px;
}

.ems-contact-section figure {
	position: absolute;
	left: 0;
	width:900px;
}

#frustrations-form {
	display: block;
}

#frustrations-form h2,
#frustrations-form h4 {
	color: var(--font-color-blue);
}

#frustrations-form h2 {
	font-size: 45px;
}

#frustrations-form h4 {
	font-size: 20px;
	padding: 5px 0;
}

#frustrations-form h4:last-of-type {
	font-weight: 600;
	margin-bottom: 15px;
}

#frustrations-form.school-ems-contact{
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
}
#frustrations-form.school-ems-contact h2 {
	margin-bottom: 25px;
}

.ems-contact-section > div {
	justify-content: end;
}

.school-ems-contact {
	width: 60%;
}

.ems-text {
	width: 80%;
}

.ems-text p {
	margin: 0 0 15px 0;
}

.book-demo-form .dropdown-select:after {
	content: '';
	height: 10px;
	width: 10px;
	background-image: url('../image/ChevronDown.svg');
	background-size: cover;
	transition: all 0.2s;
	float: right;
	cursor: pointer;
	position: absolute;
	top: 18px;
	left: 94%;
}

.dropdown-select + p {
	max-height: 400px;
}


.select-box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 5px 10px 10px;
	background-color: #F0FCFC;
	position: absolute;
	z-index: 200;
	width: 100%;
	border-radius: 0 0 8px 8px;
	max-height: 400px;
	transition: max-height 0.2s ease;
}

#school {
	cursor: pointer;
}

span:has(#role) {
	display: flex;
	width: 100%;
	height: auto;
	justify-content: flex-start;
}


#role > span, #role > span > label {
	width: 100%;
	cursor: pointer;
	padding: 5px 5px;
	text-align: left;
	border-radius: 6px;
	transition: all 0.2s ease;
}

#role + .wpcf7-not-valid-tip {
	top: 0;
}

.hide-dropdown {
	max-height: 0;
	overflow: hidden;
	pointer-events: none;
	user-select: none;
	padding: 0;
}

.rotate:after {
	transform: rotate(180deg);
}


#role > span:hover {
	background-color: var(--yellow-bg-color);
}

#role label span, #learn-more + span {
	color: var(--font-color-blue);
}

label:has(#learn-more) {
	width: 100%;
	margin-bottom: 20px;
}

label:has(#learn-more) span {
	font-size: 16px;
	text-align: left;
}

#learn-more {
	margin-right: 3px;
}

.current-focus {
	font-size: 18px;
	background-color: #416A87;
	padding: 10px 0px;
	border-radius: 50px;
	width: 50%;
	color: #FFFFFF;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
	border: 1px solid #000;
}

.confirmation-dialog {
	position: absolute;
	height: 100svh;
	display: grid;
	place-items: center;
}

.confirmation-dialog dialog {
	margin: auto;
	width: 50%;
	border-radius: 8px;
	border: 1px solid var(--font-color-blue);
	padding: 25px;
	animation: 0.25s linear anim;
	box-shadow: 
		0px 8px 12px 0px #00345A12, 
		0px 2px 8px 0px #00345A1F, 
		0px 0px 5px 0px #00345A12;
}

.confirmation-dialog dialog::backdrop {
	background-color: rgb(171 194 205 / 0.5);
	backdrop-filter: blur(5px);
	animation: 0.25s linear bdanim;
}

.confirmation-content, .message {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 20px;

	h2, p {
		color: var(--font-color-blue);
	}
}

.home-button {
	margin-top: 10px;
}

.confirmation-close{
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;

	path {
		transition: 0.3s;
	}
}

.confirmation-close:hover {
	svg {
		path {
			fill: #B4002B;
		}
	}
}




@keyframes anim {
  from { 
    opacity: 0;
    translate: 0 -8px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes bdanim {
  from { opacity: 0; }
  to { opacity: 1; }
}




/* Banner Creator */
/*
	TODO:
	- RESPONSIVENESS!!!!!
	
	**FIXES**
	- fix tooltips on file upload buttons on preview
*/
.banner-creator {
	min-height: calc(100svh - 120px);
}

.banner-creator-wrapper {
	color: var(--font-color-blue);
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 100px;
	margin-bottom: 80px;
}

.banner-creator-title {
	h2 {
		color: var(--font-color-blue);
		display: flex;
		height: 40px;
		line-height: 40px;
		align-items: center;
		justify-content: left;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	p {
		min-width: 375px;
		width: 100%;
		font-size: 16px;
		font-weight: 400;
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.file-link {
		text-decoration: underline;
		cursor: pointer;
	}
	
	.file-link:hover {
		text-decoration: none;
	}

	.subtitle-wrapper {
		display: flex;
		width: fit-content;
		gap: 10px;
	}
	
}

.banner-creator-container {
	display: grid;
	grid-template-columns: calc(50% - 20px) calc(50% - 20px);
	gap: 40px;
	align-items: flex-start;
	max-width: 1200px;
}

.banner-preview-container.fixed {
	position: fixed;
  top: 65px;
  z-index: 100;
	width: calc(50% - 50px);
}

.alert-dialog {
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	box-shadow:
				0px 8px 12px 0px #00345A12, 
				0px 2px 8px 0px #00345A1F, 
				0px 0px 5px 0px #00345A12; 
}

.alert-dialog .ui-dialog-titlebar {
	width: 100%;
	background-color: #5a809b;
	color: #e3ff55;
}

.alert-dialog .ui-button-icon.ui-icon.ui-icon-closethick {
	background-image: url('../image/Times.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;

}

.alert-dialog .ui-dialog-content {
	text-align: left;
	padding: 20px;
	color: var(--app-color-dark-blue);
}

.alert-dialog .ui-button:hover {
	font-weight: 700;
}

.alert-dialog .ui-dialog-titlebar-close:hover {
	background-color: #ee0038;
}

.alert-dialog .ui-button .primary-button {
	color: var(--app-color-dark-blue);
}

.banner-preview-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px 20px 20px;
	height: fit-content;
	background: #fff;
	box-shadow: 0px 4px 12px 0px #0000001A;
	border-radius: var(--nav-menu-border-radius);
	grid-column: 1;
	width: 100%;

	.banner-size {
		font-size: 12px;
		text-align: center;
		margin-bottom: 0;
	}

	.banner-preview {
		--flex-direction: row;
		position: relative;
		display: flex;
		flex-direction: var(--flex-direction);
		justify-content: center;
		align-items: center;
		width: 100%;
		max-width: 480px;
		aspect-ratio: 2.4;
		min-height: 100px;
		border: 2px solid var(--font-color-blue);
		border-radius: 8px;
		overflow: hidden;
		margin-top: 1em;

		.upload-background, .upload-logo {
			cursor: pointer;
			background: white;
			box-shadow: 
				0px 8px 12px 0px #00345A12, 
				0px 2px 8px 0px #00345A1F, 
				0px 0px 5px 0px #00345A12; 
			padding: 6px;
			border-radius: 6px;
			transition: all 0.2s ease;
			font-size: 12px;
			z-index: 998;
		}

		.upload-background:hover, .upload-logo:hover {
			box-shadow: 
				0px 4px 6px 0px #00345A12, 
				0px 1px 4px 0px #00345A1F, 
		 		0px 0px 2px 0px #00345A12; 

			.file-link-tooltip {
				opacity: 1;
			}
		}

		.upload-background:active, .upload-logo:active {
			box-shadow: 
			inset 0px 4px 6px 0px #00345A12, 
			inset 0px 1px 4px 0px #00345A1F, 
			inset 0px 0px 2px 0px #00345A12; 
		}

		.upload-background {
			position: absolute;
			display: flex;
			top: 8px;
			right: 8px;
		}

		.logo-container {
			--border-color: transparent;
			--width: 60%;
			--height: 60%;
			display: flex;
			position: absolute;
			justify-content: center;
			align-items: center;
			align-self: center;
			justify-self: center;
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
			width: var(--width);
			height: var(--height);
			border: 2px dashed var(--border-color);
			border-radius: 8px;
			z-index: 997;
			transform-origin: center center;

			.file-link {
				position: absolute;
				bottom: -15px;
			}
		}

		.logo-container.logo-uploaded {
			transform: translateX(-50%);
		}

		.logo-container.logo-uploaded:hover {
			border: 2px dashed #000000;
			cursor: move;
		}

		.file-link .upload {
		border: 1px solid #000;
		box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
		padding: 3px;
		border-radius: 5px;
		fill: var(--font-color-blue);
		cursor: pointer;
		height: 25px;
		width: 25px;
		}
	}
	
	.file-link-tooltip {
		opacity: 0;
		pointer-events: none;
		background: #00345A;
		color: var(--app-color-light-blue);
		border: 1px solid var(--font-color-blue);
		position: absolute;
		text-align: center;
		width: 100px;
		padding: 6px;
		border-radius: 6px;
		box-shadow: 0px 2px 8px 0px #000000;
		font-size: 12px;
		top: -100%;
		left: 50%;
		transition: all 0.2s ease;
		z-index: 998;

		&::before {
			width: 1rem;
			height: 1rem;
			position: absolute;
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
			content: "";
			background-color: inherit;
			left: 5%;
			bottom: -0.4rem;
			border-radius: 2px;
		}
	}

	.upload-background .file-link-tooltip {
		left: -160%;
		top: 120%;

		&::before {
			left: 72%;
			top: -0.4rem;
		}
	}
}

.banner-background {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.banner-background img {
	position: absolute;
	transform-origin: center center;
}

.download-button {
	text-transform: none;
	min-width: 200px;
}

.download-button:disabled {
	opacity: 0.5;
	cursor: wait;
	background-color: #E1F86A;
}

.preview-buttons, .overlay-controls {
	margin-top: 15px;
	width: 100%;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.left, .right, .back, .next { rotate: -90deg; }


.slider-container {
	display: flex;
	gap: 15px;
	width: 100%;
	align-items: center;
	flex-wrap: wrap;

	input[type="range"] {
		background: linear-gradient(
			to right, 
			var(--app-color-dark-blue) 0%, 
			var(--app-color-dark-blue) var(--slider-progress, 0%), 
			#BACCCC var(--slider-progress, 0%), 
			#BACCCC 100%
			);
		width: 100%;
		min-width: 200px;
		height: 20px;
		border-radius: 50px;
		flex: 1;
	}

	input[type="range"]::-webkit-slider-thumb {
		-webkit-appearance: none;
		height: 25px;
		width: 25px;
		border-radius: 50%;
		background: #fff;
		cursor: pointer;
		border: 3px solid var(--app-color-dark-blue);
	}

	input[type="range"]::-moz-range-thumb {
		height: 25px;
		width: 25px;
		border-radius: 50%;
		background: #fff;
		border: 3px solid var(--app-color-dark-blue);
		cursor: pointer;
		box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
	}

	.slider-left {
		display: flex;
		align-items: center;
		gap: 10px;
		min-width: 150px;
		width: 30%;
	}

	.slider-left label {
		width: fit-content;
		white-space: nowrap;
	}

	.percent-input {
		width: 60px;
		min-width: 60px;
		border: 1px solid black;
		background-color: #00345A0D;
		border-radius: 6px;
		padding: 8px 4px;
		text-align: center;
		font-size: 14px;
	}


}
.overlay-controls {
	justify-content: flex-start;
	gap: 20px;
}

.overlay-settings, .overlay-controls .color-input {
	gap: 10px;
}

.overlay-controls .color-input, .overlay-settings {
	p {
		width: 20%;
	}
}

.overlay {
	--opacity: 0;
	--direction: right;
	--color: #ebebeb;
	--cutoff: 0;
	--gradient: linear-gradient(to var(--direction), var(--color) var(--cutoff), transparent);

	width: 100%;
	height: 100%;
	position: absolute;
	background: linear-gradient(to var(--direction), var(--color) var(--cutoff), transparent);
	transition: opacity 0.25s ease-in-out;
	opacity: var(--opacity);
}

.overlay-direction {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.overlay-adjustments {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}

.button-wrapper {
	justify-content: flex-start;
	width: 100%;
	gap: 30px;
}

.button-group, .btn-group {
	display: flex;
	background-color: #BACCCC80;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	box-shadow: 0px 8px 12px 0px #00345A12;
	height: 45px;
	padding: 15px 8px;
	position: relative;
	min-width: 75px;
	
	svg {
		fill: var(--font-color-blue);
		height: 25px;
		pointer-events: none;
		transition: fill 0.2s ease;
	}

	.button-slider {
		position: absolute;
		top: 0.5rem;
		bottom: 0.5rem;
		background-color: var(--app-color-dark-blue);
		border-radius: 50px;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 1;
	}


	button {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		font-weight: 500;
		height: fit-content;
		width: fit-content;
		border-radius: 50px;
		z-index: 2;
		background: none;
		border: none;
		transition: color 0.2s ease;
		}

	.btn.active {
		color: var(--app-color-light-blue);
		
		svg {
			fill: var(--app-color-light-blue);
		}
	}
}

.drop-down {
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	border-bottom: 1px solid transparent;
	transition: all 0.2s;
	align-items: center;
	padding: 10px 0;
	border-top: 1px solid #BACCCC;
	width: 100%;
}

.drop-down:after {
	content: url('../image/ChevronDown.svg');
	transition: all 0.2s;
	float: right;
	height: 25px;
	width: 25px;
	margin-left: 5px;
	cursor: pointer;
}

.drop-down:hover {
	color: var(--app-color-dark-blue);
	border-bottom: 1px solid #BACCCC;
}

.drop-down.active {
	color: var(--app-color-dark-blue);
}

.drop-down.active:after {
	transform: rotate(-180deg);
}

.adjustment-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}

.bg-drop, .logo-drop {
	font-size: 16px;
	font-weight: 500;
}

.right-side {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	grid-column: 2;
}
.logo-link-text, .background-link-text {
	font-size: 14px;
}

.bg-title-right {
	width: 45%;
}

.bg-hamburger {
	display: block !important;
	margin-top: 0;
}

.background-switch {
	width: 40%;
	position: relative;
}

.uploaded-bgs {
	position: absolute;
	background-color: var(--app-color-medium-light-blue);
	max-height: 0;
	width: 100%;
	top: 45px;
	overflow-y: auto;
	border-radius: 8px;
	gap: 10px;
	transition: max-height 0.3s ease-in-out;
}

.previews-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	gap: 10px;
	padding: 10px;
	overflow-y: auto;
	border: 1px solid var(--font-color-blue);
}

.uploaded-bg-preview {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	border: 1px solid var(--font-color-blue);
	border-radius: 8px;
	transition: transform 0.2s ease-in-out;
}

.uploaded-bg-preview + .uploaded-bg-preview {
	margin-top: 10px;
}

.uploaded-bg-preview:hover {
	transform: scale(1.02);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.logo-upload-section, .background-section {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0px 4px 12px 0px #0000001A;
	width: 100%;
	height: fit-content;
	position: relative;

	.logo-subtitle {
		font-size: 12px;
	}

	p:not(.logo-subtitle), label:not(.add-background) {
		font-size: 14px;
		font-weight: 500;
	}

	.logo-upload, .background-upload {
		border: 1px solid var(--font-color-blue);
		border-radius: 8px;
		padding: 15px 10px;
		align-items: center;
		justify-content: space-between;
		
	}

	.logo-options {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease-in-out;
	}

	.logo-button, .background-button {
		align-items: center;
		width: 100%;
		gap: 10px;
		pointer-events: none;
	}

	p.logo-info {
		margin: 0;
		font-size: 12px;
		color: var(--font-color-blue);
		font-weight: 400;
	}

	.button-group {
		position: absolute;
		top: 20px;
		right: 20px;
	}


	.reset-logo svg, .reset-background svg {
		cursor: pointer;
		
		path {
			transition: 0.3s;
			fill: #B4002B;
		}
	}

	.reset-logo svg:hover, .reset-background svg:hover {
		path {
			fill: #ee0038;
		}
	}

	.file-link-logo, .file-link-bg, .add-background {
		background: #BACCCC99;
		font-size: 14px;
		font-weight: 500;
		border: 1px solid var(--font-color-blue);
		padding: 12px;
		border-radius: 8px;
		cursor: pointer;
		transition: all 0.25s ease-in-out;
		text-align: center;
		white-space: nowrap;
		pointer-events: all;
	}
	
	.logo-preview, .bg-preview {
		height: 50px;
		width: 120px;
		background-repeat: no-repeat;
		background-size:contain;
		background-position: center;

	}
	
	.file-link-logo:hover, .file-link-bg:hover, .add-background:hover {
		background: var(--font-color-blue);
		color: var(--app-color-light-blue);
	}

	.replace-logo, .replace-background {
		color: #b4002b;
	}

	.replace-logo:hover, .replace-background:hover {
		color: #ee0038;
		background: rgba(186, 204, 204, 0.4);
		border: 1px solid #ee0038;
	}
}

.dragover {
	border: 2px dashed var(--font-color-blue);
	background: rgba(0, 52, 90, 0.1);
}

.logo-actions, .bg-actions {
	align-items: center;
	gap: 20px;
}



.background-section, 
.background-bottom, 
.bg-position-input,
.logo-upload-section, 
.logo-bottom,
.logo-position-input,
.overlay-settings-panel,
.logo-adjustment,
.overlay-adjustments {
	gap: 20px;
}

.position-title {
	text-align: center;
}

.sizing-input {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 34%;

	.button-group {
		top: 5px;
		right: 0;
	}
}

#bg-color-input-text {
	text-transform: uppercase;
}

.banner-shapes {
	z-index: -1000;
	height: 50%;
	width: 50%;
}

.ban-poly {
	top: -50px;
	left: -100px;
}

.ban-oval {
	bottom: -200px;
	right: 25%;
	height: 60%;
}

.ban-rect {
	top: -50px;
	right: -200px;
}

.overlay-solid {
	--width: 50%;
	--height: 100%;
	width: var(--width);
	height: var(--height);
	position: relative;
}

.background-solid {
	--width: 50%;
	--height: 100%;
	width: var(--width);
	height: var(--height);
	position: relative;
}

.counter { 
	text-align: center;
	width: 60px;
	font-variant: tabular-nums;
 }

.wp-block-heading {
	color: var(--font-color-blue)
}


/* RESPONSIVENESS */
/* 1420 and down */
@media (max-width: 1420px) {
	.ems-contact-section figure {
		left: -120px;
	}
}
/* 1200 and down */
@media (max-width: 1200px) {
	.column-1-text h1 {
		font-size: 60px;
		line-height: 60px;
	}
	
	.dot-container {
		margin-bottom: 30px;
	}
	
	.sn-shapes {
		top: -300px;
		left: -300px;
		min-height: 2000px;
		min-width: 2000px;
	}
	
	.explore-features-section {
		padding: 20px 0 60px;
	}
	
	.explore-features-section h2 {
		text-align: center;
	}
	
	.promote-hero-article p {
		font-size: 20px;
	}
	
	.footer-a-animation {
		left: -60px;
	}
	
	.footer-b-animation, .footer-b-animation-arm {
		display: none;
	}
	
	.interactive-container {
		gap: 30px;
		justify-content: space-between;
	}
	
	.bd-interactive-panel {
		padding: 30px 20px;
	}
	
	.logo-input, .school-details-text {
		width: 350px;
	}
	
	.color-input-text {
		width: 270px;
	}
	
	.testimonial-aside > article {
		height: 200px;
	}

	.ems-contact-section figure {
		width: 800px;
	}
	
}

/* 1024px and down */
@media (max-width: 1024px) {
	h4 {
		font-size: 16px;
	}
	
	.banner-btn {
		display: flex;
		justify-content: center;
	}
	
	.product-overview-title {
		margin-bottom: 15px;
	}
	
	.product-secondary-row {
		gap: 10px;
		margin-top: 0;
	}
	
	.product-secondary-column-description {
		height: auto;
	}
	
	.hero-banner {
		align-items: center;
		overflow: hidden;
	}
	
	.hero-banner .column-1 .container {
		width: min(100% - 30px, 1440px);
	}
	
	.solutions-ad-img {
		margin: -30px 0 -160px;
	}
	
	.hero-banner-section .row {
		display: block;
	}
	
	.columns, .column {
		display: block;
		height: auto;
	}
	
	.column-1, .column-2 {
		width: 100%;
	}
	
	.hero-banner .columns {
		padding-top: 20px; 
	}
	
	.herobanner-subpages-two-columns {
		height: auto;
	}
	
	.solutions-svg {
		display: none;
	}
	
	.solutions-png {
		display: block;
	}
	
	.aryval-p-column {
		width: 50%;
	}
	
	.hero-banner > div {
		height: 100%;
		display: flex;
		align-items: end;
	}
	
	.hero-banner .columns {
		display: block;
		transform: skew(20deg);
	}
	
	.skew-20 {
		transform: skew(-20deg);
	}
			
	.column-1-text a {
		text-decoration: none;
	}
	
	.hero-banner .column-1, .hero-banner .column-2 {
		width: 100%;
	}
	
	.hero-banner .column-1 {
		padding-bottom: 100px;
		padding-left: 820px;
	}
	
	.column-1-text h1, .column-1-text h2,  .column-1-text p {
		text-align: center;
	}
	
	.column-1-text h1, .herobanner-single-post h1 {
		display: block;
	}
	
	.hero-banner .column-1-text h1,
	.hero-banner .column-1-text p {
		text-align: left;
	}
	
	.column-1 figure, .column-2 figure {
		display: flex;
		justify-content: center;
	}
	
	.herobanner-subpages-two-columns .column-1-text h1:first-of-type, .column-1-text h2 {
		padding-top: 100px;
	}
	
	.bd-interactive-panel {
		display: none;
	}
	
	.ap-hero-logo, .ae-hero-logo {
		height: 40px;
	}
	
	#ap-hero h2 {
		padding-top: 0;
	}
	
	.ap-hero-logo {
		margin-top: 100px;
	}
	
	.aryval-p-column img {
		height: 30px;
	}
	
	.recent-posts-item {
		width: 100%;
	}
	
	.recent-posts-row {
		padding: 0 100px;
	}
	
	.field-notes-container {
        flex-direction: column; 
        align-items: center;
		gap: 25px;
    }
	
	.post-title {
		height: auto;
	}
	
	.content-section {
		padding: 50px 100px;
	}
	
	.promote-hero-article {
		padding: 20px 20px 40px;
	}
	
	.solutions-features-nav, .v-divisor {
		display: none;
	}
	
	.book-demo-section h2:last-of-type,
	.book-demo-section h3:last-of-type {
		display: none;
	}
	
	.testimonial-video-dialog, .promote-video iframe {
		height: auto;
	}
	
	.promote-video iframe {
		min-height: 400px;
	}
	
	.testimonial-author h3 {
		font-size: 18px;
	}
	
	.testimonial-author p, .testimonial-author em {
		font-size: 16px;
	}
	
	.school-logo {
		margin-left: 7px;
	}
	
	.summary-box {
		padding: 30px 40px 20px 25px;
	}
	
	.field-notes-img, .solutions-img {
		margin: -60px 0 -30px;
	}
	
	.promote-img {
		margin: -10px 0 -50px;
	}
	
	.aryval-group {
		margin-top: 50px;
	}
	
	.frustrations-section, .ems-contact-section {
		display: grid;
		justify-content: center;
	}
	
	.frustrations-section > div {
		display: block;
	}

	.ems-contact-section > div {
		justify-content: center;
	}

	.school-ems-contact {
		width: 100%;
	}

	.ems-contact-section figure {
		width: 500px;
		transform: translateY(25%);
	}
	
	#frustrations-form h2, 
	#frustrations-form h4 {
		text-align: center;
	}

	.banner-creator-title .subtitle-wrapper .info-tooltip {
		left: auto;
		right: -100%;
		top: 110%;

		&::before {
			top: -0.5rem;
			right: 3.3rem;
			left: auto;
		}
		
	}

	.background-section .add-background {
		margin-left: 10px;
	}
	
	.footer-a-animation {
       display: none;
    }
	
	footer {
		z-index: 100;
	}
}

/* 992px and down */

@media (max-width: 992px) {
	h2 {
		font-size: 30px;
	}
	
	.aryval-promote-section .container figure img {
		height: 30px;
	}
	
	.ap-hero-logo {
		height: 30px;
	}
	
	#ap-hero figure {
		display: flex;
		justify-content: center;
	}
	
	.ap-banner-btn {
		display: flex;
		justify-content: center;
	}
	
	.sn-shapes {
		top: -150px;
		left: -150px;
		min-height: 1500px;
		min-width: 1500px;
	}

	.mt-100 {
		margin-top: 0;
	}
	
	.column-1-text h1 {
        font-size: 54px;
		line-height: 54px;
    }
	
	.herobanner-single-post h1 {
        font-size: 45px;
		line-height: 45px;
    }
	
	.testimonial-column {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	.testimonial-video-dialog {
		width: calc(100% - 40px);
	}
	
	.promote-video iframe {
		width: calc(100% - 40px);
	}
	
	.testimonial-aside {
		position: relative;
		width: 100%;
		margin-left: 0;
	}
	
	.testimonial-aside > article {
		height: 250px;
	}
	
	.school-logo figure img {
		width: 100px;
	}
	
	.testimonial-button-container {
		justify-content: center;
	}
	
	.testimonial-video-button {
		margin-bottom: 20px;
	}
	
	.dot-container {
		margin-bottom: 20px;
	}
	
	.aryval-products-section {
		padding: 20px;
	}
	
	.aryval-products-section .container {
		width: auto;
	}
	
	.aps-right {
		bottom: 30px;
	}
	
	.promote-hero-article p {
		font-size: 18px;
	}
	
	.aryval-products-section .container > div {
		display: block;
	}
	
	.aryval-p-column {
		width: 100%;
	}
	
	.aryval-p-column article {
		min-height: auto;
		margin-bottom: 30px;
	}
	
	.rq-row {
		display: block;
	}
	
	.rq-column {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.school-logo {
		margin: 0;
	}

	.sp-section-heading article h3, h3 {
		font-size: 22px;
	}
	
	.sp-section-heading figure {
		margin: 120px 10px -30px 5px;
	}
	
	.sub-plan-section h2 {
		padding: 80px 0 0;
	}
	
	.sub-plan-section {
		padding-bottom: 30px;
	}
	
	
	.ap-left, .os-left, .aps-left {
		left: -150px;
	}
	
	.ap-right, .os-right, .aps-right {
		right: -150px;
	}
	
	.pr-right {
		right: -80px;
		top: -50px;
	}
	
	.pr-left {
		left: -80px;
		bottom: -50px;
	}
	
	.book-demo-h-divisor {
		margin: 20px 0;
	}
	
	.footer-a-animation-container svg {
		left: -300px;
		bottom: 100px;
	}
	
	.product-overview-title, .product-overview-title > h2 {
		margin-bottom: 10px;
	}

	/* Banner Creator */

	.banner-creator-wrapper {
		align-items: center;
		justify-content: center;
	}

	.banner-creator-container {
		grid-template-columns: 100%;
		gap: 30px;
		min-width: 600px;
	}

	.banner-preview-container {
		grid-column: 1;
		margin: 0 auto;
		max-width: 100%;
	}

	.banner-preview-container.fixed {
		position: static; 
		width: 100%;
		max-width: 100%;
	}
	.right-side {
		grid-column: 1;
		width: 100%;
	}

	.sm-screen-break::after {
		content: '\A';
		white-space: pre;
	}

}


/* 912px and down */

@media (max-width: 912px) {
	.aryval-a-img {
		right: 50px;
	}
	
	.solutions-section {
		overflow-x: hidden;
	}
	
	.aryval-promote-campaign {
		padding: 40px 0 60px;
	}
	
	.apc-row {
		display: block;
	}
	
	.apc-row div {
		width: 100%;
	}
	
	.rp-column {
		height: 530px;
		width: 100%;
		margin-bottom: 20px;
		padding-bottom: 15px;
	}
	
	.promote-video {
		margin-bottom: 15px;
	}
	
	.content-section {
		padding: 50px;
	}
	
	.testimonial-exclamation {
		top: -30px;
	}
	
	.testimonial-aside > article {
		margin-top: 100px;
	}
	
	.recent-posts-row {
		padding: 0 50px;
	}
	
	.rp-column.highlight {
    	transform: translateY(0);
	}
	
	.rp-row {
		display: none;
	}
	
	.features-t-row, .sub-slideshow {
		display: block;
	}
	
	.features-table {
		padding: 0 12px;
	}
	
	.features-t-column .f-column-line:last-of-type {
		display: none;
	}
	
	.f-column-feature h4 {
		width: calc(100% - 60px);
	}
	
	.features-t-column, .contact-box {
		width: 100%;
	}
	
	.contact-info {
		display: block;
	}
	
	.contact-box {
		margin-bottom: 20px;
		height: auto;
	}
	
	.product-secondary-row {
		display: block;
	}
	
	.product-secondary-column {
		width: 100%;
	}
	
	.product-secondary-column-holder {
		width: 100%;
	}
	
	.product-secondary-animation {
		margin-bottom: 10px;
	}
	
	.product-secondary-column-description {
		height: auto;
	}
	
	.vision-section .container, 
	.story-section .container {
		width: auto;
		padding: 0;
	}
	
	.story-section .container, 
	.content-section .container {
		padding: 0;
	}
		
	.story-column {
		width: 100%;
	}
	
	.team-member-dialog {
		width: calc(100% - 20px);
	}
	
	.s-four {
		padding: 0 50px;
	}
	
	.sub-plan-section > figure img,
	.contact-shapes {
		min-height: 1800px;
		min-width: 1800px;
	}
	
	.ap-right,
	.ap-left,
	.os-right,
	.os-left,
	.sn-poly, 
	.sn-oval {
		height: 560px;
		width: 560px;
	}
	
	.button-center .mt-35 {
		margin-top: 20px;
	}
	
	#arrow-container {
		display: none;
	}

	.banner-shapes {
		min-height:0;
		min-width: 0;
	}

	.ban-poly {
		top: auto;
		left: -10%;
		height: 50%;
		width: 50%;
	}

	.ban-oval {
		bottom: -65%;
		width: 100%;
		height: 100%;
	}

	.ban-rect {
		top: auto;
		right: -10%;
		height: 60%;
		width: 60%;
	}
}

/* 768px and down */

@media (max-width: 768px) {
	.column-1-text h1 { 
		font-size: 45px;
	}
	
	.herobanner-single-post h1 { 
		font-size: 30px;
	}
	
	.team-member-dialog {
		height: auto;
	}
	
	.aryval-p-column {
		padding: 25px;
	}
	
	.recent-posts-row {
		padding: 0;
	}
	
	.sn-shapes {
		top: -50px;
		left: -100px;
		min-height: 1200px;
		min-width: 1200px;
	}
	
	.sub-plan-section > figure img,
	.contact-shapes {
		min-height: 1200px;
		min-width: 1200px;
	}
	
	.aps-right,
	.aps-left,
	.ap-right,
	.ap-left,
	.sn-poly, 
	.sn-oval {
		height: 450px;
		width: 450px;
	}
	
	.pagination {
		margin: 0;
	}
	
	.contact-info {
		margin: 20px 0 30px;
	}
	
	.features-table a {
		margin-bottom: 25px;
	}
	
	.aryval-promote-campaign h2 {
		margin-bottom: 10px;
	}
	
	.apc-row h3 {
		padding: 0;
	}
	.school-ems-contact h2 {
		font-size: 24px;
	}
	
	.ems-text {
		width: 100%;
	}

	.banner-shapes {
		min-height:0;
		min-width: 0;
	}
}

@media (max-width: 650px) {
	.banner-creator-container {
		min-width: 100%;
		max-width: 100%;
	}

}

/* 540px and down */

@media (max-width: 540px) {
	h2, #frustrations-form h2 {
		font-size: 24px;
	}
	
	nav ul li a {
		font-size: 16px;
	}
	
	.hero-banner .columns {
		margin-left: -1000px;
	}
	
	.hero-banner .column-1 {
		padding-right: 24px;
		padding-left: 1000px;
	}
	
	.hero-banner .column-1 .container {
		width: min(100% - 50px, 1440px);
		max-width: 400px;
	}
	
	.product-secondary-row {
		margin-top: 10px;
	}
	
	.aryval-a-img {
		right: 0;
		bottom: -150px;
	}
	
	.aryval-promote-section .container {
		width: 100%;
	}
	
	.book-demo-form input[type="text"], 
	.book-demo-form form #phone-number, 
	input[type="email"], 
	input[type="tel"] {
		width: 245px;
	}
	
	.solutions-section > figure img {
		position: fixed;
		top: 50px;
		right: 100px;
		min-height: 700px;
		min-width: 700px;
	}
	
	.testimonial-video-dialog {
		width: calc(100% - 20px);
		padding: 25px;
	}
	
	.promote-video iframe {
		width: calc(100% - 20px);
		min-height: 275px;
	}
	
	.promote-video {
		margin-bottom: 5px;
	}
	
	#promote-button {
		margin-top: 15px;
	}
	
	.aryval-group {
		margin-top: 20px;
	}
	
	#testimonial-cancel-button {
		top: 2px;
		right: 2px;
	}
	
	.explore-features-section {
		padding: 20px 0 60px;
		margin-bottom: -40px;
	}
	
	.product-secondary-animation {
		margin-bottom: 0;
	}
	
	.aryval-p-column img, .aryval-promote-section .container figure img {
		height: 26px;
	}
	
	.aryval-promote-section .call-container {
		margin: 15px;
	}
	
	.sub-plan-section > figure img,
	.contact-shapes {
		min-height: 800px;
		min-width: 800px;
	}
	
	.ap-right,
	.ap-left,
	.aps-right,
	.aps-left,
	.os-left,
	.os-right,
	.sn-poly, 
	.sn-oval {
		height: 400px;
		width: 400px;
	}
	
	.solutions-summary > div > div:first-of-type,
	.solutions-summary > div > div:nth-of-type(2) {
		display: block;
	}

	.button-center .mt-35 {
		margin-top: 15px;
	}
	
	.solutions-summary .button-center {
		display: none;
	}
	
	.summary-box {
		width: 100%;
		margin-bottom: 25px;
		padding: 15px;
	}
	
	.features-table {
		margin-top: 40px;
	}
	
	.sp-section-heading {
		display: block;
	}
	
	.sp-section-heading article h2, 
	.sp-section-heading article h3 {
		text-align: center;
	}
	
	.sp-section-heading figure {
		margin: 0 0 -150px;
		height: 200px;
		padding-top: 180px;
	}
	
	.sp-section-heading article {
		padding: 45px 0 140px;
	}
	
	.sub-plan-section h2  {
		padding: 0;
	}
	
	.book-demo-form .form {
		width: 100%;
	}
	
	.post-content .wp-block-image img {
		min-width: 100%;
	}
	
	.product-overview-title, .product-overview-title > h2 {
		margin-bottom: 0;
	}
	
	.school-logo {
		margin-left: -15px;
	}
	
	.school-logo figure {
		width: 100%;
		justify-content: center;
	}
	
	.school-logo figure img:first-of-type {
		display: none;
	}
	
	.school-logo figure img:last-of-type {
		max-height: 95px;
		width: 105px;
		display: block;
	}
	
	#muhs-logo {
		height: 90px;
		width: 105px;
	}
	
	#gfs-logo {
		margin-left: 10px;
		width: 80px;
		height: 95px;
	}
	
	#lcs-logo-2 {
		width: 140px;
		height: 80px;
	}
	
	.testimonial-aside > article {
		height: 380px;
	}
	
	.testimonial-aside > div:last-of-type {
		display: block;
	}
	
	.aryval-p-column h3 {
		padding: 15px 0;
	}
	
	.promote-hero-article p:first-of-type {
		margin-top: 0;
	}
	
	.aryval-promote-campaign, .aryval-promote-solutions {
		padding: 20px 0 30px;
	}
	
	.content-section {
		padding: 20px 0 45px;
	}
	
	.testimonial-column {
		height: 370px;
	}
	
	.testimonial-author-details {
		height: 115px;
		gap: 10px;
		justify-content: center;
	}
	
	#field-notes-section {
		padding: 45px 0;
	}
	
	.s-footer {
		height: auto;
	}
	
	.footer-bottom {
		margin-top: 15px;
		display: block;
	}
	
	.footer-menu, .footer-top {
		display: block;
	}
	
	.footer-top img {
		margin: 15px 0 12px;
	}
	
	.footer-socials {
		gap: 6px;
	}
	
	.footer-menu ul {
		padding: 0 0 15px;
	}

	.banner-shapes {
		min-height:0;
		min-width: 0;
	}

	.banner-creator-container button {
		padding: 10px 15px;
	}
}

/* 480px and down */

@media (max-width: 480px) {
	::-webkit-scrollbar-track {
	  background: transparent;
	}
	
	.f-column-feature h4 {
		padding-left: 10px;
	}
	
	.features-t-column p {
		margin: 0 34px;
	}
	
	.hero-banner .columns {
		padding-top: 0; 
	}
	
	.border-top-radius {
		border-top-left-radius: 12px;
		border-top-right-radius: 12px;
	}
	
	a {
		font-size: 16px;
	}
	
	.footer-menu a {
		font-size: 14px;
	}
	
	.nav-major {
		font-size: 18px;
	}
	
	.promote-hero-article p:first-of-type {
		font-size: 18px;
	}
	
	.promote-hero-article p:last-of-type {
		font-size: 16px;
	}
	
	h2, #frustrations-form h2 {
		font-size: 22px;
	}
	
	p, .rq-column label, li, .post-description p  {
		font-size: 16px;
	}
	
	.primary-button, button {
		font-size: 16px;
		line-height: 16px;
	}
	
    .column-1-text h1 {
        font-size: 30px;
		line-height: 30px;
    }
	
	.herobanner-single-post h1 {
        font-size: 22px;
		line-height: 22px;
	}
	
	.column-2 {
		padding-top: 30px;
	}
	
	.s-four {
		padding: 0 0 25px;
	}

	.s-five {
		margin-top: -20px;
		height: auto;
	}
	
	.client-tst-section .container {
		width: 100%;
	}
	
	.form-row {
		display: block;
		gap: 10px;
	}
	
	.testimonial-column {
		height: 310px;
	}
	
	.testimonial-aside > article {
		display: flex;
		height: 320px;
	}
	
	.post-writeup {
		height: 180px;
	}
	
	.post-title {
		margin-bottom: 5px;
	}
	
	.post-description {
		height: auto;
		padding: 15px 15px 35px;
	}
	
	.recent-posts-content {
		padding: 30px 15px;
	}
	
	.testimonial-aside article p {
		font-size: 16px;
	}
	
	.post-description h2 {
		font-size: 18px;
	}

	.testimonial-author h3 {
		font-size: 16px;
	}
	
	.testimonial-author em, .testimonial-author p {
		font-size: 15px;
	}
	
	.ap-hero-logo, .ae-hero-logo {
		height: 26px;
	}
	
	.book-demo-section {
		padding-top: 80px;
	}
	
	.book-demo-section h3 {
		margin-top: 15px;
	}
	
	.book-demo-form input[type="text"], 
	.book-demo-form .form #phone-number, 
	input[type="email"], 
	input[type="tel"] {
		width: 100%;
		font-size: 16px;
	}
	
	#bd-form-p-last {
		font-size: 16px;
	}
	
	textarea {
		font-size: 16px;
	}
	
	#a-first-name {
		left: 88px;
	}
	
	#a-last-name {
		left: 87px;
	}
	
	#a-email {
		left: 53px;
	}
	
	#a-phone-number {
		left: 116px;
	}
	
	#a-school-name {
		left: 105px;
	}
	
	.book-demo-h-divisor {
		opacity: 0;
		margin: 15px 0;
	}
	
	.s-six {
		margin-top: -20px;
	}
	
	.solutions-section {
		padding-bottom: 20px;
	}
	
	.solutions-section > .container {
		height: auto;
		scroll-snap-type: none;
	}
	
	.solutions-scroller section > figure img {
		margin-top: 30px;
		width: auto;
	}

	.solutions-section > .container::-webkit-scrollbar { 
		display: none;
	}
	
	.solutions-section > .container > div:first-of-type {
		height: auto;
		padding-top: 100px;
	}

	.solutions-section > .container > div {
		height: auto;
	}
	
	.solutions-scroller {
		height: auto;
		overflow-y: visible;
		scroll-snap-type: none;
	}
	
	.solutions-scroller section article h2 {
		font-size: 18px;
	}
	
	.solutions-scroller section article p {
		margin: 6px 0;
	}
	
	.solutions-scroller .h-divisor {
		margin: 4px 0;
	}
	
	.solutions-scroller section figure {
		margin: 0;
	}
	
	.contact-us-section h2 {
		margin-bottom: 15px;
	}
	
	.summary-box h3 {
		font-size: 18px;
	}
	
	.v-divisor {
		display: none;
	}
	
	.solutions-scroller > section {
		display: block;
	}
	
	.solutions-scroller section article {
		width: 100%;
	}
	
	.recent-posts-row .container {
		width: auto;
		padding: 0;
	}
	
	.pd-60, .pd-40  {
		padding: 25px;
	}
	
	#field-notes-section {
		padding: 25px 6px;
	}
	
	.content-section {
		padding: 25px 6px 40px;
	}
	
	.question-block {
		padding: 10px 6px;
	}
	
	.question-block p {
		font-size: 15px;
	}
	
	.answer-block p {
		font-size: 14px;
	}
	
	.question-block figure {
		right: 6px;
	}
	
	.question-block > div:first-of-type p {
		width: 320px;
	}
	
	.question-block p {
		padding: 0 5px;
	}
	
	.contact-box {
		margin-bottom: 15px;
	}
	
	.summary-box:last-of-type {
		margin-bottom: 60px;
	}
	
	.solutions-scroller > section {
		height: auto;
	}
	
	.team-container {
		height: auto;
	}
	
	.team-carousel {
		display: block;
		height: auto;
	}
	
	.team-carousel-container {
		height: auto;
	}
	
	.team-article > h2 {
		margin-bottom: 20px;
	}
	
	.team-member-about {
		display: block;
	}
	
	.sub-plan-section h2 {
		font-size: 22px;
	}
	
	.sp-section-heading article h3, h3 {
		font-size: 18px;
	}
	
	.features-table {
		padding: 0 6px;
		margin: 0 0 60px;
	}
	
	.features-table h3 {
		font-size: 18px;
	}
	
	.features-t-row {
		padding: 0 6px;
	}
	
	.rp-title {
		padding: 20px 0;
	}
	
	.sub-plan-section {
		padding-bottom: 25px;
	}
	
	.button-center {
		margin-bottom: 25px;
	}
	
	.features-t-column {
		margin-left: 0;
	}
	
	.mt-25 {
		margin-top: 20px;
	}
	
	.mt-minus-20 {
		margin-top: 0;
	}
	
	.frustrations-section > div, .ems-contact-section > div {
		display: block;
	}
	
	#frustrations-form h2 {
		margin-top: 20px;
	}
	
	#frustrations-form h4 {
		font-size: 18x;
	}
	
	.book-demo-form form {
		width: 100%;
	}
	
	.contact-us-section {
		padding: 90px 0 20px;
	}
	
	.contact-us-section h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}
	
	.frustrations-section, .ems-contact-section {
		margin-bottom: -20px;
	}
	
	.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output {
		font-size: 14px;
		margin-top: -5px;
	}
	
	.recent-posts-content > p {
		height: 200px;
	}
}

/* 400px and down */

@media (max-width: 400px) {
    .question-block > div:first-of-type p {
		width: 270px;
	}
	
	h2, #frustrations-form h2 {
		font-size: 20px;
	}
	
	.testimonial-aside > article {
		height: 400px;
	}
	
	.sp-section-heading figure {
		padding-top: 195px;
	}
	
	.summary-box {
		margin-bottom: 10px;
		padding: 12px 15px 5px;
	}
	
	.recent-posts-content > p {
		height: 240px;
	}
	
	.post-writeup {
		height: 200px;
		margin-bottom: 15px;
	}
}

/* Landscape */

@media (max-height: 480px) {
	.solutions-section > .container {
		height: auto;
		scroll-snap-type: none;
	}
	
	.solutions-scroller section > figure img {
		margin-top: 30px;
		width: auto;
	}

	.solutions-section > .container::-webkit-scrollbar { 
		display: none;
	}
	
	.solutions-section > .container > div:first-of-type {
		height: auto;
		padding-top: 100px;
	}

	.solutions-section > .container > div {
		height: auto;
	}
	
	.solutions-scroller {
		height: auto;
		overflow-y: visible;
		scroll-snap-type: none;
	}
	
	.summary-box:last-of-type {
		margin-bottom: 60px;
	}
	
	.solutions-scroller > section {
		height: auto;
	}
	
	.solutions-scroller section article {
		margin-bottom: 40px;
	}
	
	.contact-info {
		display: block;
	}
	
	.contact-box {
		margin-bottom: 20px;
		height: auto;
		width: 100%;
	}
}

/* hamburger icon */

@media (min-width: 1124px) {
    .hamburger {
        display: none;
    }
}

@media (max-width: 1124px) {
  nav {
    display: none;
  }

	.access-div a {
		display: none;
	}
}

.grecaptcha-badge { visibility: hidden; }