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

/* ----------------------------------------------- Navbar start ------------------------------------------------------------------- */
/* Existing Navbar Styles */
.navbar {
    background: #fff;
    height: 6.25rem; /* 100px */
    display: flex;
    font-size: 2rem;
    z-index: 1000; /* Ensure navbar is above submenu */
    position: fixed;
    top: 0;
    width: 100%; /* Full width */
}

.navbar_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6.25rem;
    width: 100%;
    padding: 0 1rem; /* Padding for smaller screens */
}

#pms_logo {
    height: 3rem;
    width: auto;
    margin: 0;
    margin-left: 112%;
    margin-top: 6%;
}

.navbar_menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin-right: 6%;
    margin-bottom: 1%;
}

.navbar_item {
    display: flex;
    align-items: center;
    position: relative; /* For absolute positioning of submenu */
}

.navbar_button {
    border: none;
    background-color: #fff;
    margin: 0 1.25rem;
    font-size: 1rem;
    color: #00A651;
    cursor: pointer;
    padding: 0;
    position: relative;
    letter-spacing: 1px;
    margin-top: 3rem;
    display: flex;
    align-items: center;
}

/* Underline Effect on Hover for Navbar Button */
.navbar_item .navbar_button::after {
    content: "";
    background-color: #00A651;
    height: 3px;
    position: absolute;
    width: 0; 
    left: 0;
    bottom: -0.35rem;
    opacity: 0;
    transition: all 0.6s;
    pointer-events: none;
}

.services-toggle:hover .navbar_button::after {
    opacity: 1;
    width: 100%; 
}

/* Navbar Links Styling */
.navbar_menu .navbar_links {
    color: #00A651;
    display: flex;
    position: relative;
    text-decoration: none;
    margin: 0 1.25rem;
    font-size: 1rem;
    margin-top: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    align-items: center;
}

.navbar_menu .navbar_links::after {
    content: "";
    background-color: #00A651;
    height: 3px;
    width: 0%;
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    opacity: 0;
    transition: all 0.6s;
    pointer-events: none;
}

.navbar_menu .navbar_links:hover::after {
    opacity: 1;
    width: 100%;
}

/* Language Switcher Button Styling */
.navbar_lang {
    border: none;
    background-color: #fff;
    color: #9e9b9b;
    display: flex;
    position: relative;
    text-decoration: none;
    margin: 0 1.25rem;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 1rem;
    cursor: pointer;
}

/* Sticky Navbar Styling */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    height: 6.25rem;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure navbar is above submenu */
}

.content-wrapper {
    padding-top: 6.25rem; 
}

/* Hover-Based Submenu Display */
.services-toggle {
    position: relative;
}

/* Hover-Maintaining Div Styling */
.hover-maintain {
    height: 2rem; /* Increased height from 1rem to 2rem */
    width: 100%; /* Span the full width */
    /* No box-shadow or background */
}

/* Submenu Styling */
.services-slide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); /* Slight upward movement for animation */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 105.5%;
    left: -2.7rem;
    background: #fff;
    border: none;
    z-index: 999; /* Below navbar */
    width: 17rem; /* 1rem margin on both sides */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    list-style-type: none;
}

.services-toggle.active .services-slide {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Move to original position */
}

/* Submenu Links Styling */
.serv-nav-item {
    display: block;
    text-decoration: none;
    color: #00A651;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    text-align: left;
    padding-left: 4rem;
    letter-spacing: 1px;
}

.services-slide .serv-nav-item {
    justify-content: center;
}

.serv-nav-item:hover {
    color: #9e9b9b;
}

.en-slide.show-lang-slide {
    display: block;
}

.toggle-slide {
    display: none;
    position: absolute;
    top: 6.2rem;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    text-align: center;
}

#fiala {
    margin-top: 1%;
}

/* Show the submenu when active */
.services-toggle.active .services-slide {
    display: block;
}

/* Disable transitions when no-transition class is present */
.services-toggle.no-transition .services-slide {
    transition: none;
}

.language-switcher-container {
    position: relative;
    display: inline-block;
}

.language-toggle {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
}

#language-toggle-button {
    font-size: 1rem;
    margin-top: 3rem;
    border: none;
    color: #9e9b9b;
}

.language-dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-dropdown li {
    width: 100%;
}

.language-dropdown li button {
    width: 100%;
    padding: 1.2rem 0.75rem;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    color: #9e9b9b;
    font-size: 1rem;
}

.language-dropdown li button:hover {
    color: #00A651;
}

#anchor_nav {
    color: #00A651;
    margin-left: -1rem !important;
    margin-right: 0.9rem;
    padding: 0;
    font-size: 1rem;
    margin-top: 1rem;
}
    


/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 

    .navbar_container {
        display: flex;
        justify-content: space-between;
        margin-left: 0;
    }

    .navbar_menu,
    .services-slide,
    .en-slide {
        display: none;
    }

    .navbar.sticky {
        position: fixed;
        top: 0;
        width: 100%;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    #mobile_dash_menu {
        margin-right: 3rem;
        cursor: pointer;
        display: block;
    }

    #mobile_dash_menu .bar {
        display: block;
        width: 1.9rem;
        height: 3px;
        background-color: #00A651;
        margin: 0.4rem 0;
    } 

    #pms_logo {
        height: 3rem;
        width: auto;
        margin: 0; /* Remove margin to center it better */
        margin-left: 44%;
        margin-top: 7%;
    }

    /* Styling the toggle-slide */
    .toggle-slide {
        display: none;
        position: absolute;
        top: 6.2rem;
        width: 100%;
        background-color: #fff;
        z-index: 999;
        text-align: center;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
        left: 0;
        right: 0;
    }

    .toggle-slide.show-toggle-slide {
        display: block;
    }

    /* Show the toggle sublists */
    .toggle-slide .show-sublist {
        display: block !important;
    }

    /* Ensure the navbar links are styled correctly for mobile */
    .toggle-slide a {
        display: block;
        padding: 3vh;
        text-decoration: none;
        color: #00A651;
        margin: 0;
        font-size: 2.6vw;
    }

    .navbar_links::after {
        display: none;
    }

    /* Styling the sublists */
    .sub-services {
        padding-left: 0;
        display: none; /* Hidden by default */
        transition: max-height 0.5s ease, opacity 0.5s ease;
    }

    .sub-services a {
        display: block;
        text-decoration: none;
        color: #fff !important;
        text-align: center;
        margin-right: 0;
        background-color: #00A651 !important;
        padding: 3vh;
        width: 100%;
        margin-left: 0 !important;
        font-size: 2.6vw;
    }

    .toggle-slide #language-toggle-button {
        padding: 0;
        margin: 0;
    }

    #language-toggle-button .navbar_lang {
        display: block;        /* Make it cover the full width */
        width: 100%;           /* Ensure the button takes up the full width */
        height: 8vh;
        padding: 0;
        text-align: center;      /* Align the text to the left */
        cursor: pointer;       /* Ensure the pointer cursor is shown */
        background-color: transparent; /* No background */
        border: none;          /* Remove button border */
        color: #9e9b9b;        /* Button text color */
        margin: 0;
        font-size: 2.6vw;
    }
    
    #language-toggle-button .navbar_lang:hover {
        background-color: #f0f0f0; /* Optional: Background change on hover */
        color: #007f45;            /* Optional: Text color change on hover */
    }

    .services-container {
        display: flex;
        justify-content: center;
        gap: 1.5rem; /* Adjust as needed */
        align-items: first baseline;
        margin-right: 1rem;
    }

    #toggle-services {
        padding-right: 0;
    }

    #toggle-services,
    #anchor_nav {
        display: inline-block;
    }

    #anchor_nav {
        font-size: 2.6vw;
    }
    
    #language-toggle-button-toggle {
        width: 100vw;
        border: none;
        padding: 3vh;
        font-size: 2.4vw;
        color: #9e9b9b;
        align-items: center;
        margin-left: 1%;
    }

    #language-dropdown-toggle {
        width: 100vw;
    }

    .language-btn {
        font-size: 2.4vw !important; /* Ensure the font-size is applied to language buttons */
        color: #9e9b9b;
        background-color: transparent;
        border: none;
        width: 100%;
        text-align: center !important;
        padding: 3vh !important;
    }
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .navbar_menu,
    .services-slide,
    .en-slide {
        display: none;
    }

    .navbar_container {
        display: flex;
        justify-content: space-between; /* Space out the logo and the menu icon */
        align-items: center; /* Vertically center the items */
        height: 6.25rem; /* Ensure the height is consistent */
        padding: 0 1rem; /* Add padding to the sides */
    }

    #mobile_dash_menu {
        cursor: pointer;
        display: block;
        margin-right: 5%;
    }

    #mobile_dash_menu .bar {
        display: block;
        width: 1.9rem;
        height: 3px;
        background-color: #00A651;
        margin: 0.4rem 0;
    } 

    .toggle-slide {
        display: none; /* Initially hidden */
        position: absolute;
        top: 6.2rem;
        width: 100%;
        background-color: #fff;
        z-index: 999;
        text-align: center;
        left: 0;
        right: 0;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    }
    
    .toggle-slide.show-toggle-slide {
        display: block; /* This will make it visible */
        
    }

    .sub-services a,
    .sub-lang a {
        display: block;
        text-decoration: none;
        color: #fff !important;
        text-align: center;
        margin-right: 1.5rem;
        background-color: #00A651 !important;
        padding: 3.2vh;
        font-size: 3.6vw;
    }

    .toggle-slide a {
        display: block;
        padding: 3.2vh;
        text-decoration: none;
        color: #00A651;
        margin: 0;
        font-size: 3.6vw;
    }

    .navbar_links::after {
        display: none;
    }

    #pms_logo {
        margin-left: 11%;
        margin-top: 7%;
    }

    .toggle-slide #language-toggle-button {
        padding: 0;
        margin: 0;
    }
    
    .services-container {
        display: flex;
        justify-content: center;
        gap: 1.5rem; /* Adjust as needed */
        align-items: first baseline;
        margin-right: 1rem;
    }

    #toggle-services {
        padding-right: 0;
    }

    #toggle-services,
    #anchor_nav {
        display: inline-block;
    }

    #anchor_nav {
        font-size: 3.6vw;
    }
    
    #language-toggle-button-toggle {
        width: 100vw;
        border: none;
        padding: 3vh;
        font-size: 3.6vw;
        color: #9e9b9b;
        align-items: center;
        margin-left: 1%;
    }

    #language-dropdown-toggle {
        width: 100vw;
    }

    .language-btn {
        font-size: 3.6vw !important; /* Ensure the font-size is applied to language buttons */
        color: #9e9b9b;
        background-color: transparent;
        border: none;
        width: 100%;
        text-align: center !important;
        padding: 3vh !important;
    }
}


