@import url("../fonts/stylesheet.css");
@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/AvenirLTStd-Book.woff2') format('woff2'), url('../fonts/AvenirLTStd-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    background: #060609;
    color: #444;
    font-family: 'Avenir LT Std';
}

a {
    color: #000;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #fff;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h4,
h5,
h6 {
    font-family: 'Avenir LT Std';
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

h3 {
    font-family: 'Avenir LT Std';
    font-weight: 600;
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.h-100vh {
    height: 100vh;
}

.h-65-7vh {
    height: 65.7vh;
}

.w-15 {
    width: 15%;
}

.w-10 {
    width: 10%;
}

.bg-black {
    background-color: #000;
}


/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
    border: 1px solid #fff;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}

@-webkit-keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        -webkit-transform: translatey(-20px);
        transform: translatey(-20px);
    }
    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
    50% {
        -webkit-transform: translatey(-20px);
        transform: translatey(-20px);
    }
    100% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
}

.scroll-mouse {
    box-sizing: border-box;
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-animation: float 2s ease-in-out infinite;
    animation: float 2s ease-in-out infinite;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
}


/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #1bb1dc;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    padding: 0 0 10px 0;
    font-size: 14px;
    transition: all 0.5s;
}

#topbar .social-links {
    text-align: right;
}

#topbar .social-links a {
    color: #535074;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
}

#topbar .social-links a:hover {
    color: #1bb1dc;
}

#topbar .social-links a:first-child {
    border-left: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 120px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 20px 0;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

#header.header-scrolled,
#header.header-pages {
    height: 80px;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
    transition: all 0.5s;
}

#header.header-scrolled #topbar,
#header.header-pages #topbar {
    display: none;
}

#header .logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #413e66;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 7px 0;
    max-height: 70px;
    transition: all 0.5s;
}

#header.header-scrolled .logo img {
    max-height: 50px;
    margin: 0;
}

.main-pages {
    margin-top: 60px;
}

#header.header-scrolled .open {
    top: 28px;
    width: 35px;
}

#header.header-scrolled .open span:nth-child(2) {
    margin-top: 10px;
}

#header.header-scrolled .open span:nth-child(3) {
    margin-top: 20px;
    width: 50%;
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    width: 100%;
    height: 100vh;
    position: relative;
    /*
  background: #f5f8fd url("../img/praj_home-picture@2x.jpg") center top no-repeat;
  background-size: cover;
*/
}


/*
#intro .intro-info h2 {
  color: #413e66;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}
*/

#intro .intro-info h2 span {
    color: #37e6f8;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
    font-family: 'Helvetica Neue Regular';
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #37e6f8;
    color: #fff;
}

#intro .intro-info .btn-get-started:hover,
#intro .intro-info .btn-services:hover {
    background: #0a98c0;
}

.welcome-title {
    font-size: 30px;
    font-family: 'helveticaneueregular';
    text-transform: uppercase;
    position: relative;
    color: #fff;
    margin: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    /*    animation: typing 4s steps(60, end);*/
    letter-spacing: 3px;
}

.welcome-title-line {
    position: relative;
}

.welcome-title-line::before {
    position: absolute;
    content: '';
    width: 75px;
    height: 1px;
    background-color: rgba(255, 255, 255, .5);
    top: 17px;
    left: -85px;
}

.designation-title {
    font-size: 50px;
    font-family: 'helveticaneuebold';
    text-transform: uppercase;
    color: #fff;
    position: relative;
    background-color: #000;
}

.designation-border {
    position: absolute;
    top: -14rem;
    right: -5rem;
    z-index: 1;
}

.square-2 {
    background-color: transparent;
    width: 12rem;
    height: 8rem;
    display: block;
    border: 1px solid #CBCBCB;
    border-left: none;
    border-top: none;
    border-bottom: none;
}

