* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
body{
    
    src: url('../fonts/Konnect-Regular.woff') format('woff2'),
    url('../fonts/Konnect-Regular.woff2') format('woff');
}
:root {
    --primary-color: rgb(23, 44, 66);
    --secondory-color: #78dd5c;
    --black-color: #000;
    --white-color: #fff;
    --content-color: #696969;
}
a,p,span {
    font-family: 'Nunito Sans';
}
a {
    text-decoration: none;
    color: var(--black-color);
}
li {
    list-style: none;
}
ul {
    padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
    margin: 0;
}

h1,h2,h3,h4,h5,h6 {
    /* font-family: 'Konnect'; */
    /* font-family: 'Kanit', sans-serif; */
    font-family: 'Arimo', sans-serif;
    color: var(--black-color);
}
h2 {
    font-size: 43px;
    line-height: 1.3;
    font-weight: 600;
}
p {
    font-weight: 400;
    font-size: 16px;
    color: var(--content-color);
}
section {
    padding: 5% 0;
}

/* banner css start */
.slider, .slide {
    height: 100vh;
}

.slide {
    position: relative;
}

.slide .slide__content--headings .title {
    margin: 15px 0px 30px;
}

.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slide .slide__img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    animation-duration: 3s;
    transition: all 1s ease;
}

.slide .slide__content {
    position: absolute;
    top: 50%;
    left: 26%;
    transform: translate(-50%, -50%);
}
.slide .slide-itm{
    left: 30%;
}

.slide .slide__content.slide__content__left {
    left: 15%;
    transform: translate(-15%, -50%);
}

.slide .slide__content--headings {
    color: var(--white-color);
}

.slide .slide__content--headings h2 {
    font-size: 4.5rem;
    margin: 10px 0;
}

.slide .slide__content--headings .animated {
    transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
    color: var(--white-color);
    font-size: 22px;
}

.slide .slide__content--headings .title {
    font-size: 44px;
}

.slide .slide__content--headings .button-custom {
    background-color: var(--secondory-color);
    border-color: var(--secondory-color);
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
    font-size: 1.3rem;
    transition: all 0.4s;
}
.slide .slide__content--headings .button-custom:hover{
    background-color: transparent;
}

.slider [data-animation-in] {
    opacity: 0;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}

.slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
    opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li {
    height: 3px;
    width: 50px;
}

.stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
    opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
}

/* ============== IMAGE ZOOM ================ */
@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.zoomInImage {
    animation-name: zoomInImage;
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.zoomOutImage {
    animation-name: zoomOutImage;
}

.slick-nav {
    --active: #fff;
    --border: rgba(255, 255, 255, 0.12);
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
    left: 3%;
    transform: scaleX(-1);
    z-index: 999;
}

.slick-nav.next-arrow {
    left: auto;
    right: 3%;
}

.slick-nav i {
    display: block;
    position: absolute;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
}

.slick-nav i:before,
.slick-nav i:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--active);
    margin: -1px 0 0 -5px;
    display: block;
    transform-origin: 9px 50%;
}

.slick-nav i:before {
    transform: rotate(-40deg);
}

.slick-nav i:after {
    transform: rotate(40deg);
}

.slick-nav:before,
.slick-nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.slick-nav svg {
    width: 44px;
    height: 44px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--active);
    stroke-width: 2px;
    stroke-dashoffset: 126;
    stroke-dasharray: 126 126 0;
    transform: rotate(0deg);
}

.slick-nav.animate svg {
    animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
    animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
    animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
    animation: arrowDown 1.6s ease forwards;
}

@keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
    }

    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
    }

    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
    }
}

@keyframes arrow {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    23% {
        transform: translateX(17px);
        opacity: 1;
    }

    24%,
    80% {
        transform: translateX(-22px);
        opacity: 0;
    }

    81% {
        opacity: 1;
        transform: translateX(-22px);
    }
}