/* For phones */
@media (max-width: 479px) {

    .navbar_menu,
    .services-slide,
    .en-slide {
        display: none;
    }

    .navbar_container {
        display: flex;
        justify-content: space-between; /* Space out the logo and the menu icon */
        align-items: center; /* Vertically center the items */
        height: 6.25rem; /* Ensure the height is consistent */
        padding: 0 1rem; /* Add padding to the sides */
    }

    #mobile_dash_menu {
        cursor: pointer;
        display: block;
        margin-right: 5%;
    }

    #mobile_dash_menu .bar {
        display: block;
        width: 1.9rem;
        height: 3px;
        background-color: #00A651;
        margin: 0.4rem 0;
    } 

    .toggle-slide {
        display: none; /* Initially hidden */
        position: absolute;
        top: 6.2rem;
        width: 100%;
        background-color: #fff;
        z-index: 999;
        text-align: center;
        left: 0;
        right: 0;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    }
    
    .toggle-slide.show-toggle-slide {
        display: block; /* This will make it visible */
        
    }

    .sub-services a,
    .sub-lang a {
        display: block;
        text-decoration: none;
        color: #fff !important;
        text-align: center;
        margin-right: 1.5rem;
        background-color: #00A651 !important;
        padding: 3.2vh;
        font-size: 4.6vw;
    }

    .toggle-slide a {
        display: block;
        padding: 3.2vh;
        text-decoration: none;
        color: #00A651;
        margin: 0;
        font-size: 4.6vw;
    }

    .navbar_links::after {
        display: none;
    }

    #pms_logo {
        margin-left: 11%;
        margin-top: 7%;
    }

    .toggle-slide #language-toggle-button {
        padding: 0;
        margin: 0;
    }
    
    .services-container {
        display: flex;
        justify-content: center;
        gap: 1.5rem; /* Adjust as needed */
        align-items: first baseline;
        margin-right: 1rem;
    }

    #toggle-services {
        padding-right: 0;
    }

    #toggle-services,
    #anchor_nav {
        display: inline-block;
    }

    #anchor_nav {
        font-size: 4.6vw;
    }
    
    #language-toggle-button-toggle {
        width: 100vw;
        border: none;
        padding: 3vh;
        font-size: 4.6vw;
        color: #9e9b9b;
        align-items: center;
        margin-left: 1%;
    }

    #language-dropdown-toggle {
        width: 100vw;
    }

    .language-btn {
        font-size: 4.6vw !important; /* Ensure the font-size is applied to language buttons */
        color: #9e9b9b;
        background-color: transparent;
        border: none;
        width: 100%;
        text-align: center !important;
        padding: 3vh !important;
    }
}

@media (min-width: 1920px) {
    
    .navbar_button {
        border: none;
        background-color: #fff;
        margin: 0 1.25rem;
        font-size: 1.2rem;
        color: #00A651;
        cursor: pointer;
        padding: 0;
        position: relative;
        letter-spacing: 1px;
        margin-top: 3rem;
        display: flex;
        align-items: center;
    }

    /* Navbar Links Styling */
    .navbar_menu .navbar_links {
        color: #00A651;
        display: flex;
        position: relative;
        text-decoration: none;
        margin: 0 1.25rem;
        font-size: 1.2rem;
        margin-top: 1rem;
        letter-spacing: 1px;
        cursor: pointer;
        align-items: center;
    }

    #language-toggle-button {
        font-size: 1.2rem;
        margin-top: 3.2rem;
        border: none;
        color: #9e9b9b;
    }

    .language-dropdown li button {
        width: 100%;
        padding: 1.2rem 0.75rem;
        border: none;
        background: none;
        text-align: left;
        cursor: pointer;
        color: #9e9b9b;
        font-size: 1.2rem;
    }

    #anchor_nav {
        color: #00A651;
        margin-left: -1rem !important;
        margin-right: 0.9rem;
        padding: 0;
        font-size: 1.2rem;
        margin-top: 1rem;
    }

    .serv-nav-item {
        display: block;
        text-decoration: none;
        color: #00A651;
        padding: 1rem 0.75rem;
        font-size: 1.2rem;
        text-align: left;
        padding-left: 4rem;
        letter-spacing: 1px;
    }
}
/* ----------------------------------------------- img start ------------------------------------------------------------------- */

.srvc-bckgrnd {
    position: relative;
    background-image: url("../images/srvc1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw; /* Full width */
    padding-top: 28.13%; /* Aspect ratio: (height/width)*100 = (1125/4000)*100 */
    margin: 0;
    top: 0;
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 
    .srvc-bckgrnd {
        height: 40vh; /* Adjust the height for tablets */
        max-height: 500px;
        min-height: 200px;
        background-size: cover;
    }
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .srvc-bckgrnd {
        height: 30vh; /* Adjust height for phones */
        max-height: 400px;
        min-height: 150px;
        background-size: cover;
    }
}

/* For phones */
@media (max-width: 479px) {
    .srvc-bckgrnd {
        height: 25vh; /* Further adjust height for smaller phones */
        max-height: 300px;
        min-height: 100px;
        background-size: cover;
        background-position: center;
    }
}




/* ----------------------------------------------- info start ------------------------------------------------------------------- */

.info h3 {
    width: 80%;
    height: auto;
    font-size: 1.3vw;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 8%;
    margin-left: 10.3%;
    text-transform: uppercase;
    position: relative;
}

.info h3::before {
    content: '';
    position: absolute;
    bottom: 1.1vw; /* Adjust this value to position the line vertically */
    left: -7.2%; /* Adjust the distance of the line from the text */
    width: 4vw; /* Adjust the width of the line */
    height: 2px; /* Adjust the height/thickness of the line */
    background-color: #00A651; /* Change the color of the line */
}

.info h1 {
    margin-top: 0.5%;
    margin-left: 10.3%;
    font-size: 3vw;
    font-weight: 600;
    margin-bottom: 8%;
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 

    .info h3 {
        font-size: 1rem;
        margin-top: 8%;
        margin-left: 8.2%;
        width: 90%;
    }

    .info h3::before {
        display: none;
    }

    .info h1 {
        margin-left: 8.2%;
        font-size: 2.4rem;
        margin-bottom: 8%;
        margin-top: 0.5%;
    }
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .info h3 {
        font-size: 1rem;
        margin-top: 11%;
        margin-left: 7.4%;
        width: 90%;
    }

    .info h3::before {
        display: none;
    }

    .info h1 {
        margin-left: 7.4%;
        font-size: 2.2rem;
        margin-bottom: 11%;
    }
}

/* For phones */
@media (max-width: 479px) {

    .info h3 {
        font-size: 1.1rem;
        margin-top: 11%;
        margin-left: 7.4%;
        width: 90%;
    }

    .info h3::before {
        display: none;
    }

    .info h1 {
        margin-left: 7.4%;
        font-size: 2rem;
        margin-bottom: 11%;
    }
}

@media (min-width: 1920px) {
    
    .info h3::before {
        content: '';
        position: absolute;
        bottom: 1vw; /* Adjust this value to position the line vertically */
        left: -7.2%; /* Adjust the distance of the line from the text */
        width: 4vw; /* Adjust the width of the line */
        height: 2px; /* Adjust the height/thickness of the line */
        background-color: #00A651; /* Change the color of the line */
    }
}

/* ----------------------------------------------- data start ------------------------------------------------------------------- */

.data {
    margin-top: 0%;
    width: 100%;
    height: auto;
    background-color: #36383e;
    position: relative;
}

.data #green {
    font-size: 1.4vw;
    font-weight: 300;
    letter-spacing: 1px;
    padding-top: 6%;
    margin-left: 10.3%;
    text-transform: uppercase;
    position: relative;
    color: #fff;
}

.data #green::before {
    content: '';
    position: absolute;
    bottom: 1.2vw; /* Adjust this value to position the line vertically */
    left: -6.5%; /* Adjust the distance of the line from the text */
    width: 4vw; /* Adjust the width of the line */
    height: 2px; /* Adjust the height/thickness of the line */
    background-color: #fff; /* Change the color of the line */
}

.data p {
    position: relative;
    color: #fff;
    font-size: 2.4vw;
    margin-left: 10.3%;
    margin-top: 3rem;
    font-weight: 500;
    width: 83%;
    line-height: 140%;
    padding-bottom: 6%;
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 

    .data #green::before {
        display: none;
    }

    .data #green {
        margin-left: 8.2%;
        font-size: 1rem;
    }

    .data p {
        position: relative;
        color: #fff;
        font-size: 2.7vw;
        margin-left: 8.2%;
        margin-top: 3%;
        font-weight: 500;
        width: 83%;
        line-height: 140%;
        padding-bottom: 7%;
    }
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .data #green {
        padding-top: 7%;
        margin-left: 7.5%;
        font-size: 1rem;
    }
    
    .data #green::before {
        display: none;
    }

    .data p {
        position: relative;
        color: #fff;
        font-size: 1.4rem;
        margin-left: 7.5%;
        margin-top: 6%;
        font-weight: 500;
        width: 84%;
        line-height: 140%;
        padding-bottom: 10%;
    }
}

/* For phones */
@media (max-width: 479px) {

    .data #green {
        padding-top: 7%;
        margin-left: 7.5%;
        font-size: 1rem;
    }
    
    .data #green::before {
        display: none;
    }

    .data p {
        position: relative;
        color: #fff;
        font-size: 1.4rem;
        margin-left: 7.5%;
        margin-top: 6%;
        font-weight: 500;
        width: 84%;
        line-height: 140%;
        padding-bottom: 10%;
    }
}
/* ----------------------------------------------- picture start ------------------------------------------------------------------- */

.picture {
    position: relative;
    background-image: url("../images/srvc2.jpg");
    height: 100vw;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    height: auto;
}

.picture h2 {
    color: #fff;
    font-size: 4vw; /* Changed from rem to vw for scalability */
    margin-left: 17.9%;
    font-weight: 700;
    padding-top: 24%; /* Changed from rem to vh for better vertical scaling */
    width: 50%;
    position: relative;
}

.picture p {
    color: #fff;
    font-size: 1.6vw; /* Scalable font size */
    margin-left: 17.9%;
    font-weight: 300;
    padding-top: 1rem;
    width: 51%;
    position: relative;
    padding-bottom: 3%;
}

.picture h2::before {
    content: '';
    position: absolute;
    top: 87%;
    transform: translateY(-50%);
    left: -15.1%;
    width: 3%;
    height: 80%; /* Changed from rem to vh for scalability */
    background-color: #fff;
}

.picture h2::after {
    content: '';
    position: absolute;
    top: 110%;
    transform: translateY(-50%);
    left: 112%; /* Changed to vw for better responsiveness */
    width: 3%;
    height: 33%; /* Changed from rem to vh */
    background-color: #fff;
}

.picture h2 {
    color: #fff;
    font-size: 4.2vw; /* Changed from rem to vw for scalability */
    margin-left: 16.9%;
}


