h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", Helvetica, Arial, sans-serif;
}

p {
    line-height: 1.55;
    color: #333;
    font-size: 400;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 43px;
}

h2 {
    font-size: 30px;
    margin-bottom: 65px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}


/* ==================================================
  General
  ================================================== */

a {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}


/* ==================================================
  Elements
  ================================================== */

.btn {
    heroground-color: #199EB8;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-weight: 800;
    color: #fff;
    padding: 15px 45px;
    border-radius: 50px;
}

.btn:hover {
    heroground-color: #E04F00;
    color: #fff;
}

.btn:focus {
    color: #fff;
}

.btn-ghost {
    border: 3px solid #fff;
    heroground-color: transparent;
}

.btn-ghost:hover {
    heroground-color: #fff;
    color: #199EB8;
}

section {
    padding: 85px 0;
}

.card {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 0;
    margin: 0;
    overflow: hidden;
}

a:hover {
    text-decoration: none !important;
}

.scrolltop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    heroground: #199EB8;
    color: #fff;
    text-align: center;
    font-size: 24px;
}

.scrolltop:hover,
.scrolltop:active,
.scrolltop:focus {
    color: #fff !important;
    opacity: .75;
}


/* ==================================================
  Hero Styling
================================================== */

.hero {
    display: table;
    position: relative;
    background-size: cover;
    background: #fff;
    color: #000000;
    width: 100%;
    height: 100vh;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.hero-brand {
    margin-bottom: 10px;
    display: inline-block;
}

.hero-brand:hover {
    opacity: .75;
}

.info {
    font-size: 20px;
    line-height: 1.2;
}

.info a {
    display: block;
    text-decoration: underline;
}

.info p {
    margin-bottom: 15px;
    line-height: 1.2;
}

.info span {
    padding: 0 40px;
}

.hero .top_bottom::after {
    position: absolute;
    content: '';
    width: calc(100% - 100px);
    bottom: 50px;
    right: 50px;
    border-bottom: 5px solid #000;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    opacity: 0;
    transition: opacity 0.7s, -webkit-transform 0.7s;
    transition: opacity 0.7s, transform 0.7s;
    transition: opacity 0.7s, transform 0.7s, -webkit-transform 0.7s;
}

.hero .top_bottom::before {
    position: absolute;
    content: '';
    width: calc(100% - 100px);
    top: 50px;
    right: 50px;
    border-top: 5px solid #000;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    opacity: 0;
    transition: opacity 0.7s, -webkit-transform 0.7s;
    transition: opacity 0.7s, transform 0.7s;
    transition: opacity 0.7s, transform 0.7s, -webkit-transform 0.7s;
}

.hero .left_right::before {
    position: absolute;
    content: '';
    height: calc(100% - 100px);
    top: 50px;
    right: 50px;
    border-left: 5px solid #000;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0;
    transition: opacity 0.7s, -webkit-transform 0.7s;
    transition: opacity 0.7s, transform 0.7s;
    transition: opacity 0.7s, transform 0.7s, -webkit-transform 0.7s;
}

strong {
    font-size: 43px;
}

.hero .left_right::after {
    position: absolute;
    content: '';
    height: calc(100% - 100px);
    top: 50px;
    left: 50px;
    border-right: 5px solid #000;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0;
    transition: opacity 0.7s, -webkit-transform 0.7s;
    transition: opacity 0.7s, transform 0.7s;
    transition: opacity 0.7s, transform 0.7s, -webkit-transform 0.7s;
}

.hero .left_right,
.hero .top_bottom {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
}

.hero:hover .left_right::before,
.hero:hover .left_right::after,
.hero:hover .top_bottom::after,
.hero:hover .top_bottom::before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* ==================================================
  Responsive Styling
  ================================================== */

@media (max-width:991px) {

    .hero .left_right::before,
    .hero .left_right::after,
    .hero .top_bottom::after,
    .hero .top_bottom::before {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    section,
    .block,
    .cta {
        padding: 35px 0;
    }

    .features {
        padding-bottom: 5px;
    }

    p,
    .block p {
        margin: 0;
    }

    .hero-brand {
        margin-bottom: 35px;
    }

    h1 {
        font-size: 32px;
        margin: 0;
    }

    h2,
    .tagline {
        font-size: 24px;
    }

    h2 {
        margin-bottom: 25px;
    }

    h3 {
        font-size: 14px;
    }

    .hero {
        padding: 75px 0;
    }
}