* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.bold {
    font-weight: 700;
    font-size: 22px;
}
h1 {
    font-size: 4rem;
}
.pb-2 {
    padding-bottom: 2rem;
}
.block {
    display: block;
}
.main-ul {
    display: flex;
}
.main-ul li {
    list-style: none;
    margin: 0 20px;
}
.main-ul li a {
    text-decoration: none;
    color: #0f2d8f;
    font-size: 1.1rem;
    /* opacity: 0.7; */
    font-weight: 700;
}
.inner-header-container {
    margin-left: 10%;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-footer {
    background-color: #0f2d8f;
    color: white;
    padding: 4rem 10%;
}
.hero {
    display: flex;

    height: 35rem;
    padding: 4rem 0;
    align-items: center;
}
.hero-text-container {
    padding-left: 10%;
    width: 50%;
}
.hero-text-container h1 {
    font-size: 5rem;
    margin-bottom: 1.2rem;
}
.hero-text-container p {
    font-size: 1.2rem;
    opacity: 0.8;
}
.hero-illustration-container {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}
.hero-illustration-container img {
    width: 100%;
    height: 100%;
}
.introduction-section {
    display: flex;
    flex-direction: column;
    text-align: justify;
    padding: 4rem 10%;
    background-color: #0f2d8f;
    color: white;
}
.introduction-section h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}
.introduction-section p {
    font-size: 1.2rem;
    line-height: 30px;
    opacity: 0.8;
}
.testimoniale-section {
    border-top: dashed 2px #0f2d8f;
    margin-left: -250px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 3rem 0;
    gap: 100px;
    text-align: justify;
    align-items: flex-start;
    padding-bottom: 0;
    padding-left: 100px;
}
.testimoniale-text-container {
    width: 55%;
    margin-right: 10%;
}
.testimoniale-section h2 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}
.testimoniale-text-container p {
    font-size: 18px;
    opacity: 1;
    color: #0f2d8f;
}
.testimoniale-video {
    width: 45%;
    margin-left: 10%;
}
.testimoniale-video video {
    width: 100%;
    margin-bottom: 2rem;
}
.homepage-projects-container {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    padding: 2rem 10%;
    border-top: dashed 2px #0f2d8f;
    border-bottom: dashed 2px #0f2d8f;
}
.homepage-projects-text {
    text-align: center;
    margin-bottom: 4rem;
}
.homepage-projects-text h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.homepage-projects-text p {
    font-size: 18px;
    color: #0f2d8f;
}
.homepage-projects-cards-container {
    display: flex;
    justify-content: space-between;
}
.card {
    width: 320px;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    text-align: justify;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-justify: inter-character;
}
.card-photo-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 5px 5px 0 0;
}
.card-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-text-container {
    padding: 0 20px;
    opacity: 0.8;
}
.card-button-container {
    width: 100%;
    text-align: center;
}
.card-button-container button {
    border: none;
    font-size: 1.2rem;
    background-color: rgba(15, 45, 143, 0.8);
    margin-top: 2rem;
    margin-bottom: 2rem;
    cursor: pointer;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
}
.card-button-container button:hover {
    background-color: rgba(15, 45, 143, 1);
}
.homepage-projects-seeall-button-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    padding-bottom: 0;
}