/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 

    .picture {
        width: 100vw; /* Ensures full width on tablets */
        height: auto; /* Adjust height automatically based on content */
        background-size: cover; /* Ensures the image covers the width */
    }

    .picture p {
        color: #fff;
        font-size: 1.9vw; /* Scalable font size */
        margin-left: 16.9%;
        font-weight: 300;
        padding-top: 1%;
        width: 45%;
        position: relative;
        padding-bottom: 4%;
    }

    .picture h2::before {
        top: 96%;
        height: 80%; /* Changed from rem to vh for scalability */
        left: -18.9%;
    }
    
    .picture h2::after {
        top: 112%;
        height: 50%; /* Changed from rem to vh */
        background-color: #fff;
        left: 98%; /* Changed to vw for better responsiveness */
    }
    
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .picture {
        width: 100vw; /* Ensures full width on tablets */
        height: auto; /* Adjust height automatically based on content */
        background-size: cover; /* Ensures the image covers the width */
    }

    .picture p {
        color: #fff;
        font-size: 3.5vw; /* Scalable font size */
        margin-left: 17.9%;
        font-weight: 300;
        padding-top: 1%;
        width: 65%;
        position: relative;
        padding-bottom: 4%;
    }

    .picture h2::before {
        top: 104%;
        height: 115%; /* Changed from rem to vh for scalability */
    }
    
    .picture h2::after {
        top: 132%;
        height: 60%; /* Changed from rem to vh */
        background-color: #fff;
        left: 103%; /* Changed to vw for better responsiveness */
    }

    .picture h2 {
        color: #fff;
        font-size: 6vw; /* Changed from rem to vw for scalability */
        margin-left: 17.9%;
        font-weight: 700;
        padding-top: 20%; /* Changed from rem to vh for better vertical scaling */
        width: 65%;
        position: relative;
    }
}

/* For phones */
@media (max-width: 479px) {

    .picture {
        width: 100vw; /* Ensures full width on tablets */
        height: auto; /* Adjust height automatically based on content */
        background-size: cover; /* Ensures the image covers the width */
    }

    .picture p {
        color: #fff;
        font-size: 3.5vw; /* Scalable font size */
        margin-left: 17.9%;
        font-weight: 300;
        padding-top: 1%;
        width: 65%;
        position: relative;
        padding-bottom: 4%;
    }

    .picture h2::before {
        top: 104%;
        height: 115%; /* Changed from rem to vh for scalability */
    }
    
    .picture h2::after {
        top: 132%;
        height: 60%; /* Changed from rem to vh */
        background-color: #fff;
        left: 103%; /* Changed to vw for better responsiveness */
    }

    .picture h2 {
        color: #fff;
        font-size: 6vw; /* Changed from rem to vw for scalability */
        margin-left: 17.9%;
        font-weight: 700;
        padding-top: 20%; /* Changed from rem to vh for better vertical scaling */
        width: 65%;
        position: relative;
    }
}

/* ----------------------------------------------- last start ------------------------------------------------------------------- */

.last {
    position: relative;
    height: auto;
}

.last h2 {
    margin-top: 7%;
    margin-left: 10.3%;
    font-size: 2.9vw;
    font-weight: 600;
    position: relative;
}

.last .item1 {
    display: flex;
    column-gap: 5px;
    margin-top: 8%;
    position: relative;
    width: 100%;
    height: auto;
}

/* Wrapper for the image to allow pseudo-elements */
.last .item1 .image-wrapper1 {
    position: relative;
    width: 100%;
    max-width: 63vw;
    max-height: 450px;
    z-index: 996;
    margin-bottom: 35%;
}

.last .item1 img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 996;
}

.last h2::before,
.last h2::after {
    content: '';
    position: absolute;
    z-index: 1; /* Ensure a z-index for the lines */
    /* Rest of the styles for the lines */
}

.last .item1 .image-wrapper1::before {
    content: '';
    position: absolute;
    top: 0.1%; /* Adjust as needed */
    transform: translateY(-50%);
    left: 100%; /* Adjust as needed */
    width: 13%;
    height: 0.07rem;
    background-color: #c5c5c5;
    transition: all 0.4s ease-in-out;
    z-index: 995;
}

.last .item1 .image-wrapper1::after {
    content: '';
    position: absolute;
    top: -12.4%;
    transform: translateY(-50%);
    left: 99.85%;
    width: 0.07rem;
    height: 25%;
    background-color: #c5c5c5;
    transition: all 0.4s ease-in-out;
    z-index: 995;
}

.last .item1 .text {
    background-color: #fff;
    width: 50%;
    position: absolute;
    box-shadow: 13px 9px 42px -2px rgba(0,0,0,0.18);
    padding: 1.8vw;
    margin-left: 44%;
    margin-top: 22%;
    z-index: 997;
}

.last .item1 .text p {
    font-size: 1.1vw;
    font-weight: 300;
    width: 100%;
    line-height: 1.5;
}

.last .item2 {
    column-gap: 5px;
    position: relative;
    width: 100%;
    height: auto;
}

.last .item2 .image-wrapper2 {
    column-gap: 5px;
    position: relative;
}

.last .item2 .image-wrapper2 img {
    width: 62%;
    height: auto;
    max-width: 62vw;
    max-height: 450px;
    /* Add or adjust the right margin/padding to move the image to the right */
    z-index: 996;
    position: relative;
    margin-left: 38%;
    margin-bottom: 20%;
}

.last .item2 .text {
    background-color: #fff;
    width: 50%;
    position: absolute;
    box-shadow: -13px 9px 42px -2px rgba(0,0,0,0.18);
    padding: 1.8vw;
    margin-left: 6%;
    z-index: 997;
    margin-top: -33%;
}

.last .item2 .text p {
    font-size: 1.1vw;
    font-weight: 300;
    width: 100%;
    margin-top: -0.2rem;
    line-height: 1.5;
}

.last .item2 .image-wrapper2::before {
    content: '';
    position: absolute;
    top: -6.2%; 
    transform: translateY(-50%);
    right: 61.92%; 
    width: 0.07rem; 
    height: 18%; 
    background-color: #c5c5c5; 
    transition: all 0.4s ease-in-out;
}

.last .item2 .image-wrapper2::after {
    content: '';
    position: absolute;
    top: 0.12%; 
    transform: translateY(-50%);
    left: 30.2%; 
    width: 13%; 
    height: 0.07rem; 
    background-color: #c5c5c5; 
    transition: all 0.4s ease-in-out;
}

/* Default styles */
.last .item1 .image-wrapper1::before,
.last .item1 .image-wrapper1::after,
.last .item2 .image-wrapper2::before,
.last .item2 .image-wrapper2::after {
    background-color: #c5c5c5;
}

/* Hovered styles */
.last .item1.hovered .image-wrapper1::before,
.last .item1.hovered .image-wrapper1::after,
.last .item2.hovered .image-wrapper2::before,
.last .item2.hovered .image-wrapper2::after {
    background-color: #00A651;
}
/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 

    .last h2 {
        margin-top: 8%;
        margin-left: 8.2%;
        font-size: 3vw;
        font-weight: 600;
    }

    .last .item1 .text {
        width: 80%;
        margin-left: 15%;
        padding: 1rem;
    }

    .last .item1 .text p,
    .last .item2 .text p {
        font-size: 1.5vw;
    }

    .last .item2 .text {
        width: 70%;;
        padding: 1rem;
        margin-left: 6%;
        margin-top: -42%;
    }
    
    .last .item1 .image-wrapper1 {
        position: relative;
        width: 100%;
        max-width: 63vw;
        max-height: 450px;
        z-index: 996;
        margin-bottom: 33%;
    }

    .last .item2 .image-wrapper2 img {
        margin-bottom: 30%;
    }

    .last .item2 .image-wrapper2::after {
        content: '';
        position: absolute;
        top: 0.1%; 
        transform: translateY(-50%);
        left: 30.2%; 
        width: 13%; 
        height: 0.07rem; 
        background-color: #c5c5c5; 
        transition: all 0.4s ease-in-out;
    }

    .last .item2 .image-wrapper2::before {
        content: '';
        position: absolute;
        top: -6.2%; 
        transform: translateY(-50%);
        right: 61.9%; 
        width: 0.07rem; 
        height: 13%; 
        background-color: #c5c5c5; 
        transition: all 0.4s ease-in-out;
    }
    
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .last h2 {
        margin-top: 8%;
        margin-left: 7.4%;
        font-size: 1.5rem;
        font-weight: 600;
    }

    /* Reset the .item1 and .item2 containers */
    .last .item1,
    .last .item2 {
        display: block;       /* Ensure they are block-level elements */
        position: relative;   /* Keep relative positioning */
        width: 100%;          /* Full width */
        height: auto;         /* Let height adjust based on content */  /* Add spacing between sections */
    }

    /* Adjust the .text elements */
    .last .item1 .text,
    .last .item2 .text {
        width: 85%;
        margin-left: 7.4%;
        padding: 0;
        box-shadow: none;
        position: static;     /* Reset positioning to default */
        margin-top: -22%;     /* Add top margin for spacing */
        margin-bottom: 7%;
    }

    .last .item1 .text {
        margin-top: -27%;

    }

    .last .item2 .text {
        margin-top: -13%;
    }


    .last .item1 .text p,
    .last .item2 .text p {
        font-size: 1.1rem;
    }
    
    /* Adjust the image wrappers */
    .last .item1 .image-wrapper1,
    .last .item2 .image-wrapper2 {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 996;
        max-width: 100%;
        max-height: 100%;
    }

    /* Adjust the images */
    .last .item1 .image-wrapper1 img,
    .last .item2 .image-wrapper2 img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 25vh;
        display: block;
        margin-left: 0; /* Reset margin */
        margin-right: 0; /* Reset margin */
    }

 

    /* Hide pseudo-elements on mobile */
    .last .item1 .image-wrapper1::before,
    .last .item1 .image-wrapper1::after,
    .last .item2 .image-wrapper2::before,
    .last .item2 .image-wrapper2::after {
        display: none;
    }
}

/* For phones */
@media (max-width: 479px) {

    .last h2 {
        margin-top: 8%;
        margin-left: 7.4%;
        font-size: 1.5rem;
        font-weight: 600;
    }

    /* Reset the .item1 and .item2 containers */
    .last .item1,
    .last .item2 {
        display: block;       /* Ensure they are block-level elements */
        position: relative;   /* Keep relative positioning */
        width: 100%;          /* Full width */
        height: auto;         /* Let height adjust based on content */  /* Add spacing between sections */
    }

    /* Adjust the .text elements */
    .last .item1 .text,
    .last .item2 .text {
        width: 85%;
        margin-left: 7.4%;
        padding: 0;
        box-shadow: none;
        position: static;     /* Reset positioning to default */  /* Add top margin for spacing */
        margin-bottom: 7%;
    }

    .last .item1 .text {
        margin-top: -27%;

    }

    .last .item2 .text {
        margin-top: -13%;
    }

    .last .item1 .text p,
    .last .item2 .text p {
        font-size: 1.1rem;
    }

    /* Adjust the image wrappers */
    .last .item1 .image-wrapper1,
    .last .item2 .image-wrapper2 {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 996;
        max-width: 100%;
        max-height: 100%;
    }

    /* Adjust the images */
    .last .item1 .image-wrapper1 img,
    .last .item2 .image-wrapper2 img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 25vh;
        display: block;
        margin-left: 0; /* Reset margin */
        margin-right: 0; /* Reset margin */
    }

 

    /* Hide pseudo-elements on mobile */
    .last .item1 .image-wrapper1::before,
    .last .item1 .image-wrapper1::after,
    .last .item2 .image-wrapper2::before,
    .last .item2 .image-wrapper2::after {
        display: none;
    }
}

