/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

/* <label class="custom-checkbox"><input type="checkbox" id="acord1"><span class="checkmark"></span> <span class="checkbox-label">Am citit și sunt de acord cu regulamentul campaniei.</span></label> */

html,body {
	margin: 0;
	padding: 0;
	font-family: "Exo", sans-serif;
	cursor: none;
}

.cursor-small, .cursor-large {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%); /* Centrează cercul */
    z-index: 9999;
}

.cursor-small {
    width: 5px;
    height: 5px;
    background-color: black; /* Poți schimba culoarea după preferințe */
}

.cursor-large {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1); /* Culoare semi-transparentă */
    backdrop-filter: invert(100%);
    transition:.05s all;
    /* Pentru suport mai larg, poți adăuga prefixuri vendor:
    -webkit-backdrop-filter: contrast(150%);
    */
}

.cursor-large.active {
    width: 60px; /* Dimensiune mărită când este peste un link */
    height: 60px;
    font-size:13px;
    display: flex;
    align-items:center;
    justify-content: center;
    color:#fff;
    font-weight: bold;
}

h1,h2,h3 {
	color:#000;
	font-family: "Exo", sans-serif;
	font-size:44px;
}

h2 {
	font-size:32px;
	font-weight: 400;
}

h3 {
	font-size:28px;
}

p {
	font-size:24px;
}

a,a:visited,a:hover {
	color:#1D23EB;
	cursor: none!important;
}

img {
	max-width: 100%;
}

* {
	box-sizing: border-box;
}

.container {
	max-width:1920px;
	padding:0 40px;
}

.preview-articol {
	width: 100%;
	overflow: hidden;
}

.preview-articol > img {
	object-fit:cover;
	transition:1s all;
	width:100%;
}

.link-articol:hover .preview-articol > img {
	transform:scale(1.05);
}

.divider-categorie {
	margin-bottom:20px;
	display: flex;
	align-items:center;
}

.filler-row {
	background-color:#EA256C;
	height:30px;
	width:100%;
	position:relative;
	margin-left:60px;
}

.filler-row:after {
    background-color: #EA256C;
    clip-path: polygon(0 0, 100% 100%, 0% 100%, 0% 0);
    transform: rotate(270deg);
    position: absolute;
    content:'';
    left:-29px;
    height: 30px;
    width:30px;
    top:0;
}

.container-carusel-imagini {
    padding: 10px 0;
    overflow: hidden;
}

.container-carusel-imagini .swiper-container {
    width: 100%;
}

.container-carusel-imagini .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.container-carusel-imagini .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-kv {
	height:60vh;
	background-size:cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-image:url('../images/aboutkv.png');
}

.about-heading {
	font-weight: 400;
	line-height: 60px;
}

header {
	position: fixed;
	top:0;left:0;right:0;
	width:100%;
	z-index: 50;
}

menu {
	padding:0;
	margin: 0;
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100vw;
	height:100vh;
	background-image:url('../images/menubg.png');
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
	align-items:center;
	justify-content: center;
	z-index: -1;
	opacity: 0;
	display: flex;
	overflow-y:scroll;
}

menu a, menu a:visited {
	font-size:72px;
	color:#fff;
	font-weight: 900;
	display: block;
	text-decoration: none;
	line-height: 78px;
	transition:.5s all;
}

menu a:hover {
	color:#EA256C;
}

body.menu-open {
	height:100%;
	overflow: hidden;
}

body.menu-open menu {
	opacity: 1;
	z-index: 40;
	transition:.5s all;
}

.logo {
	position: relative;
	background-color: white;
    color: black;
    font-weight: 400;
	justify-content: center;
	align-items: center;
    display: inline-block;
    height: 50px;
    padding:7px 25px;
    font-size:24px;
}

.logo:after {
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 0% 100%, 0% 100%);
    position: absolute;
    content:'';
    right:-49px;
    height: 50px;
    width:50px;
    top:0;
}

.logo a,.logo a:visited,.logo a:hover {
	text-decoration:none;
	color:#000;
}

