@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');


/*custom properties*/
:root {
    --light-clr: #fff;
    --dark-clr: #504f4f;
    --accent-clr: #1A374D;

    --font-size-xsm: 1.2rem;
    --font-size-sm: 1.6rem;
    --font-size-md: 2rem;
    --font-size-lg: 3rem;


    --font-family: 'Poppins', sans-serif;
    --font-family-secondary: 'Poppins', sans-serif;


    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 700;

    --margin-sm: 1rem;
    --margin-md: 2rem;
    --margin-lg: 3rem;

    --section-spacing: 8rem;

    --gap-sm: 1.5rem;
    --gap-md: 2rem;
    --gap-lg: 4rem;


    --new-accent-clr: #FBE0C4;
    --new-light-clr: #8AB6D6;
    --new-light-drk: #2978B5;
    --new-dark: #0061A8;
}

/*Base styles*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /*10px*/
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-light);
    font-size: var(--font-size-sm);
    color: var(--new-light-drk);

}


a {
    color: var(--dark-clr);
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;

}

i {
    font-size: var(--margin-md);
}

/*POPUP*/
.home .content .medium-txt {
    font-size: 1em;
}


.popup {
    background: url(../images/semok-summer.png);
    width: 300px;
    height: 280px;
    padding: 30px 40px;
    position: absolute;
    top: 150px;
    left: 35px;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    text-align: center;
    z-index: 999;
}

.popup button {
    display: block;
    margin: 0 0 20px auto;
    background-color: transparent;
    font-size: 30px;
    color: #1b075d;
    border: none;
    outline: none;
    cursor: pointer;
}

.popup p {
    font-size: 2em;
    font-weight: 600;
    text-align: center;
    margin: 20px 0;
    line-height: 25px;
    animation:
        typing 2s steps(22),
        blink .5s step-end infinite alternate;

}

.popup h2 {
    animation:
        typing 2s steps(22),
        blink .5s step-end infinite alternate;

}

/*CURSOR BLINKING*/
@keyframes cursor {
    50% {
        border-color: transparent
    }
}

@keyframes typing {
    from {
        width: 0
    }

}

.popup a {
    display: block;
    width: 150px;
    position: relative;
    margin: 10px auto;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
}

/*POPUP ENDS*/


/*Reusable*/
.container {
    max-width: 116rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.place-items-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sm-screen-hidden {
    display: none !important;
}

.d-grid {
    display: grid;
}

.section {
    padding-block: var(--section-spacing);
}



/*NUEVO HEADER SLIDE*/
header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
}

header .brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

header .brand:hover {
    color: #09a6d4;
}

header .navigation {
    position: relative;
}

header .navigation .navigation-items a {
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 300;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:before {
    content: '';
    position: absolute;
    background: #fff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
    width: 100%;
    background: #09a6d4;
}

section {
    padding: 100px 200px;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 140, 255, 0.959);
}

.home:before {
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(251, 3, 3, 0.034);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home .content {
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
    display: none;
}

.home .content.active {
    display: block;
}

.home .content h1 {
    font-size: 3.5em;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 40px;
}

.home .content h1 span {
    font-size: 1.2em;
    font-weight: 600;
}

.home .content p {
    margin-bottom: 65px;
    font-weight: 400;
    font-size:2rem;
    
}

.home .content a {
    background: #fff;
    padding: 15px 35px;
    color: #09a6d4;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
}

.home .content a:hover {
    background: #09a6d4;
    color: #fff;
    transition: 2s ease;
}

.home .media-icons {
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a {
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
}

.home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
}

.home .media-icons a:hover {
    transform: scale(1.3);
    color: #09a6d4;
}

.home img {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-navigation {
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}

.slider-navigation .nav-btn {
    width: 12px;
    height: 12px;
    background: var(--accent-clr);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
    background: var(--accent-clr);
}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
    transform: scale(1.2);
}

.img-slide {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.img-slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}



@media (max-width: 560px) {
    .home .content h1 {
        font-size: 3em;
        line-height: 60px;
    }
}



/*header*/
.header {
    background-color: var(--light-clr);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /*to stay on top of content*/
}

.nav {
    height: 10.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: inherit;
    width: 100%;
    height: 100%;
}

.logo {
    height: 60px;
    width: 150px;
    font-size: var(--margin-md);
    font-weight: var(--font-weight-bold);
    color: var(--accent-clr);
}

.mini-header {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}


.style-new-index {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--new-dark);
    color: var(--light-clr);
    position: absolute;
    top: 50px;
    right: 40px;
    cursor: pointer;
    transition: color .25s;
}

.menu-toggle-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--new-dark);
    color: var(--light-clr);
    cursor: pointer;
    transition: color .25s;
}


.menu-close-icon {
    display: none;
}

.list {
    display: flex;
    flex-direction: column;
    gap: var(--margin-sm)
}

