@import url('https://fonts.googleapis.com/css2?family=Akatab:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&family=Geist:wght@100..900&family=Manrope:wght@200..800&display=swap');

body {
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1,
h2 {
    font-family: "Familjen Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

header {
    padding: 21px 41px;
}
.hamburger-btn {
    z-index: 1001;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    float: right;
}

.hamburger-btn:hover {
    background: transparent;
    transform: scale(1.05);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: black;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    top: 0;
    right: -30%;
    width: 30%;
    height: 100%;
    background: #ffffff;
    border-left: 1px solid #ffffff;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.close-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 68px;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    transition: color 0.3s ease;
    float: right;
}

.close-btn:hover {
    color: black;
}

.drawer.active {
    right: 0;
}

.drawer-nav {
    list-style: none;
    margin-bottom: 30px;
}

.drawer-nav li {
    margin-bottom: 15px;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #888;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 18px;
    font-family: "Familjen Grotesk", sans-serif;
}

.drawer-nav a:hover {
    background: none;
    color: #888;
}

.drawer-section {
    margin-top: 25%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .drawer {
        width: 90%;
        right: -90%;
    }

    .hamburger-btn {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }

    .sidebar {
        display: none;
    }
}


section {
    padding-top: 96px;
    padding-bottom: 96px;
}

.banner {
    padding: 0;
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen height, adjust as needed */
}

.banner img {
    width: 100%;
    height: 100%;
    /* Ensure the image fills the container */
    object-fit: cover;
    /* Keeps the aspect ratio intact and covers the container */
}

.banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 15px;
    z-index: 1;
}

.banner-heading {
    font-size: 72px;
    letter-spacing: -4px;
    color: #F0F4F7;
}

.banner-heading span {
    color: #EF2B26;
}

.banner-content ul li {
    color: #F0F4F7;
    font-size: 24px;
    line-height: 40px;

}

/* .btn-audit {
    color: #FFFFFF;
    font-family: "Akatab", sans-serif;
    font-weight: 500;
    background: #EF2B26;
    width: 196px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 640px;
    text-decoration: none;
    padding: 10.7px 15px;
}

.btn-audit .icon {
    width: 22px;
    height: 22px;
} */

.btn-audit {
    color: #FFFFFF;
    font-family: "Akatab", sans-serif;
    font-weight: 500;
    background: #EF2B26;
    width: 196px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 640px;
    text-decoration: none;
    padding: 10.7px 15px;
    transition: background 0.3s, color 0.3s;
    border: none;
    /* Smooth transition for color changes */
}

.btn-audit .icon {
    width: 22px;
    height: 22px;
    transition: border 0.3s;
    /* Smooth transition for border changes */
}

.btn-audit.client-btn:hover {
    color: #2D1C21 !important;
    /* Change text color to red on hover */
    border: 1px solid #2D1C21 !important;
    /* Add red border on hover */
}

.btn-audit.client-btn:hover .icon {
    border: 2px solid #2D1C21 !important;
    background-color: #2D1C21 !important;
    /* Red border on icon */
}

.btn-audit:hover {
    background: #FFFFFF;
    color: #EF2B26;
    /* Change text color to red on hover */
    border: 1px solid #EF2B26;
    /* Add red border on hover */
}

.btn-audit:hover .icon {
    border: 2px solid #EF2B26;
    background-color: #EF2B26;
    /* Red border on icon */
    border-radius: 50%;
    /* Rounded border for the icon */
}


.about {
    background-color: #F5F5F5;
}

.about .sub-heading {
    font-size: 18px;
    line-height: 23.4px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 34px;
}

.about-btn {
    float: right;
}

.about-heading {
    font-size: 68px;
    line-height: 70px;
    letter-spacing: -2px;
    color: #2D1C21;
    font-weight: 500;
    margin-bottom: 26px;
}

.about-heading span {
    color: #EF2B26;
}

.about-content {
    font-size: 18px;
    line-height: 27px;

    color: #4D4D4D;
    font-weight: 400;
}

.pt-97 {
    padding-top: 97px;
}

.pb-37 {
    padding-bottom: 37px;
}

.reduction {
    /* background-color: #2D1C21; */
    height: 100%;
}

.reduction .about-heading {
    color: #FFFFFF;

}

.ring-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    padding: 35px 34px;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 20px;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.device-item:nth-child(1) {
    animation-delay: 0.1s;
}

.device-item:nth-child(2) {
    animation-delay: 0.2s;
}

.device-item:nth-child(3) {
    animation-delay: 0.3s;
}

.device-item:nth-child(4) {
    animation-delay: 0.4s;
}

.device-item:nth-child(5) {
    animation-delay: 0.5s;
}

.device-item:nth-child(6) {
    animation-delay: 0.6s;
}

.progress-ring {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 2;
}

.progress-ring-fill {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.percentage-text {
    font-size: 35px;
    font-weight: 700;
    color: #FF2727;
    margin-bottom: 4px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.device-name {
    color: #6c757d;
    font-size: 18px;
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: auto;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .rings-wrapper {
        width: 300px !important;
        height: 300px !important;
    }

    .ring-3 {
        width: 300px !important;
        height: 300px !important;
    }

    .ring-2 {
        width: 225px !important;
        height: 225px !important;
    }

    .center-text {
        font-size: 22px !important;
    }

    .container {
        gap: 30px;
    }

    .progress-ring {
        width: 160px;
        height: 160px;
    }

    .percentage-text {
        font-size: 16px;
    }

    .device-name {
        font-size: 10px;
    }

    .circle-content {
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    /* .ring-container {
        flex-direction: column;
        gap: 25px;
    } */

    .ring-3 {
        width: 300px !important;
        height: 300px !important;
    }

    .ring-2 {
        width: 225px !important;
        height: 225px !important;
    }
}

.process {
    background-color: #FFFFFF;
}

.process-heading {
    font-size: 68px;
    line-height: 70px;
    letter-spacing: -2px;
    color: #2D1C21;
    font-weight: 500;
    margin-bottom: 49px;
    margin-top: 72px;
}

.process-heading span {
    color: #EF2B26;
}

/* Wrapper to constrain width */
.rings-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
    height: 600px;
}

/* Rings container centers the rings */
.rings-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 49px;
}

/* Center label */
.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 49.93px;
    line-height: 65.5px;
    font-family: "Geist", sans-serif;
    letter-spacing: -3.99px;
    font-weight: 500;
    color: #e74c3c;
}


.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px dotted #e74c3c;
    border-radius: 50%;
    opacity: 0.8;
    transition: opacity 0.5s ease;
    transform: translate(-50%, -50%) rotate(0deg);
    /* Initially no rotation */
}