.meniu {
	position: relative;
	background-color: #1D23EB;
    color: #fff;
    font-weight: 400;
	justify-content: center;
	align-items: center;
    display: inline-block;
    height: 50px;
    padding:7px 75px 7px 25px;
    text-transform: uppercase;
    font-size:24px;
    z-index: 51;
    cursor: pointer;
}

.meniu:after {
    background-color: #1D23EB;
    clip-path: polygon(0 0, 100% 100%, 0% 100%, 0% 0);
    transform: rotate(270deg);
    position: absolute;
    content:'';
    left:-49px;
    height: 50px;
    width:50px;
    top:0;
}

.video-homepage {
	width:100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.video-homepage > img {
	object-fit: cover;
	width:100%;
	height:100%;
	position: relative;
	z-index: 2;
}

.video-homepage video {
    /*position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.button-container {
	position: absolute;
	width: 60px;
	height: 60px;
	bottom: 5%;
	left: 5%;
	z-index: 2;
}

.play-button {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	overflow: hidden;
}

.play-button::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 20px solid blue; /* Blue color for triangle */
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	position: absolute;
	margin-left:5px;
}

.ripple {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	animation: ripple-animation 1.5s infinite ease-out;
	pointer-events: none;
	transform: scale(1);
	top:0;
}

.ripple:nth-child(1) { animation-delay: 0s; opacity: .4; }
.ripple:nth-child(2) { animation-delay: 0.5s; opacity: .4; }
.ripple:nth-child(3) { animation-delay: 1s; opacity: .4; }

@keyframes ripple-animation {
	0% {
		transform: scale(1);
        opacity: .4;
	}
	100% {
        transform: scale(2.5); /* Scale up the ripple */
        opacity: 0; /* Fade out */
	}
}

.link-articol, .link-articol:hover, .link-articol:visited {
	text-decoration: none; color:#000;
}

.buton-albastru,.buton-albastru:hover,.buton-albastru:visited {
	background-color:#1D23EB;
	padding:7px 65px 7px 15px;
	color:#fff;
	font-weight: 400;
	font-size:24px;
	text-decoration: none;
	display: inline-block;
	position: relative;
	margin-left:50px;
}

.buton-albastru:before {
	background-color: #1D23EB;
    clip-path: polygon(0 100%, 100% 0, 100% 0, 100% 100%);
    position: absolute;
    content:'';
    left:-49px;
    height: 100%;
    width:50px;
    top:0;
    
}

.buton-icon {
	width:50px;
	height:50px;
	background-color:#fff;
	border-radius:50%;
	position: absolute;
	display: inline-block;
	right:0;
	top:50%;
	transform:translateY(-50%);
	transition:.5s all;
}

.buton-icon-plus:after {
	content:'';
	position: absolute;
	z-index: 1;
	width:70%;
	height: 70%;
	top:15%;
	left:15%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.594 23.258l-.012.002l-.071.035l-.02.004l-.014-.004l-.071-.036q-.016-.004-.024.006l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.016-.018m.264-.113l-.014.002l-.184.093l-.01.01l-.003.011l.018.43l.005.012l.008.008l.201.092q.019.005.029-.008l.004-.014l-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.003-.011l.018-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%231D23EB' d='M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v4h4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-4v4a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-4H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h4z'/%3E%3C/g%3E%3C/svg%3E");
	background-size:contain;
	background-position: center center;
	background-repeat: no-repeat;
	transition:.5s all;
}

.buton-albastru:hover > .buton-icon-plus:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.594 23.258l-.012.002l-.071.035l-.02.004l-.014-.004l-.071-.036q-.016-.004-.024.006l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.016-.018m.264-.113l-.014.002l-.184.093l-.01.01l-.003.011l.018.43l.005.012l.008.008l.201.092q.019.005.029-.008l.004-.014l-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.003-.011l.018-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23EA256C' d='M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v4h4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-4v4a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-4H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h4z'/%3E%3C/g%3E%3C/svg%3E");
	transform:rotate(90deg);
}

