/* CSS Document */
/* ------------------------------------------------
* General Style
---------------------------------------------------
*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #ffc107;
    text-decoration: none;
}

a:hover {
    color: #ffce3a;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ffc107;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ffcb30;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: rgba(55, 64, 85, 0.9);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: rgba(55, 64, 85, 0.9);
    padding: 15px 0;
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 84px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #ffc107;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #414c64;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #ffc107;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(45, 53, 69, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #414c64;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #ffc107;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #ffc107;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 80vh;
    background-color: #1C1E2E;
    background-size: cover;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(45, 53, 69, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    text-align: center;
    padding-top: 50px;
}

@media (max-width: 992px) {
    #hero .container {
        padding-top: 0;
    }
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero .highlight-text {
    color: #FFB44E;
}

#hero h2,
#hero h3 {
    color: #eee;
    margin: 15px 0 0 0;
    font-size: 18px;
    line-height: 27px;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 50px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 30px 50px 10px 50px;
    border: 2px solid #ffc107;
    color: #fff;
    text-transform: uppercase;
}

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

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

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Section General
--------------------------------------------------------------*/
section {
    padding: 50px 0;
}

.section-bg {
    background-color: #f7f8fa;
}

.section-title{
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #ffc107;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #5c5c5c;
}


/*--------------------------------------------------------------
# Client
--------------------------------------------------------------*/

.clients {
    padding: 15px 0;
    text-align: center;
}

.clients img {
    max-width: 65%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}

.clients img:hover {
    filter: none;
    transform: scale(1.15);
}

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


/*--------------------------------------------------------------
# Product Engineering
--------------------------------------------------------------*/
.engineering h2 {
    font-weight: 700;
    font-size: 38px;
    color: #1c1e2e;
}

.engineering .organize-teamwork-with{
    font-size: 18px;
    font-weight: 600;
    color: #cc00ff;
    border: white;
    padding: 19px 50px;
    border-radius: 5px;
    transition: 0.2s;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 16%);
    display: inline-block;
}

.engineering .organize-teamwork {
    font-size: 18px;
    font-weight: 600;
    color: #cc00ff;

}

.engineering .product-engineering-group {
    border: white;
    padding: 19px 50px;
    border-radius: 5px;
    transition: 0.2s;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 16%);
}

.engineering .engineering-heading-p {
    font-size: 15px;
    font-weight: 600;
    color: #424242;
    margin: 20px 0 0 0;
}

.engineering i {
    font-size: 24px;
    margin-right: 10px;
    color: #ff0030;
}

#engineering .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 50px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 30px 20px 10px 20px;
    border: 2px solid #de1749;
    color: #de1749;
    text-transform: uppercase;
}

#engineering .btn-get-started:hover {
    background: #de1749;
    color: #fff;
}


/*--------------------------------------------------------------
# About us
--------------------------------------------------------------*/
.about h2 {
    font-weight: 700;
    font-size: 42px;
    color: #1c1e2e;
    line-height: 1.5;
}

.about h4 {
    font-weight: 700;
}

.about .Cloud-heading {
    font-size: 22px;
    font-weight: 600;
    color: #ff0030;
    margin: 0 12px 0 0;
}

.about .bx-double-custom {
    font-size: 28px;
    color: #ff0030;
}

.about .bx-arrow-custom {
    color: #ff0030;
}

.about .bi-icon {
    font-size: 28px;
    color: #ff0030;
}

.about .bi-arrow-custom {
    color: #ff0030;
}

/*--------------------------------------------------------------
# Industries
--------------------------------------------------------------*/
.industries h2 {
    font-weight: 700;
    font-size: 38px;
    color: #1c1e2e;
}

.industries .organize-teamwork {
    font-size: 18px;
    font-weight: 600;
    color: #ff0030;
    border: white;
    border-radius: 5px;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 16%);
    padding: 19px 50px;
    display: inline-block;
    transition: 0.2s;
}

.industries .engineering-heading-p {
    font-size: 15px;
    font-weight: 600;
    color: #424242;
    margin: 20px 0 0 0;
}

.industries i {
    font-size: 24px;
    margin-right: 10px;
    color: #ff0030;
}

#industries .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 50px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 30px 20px 10px 20px;
    border: 2px solid #de1749;
    color: #de1749;
    text-transform: uppercase;
}

#industries .btn-get-started:hover {
    background: #de1749;
    color: #fff;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background: #fff;
}

.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #1c1e2e;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.5);
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
    background: #f5f5f5;
    border-radius: 50px;
}

.services .icon-box .icon i {
    font-size: 32px;
    transition: 0.5s;
    line-height: 1;
    position: relative;
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .icon-box h4 a {
    color: #fff;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    color: #aaaaaa;
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon {
    background: #47aeff;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-orange i {
    color: #ffa76e;
}

.services .iconbox-orange:hover .icon {
    background: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-pink i {
    color: #e80368;
}

.services .iconbox-pink:hover .icon {
    background: #e80368;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-yellow i {
    color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon {
    background: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
    color: #fff;
}

.services .iconbox-red i {
    color: #ff5828;
}

.services .iconbox-red:hover .icon {
    background: #ff5828;
}

.services .iconbox-red:hover .icon i {
    color: #fff;
}

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon {
    background: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer{
    color: #fff;
    font-size: 14px;
    background: #414c64;
}

#footer .footer-top{
    padding: 60px 0px 30px 0px;
    background: #414c64;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4{
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #fff;
}

#footer .footer-top h4{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    padding-top: 20px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i{
    padding-right: 2px;
    color: #ffc107;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li{
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child{
    padding: 10px 0;
}

#footer .footer-top .footer-links li a {
    color: #b3b3b3;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover{
    text-decoration: none;
    color: #ffc107;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #e1e4ec;
    color: #5f6f92;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #ffce3a;
    text-decoration: none;
}











