    /* general styling */

    .row:before,
    .row:after {
        display: none !important;
    }

    button:focus {
        outline: none;
    }

    html {
        scroll-behavior: smooth;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font: 300 2.1rem/1.2 "Oswald", sans-serif;
    }

    footer a {
        color: white;
    }

    body,
    html {
        font-family: 'Lato', sans-serif;
        font-weight: 300;
        height: 100%;
        color: #777;
        line-height: 1.8;
    }

    .title-hr {
        margin-bottom: 2rem;
        width: 100%;
        border: 0;
        height: 1px;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    }

    /* Background image scrolling */
    .bgimg-1,
    .bgimg-2,
    .bgimg-3 {
        background-attachment: scroll;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /* hero image */
    .title {
        padding: 2%;
    }

    .bgimg-1 {
        background-image: url(../images/radar_system.jpg);
    }

    /* Services image */
    .bgimg-2 {
        background-image: url(../images/TADRS.jpg);
    }

    /* Contact image */
    .bgimg-3 {
        background-image: url(../images/AWAC.jpg);
    }

    /* w3 - format */
    .w3-wide {
        letter-spacing: 10px;
        font: 300 2.1rem/1.2 "Oswald", sans-serif;
    }

    .w3-hover-opacity {
        cursor: pointer;
    }

    /* navbar styling */

    #Navbar {
        background: #40B0A6;
        font: 300 2.1rem/1.2 "Oswald", sans-serif;
    }

    #navbar-container {
        background: #40B0A6;
        color: white;
        letter-spacing: 3px;
    }

    #navbar-container a {
        color: white;
        text-decoration: none;
    }

    .nav-item {
        font-family: 'Lato', serif;
        font-size: 1rem;
    }

    /* testimonials */
    #testimonials {
        text-align: center;
        color: white;
        background: #40B0A6
    }

    .testimonial-text {
        text-align: justify;
    }

    .testimonial-image {
        width: 20%;
        border-radius: 100%;
        margin: 20px;
    }

    .carousel-item {
        padding: 7% 25%;
    }

    /* about section */

    #about {
        padding: 7%;
    }

    #about h2 {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    #about p {
        text-align: justify;
    }

    .profile {
        margin-bottom: 30px;
    }

    .list1,
    .list2 {
        list-style: none;
    }

    .skills {
        letter-spacing: 5px;
    }

    /* services */
    #services-container {
        margin: 5% auto;
        width: 100%;
    }

    #services-container .card {
        border: none;
    }

    #services-container .card-text {
        text-align: justify;
    }

    #services-container .card-title {
        margin-bottom: 2rem;
    }

    #services-container .card-img {
        height: 200px;
        margin: 5% 0;
    }

    /* partners styling */
    #partners {
        padding: 5%;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #partners img {
        width: 15%;
        margin: 20px 20px 50px;
    }

    /* RWD breakpoints */

    /* handheld devices */
    @media only screen and (max-width: 500px) {

        /* bg images */
        .bgimg-1,
        .bgimg-2,
        .bgimg-3 {
            background-attachment: scroll;
            min-height: 60%;
            width: 100%
        }

        /* navbar */
        .navbar {
            padding: 1% 0;
        }

        .nav-item{
            margin: 0.7rem 0;
        }

        .navbar-nav {
            padding: 5%;
        }

        /* services */
        #services-container .card-img {
            height: 150px;
        }

        /* partners */
        #partners img {
            width: 25%;
        }

        /* title */
        .title {
            white-space: wrap;
        }

        /* testimonials */
        .testimonial-text {
            font-size: 10px;
        }

    }

    /* tablets */
    @media only screen and (min-width: 500px) {

        /* bg images */
        .bgimg-1,
        .bgimg-2,
        .bgimg-3 {
            background-attachment: scroll;
            min-height: 100%;
            width: 100%
        }

        /* title */
        .title {
            white-space: nowrap;
        }

        /* navbar */
        .navbar-nav {
            padding: 5%;
        }

        .nav-item{
            margin: 0.7rem 0;
        }
    }

    /* desktop */
    @media only screen and (min-width: 900px) {

        /* bg images */
        .bgimg-1,
        .bgimg-2,
        .bgimg-3 {
            background-attachment: fixed;
            min-height: 100%;
        }

         /* navbar */
         .navbar-nav {
            padding: 2%;
        }

        .nav-item{
            margin: 0;
        }

        /* increase font a bit */
        .nav-item {
            font-size: 1.5rem;
        }

        /* testimonials */
        .testimonial-text {
            font-size: 20px;
        }

    }