body{
   font-size: 14px; 
}

.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

.test__container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.test-slick {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto 20px;
    overflow: hidden;
}

@media only screen and (max-width: 426px){
    .test-slick {
        height: 400px;
    }
}


.test-slick__item {
    /* margin-right: 5px; */
    /* margin-left: 5px; */
    position: relative;
}

.test-slick__item p{
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translate(0, -50%);
    text-align: center;
    font-size: 2rem;
    color: #fff;
}

@media only screen and (max-width: 426px){
    .test-slick__item p{
        top: calc(50% - 50px);
    }
}



.test-slick__item img {
    /* height: auto; */
    /* width: 100%;  */
    width:100%;
    height: 500px;
    /* transform: translateX(-50%); */
    object-fit: cover;
}

.test-slick2 {
    width: 100%;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    /* @include breakpoint(500px) {
        margin: 5% auto;
    } */
}

@media only screen and (max-width: 426px){
    .test-slick2 {
        width: 80%;
    }
}

.test-slick2 p{
    width: 100%;
    text-align: center;
}

.test-slick2__item {
    /* margin-right: 5px; */
    /* margin-left: 5px; */
}

.test-slick2__item img {
    height: auto;
    width: 100%;
}

.slick-prev:before, .slick-next:before {
    color: #000066;
}


footer{
    background-color: #bbb;
    text-align: center;
    margin-top: auto;
}