.homepage-projects-seeall-button-container button {
    border: none;
    font-size: 1.5rem;
    background-color: rgb(40, 40, 40, 0.8);

    cursor: pointer;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
}
.homepage-projects-seeall-button-container button:hover {
    background-color: rgb(40, 40, 40, 1);
}
.contact-section {
    display: flex;
    align-items: center;
    padding: 2rem 10%;
    gap: 4rem;
    border-top: dashed 2px #0f2d8f;
}
.contact-text {
    width: 50%;
    text-align: justify;
}
.contact-text h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}
.contact-text p {
    font-size: 18px;
    color: #0f2d8f;
}
.contact-logos {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.contact-logo-container {
    padding: 20px;
    width: 200px;
}
.contact-logos img {
    /* flex: 50%; */
    width: 150px;
}
.mobile-icon {
    width: 30px;
    height: 30px;
    z-index: 100;
    position: relative;
    display: none;
    cursor: pointer;
}
.mobile-icon span {
    background-color: black;
    position: absolute;
    height: 4px;
    width: 30px;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}
.mobile-icon.open {
    margin-top: 5px;
}
.mobile-icon.open span:nth-child(1) {
    top: 5px;
    transform: rotate(135deg);
}
.mobile-icon.open span:nth-child(2) {
    left: -30px;
    opacity: 0;
}
.mobile-icon.open span:nth-child(3) {
    top: 5px;
    transform: rotate(-135deg);
}
.mobile-icon span:nth-child(1) {
    top: 0;
}
.mobile-icon span:nth-child(2) {
    top: 10px;
    left: 0;
}
.mobile-icon span:nth-child(3) {
    top: 20px;
}
.description-section {
    background-color: white;
    color: black;
    /* border-bottom: dashed 2px #0f2d8f; */
}
@media (max-width: 920px) {
    .top-header {
        padding-top: 10px;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        background-color: white;
    }
    .top-nav {
        position: fixed;
        background-color: white;
        left: 0;
        top: 70px;
        height: calc(100vh - 70px);
        z-index: 5;
        width: 70%;
        transform: translateX(-100%);
        transition: transform 0.2s ease-in-out;
    }
    .top-nav.open {
        transform: translateX(0);
    }
    .main-ul {
        flex-direction: column;
        text-align: center;
        padding: 3rem 0;
    }
    .main-ul li {
        padding: 20px 0;
    }
    .main-ul li a {
        font-size: 1.5rem;
    }
    .mobile-icon {
        display: flex;
    }
    .div-logo {
        width: 190px;
    }
    .div-logo img {
        width: 100%;
        height: auto;
    }
    .hero {
        flex-direction: column;
        height: auto;
        padding: 2rem 0;
        margin-top: 5rem;
    }
    .hero-text-container {
        padding-left: 0%;
        width: 80%;
        text-align: center;
        padding-bottom: 2rem;
    }
    .hero-text-container h1 {
        font-size: 3rem;
        margin-bottom: 0.6rem;
    }
    .hero-text-container p {
        font-size: 1rem;
        opacity: 0.8;
    }
    .hero-illustration-container {
        width: 45%;
        height: 50%;
        justify-content: center;
    }
    .introduction-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    .introduction-section p {
        font-size: 16px;
    }
    .testimoniale-section {
        flex-direction: column;
        justify-content: center;
        gap: 50px;
        align-items: center;
    }
    .testimoniale-text-container {
        width: 80%;
        margin: 0;
    }
    .testimoniale-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    .testimoniale-text-container p {
        font-size: 16px;
    }
    .testimoniale-video {
        width: 80%;
        margin: 0;
    }
    .homepage-projects-text h2 {
        font-size: 2.5rem;
    }
    .homepage-projects-text p {
        font-size: 16px;
        color: #0f2d8f;
    }
    .homepage-projects-cards-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4rem;
    }
    .card {
        width: 260px;
    }
    .card-photo-container {
        height: 150px;
    }
    .contact-section {
        display: flex;
        flex-direction: column;
        padding: 2rem 0;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }
    .contact-text {
        width: 80%;
    }
    .contact-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .contact-text p {
        font-size: 16px;
    }
    .contact-logos {
        width: 80%;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .contact-logo-container {
        padding: 0;
        width: 100px;
    }
    .contact-logos img {
        width: 100px;
    }
    .homepage-projects-seeall-button-container button {
        font-size: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 0rem;
        padding: 5px 10px;
    }
}

/* Grecia Heraklion */
.greece-section-img {
    display: flex;
    width: 100%;
    padding: 0 10%;
    justify-content: space-between;
}
.greece-section-img img {
    width: 45%;
}
.greece-text-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 4rem 10%;
}
.greece-text-section h1 {
    font-size: 4rem;
    padding-bottom: 1rem;
}
.greece-text-section p {
    font-size: 18px;
    opacity: 0.8;
}

