* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;

    font-family: 'Montserrat';
    height: 100vh;
    background: linear-gradient(to right, #eaebeb 50%, #0e2f46 50%);
}

.container {
    width: 60%;
    margin: auto auto;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

h1 {
    cursor: pointer;
}

.container .img-slider {
    display: flex;
    width: 100%;
    height: 500px;
    position: relative;
}

.container .img-slider img {
    width: 100%;
    object-fit: cover;
}

.container .img-slider .navigation {
    width: 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);

}

.navigation .circle {
    padding: 4px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.container .headline-slider {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 2.5rem 2rem;

    position: absolute;
    top: 3rem;
    bottom: 3rem;
    left: -4rem;
}

.container .headline-slider .line {
    width: 15%;
    height: 2px;
    margin-top: 10px;
    background-color: black;
}

.container .headline-slider p {
    padding: 2rem 0rem;
    line-height: 25px;
}

a {
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    color: black;
    margin-bottom: 2rem;
}

.img-slider img,
.headline-slider .description {
    opacity: 0;
    transition: opacity 0.0001s ease;
}

.img-slider img.show,
.headline-slider .description.show {
    opacity: 1;
}

a:hover,
span:hover,
h1:hover {
    color: rgb(31, 31, 87);
}

.circle.active {
    background-color: white;
}

.nextBtn {
    font-size: 2rem !important;
    color: gray;
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
}

.d-none {
    display: none;
}