@keyframes arrowUp {

    0%,
    100% {
        transform: rotate(-40deg) scaleX(1);
    }

    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}

@keyframes arrowDown {

    0%,
    100% {
        transform: rotate(40deg) scaleX(1);
    }

    20%,
    80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}

/* banner css end */


/* header css start */

.navbar-expand-lg .navbar-nav .nav-link {
    padding-inline: 20px;
    font-size: 16px;
    font-weight: 500;
    z-index: 1;
}
.navbar-expand-lg .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--secondory-color);
    left: 0;
    right: 0;
    top: 87%;
    margin: 0 auto;
    transition: all 0.4s;
}
.navbar-expand-lg .navbar-nav .nav-link:hover::after {
    width: 100%;
    height: 35px;
    transform: translateY(-90%);
    margin: 0 auto;
    z-index: -1;
}

nav.navbar.navbar-expand-lg.bg-body-tertiary {
    border-bottom: 1px solid #e0e0e0
}

/* header css end */


/* about css start */

.portrait {
    width: 80%;
    max-width: 600px;
}



.fill.about-img {
}
.fill.about-img img{
    z-index: 2;
    transition: all 0.4s;
}
.fill.about-img::after {
    content: "";
    width: 80%;
    height: 85%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--secondory-color);
    transform: translate(30px, 50px);
    border-right-width: 25px;
    border-color: var(--primary-color);
}
.fill.about-img:hover img {
    transform: translate(30px, 50px);
}

.about-content h2,
.about-content p {
    margin-bottom: 20px;
}

/* counter css */
.sectiontitle {
    background-position: center;
    margin: 30px 0 0px;
    text-align: center;
    min-height: 20px;
}

.sectiontitle h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 10px;
}

.headerLine {
    width: 160px;
    height: 2px;
    display: inline-block;
    background: #101F2E;
}

.projectFactsWrap {
    margin-top: 30px;
}

#projectFacts .fullWidth {
    padding: 0;
}

.projectFactsWrap .item {
    width: 33.33%;
    padding: 20px 0px 0px;
}

.projectFactsWrap .item p.number {
    font-size: 40px;
    color: var(--primary-color);
}

.projectFactsWrap .item span {
    width: 60px;
    background: var(--secondory-color);
    height: 2px;
    margin: 0 auto 10px;
}

/* ----------------- about css end --------------- */



/* ----------------- testimonial css end --------------- */

.testimonial {
    background: var(--white-color);
    text-align: center;
    margin: 0 20px;
}

.testimonial .description {
    padding: 40px 30px;
    margin-bottom: 50px;
    border-top: 1px solid #2660a4;
    border-left: 1px solid #2660a4;
    font-size: 15px;
    color: #887e7f;
    line-height: 30px;
    text-align: left;
    position: relative;
}

.testimonial .description:before {
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    float: left;
    padding: 0 15px 5px 0;
    font-size: 30px;
    color: var(--secondory-color);
    text-align: center;
    position: relative;
    top: 8px;
    left: 0;
}

.testimonial .description:after {
    content: "";
    width: 50%;
    height: 1px;
    background: #2660a4;
    position: absolute;
    bottom: 0;
    left: 0;
}

.testimonial .testimonial-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial .testimonial-content:before {
    content: "";
    width: 1px;
    height: 20px;
    background: #2660a4;
    position: absolute;
    top: -50px;
    left: 50%;
}

.testimonial .testimonial-content:after {
    content: "";
    width: 2px;
    height: 40px;
    background: #2660a4;
    position: absolute;
    top: -70px;
    left: 50%;
    transform: skewX(-45deg);
    transform-origin: 100% 100% 0;
}

.testimonial .pic {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 7px;
}

.testimonial .pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.testimonial .title {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #2660a4;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.owl-theme .owl-controls {
    margin-top: 30px;
}

