
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 none;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    text-align: inherit;
    vertical-align: baseline;
    color: inherit;
    outline: 0;
}


@font-face {
    font-family: 'Milk And Honey';
    src: url('../fonts/Milk\ And\ Honey.otf');
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Regular.otf');
}

img,
svg,
audio,
video,
canvas,
iframe,
embed,
object {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
}

summary {
    display: list-item;
}

html {
    font-size: 100%;
}

body {
    overflow: auto;
    /* font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", "Liberation Sans", FreeSans, sans-serif; */
    /* font-weight: 400; */
    line-height: 1.5;
    text-align: left;
    color: #555;
    background-color: #fff;
}

body,
html {
    height: 100%;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #555;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    /* width: 100%; */
    /* height: 100%; */
    cursor: default;
    background-size: cover;
}

.slide-content {
    position: absolute;
    top: 30%;
    width: 100%;
    text-align: center;
    color: #fff;
    /* text-shadow: 0em 0.125em 0.3125em rgba(0, 0, 0, 0.6), 0em 0em 0.3125em rgba(0, 0, 0, 0.5); */
}

.slide-title {
    font-family: 'Montserrat';
    font-size: 4.5vw;
    font-weight: 100;
    font-style: normal;
    letter-spacing: 3px;
}


.slider-nav {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    z-index: 10;
}

.prev-slide,
.next-slide {
    position: absolute;
    display: inline-block;
    width: 3.125rem;
    height: 3.125rem;
    line-height: 3.125;
    margin: 0;
    border: 0.125rem solid white;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    overflow: hidden;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease-in-out 0s;
    -webkit-user-select: none;
    user-select: none;
}

.prev-slide {
    left: 2%;
}

.next-slide {
    right: 2%;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.prev-slide::before,
.next-slide::before {
    position: absolute;
    top: 33%;
    display: inline-block;
    width: 0.8125rem;
    height: 0.8125rem;
    content: "";
    border-left: 0.25rem solid white;
    border-top: 0.25rem solid white;
    backface-visibility: hidden;
}

.prev-slide::before {
    transform: rotate(-45deg);
    right: 25%;
}

.next-slide::before {
    transform: rotate(135deg);
    left: 25%;
}

@media screen and (max-width: 540px) {

    .prev-slide,
    .next-slide {
        display: none;
    }
  
    .btn-primary{
        padding: 2px;
        font-size: 12px;
    }
    .slide img{
        position: absolute;  
        height: 100vh;
        width: 100vh;
        background-size: cover;
      }
}

