:root {
    --primary-color-hex: #FF3F42;
    --secondary-color-hex: #187EEB;
    --neutral-color-hex: #232323;
}

body {
    font-family: 'Poppins', sans-serif !important;
    min-width: 270px;
    background-color: rgba(26, 31, 53, 1);
}

.bar {
    width: 100%;
    /* padding: .5125rem 0; */
}

.menu-bar {    
    min-width: 270px;
    z-index: 3;
    background-color: #FFFFFF;
    /* -webkit-box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.25);
    box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.25); */
}

.toolbar {
    width: 100%;
    background-color: var(--secondary-color-hex);
    color: #FFFFFF;
    display: none !important;
}

.toolbar .toolbar-link {
    text-decoration: none;
    color: #FFFFFF;
    margin: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.toolbar .toolbar-link:hover {
    color: var(--neutral-color-hex);
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.navbar .navbar-brand {
    width: 175px;
}

.navbar .navbar-brand .logo {
    width: 100%;
}

.navbar-toggler {
    font-size: 1.5rem;
    color: #212529;
}

/* .navbar-toggler, .navbar-toggler:active, .navbar-toggler:focus, .navbar-toggler-icon:active, .navbar-toggler-icon:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
} */

.navbar-nav .nav-item {
    min-height: 100%;
    position: relative;
    padding-left: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.navbar-nav .nav-item .nav-link {
    text-transform: capitalize;
    margin: 8px;
    padding: 0;
    position: relative;
    color: var(--neutral-color-hex);
    font-size: 14px;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .nav-link.nav-link-highlight {
    background-color: var(--primary-color-hex);
    color: #FFFFFF;
    padding: 12px 20px;
    letter-spacing: 1px;
    border-radius: 50px;
}

.navbar-nav .nav-item .nav-link.nav-link-highlight:hover {
    background-color: rgba(255, 63, 66, .9);
    color: #FFFFFF;
}

.navbar-nav .nav-item .nav-link.nav-link-highlight:hover:after {
    content: unset;
}

.navbar-nav .nav-item .nav-link:after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    right: 0;
    bottom: -0.5vw;
    background-color: var(--primary-color-hex);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color-hex);
}

.navbar-nav .nav-item .nav-link:hover:after {
    left: 0;
    right: auto;
    width: 100%;
}

/********** HERO **********/

#hero {
    width: 100%;
    height: 60vh;
    min-height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.section-parallax {
    width: 100%;
    height: 100%;  
    padding: 150px 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(26, 31, 53, .6)), color-stop(rgba(26, 31, 53, 0.4)), to(rgba(26, 31, 53, 0)));
    background-image: -o-linear-gradient(bottom, rgba(26, 31, 53, .6), rgba(26, 31, 53, 0.4), rgba(26, 31, 53, 0));
    background-image: linear-gradient(to top, rgba(26, 31, 53, .6), rgba(26, 31, 53, 0.4), rgba(26, 31, 53, 0));
    /* background-image: -webkit-gradient(linear, left top, right bottom, color-stop(5%, rgba(255,63,66,0.2)), color-stop(20%, rgba(26,31,53,.5)), color-stop(50%, rgba(26,31,53,.2)), color-stop(80%, rgba(26,31,53,.5)), to(rgba(24,126,235,0.4)));
    background-image: -o-linear-gradient(top left, rgba(255,63,66,0.2) 5%, rgba(26,31,53,.5) 20%, rgba(26,31,53,.2) 50%, rgba(26,31,53,.5) 80%, rgba(24,126,235,0.4) 100%);
    background-image: linear-gradient(to bottom right, rgba(255,63,66,0.2) 5%, rgba(26,31,53,.5) 20%, rgba(26,31,53,.2) 50%, rgba(26,31,53,.5) 80%, rgba(24,126,235,0.4) 100%); */
}

#hero .hero-container {
    width: 100%;
    text-align: center;
    margin-top: -30px;
}

#hero .hero-container h1 {
    margin-bottom: 20px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.4;
    text-align: center;
}

#hero .hero-container h2 {
    margin-bottom: 40px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
    text-align: center;
}

