: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);
}

.grecaptcha-badge {
    z-index: 99999;
}

.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%;
    padding-top: 100px;
    position: relative;
    background-color: #FFFFFF;
}

#hero .hero-container {
    width: 100%;
    text-align: center;
}

#hero .hero-container h1 {
    color: var(--primary-color-hex);
    font-size: 120px;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

#hero .hero-container h2 {
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

/********** CONTACT **********/

#contact {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 150px;
    position: relative;
    background-color: #FFFFFF;
}

#contact .contact-item {
    cursor: pointer;
    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%);
    text-decoration: none;
    color: #212529;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#contact .contact-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;
}

#contact .contact-item:hover:before {
    width: 100%;
    height: 100%;
    background-color: rgba(26, 31, 53, 1);
}

#contact .contact-item:hover svg, #contact .contact-item:hover h3, #contact .contact-item:hover p {
    color: #FFFFFF;
}

#contact .contact-item .featcontactured-icon {
    display: inline-block;
    margin-bottom: 25px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    will-change: transform;
}

#contact .contact-item .contact-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: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

#contact .contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.modal-header{
    border: none;
    color: #212529;
}

.modal-body input, .modal-body textarea  {
    margin-top: 10px;
}

.modal-body textarea {
    resize: none;
}

.modal-header button:focus, .modal-body input:focus, .modal-body textarea:focus {
    border-color: var(--primary-color-hex);
    box-shadow: none;
    outline: 0 none;
}

.modal-body .btn-style {
    margin-top: 10px;
    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;
}

.modal-body .btn-style:hover {
    background-color: rgba(255, 63, 66, .9);
}

.toast {
    background-color: var(--primary-color-hex);
    color: #FFFFFF;
}

/*********** 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(../assets/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(../assets/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(../assets/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) {}