.list-link {
    position: relative;
    color: var(--new-light-drk);
    font-weight: var(--font-weight-normal);
    /*for pseudo elements*/
}

.list-link:hover {
    color: var(--new-dark);
}

/*for pseudo elements
.list-link::after,
.list-link.current::after{
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: .5rem;
    height: .5rem;
    background-color: var(--new-dark);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .25s;

}
*/

.list-link.current::after {
    opacity: 1 !important;
    /*maskes sure always shows up*/
}

.list-link:hover::after {
    opacity: 1;


}

.nav-mobile {
    background-color: #f8f8f8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    transform: translateY(-100%);
    /*hides nav mob content*/
    z-index: -1;
    transition: transform .25s;
}

.nav-mobile ul li ul {
    display: none;
}

.nav-mobile ul li:hover ul {
    display: block;
    line-height: 2;
    background-color: var(--new-dark);
}

.nav-mobile ul li:hover ul li a {
    color: var(--new-accent-clr);
}


/*Nav Javascript styles*/
.nav.active .nav-mobile {
    transform: translateY(8rem);
}

.nav.active .menu-open-icon {
    display: none;

}

.nav.active .menu-close-icon {
    display: block;

}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    z-index: -1;
    opacity: 0;
    transform: scale(0);
    transition: opacity .5s;

}

.header.active::before {
    opacity: 1;
    transform: scale(1);
}

.header.active-scroll {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

/*Video section*/
.showcase-1 {
    display: flex;
    flex-direction: row;
    align-content: center;
}

.showcase-1 video {
    position: inherit;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    opacity: 0.8;
}


.text-s {
    position: absolute;
    margin: 200px auto;
    z-index: 10;
    text-align: center;
    color: #deebe7
}

.text-s h2 {
    font-size: 3em;
    font-weight: 800px;
    line-height: 1em;
    text-transform: uppercase;
}

.text-s p {
    font-size: 1em;
    margin: 20px auto;
    font-weight: 400;
    width: 420px;
    max-width: 700px;
}

.overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3291bd;
    mix-blend-mode: overlay;
}

.oprema-descrip {
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 40px auto;
}

.oprema-wrapper {
    text-align: center;

}

.oprema-descrip .oprema-wrapper .description {
    font-size: 1.2em;
    font-weight: 300;
    width: 450px;
    color: var(--new-dark);
}

.ozoprema-descrip .ozoprema-wrapper .description {
    font-size: 1.2em;
    font-weight: 300;
    width: 450px;
    color: var(--new-dark);
}

.ozoprema-descrip {
    width: 100%;
    display: flex;
}

.ozoprema-descrip .ozoprema-wrapper {
    margin: 50px auto;

}


.flex-wrapper {
    display: flex;
    flex-direction: column;
    background: var(--light-clr);
    margin-top: 50px;


}

.flex-reverse {
    display: flex;
    flex-direction: column;
    background: var(--light-clr);
    margin-top: 50px;


}

.item-description {
    width: 100%;
    height: 100px;
    margin-top: 30px;
    text-align: center;
}

.gallery-highlight {
    width: 100%;
}

.item-preview {
    display: flex;
    flex-direction: row;
    width: 148px;
    height: 130px;
}

.item-preview img {
    width: 100%;
    object-fit: cover;
}




/*Pagination Page*/

.pag-block {
    width: 100%;
    border: 3px blue;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;

}

.pagination {
    font-family: var(--font-family);
    text-align: center;
}

.pagination a {
    color: #000;
    text-decoration: none;
    padding: 8px 15px;
    display: inline-block;
}

.pagination a.aktive {
    background-color: hsl(120, 100%, 70%);
    font-weight: bold;
    border-radius: 5px;
}

.pagination a:hover:not(.active) {
    background-color: hsl(0, 0%, 66%);

}


/*Pagination Page ENDS*/



/*Showcase Section*/
.section-wm::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images-bazen-lr/FOTO.PiscinaENAC.jpg);
    background-size: 500px;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: .05;
    position: fixed;
    z-index: -1;

}


.showcase {
    margin-top: 8rem;
}

.showcase-container,
.popular-destinations-container,
.plan-trip-container {
    gap: var(--gap-lg);
}

.image-group {
    grid-template-columns: 2rem repeat(2, 1fr) 2rem repeat(2, 1fr) 2rem;
}

.image-box {
    min-height: 25rem;
    box-shadow: 2px 2px 1rem rgba(0, 0, 0, .1);
    overflow: hidden;
}

.showcase .image-box {
    min-height: 25rem;
}

.image-box img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s;

}

.image-box:hover img {
    transform: scale(1.1);
}

.image-left {
    grid-column: 1/4;
    grid-row: 1/span 10;
    z-index: 5;
}

.image-center {
    grid-column: 3/6;
    grid-row: 7/span 10;

}