.greece-video-section {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
    width: 100%;
}
.greece-video-section video {
    width: 50%;
}
.greece-section-resource {
    padding: 0 10%;
    padding-bottom: 4rem;
}
.greece-section-resource h2 {
    font-size: 2.5rem;
    padding-bottom: 2rem;
    text-align: center;
    color: #0f2d8f;
}
.greece-section-resource iframe {
    width: 100%;
}
@media (max-width: 920px) {
    .greece-text-section {
        padding: 2rem 10%;
        padding-top: 7rem;
    }
    .greece-text-section h1 {
        font-size: 2.5rem;
    }
    .greece-text-section p {
        font-size: 16px;
    }
    .greece-section-img {
        gap: 4rem;
        flex-direction: column;
    }
    .greece-section-img img {
        width: 100%;
    }
    .greece-section-resource iframe {
        height: 400px;
    }
    .greece-video-section video {
        width: 80%;
    }
}
/* projects page */
.projects-text-section {
    display: flex;
    flex-direction: column;
    padding: 4rem 10%;
    text-align: center;
}
.projects-text-section h1 {
    font-size: 4rem;
    padding-bottom: 1rem;
}
.projects-text-section p {
    font-size: 18px;
    color: #0f2d8f;
}
.projects-project-section {
    display: flex;
    flex-direction: column;
    padding: 4rem 10%;
    padding-top: 0;
}
.project-text {
    padding: 2rem 0;
}
.project-text p {
    color: #0f2d8f;
}
.projects-project-section h2 {
    font-size: 3rem;
    padding-bottom: 1rem;
}
.projects-project-cards-holder {
    display: flex;
    gap: 7.5rem;
}
.emap-paragraph {
    font-size: 1.5rem;
}
@media (max-width: 920px) {
    .projects-project-cards-holder {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .projects-text-section h1 {
        font-size: 2.5rem;
    }
    .projects-text-section p {
        font-size: 16px;
        color: #0f2d8f;
    }
    .projects-text-section {
        padding-top: 7rem;
        padding-bottom: 2rem;
    }
    .projects-project-section h2 {
        font-size: 2rem;
        padding: 2rem 0;
        text-align: center;
    }
    .projects-project-cards-holder {
        gap: 4rem;
    }
}
/* Turkey page */
.turkey-section-img {
    display: flex;
    width: 100%;
    padding: 0 10%;
    justify-content: space-between;
    object-fit: cover;
}
.turkey-section-img img {
    width: 30%;
    object-fit: cover;
}
.turkey-button-section {
    display: flex;
    justify-content: center;
    padding: 2rem;
}
.turkey-button {
    border: none;
    font-size: 1.5rem;
    background-color: rgb(40, 40, 40, 0.8);
    margin-top: 2rem;
    margin-bottom: 2rem;
    cursor: pointer;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
}
.turkey-button:hover {
    background-color: rgb(40, 40, 40, 1);
}
@media (max-width: 920px) {
    .turkey-section-img {
        flex-direction: column;
        gap: 4rem;
    }
    .turkey-section-img img {
        width: 100%;
    }
}
/* Portugal page */
.portugal-img-section {
    padding-bottom: 4rem;
}

/* Italy page */
.italy-section-img {
    display: flex;
    width: 100%;
    padding: 4rem 10%;
    padding-top: 1rem;
    justify-content: space-between;
    object-fit: cover;
}
.italy-section-img img {
    width: 40%;
    object-fit: cover;
    height: 300px;
}
.italy-section-resource iframe {
    margin: 2rem 0;
}
@media (max-width: 920px) {
    .italy-section-img {
        flex-direction: column;
        gap: 4rem;
    }
    .italy-section-img img {
        width: 100%;
    }
}

.projects-list-section {
    padding: 2rem 10%;
}
.projects-list-section h2 {
    font-size: 4rem;
}
.project-description {
    padding: 2rem 0;
}
.project-description img {
    height: 150px;
}
.partners-container {
    padding: 1rem 0 3rem 0;
}

.partners-container2 {
    padding-bottom: 1rem;
}

.social-media-project-container {
    display: flex;
    flex-direction: column;
}
@media (max-width: 920px) {
    .description-section {
        padding-top: 7rem;
    }
    .projects-list-section h2 {
        font-size: 2.5rem;
    }
    .project-description img {
        max-width: 100%;
        max-height: 100px;
        height: auto;
    }
}
.erasmus-certificate-section {
    padding: 0 10%;
    width: 100%;
    padding-bottom: 4rem;
}
.erasmus-certificate-section img {
    width: 100%;
}
.project-description-title {
    font-size: 1.7rem;
}
.revista-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5%;
    padding: 4rem 0;
}
.revista-container img {
    width: 40%;
}
.revista-container p {
    font-size: 2rem;
    padding: 2rem;
}
.link-revista {
    color: #0f2d8f;
    font-size: 1.5rem;
}
.emap-hero {
    background: url('./poze/poza-tari-background.jpg');
    width: 100%;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: auto;
}
.emap-hero::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
} 
.emap-hero h2 {
    color: white;
    font-size: 3rem;
    
    position: relative;
    text-align: center;
    z-index: 2;
}
.emap-hero p {
    color: white;
    font-size: 1.25rem;
    /* background-color: rgba(0,0,0,0.5); */
    position: relative;
    text-align: center;
    padding: 0 10%;

    z-index: 2;

    
}
.resurse-container {
    display: flex;
    flex-wrap: wrap;
}
.resurse-container > * {
    flex: 0 0 33.333333%;
    justify-content: center;
    padding: 2rem 0;

}
.resursa{
    background-color: #0f2d8f;
    height: 250px;
    width: 75%;
    margin-left: calc(25% / 2);
    text-align: center;
    border-radius: 10px;
    color: white;
    font-size: 1.13rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;

}

