* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.showcasePRO .loader {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #f74843;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.showcasePRO {
    position: relative;
    right: 0;
    width: 100%;
    height: 72vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    animation: fadeInBackground 2s ease forwards;
    background-repeat: no-repeat;
    border-bottom: 1px solid #f74843;
    background-position: center;
    background-color: #000;
    background-size: cover;
    text-align: center;
    transition: 0.5s;
    z-index: 2;
}

.text {
    position: relative;
    z-index: 10;
}

.text h2 {
    padding-top: 40vh;
    font-size: 3em;
    font-weight: 800;
    color: #f74843;
    line-height: 1em;
}

@keyframes fadeInBackground {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.showcasePRO .text>* {
    opacity: 0;
    animation: fadeInText 2s 0.3s ease forwards;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        font-size: 15px;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;

        transform: translateX(0);
    }
}

/*--Services page--*/

.services {
    width: 80%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 50px;
}

.services h2 {
    font-size: 30px;
}

.services-col {
    flex-basis: 48%;
    padding: 30px 2px;
}

.services-col img {
    width: 100%;
    box-shadow: 0 5px 5px 0 rgba(15, 22, 38, 0.2);
    transition: 0.5s;
}

.services-col h1 {
    padding-top: 0;
}

.services-col h3 {
    text-align: left;
    margin-bottom: -10px;
}

/*distance to top. Left and right is zero, distance to bottom*/
.services-col p {
    padding: 15px 0 25px;
}

.services-row {
    margin-top: 8%;
    display: flex;
    justify-content: space-between;
}

.hero-btn {
    display: inline-block;
    font-size: 1em;
    background: #f74843;
    padding: 10px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    margin-top: 3%;
    color: #111;
    letter-spacing: 2px;
    transition: 0.2s;
}

.hero-btn:hover {
    transition: 0.2s;
    letter-spacing: 6px;
    color: #fff;
}

#btn3 {
    display: inline-block;
    font-size: 0.7em;
    background: #f74843;
    padding: 10px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    margin-top: 3%;
    color: #fff;
    letter-spacing: 2px;
    transition: 0.2s;
}

#btn3:hover {
    transition: 0.2s;
    letter-spacing: 4px;
}

.redline {
    height: 1px;
    width: 100%;
    background: #f74843;
}

@media(max-width: 767px) {
    body .text h2 {
        padding-top: 40vh;
        font-size: 2.5em;
        font-weight: 800;
        color: #f74843;
        line-height: 1em;
    }

    body .services-row {
        flex-direction: column;
    }

    body .services-row {
        flex-direction: column;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
    body .services-row {
        flex-direction: column;
    }

    body .services-row {
        flex-direction: column;
    }
}

@media only screen and (orientation: landscape) and (min-width: 375px) and (max-width: 918px) {
    body .showcasePRO {
        position: relative;
        right: 0;
        width: 100%;
        height: 100vh;
        padding: 100px;
        display: flex;
        justify-content: space-between;
        animation: fadeInBackground 2s ease forwards;
        background-repeat: no-repeat;
        border-bottom: 1px solid #f74843;
        background-position: center;
        background-color: #000;
        background-size: cover;
        text-align: center;
        transition: 0.5s;
        z-index: 2;
    }
}

@media (max-width: 991px) {

    .showcasePRO,
    .showcasePRO header {
        padding: 40px;
    }

    .text h2 {
        font-size: 3em;
    }
}


.slider-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.slide {
    display: none;
    width: 100%;
    max-height: 600px; /* Set a standard height for all slides */
    object-fit: cover; /* Ensures images cover the area while maintaining aspect ratio */
   
}
.slide.active {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.prev { left: 0; }
.next { right: 0; }

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}