@media (min-width: 1920px) {
    
    .last .item1 .image-wrapper1::before {
        content: '';
        position: absolute;
        top: 0.1%; /* Adjust as needed */
        transform: translateY(-50%);
        left: 100%; /* Adjust as needed */
        width: 10%;
        height: 0.07rem;
        background-color: #c5c5c5;
        transition: all 0.4s ease-in-out;
        z-index: 995;
    }
    
    .last .item1 .image-wrapper1::after {
        content: '';
        position: absolute;
        top: -12.4%;
        transform: translateY(-50%);
        left: 99.95%;
        width: 0.07rem;
        height: 25%;
        background-color: #c5c5c5;
        transition: all 0.4s ease-in-out;
        z-index: 995;
    }
    
    .last .item2 .image-wrapper2::before {
        content: '';
        position: absolute;
        top: -6.2%; 
        transform: translateY(-50%);
        right: 61.95%; 
        width: 0.07rem; 
        height: 15%; 
        background-color: #c5c5c5; 
        transition: all 0.4s ease-in-out;
    }
    
    .last .item2 .image-wrapper2::after {
        content: '';
        position: absolute;
        top: 0.12%; 
        transform: translateY(-50%);
        left: 31.6%; 
        width: 10%; 
        height: 0.07rem; 
        background-color: #c5c5c5; 
        transition: all 0.4s ease-in-out;
    }
}

/*------------------------------------------------ contact start --------------------------------------------------------------------*/

.contact {
    background-image: url("../images/contact.png");
    background-repeat: no-repeat;
    background-size: cover; /* This makes the entire image fit within the container */
    background-position: center; /* Center the image */
    width: 100%;
    max-height: 72vh; /* Keep the max height as desired */
    position: relative;
}

.contact h1 {
    padding-top: 10%;
    margin-left: 10%;
    position: relative;
    color: #111;
    font-size: 3.2rem;
    font-weight: 600;
}

.contact p {
    padding-top: 2%;
    margin-left: 10.3%;
    position: relative;
    color: #111;
    font-size: 1.1rem;
    font-weight: 300;
    width: 45%;
    line-height: 1.5;
}


.con-left {
    position: relative;
    overflow: hidden;
    background-color: #00A651;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
    cursor: pointer;
    margin-left: 10.3%;
    margin-top: 4%;
    z-index: 1; /* Ensure the button content stays above the pseudo-element */
    margin-bottom: 10%;
}

.con-left::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #04753b;
    transition: top 0.2s ease-in-out;
    z-index: -1; /* Position behind the button content */
}

.con-left:hover::before {
    top: 0;
}

.con-right {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    color: #00A651;
    border: 2px #00A651 solid;
    padding: 0.88rem 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
    cursor: pointer;
    margin-left: 1%;
    margin-top: 4%;
    z-index: 1;
    transition: color 0.01s ease-in-out; /* Adding transition for text color change */
}

.con-right::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00A651;
    transition: top 0.2s ease-in-out;
    z-index: -1; /* Position behind the button content */
}

.con-right:hover::before {
    top: 0;
    transition: top 0.3s ease-in-out; /* Transition for pseudo-element on hover */
}

.con-right:hover {
    color: #fff; /* Change text color to white on hover */
}

a {
    text-decoration: none; /* Remove default underline */
}

@media (min-width: 768px) and (max-width: 1024px) {
    
    .contact h1 {
        font-size: 2.5rem;
        margin-left: 8%;
    }

    .contact p {
        font-size: 0.9rem;
        font-weight: 300;
        width: 44%;
        margin-left: 8.2%;
    }

    .con-left {
        padding: 0.8rem 1.5rem;
        font-size: 0.7rem;
        margin-left: 8.2%;
    }

    .con-right {
        padding: 0.68rem 1.5rem;
        font-size: 0.7rem;
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .contact h1 {
        font-size: 2rem;
        margin-left: 7.3%;
    }

    .contact p {
        margin-top: 4%;
        width: 78%;
        margin-left: 7.5%;
    }
    
    .con-left {
        padding: 0.7rem 1.2rem;
        font-size: 0.7rem;
        margin-left: 7.5%;
        margin-bottom: 0;
        margin-top: 10%;
    }

    .con-right {
        padding: 0.6rem 1.34rem;
        font-size: 0.7rem;
        margin-left: 7.5%;
        margin-top: 4%;
        margin-bottom: 15%;
    }
}

/* For phones */
@media (max-width: 479px) {

    .contact h1 {
        font-size: 2rem;
        margin-left: 7.3%;
    }

    .contact p {
        margin-top: 4%;
        width: 78%;
        margin-left: 7.5%;
    }
    
    .con-left {
        padding: 0.7rem 1.2rem;
        font-size: 0.7rem;
        margin-left: 7.5%;
        margin-bottom: 0;
        margin-top: 10%;
    }

    .con-right {
        padding: 0.6rem 1.34rem;
        font-size: 0.7rem;
        margin-left: 7.5%;
        margin-top: 4%;
        margin-bottom: 15%;
    }
}

@media (min-width: 1920px) {

    .contact p {
        padding-top: 2%;
        margin-left: 10.3%;
        position: relative;
        color: #111;
        font-size: 1.2rem;
        font-weight: 300;
        width: 45%;
        line-height: 1.5;
    }
    
    
    .con-left {
        position: relative;
        overflow: hidden;
        background-color: #00A651;
        color: #fff;
        border: none;
        padding: 1rem 2rem;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 400;
        cursor: pointer;
        margin-left: 10.3%;
        margin-top: 4%;
        z-index: 1; /* Ensure the button content stays above the pseudo-element */
        margin-bottom: 10%;
    }
    
    .con-right {
        position: relative;
        overflow: hidden;
        background-color: #f9f9f9;
        color: #00A651;
        border: 2px #00A651 solid;
        padding: 0.88rem 2rem;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 400;
        cursor: pointer;
        margin-left: 1%;
        margin-top: 4%;
        z-index: 1;
        transition: color 0.01s ease-in-out; /* Adding transition for text color change */
    }
}


/*------------------------------------------------ ABOUT US START --------------------------------------------------------------------*/
/*------------------------------------------------------!!!---------------------------------------------------------------------------*/

/* ----------------------------------------------- info start ------------------------------------------------------------------- */
.title {
    position: relative;
    height: auto;
    width: 100%;
    box-sizing: border-box;
}

.title h3 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 11%;
    margin-left: 10%;
    text-transform: uppercase;
    position: relative;
}

.title h3::before {
    content: '';
    position: absolute;
    top: 25%; /* Adjust this value to position the line vertically */
    left: -7.2%; /* Adjust the distance of the line from the text */
    width: 4.4vw; /* Adjust the width of the line */
    height: 2px; /* Adjust the height/thickness of the line */
    background-color: #00A651; /* Change the color of the line */
}

.title h1 {
    margin-top: 0.5%;
    margin-left: 10%;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2%;
}

.title p .prvni{
    margin-top: 7%;
    margin-left: 10%;
    font-size: 1.1rem;
    font-weight: 300;
    width: 75%;
}

.title p {
    margin-top: 2%;
    margin-left: 10%;
    font-size: 1.1rem;
    font-weight: 300;
    width: 75%;
}

#tretip {
    margin-bottom: 15%;
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 
    .title h1 {
        font-size: 2.5rem; /* Adjust heading size for tablets */
        margin-top: 1%;
        margin-left: 8.5%;
    }

    .title h3 {
        font-size: 1rem; /* Adjust subheading size */
        margin-top: 10%;
        margin-left: 8.5%;
    }

    .title p, .title p .prvni {
        font-size: 1rem;
        margin-left: 8.5%;
        width: 80%;
    }
    
    #tretip {
        margin-bottom: 11%;
    }

    .title h3::before {
        display: none;
    }
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .title h1 {
        font-size: 2.1rem; /* Adjust heading size for phones */
        margin-top: 1%;
        margin-left: 7.5%;
    }

    .title h3 {
        font-size: 1.1rem;
        margin-top: 8%;
        margin-left: 7.5%;
    }

    .title p, .title p .prvni {
        font-size: 1.1rem;
        margin-left: 7.5%;
        width: 83%;
        margin-top: 5%;
    }
    
    #tretip {
        margin-bottom: 8%;
        font-size: 1.1rem;
    }

    .title h3::before {
        display: none;
    }
}

/* For phones (max-width: 479px) */
@media (max-width: 479px) {

    .title h1 {
        font-size: 1.8rem; /* Adjust heading size for phones */
        margin-top: 1%;
        margin-left: 7.5%;
    }

    .title h3 {
        font-size: 1.1rem;
        margin-top: 8%;
        margin-left: 7.5%;
    }

    .title p, .title p .prvni {
        font-size: 1.1rem;
        margin-left: 7.5%;
        width: 83%;
        margin-top: 5%;
    }
    
    #tretip {
        margin-bottom: 8%;
        font-size: 1.1rem;
    }

    .title h3::before {
        display: none;
    }
}

@media (min-width: 1920px) {
    
    .title h3 {
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 1px;
        margin-top: 11%;
        margin-left: 10%;
        text-transform: uppercase;
        position: relative;
    }
    
    .title h3::before {
        content: '';
        position: absolute;
        top: 25%; /* Adjust this value to position the line vertically */
        left: -6.2%; /* Adjust the distance of the line from the text */
        width: 3.4vw; /* Adjust the width of the line */
        height: 2px; /* Adjust the height/thickness of the line */
        background-color: #00A651; /* Change the color of the line */
    }
    
    .title h1 {
        margin-top: 0.5%;
        margin-left: 10%;
        font-size: 3.1rem;
        font-weight: 600;
        margin-bottom: 2%;
    }
    
    .title p .prvni{
        margin-top: 7%;
        margin-left: 10%;
        font-size: 1.2rem;
        font-weight: 300;
        width: 75%;
    }
    
    .title p {
        margin-top: 2%;
        margin-left: 10%;
        font-size: 1.2rem;
        font-weight: 300;
        width: 75%;
    }
   
}
/* ----------------------------------------------- eight start ------------------------------------------------------------------- */

.eight .column1 {
    width: 25%; /* 4 columns layout */
    float: left;
    box-sizing: border-box;
    margin: 0;
}

.row_first, .row_second {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Ensures that columns wrap correctly */
}

.eight .column1 img {
    width: 100%; /* Ensure images are responsive */
    display: block;
}

