:root {
	--green: #b4ff00;
	--dark-blue: #002340;
	--light-blue: #c4dfe9;
	--black: #000;
	--white: #fff;
	--light-grey: #f3f3f3;
	--dark-grey: #c4c4c4;
}

* {
	font-family: 'Montserrat', sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex-grow: 1;
}

.ar {
	height: 0;
	width: 100%;
}

.ar-16-7 {
	padding-bottom: 43.75%;
}

.bg-image {
	background-position: 50%;
	background-repeat: no-repeat;
	position: relative;
}
.bg-image.cover {
	background-size: cover;
}
.bg-image.cover img {
	object-fit: cover;
}
.bg-image.contain {
	background-size: contain;
}
.bg-image.contain img {
	object-fit: contain;
}
.bg-image .responsive-image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.bg-image .responsive-image img {
	width: 100%;
	height: 100%;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.hero {
	overflow: hidden;
}

.hero .bg {
	background-image: url('../img/hero/hero-bg.jpg');
	z-index: 0;
}

.hero .hero-shadow {
	z-index: 1;
	background-image: url('../img/hero/hero-shadow.png');
}

.hero .hero-text {
	z-index: 2;
	background-image: url('../img/hero/hero-text.png');
}

.hero .screen-glow {
	background-image: url('../img/hero/hero-screen-glow.png');
	z-index: 1;
	animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
	0% {
		opacity: 0;
	}
	12.5% {
		opacity: 0;
	}
	37.5% {
		opacity: 1;
	}
	62.5% {
		opacity: 1;
	}
	87.5% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.hero a.logo {
	max-width: 250px;
	top: 1.5rem;
	left: 1.5rem;
	z-index: 3;
}

@media (max-width: 600px) {
	.hero a.logo {
		top: -0.5rem;
		left: 0.5rem;
		max-width: 150px;
	}
}

.hero a.logo img {
	width: 100%;
}

.hero .buble {
}

.hero .buble-1 {
	background-image: url('../img/hero/hero-bubble-1.png');
}

.hero .buble-2 {
	background-image: url('../img/hero/hero-bubble-2.png');
}

.hero .buble-3 {
	background-image: url('../img/hero/hero-bubble-3.png');
}

.hero .buble-4 {
	background-image: url('../img/hero/hero-bubble-4.png');
}

.hero .buble-5 {
	background-image: url('../img/hero/hero-bubble-5.png');
}

.animate__delay-500ms {
	animation-delay: 0.5s;
}

.animate__delay-750ms {
	animation-delay: 0.75s;
}

.mw-950 {
	width: 95%;
	max-width: 950px;
}

.mw-850 {
	width: 95%;
	max-width: 850px;
}

footer {
	background-color: var(--dark-blue);
	flex-shrink: 0;
}

footer .logo img {
	max-width: 200px;
}

footer .socials a {
	margin: 0 8px;
}

footer .socials img {
	width: 42px;
}

header {
	max-width: 100%;
}

header .logo img {
	max-width: 250px;
	width: 100%;
}

header .header-text img {
	max-width: 250px;
	width: 100%;
	min-width: 150px;
}

.intro p {
	margin: 30px auto;
	color: var(--dark-blue);
}

.intro p.highlight{
	background-color: var(--green);
	padding: 35px 20px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 120%;
}

article {
	margin-top: -1rem;
}

@media (max-width: 1500px) {
	article {
		margin-top: 1rem;
	}
}

.article-card {
	padding: 15px;
}

.article-card .inner {
	background-color: var(--green);
	padding: 24px;
	border-radius: 20px;
	display: block;
    transform: scale(1) rotate(0deg);
    transition: .3s ease transform;
}

.article-card:hover .inner{
    transform: scale(1.05) rotate(2deg);
    /*
    animation: flash;
    animation-duration: 0.2s;
    animation-iteration-count: 3;
    animation-timing-function: ease-in-out;
    */
}

@keyframes flash{
    0%{
        opacity: 1;
    }

    20%{
        opacity: 1;
    }

    50%{
        opacity: 0;
    }

    80%{
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.article-card .number {
	width: 42px;
	height: 42px;
	border-radius: 21px;
	background-color: var(--dark-blue);
	color: var(--white);
	font-size: 24px;
	margin-bottom: 14px;
}

.article-card h2 {
	font-size: 16px;
	font-weight: 800;
	color: var(--dark-blue);
}

.article-card .subtitle {
	font-size: 12px;
	color: var(--black);
}

.link-reset {
	color: inherit;
	text-decoration: inherit;
}

.article-header {
	background-color: var(--green);
	color: var(--dark-blue);
	padding: 30px;
	border-radius: 20px;
}

.article-header .number {
	font-size: 37px;
	color: #fff;
	background-color: var(--dark-blue);
	width: 66px;
	height: 66px;
	border-radius: 33px;
	font-weight: 600;
}

.article-header h1 {
	font-size: 48px;
	font-weight: 800;
	margin: 24px 0;
}

@media (max-width: 600px) {
	.article-header h1 {
		font-size: 36px;
	}
}

.article-header {
	font-size: 24px;
	font-weight: 600;
}

.green-accordion .accordion-button {
	background-color: var(--green);
	color: var(--dark-blue);
	border-radius: 20px !important;
	border: none;
	font-size: 18px;
	font-weight: 600;
	padding: 20px;
	box-shadow: none !important;
	margin: 20px 0;
}

.green-accordion .accordion-button::after {
	display: none !important;
}

.green-accordion .accordion-button::before {
	font-family: 'Font Awesome 6 Pro';
	font-weight: 400;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;

	content: '\f068';
	font-size: 30px;
	margin-right: 15px;
}

.green-accordion .accordion-button.collapsed::before {
	content: '\2b';
}

.green-accordion .accordion-button:hover {
	background-color: var(--dark-blue);
	color: var(--green);
}

.green-accordion .accordion-item {
	border: none;
}

.inner-accordion .accordion-button {
	background-color: var(--light-grey);
	color: var(--dark-blue);
	border-radius: 20px 20px 0 0 !important;
	border: none;
	font-size: 18px;
	font-weight: 600;
	padding: 20px;
	box-shadow: none !important;
	margin-bottom: 0;
}

.inner-accordion .accordion-button.collapsed {
	border-radius: 20px !important;
}

.inner-accordion .accordion-body {
	background-color: var(--light-grey);
	color: var(--dark-blue);
	border-radius: 0 0 20px 20px;
}

.inner-accordion .accordion-button::after {
	display: block !important;
}

.inner-accordion .accordion-button:hover {
	background-color: var(--light-grey);
	color: var(--dark-blue);
}

.inner-accordion .accordion-button::before {
	display: none;
}

.info-block {
	background: var(--light-blue);
	color: var(--dark-blue);
	font-size: 12px;
	font-weight: 700;
	max-width: 180px;
	padding: 26px;
	border-radius: 20px;
	margin: 12px;
}

.info-block .inner{
	max-height: 130px;
	transition: .5s ease max-height;
	overflow: hidden;
}

h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-blue);
	margin-bottom: 16px;
}

.text-block .content {
	font-size: 14px;
	font-weight: 500;
	color: var(--dark-blue);
}

.image-block {
	margin: 30px 0;
	border-radius: 20px;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	overflow: hidden;
}

.image-block img {
	width: 100%;
}

.small-caps {
	font-variant: small-caps;
}