.buton-icon-arrow:after {
	content:'';
	position: absolute;
	z-index: 1;
	width:70%;
	height: 70%;
	top:15%;
	left:15%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231D23EB' d='M15 20H9v-8H4.16L12 4.16L19.84 12H15z'/%3E%3C/svg%3E");
	background-size:contain;
	background-position: center center;
	background-repeat: no-repeat;
	transition:.5s all;
	transform:rotate(45deg);
}

.buton-albastru:hover > .buton-icon-arrow:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23EA256C' d='M15 20H9v-8H4.16L12 4.16L19.84 12H15z'/%3E%3C/svg%3E");
	transform:rotate(90deg);
}

.filter-control > span {
	background-color:#1D23EB;
	border-radius:50%;
	display: inline-block;
	width:32px;
	height:32px;
	position: relative;
	top:5px;
	background-size:60%;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.594 23.258l-.012.002l-.071.035l-.02.004l-.014-.004l-.071-.036q-.016-.004-.024.006l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.016-.018m.264-.113l-.014.002l-.184.093l-.01.01l-.003.011l.018.43l.005.012l.008.008l.201.092q.019.005.029-.008l.004-.014l-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.003-.011l.018-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23FFFFFF' d='M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v4h4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-4v4a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-4H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h4z'/%3E%3C/g%3E%3C/svg%3E");
}

.buton-cerc {
	background-color:#1D23EB;
	border-radius:50%;
	display: flex;
	width:40px;
	height:40px;
	align-items: center;
	justify-content: center;
}

.buton-icon-sageata {
	height: 30px;
	width:30px;
	background-size:contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M15 20H9v-8H4.16L12 4.16L19.84 12H15z'/%3E%3C/svg%3E");
	transform:rotate(45deg);
	transition:.5s all;
}

.hover-articol {
	cursor: pointer;
}

.buton-cerc:hover .buton-icon-sageata, .hover-articol:hover .buton-icon-sageata  {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23EA256C' d='M15 20H9v-8H4.16L12 4.16L19.84 12H15z'/%3E%3C/svg%3E");
	transform:rotate(90deg);
}

footer {
	background-color:#000;
	padding:40px;
}

.image-team-container {
	width:100%;
	height: 60vh;
}

.image-team-container > img {
	width:100%;
	height: 100%;
	object-fit:cover;
}

.team-image {
	margin-bottom:15px;
	width:100%;
	position: relative;
	padding-top:67%;
	overflow: hidden;
}

.team-image > img {
	object-fit:cover;
	height: 100%;
	width:100%;
	position: absolute;
	top:0;
	left:0;
}

.team-image:after {
	content:'';
	height:100%;
	width:100%;
	position: absolute;
	right:-100%; top:-100%;
	background-color:rgba(29, 35, 235, 0.1);
	transition:.5s all;
}

.team-image:hover:after {
	/*right:0; top:0;
	background-color:rgba(29, 35, 235, 0.2);*/
}

.team-image > a {
	position: absolute; 
	z-index: 2;
	right:5%;
	top:5%;
	color:#fff;
	text-decoration: none;
	font-size:24px;
	/*cursor: none;*/
}

.team-arrow {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M15 20H9v-8H4.16L12 4.16L19.84 12H15z'/%3E%3C/svg%3E");
	height: 26px;
	width: 26px;
	position: relative;
	background-color:#1D23EB;
	border-radius:50%;
	background-size:contain;
	background-position: center center;
	background-repeat: no-repeat;
	display: inline-block;
	top:4px;
	transform:rotate(45deg);
}

.container-full-carusel {
	background-color:#9747FF;
	padding:20px 0;
	overflow: hidden;
}

.container-full-carusel .swiper-container {
    width: 100%;
}