.square-3,
.square-1 {
    background-color: transparent;
    width: 12rem;
    height: 11rem;
    display: block;
    border: 1px solid #CBCBCB;
}

.square-1 {
    border-bottom: none;
}

.square-3 {
    border-top: none;
}


/* 
.designation-title::after{
    position: absolute;
    content: '';
    background-image: url(../img/profile-name-bg.png);
    background-repeat: no-repeat;
    top: -15rem;
    right: -16.1rem;
    width: 281px;
    height: 31rem;
    background-size: 80%;
    z-index: 1;
}

*/

.social-links a img {
    width: 50px;
}


/* Text Animation */


/*
.welcome-title {
    font-family: 'Inconsolata', monospace;
    font-size: 34px;
    color: dimgray;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    margin: 10px 0;
    animation: typing 4s steps(60, end);
}
*/

.welcome-title:nth-child(2) {
    animation: typing-2 8s steps(60, end);
}

@keyframes typing {
    from {
        width: 0;
    }
}

@keyframes typing-2 {
    0% {
        width: 0;
    }
    50% {
        width: 0;
    }
    100% {
        width: 100;
    }
}

@keyframes blink {
    to {
        opacity: .0;
    }
}


/* Text Animation */


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.main-nav {
    /* Drop Down */
    /* Deep Drop Down */
}

.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.main-nav a {
    display: block;
    position: relative;
    color: #413e66;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav .active>a,
.main-nav li:hover>a {
    color: #37e6f8;
    text-decoration: none;
}

.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.main-nav .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.main-nav .drop-down li {
    min-width: 180px;
    position: relative;
}

.main-nav .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #065e77;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active>a,
.main-nav .drop-down ul li:hover>a {
    color: #1bb1dc;
}

.main-nav .drop-down>a:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.main-nav .drop-down .drop-down>a {
    padding-right: 35px;
}

.main-nav .drop-down .drop-down>a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
}


/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(40, 38, 70, 0.8);
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #8dc2fa;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\f077";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    margin: 18px 18px 0 0;
    color: #065e77;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(40, 38, 70, 0.8);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

.open {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 45px;
    height: 45px;
    display: block;
    cursor: pointer;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    transition: all 0.5s;
}

.open:hover {
    opacity: 0.8;
}

.open span {
    display: block;
    float: left;
    clear: both;
    height: 3px;
    width: 100%;
    border-radius: 40px;
    background-color: #fff;
    position: absolute;
    right: 3px;
    top: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.open span:nth-child(1) {
    margin-top: 0px;
    z-index: 9;
}

.open span:nth-child(2) {
    margin-top: 12px;
}

.open span:nth-child(3) {
    margin-top: 24px;
    width: 50%;
}

.sub-menu {
    -webkit-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    height: 0;
    width: 0;
    right: 0;
    top: 0;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 18;
    overflow: hidden;
}

.sub-menu li {
    display: block;
    float: right;
    clear: both;
    height: auto;
    margin-right: -160px;
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sub-menu li:first-child {
    margin-top: 200px;
}

.sub-menu li:nth-child(1) {
    -webkit-transition-delay: 0.05s;
}

.sub-menu li:nth-child(2) {
    -webkit-transition-delay: 0.10s;
}

.sub-menu li:nth-child(3) {
    -webkit-transition-delay: 0.15s;
}

.sub-menu li:nth-child(4) {
    -webkit-transition-delay: 0.20s;
}

.sub-menu li:nth-child(5) {
    -webkit-transition-delay: 0.25s;
}

.sub-menu li a {
    color: #fff;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 16px;
    width: 100%;
    display: block;
    float: left;
    line-height: 40px;
}

.oppenned .sub-menu {
    opacity: 1;
    height: 400px;
    width: 400px;
}

.oppenned span:nth-child(2) {
    overflow: visible;
}

.oppenned span:nth-child(1),
.oppenned span:nth-child(3) {
    z-index: 100;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.oppenned span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(12px) translateX(12px);
    transform: rotate(45deg) translateY(12px) translateX(12px);
}

.oppenned span:nth-child(2) {
    height: 400px;
    width: 400px;
    right: -160px;
    top: -160px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.54);
}

.oppenned span:nth-child(3) {
    -webkit-transform: rotate(-46deg) translateY(-6px) translateX(5px);
    transform: rotate(-46deg) translateY(-6px) translateX(5px);
    width: 100%;
}

#header.header-scrolled .oppenned span:nth-child(3) {
    -webkit-transform: rotate(-46deg) translateY(-3px) translateX(2px);
    transform: rotate(-46deg) translateY(-3px) translateX(2px);
    width: 100%;
}

