    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html,
    body {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }
    
    body {
        color: rgb(0, 0, 0);
        background: #ffffff;
        font-family: 'Helvetica LT Std', monospace;
    }
    
    a,
    a:hover {
        text-decoration: none;
        color: white;
    }
    
    ul {
        list-style: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5 {
        text-transform: uppercase;
        font-family: 'Helvetica LT Std', monospace;
        font-weight: 800;
    }
    
    p {
        font-family: 'Helvetica LT Std', monospace;
        font-weight: 500;
    }
    /*
***
* SECTION FOR Navbar
***
* ***********************************
* ********************************
* ***************************************
***
*/
    
    .nav-link {
        text-transform: uppercase;
        color: #0D87CF !important;
        position: relative;
        transition: all .3s linear;
    }
    
    .nav-link:hover {
        color: #07a4ff !important;
    }
    /* .navbar-nav li::after {
    content: "/";
    position: absolute;
    right: 0;
    top: 15px;
} */
    /* .nav-link:after {
    content: "/";
    margin: 0 auto;
    width: 100%;
    transition: all .3s linear;
} */
    /* .navbar-nav ul li:last-child .nav-link:after {
    content: none !important;
    padding-left: 0%;
} */
    
    .nav-link:hover::before {
        width: 80%;
        transition: all .3s linear;
    }
    
    .nav-link.active::before {
        width: 100%;
        transition: all .3s linear;
    }
    
    .nav-item {
        padding: 0 .8rem;
        font-weight: 800;
        font-size: 1.5rem;
    }
    
    .sp-color {
        color: #00FB00;
    }
    
    .navbar-brand img {
        width: 20% !important;
    }
    
    .navbar {
        background-color: #ffffff00;
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    @media (max-width: 767px) {
        .navbar {
            background-color: #07a4ff;
        }
    }
    
    @media (min-width: 767px) {
        .navbar-brand {
            display: none;
        }
    }
    /*
***
* SECTION FOR Sidebar Hamburger Icon
***
* ***********************************
* ********************************
* ***************************************
***
*/
    
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #2b2c2c;
        display: grid;
        grid-template-rows: auto 1fr auto;
        row-gap: 1rem;
        box-shadow: hsl(360, 67%, 44%);
        transform: translate(-100%);
        transition: all .3s linear;
        z-index: 3;
    }
    
    .sidebar-header {
        background: #07a4ff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
    }
    
    .sidebar-toggle {
        position: absolute;
        top: 2rem;
        right: 2.4rem;
        cursor: pointer;
        font-size: 1.4rem;
        border: none;
        background-color: transparent;
        transition: all 0.3s linear;
        animation: bounce-side 2s ease-in-out infinite;
    }
    
    .sidebar-toggle i {
        color: #ffffff;
    }
    
    .sidebar-toggle:focus {
        outline: transparent;
    }
    
    @keyframes bounce-side {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.5);
        }
        100% {
            transform: scale(1);
        }
    }
    
    .close-btn {
        font-size: 1.75rem;
        background: transparent;
        border-color: transparent;
        transition: all 0.3s linear;
        cursor: pointer;
        color: hsl(360, 67%, 44%);
    }
    
    .close-btn:focus {
        outline: transparent;
    }
    
    .close-btn:hover {
        color: #d60d0d;
        transform: rotate(360deg);
    }
    
    .links a {
        display: block;
        font-size: 1.5rem;
        text-transform: capitalize;
        padding: 1rem 1.5rem;
        color: white;
        transition: all .3s linear;
    }
    
    .links a:hover {
        background: #0AA9EF;
        color: #ffffff;
        padding-left: 1.75rem;
    }
    
    .show-sidebar {
        transform: translate(0);
    }
    
    .social-icons {
        display: flex;
        justify-self: center;
        list-style: none !important;
        justify-content: center;
        padding: 3rem 4rem;
    }
    
    .social-icons a {
        font-size: 1.5rem;
        margin: 0 1rem;
        color: white;
        transition: all 0.3s linear;
    }
    
    .social-icons a:hover {
        color: #0AA9EF;
    }
    
    .social-icons0 {
        display: flex;
        justify-self: center;
        padding: .5rem 1rem;
        list-style: none;
        justify-content: center;
        align-items: center;
    }
    
    .social-icons0 a {
        font-size: 1.5rem;
        margin: 0 .5rem;
        color: white;
        transition: all 0.3s linear;
    }
    
    .social-icons0 i {
        background-color: #07a4ff;
        color: rgb(255, 255, 255);
        padding: .5rem;
        border-radius: .4rem;
    }
    
    .social-icons0 i:hover,
    .social-icons0 img:hover {
        background-color: #ffffff;
        color: #07a4ff;
        padding: .5rem;
        border-radius: .4rem;
    }
    
    @media(min-width:992px) {
        .sidebar-toggle {
            display: none;
        }
        .sidebar {
            display: none;
        }
    }
    /*
***
* SECTION FOR Hero-ImG
***
* ***********************************
* ********************************
* ***************************************
***
*/
    
    .heroimg-sec {
        background: url(./images/bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 80vh;
    }
    
    .banner {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 80vh;
    }
    
    .banner .container-fluid {
        padding-left: 0px !important;
    }
    
    .banner .img-fluid {
        max-width: 80%;
    }
    
    .banner p {
        padding-left: 1rem;
        padding-right: 1rem;
        color: #0AA9EF;
    }
    
    .logo-banner {
        background-color: #07a4ff;
        color: white;
        padding: 1rem 2rem;
    }
    
    .logo-banner .col-md-3 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .banner .col-md-6:last-child {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo-banner h3 {
        width: 70%;
        float: right;
    }
    
    .heroimg-sec ul.banner-list {
        list-style: disc;
        float: right;
        margin-top: 2rem;
        font-size: 1.5rem;
    }
    
    .heroimg-sec .banner-list li {
        font-weight: 800;
    }
    
    .heroimg-sec ul.banner-list ::marker {
        color: #07a4ff;
        font-size: 2rem;
    }
    
    @media (max-width: 767px) {
        .logo-banner img {
            display: none;
        }
        .logo-banner h3 {
            width: 100%;
            float: none;
            text-align: center;
        }
        .banner .container-fluid {
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
        .banner p {
            padding-left: auto;
            padding-right: auto;
            text-align: center;
            color: #0AA9EF;
        }
        .banner-list {
            list-style: disc;
            float: none;
            margin-top: 2rem;
            font-size: 1.3rem;
            margin-bottom: 4rem;
            margin-left: 3rem;
        }
    }
    /*
***
* SECTION FOR About US
***
* ***********************************
* ********************************
* ***************************************
***
*/
    
    .about-us {
        background: url(./images/bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 6rem 0;
    }
    
    .about-us .container-fluid {
        padding-left: 0px !important;
    }
    
    .logo-abt {
        background-color: #07a4ff;
        color: white;
        padding: 2rem;
    }
    
    .logo-abt .col-md-2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo-abt .col-md-9 {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .logo-abt h2 {
        font-size: 4rem;
    }
    
    .logo-abt img {
        width: 40%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        float: none;
    }
    
    .below-head {
        padding: 2rem;
    }
    
    .below-head p {
        font-size: 1.5rem;
        color: #131313;
    }
    
    .map-img {
        width: 30%;
    }
    
    @media (max-width: 767px) {
        .about-us .container-fluid {
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
        .logo-abt .col-md-9 {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .logo-abt img {
            display: none;
        }
        .map-img {
            width: 100%;
        }
    }
    /*
***
* SECTION FOR Services
***
* ***********************************
* ********************************
* ***************************************
***
*/
    
    .services {
        background: url(./images/bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-family: 'HelveticaLTStd-Roman', Arial, Helvetica, sans-serif;
        font-weight: 500;
    }
    
    .services ul.list-services {
        list-style: disc;
        float: right;
        margin-top: 2rem;
        font-size: 1.5rem;
    }
    
    .services .container-fluid {
        padding-left: 0px !important;
    }
    
    .services ul.list-services ::marker {
        color: #07a4ff;
        font-size: 2rem;
    }
    
    .services b {
        font-weight: bold;
    }
    
    @media (max-width: 767px) {
        .services .container-fluid {
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
    }
    /*
***
* SECTION FOR Portfolio
***
* ***********************************
* ********************************
* ***************************************
***
*/
    
    .portfolio {
        background: url(./images/bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-family: 'HelveticaLTStd-Roman', Arial, Helvetica, sans-serif !important;
        font-weight: 500;
    }
    
    .portfolio .container-fluid {
        padding-left: 0px !important;
    }
    /*
***
* SECTION FOR Our Team
***
* ***********************************
* ********************************
* ***************************************
***
*/
    
    .team {
        background: url(./images/bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 4rem 0rem;
    }
    
    .team p {
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 400;
    }
    
    .team .container-fluid {
        padding-left: 0px !important;
    }
    /*
***
* SECTION FOR Forms
***
* ***********************************
* ********************************
* ***************************************
***
*/
    
    .forms {
        background: url(./images/bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 4rem 0rem;
    }
    
    .forms .container-fluid {
        padding-left: 0px !important;
    }
    
    .logo-abt .col-md-9 {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .logo-abt p {
        margin-left: 6rem;
        margin-top: 2rem;
    }
    
    .below-head-form img {
        width: 50%;
        float: none;
        margin: 0 auto;
    }
    /*
***
* SECTION FOR Contact
***
* ***********************************
* ********************************
* ***************************************
***
*/
    
    .contact {
        background: url(./images/bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 4rem 0rem;
    }
    
    .contact .container-fluid {
        padding-left: 0px !important;
    }
    /*
***
* SECTION FOR Fotoer
***
* ***********************************
* ********************************
* ***************************************
***
*/
    
    footer .container-fluid {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
        padding: 1rem !important;
    }
    
    footer a {
        color: #131313;
        font-family: 'HelveticaLTStd-Roman', Arial, Helvetica, sans-serif !important;
        font-weight: 400;
    }
    
    footer a:hover {
        color: #07a4ff;
    }
    
    footer i {
        color: #07a4ff;
    }
    
    footer .footersocial-icons {
        display: flex;
        justify-self: center;
        list-style: none;
        justify-content: center;
    }
    
    .footersocial-icons a {
        font-size: 1.5rem;
        margin: 0 1rem;
        color: white;
        transition: all 0.3s linear;
    }
    
    .footersocial-icons a:hover {
        color: #0AA9EF;
    }