@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(1.5, 1.5);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.5, 1.5);
    }
}

#hero {
    background: #247cf0;
    height: auto;
    font-family: "Roboto", sans-serif;
}

#hero .container {
    position: relative;
    font-family: 'Droid Arabic Kufi', serif;
}

#hero h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 900;
    line-height: 40px;
}

#hero h1 span {
    color: var(--sblue);
}

#hero h2 {
    color: var(--iw);
    margin: 5px 0 30px 0;
    font-size: 22px;
    font-weight: 900;
}

#hero .btn-get-started {
    font-family: 'Droid Arabic Kufi', serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: var(--dkblue);
}

#hero .btn-get-started:hover {
    background: #247cf0;
}

#hero .btn-watch-video {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: #222222;
    font-weight: 600;
    display: flex;
    align-items: center;
}

#hero .btn-watch-video i {
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

#hero .btn-watch-video:hover {
    color: var(--iw);
}

#hero .btn-watch-video:hover i {
    color: var(--iw);
}


/* Carousel base class */

#hero .carousel {
    /* margin-bottom: 4rem; */
    margin-bottom: 0;
}

#hero .carousel-caption {
    background-image: url("../../images/herocapbg.png");
    position: absolute;
    text-align: right;
    width: 450px;
    border-radius: 15px;
    height: auto;
    padding: 20px !important;
    bottom: 7rem;
    left: 100px;
    z-index: 10;
}


/* Declare heights because of positioning of img element */

#hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero .carousel-item>img {
    -webkit-animation: zoom 30s;
    animation: zoom 30s;
}

.ifull {
    display: block;
}

.imob {
    display: none;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    .ifull {
        display: none;
    }
    .imob {
        display: block;
    }
    #hero,
    #hero .carousel-item,
    #hero img {
        height: 100vh;
        position: center;
    }
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero .btn-get-started,
    #hero .btn-watch-video {
        font-size: 13px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}


/*--------------------------------------------------------------
# suppliers
--------------------------------------------------------------*/

.suppliers {
    padding: 12px 0;
    text-align: center;
}

.suppliers img {
    max-width: 40%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 10px;
    border-radius: 20%;
    filter: blur(1px);
}

.suppliers img:hover {
    filter: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .suppliers img {
        max-width: 40%;
    }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.action ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.action ol li+li {
    padding-right: 25px;
}

.action .bi {
    font-size: 25px;
    margin-left: 5px;
    padding: 0px;
    color: var(--iblue);
}

.action ol li a {
    font-size: 18px;
    font-family: 'Droid Arabic Kufi', serif;
    font-weight: 900;
    color: var(--iblue);
    padding-top: 10px;
}

.action ol li a:hover {
    color: #4ea8f4;
}

.xmd {
    background: #f35b5b;
    color: #fff;
}