@media (min-width: 768px) and (max-width: 1024px) {

    .eight .column1 {
        width: 25%; /* Keep 4 columns layout for this range */
        float: left;
        box-sizing: border-box;
        margin: 0;
    }

    .row_first, .row_second {
        width: 100%;
        display: flex;
        flex-wrap: wrap; /* Ensures that columns wrap correctly */
    }

    .eight .column1 img {
        width: 100%; /* Ensure images are responsive */
        display: block;
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .eight .column1 {
        width: 50%; /* 2 columns layout */
        float: left;
        box-sizing: border-box;
        margin: 0;
    }

    .row_first, .row_second {
        width: 100%;
        display: flex;
        flex-wrap: wrap; /* Ensures that columns wrap correctly */
    }

    .eight .column1 img {
        width: 100%; /* Ensure images are responsive */
        display: block;
    }

}

/* For phones */
@media (max-width: 479px) {

    .eight .column1 {
        width: 50%; /* 2 columns layout */
        float: left;
        box-sizing: border-box;
        margin: 0;
    }

    .row_first, .row_second {
        width: 100%;
        display: flex;
        flex-wrap: wrap; /* Ensures that columns wrap correctly */
    }

    .eight .column1 img {
        width: 100%; /* Ensure images are responsive */
        display: block;
    }
    
}

/* ----------------------------------------------- data start ------------------------------------------------------------------- */

.data2 {
    width: 100%;
    height: auto;
    background-color: #36383e;
    position: relative;
}

.data2 h3 {
    font-size: 1.3vw;
    font-weight: 300;
    letter-spacing: 1px;
    padding-top: 5%;
    margin-left: 10%;
    text-transform: uppercase;
    position: relative;
    color: #fff;
}

.data2 h3::before {
    content: '';
    position: absolute;
    bottom: 1vw; /* Adjust this value to position the line vertically */
    left: -7.2%; /* Adjust the distance of the line from the text */
    width: 4.4vw; /* Adjust the width of the line */
    height: 2px; /* Adjust the height/thickness of the line */
    background-color: #fff; /* Change the color of the line */
}

.data2 p {
    position: relative;
    color: #fff;
    font-size: 2.3vw;
    margin-left: 10%;
    margin-top: 2%;
    font-weight: 500;
    width: 81%;
    line-height: 140%;
    padding-bottom: 6%;
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 

    .data2 h3 {
        margin-left: 8.3%;
        font-size: 1rem;
    }

    h3::before {
        display: none;
    }

    .data2 p {
        font-size: 1.5rem;
        font-weight: 400;
        margin-left: 8.3%;
        width: 85%;
    }
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .data2 h3 {
        margin-left: 7.5%;
        font-size: 1rem;
        padding-top: 7%;
    }

    h3::before {
        display: none;
    }

    .data2 p {
        font-size: 1.1rem;
        font-weight: 200;
        margin-left: 7.5%;
        margin-top: 5%;
    }
}

/* For phones */
@media (max-width: 479px) {

    .data2 h3 {
        margin-left: 7.5%;
        font-size: 1rem;
        padding-top: 7%;
    }

    h3::before {
        display: none;
    }

    .data2 p {
        font-size: 1.2rem;
        font-weight: 200;
        margin-left: 7.5%;
        margin-top: 5%;
    }
}

@media (min-width: 1920px) {
    
    .data2 h3 {
        font-size: 1.2vw;
        font-weight: 300;
        letter-spacing: 1px;
        padding-top: 5%;
        margin-left: 10%;
        text-transform: uppercase;
        position: relative;
        color: #fff;
    }
    
    .data2 h3::before {
        content: '';
        position: absolute;
        bottom: 1vw; /* Adjust this value to position the line vertically */
        left: -6.2%; /* Adjust the distance of the line from the text */
        width: 3.4vw; /* Adjust the width of the line */
        height: 2px; /* Adjust the height/thickness of the line */
        background-color: #fff; /* Change the color of the line */
    }
    
    .data2 p {
        position: relative;
        color: #fff;
        font-size: 1.9vw;
        margin-left: 10%;
        margin-top: 2%;
        font-weight: 500;
        width: 81%;
        line-height: 140%;
        padding-bottom: 6%;
    }
}
/* ----------------------------------------------- three start ------------------------------------------------------------------- */

/* ----------------------------------------------- 4th slide start ------------------------------------------------------------------- */

.three {
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.column {
    /* Remove float */
    flex: 1 1 26%; /* Flex-grow, flex-shrink, flex-basis */
    max-width: 26%; /* Ensure columns don't exceed 26% */
    box-sizing: border-box; /* Include padding and border in width */
    position: relative;
    margin-top: 10%;
    margin-bottom: 10%;
    cursor: pointer;
    padding: 0 0; /* Adjust padding instead of margin */
}

.row {
    display: flex; /* Make row a flex container */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    width: 100%;
    margin: 0 auto; /* Center the row if necessary */
}

.column img {
    width: 100%;
    height: auto;
    display: block;
}

/* static part start */

.static-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10.5%;
    background-color: rgba(0, 166, 81, 0.85);
    display: flex;
    overflow: hidden;
}

.static-content a {
    color: #fff;
    font-size: 1.2vw;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin: 0;
    margin-left: 8%;
    padding-top: 2%;
    transition: text-decoration 0.3s ease;
    position: relative;
    cursor: pointer;
}

.static-content .learn-more {
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

/* static part end */

/* moving part start */

.overlay {
    position: absolute;
    bottom: 10.5%;
    left: 0;
    right: 0;
    background-color: rgba(0, 166, 81, 0.85);
    overflow: hidden;
    width: 100%;
    height: 20%;
    transition: 0.3s ease;
}

.overlay p {
    opacity: 0;
    color: #fff;
    font-size: 1.2vw;
    margin-left: 8%;
    margin-top: 1rem;
    transition: opacity 0.8s ease;
    width: 81%;
    line-height: 130%;
}

.overlay h3 {
    color: #fff;
    font-size: 2.3vw;
    margin-left: 8%;
    margin-top: 6%;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.column:hover .overlay {
    height: 51%;
}

.column:not(:hover) .overlay {
    transition: 0.3s ease 0.6s;
}

.column:hover .overlay p {
    opacity: 1;
    transition: 1.5s ease;
}

.column:not(:hover) .overlay:hover p {
    opacity: 1; 
    transition: opacity 1.5s ease;
}

.static-content .learn-more:hover {
    text-decoration: underline;
    text-decoration-thickness: 1.3px;
    text-underline-offset: .15rem;
}

.static-content h4 span:first-child {
    display: inline-block;
    margin-right: 5px; 
}

/* moving part end */

/* columns padding start */

#col_first {
    margin-left: 0;
}

#col_third {
    margin-right: 0;
}
/* columns padding end */

.arrow {
    font-size: 1rem;
}

#triop {
    scroll-margin-top: 3rem; /* Adjusts scroll position */
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

    .column {
        flex: 1 1 33.3%; /* Two columns per row */
        max-width: 33.3%;
        margin: 0;
        padding: 0;
    }

    .column:hover .overlay {
        height: 58%;
    }
    

    .overlay p {
        opacity: 0;
        color: #fff;
        font-size: 1.58vw;
        margin-left: 8%;
        margin-top: 1rem;
        transition: opacity 0.8s ease;
        width: 81%;
        line-height: 130%;
        font-weight: 400;
    }

    .overlay h3 {
        color: #fff;
        font-size: 3.3vw;
        margin-left: 8%;
        margin-top: 6%;
        text-decoration: none;
        letter-spacing: 0.5px;
        font-weight: 600;
    }

}


/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .column {
        flex: 1 1 100%; /* One column per row */
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .column:hover .overlay {
        height: 48%;
    }

    .overlay p {
        opacity: 0;
        color: #fff;
        font-size: 1.1rem;
        margin-left: 8%;
        margin-top: 1rem;
        transition: opacity 0.8s ease;
        width: 81%;
        line-height: 130%;
        font-weight: 400;
    }

    .overlay h3 {
        color: #fff;
        font-size: 2.3rem;
    }

    .static-content a {
        color: #fff;
        font-size: 1.1rem;
    }
}

/* For phones */
@media (max-width: 479px) {

    .column {
        flex: 1 1 100%; /* One column per row */
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .column:hover .overlay {
        height: 48%;
    }

    .overlay p {
        opacity: 0;
        color: #fff;
        font-size: 1.1rem;
        margin-left: 8%;
        margin-top: 1rem;
        transition: opacity 0.8s ease;
        width: 81%;
        line-height: 130%;
        font-weight: 400;
    }

    .overlay h3 {
        color: #fff;
        font-size: 2.3rem;
    }

    .static-content a {
        color: #fff;
        font-size: 1.1rem;
    }
}

/* ----------------------------------------------- grey start ------------------------------------------------------------------- */

.grey {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-sizing: border-box;
}

#rozhovory {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 6%;
    margin-left: 10.2%;
    text-transform: uppercase;
    position: relative;
}

#rozhovory::before {
    content: '';
    position: absolute;
    top: 20%; 
    left: -5.4rem; 
    width: 3.6rem; 
    height: 2px; 
    background-color: #00A651; 
}

.carousel {
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Add shadow */
    margin-top: 3rem;
}

.abslider {
    position: relative;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    padding-bottom: 1rem;
}

.abslides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.abslide {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
}

.abslide img {
    width: 100%;
    height: auto;
    display: block;
}

.abslider-buttons {
    display: none; /* Hidden by default, will be shown on desktop */
}

.abslider-button {
    background-color: #c5c5c5;
    border: none;
    cursor: pointer;
    width: 0.75rem;
    height: 0.75rem;
    margin: 0.9rem;
    border-radius: 50%;
}

.abslider-button.active {
    background-color: #00A651; /* Green for active button */
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .abslide {
        display: none; /* Hide all slides by default */
    }

    .abslide.active {
        display: block; /* Show the active slide */
    }

    .abslider-buttons {
        display: flex; /* Show buttons on desktop */
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 1023px) {
    .abslides {
        display: flex;
        overflow-x: scroll; /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory; /* Enable scroll snapping */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }

    .abslide {
        flex: 0 0 100%;
        width: 100%;
        display: block;
        scroll-snap-align: start; /* Snap to the start of the slide */
    }

    .abslider {
        padding-bottom: 0;
    }
}

@media (min-width: 1920px) {
    
    #rozhovory {
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 1px;
        margin-top: 6%;
        margin-left: 10.2%;
        text-transform: uppercase;
        position: relative;
    }
    
    #rozhovory::before {
        content: '';
        position: absolute;
        top: 20%; 
        left: -6.2%; /* Adjust the distance of the line from the text */
        width: 3.4vw; /* Adjust the width of the line */
        height: 2px; 
        background-color: #00A651; 
    }
}

/* ----------------------------------------------- partners start ------------------------------------------------------------------- */

.partners {
    width: 100%;
    height: auto;
    background-color: #fff;
    position: relative;
    margin-top: 6%;
}

.partners h3 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 0;
    margin-left: 10.4%;
    text-transform: uppercase;
    position: relative;
}

.partners h3::before {
    content: '';
    position: absolute;
    top: 25%; 
    left: -5.4rem; 
    width: 3.6rem; 
    height: 2px; 
    background-color: #00A651; 
}

.partners p {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 5%;
    margin-left: 10.4%;
    position: relative;
    width: 75%;
}

.firms {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 3%;
    width: 75%;
    margin-left: 10.4%;
    margin-bottom: 5%;
    flex-wrap: wrap;
}

.firms img {
    max-width: 15vw;
    margin-top: 10%;
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .partners h3 {
        font-size: 1rem;
        margin-left: 8.3%;
    }

    .partners p {
        font-size: 1rem;
        margin-left: 8.3%;
        width: 80%;
    }

    .firms {
        width: 80%;
        margin-left: 8%;
        margin-top: 4%;
    }

    .firms img {
        max-width: 16vw;
        margin-top: 8%;
    }
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .partners h3 {
        font-size: 1rem;
        margin-left: 7%;
    }

    .partners p {
        font-size: 1.1rem;
        margin-left: 7%;
        width: 85%;
        padding-bottom: 5%;
        margin-top: 8%;
    }

    .firms {
        flex-direction: row; /* Change to row layout */
        flex-wrap: wrap;     /* Enable wrapping */
        align-items: flex-start; /* Align items to the top */
        width: 100%;
        margin: 0;
        justify-content: space-between; /* Optional: add space between items */
        padding: 0;
        margin-top: 0;
    }

    .firms a {
        width: 50%; /* Two columns */
        margin: 0;
    }

    .firms img {
        display: block;
        max-width: 100%;
        margin: 0;
        padding: 0;
        min-width: 50%
    }
}