.container-full-carusel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-full-carusel .swiper-slide img {
    width: 70%;
    object-fit: contain;
    border-radius: 50%;
    background-color: #fff;
    padding: 10px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.container-full-carusel .swiper-slide img:hover {
	filter: grayscale(0%);
}

.container-full-contact {
	display:flex;
	background-color:#1D23EB;
	color:#fff;
	align-items:center;
	justify-content: center;
	font-size:46px;
	cursor: none;
	text-align: center;
	overflow: hidden;
}

.container-full-other-work {
	display:flex;
	background-color:#9747FF;
	color:#fff;
	align-items:center;
	justify-content: center;
	font-size:46px;
	cursor: pointer;
	text-align: center;
	overflow: hidden;
}

.container-full-other-work > a, .container-full-contact > a {
	padding:80px 40px;
}

.contact-form input, .contact-form textarea {
	border:none;
	border-bottom:1px solid black;
	background-color: transparent;
	padding:4px 0;
	color:#000;
	font-size:24px;
	width:100%;
}

.bg-black-bottom {
	border-bottom:1px solid black;
	margin-bottom:10px;
	font-size:20px;
	padding-bottom:15px;
}

.bg-black-top {
	border-top:1px solid black;
	padding-top:15px;
}

.cursor-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 41, 117, 0.8); /* Slightly transparent pink */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
    will-change: transform;
    backdrop-filter: invert(80%);
}
.social-link, .social-link:hover, .social-link:visited {
	color:#fff;
	position: relative;
	color:#fff;
	font-size:30px;
	text-decoration: none;
	display: inline-block;
}

.social-link > span {
	position: relative;
	display: inline-block;
	width:35px;
	height:35px;
	background-color:#1D23EB;
	border-radius:50%;
	top:5px;
	margin-left:10px;
}

.social-link > span:after {
	content:'';
	position: absolute;
	z-index: 1;
	width:70%;
	height: 70%;
	top:15%;
	left:15%;
	transform:rotate(45deg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M15 20H9v-8H4.16L12 4.16L19.84 12H15z'/%3E%3C/svg%3E");
	background-size:contain;
	background-position: center center;
	background-repeat: no-repeat;
	transition:.5s all;
}

.social-link:hover > span:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23EA256C' d='M15 20H9v-8H4.16L12 4.16L19.84 12H15z'/%3E%3C/svg%3E");
	transform:rotate(90deg);
}	

.footer-link, .footer-link:visited, .footer-link:hover {
	display: inline-block;
	color:#fff;
	text-decoration: none;
	margin:0 10px 15px 0;
	font-size:22px;
}

.footer-link:last-of-type {
	margin-right:0;
}

.footer-link:hover {
	text-decoration: underline;
}

.filter-option {
	display:none;
	cursor: pointer;
}

.options.visible .filter-option {
	color:#a6a6a6;
}

.filter-option:hover {
	color:#000;
}

.filter-control {
	display:inline-block;
}

.options.visible .filter-option {
	display: inline-block;
}

.options.visible .filter-control > span {
	display: none;
}

.filter {
	border-top:1px solid black;
	border-bottom:1px solid black;
	padding:10px 0;
	font-size:30px;
}

.filter-option:before {
	display: none;
	content:'+';
	color:#1D23EB;
	margin-right:2px;
	margin-left:5px;
}

.filter-control:before {
	content:'+'!important;
	color:#1D23EB!important;
}

.options.visible .filter-option:before {
	display:inline-block;	
}

.filter-option.selected:before {
	color:#EA256C;
	content:'x';
}

.accordion {
    width: 100%;
}

.accordion-item {
	border:none;
    border-bottom: 1px solid #000;
    border-radius:0!important;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 32px;
    cursor: pointer;
}

.accordion-header .icon {
    color: #fff;
    font-weight: bold;
    font-size: 32px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.accordion-content {
    display: none;
    padding: 10px 0;
}

.black-border-top-bottom {
	border-top:1px solid black;
	font-size:32px;
	padding:10px;
}

.black-border-top-bottom > p {
	font-size:32px;
	margin: 0;
	padding: 0;
}

.black-border-top-bottom:last-of-type {
	border-bottom:1px solid black;
}

.bg-top-border {
	border-bottom:1px solid black;
}

#nav-icon3 {
  z-index:999; right:0; top:0; left:auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  border-radius:50px;
  background-color:#fff;
  height:50px;
  width:50px;
  padding:7px;
  position: absolute;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 6px;
  width: 70%;
  background: #1D23EB;
  border-radius: 7px;
  border:0px solid white;
  opacity: 1;
  left: 8px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  
}