/* Individual ring sizes & speeds */
.ring-2 {
    width: 550px;
    height: 550px;
    animation-name: rotateMedium;
    animation-duration: 20s;
}

.ring-3 {
    width: 700px;
    height: 700px;
    animation-name: rotateSlow;
    animation-duration: 30s;
}

/* Keyframes */
@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Add animation when section is in view */
.animate-ring {
    animation: rotateRing 20s linear infinite;
    /* Example animation */
}

/* Ring markers (red diamonds) */
.ring-marker {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #e74c3c;
    transform: rotate(45deg);
    /* Offset the marker to be correctly aligned */
    transform-origin: center;
}

/* Adjust marker positions for ring-2 */
.ring-2 .m1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    /* Place at the top */
}

.ring-2 .m2 {
    top: 30%;
    left: 100%;
    transform: translateY(-50%) rotate(90deg);
    /* Place at the right */
}

.ring-2 .m3 {
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    /* Place at the bottom */
}

/* Adjust marker positions for ring-3 */
/* Adjust marker positions for ring-3 */
.ring-3 .m3 {
    top: 50%;
    left: 0%;
    transform: translateX(-50%) rotate(0deg);
    /* Position at the top of the ring */
}

.ring-3 .m2 {
    top: 50%;
    right: 0%;
    transform: translateY(-50%) rotate(90deg);
    /* Position at the right side of the ring */
}





