html {
    padding: 0;
    margin: 0;
    height: 100%;
    height: 100%;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif, 'Times New Roman', Times, serif;
}

* {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    background: #fff;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif, 'Times New Roman', Times, serif;
}

@viewport {
    width: device-width;
    zoom: 1.0;
}

@-ms-viewport {
    width: device-width;
}


/* hero */

#hero {
    width: 100%;
    height: 100vh;
    background: url(./img/thefouramericans.jpg) top center;
    background-size: cover;
    position: relative;
    background-repeat: none;
}

@media (max-width: 400px) {
    #hero {
        background-attachment: fixed;
        width: 100%;
        height: 100vh;
        background: url(./img/thefouramericans.jpg) top center;
        background-size: cover;
        position: relative;
        background-repeat: none;
    }
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    filter: blur(20px);
}

#hero .hero-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;
}

#hero h1 {
    margin: 30px 0 10px 0;
    font-size: 38px;
    font-weight: 700;
    line-height: 56px;
    text-transform: none;
    color: #e04f00;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

@media screen and (max-width: 320px) {
    /* comes into effect for screens less than or equal to 320 pixels */
    #somethingorother {
        width: 120px;
    }
}

@media screen and (min-width: 321px) and (max-width: 480px) {
    /* comes into effect for screens between 321 and 480 pixels (inclusive) */
    #somethingorother {
        width: 320px;
    }
}

@media screen and (min-width: 481px) {
    /* comes into effect for screens larger than or equal to 481 pixels */
    #somethingorother {
        width: 480px;
    }
}

#hero h2 {
    color: #fff;
    margin-bottom: 50px;
    font-size: 24px;
}

@media (max-width: 200px) {
    #hero h2 {
        font-size: 30px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

#hero .btn-get-started {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400px;
    font-size: 20px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 20px;
    border: 2px solid #ffff;
    color: #ffff;
}

#hero .btn-get-started:hover {
    border: 2px solid #e04f00;
    color: #e04f00;
    text-decoration: none;
}


/*----Navigaton----*/

section {
    flex-flow: column;
    height: auto;
}

#navbar {
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    top: -70px;
    transition: top 0.3s;
    font-size: 20px;
}

nav a {
    float: right;
    display: block;
    color: #e04f00;
    text-align: center;
    padding: 25px;
    text-decoration: none;
}

nav a:hover {
    color: white;
    text-decoration: none;
}

.topnav {
    overflow: hidden;
    background-color: rgba(24, 24, 26, 0.1);
    transition: top 0.3s;
    font-size: 20px;
    float: right;
    display: flex;
    flex-direction: row;
}

a:nth-child(1) {
    order: -1;
}

.topnav a {
    float: right;
    display: block;
    color: #e04f00;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    z-index: 1000;
}

.topnav a:hover {
    background-color: #e04f00;
    color: white;
    display: block;
}

.topnav a.active {
    color: white;
}

.topnav a.active:hover {
    color: white;
}

.topnav .icon {
    display: none;
    color: white;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {
        display: none;
    }
    .topnav a.icon {
        float: right;
        display: block;
        width: 100%;
    }
    .topnav {
        overflow: auto;
        background-color: rgba(24, 24, 26, 0.7);
        transition: top 0.3s;
        font-size: 20px;
        float: right;
        display: block;
        flex-direction: column;
    }
    .topnav a.active {
        color: white;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
    }
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
        margin-bottom: 3em;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: right;
    }
    .topnav a.active {
        margin-top: 3em;
    }
}


/*------ Home -------*/

#home {
    display: table;
    height: 100%;
    position: fixed;
    width: 100%;
    background-size: cover;
}

.btn-outline-danger:hover {
    background-color: #e04f00!important;
}

#landing-text {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: #e04f00;
    font-size: 100px;
    font-size-adjust: auto;
}


/*---------About--------*/

#section2 h2 {
    color: #e04f00;
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: center;
    font-size: 30px;
}

.about-content {
    font-size: 18px;
    margin: 1em 0em 1em 0em;
    padding: 0px;
}

img.alldevices {
    margin: 0 auto;
    height: auto;
    max-width: 100%;
    border: none;
    display: block;
    padding: 5px 0;
}

@media screen and (max-width: 200px) {
    .alldevices {
        margin: 0 auto;
        height: auto;
        max-width: 100%;
        border: none;
        display: block;
        padding: 5px 0;
    }
}


/*-------Services-------*/

.services {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(./img/promo.jpg);
    background-size: cover;
    background-position: center;
    color: #efefef!important;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 30px;
    text-align: center;
}

h1 {
    text-align: center;
    color: #e04f00 !important;
    padding-bottom: 10px;
    padding-top: 1px;
}

.services h1::after {
    content: '';
    background: #e04f00;
    width: 170px;
    margin: 20px auto 5px;
}

.services p {
    font-size: 12px;
    margin-top: 20px;
    color: #ccc;
    font-weight: bold;
}

.services .col-md-3:hover {
    background: #e04f00;
    cursor: pointer;
    transition: 0.4s;
    padding: 1em;
}


/*----------Team Members--------*/

.section4 h1 {
    margin-top: 1em;
}

.swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 8em;
}

.swiper-slide {
    width: 300px;
    height: 300px;
    background: #e04f00;
}

.details p {
    color: #e04f00;
    font-size: 20px;
    text-align: center;
}


/*------------- Price Plans------------------*/

