* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-clr: #0097a4;
}

.banner_slide_content {
    position: relative;
}

.banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.new-heading h1 {
    margin: 0 0 2rem 0 !important;
}

.maxw1000p {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gy {
    gap: 1.75rem !important;
}

.technology-image {
    object-fit: contain !important;
}

.architecture-section,
.development-section,
.stack {
    padding: 3rem 0;
}

.architecture-section p,
.development-section p {
    margin: 0;
}

.development-section {
    background-color: #f2f2f2;
}

.service__card {
    position: relative;
    padding: 15px;
    overflow: hidden;
    transition: 0.4s;
}

.architecture-section .service__card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service__heading {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 5px !important;
}

.service__desc {
    text-align: justify;
}

.architecture-section .service__card::before,
.architecture-section .service__card::after,
.architecture-section .service__heading::before,
.architecture-section .service__heading::after {
    content: "";
    position: absolute;
    background: var(--primary-clr);
    transition: 0.4s;
}

.service__card::after,
.service__card::before {
    top: 0;
    left: 0;
}

.service__heading::before,
.service__heading::after {
    right: 0;
    bottom: 0;
}

.service__card::before {
    width: 3px;
    height: 50px;
}

.service__card::after {
    width: 50px;
    height: 3px;
}

.service__heading::before {
    width: 3px;
    height: 50px;
}

.service__heading::after {
    width: 50px;
    height: 3px;
}

.architecture-section .service__card:hover::before,
.architecture-section .service__card:hover .service__heading::before {
    height: 100px;
}

.architecture-section .service__card:hover::after,
.architecture-section .service__card:hover .service__heading::after {
    width: 100px;
}

svg {
    width: 25px;
    height: 25px;
}

.stack-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 2rem;
}

.stack-row .stack-columns {
    position: relative;
    padding: 15px;
    flex: 1 1 25%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
}

.stack-columns .service__heading {
    letter-spacing: unset;
}

.mobile-responsive {
    display: none !important;
}

.technology-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.custom-btn {
    font-weight: 500;
    color: #000;
    background-color: transparent;
    border: 2px solid var(--primary-clr);
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    outline: none;
    padding: 10px 20px;
}

.banner-btn {
    color: #fff;
    font-size: 17px;
}

.custom-btn:hover {
    background-color: var(--primary-clr);
    color: #fff;
}

@media(min-width: 320px) and (max-width: 576px) {
    .new-heading {
        width: 100%;
    }

    .new-heading h1 {
        font-size: 1.4rem;
    }

    .service__heading {
        font-size: 15px;
        text-align: center;
    }

    .custom-btn {
        text-align: center;
    }

    .stack-row .stack-columns {
        flex: 1 1 100%;
    }
}

@media(min-width: 576px) and (max-width: 768px) {
    .stack-row .stack-columns {
        flex: 1 1 100%;
    }
}

@media (min-width: 768px) {
    .mobile-responsive {
        margin: 2rem 0;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
}