.owl-theme .owl-controls .owl-page span {
    width: 15px;
    height: 10px;
    border-radius: 0;
    background: var(--secondory-color);
    opacity: 0.8;
    transition: all 0.3s ease 0s;
}

.owl-theme .owl-controls .owl-page.active span {
    width: 35px;
    background: #2660a4;
}
#testimonial button.owl-dot.active {
    background: var(--primary-color);
    width: 30px;
}
#testimonial button.owl-dot {
    background: var(--secondory-color);
    font-size: 16px;
    width: 15px;
    height: 10px;
    margin: 10px 7px;
}
#testimonial .owl-dots{
    text-align: center;
}


/* ----------------- testimonial css end --------------- */


/* ----------------- story css start --------------- */

section.story .story-bg {
    background-image: url(../img/11.jpg);
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0px;
}

section.story .story-bg .story-outline {
    width: 94%;
}

section.story .story-bg .story-outline h2 {
    padding-block: 10%;
    transition: all 0.3s;
}

.story:hover .story-bg h2 {
    border: 2px solid var(--white-color);
}

.story .story-bg h2 i {
    cursor: pointer;
}


.story .story-bg .video-popup {
    display: none;
}

.story .story-bg .popup-content {
    background: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 80%;
}

.story .story-bg .video-popup i {
    z-index: 11111;
    position: absolute;
    top: 11%;
    left: 80%;
}
/* ----------------- story css end --------------- */

/* ----------------- films css strat -------------- */
.films-head p {
    font-size: 15px;
}
.films-head a i {
    font-size: 50px;
    color: red;
}
.films-shorts img, .films-head img {
    object-fit: cover;
}
/* ----------------- films css end -------------- */

/* ----------------- films css strat -------------- */

section#hire a{
    background-color: var(--secondory-color);
    padding: 15px 30px;
    transition: all 0.4s;
    border-color: var(--secondory-color);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: var(--primary-color);
}
.nav-pills .nav-link {
    color: var(--primary-color);
}
section#hire a:last-child{
    background-color: transparent;
}
section#hire a:hover{
    background-color: var(--secondory-color);
}
section#hire a:first-child:hover{
    background-color: transparent;
}
/* ----------------- films css end -------------- */


/* ----------------- hire css start -------------- */
section#hire {
    background-image: url(../img/14.jpg);
    background-position: 10% 33%;
    background-size: cover;
    background-attachment: fixed;
}
.hire-bg{
    padding: 100px 0px;

}
/* ----------------- hire css end -------------- */


/* ----------------- award css start -------------- */
section.award .owl-carousel .owl-item .award-item {
    width: 100%;
    margin: 0 auto;
    height: 100%;
}
section.award .owl-carousel .owl-item img, .award-img {
    height: 100%;
    object-fit: contain;
}
section.award .owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 0px;
    margin-top: 20px;
}
    section.award .owl-theme .owl-dots .owl-dot.active span {
        width: 30px;
    }
    .award-content {
        text-align: center;
    }
section.award .owl-theme .owl-dots .owl-dot.active span{
    background-color: #78dd5c;
}
.award .nav-tabs .nav-link.active, .award .nav-tabs .nav-link{
    border: 0;
}
.award .owl-carousel.owl-drag .owl-item {
    height: 80vh;
}
.award-logo {
    width: 150px;
    margin: 0 auto 20px;
}
.award .owl-carousel.owl-theme.nav-tabs.owl-loaded.owl-drag{
    position: relative;
}
.award .owl-nav button.owl-prev {
    position: absolute;
    right: 100%;
    top: 40%;
    font-size: 68px;
}
.award .owl-nav button.owl-next {
    position: absolute;
    left: 100%;
    top: 40%;
    font-size: 68px;
}
section.award .owl-carousel .owl-item .award-item .row{
    height: 100%;
}
.award .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: #000;
    text-decoration: none;
}
/* ----------------- award css end -------------- */