.image-center:hover {
    transition: 0.5s ease;
    z-index: 999;
}

.image-right {
    grid-column: 5/-1;
    grid-row: 3/span 10;
    z-index: 5;
}

.tagline {
    display: inline-block;
    font-size: var(--font-size-xsm);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    color: var(--new-light-clr);
    margin-bottom: var(--margin-sm);

}

.title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--margin-md);
    color: var(--new-dark)
}

.main-title {
    font-size: var(--font-size-lg);

}

.main-title a {
    color: var(--new-dark);
}

.main-title a:hover {
    color: var(--new-light-clr);
    transition: 2s ease;
}

.accent-text {
    color: var(--new-dark);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-md);
    font-family: var(--font-family-secondary);
}


.description {
    margin-bottom: var(--margin-lg);
    color: var(--new-dark);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-md);
}

.description-newsletter {
    margin-bottom: var(--margin-lg);
    color: #fff;
    font-weight: 300;
    font-size: var(--font-size-sm);
}

.btn {
    display: inline-block;
    background-color: var(--new-dark);
    color: var(--light-clr);
    padding: 1rem 2.5rem;
    transition: background-color 1.25s;
}

.btn:hover {
    background-color: #09a6d4;
    color: #fff;
}

/*Popular destinations*/
.secondary-grid,
.plan-trip {
    gap: var(--gap-lg);
}

.beach-data-wrapper {
    position: relative;
}

.beach-data-wrapper.image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.beach-data {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.beach-data-inner {
    width: 100%;
    background-color: var(--light-clr);
    padding: 1rem;

}

.beach-name {
    font-size: var(--font-size-sm);
    margin-bottom: var(--margin-sm);
}

.beach-location,
.beach-location .accent-text {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: var(--font-size-xsm);
}

.btn.place-items-center {
    display: inline-flex;
}

/*Newsletter*/

.newsletter {
    background: url(../images-bazen-lr/merdevine.jpg) center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.newsletter::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: -1;

}

.newsletter::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: -1;

}

.newsletter-container {
    display: flex;
    justify-content: center;

}

.newsletter-container-inner {
    max-width: 78rem;
    text-align: center;
    color: var(--light-clr);
}

.newsletter h2 {
    color: #fff;
}

.btn-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--gap-md);

}

.btn-light {
    background-color: var(--light-clr);
    color: var(--dark-clr);
}

.btn-light:hover {
    color: var(--light-clr);
}

/*Container-Flex-new*/

.new-flex {
    width: 90%;
    margin: 0 auto;

}

.flex-container {
    height: 100%;
    width: 100%;

}

.image-cont img {
    object-fit: cover;
    width: 100%;
    height: 550px;
}

.container-right-img {
    display: flex;
    height: 100%;
    width: 80%;
    margin: 70px auto;
    flex-direction: column-reverse;
}

.flex-container .reversed {
    display: flex;
    flex-direction: column-reverse;
}


.content-right {
    width: 100%;
    margin: 20px 0;
}



/*Footer*/


.footer {
    background-color: var(--light-clr);
    padding-bottom: 4rem;
    margin-top: 80px;

}

.footer-container-inner {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: var(--gap-md);
}