#hero .hero-container a {
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.25;
    text-decoration: none;
    background-color: var(--primary-color-hex);
    padding: 12px 20px;
    letter-spacing: 1px;
    border-radius: 50px;
    float: none;
    -webkit-box-shadow: 0px 2px 25px 0px rgb(110 110 110 / 12%);
    box-shadow: 0px 2px 25px 0px rgb(110 110 110 / 12%);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#hero .hero-container a:hover {
    background-color: rgba(255, 63, 66, .9);
}

/********** HIGHLIGHTS **********/

#highlights {
    width: 100%;
    padding: 100px 0;
    background-color: #FFFFFF;
    position: relative;
}

#highlights .featured-item {
    height: 100%;
    position: relative;
    z-index: 1;
    display: block;
    padding: 40px 25px;
    text-align: center;
    border-radius: 10px;
    background-color: #FFFFFF;
    margin-top: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 25px 0px rgb(110 110 110 / 12%);
    box-shadow: 0px 2px 25px 0px rgb(110 110 110 / 12%);
    -webkit-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}

#highlights .featured-item:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    width: 70%;
    height: 3px;
    margin: 0 auto;
    border-radius: 10px;
    background-color: var(--primary-color-hex);
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

#highlights .featured-item .featured-icon {
    display: inline-block;
    margin-bottom: 25px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    will-change: transform;
}

#highlights .featured-item .featured-icon svg {
    color: var(--primary-color-hex);
    font-size: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

#highlights .featured-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;    
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

#highlights .featured-item p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 15px;
    margin-bottom: 0;    
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

/********** ABOUT **********/

#about {
    width: 100%;
    padding: 70px 0 130px 0;
    background-color: #FFFFFF;
}

#about .about-image {
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about .about-image img {
    border-radius: 10px;
}

#about .about-content {
    margin-top: 20px;
    margin-left: 20px;
}

#about .about-content h6 {
    color: #9ea9b3;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

#about .about-content h2 {
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
}

#about .about-content .bar {
    padding: 0;
    height: 5px;
    width: 100px;
    background:rgba(255, 63, 66, .7);
    position: relative;
    border-radius: 30px;
    margin-bottom: 35px;
}

#about .about-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 25px;
}

#about .about-content .about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 45px;
}

#about .about-content .about-list li {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* justify-content: center; */
}

#about .about-content .about-list li svg {
    color: var(--primary-color-hex);
    display: inline-block;
    height: 30px;
    width: 30px;
    margin-right: 15px;
    text-align: center;
}

/********** WHYUS **********/

#whyus {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
}

#whyus .section-title {
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

#whyus .section-title h6 {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

#whyus .section-title h2 {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
}

#whyus .section-title .bar {
    padding: 0;
    height: 5px;
    width: 100px;
    margin: 0 auto;
    background:rgba(255, 63, 66, .7);
    position: relative;
    border-radius: 30px;
    margin-bottom: 45px;    
}

#whyus .whyus-content {
    height: 100%;
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

#whyus .whyus-content .whyus-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

#whyus .whyus-content .whyus-icon svg {
    font-size: 45px;
    margin-right: 10px;
}

#whyus .whyus-content .box-right {
    padding-left: 15px !important;
}

#whyus .whyus-content .box-right h3 {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
    text-transform: capitalize;
}

#whyus .whyus-content .box-right p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    padding: 0;
}

/********** WHYUS **********/

#solutions {
    width: 100%;
    padding: 100px 0;
    background-color: #FFFFFF;
}

#solutions .section-title {
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

#solutions .section-title h6 {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

#solutions .section-title h2 {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
}

#solutions .section-title .bar {
    padding: 0;
    height: 5px;
    width: 100px;
    margin: 0 auto;
    background:rgba(255, 63, 66, .7);
    position: relative;
    border-radius: 30px;
    margin-bottom: 45px;    
}