.subheader-emap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 0 0;
    color: #0f2d8f;
    height: 30px;
}
.subheader-emap img {
    width: 10%;
}
.emap-social-media {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}
.emap-social-media img {
    height: 120px;
    /* height: 110px; */
}
.mob{
    padding-left: 10%;
}
.mob h1{
    font-size: 55px;

}
.mobilitate-emap{
    margin-left: 250px;
    width: 1000px;
}
.mobilitate-emap video{
    width: 100%;

.mobilitate-emap-testimoniale {
    margin-bottom: 30px;
}

}
.pdf-MIL{
	border:none;
	padding-left: 15%;
}
.pdf-MIL1{
 	border:none;
}
.videobank{
 	text-align: center;
}
.Gallery{
    text-align: center;  

}
.emap-social-media1{
    display: flex;
    justify-content: center;
    padding: 10px;
}
.space {
    width: 20px;
    display: inline-block;
}

.testimoniale-spania0-clasa {
    padding-left: 10%;
}

.testimoniale-spania {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
    align-items: center;
    justify-content: center;
    place-items: center;
    margin-top: 30px;
    padding-right: 10%;
    margin-left: 280px;
    margin-bottom: 30px;
}

.ghenciu-daria,
.neculai-matei,
.maris-octavian,
.mocanu-miruna

{
    display: flex;
    flex-direction: column;
    height: auto;
    background-image: linear-gradient(#2b459a, #8f8fde) ;
    border-radius: 20px;
    padding: 2px 10px 10px 10px;
    color: white;
    box-shadow: 0 0 5px black;
}

.video-ghenciu,
.video-neculai,
.video-maris,
.video-mocanu
{
    width: 220px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 5px black;
}

.video-ghenciu:fullscreen,
.video-neculai:fullscreen,
.video-maris:fullscreen,
.video-mocanu:fullscreen
{
    width: auto;
    height: auto;
    object-fit: contain;
}

.mob-spania {
    border-top: dashed 2px #0f2d8f;
    margin-left: -250px;
    margin-bottom: 40px;
}

.prezentare-spania {
    border-radius: 15px;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.5);
}

.prezentare-spania:fullscreen {
    width: auto;
    height: auto;
    object-fit: contain;
}

.pdf-spania {
    border-radius: 15px;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.5);
}

.problems-inmytown {
    padding: 0 10%;
    padding-bottom: 4rem;
}
.problems-inmytown h2 {
    font-size: 2.5rem;
    padding-bottom: 2rem;
    text-align: center;
    color: #0f2d8f;
}
.problems-inmytown iframe {
    width: 100%;
}   	

.numescsr {
    text-align: left;
    }

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
 }
      
      .video-container {
        margin: 20px;
        height: fit-content;
      }
      
      .text-box {
        text-align: center;
        margin-bottom: 10px;
      }
.liniedesus{
    border-style: solid;
    color: #0f2d8f;
}
.videospania{
    display: flex;
   margin-left: 20%;
   width: 750px;
   height: 500px;
   margin-top: 90px;
}

.video-serbia {
    border-radius: 15px;
    box-shadow: 0 0 10px rgb(0, 0, 0)
}

.pdf-serbia {
    border-radius: 15px;
    box-shadow: 0 0 10px rgb(0, 0, 0)
}

.testimoniale-serbia {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    align-items: center;
    justify-content: center;
    place-items: center;
    margin-top: 30px;
    padding-right: 10%;
    margin-bottom: 80px;
    row-gap: 50px;
}

.alexoiu-alexandra,
.cernamorit-rebeca,
.gemanaru-andreea,
.hertea-alexia,
.itu-elena,
.macavei-raluca