.contact-information address {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-information .list {
    flex-direction: row;
    margin-top: 1.5rem;
}

.footer .link {
    transition: color .25s;
}

.footer .list-link::after {
    display: none;

}

.footer .list-link:hover {
    color: var(--new-light-clr);
}

.footer-title {
    font-size: var(--font-size-sm);
}

.underline {
    text-decoration: underline;
    color: var(--new-dark);
}

.footer-separator {
    margin-block: 2.5rem;
    opacity: .2;
}


.copyright {
    opacity: .8;
}

.copyright a {
    color: var(--new-light-clr);
}

/*KONTAKT PAGE*/


.header-wrapper {
    height: 100vh;
    width: 100%;
    height: 50vh;
    max-width: 100%;
    background-image: url(../images-bazen-lr/merdevine.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    justify-content: center;
    align-items: center;
}

.header-galerija {
    width: 100%;
    height: 70vh;
    max-width: 100%;
    background-image: url(../images-bazen-lr/SLIKA\ 3-min.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;

}



.header-galerija .galerija-txt {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    padding-top: 100px;


}

.header-container {
    display: flex;
    align-items: flex-start;
    padding: 350px 50px;
    font-size: var(--font-size-md);
    justify-content: left;
}

.map {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 50px;
}

.map-container {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 30px auto;
}

.text-contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-contact .logo {
    margin: 30px auto
}

.text-contact i {
    margin-top: 30px;
    line-height: 30px;
}

.text-contact a {
    margin-left: 20px;
}

.contact-text {
    margin: 100px auto;
    width: 100%;
    height: 100%;
    text-align: center;
}

.contact-heading h2 {
    font-size: var(--font-size-lg);
}

.contact-heading p {
    font-size: var(--font-size-sm)
}

.contact-form {
    max-width: 600px;
    margin: auto;
    margin-top: 100px;
    padding: 0 10px;
    overflow: hidden;
}

.contact-form-text {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0;
    border: 0;
    background: #deebe7;
    padding: 20px 40px;
    outline: none;
    color: var(--dark-clr);
    transition: 0.5s;
}

.contact-form-text:focus {
    box-shadow: 0 0 10px 4px #1A374D;
}

textarea.contact-form-text {
    resize: none;
    height: 120px;
}

.contact-form-btn {
    float: right;
    border: 0;
    background: #34495e;
    color: #fff;
    padding: 12px 50px;
    margin: 30px auto;
    border-radius: 20px;
    cursor: pointer;
}

.contact-form-btn:hover {
    background: #2980b9;
}

/*Services Section*/
.service {
    padding: 100px 0;
    height: 80vh;
    justify-content: center;
    align-items: center;
}

.max-width {
    max-width: 1300px;
    padding: 0 45px;
    margin: auto;
}

.max-width .serv-text {
    text-align: center;
    position: relative;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 60px;
    padding-bottom: 20px;
}

.max-width .serv-text::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 3px;
    background: var(--new-accent-clr);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    padding: 50px 25px;
    margin-top: 15px;
    width: calc(26% - 20px);
    border-radius: 6px;
    background-color: var(--light-clr);
    text-align: center;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card:hover {
    background-color: var(--new-dark);
    color: var(--light-clr);
}

.box {
    transition: all 0.3s ease;
}

.card:hover .box {
    transform: scale(1.05);
}

.box i {
    font-size: 30px;
}

.box p {
    font-size: 18px;
}


/*Gallery*/


.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family);
    width: 100%;
    min-height: 100vh;
}

.gallery-2 {
    width: 80%;
    padding: 30px 0;
    text-align: center;
}

.heading-galerija {
    text-transform: uppercase;
    padding-bottom: 30px;
    font-size: var(--font-size-lg);
    font-weight: 300;
    letter-spacing: 3px;
}

.gal-content {
    padding: 10%;
}

.gal-content h3 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}


.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    column-gap: 25px;

}

.main-content .gallery-box {
    position: relative;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, .15);
    height: 250px;
    overflow: hidden;
}

.main-content .gallery-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: all 0.5s ease;
}

.main-content .gallery-box:hover::before {
    top: 0;
    right: calc(100% - 5px);
    z-index: 8;
}

.main-content .gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content .gallery-box .img-text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    top: 0;
    right: 100%;
    transition: all 0.5s ease;
}

.main-content .gallery-box:hover .img-text {
    top: 0;
    right: 0;

}

/*O NAMA*/