.requirements {
    background-color: #2D1C21;
}

.requirements .sub-heading {
    color: #FFFFFF;
}

.requirements-heading {
    color: #FFFFFF;
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    line-height: 55.2px;
    letter-spacing: -3.36px;
    font-weight: 500;
    margin-top: 60px;
    margin-bottom: 14px;
}

.requirements-heading span {
    color: #EF2B26;
}

.requirements-content {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    /* padding-bottom: 120px; */
    padding-bottom: 20px;
    width: 50%;
    margin: auto;
}

/* Desktop (default) layout */
.timeline {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.timeline-item {
    position: relative;
    width: 33%;
    text-align: center;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    /* Ensure the dot is above the line */
    transition: background-color 2s ease-in-out;
}

.timeline-content h3 {
    font-size: 18px;
    margin-top: 30px;
    font-family: 'Geist', sans-serif;
    font-weight: bold;
    color: #fff;
    line-height: 27px;
}

.timeline-content p {
    font-size: 18px;
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    line-height: 27px;
}

/* Timeline Connecting Line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0px;
    /* Adjust for positioning under the dots */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    /* Initial white line */
    z-index: 1;
    transition: background-color 2s ease-in-out;
    /* Smooth color transition */
}

/* When the section is in view, change the line color */
.timeline-container.in-view::before {
    background-color: #EF2B26;
    /* Red color */
}

.timeline-container.in-view .timeline-dot {
    background-color: #EF2B26;
    /* Red color for the dots */
}

/* Mobile (Responsive) Layout */
/* Mobile (Responsive) Layout */
@media screen and (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        /* Stack items vertically */
        align-items: flex-start;
        /* Align items to the left */
        width: 100%;
        /* Full width */
        margin-top: 20px;
        position: relative;
        /* Make the container relative to position the line */
    }

    .timeline-item {
        position: relative;
        width: 100%;
        /* Full width of container */
        text-align: left;
        /* Align content to the left */
        margin-bottom: 40px;
        /* Space between timeline items */
        padding-left: 30px;
        /* Give some left padding to space out content from the line */
    }

    .timeline-dot {
        position: absolute;
        /* Position dot absolutely */
        top: 0;
        /* Align to the top of each timeline item */
        left: 0px;
        /* Position dot on the left */
        transform: translateX(0);
        /* No centering, keep it left-aligned */
        margin-bottom: 15px;
        /* Space between dot and content */
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: white;
        z-index: 2;
        /* Ensure the dot is above the line */
        transition: background-color 2s ease-in-out;
    }

    .timeline-content h3 {
        font-size: 16px;
        /* Smaller font for mobile */
        margin-top: 0px;
        color: #fff;
    }

    .timeline-content p {
        font-size: 14px;
        /* Smaller font for mobile */
        color: #ffffff;
    }

    /* Vertical Connecting Line */
    .timeline-container::before {
        content: '';
        position: absolute;
        left: 10px;
        /* Position the line on the left */
        top: -30px;
        width: 2px;
        height: 100%;
        /* Full height of the timeline */
        background-color: #fff;
        z-index: 1;
        transition: background-color 2s ease-in-out;
    }

    .timeline-container.in-view::before {
        background-color: #EF2B26;
        /* Red color */
    }

    .timeline-container.in-view .timeline-dot {
        background-color: #EF2B26;
        /* Red color for the dots */
    }
}




.why {
    background-color: #FCFCFC;
}

.why .process-heading {
    margin-bottom: 80.5px;
}

.testimonials .process-heading {
    margin-bottom: 72.5px;
}

.banner.audit {
    height: 100%;
    background-color: black;

    overflow: hidden;
    cursor: none;
}

.mouse-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: transparent;
    /* Removed background */
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    will-change: transform;
    z-index: 30;
    /* Behind other content */
    opacity: 0;
}