{
    display: flex;
    flex-direction: column;
    height: auto;
    background-image: linear-gradient(#2b459a, #8f8fde) ;
    border-radius: 20px;
    padding: 2px 10px 10px 10px;
    color: white;
    box-shadow: 0 0 5px black;
}

.video-alexoiu,
.video-cernamorit,
.video-gemanaru,
.video-hertea,
.video-itu,
.video-macavei
{
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 5px black;
}

.video-alexoiu:fullscreen,
.video-cernamorit:fullscreen,
.video-gemanaru:fullscreen,
.video-hertea:fullscreen,
.video-itu:fullscreen,
.video-macavei:fullscreen
{
    width: auto;
    height: auto;
    object-fit: contain;
}

.produse-polonia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 100px;
    max-width: 1200px;
    margin-left: 60px;
    margin-bottom: 40px;

}
.produse-polonia .video-polonia1 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #ffffff;
    margin-left: 1000px;
}
.produse-polonia video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.produse-polonia .video-polonia2 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #ffffff;
}

.kahoot-link {
    padding: 24px 24px 24px 24px;
    border: none;
    border-radius: 15px;
    background-color: #0f2d8f;
    color: white;
    cursor: pointer;
    transition: background-color 0.4s;
    text-align: center;

}

.kahoot-link:hover {
    background-color: #4f69bd;
}

.kahoot-div {
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}

.acreditare3-section {
    border-top: dashed 2px #0f2d8f;
    padding-top: 30px;
    margin-left: -300px;
}

.acreditare3-text-container {
    margin-left: 320px;
}

.galerie {
    display: flex;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 65px;
    align-items: center;
    justify-content: center;
    place-items: center;
    margin-top: 30px;
    margin-bottom: 40px;
    row-gap: 10px;
}

.galerie-imagini {
    --gap: 16px;
    --num-cols: 2;
    --row-height: 300px;

    box-sizing: border-box;
    padding: var(--gap);

    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
}

.galerie-imagini > video, img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.5s linear;
}



.galerie-imagini-col-2 {
    grid-column: span 2; 
}

.galerie-imagini-row-2 {
    grid-row: span 2; 
}


@media screen and (max-width: 1024px) {
    .galerie-imagini {
        --num-cols: 2;
        --row-height: 200px;


    }
}

.popup-galerie-imagini {
    position: fixed;
    top: 0; left: 0;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.popup-galerie-imagini span {
    position: absolute;
    top: 0; right: 30px;
    font-size: 60px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    z-index: 100;
}

.popup-galerie-imagini img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid #fff;
    border-radius: 5px;
    width: auto;
    max-height: 40rem;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width:768px) {
    .popup-galerie-imagini img {
        width: 95%;
    }
}

.poza2,
.poza3,
.poza4,
.poza5,
.poza6

 {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(#2b459a, #8f8fde) ;
    border-radius: 20px;
    padding: 6px 6px 6px 6px;
    color: white;
    box-shadow: 0 0 5px black;
}

.galerie2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 40px;
    align-items: center;
    justify-content: center;
    place-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
    row-gap: 10px;
    background-image: linear-gradient(#2b459a, #8f8fde);
    border-radius: 20px;
    padding-right: 30px;
    padding-bottom: 3px;
    padding-right: 0px;
    padding-top: 3px;
    width: 1450px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8px;
    box-shadow: 0 0 5px black;
}

.poza7,
.poza8 {
    padding-right: 0px;
    height: 300px;
}

.galerie3 {
    display: flex;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 40px;
    align-items: center;
    justify-content: center;
    place-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
    row-gap: 10px;
}

.poza9,
.poza10,
.poza11,
.poza12 {
    padding-right: 40px;
    background-image: linear-gradient(#2b459a, #8f8fde) ;
    border-radius: 20px;
    padding: 6px 6px 2px 6px;
    color: white;
    box-shadow: 0 0 5px black;
}

.imagini-turcia {
    --gap: 16px;
    --num-cols: 4;
    --row-height: 300px;

    box-sizing: border-box;
    padding: var(--gap);
    margin-left: 60px;
    margin-right: 60px;

    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
}

.imagini-turcia > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 5px rgb(0, 0, 0, 0.5);
    border-radius: 15px;
    cursor: pointer;
    transition: 0.5s linear;
}

.imagini-turcia > img:hover {
    transform: scale(0.98);
    box-shadow: 0 0 10px black;
}

.imagini-turcia-col-2 {
    grid-column: span 2; 
}

.imagini-turcia-row-2 {
    grid-row: span 2; 
}


@media screen and (max-width: 1024px) {
    .imagini-turcia {
        --num-cols: 2;
        --row-height: 200px;


    }
}

.popup-imagini-turcia {
    position: fixed;
    top: 0; left: 0;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.popup-imagini-turcia span {
    position: absolute;
    top: 0; right: 30px;
    font-size: 60px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    z-index: 100;
}

.popup-imagini-turcia img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid #fff;
    border-radius: 5px;
    width: 750px;
    max-height: 40rem;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width:768px) {
    .popup-imagini-turcia img {
        width: 95%;
    }
}

.imagini-finlanda {
    --gap: 16px;
    --num-cols: 4;
    --row-height: 300px;

    box-sizing: border-box;
    padding: var(--gap);
    margin-left: 60px;
    margin-right: 60px;

    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
    margin-bottom: 20px;
}

.imagini-finlanda > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 5px rgb(0, 0, 0, 0.5);
    border-radius: 15px;
    cursor: pointer;
    transition: 0.5s linear;
}