.nama-container {
    background: url(../images-bazen-lr/SLIKA\ 16-min.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    color: var(--light-clr);

}

.nama-container .nama-txt span {
    font-weight: 400;
}

.nama-content {
    width: 100%;
    height: 100%;

}

.nama-container-2 {
    width: 85%;
    display: flex;
    flex-direction: column-reverse;
    margin: 50px auto;
}

.nama-second p {
    font-size: var(--font-size-md);
    line-height: 30px;
}


/*CURSOR*/

.cursor {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.5s ease;
    transition-property: background, transform;
    transform-origin: 100%, 100%;
    z-index: 1000;
}


.link-grow {
    transform: scale(1);
    transition: all .3s ease;

}

.hovered-link {
    color: var(--dark-clr);
}


.izgrandja-wrapper {
    background-image: url(../images/Landscape-design-drawing-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    width: 100%;
}

.izgrandja-container {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/*Izgradnja section*/
.work-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    width: 100%;
    background-color: var(--new-dark);
    color: var(--new-light-clr)
}

.work-container {
    display: flex;
    width: 80%;
    line-height: 1.5;
}

.work-title {
    font-size: 2.2rem;
    padding-bottom: 20px;
}


.descrip-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 70vh;
    width: 100%;
    color: var(--new-dark);
}

.descrip-content {
    width: 80%;
}

/**MEDIA QUERIES*/
@media only screen and (max-width: 600px) {
    .waves {
        position: absolute;
        top: 738px;
        right: 0px;
        width: 100%;
        height: 20vh;
        margin-bottom: -7px;


    }


    .popup {
        background: url(../images/semok-summer.png);
        width: 360px;
         height: 280px;
        padding: 30px 40px;
        position: fixed;
        top: 350px;
        left: 25px;
        border-radius: 8px;
        font-family: "Poppins", sans-serif;
        text-align: center;
        z-index: 999;
    }

    .content-block{
        flex-direction: column;
        width: 90%;
           
    }

    .sectioni  .content-block{
                margin-top: 70px;

    }

    .sectioni .reverzed{
        flex-direction: column;
        margin-top: 70px;
        
    }


          .reverzed .slider {
              width: 90%;
              height: 300px;
              margin: 0 auto;
          }

    .content-block .slider{
        width: 90%;
        height: 300px;
        margin: 0 auto;
    }

        .content-block .main-text{
            width: 80%;
            margin: 0 auto;
        }

                .content-block .main-text .text-content {
                    width: 350px;
                    margin: 0 auto;
                }
    .reverzed{
        flex-direction: column;
        width: 90%;
    }

   .main-text .text-content{
        margin-top: 30px;
    }

    


}

@media only screen and (min-width: 600px) {

    .waves {
        position: absolute;
        top: 739px;
        right: 0px;
        width: 100%;
        height: 20vh;
        margin-bottom: -7px;


    }


    .popup {
        background: url(../images/semok-summer.png);
        width: 450px;
        padding: 30px 40px;
        position: fixed;
        top: 350px;
        left: 120px;
        border-radius: 8px;
        font-family: "Poppins", sans-serif;
        text-align: center;
        z-index: 999;
    }

}

@media screen and (min-width: 320px) {
    .btn-group {
        flex-direction: row;
    }

    .service {
        height: 100%;
        width: 100%;
    }

    .card {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

 

}





@media screen and (min-width: 769px) {



    .waves {
        position: absolute;
        top: 350px;
        right: 0px;
        width: 100%;
        height: 20vh;
        margin-bottom: -7px;


    }

    .showcase-container,
    .popular-destinations-container,
    .plan-trip-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-1 {
        order: 0;
    }

    .order-2 {
        order: 1;
    }

    .image-box {
        min-height: 35rem;
    }

    .beach-data-inner {
        padding: 1.5rem;
    }

    .secondary-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column: 1/-1;
    }

    .image-box-right {
        grid-column: span 2;
    }

    .image-box-right .beach-data-inner {
        width: 50%;
    }



}


@media screen and (min-width: 767px) {

    .popup {
        background-color: #ffffff;
        width: 450px;
        height: 280px;
        padding: 30px 40px;
        position: fixed;
        top: 250px;
        left: 550px;
        border-radius: 8px;
        font-family: "Poppins", sans-serif;
        text-align: center;
        z-index: 999;
    }


    .home .content .medium-txt {
        font-size: 1.2em;
    }
    
    
    .home .content p {
        font-size: 2rem;
    }
    
    
    .home .content .dark-txt{
        padding-bottom: 150px;

    }

    /*test waves*/

    .waves {
        position: absolute;
        top: 300px;
        right: 0px;
        width: 100%;
        height: 40vh;
        margin-bottom: -7px;


    }

    .parallax>use {
        -webkit-animation: moveForever 25s cubic-bezier(.55, .5, .45, .5) infinite;
        animation: moveForever 25s cubic-bezier(.55, .5, .45, .5) infinite;
    }

    .parallax>use:nth-child(1) {
        -webkit-animation-delay: -2s;
        animation-delay: -2s;
        -webkit-animation-duration: 7s;
        animation-duration: 7s;
    }

    .parallax>use:nth-child(2) {
        -webkit-animation-delay: -3s;
        animation-delay: -3s;
        -webkit-animation-duration: 10s;
        animation-duration: 10s;
    }

    .parallax>use:nth-child(3) {
        -webkit-animation-delay: -4s;
        animation-delay: -4s;
        -webkit-animation-duration: 13s;
        animation-duration: 13s;
    }

    .parallax>use:nth-child(4) {
        -webkit-animation-delay: -5s;
        animation-delay: -5s;
        -webkit-animation-duration: 20s;
        animation-duration: 20s;
    }

    @-webkit-keyframes moveForever {
        0% {
            -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
        }

        100% {
            -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
        }
    }

    @keyframes moveForever {
        0% {
            -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
        }

        100% {
            -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
        }
    }



    .nav {
        width: 100%;
    }

    .nav-mobile {
        background-color: transparent;
        position: initial;
        width: initial;
        padding: initial;
        z-index: initial;
        transform: initial;
        transition: initial;
    }


    .nav-mobile ul li ul {
        position: absolute;
        top: 55px;
        text-align: center;
        display: none;
    }

    .nav-mobile ul li ul li {
        line-height: 2;
        width: 110%;
        background-color: var(--new-dark);
        color: var(--new-light-clr);
    }

    .nav-mobile ul li:hover ul {
        display: block;
        cursor: pointer;
    }

    .nav-mobile ul li:hover ul li a {
        color: var(--new-accent-clr);
    }

    .showcase-data {
        margin-top: 120px;
    }

    .newsletter {
        margin-top: 100px;
    }

    .content {
        width: 100%;
        display: flex;
        justify-content: space-between;

    }

    .card {
        display: flex;
        width: 300px;
        padding-left: 20px;
    }


    .nav .list {
        flex-direction: row;
    }

    .list-link::after,
    .list-link.current::after {
        top: initial;
        right: initial;
        left: 50%;
        transform: translateX(-50%);
        bottom: -1rem;
    }

    .sm-screen-hidden {
        display: block !important;
    }

    .lg-screen-hidden {
        display: none;
    }

    .nav.active .nav-mobile {
        transform: initial;
    }

    .header::before {
        display: none;
    }

    .showcase-container,
    .popular-destinations-container,
    .plan-trip-container {
        gap: 10rem;
    }

    .showcase .image-box {
        min-height: 35rem;
    }

    .secondary-grid {
        grid-template-columns: 2fr repeat(6, 1fr) 2fr;
    }

    .image-box-left {
        grid-column: 1/3;
    }

    .image-box-center {
        grid-column: 3/7;
    }

    .image-box-right {
        grid-column: 7/-1;
    }

    .width-50 {
        width: 50%;
    }

    .image-box-right .beach-data-inner {
        width: 100%;

    }


    .work-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80vh;
        width: 100%;
        background-color: var(--new-dark);
        color: var(--new-light-clr)
    }

    .work-container::before {
        content: '';
        position: absolute;
        border: 1px solid var(--new-accent-clr);
        background-color: var(--new-accent-clr);
        height: 5px;
        width: 150px;
    }

    .work-container {
        width: 1000px;
    }

    .work-title {
        font-size: 3.0rem;
        padding-bottom: 20px;
        margin-top: 30px;
    }

    .work-text {
        font-size: 1.6rem;
    }

    .descrip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        height: 70vh;
        width: 100%;
        color: var(--new-dark);
    }

    .descrip-content {
        line-height: 2;
    }

    .content-par {
        display: flex;
        justify-content: space-around;
        width: 1200px;
    }

    .descrip-content h4 {
        font-size: 2rem;
        font-weight: 500;
    }

    .descrip-content h5 {
        font-size: 1.6rem;
    }

    .descrip-content .solo {
        display: flex;
        align-items: center;
    }

    .solo p {
        font-size: 1.5rem;
    }

    .solo {
        padding-left: 80px;
    }

    .description-iz::after {
        content: '';
        position: absolute;
        background-color: var(--new-dark);
        height: 5px;
        width: 200px;
    }

    /*FLEXBOXES OPREMA*/



    .oprema-flex {
        height: 100%;
        width: 100%;
        margin: 0;
    }

    .flex-wrapper {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100%;
        border: 1px solid blue;
    }

    .flex-reverse {
        display: flex;
        flex-direction: row-reverse;
        margin-top: 0;
        width: 100%;
        height: 100%;
        border: 1px solid blue;

    }

    .item-description {
        width: 50%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        margin-top: 0;

    }

    .item-gallery {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;

    }

    .item-gallery img {
        width: 100%;
        height: 500px;
        object-fit: cover;

    }

    .image {
        width: 100%;
        height: 100%;
    }




    .flex-reverse .item-gallery img {
        width: 500px;
        height: 500px;

    }




    .oprema-descrip .description {
        width: 1000px;
        margin: 0 auto;
        font-weight: 400;
        font-size: 2.3rem;
        line-height: 2;

    }

    .description-item {
        width: 70%;
        font-size: 1.5rem;
        line-height: 2;
        text-align: left;
    }

    .oprema-descrip {
        height: 30vh;
    }

    .oprema-wrapper {
        width: 80%;
        margin: 50px auto;
        text-align: center;
    }

    /*Video oprema*/
    .showcase-1 {
        position: inherit;
        right: 0;
        width: 100%;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        opacity: 4;
        z-index: 2;
        margin-bottom: 60px;
    }

    .showcase-1 video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.99;
    }

    .text-s {
        position: relative;
        z-index: 10;

    }

    .text-s h2 {
        font-size: 5em;
        font-weight: 800px;
        line-height: 1em;
        text-transform: uppercase;
    }

    .text-s h2 span {
        font-weight: 300;
        font-size: 6.5rem;

    }

    .text-s p {
        font-size: 1.8em;
        margin: 20px auto;
        font-weight: 400;
        width: 1000px;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #3291bd;
        mix-blend-mode: overlay;
    }

    /*kontakt information*/

    .map {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-top: 50px;
    }

    .map-container {
        width: 50%;
        display: flex;
        justify-content: center;
    }

    .text-contact {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /*Gallery*/


    .gallery {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: var(--font-family);
        width: 100%;
        min-height: 100vh;
    }

    .gallery-2 {
        width: 90%;
        padding: 10px 0;
        text-align: center;
    }

    .heading-galerija {
        text-transform: uppercase;
        padding-bottom: 30px;
        font-size: 4.5rem;
        font-weight: 500;
        letter-spacing: 3px;
    }

    .gal-content {
        padding: 10%;
    }

    .gal-content h3 {
        font-size: 2.5rem;
        text-transform: uppercase;
        margin-bottom: 15px;
    }


    .main-content {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 2fr);
        row-gap: 5px;
        column-gap: 20px;

    }

    .main-content .gallery-box {
        position: relative;
        cursor: pointer;
        margin-bottom: 15px;
        box-shadow: 15px 15px 40px rgba(0, 0, 0, .15);
        height: 250px;
        overflow: hidden;
    }

    .main-content .gallery-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        transition: all 0.5s ease;
    }

    .main-content .gallery-box:hover::before {
        top: 0;
        right: calc(100% - 5px);
        z-index: 8;
    }

    .main-content .gallery-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main-content .gallery-box .img-text {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.9);
        width: 100%;
        height: 100%;
        top: 0;
        right: 100%;
        transition: all 0.5s ease;
    }

    .main-content .gallery-box:hover .img-text {
        top: 0;
        right: 0;

    }


    .header-wrapper,
    .header-galerija {
        height: 100vh;
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }



    .header-galerija .galerija-txt h1 {
        font-size: 6rem;
        font-weight: 300;
        padding-top: 300px;
        color: #fff;
        text-align: center;

    }


    .header-galerija .galerija-txt h1 span {
        font-size: 6.2rem;
        font-weight: 600;
    }



    /*ONAMA*/

    .nama-wrapper {
        padding: 0;
    }

    .nama-container {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 90vh;
        width: auto;
        font-size: 3rem;



    }

    .nama-container .nama-txt h1 {
        font-size: 5rem;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 5px;
        line-height: 75px;
        margin-bottom: 40px;
        margin-top: 280px;
    }

        .nama-container .nama-txt h1 span {
        font-size: 6rem;
        font-weight: 600;
    }

    .nama-content {
        width: 100%;
        height: 100%;
        margin-top: 20px;
    }

    .nama-container-2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nama-img {
        display: flex;
        justify-content: center;
        width: 80%;
        height: 100%;
    }

    .nama-img img {
        border-radius: 20px;
        height: 400px;
        width: 450px;

    }

    .nama-second {
        width: 50%;
        text-align: justify;
        line-height: 30px;
        padding: 10px 40px;
    }

    .nama-second h2 {
        margin-bottom: 50px;
    }

    .oprema-descrip .oprema-wrapper .description {
        font-size: 1.8em;
        font-weight: 400;
        text-transform: uppercase;
        width: 700px;
        color: var(--new-dark);
    }

    .ozoprema-descrip {
        width: 100%;
        display: flex;
    }

    .ozoprema-descrip .ozoprema-wrapper {
        margin: 100px auto;

    }

    .ozoprema-descrip .ozoprema-wrapper .description,
    .ozoprema-descrip .ozoprema-wrapper .descr2 {
        font-size: 1.2em;

    }


    /*Flex new*/

    .new-flex {

        width: 100%;
        height: 100%;
    }

    .flex-container {
        width: 100%;
        height: 100%;

    }

    .container-right-img {
        width: 95%;
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        margin: 0 auto;
    }

    .image-cont {
        width: 50%;
        height: 100%;
    }

    .image-cont .right {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }




    .content-right {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 2;
    }

    .content-right .text-content {
        margin: 0 auto;
    }

    .content-right .small-text {
        width: 500px;
    }

    .flex-container .reversed {
        flex-direction: row-reverse;
        height: 60vh;
    }

    /*dodatna oprema*/


    .doprema-container {
        width: 100%;
        height: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;

    }

    .doprema-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .rev {
        flex-direction: row-reverse;
    }

    .doprema-content {
        width: 1200px;
        border: 1px solid blue;
        display: flex;

    }

    .doprema-img-container {
        width: 50%;
        display: flex;
    }

    .image-container .image-screen img {
        width: 400px;
        height: auto;
    }

    .doprema-content .doprema-text-container {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .doprema-content .doprema-text-container .text-content {
        width: 80%;
        text-align: center;

    }



}