.mouse-circle-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: transparent;
    /* Removed background */
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    will-change: transform;
    z-index: 30;
    /* Behind other content */
    opacity: 0;
}

/* Custom cursor dot */
.cursor-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #ffffff;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 20;
    /* Above everything */
    opacity: 0;
}

.banner.audit .banner-heading {
    margin-bottom: 43px;
}

.audit .btn-audit {
    margin: auto;
}

.founder {
    background-color: #000000;
}

.founder .about-heading {
    text-transform: capitalize;
    font-size: 48px;
    line-height: 55.2px;
}

.founder .sub-heading,
.founder .about-content,
.founder .about-heading {
    color: #FFFFFF;
}

.case {
    background-color: #FFFFFF;
}

a.btn-audit.view-btn {
    margin-top: 45px;
    width: 128px;
    padding: 10px;
}

.bg-grey {
    background-color: #E1E1E1;
    padding: 18px;
    margin: 23px 11px;
    border-radius: 4px;
    width: 100%;
}

.bg-grey>.col-md-6.col-12 {
    padding: 0;
}

.bg-grey img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.client {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    color: #1E1E1F;
    font-weight: 400;
    text-align: left;
    margin-left: 19px;
}

.client-text {
    font-size: 14px;
    color: #808080;
    font-weight: 400;
    text-align: left;
    margin-left: 19px;
}

.client-btn {
    background-color: #2D1C21;
    margin-left: 19px;
}

.faq {
    background-color: #F7F2F4;
}

/* Custom Styles for Accordion */
.accordion .card {
    border: none;
    /* Remove card border */
    background-color: transparent;
    /* Transparent background */
    /* margin-bottom: 10px; Space between items */
}

.accordion .card-header {
    background-color: transparent;
    padding: 15px 25px;
    /* Adjust header padding */
    border-radius: 5px;
    /* Rounded corners */
    border-top: 1px solid #ddd;
    /* Light border for header */
    border-bottom: 1px solid #ddd;
    /* Light border for header */
}

.accordion .card-header button {
    width: 100%;
    text-align: left;
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    padding: 10px 15px;
    font-size: 18px;
    color: #000000;
    background-color: transparent;
    border: none;
    text-decoration: none;
    line-height: 27px;
    letter-spacing: -0.9px;
}

.accordion .card-header button:focus {
    outline: none;
}

.accordion .card-header button.collapsed {
    color: #000000;
}

.accordion .card-body {
    padding: 15px 65px;
    color: #3C3C43;
    font-size: 18px;
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    background-color: transparent;
    text-align: left;
    line-height: 27px;
    letter-spacing: -0.9px;
}

.accordion .card-body ul {
    list-style: none;
    padding: 0;
}

.accordion .card-body ul li {
    font-size: 18px;
    color: #3C3C43;
    margin-bottom: 10px;
}

.accordion .card-header button:after {
    content: " -";
    /* Add '+' symbol for collapsed state */
    float: right;
    /* Float the symbol to the right */
}

.accordion .card-header button.collapsed:after {
    content: " +";
    /* Add '-' symbol when expanded */
}

.btn-form {
    width: 297px;
}

.form-container {
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
    /* Space between form groups */
}

.form-group label {
    font-weight: bold;
    font-size: 14px;
    color: #bfbfbf;
    /* Lighter gray color for labels */
}

.founder .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #F2F2F2;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
}

.founder .form-control:focus {
    border-color: #007bff;
    /* Blue border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    /* Focus effect */
}

.founder .form-control::placeholder {
    color: #aaa;
    /* Placeholder color */
}

.founder .form-group select {
    background-color: #2d1c21;
    border: none;
    border-bottom: 1px solid #F2F2F2;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
}

.founder .form-group select option:checked {
    background-color: #2d1c21;
    /* The color of the selected option */
    color: white;
    /* Text color of the selected option */
}

.founder .form-group select:focus {
    border-color: none;
}