.price {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(./img/promo.jpg);
    background-size: cover;
    background-position: center;
    color: #efefef !important;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 30px;
    text-align: center;
}

section div.w3-row-padding {
    padding: 1px;
    display: inline-block;
    text-align: center;
}

div.inline {
    display: inline-flexbox!important;
}

.w3-quarter {
    display: inline-block;
    width: 100%;
    margin: 5px;
    padding: 5px;
    text-align: center;
}

@media screen and (max-width: 200px) {
    section div.w3-row-padding {
        display: block;
        text-align: center;
    }
    .w3-quarter {
        width: 120%;
        margin: 1px 5px 0px 0px;
        padding: 1px;
    }
}

.w3-row-padding:after,
.w3-row-padding:before {
    content: "";
    display: table;
    clear: both;
}

.w3-hover-shadow:hover {
    box-shadow: 20px 20px 700px 15px grey;
    transition: 0.7s;
}

.w3-ul {
    list-style-type: none;
    padding: 0;
    margin: 0
}

.w3-ul li {
    padding: 8px 10px;
    border-bottom: 1px solid #ddd
}

.w3-opacity,
.w3-hover-opacity:hover {
    opacity: 0.60
}

.w3-xlarge {
    font-size: 24px !important
}

.w3-center {
    text-align: center !important
}

.w3-border {
    border: 1px solid #ccc !important
}

.w3-padding-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important
}

.w3-padding-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important
}

#price-head h2 {
    color: #efefef;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 5px;
    text-transform: uppercase;
    background-color: #e04f00;
}

.w3-msc,
.w3-hover-green:hover {
    color: #fff !important;
    background-color: #e04f00 !important
}


/*------------ Keep in Touch ----------*/

#section6 {
    width: 100%;
    background-color: whitesmoke;
    height: auto;
}

h5 {
    text-align: center;
    color: #e04f00;
    padding: 0.5em 0 1em 0;
}


/*----- Contact Form -----*/

form input {
    padding: 5px;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #e04f00;
    outline: 0;
    font-size: 1.3rem;
    color: black;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.form__field::placeholder {
    color: grey;
}

.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #9b9b9b;
}

.form__field:focus {
    padding-bottom: 6px;
    font-weight: 300;
    border-width: 3px;
    border-image: linear-gradient(to right, #000000, #e04f00);
    border-image-slice: 1;
}

.form__field:focus~.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #e04f00;
    font-weight: 700;
}

.submit {
    border-width: 0;
    margin: 1em 0 1em 0;
    padding: 0.5em;
    font-size: 18px;
    color: grey;
    font-weight: bold;
    background-color: whitesmoke;
}

.submit:hover {
    color: #e04f00;
}

.space {
    display: inline-block;
    margin: 1em 0 1em 0;
}


/* reset input */

.form__field:required,
.form__field:invalid {
    box-shadow: none;
}


/*--------- erros&messages ---------*/

div#errors {
    display: none;
}

.contact-form #msg_submitting {
    display: none;
}

.contact-form #msg_submitted {
    display: none;
}


/*---------Google Maps-----------*/

.mapouter {
    position: relative;
    height: 391px;
    width: auto;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 391px;
    width: 280px;
}


/*-------------- Profile CSS -----------------*/

.profile-sec {
    width: auto;
    height: auto;
    background-attachment: fixed;
    background-size: cover;
    margin-top: 1em;
    font-size: inherit;
}

@media screen and (max-width: 400px) {
    .profile-sec {
        height: auto;
        width: auto;
        font-size: 40px;
    }
}

.mainp p a {
    margin-top: 12px;
    padding-top: 3px;
    color: #e04f00;
    font-size: 14px;
}

.mainp p a:hover {
    margin-top: 12px;
    padding-top: 3px;
    font-size: 14px;
    font-style: italic;
}

.par p {
    font-size: 30px;
    margin: 30px 5px 5px 5px;
    padding: 5px;
    text-indent: 2em;
    color: grey;
}

p.name {
    width: auto;
    color: #e04f00;
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
}

p.em {
    font-size: 16px;
    color: grey;
    padding-left: 5rem;
    font-style: italic;
}

.row p a {
    color: grey;
}

div.line {
    margin-top: 3em;
    border-top-style: solid;
    border-color: #e04f00;
}

@media screen and (max-width:450px) {
    div.line {
        margin-top: 1em;
    }
    p.em {
        font-size: 16px;
        color: grey;
        padding-left: 5rem;
        font-style: italic;
        margin-top: 0.5em!important;
    }
    img.alldevices {
        max-width: 100%;
        border: none;
        display: block;
    }
}


/*------------ Footer ------------*/

footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

#section7 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(./img/promo.jpg);
    color: white;
    text-align: center;
    width: 100%;
    height: auto;
}

#section8 {
    height: auto;
    vertical-align: bottom;
    width: 60%;
}

.section8 {
    background-color: black;
    color: white;
    text-align: center;
    width: 100%;
    height: auto;
}

@media screen and (max-width:800px) {
    .section8 {
        background-color: black;
        color: white;
        text-align: center;
        width: 100%;
    }
}

@media screen and (max-width:450px) {
    .section8 {
        background-color: black;
        color: white;
        text-align: center;
        width: 100%;
    }
}

#section7 p {
    margin: 0;
    padding: 0;
}

#section7 a {
    color: white;
}


/* -------- Mobile Responsivness ----------*/