/* For phones (max-width: 479px) */
@media (max-width: 479px) {
    .partners h3 {
        font-size: 1rem;
        margin-left: 7%;
    }

    .partners p {
        font-size: 1.1rem;
        margin-left: 7%;
        width: 85%;
        padding-bottom: 5%;
        margin-top: 8%;
    }

    .firms {
        flex-direction: row; /* Change to row layout */
        flex-wrap: wrap;     /* Enable wrapping */
        align-items: flex-start; /* Align items to the top */
        width: 100%;
        margin: 0;
        justify-content: space-between; /* Optional: add space between items */
        padding: 0;
        margin-top: 0;
    }

    .firms a {
        width: 50%; /* Two columns */
        margin: 0;
    }

    .firms img {
        display: block;
        max-width: 100%;
        margin: 0;
        padding: 0;
        min-width: 50%
    }
}

@media (min-width: 1920px) {
    
    .partners h3 {
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 1px;
        margin-top: 0;
        margin-left: 10.4%;
        text-transform: uppercase;
        position: relative;
    }
    
    .partners h3::before {
        content: '';
        position: absolute;
        top: 20%; 
        left: -6.2%; /* Adjust the distance of the line from the text */
        width: 3.4vw; /* Adjust the width of the line */
        height: 2px; 
        background-color: #00A651; 
    }
    
    .partners p {
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 1px;
        margin-top: 5%;
        margin-left: 10.4%;
        position: relative;
        width: 75%;
    }

    .firms img {
        max-width: 14vw;
        margin-top: 10%;
    }
}


/*------------------------------------------------ CONSULTING START ---------------------------------------------------------------------*/
/*------------------------------------------------------!!!---------------------------------------------------------------------------*/


/* ----------------------------------------------- picture start ------------------------------------------------------------------- */

.data_consulting {
    margin-top: 5%;
    width: 100%;
    height: auto;
    background-color: #36383e;
    position: relative;
}

.data_consulting #green {
    font-size: 1.4vw;
    font-weight: 300;
    letter-spacing: 1px;
    padding-top: 6%;
    margin-left: 10.5%;
    text-transform: uppercase;
    position: relative;
    color: #fff;
}

.data_consulting #green::before {
    content: '';
    position: absolute;
    bottom: 1.2vw; /* Adjust this value to position the line vertically */
    left: -6.5%; /* Adjust the distance of the line from the text */
    width: 4vw; /* Adjust the width of the line */
    height: 2px; /* Adjust the height/thickness of the line */
    background-color: #fff; /* Change the color of the line */
}

.data_consulting p {
    position: relative;
    color: #fff;
    font-size: 2.4vw;
    margin-left: 10.5%;
    margin-top: 3%;
    font-weight: 500;
    width: 83%;
    line-height: 140%;
    padding-bottom: 6%;
}

.picturec {
    position: relative;
    background-image: url("../images/svrc7.jpg");
    height: 100vw;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    height: auto;
}

.picturec h2 {
    color: #fff;
    font-size: 4vw;
    margin-left: 17.5%;
    font-weight: 700;
    padding-top: 23%;
    width: 50%;
    position: relative;
}

.picturec p {
    color: #fff;
    font-size: 1.6vw;
    margin-left: 17.5%;
    font-weight: 300;
    padding-top: 1rem;
    width: 50%;
    position: relative;
    padding-bottom: 3%;
}

.picturec h2::before {
    content: '';
    position: absolute;
    top: 92%; /* Adjust this value to position the line vertically */
    transform: translateY(-50%);
    left: -14%; /* Adjust the distance of the line from the text */
    width: 3%; /* Adjust the width of the line */
    height: 80%; /* Adjust the height/thickness of the line */
    background-color: #fff; /* Change the color of the line */
}

.picturec h2::after {
    content: '';
    position: absolute;
    top: 116%; /* Adjust this value to position the line vertically */
    transform: translateY(-50%);
    left: 112%; /* Adjust the distance of the line from the text */
    width: 3%; /* Adjust the width of the line */
    height: 33%; /* Adjust the height/thickness of the line */
    background-color: #fff; /* Change the color of the line */
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 
    
    .data_consulting #green::before {
        display: none;
    }

    .data_consulting #green {
        margin-left: 8.4%;
        font-size: 1.2rem;
    }
    
    .data_consulting p {
        position: relative;
        color: #fff;
        font-size: 1.6rem;
        margin-left: 8.4%;
        margin-top: 3%;
        font-weight: 500;
        width: 83%;
        line-height: 140%;
        padding-bottom: 6%;
    }

    .picturec {
        width: 100vw; /* Ensures full width on tablets */
        height: auto; /* Adjust height automatically based on content */
        background-size: cover; /* Ensures the image covers the width */
    }

    .picturec p {
        color: #fff;
        font-size: 1.9vw; /* Scalable font size */
        margin-left: 14.5%;
        font-weight: 300;
        padding-top: 1%;
        width: 45%;
        position: relative;
        padding-bottom: 4%;
    }

    .picturec h2 {
        color: #fff;
        font-size: 4vw;
        margin-left: 14.5%;
    }

    .picturec h2::before {
        top: 102%;
        height: 80%; /* Changed from rem to vh for scalability */
        left: -12.9%;
    }
    
    .picturec h2::after {
        top: 122%;
        height: 50%; /* Changed from rem to vh */
        background-color: #fff;
        left: 98%; /* Changed to vw for better responsiveness */
    }
    
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .picturec {
        width: 100vw; /* Ensures full width on tablets */
        height: auto; /* Adjust height automatically based on content */
        background-size: cover; /* Ensures the image covers the width */
    }

    .picturec p {
        color: #fff;
        font-size: 3.5vw; /* Scalable font size */
        margin-left: 17.9%;
        font-weight: 300;
        padding-top: 1%;
        width: 65%;
        position: relative;
        padding-bottom: 4%;
    }

    .picturec h2::before {
        top: 104%;
        height: 115%; /* Changed from rem to vh for scalability */
    }
    
    .picturec h2::after {
        top: 132%;
        height: 60%; /* Changed from rem to vh */
        background-color: #fff;
        left: 103%; /* Changed to vw for better responsiveness */
    }

    .picturec h2 {
        color: #fff;
        font-size: 6vw; /* Changed from rem to vw for scalability */
        margin-left: 17.9%;
        font-weight: 700;
        padding-top: 20%; /* Changed from rem to vh for better vertical scaling */
        width: 65%;
        position: relative;
    }
}

/* For phones */
@media (max-width: 479px) {

    .data_consulting #green {
        font-size: 1rem;
        padding-top: 7%;
        margin-left: 7.5%;
    }

    .data_consulting #green::before {
        display: none;
    }
    
    .data_consulting p {
        position: relative;
        color: #fff;
        font-size: 1.4rem;
        margin-left: 7.5%;
        margin-top: 6%;
        font-weight: 500;
        width: 84%;
        line-height: 140%;
        padding-bottom: 10%;
    }

    .picturec {
        width: 100vw; /* Ensures full width on tablets */
        height: auto; /* Adjust height automatically based on content */
        background-size: cover; /* Ensures the image covers the width */
    }

    .picturec p {
        color: #fff;
        font-size: 3.5vw; /* Scalable font size */
        margin-left: 17.9%;
        font-weight: 300;
        padding-top: 1%;
        width: 65%;
        position: relative;
        padding-bottom: 4%;
    }

    .picturec h2::before {
        top: 104%;
        height: 115%; /* Changed from rem to vh for scalability */
        left: -16.3%;
    }
    
    .picturec h2::after {
        top: 132%;
        height: 60%; /* Changed from rem to vh */
        background-color: #fff;
        left: 108%; /* Changed to vw for better responsiveness */
    }

    .picturec h2 {
        color: #fff;
        font-size: 6vw; /* Changed from rem to vw for scalability */
        margin-left: 17.9%;
        font-weight: 700;
        padding-top: 20%; /* Changed from rem to vh for better vertical scaling */
        width: 65%;
        position: relative;
    }
}

/* ----------------------------------------------- srvcbackground2 ------------------------------------------------------------------- */


.srvc-bckgrnd2 {
    position: relative;
    background-image: url("../images/svrc8.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw; /* Full width */
    padding-top: 28.13%; /* Aspect ratio: (height/width)*100 = (1125/4000)*100 */
    margin: 0;
    top: 0;
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 
    .srvc-bckgrnd2 {
        height: 40vh; /* Adjust the height for tablets */
        max-height: 500px;
        min-height: 200px;
        background-size: cover;
    }
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .srvc-bckgrnd2 {
        height: 30vh; /* Adjust height for phones */
        max-height: 400px;
        min-height: 150px;
        background-size: cover;
    }
}

/* For phones */
@media (max-width: 479px) {
    .srvc-bckgrnd2 {
        height: 25vh; /* Further adjust height for smaller phones */
        max-height: 300px;
        min-height: 100px;
        background-size: cover;
        background-position: center;
    }
}

/* ----------------------------------------------- srvcbackground3 ------------------------------------------------------------------- */

.srvc-bckgrnd3 {
    position: relative;
    background-image: url("../images/svrc11.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw; /* Full width */
    padding-top: 28.13%; /* Aspect ratio: (height/width)*100 = (1125/4000)*100 */
    margin: 0;
    top: 0;
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 
    .srvc-bckgrnd3 {
        height: 40vh; /* Adjust the height for tablets */
        max-height: 500px;
        min-height: 200px;
        background-size: cover;
    }
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .srvc-bckgrnd3 {
        height: 30vh; /* Adjust height for phones */
        max-height: 400px;
        min-height: 150px;
        background-size: cover;
    }
}

/* For phones */
@media (max-width: 479px) {
    .srvc-bckgrnd3 {
        height: 25vh; /* Further adjust height for smaller phones */
        max-height: 300px;
        min-height: 100px;
        background-size: cover;
        background-position: center;
    }
}
/* ----------------------------------------------- manager start ------------------------------------------------------------------- */

.pozadi {
    background-color: #f9f9f9;
    width: 100%;
    height: auto;
    position: relative;
}

.rozdeleni {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.hlavni {
    background-color: #fff;
    max-width: 54.5%;
    height: auto;
    flex: 1;
    margin-left: 7.1%;
    margin-top: 70px;
    box-shadow: 0px 0px 29px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 10%;
    margin-right: 1rem;
}

.vedlejsi {
    max-width: 27.8%;
    margin-right: 7%;
    margin-top: 70px;
    display: table-column;
    gap: none;
    position: sticky;
    top: 4,37rem; /* Adjust this value according to your layout */
    z-index: 1; /* Add this to ensure it stays above other content */
}

.bily {
    background-color: #fff;
    padding: 20px; /* Adjust padding as needed */
    box-shadow: 0px 0px 29px 10px rgba(0, 0, 0, 0.06);
    height: auto;
}

#apply,
#back {
    margin-top: 1rem;
}


.logoo #inst{
    margin-left: 3%;
    margin-top: 2.5rem;
}

.logoo #lnk{
    margin-left: 2%;
    margin-top: 2.5rem;
}

