.karriera-image-container {
    position: relative;
    width: 100%; /* Adjust the width as necessary */
    height: 562px; /* This will maintain the aspect ratio of the background image */
}

.karriera-image-container img {
    display: block; /* Prevents default image inline behavior which can cause issues with spacing */
    width: 100%; /* This will make the image responsive, adjusting to the width of its container */
    height: auto; /* Maintains the aspect ratio */
}
.karriera-overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    mix-blend-mode: multiply;
}


.career-section {
    margin-top: 100px;
}

.career-section h1 {
    font-size: 50px; /* Adjust the size as needed */
    margin-bottom: 20px; /* Add some space below the header */
}

.career-section p {
    font-size: 20px; /* Adjust the size as needed */
    margin-bottom: 10px; /* Add some space below the paragraph */
}
.main-text-and-button{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 40px;
    background: #f0f4f8;
}

@media (max-width: 768px) {
    .main-text-and-button{
        margin-bottom: 40px !important;
        padding: 0px !important;
    }
}


.regular-text-and-button{
    margin-bottom: 100px;
}
.career-apply-now-button {
    background-color: #EB192D; /* Change to your desired button background color */
    color: #fff; /* Change to your desired button text color */
    border: none; /* Remove default border */
    padding: 10px 20px; /* Add some padding */
    margin: 5px; /* Add some space around the buttons */
    cursor: pointer; /* Change the cursor to a pointer on hover */
    border-radius: 10px;
    width: 254px;
    height: 50px;

    transition: all 0.3s;
}
.career-buttons button {
    background-color: #EB192D; /* Change to your desired button background color */
    color: #fff; /* Change to your desired button text color */
    border: none; /* Remove default border */
    border-radius: 10px;
    padding: 10px 20px; /* Add some padding */
    margin: 5px; /* Add some space around the buttons */
    cursor: pointer; /* Change the cursor to a pointer on hover */
    width: 449px;
    height: 110px;
}

.career-buttons button:hover {
     /* Add a slight hover effect */
}