#nav-icon3 span:nth-child(1) {
  top: 12px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 22px;
}

#nav-icon3 span:nth-child(3) {  
}

#nav-icon3 span:nth-child(4) {
  top: 32px;
}

#nav-icon3.open span {
	background:#EA256C;
	box-shadow:none;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
    border:none;
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
    border:none;
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
  border:none;
}

.shake-vertical{-webkit-animation:shake-vertical 6s cubic-bezier(.455,.03,.515,.955) infinite both;animation:shake-vertical 6s cubic-bezier(.455,.03,.515,.955) infinite both}
@-webkit-keyframes shake-vertical{0%,100%{-webkit-transform:translateY(0);transform:translateY(0)}10%,30%,50%,70%{-webkit-transform:translateY(-8px);transform:translateY(-8px)}20%,40%,60%{-webkit-transform:translateY(8px);transform:translateY(8px)}80%{-webkit-transform:translateY(6.4px);transform:translateY(6.4px)}90%{-webkit-transform:translateY(-6.4px);transform:translateY(-6.4px)}}@keyframes shake-vertical{0%,100%{-webkit-transform:translateY(0);transform:translateY(0)}10%,30%,50%,70%{-webkit-transform:translateY(-8px);transform:translateY(-8px)}20%,40%,60%{-webkit-transform:translateY(8px);transform:translateY(8px)}80%{-webkit-transform:translateY(6.4px);transform:translateY(6.4px)}90%{-webkit-transform:translateY(-6.4px);transform:translateY(-6.4px)}}

/* Customize the checkbox appearance */
.custom-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  margin-top:15px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
}

/* Style the checkbox input */
.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  border-radius: 5px;
  margin-right:10px;
  background-color:#fff;
}

/* Style the checkmark icon */
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 6px;
  height: 13px;
  border: solid #000;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Style the checked state */
.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
  display: block;
}

.ngo-articol {
	color:#1D23EB;
	font-size:32px;
}

.image-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: .5fr 0.1fr .5fr;
    gap: 40px;
    width: 100%;
    margin: auto;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

/* Poziționarea imaginilor în grid pe desktop */
.image-grid img:nth-child(1) {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
    /* Imaginea din stânga care ocupă două rânduri */
}

.image-grid img:nth-child(2) {
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    /* Imaginea din dreapta de sus */
}

.image-grid img:nth-child(3) {
    grid-column: 1 / span 1;
    grid-row: 3 / span 1;
    /* Imaginea de jos din stânga */
}

.image-grid img:nth-child(4) {
    grid-column: 2 / span 1;
    grid-row: 2 / span 2;
    /* Imaginea de jos din dreapta */
}

.header-section {
	min-height: 50vh;
	display: flex;
	align-items:center;
}

@media only screen and (max-width:1570px) {
	.container { padding:0 30px; }
}	

@media only screen and (max-width:850px) {
	.video-homepage { height:80vh; }
	.cursor-small, .cursor-large { display:none!important; }
	.container { padding:0 20px; }
	h1 { font-size:32px; }
	h2 { font-size:26px; }
	h3 { font-size:24px; }
	p { font-size:20px; }
	.logo,.meniu { font-size:20px; padding-top:10px; } 
	.logo { padding-left:15px; display:block; }
	.meniu { padding:10px 40px 10px 10px; }
	.meniu > span { display:none; }
	.footer-link { display:block; margin-bottom:15px; }
	menu { align-items:start; padding-top:100px; }
	menu a, menu a:visited { font-size:50px; line-height:60px; }
	.image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 20px;
    }
    .image-grid img {
        grid-column: 1!important;
        grid-row: auto!important;
    }
}