body {

    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 48px;
}

h4 {
    font-size: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #f8f9fd;
}

#mySlider a {
    padding: 10px 25px;
    background-color: #4CA74C;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
}

#mySlider {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 900px;
}

.singleSlide {
    background-size: cover;
    height: 900px;
    box-sizing: border-box;
    position: absolute;
    left: 100%;
    width: 100%;
    top: 0px;
}

.slideOverlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 218px;
    height: 100%;
    box-sizing: border-box;
    line-height: 50px;
}

.slideOverlay h2 {
    visibility: inherit;
    transition: none 0s ease 0s;
    text-align: left;
    line-height: 23px;
    border-width: 0px;
    margin: 0px;
    padding-left: 225px;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 19px;
    white-space: nowrap;
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
    transform-origin: 50% 50% 0px;
    margin-bottom: 50px;
}

.slideOverlay h1 {
    visibility: inherit;
    transition: none 0s ease 0s;
    text-align: left;
    line-height: 108px;
    border-width: 0px;
    margin: 0px;
    padding-left: 225px;
    letter-spacing: 14px;
    font-weight: 900;
    font-size: 135px;
    white-space: normal;
    min-height: 0px;
    min-width: 708px;
    max-height: none;
    max-width: 708px;
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
    transform-origin: 50% 50% 0px;
    margin-top: 130px;
    margin-bottom: 60px;
}

.slideOverlay h4 {
    visibility: inherit;
    transition: none 0s ease 0s;
    text-align: left;
    /* line-height: 108px; */
    border-width: 0px;
    margin: 0px;
    padding-left: 225px;
    /* letter-spacing: 14px;
    font-weight: 900;*/
    font-size: 18px;
    white-space: normal;
    /* min-height: 0px;
    min-width: 708px; */
    /* max-height: none;
    max-width: 708px; */
    max-width: 892px;
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
    transform-origin: 50% 50% 0px;
    margin-top: 20px;
}


#sliderNav {
    position: relative;
    top: -445px;
    z-index: 999;
    font-size: 42px;
}

#sliderNav:hover {
    cursor: pointer;
}

#sliderPrev {
    position: relative;
    float: left;
    left: 50px;
}

#sliderNext {
    position: relative;
    float: right;
    right: 50px;
}

@-webkit-keyframes slideIn {
    100% {
        left: 0;
    }
}

@keyframes slideIn {
    100% {
        left: 0;
    }
}

.slideInRight {
    left: -100%;
    -webkit-animation: slideIn 1s forwards;
    animation: slideIn 1s forwards;
}

.slideInLeft {
    left: 100%;
    -webkit-animation: slideIn 1s forwards;
    animation: slideIn 1s forwards;
}

@-webkit-keyframes slideOutLeft {
    100% {
        left: -100%;
    }
}

@keyframes slideOutLeft {
    100% {
        left: -100%;
    }
}

.slideOutLeft {
    -webkit-animation: slideOutLeft 1s forwards;
    animation: slideOutLeft 1s forwards;
}

@-webkit-keyframes slideOutRight {
    100% {
        left: 100%;
    }
}

@keyframes slideOutRight {
    100% {
        left: 100%;
    }
}

.slideOutRight {
    -webkit-animation: slideOutRight 1s forwards;
    animation: slideOutRight 1s forwards;
}