.oppenned li {
    margin-right: 168px;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/


/* Sections Header
--------------------------------*/

.section-header h3 {
    font-size: 36px;
    color: #413e66;
    text-align: center;
    font-weight: 700;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

.section-header p {
    text-align: center;
    margin: auto;
    font-size: 15px;
    padding-bottom: 60px;
    color: #535074;
    width: 50%;
}


/* Section with background
--------------------------------*/

.section-bg {
    background: #f5f8fd;
}

.blank-div {
    width: 100%;
    height: 20px;
}


/* E G0 */

.e-go-primary-color {
    background-color: #08BA8A;
}

.e-go-logo {
    position: absolute;
    top: 0;
}

.e-go-screens img {
    /*    width: 15rem;
    height: 25rem;*/
}

.projects {
    padding: 10px 0;
    position: relative;
    /*    height: 100vh;*/
}

.projects .projects-content {
    padding-top: 40px;
}

.projects .projects-content h3 {
    color: #fff;
    font-size: 18px;
    font-family: 'Avenir LT Std';
    opacity: .5;
}

.projects .projects-content h2 {
    color: #fff;
    font-size: 30px;
    font-family: 'helveticaneuebold';
}

.projects .projects-content p {
    color: #fff;
    font-size: 16px;
    font-family: 'Avenir LT Std';
}

.projects .btn-case-study {
    font-family: 'helveticaneuelight';
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 4px;
    transition: 0.5s;
    color: #000;
    border: 1px solid #fff;
    background: #fff;
}

.projects .btn-case-study:hover {
    background: #c1c1c1;
    color: #000;
    border: 1px solid #c1c1c1;
}

.btn-case-study-disable {
    background: #fff;
    color: #000;
    font-family: 'helveticaneuelight';
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 4px;
    transition: 0.5s;
    opacity: .4;
    border: 1px solid #fff;
    pointer-events: none;
}

.e-go {
    background-image: url(../img/e-go-bg.png);
    background-repeat: no-repeat;
    /*    background-size: contain;*/
    background-size: cover;
}

.bestop-screens img {
    /*    width: 15rem;*/
    height: 25rem;
}

.bestop {
    background-image: url(../img/bus-bg.jpg);
    background-repeat: no-repeat;
    /*    background-size: contain;*/
    background-size: cover;
}

.cadis-fleet {
    background-image: url(../img/fleet-bg.jpg);
    background-repeat: no-repeat;
    /*    background-size: contain;*/
    background-size: cover;
}

.e-commerce {
    background-image: url(../img/ecommerce-bg@2x.jpg);
    background-repeat: no-repeat;
    /*    background-size: contain;*/
    background-size: cover;
}

.e-commerce .e-go-screens .psms1 {
    height: 32rem;
}

.fleet-management {
    background-image: url(../img/fleet-management-bg@2x.jpg);
    background-repeat: no-repeat;
    /*    background-size: contain;*/
    background-size: cover;
}


/* E GO */

.prajDesign-inner-page {
    background-color: transparent;
}

.project-short-details {
    background-color: #226F5A;
}

.project-short-details h4,
.project-short-details p {
    color: #fff;
}

.project-short-details ul {
    padding: 0;
}

.project-short-details ul li {
    color: #fff;
    list-style: none;
    margin-bottom: 5px;
}

.project-background-text {
    background-color: #F8FBFD;
}

.e-go-text-primary {
    color: #059A8B;
}


/* E-coomerce  #181819  */

.e-com-short-details {
    background-color: #181819;
}

.user-testing-list ol li {
    margin-bottom: .8rem;
}

.research-analysis-list ul li {
    margin-bottom: .8rem;
    position: relative;
    list-style: none;
}

.research-analysis-list ul li::before {
    content: '-';
    position: absolute;
    left: -15px;
}


/*About Me*/

#intro.about-intro {
    height: 87vh;
}

.prajDesign-inner-page .designation-title {
    font-size: 30px;
    font-family: 'helveticaneuebold';
    text-transform: uppercase;
    color: #fff;
    position: relative;
    background-color: #000;
}

.download-button {
    font-family: 'helveticaneuelight';
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 4px;
    transition: 0.5s;
    color: rgba(255, 255, 255, 1);
    border: 1px solid;
    border-color: rgba(255, 255, 255, .3);
    /*  background: #37e6f8;*/
}

.download-button:hover,
.download-button:active,
.download-button:focus {
    background: #fff;
    color: #000;
}

.aboutMe_images {
    background-image: url(../img/images_1.jpg);
    background-repeat: no-repeat;
    /*    background-size: contain;*/
    background-size: cover;
}


/* Bestop */

.bestop-user-goal-background {
    background-image: url(../img/bestop-uxgoals.jpg);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-size: cover;
}


/* Bestop*/

.e-com {
    background-image: url(../img/e-com.jpg);
    background-repeat: no-repeat;
    /*    background-size: contain;*/
    background-size: contain;
}

.inner-btn-case-study {
    font-family: 'helveticaneuelight';
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    border: 1px solid #000;
    background: #000;
}

.inner-btn-case-study:hover {
    background: #45505A;
    color: #fff;
}


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

#footer {
    padding: 0 0 30px 0;
    font-size: 14px;
    background: #000;
    padding-top: 1rem;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
}


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 991px) {
    #call-to-action .cta-btn-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (min-width: 992px) {
    #intro .intro-info {
        padding-top: 80px;
    }
    #testimonials .testimonial-item p {
        width: 80%;
    }
}