/* ----------------- Contact css start ---------- */
#contact-us{
    background-image: url(../img/footer4-bg-round.png);
    background-size: cover;
    background-position: right;
}
.contact-social ul li a{
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    line-height: 43px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    transition: all 0.4s;
}
.contact-social ul li a:hover{
    border-color: var(--secondory-color);
    background-color: var(--secondory-color);
    color: var(--white-color);
}

figure.snip1383 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #07090c;
}
figure.snip1383 * {
  box-sizing: border-box;
  transition: all 0.35s ease;
}
figure.snip1383 img {
  max-width: 100%;
  transition-delay: 0.2s;
  backface-visibility: hidden;
}
figure.snip1383 figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: scale(0.5) translate(0%, -50%);
  transform-origin: 50% 0%;
  z-index: 1;
  opacity: 0;
}
figure.snip1383:hover figcaption,
figure.snip1383.hover figcaption {
  transform: scale(1) translate(0, -50%);
  opacity: 1;
  transition-delay: 0.35s;
}

@keyframes snip1383 {
  50% {
    transform: scale(0.8) translateY(0%);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.8) translateY(150%);
    opacity: 0.5;
  }
}

/* ----------------- Contact css end ------------ */

/* ----------------- footer css end ------------ */

#back-to-top {
    position: fixed;
    bottom: 40px;
    left: 95%;
    z-index: 9999;
    width: 34px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
  }
  
  #back-to-top:hover {
    background: var(--secondory-color);
  }
  
  #back-to-top.show {
    opacity: 1;
  }
footer {
    border-top: 1px solid var(--content-color);
}
.footer-copyright .copyright-company{
    color: var(--secondory-color);
    transition: all 0.4s;
}
.footer-copyright .copyright-company:hover{
    color: var(--content-color);
}
.footer-menu li a{
    transition: all 0.4s;
}
.footer-menu li a:hover{
    color: var(--secondory-color);
}
/* ----------------- footer css end ------------ */


/* responsive css */

@media (min-width: 992px) {
    .slide .slide__img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}

@media (max-width:1024px){
    h2 {
        font-size: 35px;
        line-height: 1;
    }
    .slider, .slide {
        height: 70vh;
    }
    section#hire a {
        padding: 15px 25px;
    }
}

@media (max-width:991px){
    .slick-list.draggable, .slick-list.draggable .slick-track, .slide .slide__img img, .slide .slide__img{
        height: 100%;
        object-fit: cover;
    }
    h2 {
        font-size: 27px;
        line-height: 1;
    }
    header nav#navbar_top .container {
        justify-content: end;
    }
    .projectFactsWrap .item p.number {
        font-size: 27px;
    }
    .films-head iframe, .portrait{
        width: 100%;
    }
    h4 {
        font-size: 22px;
    }
    section#hire a {
        padding: 10px 20px;
    }
    .projectFactsWrap .item {
        padding: 10px 0px 0px;
    }
    .films-head a {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .projectFactsWrap .item {
        flex: 0 0 33.33%;
    }
    .portrait {
        height: 645px;
    }
    .about-content {
        margin-top: 30px;
    }
    section#hire h2 {
        margin-bottom: 5%;
    }
    .slide .slide__content--headings .title {
        font-size: 30px;
    }
    .slide .slide__content--headings .button-custom, .slide .slide__content--headings .top-title{
        font-size: 18px;
    }
    .story .story-bg .popup-content {
        width: 500px;
        height: 55%;
    }
    .fill.about-img::after {
        transform: translate(30px, 30px);
    }
    .fill.about-img:hover img {
        transform: translate(30px, 30px);
    }
    .about-content {
        margin-top: 50px;
    }
    .testimonial .description {
        padding: 10px 10px;
        font-size: 15px;
        color: #887e7f;
        line-height: 27px;
    }
    .award-content h4 {
        font-size: 16px;
    }
    .award-content p {
        font-size: 13px;
        margin-bottom: 5px !important;
    }
    .award-logo {
        width: 100px;
        margin: 0 auto 20px;
    }
}

