@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700|Raleway:300,400,500,600,700&display=swap');
* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

.hero-area {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: table;
}
.hero-area {
    position: relative;
    z-index: 1;
}

.hero-area:after {
    width: 100%;
    height: 100%;
    content: "";
    background: url("../image//digital_bg.png")no-repeat scroll center center /  100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.hero-cell {
    display: table-cell;
    vertical-align: middle;
}

.hero-title h1 {
    font-size: 150px;
    color: transparent;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 10px;
    background-image: url('https://media.giphy.com/media/3ov9jZrtrvbqHjtljG/giphy.gif');
    background-position: center;
    background-size: cover;
    -webkit-background-clip: text;
}

.hero-title h2 {
    font-size: 40px;
    color: #fff;
    text-transform: capitalize;
    margin: 30px 0 40px;
}

.boxed-btn {
    background: #fff;
    padding: 15px 50px;
    margin: 0 5px;
    border-radius: 5px;
    color: #FD0186;
    font-weight: bold;
    text-transform: uppercase;
    word-spacing: 5px;
    letter-spacing: 1px;
    display: inline-block;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.boxed-btn:hover {
    background: #07000a;
    color: #fff;
}

.page-bg-1 {
    background-image: url(../image/index.png);
}

.page-bg-2 {
    background-image: url(../image/home-2.png);
}

.page-bg-3 {
    background-image: url(../image/home-3.png);
}

.page-bg-4 {
    background-image: url(../image/home-4.png);
}

.page-bg-5 {
    background-image: url(../image/home-5.png);
}

.page-bg-6 {
    background-image: url(../image/home-6.png);
}

.page-bg-7 {
    background-image: url(../image/home-7.png);
}

.page-bg-8 {
    background-image: url(../image/about.png);
}

.page-bg-9 {
    background-image: url(../image/blog.png);
}

.page-bg-10 {
    background-image: url(../image/single-blog.png);
}

.page {
    height: 400px;
    background-size: cover;
    background-position: center top;
}

.drimo-page {
    padding: 100px 0;
}

.drimo-page-title {
    margin-bottom: 60px;
}

.drimo-page-title h2 {
    color: #FD0086;
    font-size: 50px;
    font-family: 'Oswald', sans-serif;
}

.page-img h4 a {
    font-size: 20px;
    background-color: orange;
    display: block;
    text-align: center;
    padding: 20px 0;
    color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.page-img h4 {
    margin: 0;
}

.page-img {
    -webkit-box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    border-radius: 5px;
    overflow: hidden;
}

.page-img:hover h4 a {
    background: #1193d4;
}

.single-feature-item {
    text-align: center;
    padding: 60px 10px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 30px;
}

.theme-feature-area {
    background: #e6ebef;
    padding: 80px 0;
}

.single-feature-item i {
    color: #FD0086;
    font-size: 30px;
    margin-bottom: 30px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    -webkit-box-shadow: 0 10px 20px rgba(253, 0, 134, 0.1);
    box-shadow: 0 10px 20px rgba(253, 0, 134, 0.1);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.single-feature-item h4 {
    font-size: 25px;
    color: #1D125C;
}

.single-feature-item i:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    content: "";
    background: #FD0086;
    opacity: 0;
    -webkit-transform: translate3d(-10px, -10px, 0);
    transform: translate3d(-10px, -10px, 0);
    z-index: -1;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    visibility: hidden;
}

.single-feature-item:hover i:after {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
}

.single-feature-item:hover i {
    color: #fff;
}

.footer-area {
    background-color: #FF0084;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 0;
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) { 
    .hero-title h1 {
        font-size: 100px;
        letter-spacing: 0;
    }

    a.boxed-btn {
        margin-bottom: 20px;
    }
}