﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    position: relative;
}

a {
    color: #ff4a17;
    text-decoration: none;
}

    a:hover {
        color: #ff724a;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

section {
    padding: 70px 0;
    overflow: hidden;
}

.card-icon svg {
    font-size: 32px;
    color: #fff;
    width: 64px;
    height: 64px;
    padding-top: 5px;
    background-color: #ff4a17;
    border-radius: 4px;
    border: 4px solid #fff;
    transition: 0.3s;
    display: inline-block;
    margin-top: -32px;
}

    .card-icon svg:hover {
        background-color: #fff;
        color: #ff4a17;
    }

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5c8eb0;
    font-family: "Poppins", sans-serif;
}

    .section-title h2::after {
        content: "";
        width: 120px;
        height: 1px;
        display: inline-block;
        background: #ff8664;
        margin: 4px 10px;
    }

.info-box svg {
    font-size: 32px;
    color: #fff;
    width: 40px;
    height: 40px;
    padding-top: 5px;
    background-color: #ff4a17;
    padding-bottom: 2px;
}

    .info-box svg:hover {
        background-color: #fff;
        color: #ff4a17;
    }
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    /*padding: 10px 0;*/
}

    #header.header-scrolled,
    #header.header-inner-pages {
        background: rgba(21, 34, 43, 0.85);
        /* padding: 10px 0;*/
    }

    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 2px;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 40px;
        }


.navbar-light .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    padding: 15px 40px 5px 40px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: 0.3s;
}

    .navbar-light .navbar-nav .nav-link.active,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .show > .nav-link {
        border-bottom: solid #ff4a17;
        color: #fff;
        width: 95%;
    }
.navbar-light .navbar-toggler-icon {
    background-color: #fff;
    opacity: 0.3;
}
.getstarted, .getstarted:hover {
    padding: 10px 25px !important;
    margin-top: 3px;
    border-radius: 4px;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
}


/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
#home {
    width: 100%;
    height: 100vh;
    background: url("../images/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
    padding: 0;
}

    #home:before {
        content: "";
        background: rgba(13, 20, 26, 0.7);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #home .home-container {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    #home h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        text-transform: uppercase;
        color: #fff;
    }

    #home h2 {
        color: #eee;
        margin-bottom: 50px;
        font-size: 24px;
    }

    #home .btn-get-started {
        font-family: "Open Sans", sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        display: inline-block;
        padding: 10px 35px 10px 35px;
        border-radius: 4px;
        transition: 0.5s;
        color: #fff;
        background: #ff4a17;
        border: 2px solid #ff4a17;
    }

        #home .btn-get-started:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

    #home .btn-watch-video {
        font-size: 16px;
        display: inline-block;
        transition: 0.5s;
        margin-left: 25px;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        #home .btn-watch-video i {
            line-height: 0;
            color: #fff;
            font-size: 32px;
            transition: 0.3s;
            margin-right: 8px;
        }

        #home .btn-watch-video:hover i {
            color: #ff4a17;
        }

@media (min-width: 1024px) {
    #home {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #home h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #home h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# box Section
--------------------------------------------------------------*/
#about .container, .add-box-shadow {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

#services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

    #services .icon-box h4 { 
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }
    #services .icon-box h5 {
        font-weight: 700; 
        font-size: 16px;
    }

#contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
}

#contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
}

#contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

#footer .footer-top {
    background: #15222b;
    border-bottom: 1px solid #1d303c;
    padding: 60px 0 30px 0;
    color: #fff;
}

    #footer .footer-top h4 {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        position: relative;
        padding-bottom: 12px;
    }

.footer-bottom {
    background: #15222b;
    border-bottom: 1px solid #1d303c;
    padding: 60px 0 30px 0;
    color: #fff;
}
/*--------------------------------------------------------------
# Animation Section
--------------------------------------------------------------*/
.text-animation-1 h1 {
    color: hsl(0, 0%, 28%);
    font-size: 50px;
    font-weight: bold;
    font-family: monospace;
    letter-spacing: 7px;
    cursor: pointer;
}

    .text-animation-1 h1:hover {
        /*color: #fff;*/
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff;
        /*  transition: 0.5s ease-out;*/
        margin-right: 115px;
    }
/* .text-animation-1 h1 span {
        transition: 0.5s ease-out;
    }*/

/* .text-animation-1 h1:hover span:nth-child(1) {
        margin-right: 5px;
    }

        .text-animation-1 h1:hover span:nth-child(1):after {
            content: "'";
        }

    .text-animation-1 h1:hover span:nth-child(2) {
        margin-left: 30px;
    }*/


