@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");

body {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #121212;
}

a {
    text-decoration: none !important;
}

i,
span,
a {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #121212;
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #121212;
    margin: 0px;
}

/*===== All Section Title Style =====*/
.section-title .title {
    font-size: 44px;
    font-weight: 600;
    color: #121212;
    line-height: 55px;
}

@media (max-width: 767px) {
    .section-title .title {
        font-size: 30px;
        line-height: 35px;
    }
}

.section-title .text {
    font-size: 16px;
    line-height: 24px;
    color: #6c6c6c;
    margin-top: 24px;
}


/*===== Testimonial arrows =====*/

.testimonial-active .slick-arrow {
    position: absolute;
    bottom: -30px;
    font-size: 28px;
    cursor: pointer;
    color: #a4a4a4;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.testimonial-active .slick-arrow.prev {
    left: 0px;
}

.testimonial-active .slick-arrow.next {
    right: 10px;
}

@media only screen and (min-width: 1200px) {
    .testimonial-active .slick-arrow.prev {
        left: -45px;
    }
}

.testimonial-active .slick-arrow:hover {
    color: #000;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-active .slick-arrow.prev {
        left: 0px;
    }
    .testimonial-active .slick-arrow.next {
        right: 10px;
    }
}