.hlavni h2{
    color: #00A651;
    font-size: 1.8rem;
    margin-left: 6.1%;
    font-weight: 400;
    margin-top: 4%;
    width: 90%;
}

.hlavni h4 {
    color: #8c8c90;
    font-size: 0.8rem;
    margin-left: 6.1%;
    margin-top: 0.8%;
    font-weight: 300;
    position: relative;
}

.hlavni h4::before {
    content: '';
    position: absolute;
    top: 250%; 
    left: 0%; 
    width: 94%; 
    height: 1px; 
    background-color: #a8a8ae; 
}

.hlavni .italic {
    margin-top: 5.7%;
    margin-left: 6.1%;
    width: 87%;
    font-size: 1rem;
    font-weight: 300;
}

.hlavni h5 {
    font-style: bold;
    font-size: 1rem;
    margin-left: 6.1%;
    margin-top: 3%;
    margin-bottom: 3%;
}

ul {
    padding-left: 4.6rem;
    font-size: 1rem;
}

.hlavni .work li p {
    margin-top: 0.6rem;
    font-weight: 100;
    width: 85%;
    font-size: 1rem;
}

.hlavni .qualifications li p {
    margin-top: 0.6rem;
    font-weight: 100;
    width: 85%;
    font-size: 1rem;
}

.hlavni .benefits li p {
    margin-top: 0.6rem;
    font-weight: 100;
    width: 85%;
    font-size: 1rem;
}

#posledni {
    margin-top: 8%;
    font-weight: 100;
    width: 100%;
    text-indent: 0.6rem;
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
    position: relative;
    margin-bottom: 6%;
    color: #00A651;
}


.vedlejsi #apply {
    position: relative;
    background-color: #00A651;
    color: #fff;
    border: none;
    padding: 0.7rem 1.4rem;
    margin-top: 0.35rem;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 0.35rem;
    overflow: hidden;
    z-index: 1; 
    width: 97%;
    transition: 0.5s ease; 

}

.vedlejsi #apply:hover {
    background-color: #04753b;
    transition: 0.5s ease; 
}

.vedlejsi #back {
    position: relative;
    background-color: #a1a1a3;
    color: #fff;
    border: none;
    padding: 0.7rem 1.4rem;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 0.35rem;
    overflow: hidden;
    z-index: 1; 
    width: 97%;
    transition: 0.5s ease; 

}

.vedlejsi #back:hover {
    background-color: #7d7f7d;
    transition: 0.5s ease; 
}

.dodatek {
    margin: 1rem 1rem 0 1rem;
    position: sticky;
    top: 1rem; /* Adjust as needed */
    background-color: none; /* Ensure background covers content */
    max-width: 90%;
}

.dodatek-list,
.dodatek-item {
    display: flex;
    flex-direction: column;
}

.dodatek-item {
    padding: 1rem 0;
    border-bottom: 1px solid #cecdcd;
}

.dodatek-item:last-child {
    border-bottom: none;
}

.dodatek-item dt,
.dodatek-item h5 {
    font-size: 1rem;
    color: #727377;
    font-weight: 400;
    margin: 0;
}

.dodatek-item dd,
.dodatek-item h6 {
    font-size: 1rem;
    color: #000;
    font-weight: 400;
    margin-top: 0.5rem;
}

.sticky-new {
    position: fixed;
    right: 0%;
    width: 25rem; /* Set the width explicitly */
    height: 100px; /* Set the height explicitly */
    background-color: #fff; /* Add any other styles as needed */
    z-index: 999; /* Adjust the z-index as needed */
}

#zmizej {
    display: none;
}



/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) { 

    .hlavni {
        padding: 0.5rem;
    }

    .hlavni h2{
        font-size: 1.5rem;
        margin-left: 3.3%;
        font-weight: 400;
        margin-top: 3%;
        width: 94%;
    }

    .hlavni h4 {
        color: #8c8c90;
        margin-left: 3.3%;
        margin-top: 0.8%;
    }

    .hlavni h4::before {
        content: '';
        position: absolute;
        top: 200%; 
        left: 0%; 
        width: 97%; 
        height: 1px; 
        background-color: #a8a8ae; 
    }
    
    .hlavni .italic {
        margin-top: 5.7%;
        margin-left: 3.3%;
        width: 94%;
        font-size: 0.8rem;
        font-weight: 300;
    }
    
    .hlavni h5 {
        font-style: bold;
        font-size: 0.9rem;
        margin-left: 3.3%;
        margin-top: 3%;
        margin-bottom: 3%;
    }

    ul {
        padding-left: 10%;
    }
    
    .hlavni .work li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 90%;
        font-size: 0.8rem;
    }
    
    .hlavni .qualifications li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 90%;
        font-size: 0.8rem;
    }
    
    .hlavni .benefits li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 90%;
        font-size: 0.8rem;
    }
    
    #posledni {
        margin-top: 8%;
        font-weight: 100;
        width: 100%;
        padding-left: 5%;
        padding-right: 6%;
        text-indent: 0.6rem;
        font-size: 0.7rem;
        font-style: italic;
        position: relative;
        margin-bottom: 5%;
        text-align: center;
    }
    
    #posledni::before {
        display: none;
    }
    
    .dodatek-item:last-child {
        border-bottom: none;
    }
    
    .dodatek-item dt,
    .dodatek-item h5 {
        font-size: 0.9rem;
        color: #727377;
        font-weight: 400;
        margin: 0;
    }
    
    .dodatek-item dd,
    .dodatek-item h6 {
        font-size: 0.9rem;
        color: #000;
        font-weight: 400;
        margin-top: 0.5rem;
    }

    .vedlejsi #apply {
        margin-top: 0.15rem;
        font-size: 0.9rem;
        font-weight: 400;
    }

    .vedlejsi #back {
        margin-top: 1rem;
        font-size: 0.9rem;
        font-weight: 400;
    }

    #zmizej {
        display: none;
    }
}

/* Large Mobile Phones (480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .hlavni {
        padding: 0;
    }

    .pozadi {
        background-color: #fff;
    }
    
    .rozdeleni {
        flex-direction: column; /* Stack elements vertically */
    }

    .hlavni, .vedlejsi {
        max-width: 100%;       /* Full width */
        margin-left: 0;        /* Reset left margin */
        margin-right: 0;       /* Reset right margin */
        margin-top: 0;      /* Add top margin if needed */
        margin-bottom: 0;
    }

    .vedlejsi {
        position: static;      /* Remove sticky positioning */
        top: auto;  
        animation: none !important;
        transition: none !important;           /* Reset top property */
    }

    .bily {
        box-shadow: none;
    }

    .hlavni h2{
        font-size: 1.3rem;
        margin-left: 6.4%;
        margin-top: 2rem;
        width: 90%;
    }
    
    .hlavni h4 {
        font-size: 0.8rem;
        margin-left: 6.4%;
        margin-top: 0.8%;
    }
    
    .hlavni h4::before {
        top: 180%; 
        left: 0%; 
        width: 94%; 
        height: 1px; 
    }

    .hlavni .italic {
        margin-top: 5.7%;
        margin-left: 6.4%;
        width: 87%;
        font-size: 0.9rem;
    }
    
    .hlavni h5 {
        font-style: bold;
        font-size: 1rem;
        margin-left: 6.4%;
        margin-top: 4%;
        margin-bottom: 4%;
    }
    
    ul {
        padding-left: 2.7rem;
    }

    .hlavni .work li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 92%;
        font-size: 0.9rem;
    }
    
    .hlavni .qualifications li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 92%;
        font-size: 0.9rem;
    }
    
    .hlavni .benefits li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 92%;
        font-size: 0.9rem;
    }

    #posledni {
        margin-top: 3rem;
        margin-left: 6.4%;
        margin-bottom: 5%;
        width: 86%;
    }
    
    #posledni::before {
        display: none;
    }
    
    .vedlejsi #apply {
        padding: 0.7rem 1.4rem;
        margin-top: 0.15rem;
        font-size: 1.2rem;
        font-weight: 500;
        width: 94%;  
        margin-left: 3%;
    }
    
    .vedlejsi #apply:hover {
        background-color: #04753b;
        transition: 0.5s ease; 
    }
    
    .vedlejsi #back {
        padding: 0.7rem 1.4rem;
        margin-top: 1rem;
        font-size: 1.2rem;
        font-weight: 500;
        width: 94%;  
        margin-left: 3%;
    }

    #lnk,
    #inst {
        font-size: 41px;
        margin-top: 3rem;
        margin-left: 3%;
    }

    .dodatek-item dt,
    .dodatek-item h5 {
        font-size: 0.9rem;
        color: #727377;
        font-weight: 400;
        margin: 0;
        text-align: center;
    }
    
    .dodatek-item dd,
    .dodatek-item h6 {
        font-size: 0.9rem;
        color: #000;
        font-weight: 400;
        margin-top: 0.5rem;
        text-align: center;
    }

    .dodatek {
        margin-bottom: 7%;
    }

    .logoo #inst{
        margin-left: 3%;
    }
    
    .logoo #lnk{
        margin-left: 3%;
    }

    #zmizej {
        display: block;
    }
}

/* For phones */
@media (max-width: 479px) {

    .hlavni {
        padding: 0;
    }

    .pozadi {
        background-color: #fff;
    }
    
    .rozdeleni {
        flex-direction: column; /* Stack elements vertically */
    }

    .hlavni, .vedlejsi {
        max-width: 100%;       /* Full width */
        margin-left: 0;        /* Reset left margin */
        margin-right: 0;       /* Reset right margin */
        margin-top: 0;      /* Add top margin if needed */
        margin-bottom: 0;
    }

    .vedlejsi {
        position: static;      /* Remove sticky positioning */
        top: auto;  
        animation: none !important;
        transition: none !important;           /* Reset top property */
    }

    .bily {
        box-shadow: none;
    }

    .hlavni h2{
        font-size: 1.4rem;
        margin-left: 6.4%;
        margin-top: 2rem;
        width: 90%;
    }
    
    .hlavni h4 {
        font-size: 0.8rem;
        margin-left: 6.4%;
        margin-top: 0.8%;
    }
    
    .hlavni h4::before {
        top: 180%; 
        left: 0%; 
        width: 94%; 
        height: 1px; 
    }

    .hlavni .italic {
        margin-top: 5.7%;
        margin-left: 6.4%;
        width: 87%;
        font-size: 1.1rem;
    }
    
    .hlavni h5 {
        font-style: bold;
        font-size: 1rem;
        margin-left: 6.4%;
        margin-top: 4%;
        margin-bottom: 4%;
    }
    
    ul {
        padding-left: 2.7rem;
        font-size: 1.1rem;
    }

    .hlavni .work li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 92%;
        font-size: 1.1rem;
    }
    
    .hlavni .qualifications li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 92%;
        font-size: 1.1rem;
    }
    
    .hlavni .benefits li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 92%;
        font-size: 1.1rem;
    }

    #posledni {
        margin-top: 3rem;
        margin-left: 6.4%;
        margin-bottom: 5%;
        width: 86%;
    }
    
    #posledni::before {
        display: none;
    }
    
    .vedlejsi #apply {
        padding: 0.7rem 1.4rem;
        margin-top: 0.15rem;
        font-size: 1.2rem;
        font-weight: 500;
        width: 94%;  
        margin-left: 3%;
    }
    
    .vedlejsi #apply:hover {
        background-color: #04753b;
        transition: 0.5s ease; 
    }
    
    .vedlejsi #back {
        padding: 0.7rem 1.4rem;
        margin-top: 1rem;
        font-size: 1.2rem;
        font-weight: 500;
        width: 94%;  
        margin-left: 3%;
    }

    #lnk,
    #inst {
        font-size: 41px;
        margin-top: 3rem;
        margin-left: 3%;
    }

    .dodatek-item dt,
    .dodatek-item h5 {
        font-size: 0.9rem;
        color: #727377;
        font-weight: 400;
        margin: 0;
        text-align: center;
    }
    
    .dodatek-item dd,
    .dodatek-item h6 {
        font-size: 0.9rem;
        color: #000;
        font-weight: 400;
        margin-top: 0.5rem;
        text-align: center;
    }

    .dodatek {
        margin-bottom: 7%;
        margin-top: 0%;
    }

    .logoo #inst{
        margin-left: 3%;
    }
    
    .logoo #lnk{
        margin-left: 3%;
    }

    #zmizej {
        display: block;
    }
}