#solutions .services-item {
    height: 100%;
    position: relative;
    z-index: 1;
    display: block;
    padding: 40px 25px;
    text-align: center;
    border-radius: 10px;
    background-color: #FFFFFF;
    margin-top: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 25px 0px rgb(110 110 110 / 12%);
    box-shadow: 0px 2px 25px 0px rgb(110 110 110 / 12%);
    -webkit-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}

#solutions .services-item:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    width: 70%;
    height: 3px;
    margin: 0 auto;
    border-radius: 10px;
    background-color: var(--primary-color-hex);
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

#solutions .services-item .services-icon {
    width: 70px;
    height: 70px;
    display: inline-block;
    margin-bottom: 25px;
}

#solutions .services-item .services-icon img {
    width: 100%;
}

#solutions .services-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;    
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

#solutions .services-item p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 15px;
    margin-bottom: 0;    
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

/*********** Ready ***********/

#ready {
    width: 100%;
    padding: 15rem 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image:  -webkit-gradient(linear, left bottom, left top, from(rgba(26, 31, 53, 0)), color-stop(rgba(26, 31, 53, 0.25)), to(rgba(26, 31, 53, 0))), url(../img/ready/bg-ready.jpg);
    background-image:  -o-linear-gradient(bottom, rgba(26, 31, 53, 0), rgba(26, 31, 53, 0.25), rgba(26, 31, 53, 0)), url(../img/ready/bg-ready.jpg);
    background-image:  linear-gradient(to top, rgba(26, 31, 53, 0), rgba(26, 31, 53, 0.25), rgba(26, 31, 53, 0)), url(../img/ready/bg-ready.jpg);
    color: #FFFFFF;
    text-align: center;
}

#ready h2 {
    position: relative;
    font-weight: 900;
    color: #ffffff;
    overflow: hidden;
    margin-bottom: 15px;
}

#ready a {
    text-decoration: none;
    text-transform: capitalize;
    margin: 8px;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 20px;
    background: var(--primary-color-hex);
    border: 1px solid rgba(35, 31, 32, 0.25);
    border-radius: 50px;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    display: inline-block;
}

#ready a:hover {
    background-color: rgba(255, 63, 66, .9);
}

/********** FOOTER **********/

#footer {
    padding-top: 50px;
    padding-bottom: 15px;
    background-color: rgba(26, 31, 53, 1);
    color: #FFFFFF;
}

#footer .footer-content h2 {
    margin-bottom: 30px;
}

#footer .footer-content #form {
    margin-bottom: 45px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-bottom: 1px solid #434a54;
}

#footer .footer-content #form .input-email {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    padding-left: 0;
    border: 0 solid #000;
    background-color: transparent;
    color: #FFFFFF;
    display: block;
    padding: 8px 0 12px 0;
    line-height: 1.4;
}

#footer .footer-content #form input.input-email:active, #footer .footer-content #form input.input-email:focus {
    outline: none;
}

#footer .footer-content #form .input-submit {
    padding-right: 5px;
    cursor: pointer;
    color: var(--primary-color-hex);
}

#footer .logo {
    width: 100%;
    font-size: 14px;
}

#footer .logo img {
    width: 175px;
    margin-bottom: 25px;
}

#footer .logo h6 {
    margin-bottom: 25px;
}

#footer .footer-nav {
    height: 100%;
    font-size: 14px;
}


#footer .footer-nav {
    width: 100%;
    font-size: 14px;
}

#footer .footer-nav ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

#footer .footer-nav ul li {
    list-style: none;
    margin: 5px 0;
    margin-right: 15px;
}

#footer .footer-nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#footer .footer-nav ul li a:hover {
    color: var(--primary-color-hex);
}

#footer .copy-rights {
    margin-top: 20px;
    font-size: 14px;
}

/*********** Media Queries ***********/

@media (min-width: 576px) {
    #whyus .whyus-content .box-right h3 {
        font-size: 24px;
    }

    #whyus .section-title h2 {
        font-size: 42px;
    }

    #solutions .section-title h2 {
        font-size: 42px;
    }
}

@media (min-width: 768px) {}

@media (min-width: 992px) {
    #ready {
        text-align: unset;
    }

    #ready a {
        float: right;
    }
}

@media (min-width: 1200px) {}