
/* Wrapper around slider and triangles */
.dh-slider-wrapper {
    position: relative;
}

.slider-container {
    z-index: 1;
    position: relative;
    box-shadow: 0px 3px 4px #8b8b8b;
    border-radius: 11px;
}

.dh-slider-content {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    z-index: 1;
    position: relative;
}
.slider-container img.dh-slider-prev-shape {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    max-height: 100%;
    z-index: -1;
}
.slider-container img.dh-slider-next-shape{
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    max-height: 100%;
    z-index: -1;
}

.image {
    width: 300px;
    flex-shrink: 0;
}
.image img {
    width: auto;
    height: auto;
    border-radius: 10px;
    max-width: 100%;
}
.content {
    flex: 1;
    padding: 15px 0;
}
.slider-container .content img#dh-slider-logo {
    width: auto;
    height: auto;
    margin-bottom: 13px;
    max-width: 160px;
    max-height: 43px;
}
.dh-slider-description-wrap {
    display: flex;
    gap: 5px;
    margin-left: -25px;
}
.dh-slider-description-wrap img.dh-slider-comma-shape {
    width: auto;
    height: auto;
    max-width: 20px;
    max-height: 20px;
}
.navigation {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    .navigation {
        justify-content: center;
        margin-bottom: 30px;
    }
    .dh-slider-content {
        display: block;
        padding: 15px;
    }
    .image {
        max-width: 100%;
    }
}
.navigation button {
    padding-top: 10px;
    margin-left: 10px;
    background: transparent;
    color: #7e7e7e;
    border: 1px solid #7e7e7e;
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 22px;
    line-height: 3px;
    padding-bottom: 15px;
    text-align: center;
    padding-left: 8px;
    font-weight: 100;
}
.navigation button:hover {
    background: #084CC0;
    border-color: #084CC0;
    width: 84px;
    color: white;
    border-radius: 20px;
    padding-left: 15px;
}
.navigation button:focus{
background: #084CC0;
    border-color: #084CC0;
}
div#dh-slider-description {
    font-family: "Poppins", Sans-serif;
    font-size: 23px;
    line-height: 36.8px;
    color: #495057;
    font-weight: 400;
    margin-top: -5px;
}
h2#dh-slider-title {
    font-size: 19px;
    margin: 20px 0 0;
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
    color: gray;
}
h2#dh-slider-title b {
    color: #010715;
}