@media (max-width: 991px) {
    #topbar {
        display: none;
    }
    #header {
        height: 70px;
        padding: 15px 0;
    }
    #header .logo h1 {
        font-size: 28px;
        padding: 8px 0;
    }
    #why-us .why-us-content {
        padding-top: 30px;
    }
    #pricing {
        padding-bottom: 30px;
    }
    #pricing .card {
        margin-bottom: 50px;
    }
    .width-sm-100 {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
    #faq #faq-list a {
        font-size: 18px;
    }
    #faq #faq-list i {
        top: 13px;
    }
}

@media (max-width: 767px) {
    #intro {
        height: auto;
        padding: 80px 0 60px 0;
    }
    #intro .container {
        height: auto !important;
    }
    #intro .intro-img {
        width: 80%;
    }
    #intro .intro-info {
        text-align: center;
        padding-top: 40px;
    }
    #intro .intro-info h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    #intro.about-intro {
        height: 100vh;
    }
    .welcome-title {
        font-size: 20px;
    }
    .section-header p {
        width: 100%;
    }
    .e-go,
    .bestop,
    .cadis-fleet,
    .e-commerce {
        background-size: cover;
        background-position: center;
    }
    .e-go-screens img {
        /* width: 15rem; */
        height: auto;
    }
    .e-go-logo {
        position: inherit;
    }
    .bestop-screens img {
        height: auto;
    }
}

@media (max-width: 574px) {
    #footer .footer-top .social-links a {
        margin-bottom: 25px;
    }
}