.carusel {
    height: 681px;
    width: 100%;
    position: relative;
}

.carusel:after {
    background: #0f1429 0 0 no-repeat padding-box;
    width: 52%;
    position: absolute;
    top: -33px;
    content: "";
    display: block;
    right: 0;
    height: 100%;
    z-index: -1;
}

.name_buttons {
    position: absolute;
    height: 72px;
    width: 278px;
    left: 17%;
    top:27%;
    text-align: center;
    font: normal normal bold 28px/36px Source Sans Pro;
    letter-spacing: 0;
    color: #FFFFFF;
}

.name_buttons:after {
    content: '';
    display: block;
    width: 88px;
    height: 2px;
    background: #FFC647 0 0 no-repeat padding-box;
    margin: 8px auto 8px;
}

.slider {
    position: absolute;
    width: 1060px;
    height: 500px;
    left: 30%;

}

.prev,
.next {
    margin-top: 7px;
    position: absolute;
    top: 113%;
    left: 10%;
    height: 17px;
    width: 35px;
    z-index: auto;
    cursor: pointer;
    background: transparent url("../../resources/img/left-arrow.png") center/contain no-repeat;
}

.next {
    left: 17%;
    transform: rotate(180deg);
}

.prev:hover, .prev:active,
.next:hover, .next:active{
    background: transparent url("../../resources/img/right-arrow.png") center/contain no-repeat;
}

.show_hr {
    width: 276px;
    height: 52px;
    position: absolute;
    top: 80%;
    left: 60%;
    border: 2px solid #FFD354;
    border-radius: 2px;
    text-align: center;
    font: normal normal 600 18px/23px Source Sans Pro;
    letter-spacing: 0;
    color: #FFD354;
    -webkit-text-fill-color: #FFD354;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.show_hr:active, .show_hr:hover {
    background-color: #FFD354;
    color: #0B1024;
    -webkit-text-fill-color: #0B1024;
    border: 2px solid #FFD354;
}

.dots {
    width: 104px;
    display: flex;
    margin-top: 45px;
    margin-left: 39%;
    list-style-type: none;
}

.dots > li > button {
    width: 8px;
    height: 8px;
    margin: 8px;
    background: #747474;
    border-radius: 50%;
    border: none;
    outline: none;
    font-size: 0;
    cursor: pointer;
}

.dots > li > button:active, .dots > li > button:hover {
    background: #FFFFFF;
}

.dots > .slick-active > button{
    background-color: #FFD354;
}

@media screen and (max-width: 768px) {
    .carusel {
        height: 840px;
    }

    .name_buttons {
        position: static;
        height: 72px;
        width: 278px;
        margin: 30px auto;
        text-align: center;
        font: normal normal bold 28px/36px Source Sans Pro;
        letter-spacing: 0;
        color: #FFFFFF;
    }

    .name_buttons:after {
        content: '';
        display: block;
        width: 88px;
        height: 2px;
        background: #FFC647 0 0 no-repeat padding-box;
        margin: 8px auto 8px;
    }

    .slider {
        width: 350px;
        height: 500px;
        margin: 100px auto 0 auto;
        position: static;
        left: 0;
    }

    .slider > div {
        width: 100%;
        height: 100%;
    }

    .slider-box {
        position: relative;
    }

    .prev,
    .next {
        margin-top: 7px;
        position: absolute;
        top: 15%;
        left: 32%;
        height: 17px;
        width: 35px;
        z-index: 0;
        cursor: pointer;
    }

    .next {
        left: 58%;
        transform: rotate(180deg);
    }

    .show_hr {
        position: static;
        width: 276px;
        height: 52px;
        border: 2px solid #FFD354;
        border-radius: 2px;
        text-align: center;
        font: normal normal 600 18px/23px Source Sans Pro;
        letter-spacing: 0;
        color: #FFD354;
        margin: 50px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dots {
        width: 30%;
        display: flex;
        justify-content: center;
        margin-top: 0;
        margin-left: 35%;
        list-style-type: none;

    }

    .dots > li > button {
        width: 8px;
        height: 8px;
        margin: 8px;
        background: #747474;
        border-radius: 50%;
        border: none;
        outline: none;
        font-size: 0;
    }
}

@media screen and (max-width: 1700px) and (min-width: 769px) {

    .slider {
        width: 716px;
    }

    .name_buttons {
        left: 5%;
    }

    .dots {
        margin-left: 25%;
    }
}

@media screen and (max-width: 320px) {
    .slider {
        width: 310px;
    }

    .slider img {
        width: 310px;
    }
}