@media (max-width:576px){
    h2 {
        font-size: 25px;
    }
    p, .films-head p{
        font-size: 13px;
    }
    .projectFactsWrap .item p.number {
        font-size: 22px;
    }
    .footer-menu .navbar-collapse li.nav-item a {
        font-size: 14px;
    }
    .slide .slide__content--headings .title {
        font-size: 26px;
    }
    .footer-menu .navbar-collapse ul{
        justify-content: space-around !important;
    }
    .portrait {
        height: 460px;
    }
    .story .story-bg .popup-content {
        width: 400px;
        height: 55%;
    }
    .fill.about-img {
        width: 70%;
        margin: 0 auto;
    }
    #back-to-top {
        left: 90%;
    }
    .slider, .slide {
        height: 87vh;
    }
}

@media (max-width:425px) {
    .slide .slide__content {
        left: 33%;
    }
    section#films ul#pills-tab li.nav-item {
        width: 25%;
    }
    section#films ul#pills-tab li.nav-item button {
        width: 100%;
    }
    section#films ul#pills-tab li.nav-item button {
        width: 100%;
        font-size: 15px;
        padding-inline: 8px !important;
    }
    #back-to-top {
        left: 83%;
    }
    .award .owl-carousel.owl-theme.nav-tabs.owl-loaded.owl-drag {
        height: 670px;
    }
    .owl-carousel .owl-stage-outer {
        height: 100%;
    }
    .award-content p {
        font-size: 12px;
        margin-bottom: 3px !important;
    }
    .home-demo h2 {
        margin: 0 !important;
    }
    .award .owl-nav button.owl-next {
        left: 90%;
        top: 25%;
        font-size: 58px;
    }
    .award .owl-nav button.owl-prev {
        right: 90%;
        top: 25%;
        font-size: 58px;
    }
    .award-img {
        width: 100%;
        margin: 6% auto;
        height: 260px;
    }
    .award{
        margin-block: 10%;
    }
    .slider, .slide {
        height: 87vh;
    }
    .slide .slide__content {
        left: 52%;
        top: 76%;
    }
}

@media (max-width:400px) {
    h2 {
        font-size: 22px;
    }
    p, .films-head p, section#hire a, .testimonial .description{
        font-size: 12px;
    }
    .projectFactsWrap .item p.number, .slide .slide__content--headings .title, h4 {
        font-size: 20px;
    }
    .footer-menu .navbar-collapse li.nav-item a {
        font-size: 14px;
    }
    .testimonial .description {
        line-height: 23px;
    }
    .contact-social{
        width: 75% !important;
    }
    section#hire h2 {
        line-height: 28px;
    }
    .story .story-bg .popup-content {
        width: 300px;
        height: 70%;
    }
}

@media (max-width:375px) {
    .award-img {
        margin: 3% auto;
    }
    .award .owl-carousel.owl-theme.nav-tabs.owl-loaded.owl-drag {
        height: 600px;
        border: 0;
    }
    .award {
        margin-bottom: 18%;
    }
}

@media (max-width:360px) {
    section#films ul#pills-tab li.nav-item button {
        margin: 0 auto;
        font-size: 13px;
        text-align: center;
    }
    #back-to-top {
        left: 79%;
    }
    .films-head a {
        display: inline-block;
        width: 100%;
    }
    .films-head img {
        width: 100%;
    }
    .award .owl-carousel.owl-theme.nav-tabs.owl-loaded.owl-drag {
        height: 615px;
    }
}

@media (max-width:320px){
    .slide .slide__content--headings .button-custom, .slide .slide__content--headings .top-title {
        font-size: 14px;
    }
    h2{
        font-size: 21px;
    }
    h4{
        font-size: 17px;
    }
}