.founder textarea.form-control, .modal-body textarea.form-control {
    height: 40px;
    overflow: hidden;
    /* Adjust height for message textarea */
}
.wpcf7-response-output{
    color:green;
}

.mt-103 {
    margin-top: 103px;
}

footer h5 {
    font-size: 16px;
    color: #0A142F;
    font-weight: bold;
    font-family: "DM Sans", sans-serif;
    line-height: 28px;
}

footer ul,
footer p, footer a{
    font-family: "DM Sans", sans-serif;
    list-style: none;
    padding: 0;
    color: #0A142F;
    font-weight: 500;
    font-size: 16px;
    opacity: 50%;
}

footer ul li a , footer a{
    color: #0A142F;
    text-decoration: none;
}

hr {
    background-color: #0A142F;
    opacity: 12%;
    margin-top: 31px;
    margin-bottom: 31px;
}

.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons img{
    width: 25px;
    height: 25px;
}

.email-svg-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}


@media (max-width: 991px) {
    .about .sub-heading {
        text-align: center;
    }

    section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .banner.founder {
        height: 1000px;
    }

    .banner-container {
        position: absolute;
        top: 10%;
        transform: translate(-50%, 0%);
        text-align: center;
    }

    .banner-heading {
        font-size: 35px;
        line-height: 46px;
        letter-spacing: -1px;
    }

    .banner-content ul {
        margin-top: 25px;
        padding: 0;
    }

    .banner-content ul li {
        font-size: 18px;
        line-height: 28px;
        list-style: none;
    }
    .accordion .card-header{
        padding: 5px;
    }
    .reduction .about-heading {
        text-align: left;
    }
    .reduction .about-heading span{
        color: white;
    }

    .first .banner-container .btn-audit {
        margin: 90% auto 0;
    }

    .btn-audit {
        width: 60%;
        height: auto;
        padding: 10.7px 20px;
        margin: auto;
    }

    .about-heading {
        font-size: 28px;
        line-height: 32px;
        margin-top: 20px;
        text-align: center;
        letter-spacing: -1px;
    }

    .about img {
        margin-top: 10px;
    }

    .about-content {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .process-heading {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
        margin-top: 20px;
        letter-spacing: -1px;
    }

    .requirements-heading {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
        letter-spacing: -1px;
    }

    .requirements-content {
        width: 100%;
        text-align: center;
    }

    .founder .about-heading {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
        letter-spacing: -1px;
    }

    .banner.audit .banner-heading {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: 0px;
        text-align: center;
        letter-spacing: -1px;
    }
    #contact .banner-heading, .center-text{
        letter-spacing: -1px;
    }

    .banner.audit {
        height: 30vh;
    }

    .accordion .card-body {
        padding: 15px 15px 15px 25px;
    }

    .client {
        margin-top: 41px;
    }

    .social-icons {
        justify-content: center;
    }

    .pt-97 {
        padding-top: 27px;
    }

    video#myVideo {
        height: 350px;
        object-fit: cover;
    }

    .client-btn {
        margin: 47px 0 0 19px;
    }

    a.btn-audit.view-btn {
        width: 60%;
        padding: 10px 15px;
    }

    .mt-103 {
        margin-top: 33px;
    }

    #contact .sub-heading,
    #contact .banner-heading {
        text-align: left;
    }

    .form-container {
        padding: 40px 0 0;
    }

    .btn-form {
        width: 100% !important;
    }

    footer ul,
    footer p {
        font-size: 14px;
    }

    .why .process-heading {
        margin-bottom: 10.5px;
    }

    .device-item {
        width: 50%;
    }

    .about-btn {
        float: none;
        margin-top: 10%;
    }
    .reduction .about-btn{
        /* margin-top: 0%; */
        margin: 0;
    }
    .reduction-overlay{
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #2d1c216b;
        /* padding-bottom: 40px; */
    }
    .pb-37{
        width: 70%;
        text-align: center;
        margin: auto;
    }
    .accordion .card-header button {
        padding: 10px 15px 10px 0;
    }
}