@media (max-width: 1040px) {




    .newsletter {
        margin-top: 100px;
    }


    header {
        padding: 12px 20px;
    }

    section {
        padding: 100px 20px;
    }

    .home .media-icons {
        right: 15px;
    }

    header .navigation {
        display: none;
    }

    header .navigation.active {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1, 1, 1, 0.5);
    }

    header .navigation .navigation-items a {
        color: #222;
        font-size: 1.2em;
        margin: 20px;
    }

    header .navigation .navigation-items a:before {
        background: #222;
        height: 5px;
    }

    header .navigation .navigation-items {
        background: #fff;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }

    .menu-btn {
        background: url(menu.png)no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .menu-btn.active {
        z-index: 999;
        background: url(close.png)no-repeat;
        background-size: 25px;
        background-position: center;
        transition: 0.3s ease;
    }
}




@media only screen and (min-width: 1201px) {
    .waves {
        position: absolute;
        top: 661px;
        right: 0px;
        width: 100%;
        height: 30vh;
        margin-bottom: -7px;


    }

    .popup {
      background: url(../images/semok-summer.png);
        width: 500px;
        height: 280px;
        padding: 30px 40px;
        position: absolute;
        top: 340px;
        left: 720px;
        border-radius: 8px;
        font-family: "Poppins", sans-serif;
        text-align: center;
        z-index: 999;
    }

    /*TEST SLIDER NUEVO*/


    .test-slider {
        width: 100%;
        height: 100%;
     

    }

    .slider-content {
        display: flex;
        width: 100%;
        height: 80vh;
    }

    .slider-content .slider-text {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-text .text-content {
        width: 450px;
    }

    .slider-frame {
        overflow: hidden;
        height: 100%;
        width: 50%;

    }

    /*---------- SLIDE ANIMATION --------------*/


    @keyframes slide_animation {
        0% {
            left: 0px;
        }

        10% {
            left: 0px;
        }

        20% {
            left: 1200px;
        }

        30% {
            left: 1200px;
        }

        40% {
            left: 2400px;
        }

        50% {
            left: 2400px;
        }

        60% {
            left: 1200px;
        }

        70% {
            left: 1200px;
        }

        80% {
            left: 0px;
        }

        90% {
            left: 0px;
        }

        100% {
            left: 0px;
        }
    }

    @-webkit-keyframes slide_animation {
        0% {
            left: 0px;
        }

        10% {
            left: 0px;
        }

        20% {
            left: 1200px;
        }

        30% {
            left: 1200px;
        }

        40% {
            left: 2400px;
        }

        50% {
            left: 2400px;
        }

        60% {
            left: 1200px;
        }

        70% {
            left: 1200px;
        }

        80% {
            left: 0px;
        }

        90% {
            left: 0px;
        }

        100% {
            left: 0px;
        }
    }

    .slide-images {
        width: 3600px;
        height: 800px;
        margin: 0 0 0 -2400px;
        position: relative;
        -webkit-animation-name: slide_animation;
        animation-name: slide_animation;
        -webkit-animation-duration: 33s;
        animation-duration: 33s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;
        -webkit-animation-play-state: running;
        animation-play-state: running;
    }

    .img-container {
        height: 800px;
        width: 1200px;
        position: relative;
        float: left;
    }

  .img-container img{
    display: flex;
    object-fit: fill;
  }

    .test-slider .reversed{
        height: 70vh;
        display: flex;
        flex-direction: row-reverse;
    }


}

/*NUEVO PRUEBA SLIDER */
.sectionz{
    height: 100%;
    width: 100%;
    border: 1px solid red;
}

.main-flex {
    width: 100%;
    display: flex;
}
.rev-flex {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
}

.slider-container {
    height: 70vh;
    width: 50%;
    position: relative;
    overflow: hidden;
    text-align: center;
}



.main-text{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-text .text-content{
    width: 500px;
}


.menu {
    position: absolute;
    left: 0;
    z-index: 900;
    width: 100%;
    bottom: 0;
}

.menu label {
    cursor: pointer;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50px;
    margin: 0 .2em 1em;

    &:hover {
        background: red;
    }
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 10;
    padding: 8em 1em 0;
    background-size: cover;
    background-position: 50% 50%;
    transition: left 0s .75s;
}

[id^="slide"]:checked+.slide {
    left: 0;
    z-index: 100;
    transition: left .65s ease-out;
}

.slide-1 {
    background-image: url("../images-bazen-lr/Ciric\ Nis\ 4.jpg");
}

.slide-2 {
    background-image: url("https://source.unsplash.com/11H1SSVcIxc/1600x900");
}

.slide-3 {
    background-image: url("https://source.unsplash.com/OlZ1nWLEEgM/1600x900");
}

/*SLIDER 2 PRUEBA*/

.content-block{
    display: flex;
    width: 90%;
    margin: 0 auto;
}

.reverzed{
    flex-direction: row-reverse;
    width: 90%;
        margin: 0 auto;
}
  .slider {
      width: 50%;
      height: 500px;
      overflow: hidden;
      position: relative;
  }

  .slider ul {
      display: flex;
      width: 300%;
      height: 500px;
      position: absolute;
      top: 0;
      left: 0;
      list-style: none;
      animation: slider 25s infinite;
  }

  .slider ul li {
      width: 100%;
      height: 500px;
  }

  .slider ul li img {
      width: 100%;
      height: 500px;
      object-fit: cover;
  }

  @keyframes slider {
      0% {
          left: 0;
      }

      33.33% {
          left: -100%;
      }

      66.66% {
          left: -200%;
      }

      100% {
          left: -300%;
      }
  }