/*-----------------------------------------
01) Elements
--------------------------------------------------*/
.owl-dots {
    float: left;
    margin-top: 50px;
    text-align: center;
    width: 100%;
}

.owl-dots .owl-dot {
    background: #40545a;
    border-radius: 35px;
    display: inline-block;
    height: 10px;
    margin: 0 3px;
    width: 20px;
    transition: all 0.3s ease 0s;
}

.owl-dots .owl-dot:hover {
    background: #19abd6;
}

.owl-dots .owl-dot.active {
    background: #19abd6;
    border: 2px solid #19abd6;
    width: 30px;
}

/*-----------------------------------------
02) Hero
--------------------------------------------------*/
#hero {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 400px;
    width: 100%;
    display: block;
}

.hero-1 {
    background: url('../../images/background/05.jpg');
    background-position: center center;
}

.wrap-hero-content {
    background: -webkit-linear-gradient(145deg, rgba(60, 36, 255, 0.8) 20%, rgba(0, 255, 231, 0.9) 100%);
    background: -moz-linear-gradient(145deg, rgba(60, 36, 255, 0.8) 20%, rgba(0, 255, 231, 0.9) 100%);
    background: linear-gradient(145deg, rgba(60, 36, 255, 0.8) 20%, rgba(0, 255, 231, 0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc262c33', endColorstr='#e600c9ff', GradientType=1);
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: absolute;
    min-width: 1170px;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#hero h1 {
    margin: 20px 0 0;
    color: #fff;
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
}

#hero h1 span {
    font-weight: 700;
    color: #19abd6;
}

.sub-title {
    font-family: 'Montserrat', serif;
    margin-top: 10px;
    color: #fff;
    font-size: 20px;
    text-transform: none;
    font-weight: 400;
}

.arrow {
    position: absolute;
    bottom: 40px;
    color: #fff;
    font-size: 50px;
    text-align: center;
    left: 0;
    right: 0;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -ms-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}

.mouse-icon {
    position: absolute;
    border: 2px solid #fff;
    opacity: 0.8;
    border-radius: 50px;
    height: 50px;
    width: 30px;
    margin: 0 auto;
    display: block;
    left: 0;
    right: 0;
    bottom: 50px;
    z-index: 100;
}

.mouse-icon .scroll {
    -webkit-animation-name: scrolling;
    -webkit-animation-duration: 1.4s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-name: scrolling;
    animation-duration: 1.4s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.mouse-icon .scroll {
    background: #19abd6;
    position: relative;
    border-radius: 50px;
    width: 5px;
    height: 10px;
    top: 6px;
    margin-left: auto;
    margin-right: auto;
}

@-webkit-keyframes scrolling {
    0% {
        top: 2px;
        opacity: 0;
    }
    30% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 16px;
        opacity: 0;
    }
}

@keyframes scrolling {
    0% {
        top: 2px;
        opacity: 0;
    }
    30% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 16px;
        opacity: 0;
    }
}

/*-----------------------------------------
04) Features
--------------------------------------------------*/
.about {
    padding-bottom: 0px;
}

.about .mockup {
    max-width: 600px;
    position: relative;
    display: inline-block;
    text-align: center;
}

.about .mockup img {
    width: 100%;
    height: auto;
}

.about .desc-list {
    padding: 100px 0;
}

.about .desc-list h2 {
    color: #40545a;
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about .desc-list p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 30px;
}

.features .mockup-2 {
    max-width: 350px;
    padding: 60px 0;
    position: relative;
    display: inline-block;
    text-align: center;
}

.features .mockup-2 img {
    width: 100%;
}

.features .box {
    padding: 10px 25px;
    text-align: center;
    display: block;
    margin-top: 30px;
    -webkit-transition: ease .6s;
    -moz-transition: ease .6s;
    -ms-transition: ease .6s;
    -o-transition: ease .6s;
    transition: ease .6s;
}

.features .box-icon {
    display: table;
    margin: 0 auto 20px;
}

.features .box-icon span {
    color: #40545a;
    display: table-cell;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: ease .6s;
    -moz-transition: ease .6s;
    -ms-transition: ease .6s;
    -o-transition: ease .6s;
    transition: ease .6s;
}

.box-icon span:hover {
    background: #19abd6;
    color: #fff;
}

.features .info h4 {
    color: #19abd6;
    font-size: 18px;
    text-transform: uppercase;
    padding-top: 0;
}

.features .info > p {
    font-size: 16px;
}

@media screen and (max-width: 480px) {
    .parallax {
        background-attachment: scroll !important;
        background-position: top !important;
        -webkit-background-size: auto !important;
        -moz-background-size: auto !important;
        background-size: auto !important;
    }

    .white-bg, .grey-bg, .blue-bg, .gradient-bg {
        padding: 40px 0;
    }
}

@media screen and (max-width: 768px) {
    .parallax {
        background-attachment: scroll !important;
        background-position: top !important;
        -webkit-background-size: auto !important;
        -moz-background-size: auto !important;
        background-size: auto !important;
    }

    .section-title {
        font-size: 38px;
    }

    .hero-content {
        min-width: 100%;
        padding: 10px;
    }

    .hero-text {
        margin-top: 30px;
    }

    #hero h1 {
        font-size: 34px;
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        min-width: 100%;
        padding: 10px;
    }
}