.imagini-finlanda > img:hover {
    transform: scale(0.98);
    box-shadow: 0 0 10px black;
}

.imagini-finlanda-col-2 {
    grid-column: span 2; 
}

.imagini-finlanda-row-2 {
    grid-row: span 2; 
}


@media screen and (max-width: 1024px) {
    .imagini-finlanda {
        --num-cols: 2;
        --row-height: 200px;


    }
}

.popup-imagini-finlanda {
    position: fixed;
    top: 0; left: 0;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.popup-imagini-finlanda span {
    position: absolute;
    top: 0; right: 30px;
    font-size: 60px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    z-index: 100;
}

.popup-imagini-finlanda img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid #fff;
    border-radius: 5px;
    width: 750px;
    max-height: 40rem;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width:768px) {
    .popup-imagini-finlanda img {
        width: 95%;
    }
}

.razvansugepl{
    width: 300px;
    height: 200px;
}
.linie-noua-vlad{
    width: 100%;
    border-top: dashed 2px #0f2d8f;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .video-item {
    width: 20%; /* adjust the width to fit your needs */
    margin: 10px;
    background-color: #f7f7f7;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
  }
  
  .video-item video {
    width: 100%;
    height: 400px; /* adjust the height to fit your needs */
    object-fit: cover;
    border-radius: 10px;
  }
  
  .video-item h2 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  .button-padlet {
    border: none;
    font-size: 1.2rem;
    background-color: rgba(15, 45, 143, 0.8);
    margin-top: 2rem;
    margin-bottom: 2rem;
    cursor: pointer;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
}
.unique-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    padding: 20px;
}
.unique-left {
    width: 45%;
    text-align: center;
    padding-left: 190px;
}
.unique-left img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 10px rgb(0, 0, 0)

}
.unique-right {
    width: 50%;
    padding-left: 20px;
}
.unique-right p {
    font-size: 16px;
    line-height: 1.5;
}
.unique-right h2 {
    font-size: 30px;
}

.ziar2{
    -webkit-box-shadow: -5px 2px 15px 5px #000000; 
    box-shadow: -5px 2px 15px 5px #000000;
    width: 40%;
    border: 5px ;
    margin: auto;
    width: 50%;
    padding: 10px  ;
}

.ziar1{
    -webkit-box-shadow: -5px 2px 15px 5px #000000; 
    box-shadow: -5px 2px 15px 5px #000000;
    width: 40%;
    border: 5px ;
    margin: auto;
    width: 50%;
    padding: 10px  ;
    

}
.photo-container {
    display: flex;
    flex-direction: row;
  }

  .greece-section-img1 {
    display: flex;
    flex-direction:row ;
    width: 100%;
    padding: 0 15%;
    justify-content: space-between;
    padding-top: 3rem;
    
}
.greece-section-img1 img {
    width: 500px;
    object-fit: cover;
}
.greece-section-img1 {
    flex-direction: column;

}
.greece-section-img1 img {
    width: 500px;
    object-fit: cover;

}
.greece-section-img1{
    display: flex;
    flex-direction: row;
    row-gap: 20px;
    height: 400px;   
}

/* Grecia Heraklion */
.greece-section-img {
    display: flex;
    width: 100%;
    padding: 0 10%;
    justify-content: space-between;
    height: 350px;
}
.greece-section-img img {
    width: 45%;
}
.piso-img{
    border-radius: 15px;
    box-shadow: 0 0 10px rgb(0, 0, 0)

}
.inner-header-container1 {
    margin-left: -130%;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nume-profesori {
    padding-left: 10rem;
}

.video-romania {
    border-radius: 15px;
    box-shadow: 0 0 100px rgb(255, 255, 255);
    height: 75%;
    width: 30%;
}

