    @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
     :root {
        --textHoverColor: rgb(5, 65, 143);
        --primaryColor: rgb(255, 160, 35);
        --hoverColor: rgb(241, 145, 19);
    }
    
    body {
        font-family: 'Oswald', sans-serif;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    hr {
        color: #fff;
    }
    
    .container {
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow-x: hidden;
    }
    
    p {
        font-family: 'Poppins', sans-serif;
    }
    
    header {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 50px;
        border-top: 10px solid var(--primaryColor);
    }
    
    .logo {
        display: flex;
        width: 20%;
        flex-direction: column;
        cursor: pointer;
    }
    
    .logo h1 {
        font-size: 2rem;
        text-transform: uppercase;
        width: 100%;
    }
    
    .logo h1:hover {
        color: var(--textHoverColor);
    }
    
    .logo p {
        font-size: .9rem;
        text-transform: uppercase;
        opacity: 1;
        font-weight: 300;
        margin-top: -10px;
    }
    
    nav {
        display: flex;
        width: 60%;
        justify-content: space-between;
        align-items: center;
    }
    
    nav ul {
        display: flex;
        align-items: center;
        width: 70%;
        justify-content: space-between;
    }
    /* Dropdown Button */
    
    .dropbtn {
        cursor: pointer;
    }
    /* The container <div> - needed to position the dropdown content */
    
    .dropdown {
        position: relative;
        display: inline-block;
    }
    /* Dropdown Content (Hidden by Default) */
    
    .dropdown-content {
        display: none;
        position: absolute;
        min-width: 180px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        background: #fff;
    }
    /* Links inside the dropdown */
    
    .dropdown-content a {
        color: black;
        padding: 5px 7px;
        text-decoration: none;
        display: block;
        font-size: .8rem;
        text-transform: capitalize;
    }
    /* Show the dropdown menu on hover */
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    nav ul li {
        display: flex;
    }
    
    nav ul li a {
        text-decoration: none;
        text-transform: uppercase;
        color: #000;
        font-size: .9rem;
        font-weight: 400;
    }
    
    nav ul li a:hover {
        color: var(--primaryColor);
    }
    
    #quote {
        display: flex;
        padding: 15px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        outline: none;
        border: none;
        border-radius: 5px;
        font-weight: 900;
        background: var(--primaryColor);
        text-transform: uppercase;
        width: 25%;
        font-size: 1rem;
        font-family: 'Oswald', sans-serif;
    }
    
    #quote:hover {
        background: var(--hoverColor);
    }
    
    .toggle {
        display: none;
        position: absolute;
        top: 10%;
        right: 5%;
        cursor: pointer;
    }
    
    .toggle i {
        font-size: 1.5rem;
    }
    
    @media screen and (max-width:420px) {
        .container {
            overflow: hidden;
        }
        header {
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            padding: 30px;
        }
        .logo {
            display: flex;
            width: 50%;
            flex-direction: column;
            cursor: pointer;
        }
        .logo h1 {
            font-size: 1.5rem;
            text-transform: uppercase;
            width: 100%;
        }
        .logo h1:hover {
            color: var(--textHoverColor);
        }
        .logo p {
            font-size: .5rem;
            text-transform: uppercase;
            opacity: 1;
            font-weight: 300;
            margin-top: -5px;
        }
        nav {
            display: none;
            width: 70%;
            position: absolute;
            flex-direction: column;
            top: 20%;
            left: 2%;
            z-index: 1;
            background: #fff;
            border: 1px solid var(--primaryColor);
        }
        nav ul {
            display: flex;
            align-items: flex-start;
            padding: 10px;
            flex-direction: column;
            width: 100%;
        }
        nav ul li {
            display: flex;
            font-size: .6rem;
        }
        nav ul li a {
            text-decoration: none;
            text-transform: uppercase;
            color: #000;
            font-size: .6rem;
            font-weight: 400;
        }
        nav ul li a:hover {
            color: var(--primaryColor);
        }
        #quote {
            width: 50%;
            font-size: .6rem;
            font-family: 'Oswald', sans-serif;
            margin-bottom: 20px;
        }
        #quote:hover {
            background: var(--hoverColor);
        }
        .toggle {
            display: block;
            position: absolute;
            top: 10%;
            right: 10%;
            background: #000;
        }
        .toggle i {
            font-size: 1rem;
            color: #fff;
            padding: 10px;
        }
    }
    /* end of header styles */
    /* slider */
    
    .slideshow-container {
        width: 100%;
        margin: auto;
        overflow: hidden;
    }
    
    .mySlides {
        display: none;
        width: 100%;
        position: relative;
        background-color: #000;
    }
    
    .mySlides img {
        max-width: 100%;
        height: 700px;
        opacity: .5;
        transform: scaleY(1.5);
        /* filter: opacity(1) drop-shadow(0 0 0 #000); */
    }
    /* Caption text */
    
    .text {
        color: #f2f2f2;
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .text h1 {
        font-size: 4rem;
        margin-top: 30px;
        width: 100%;
    }
    
    .text p {
        margin-top: 20px;
        text-align: center;
        font-size: 1.3rem;
        width: 50%;
        justify-content: center;
        align-items: center;
        display: flex;
        font-weight: 300;
    }
    
    .slider-btns {
        display: flex;
        width: 30%;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }
    
    .slider-btns a {
        padding: 20px;
        width: 50%;
        margin-left: 10px;
        outline: none;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        text-transform: uppercase;
        text-decoration: none;
        color: #000;
        font-weight: 400;
        font-family: 'Oswald', sans-serif;
        cursor: pointer;
    }
    
    #about {
        background: var(--primaryColor);
    }
    
    #about:hover {
        background: var(--hoverColor);
    }
    
    #contact {
        background: #fff;
    }
    
    #contact:hover {
        color: var(--primaryColor);
    }
    
    .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
    }
    
    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }
    
    @media screen and (max-width: 420px) {
        .mySlides {
            display: none;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        .mySlides img {
            max-width: 100%;
            height: 300px;
            transform: scaleY(1);
            filter: opacity(1) drop-shadow(0 0 0 #000);
        }
        /* Caption text */
        .text {
            color: #f2f2f2;
            position: absolute;
            bottom: 30%;
            left: 4%;
            top: 10%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 100%;
            text-align: center;
        }
        .text h1 {
            font-size: 1.7rem;
            margin-top: 70px;
            width: 70%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .text p {
            font-size: .9rem;
            margin-top: 10px;
            width: 70%;
            text-align: center;
        }
        .slider-btns {
            display: flex;
            width: 90%;
            justify-content: center;
            align-items: center;
            margin-top: 10px;
        }
        .slider-btns button {
            margin-bottom: 50px;
        }
        #about {
            background: var(--primaryColor);
            padding: 15px;
            width: 40%;
        }
        #contact {
            padding: 15px;
            width: 40%;
        }
        .numbertext {
            color: #f2f2f2;
            font-size: 12px;
            padding: 8px 12px;
            position: absolute;
            top: 0;
        }
    }
    /* end of slider */
    /* services styles */
    
    #services {
        display: flex;
        padding: 100px;
        flex-direction: column;
        width: 100%;
    }
    
    .s-heading {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .s-heading h1 {
        font-size: 3rem;
        text-transform: uppercase;
        width: 100%;
    }
    
    .s-heading p {
        margin-top: 10px;
        font-size: 1.2rem;
        width: 80%;
        font-weight: 300;
    }
    
    .s-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        margin-top: 50px;
    }
    
    .card-container {
        display: flex;
        flex-direction: column;
        border: 1px solid #bbb;
        border-radius: 20px;
    }
    
    .card-container img {
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        height: 200px;
    }
    
    .card-container h3 {
        padding: 10px;
        background: var(--primaryColor);
        padding-left: 20px;
        text-transform: capitalize;
    }
    
    .card-container p {
        padding: 10px;
        padding-left: 20px;
        margin-top: 30px;
        font-size: .9rem;
        width: 100%;
        opacity: .6;
    }
    
    .card-contact {
        padding: 10px;
        padding-left: 20px;
        margin: 20px 0px;
        display: flex;
        align-items: center;
        width: 50%;
        justify-content: space-between;
    }
    
    .card-contact h5 {
        text-transform: uppercase;
        font-size: 1rem;
        font-weight: 400;
    }
    
    .card-contact a {
        background: var(--primaryColor);
        padding: 15px;
        border: none;
        border-radius: 5px;
        width: 30%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    @media screen and (max-width: 420px) {
        #services {
            display: flex;
            padding: 30px;
            flex-direction: column;
            width: 100%;
        }
        .s-heading {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        .s-heading h1 {
            font-size: 1.7rem;
            text-transform: uppercase;
            width: 100%;
        }
        .s-heading p {
            margin-top: 10px;
            font-size: .9rem;
            width: 90%;
            font-weight: 300;
        }
        .s-cards {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 20px;
            margin-top: 30px;
            justify-content: center;
        }
        .card-container {
            width: 100%;
        }
        .card-container img {
            height: 150px;
        }
        .card-container h3 {
            padding: 10px;
            background: var(--primaryColor);
            padding-left: 20px;
            text-transform: capitalize;
        }
        .card-container p {
            padding: 10px;
            padding-left: 20px;
            margin-top: 10px;
            font-size: .9rem;
            width: 100%;
            opacity: .6;
        }
        .card-contact {
            padding: 10px;
            padding-left: 20px;
            margin: 0px;
            display: flex;
            align-items: center;
            width: 70%;
            justify-content: space-between;
        }
        .card-contact h5 {
            text-transform: uppercase;
            font-size: .8rem;
            font-weight: 400;
        }
        .card-contact a {
            background: var(--primaryColor);
            padding: 10px;
            border: none;
            border-radius: 5px;
            width: 30%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        .card-contact a i {
            font-size: .8rem;
        }
    }
    /* end of services styles */
    /* choice */
    
    #choice {
        display: flex;
        width: 100%;
        justify-content: space-between;
        background: rgb(236, 235, 235);
    }
    
    #choice>img {
        display: flex;
        height: 500px;
        width: 40%;
        transform: skew(15deg) scale(1.2, 1.05);
        position: absolute;
        left: -8%;
        margin-top: 10px;
    }
    
    .description {
        display: flex;
        flex-direction: column;
        margin-left: 500px;
        padding: 70px;
        width: 80%;
    }
    
    .description h1 {
        font-size: 3rem;
    }
    
    .description p {
        margin-top: 30px;
        font-size: 1.2rem;
        font-weight: 300;
        width: 100%;
    }
    
    .sub-demains {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }
    
    .s-contents {
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .s-contents img {
        display: flex;
    }
    
    .s-contents h5 {
        display: flex;
        font-size: 1.2rem;
        width: 80%;
    }
    
    .communication {
        display: flex;
        flex-direction: column;
        background: var(--primaryColor);
        width: 40%;
        padding: 10px 0px;
        color: #fff;
    }
    
    .phone,
    .mail {
        margin: 70px auto;
    }
    
    .phone>p,
    .mail>p {
        font-size: 1rem;
        font-weight: 500;
        transform: scaleY(1.5);
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .phone>p i,
    .mail>p i {
        margin-right: 10px;
    }
    
    .social-networks {
        display: flex;
        margin: 40px auto;
        justify-content: space-between;
        width: 100%;
        padding: 0px 30px;
    }
    
    .social-networks i {
        background: #fff;
        padding: 20px;
        border: none;
        border-radius: 50%;
        color: var(--primaryColor);
        margin-left: 5px;
        cursor: pointer;
    }
    
    .social-networks i:hover {
        color: #000;
    }
    
    @media screen and (max-width:420px) {
        #choice {
            display: flex;
            width: 100%;
            justify-content: center;
            flex-direction: column;
            background: rgb(236, 235, 235);
        }
        #choice>img {
            display: flex;
            height: 500px;
            width: 5%;
            transform: skew(15deg) scale(1.2, 1.05);
            position: absolute;
            left: -8%;
            z-index: -1;
            margin-top: 10px;
        }
        .description {
            display: flex;
            flex-direction: column;
            margin-left: 0px;
            padding: 30px;
            width: 100%;
        }
        .description h1 {
            font-size: 2rem;
        }
        .description p {
            margin-top: 20px;
            font-size: .9rem;
            font-weight: 300;
            width: 100%;
        }
        .sub-demains {
            display: flex;
            flex-direction: column;
            margin-top: 20px;
        }
        .s-contents {
            display: flex;
            align-items: center;
            width: 100%;
        }
        .s-contents h5 {
            font-size: 1rem;
            width: 100%;
        }
        .communication {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            background: var(--primaryColor);
            width: 100%;
            padding: 10px 20px;
            color: #fff;
        }
        .phone,
        .mail {
            margin: 20px auto;
        }
        .phone>p,
        .mail>p {
            font-size: .9rem;
            font-weight: 500;
            transform: scaleY(1.5);
            width: 100%;
            display: flex;
            align-items: center;
        }
        .phone>p i,
        .mail>p i {
            margin-right: 10px;
        }
        .social-networks {
            display: flex;
            margin: 40px auto;
            justify-content: space-between;
            width: 100%;
            padding: 0px 30px;
        }
        .social-networks i {
            background: #fff;
            padding: 15px;
            border: none;
            border-radius: 50%;
            color: var(--primaryColor);
            margin-left: 5px;
            cursor: pointer;
        }
        .social-networks i:hover {
            color: #000;
        }
    }
    /* end of choice style */
    /* progress bars styles */
    
    #stats {
        display: grid;
        grid-template-columns: repeat(3, 2fr);
        padding: 100px 30px;
        width: 100%;
    }
    
    .stat-container {
        /* display: flex; */
        width: 100%;
    }
    
    .s-description {
        position: absolute;
        width: 20%;
        top: 375%;
        margin-left: 150px;
    }
    
    .s-description h3 {
        font-size: 2rem;
    }
    
    .s-description p {
        transform: scaleY(1.2);
        margin-top: 10px;
        font-weight: 300;
        font-size: .9rem;
    }
    
    .progress-circle {
        font-size: 20px;
        margin: 20px;
        position: relative;
        padding: 0;
        width: 5em;
        height: 5em;
        background-color: #F2E9E1;
        border-radius: 50%;
        line-height: 5em;
    }
    
    .progress-circle:after {
        border: none;
        position: absolute;
        top: 0.35em;
        left: 0.35em;
        text-align: center;
        display: block;
        border-radius: 50%;
        width: 4.3em;
        height: 4.3em;
        background-color: white;
        content: " ";
    }
    /* Text inside the control */
    
    .progress-circle span {
        position: absolute;
        line-height: 5em;
        width: 5em;
        text-align: center;
        display: block;
        color: #000;
        z-index: 2;
    }
    
    .left-half-clipper {
        border-radius: 50%;
        width: 5em;
        height: 5em;
        position: absolute;
        clip: rect(0, 5em, 5em, 2.5em);
    }
    
    .progress-circle.over50 .left-half-clipper {
        clip: rect(auto, auto, auto, auto);
    }
    
    .value-bar {
        position: absolute;
        clip: rect(0, 2.5em, 5em, 0);
        width: 5em;
        height: 5em;
        border-radius: 50%;
        border: 0.45em solid var(--primaryColor);
        box-sizing: border-box;
    }
    
    .progress-circle.over50 .first50-bar {
        position: absolute;
        clip: rect(0, 5em, 5em, 2.5em);
        background-color: var(--primaryColor);
        border-radius: 50%;
        width: 5em;
        height: 5em;
    }
    
    .progress-circle:not(.over50) .first50-bar {
        display: none;
    }
    /* Progress bar rotation position */
    
    .progress-circle.p34 .value-bar {
        transform: rotate(122deg);
    }
    
    .progress-circle.p57 .value-bar {
        transform: rotate(205deg);
    }
    
    .progress-circle.p100 .value-bar {
        transform: rotate(360deg);
    }
    
    @media screen and (max-width:420px) {
        #stats {
            display: grid;
            grid-template-columns: repeat(1, 2fr);
            padding: 50px 20px;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        .stat-container {
            /* display: flex; */
            width: 100%;
        }
        .s-description {
            position: relative;
            width: 100%;
            top: 375%;
            margin-left: 0px;
        }
        .s-description h3 {
            font-size: 1.7rem;
        }
        .s-description p {
            transform: scaleY(1.2);
            margin-top: 10px;
            font-weight: 300;
            font-size: .8rem;
            width: 80%;
        }
        .progress-circle {
            font-size: 20px;
            margin: 20px auto;
            position: relative;
            display: flex;
            justify-content: center;
            padding: 0;
            width: 5em;
            height: 5em;
            background-color: #F2E9E1;
            border-radius: 50%;
            line-height: 5em;
        }
    }
    /* end of progres styles */
    /* services overview */
    
    .services-overview {
        display: flex;
        padding: 100px 30px;
        width: 100%;
        justify-content: space-between;
    }
    
    .video {
        width: 50%;
        display: flex;
        flex-direction: column;
        position: relative;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        margin-left: 30px;
    }
    
    .video:hover {
        color: #fff;
    }
    
    .video img {
        display: flexbox;
        filter: opacity(.5) drop-shadow(0 0 0 #000);
        cursor: pointer;
        height: 350px;
        width: 600px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .video i {
        position: absolute;
        display: flex;
        left: 50%;
        top: 40%;
        background: var(--primaryColor);
        padding: 10px;
        font-size: 1.5rem;
        cursor: pointer;
        border-radius: 10px;
    }
    
    .video h3 {
        background: var(--primaryColor);
        padding: 20px 80px;
        color: #fff;
        text-transform: uppercase;
        font-size: 2rem;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    
    .overview-contents {
        display: flex;
        flex-direction: column;
        width: 50%;
        margin-left: 50px;
    }
    
    .overview-contents h1 {
        text-transform: uppercase;
        font-size: 3rem;
    }
    
    .overview-contents p {
        margin-top: 20px;
        font-size: .9rem;
        transform: scaleY(1.2);
        font-weight: 300;
    }
    
    .dropdowns {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }
    
    .toggle-contents {
        display: flex;
        flex-direction: column;
    }
    
    .toggle-div {
        display: flex;
        align-items: center;
        width: 90%;
        justify-content: space-between;
        padding: 10px;
        background: rgb(226, 223, 223);
        margin-top: 10px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        margin-top: 10px;
    }
    
    .toggle-div:hover {
        background: var(--primaryColor);
    }
    
    .toggle-div h5 {
        display: flex;
        align-items: center;
        margin-top: -5px;
        padding: 10px;
        font-size: 1.2rem;
    }
    
    .toggle-div i {
        padding: 10px;
    }
    
    .hidden-contents {
        display: none;
        margin-top: 20px;
        position: relative;
        width: 100%;
    }
    
    .hidden-contents img {
        display: flex;
        max-width: 100%;
    }
    
    .hidden-contents p {
        position: absolute;
        top: -25%;
        left: 28%;
        width: 70%;
    }
    
    @media screen and (max-width:420px) {
        .services-overview {
            display: flex;
            padding: 40px 20px;
            align-items: center;
            width: 100%;
            justify-content: space-between;
            flex-direction: column;
        }
        .video {
            width: 100%;
            display: flex;
            flex-direction: column;
            margin-left: 0px;
        }
        .video img {
            display: flex;
            filter: opacity(.5) drop-shadow(0 0 0 #000);
            justify-content: center;
            align-items: center;
            height: 200px;
            width: 380px;
        }
        .video i {
            position: absolute;
            display: flex;
            left: 50%;
            top: 40%;
            background: var(--primaryColor);
            padding: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            border-radius: 10px;
        }
        .video h3 {
            padding: 10px 30px;
            color: #fff;
            font-weight: 400;
            font-size: 1.7rem;
        }
        .overview-contents {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-left: 0px;
            margin-top: 10px;
        }
        .overview-contents h1 {
            text-transform: uppercase;
            font-size: 2rem;
        }
        .overview-contents p {
            margin-top: 20px;
            font-size: .7rem;
            transform: scaleY(1.2);
            font-weight: 300;
            width: 80%;
        }
        .dropdowns {
            display: flex;
            flex-direction: column;
            margin-top: 20px;
        }
        .toggle-contents {
            display: flex;
            flex-direction: column;
            font-size: 1rem;
        }
        .toggle-div h5 {
            display: flex;
            align-items: center;
            margin-top: -5px;
            padding: 10px;
            font-size: 1rem;
        }
    }
    /* end of services overview styles */
    /* hepl style */
    
    #help {
        display: flex;
        flex-direction: column;
        padding: 100px;
        background: url(../assest/img/help.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        color: #fff;
        width: 100%;
    }
    
    #help h3 {
        font-size: 3rem;
        width: 65%;
    }
    
    #help-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 25%;
        padding: 15px;
        background: var(--primaryColor);
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 20px;
    }
    
    #help-btn a {
        display: flex;
        border: 1px solid #fff;
        color: #fff;
        padding: 20px;
        font-size: 1rem;
        font-weight: 900;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }
    
    #help-btn:hover {
        background: #fff;
    }
    
    #help-btn a:hover {
        background: #fff;
        color: var(--primaryColor);
        border: 1px solid var(--primaryColor);
    }
    
    @media screen and (max-width:420px) {
        #help {
            padding: 30px;
            background: url(../assest/img/help.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            color: #fff;
            width: 100%;
        }
        #help h3 {
            font-size: 2rem;
            width: 100%;
            font-weight: 500;
        }
        #help-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 70%;
            padding: 10px;
            background: var(--primaryColor);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 20px;
        }
        #help-btn a {
            display: flex;
            border: 1px solid #fff;
            color: #fff;
            padding: 10px;
            font-size: 1rem;
            font-weight: 900;
            width: 100%;
        }
        #help-btn:hover {
            background: #fff;
        }
        #help-btn a:hover {
            background: #fff;
            color: var(--primaryColor);
            border: 1px solid var(--primaryColor);
        }
    }
    /* end help style *
    
    /* testimonials styles/ */
    
    #testimonials {
        display: flex;
        width: 100%;
        padding: 50px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    #testimonials h1 {
        text-transform: uppercase;
        font-size: 3rem;
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    
    .t-contents {
        display: grid;
        grid-template-columns: repeat(2, 3fr);
        margin-top: 50px;
        grid-gap: 30px;
    }
    
    .t-container {
        display: flex;
        flex-direction: column;
        border: 1px solid #bbb;
        border-radius: 20px;
        border-bottom: 5px solid var(--primaryColor);
    }
    
    .t-container h3 {
        display: flex;
        justify-content: flex-end;
        background: var(--primaryColor);
        margin-right: 60px;
        margin-left: 220px;
        justify-content: flex-end;
        align-items: flex-end;
        padding: 20px;
    }
    
    .t-container img {
        margin-left: 50px;
        margin-top: -30px;
        max-width: 10%;
    }
    
    .t-container p {
        padding: 30px;
        margin-left: 22px;
        transform: scaleY(1.1);
        font-weight: 300;
        font-size: .9rem;
        margin-top: 30px;
    }
    
    @media screen and (max-width:420px) {
        #testimonials {
            padding: 30px;
        }
        #testimonials h1 {
            font-size: 2rem;
        }
        .t-contents {
            display: grid;
            grid-template-columns: repeat(1, 3fr);
        }
        .t-container {
            display: flex;
            flex-direction: column;
            border: 1px solid #bbb;
            border-radius: 20px;
            border-bottom: 5px solid var(--primaryColor);
        }
        .t-container h3 {
            display: flex;
            justify-content: flex-end;
            background: var(--primaryColor);
            margin-right: 60px;
            margin-left: 100px;
            text-align: center;
            padding: 10px;
            font-size: 1rem;
        }
        .t-container p {
            padding: 20px;
            margin-left: 5px;
            transform: scaleY(1.1);
            font-weight: 300;
            font-size: .8rem;
            margin-top: 30px;
        }
    }
    /* end if testimonials styles */
    /* galery styles */
    
    #gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 30px 0px;
        grid-gap: -10px;
    }
    
    .image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .image img {
        width: 100%;
        display: flex;
        cursor: pointer;
    }
    
    #g1 {
        height: 250px;
        margin-top: -65px;
        width: 350px;
    }
    
    #g2 {
        margin-left: 0px;
        width: 340px;
        margin-top: 35px;
    }
    
    #g3 {
        margin-left: 0px;
        height: 350px;
        margin-top: 35px;
    }
    
    #g4 {
        height: 350px;
        width: 305px;
        margin-top: 38px;
    }
    
    #g5 {
        height: 370px;
        margin-top: -110px;
    }
    
    #g6 {
        margin-top: -10px;
    }
    
    #g7 {
        height: 260px;
        margin-top: -3px;
    }
    
    #g8 {
        height: 260px;
    }
    
    @media screen and (max-width:420px) {
        #gallery {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            padding: 30px 0px;
            grid-gap: -10px;
        }
        .image {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 90%;
            margin: 20px auto;
        }
        .image img {
            width: 100%;
            display: flex;
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }
        #g1 {
            height: 300px;
            margin-top: 0px;
            width: 350px;
        }
        #g2 {
            height: 300px;
            margin-left: 0px;
            width: 350px;
            margin-top: 0px;
        }
        #g3 {
            margin-left: 0px;
            height: 300px;
            width: 350px;
            margin-top: 0px;
        }
        #g4 {
            height: 300px;
            width: 350px;
            margin-top: 0px;
        }
        #g5 {
            height: 300px;
            margin-top: 0px;
            width: 350px;
        }
        #g6 {
            margin-top: 0px;
            width: 350px;
            height: 300px;
        }
        #g7 {
            height: 300px;
            width: 350px;
            margin-top: 0px;
        }
        #g8 {
            height: 300px;
            width: 350px;
        }
    }
    
    @media screen and (max-width:420px) {}
    /* end of gallery styles */
    /* team section styles */
    
    #team {
        display: flex;
        width: 100%;
        padding: 100px 70px;
        flex-direction: column;
    }
    
    #team h1 {
        font-size: 3rem;
        text-transform: capitalize;
        display: flex;
    }
    
    #team p {
        display: flex;
        margin-top: 10px;
        font-size: .9rem;
        font-weight: 300;
    }
    
    .team-members {
        display: grid;
        grid-template-columns: repeat(2, 3fr);
        margin-top: 50px;
        grid-gap: 30px;
    }
    
    .member-container {
        display: flex;
        margin-top: 30px;
        background: rgb(231, 230, 230);
    }
    
    .image {
        display: flex;
    }
    
    .image img {
        display: flex;
    }
    
    .details {
        display: flex;
        flex-direction: column;
    }
    
    .details h3 {
        font-size: 1.2rem;
        margin-left: 70px;
        margin-top: 50px;
    }
    
    .details p {
        display: flex;
        margin-left: 70px;
    }
    
    .icons {
        display: flex;
        margin-top: 30px;
        margin-left: 70px;
        justify-content: space-between;
        width: 40%;
    }
    
    .icons i:hover {
        color: var(--primaryColor);
    }
    
    @media screen and (max-width:420px) {
        #team {
            padding: 20px;
        }
        #team h1 {
            font-size: 2rem;
            text-transform: capitalize;
            display: flex;
        }
        #team p {
            font-size: .9rem;
            width: 90%;
        }
        .team-members {
            display: grid;
            grid-template-columns: repeat(1, 3fr);
            margin-top: 20px;
            grid-gap: 20px;
        }
        .member-container {
            display: flex;
            flex-direction: column;
            margin-top: 10px;
            width: 100%;
        }
        .image {
            display: flex;
        }
        .image img {
            display: flex;
            max-width: 100%;
            min-height: 100%;
        }
        .details {
            display: flex;
            flex-direction: column;
            padding: 20px;
        }
        .details h3 {
            font-size: 1.2rem;
            margin-left: 0px;
            margin-top: 50px;
        }
        .details p {
            display: flex;
            margin-left: 0px;
        }
        .icons {
            display: flex;
            margin-top: 30px;
            margin-left: 0px;
            justify-content: space-between;
            width: 30%;
        }
        .icons i:hover {
            color: var(--primaryColor);
        }
    }
    /* end of team scetion styles */
    /* partners section */
    
    #partner {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: var(--primaryColor);
        padding: 100px 30px;
    }
    
    #partner h1 {
        margin: auto;
        font-size: 3rem;
        color: #fff;
    }
    
    .customer-logos {
        margin-top: 50px;
    }
    /* Slider */
    
    .slick-slide {
        margin: 0px 20px;
    }
    
    .slick-slide img {
        width: 100%;
    }
    
    .slick-slider {
        position: relative;
        display: block;
        box-sizing: border-box;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }
    
    .slick-list {
        position: relative;
        display: block;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    .slick-list:focus {
        outline: none;
    }
    
    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }
    
    .slick-slider .slick-track,
    .slick-slider .slick-list {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .slick-track {
        position: relative;
        top: 0;
        left: 0;
        display: block;
    }
    
    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }
    
    .slick-track:after {
        clear: both;
    }
    
    .slick-loading .slick-track {
        visibility: hidden;
    }
    
    .slick-slide {
        display: none;
        float: left;
        height: 100%;
        min-height: 1px;
    }
    
    [dir='rtl'] .slick-slide {
        float: right;
    }
    
    .slick-slide img {
        display: block;
    }
    
    .slick-slide.slick-loading img {
        display: none;
    }
    
    .slick-slide.dragging img {
        pointer-events: none;
    }
    
    .slick-initialized .slick-slide {
        display: block;
    }
    
    .slick-loading .slick-slide {
        visibility: hidden;
    }
    
    .slick-vertical .slick-slide {
        display: block;
        height: auto;
        border: 1px solid transparent;
    }
    
    .slick-arrow.slick-hidden {
        display: none;
    }
    /* end of partner section */
    /* contact us section */
    
    #contact-us {
        display: flex;
        padding: 100px 70px;
        width: 100%;
    }
    
    #form {
        display: flex;
        flex-direction: column;
        width: 50%;
    }
    
    .form-heading {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .form-heading h1 {
        font-size: 3rem;
    }
    
    .form-heading p {
        margin: 20px 0px;
        font-size: .9rem;
        font-weight: 300;
    }
    
    #form input {
        padding: 20px;
        border: none;
        background: rgb(228, 225, 225);
        font-size: 1rem;
        outline: none;
        opacity: .6;
        margin-top: 5px;
    }
    
    #message {
        padding: 20px;
        height: 100px;
        background: rgb(228, 225, 225);
        border: none;
        outline: none;
        font-size: 1rem;
        opacity: .6;
        margin-top: 5px;
    }
    
    .form-btn {
        margin-top: 10px;
        width: 60%;
        padding: 20px;
        outline: none;
        border: none;
        color: #000;
        text-transform: uppercase;
        font-size: 1.2rem;
        transform: scaleX(.5);
        margin-left: -90px;
        background: var(--primaryColor);
        cursor: pointer;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
    }
    
    .form-btn:hover {
        background: var(--hoverColor);
    }
    
    #map {
        width: 50%;
        height: 450px;
        margin-left: 50px;
    }
    
    @media screen and (max-width:420px) {
        #contact-us {
            display: flex;
            padding: 30px;
            width: 100%;
            flex-direction: column;
        }
        #form {
            width: 100%;
        }
        .form-heading {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        .form-heading h1 {
            font-size: 2rem;
        }
        .form-heading p {
            font-size: .8rem;
        }
        .form-btn {
            margin-top: 10px;
            width: 70%;
            padding: 15px;
            margin-left: -55px;
        }
        .form-btn:hover {
            background: var(--hoverColor);
        }
        #map {
            width: 100%;
            height: 450px;
            margin-left: 0px;
            margin-top: 20px;
        }
    }
    /* end of contact us section */
    /* end of footer */
    
    #footer {
        display: flex;
        width: 100%;
        padding: 100px;
        justify-content: space-between;
        align-items: center;
        background: #000;
        color: #fff;
    }
    
    .footer-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
    }
    
    .footer-text p {
        font-size: .9rem;
        font-weight: 300;
    }
    
    .footer-logo {
        display: flex;
        margin-left: -50px;
    }
    
    .footer-logo a {
        color: #fff;
        text-decoration: none;
    }
    
    .footer-logo a p {
        color: var(--primaryColor);
        font-size: .9rem;
    }
    
    .footer-icons {
        display: flex;
        width: 30%;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-icons i {
        background: #fff;
        color: var(--primaryColor);
        padding: 20px;
        border-radius: 59%;
        border: none;
        cursor: pointer;
    }
    
    .footer-icons i:hover {
        color: #000;
    }
    
    @media screen and (max-width:420px) {
        #footer {
            display: flex;
            width: 100%;
            padding: 40px;
            flex-direction: column;
        }
        .footer-text {
            display: flex;
            flex-direction: column;
        }
        .footer-text p {
            font-size: .8rem;
            font-weight: 300;
        }
        .footer-logo {
            display: flex;
            margin-left: -150px;
            margin-top: 30px;
        }
        .footer-icons {
            display: flex;
            width: 50%;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
        }
        .footer-icons i {
            padding: 10px;
        }
    }
    /* end of footer styles */
    /* chevron styles */
    
    #myBtn {
        display: none;
        align-items: center;
        text-align: center;
        position: fixed;
        bottom: 40px;
        right: 30px;
        background-color: rgb(241, 173, 82);
        outline: none;
        cursor: pointer;
        border: none;
        border-radius: 50%;
        z-index: 99;
        font-size: 1.2rem;
        color: #fff;
        padding: 20px;
        transition: ease .5s;
        width: 5%;
    }
    
    #myBtn:hover {
        background-color: rgb(95, 93, 93);
    }
    
    @media screen and (max-width:991px) {
        #myBtn {
            padding: 15px;
            transition: ease .5s;
            width: 12%;
        }
    }
    /* end of chevron styles */