    /* Global */
    
     :root {
        --dark-color: #19283f;
        --green-color: #33d1cc;
        --bg-color: #c6dbcf;
        --section-color: #eff7fa;
        --text-color: #19283f;
    }
    
    * {
        transition: all 0.6s ease-in-out !important;
    }
    
    .--bg-color {
        background-color: var(--bg-color);
    }
    
    .green-color {
        color: var(--green-color);
    }
    
    .bg-green {
        background-color: var(--green-color);
    }
    
    body {
        font-family: 'roboto', sans-serif;
    }
    
    .my-element {
        display: inline-block;
        margin: 0 0.5rem;
        animation: all;
        animation-duration: 1s;
    }
    
    .main-btn {
        background-color: var(--green-color);
        border: none;
        color: white;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 18px;
        margin: 4px;
        cursor: pointer;
        border-radius: 5px;
        opacity: 0.9;
    }
    
    .main-btn:hover {
        background-color: var(--green-color) !important;
        color: white !important;
        transform: scale(1.1) !important;
        transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
        will-change: transform !important;
        opacity: 1 !important;
    }
    
    .main-btn:focus {
        background-color: var(--green-color) !important;
        color: white !important;
    }
    
    .background-color {
        display: flex;
        justify-content: start;
        align-items: center;
        height: 100vh;
    }
    
    .reveal {
        position: relative;
        transform: translateY(150px);
        opacity: 0;
        transition: 1s all ease;
    }
    
    .reveal.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .icons-holder svg {
        color: var(--green-color);
        left: 50%;
        transform: translateX(-50%);
    }
    
     ::selection {
        background-color: var(--green-color);
        color: white;
    }
    
    img {
        opacity: 0.9 !important;
        width: 100% !important;
        height: auto !important;
    }
    
    img:hover {
        opacity: 1 !important;
        transform: scale(1.1) !important;
        transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }
    
    #myBtn {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 30px;
        z-index: 99;
        font-size: 18px;
        border: none;
        outline: none;
        color: white;
        cursor: pointer;
        padding: 15px;
        border-radius: 4px;
    }
    
    #myBtn:hover {
        background-color: #555;
    }
    
    .fa-arrow-up {
        width: 25px;
        height: 25px;
        font-size: 20px;
    }
    /* End Of Global */
    /* Navbar */
    
    .navbar {
        background-color: var(--dark-color);
    }
    
    .navbar-brand .logo {
        width: 50px;
        height: 50px;
    }
    
    .navbar .navbar-nav .nav-link {
        color: rgb(226, 219, 219);
        margin: 0px 4px;
    }
    
    .navbar .navbar-nav .nav-link:active,
    .navbar .navbar-nav .nav-link:focus,
    .navbar .navbar-nav .nav-link:hover {
        color: var(--green-color);
        box-shadow: #33d1cc 0px 0px 5px;
    }
    
    .navbar .search {
        border-left: 1px solid var(--green-color);
    }
    
    .navbar .search svg {
        color: var(--green-color);
        cursor: pointer;
    }
    
    .navbar .navbar-toggler[aria-expanded="true"] {
        background-color: var(--green-color);
        transition: background-color 0.5s ease-in-out;
        will-change: transform;
    }
    /* End Navbar */
    /* Landing */
    
    .landing-title {
        font-size: 3rem;
        color: var(--green-color);
        font-weight: bold;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .landing-content-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100%;
        position: relative;
    }
    /* End Of Landing */
    /* Services */
    
    .Services .icons-holder {
        height: 200px;
    }
    
    .Services .icons-holder svg {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .Services .icons-holder .number {
        font-size: 12rem;
        color: var(--section-color);
    }
    
    .Services .icons-holder .icon {
        color: var(--green-color);
    }
    
    .main-title h1::after {
        content: '';
        width: 230px;
        height: 2px;
        background-color: var(--green-color);
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    @media screen and (max-width: 768px) {
        .main-title h1::after {
            width: 50%;
        }
        .About .tex h4 {
            font-size: 16px;
            text-align: justify;
        }
    }
    /* End Of Services */
    /* Portfolio */
    
    .Portfolio .container-fluid {
        background-color: var(--bg-color);
    }
    
    .Portfolio ul li {
        padding: 0.5rem 1.5rem;
        cursor: pointer;
    }
    
    .Portfolio ul .active {
        background-color: var(--green-color);
        box-shadow: #33d1cc 0px 0px 5px;
    }
    
    .Portfolio ul li:active,
    .Portfolio ul li:hover,
    .Portfolio ul li:focus {
        background-color: var(--green-color);
        box-shadow: #33d1cc 0px 0px 5px;
        transition: all 0.5s ease-in-out;
    }
    
    .Portfolio .box {
        overflow: hidden;
        position: relative;
        background-color: var(--bg-color);
        border: 2px solid var(--dark-color);
    }
    /* End Of Portfolio */
    /* About */
    
    .About .main-title>div {
        text-align: center;
        width: 50%;
        margin: 0 auto;
    }
    
    @media screen and (max-width: 768px) {
        .About .main-title>div {
            width: 90%;
        }
    }
    
    @media screen and (max-width: 992px) {
        .About .main-title>div {
            width: 90%;
        }
    }
    
    .image {
        width: fit-content;
    }
    
    .wrapper {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
        width: 80%;
        margin: 0 auto;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .card img {
        box-shadow: 0px 0px 5px #33d1cc !important;
        opacity: 0.9 !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .card img:hover {
        opacity: 1 !important;
        transform: scale(1.1) !important;
        transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }
    /* End Of About */
    /* Footer */
    
    .footer {
        background-color: var(--dark-color);
    }
    
    .footer .container .row {
        display: flex;
        justify-content: space-between;
    }
    
    .info img {
        width: 60px !important;
    }
    
    .links li a {
        line-height: 52px;
    }
    /* End Of Footer */