@media (min-width: 1920px) {

    .hlavni h2{
        color: #00A651;
        font-size: 2rem;
        margin-left: 6.1%;
        font-weight: 400;
        margin-top: 4%;
        width: 90%;
    }
    
    .hlavni h4 {
        color: #8c8c90;
        font-size: 1rem;
        margin-left: 6.1%;
        margin-top: 0.4%;
        font-weight: 300;
        position: relative;
    }
    
    .hlavni .italic {
        margin-top: 5.7%;
        margin-left: 6.1%;
        width: 87%;
        font-size: 1.1rem;
        font-weight: 300;
    }

    .hlavni h5 {
        font-style: bold;
        font-size: 1.1rem;
        margin-left: 6.1%;
        margin-top: 3%;
        margin-bottom: 3%;
    }

    ul {
        padding-left: 4.6rem;
        font-size: 1.1rem;
    }

    .hlavni .work li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 85%;
        font-size: 1.1rem;
    }

    .hlavni .qualifications li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 85%;
        font-size: 1.1rem;
    }
    
    .hlavni .benefits li p {
        margin-top: 0.6rem;
        font-weight: 100;
        width: 85%;
        font-size: 1.1rem;
    }

    #posledni {
        margin-top: 8%;
        font-weight: 100;
        width: 100%;
        text-indent: 0.6rem;
        font-size: 1rem;
        text-align: center;
        font-style: italic;
        position: relative;
        margin-bottom: 6%;
        color: #00A651;
    }

    .dodatek-item dt,
    .dodatek-item h5 {
        font-size: 1.1rem;
        color: #727377;
        font-weight: 400;
        margin: 0;
    }

    .dodatek-item dd,
    .dodatek-item h6 {
        font-size: 1.1rem;
        color: #000;
        font-weight: 400;
        margin-top: 0.5rem;
    }


.vedlejsi #apply {
    position: relative;
    background-color: #00A651;
    color: #fff;
    border: none;
    padding: 0.7rem 1.4rem;
    margin-top: 0.35rem;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 0.35rem;
    overflow: hidden;
    z-index: 1; 
    width: 97%;
    transition: 0.5s ease; 

}

.vedlejsi #back {
    position: relative;
    background-color: #a1a1a3;
    color: #fff;
    border: none;
    padding: 0.7rem 1.4rem;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 0.35rem;
    overflow: hidden;
    z-index: 1; 
    width: 97%;
    transition: 0.5s ease; 

}


}

/*------------------------------------------------ the end part --------------------------------------------------------------------*/

.end {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.end .line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items at the top */
    width: 100%;
    background-color: #36383e;
}

.logos {
    margin-right: 6.95rem;
    display: flex;
    cursor: pointer;
    margin-top: 2.5%;
}

#insta,
.fa {
    padding-right: 1rem; /* Adjust as needed */
    margin: 0;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 58%; /* Adjust the width of the .menu */
    margin-left: 10%;
    margin-bottom: 3%;
    margin-top: 3%;
}

.menu h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 1rem;

}

.logo {
    margin-top: 2.5%;
    margin-left: 10%;
    margin-bottom: 2%;
    width: 34%;

}

.logo img {
    width: 22%;
}

.end .part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #202123;
    height: auto;
}

.sentence {
    display: flex;
    margin-top: 1.8%;
    margin-left: auto;
    margin-right: 0%;
}

.sentence p {
    color: #cecdcd;
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 3%; /* Removes default bottom margin */
    margin-right: 6.95rem;
    width: 25.85rem;
}


/* Target only <a> elements with data-localize within .navbar_menu */
.menu a[data-localize] {
    color: #fff; /* Desired navbar link color */
    text-decoration: none; /* Remove underline */
    cursor: pointer;
}

.menu a[data-localize]:hover {
    text-decoration: underline;
    text-underline-offset: 0.2rem;
    color: #00A651;
}

.con_block {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
}

.con_part {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    color: #cecdcd;
    margin-top: 0.5rem;
    font-weight: 200;
}

.con_part a {
    margin-top: 2%;
    color: #cecdcd;
    font-weight: 300;
}

.con_part a[data-localize] {
    color: #cecdcd;
    text-decoration: none; /* Remove underline */
    cursor: pointer;
    font-weight: 300;
    margin-top: 5%;
}


.left_end {
    text-align: left; /* Ensures the text inside <p> starts on the left */
}

@media (min-width: 768px) and (max-width: 1024px) {

    .logo {
        margin-left: 8.1%;
        margin-top: 2.5%;
        align-self: flex-end; /* Align the logo to the bottom */
        width: 25%;
    }   
    
    .end .line {
        display: flex;
        justify-content: space-between;
        align-items: flex-start; /* Align items at the top */
        width: 100%;
        background-color: #36383e; /* If needed */
    }

    .logo img {
        width: 34%;
    }

    .menu {
        width: 100%; /* Adjust the width of the .menu */
        margin-left: 8.1%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 3%;
    }

    .logos {
        margin-top: 3%;
        margin-right: 3.5rem;
    }

    h6 {
        font-size: 0.8rem;
    }

    .end .part {
        display: flex;
        justify-content: space-between;
        align-items: flex-end; /* Align the logo and sentence to the bottom */
        width: 100%;
        margin-bottom: 0;
    }

    .sentence {
        display: flex;
        margin-top: 1.8%;
        margin-left: auto;
        margin-right: 0%;
    }
    
    .sentence p {
        color: #cecdcd;
        font-weight: 300;
        font-size: 0.7rem;
        margin-bottom: 5.5%; /* Removes default bottom margin */
        margin-right: 3.5rem;
        width: 20.1rem;
    }

    .con_part {
        display: none;
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .end {
        width: 100%;
        height: auto;
    }

    .menu {
        display: block;
        margin-top: 5%;
        margin-left: 9.1%;
        margin-bottom: 5%;
    }

    .logos {
        margin-top: 5%;
        margin-right: 2rem;
    }

    h6 {
        font-size: 0.7rem;
    }

    .menu a {
        display: block;
        margin-top: 3%;
        color: #fff;
    }

    .end .line {
        display: flex;
        justify-content: space-between;
        align-items: flex-start; /* Align items at the top */
        width: 100%;
        background-color: #36383e; /* If needed */
    }

    .end .part {
        display: flex;
        justify-content: space-between;
        align-items: flex-end; /* Align the logo and sentence to the bottom */
        width: 100%;
        margin-bottom: 0;
    }

    .sentence {
        display: block;
        width: 100%;
        margin-left: 8%;
        padding-left: 0;
        margin-top: 2%;
        width: 10.1rem;
        margin-right: 2rem;
    }

    .sentence p {
        color: #cecdcd;
        font-weight: 300;
        font-size: 0.5rem;
        margin-bottom: 11.5%; /* Removes default bottom margin */
        width: 10.1rem;
    }

    .logo {
        margin-left: 9.1%;
        margin-top: 4%;
        align-self: flex-end; /* Align the logo to the bottom */
        width: 100%;
        margin-bottom: 4%;
    } 

    .logo img {
        width: 5rem;
        margin-top: 2%;
    }

    .logos {
        display: flex;
        align-items: center; /* Align logos vertically at the center */
    }


    h6 {
        margin: 0;
        padding: 0;
        line-height: 1; /* Ensure no extra space around the text */
    }

    .con_part {
        display: none;
    }
}

/* For phones */
@media (max-width: 479px) {

    .end {
        width: 100%;
        height: auto;
    }

    .menu {
        display: block;
        margin-top: 5%;
        margin-left: 9.1%;
        margin-bottom: 5%;
    }

    .logos {
        margin-top: 5%;
        margin-right: 2rem;
    }

    h6 {
        font-size: 0.7rem;
    }

    .menu a {
        display: block;
        margin-top: 3%;
        color: #fff;
    }

    .end .line {
        display: flex;
        justify-content: space-between;
        align-items: flex-start; /* Align items at the top */
        width: 100%;
        background-color: #36383e; /* If needed */
    }

    .end .part {
        display: flex;
        justify-content: space-between;
        align-items: flex-end; /* Align the logo and sentence to the bottom */
        width: 100%;
        margin-bottom: 0;
    }

    .sentence {
        display: block;
        width: 100%;
        margin-left: 8%;
        padding-left: 0;
        margin-top: 2%;
        width: 10.1rem;
        margin-right: 2rem;
    }

    .sentence p {
        color: #cecdcd;
        font-weight: 300;
        font-size: 0.5rem;
        margin-bottom: 11.5%; /* Removes default bottom margin */
        width: 10.1rem;
    }

    .logo {
        margin-left: 9.1%;
        margin-top: 4%;
        align-self: flex-end; /* Align the logo to the bottom */
        width: 100%;
        margin-bottom: 4%;
    } 

    .logo img {
        width: 5rem;
        margin-top: 2%;
    }

    .logos {
        display: flex;
        align-items: center; /* Align logos vertically at the center */
    }


    h6 {
        margin: 0;
        padding: 0;
        line-height: 1; /* Ensure no extra space around the text */
    }

    .con_part {
        display: none;
    }
}

@media (min-width: 1920px) {

    .menu h6 {
        margin: 0;
        padding: 0;
        font-weight: 400;
        font-size: 1.2rem;
    }

    .sentence p {
        color: #cecdcd;
        font-weight: 300;
        font-size: 1rem;
        margin-bottom: 3%; /* Removes default bottom margin */
        margin-right: 6.95rem;
        width: 25.85rem;
    }

    .con_part {
        display: flex;
        flex-direction: column;
        font-size: 1.1rem;
        color: #cecdcd;
        margin-top: 0.5rem;
        font-weight: 200;
    }
}