body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    background-color: black;

}

.maini {
    font-family: 'Nunito', sans-serif;
}

html {
    font-size: 10px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.nav-items {
    color: white;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    font-size: 2rem;
}

.navbar {
    margin: 0 0 10rem 0;
    width: 95%;
    position: relative;
    padding: 2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin-left: 5rem;
}

.servs-dd-container,
.dd-name-cont {
    display: flex;
}

.dd-name-cont {
    align-items: center;
}

.right-dd {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
}

.left-dd {
    display: flex;
    justify-content: center;
}



.outer-container-dd {
    display: flex;
    width: 80%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.left-dd {
    flex-direction: column;
    min-width: 40%;
    gap: 3rem;
}

.dd-img {
    height: 20rem;
    width: 90%;
}

.servs-dd-container {
    flex-direction: column;
}

.main-h,
.dd-name,
.dd-descr {
    font-size: 2rem;
}

.main-h,
.dd-descr,
.dd-name {
    color: white;
}

.blue-line,
.dd-discm {
    color: #02fac6;
}

.dd-icon {
    height: 6rem;
    width: 6rem;
}

.servs-dd-container {
    gap: 3rem;
    height: 100%;
}

.dd-name-cont {
    gap: 1.2rem;
}

.top-heading-cont {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dd-descr {
    width: 90%;
}

.main-h {
    font-weight: 700;
    font-size: 3rem;
}

.dd-discm {
    font-size: 1.3rem;
}

.dd-name {
    font-size: 1.8rem;
    font-weight: 600;
    width: max-content;
}

.icons-right {
    font-size: 2rem;
    color: #02fac6;
}

.dd-everything {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.dd-everything {
    position: relative;
}

.dd-underlines {
    height: .2rem;
    width: 0;
    background-color: #02fac6;
    border-radius: 2rem;
    opacity: 0;
    transform-origin: left;
    transition: width 0.3s, opacity 0.3s;
}

.dd-everything:hover .dd-underlines {
    width: 90%;
    opacity: 1;
}

.dd-everything:hover {
    cursor: pointer;
}

.new-cont {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.new-cont:hover .dd-underlines {
    width: 90%;
    opacity: 1;
}

.main-menu {
    visibility: hidden;
    display: none;
    opacity: 0;
    height: 45rem;
    background-color: black;
    background-image: url(images/basssssss.png);
    background-size: cover;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    width: 100vw;
    padding: 4rem 0;
    position: absolute;
    left: 0;
    top: 13rem;
}

.main-menu2 {
    visibility: hidden;
    display: none;
    opacity: 0;
    height: 80vh;
    background-color: black;
    background-image: url(images/basssssss.png);
    background-size: cover;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    width: 100vw;
    position: absolute;
    left: 0;
    top: 8rem;
}

.main-menu.show {
    animation: slideIn 0.5s forwards ease-in-out;
}

.main-menu.hide {
    animation: slideOut 0.5s forwards ease-in-out;
}

@keyframes slideIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media screen and (max-width:1050px) {
    .dd-name {
        width: auto;
    }
}


























a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #02fac6;
}

.nav-container-logo {
    background-image: url(images/NAV-LOGO-GIF.gif);
    background-size: cover;
    height: 10rem;
    width: 10rem;
}



.nav-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(0);
    transition: transform .5s ease;
}

.nav-logo-container:hover {
    transform: translateX(50px);
}

.nav-logo-container:hover .nav-logo-t {
    opacity: 1;
}

.nav-logo-t {
    opacity: 0;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    position: absolute;
    left: -8.9rem;
    transition: all .5s ease;
}

.Republic {
    left: 3rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* main */
.main {
    background-color: black;
}

.main-section {
    width: 100%;
    height: 74rem;
    display: flex;
    justify-content: space-between;
}

.main-bg {
    height: 100%;
    width: 50%;
}

.gradient-line {
    background-image: url(images/blue\ gradient.png);
    background-size: cover;
}

.blue-line {
    height: .4rem;
    width: 18rem;
    background-color: #02fac6;
    border-radius: 2rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 1s forwards;
}

@keyframes lineGrow {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.first-heading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 8rem;
    font-weight: 700;
    color: white;
    opacity: 0;
    transform: translateY(-100px);
    animation: slideFromTop 1s forwards;
}


.third-heading {
    font-size: 3rem;
    color: white;
    opacity: 0;
    transform: translateX(50px);
    animation: slideFromRight 1s forwards;
    margin: 2rem 0 0 0;
}


.main-container {
    margin: 5rem 0 0 8rem;
    padding-top: 8rem;
    width: 50%;
}

.cyan {
    background-image: url(images/blue\ gradient.png);
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gray {
    color: #6b707c;
}

.hover-blue:hover {
    color: #02fac6;
    cursor: pointer;
}

.blue-btn {
    position: relative;
    color: black;
    height: 4rem;
    width: 14rem;
    border: 1px solid;
    border-radius: 1.9rem;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    transition: all 0.35s;
    box-sizing: border-box;
    box-shadow: 0 7px 4px 0 rgba(0, 0, 0, 0.10);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
    z-index: 9;
    opacity: 0;
    transform: translateY(50px);
    animation: slideFromBottom 1s forwards;
    padding: 1rem 0;
}

.free-consultation {
    width: 23rem;
    height: 4rem;
}

@keyframes slideFromTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blue-btn::before,
.blue-btn::after {
    top: 0;
    position: absolute;
    height: 100%;
    content: '';
    transition: all 0.3s;
}

.blue-btn::before {
    width: 100%;
    left: 0;
    border-radius: 1.5rem;
    background-image: url(images/blue\ gradient.png);
    background-size: cover;
    z-index: -1;
}

.blue-btn::after {
    width: 0;
    left: 50%;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    transform: translate(-50%, 0);
    z-index: 1;
}

.blue-btn:hover {
    background-color: black;
    color: #02fac6;
    border-color: transparent;
}

.blue-btn:hover::before {
    transform: scale(0, 1);
}

.blue-btn:hover::after {
    width: 100%;
    border-color: #02fac6;
    transition-delay: 0.2s;
}

.main-bg-box {
    background-image: url(images/boxiii.png);
    background-size: cover;
}

.ham-burger {
    display: none;
}

.hamburger-container {
    display: inline-block;
    width: 100vw;
}

.hamburger-container {
    display: none;
}

.line {
    width: 36px;
    height: 4px;
    background-color: white;
    margin: 5px 3px;
    border-radius: 2px
}

/* Our values */
.our-values {
    background-color: #e1e4eb;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    padding: 4rem 0;
}

.services-h {
    display: flex;
    flex-direction: column;
}

.services-text {
    color: black;
    font-size: 6rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.blue-underline {
    background-color: #02fac6;
    height: .6rem;
    width: 16rem;
    margin: auto;
    border-radius: 2rem;
}

.mot-ic-sec-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 4rem 5%;
}

.motivation-icons-section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    width: 60%;
}

.motivation-icons-section2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10rem;
    width: 44%;
}

.mot-ic-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15%;
    gap: 1rem;
}

.mot-name {
    font-size: 3rem;
    color: black;
    font-weight: 700;
}

.mot-icon {
    height: 14rem;
    width: 13rem;
}

.mtic1 {
    background-image: url(images/pages-imgs/mtc1.png);
    background-size: cover;
}

.mtic2 {
    background-image: url(images/pages-imgs/mtc2.png);
    background-size: cover;
}

.mtic3 {
    background-image: url(images/pages-imgs/mtc3.png);
    background-size: cover;
}

.mtic4 {
    background-image: url(images/pages-imgs/mtc4.png);
    background-size: cover;
}

.mtic5 {
    background-image: url(images/pages-imgs/mtc5.png);
    background-size: cover;
}

.mtic6 {
    background-image: url(images/pages-imgs/mtc6.png);
    background-size: cover;
}

.mtic7 {
    background-image: url(images/pages-imgs/mtc7.png);
    background-size: cover;
}

.values-boxes-wrapper {
    width: 64%;
    margin: 0 17%;
    display: flex;
    gap: 13rem;
    justify-content: center;
    margin-bottom: 5rem;
    margin-top: 2rem;
    align-items: center;
    gap: 3rem;
}

.valueb {
    background-color: black;
    display: flex;
    flex-direction: column;
    border-radius: 2rem;
    gap: .7rem;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 2rem;
    height: 28rem;
}

.gmail {
    color: white;
    font-size: 2.5rem;
}

.valueb-t {
    font-size: 3rem;
    color: #02fac6;
    font-weight: 700;
}

.valueb-d {
    font-size: 2rem;
    color: white;
    width: 90%;
}

.logo-section {
    display: flex;
    background-image: url(images/services\ background.png);
    background-size: cover;
    gap: 4rem;
    width: 100%;
}

.logo-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 45%;
    margin: 5rem 8rem;
}

.logo-h {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logo-line {
    height: .4rem;
    width: 10rem;
    background-color: #02fac6;
    border-radius: 2rem;
}

.logo-h-t {
    font-size: 2.5rem;
    color: #02fac6;
    font-weight: 700;
}

.logo-t {
    font-size: 1.8rem;
    color: white;
    width: 100%;
}

.logo-right {
    display: flex;
    flex-direction: column;
    ;
    justify-content: center;
    align-items: center;
}

.logo-r-upper {
    display: flex;
    ;
    align-items: center;
}

.logo-inspo {
    height: 27rem;
    width: 29rem;
    background-image: url(images/pages-imgs/inspo.png);
    background-size: cover;
    margin-left: 7rem;
}

.cicada {
    height: 21rem;
    width: 20rem;
    background-image: url(images/pages-imgs/cicada.png);
    background-size: cover;
}

.logo-pyramid {
    height: 22rem;
    width: 22rem;
    background-image: url(images/pages-imgs/logo-insp.png);
    background-size: cover;
    margin-right: 7rem;
}

.highlight {
    color: #02fac6;
    font-weight: bold;
}

.our-team {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    background-color: black;
    overflow: hidden;
    padding: 6rem 0;
}

.white-txt {
    color: white;
}

.teams-wrapper {
    display: flex;
    gap: 2rem;
    margin: auto;
    width: 65%;
    justify-content: space-evenly;

}

.teams-wrapper2 {
    display: flex;
    gap: 4rem;
    margin: auto;
    margin-bottom: 5rem;
    width: 90%;
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    width: 25%;
}

.member2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    width: 17%;
}

.person-img2 {
    height: 23rem;
    width: 26rem;
}

.person-details {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.name-prof {
    display: flex;
    flex-direction: column;
}

.left-line {
    height: 6rem;
    width: 1rem;
    background-color: #02fac6;
    border-radius: 2rem;
}

.name {
    color: #02fac6;
    font-size: 2.5rem;
    font-weight: 700;
}

.prof {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    width: 100%;
}

.person-img {
    height: 29rem;
    width: 100%;
}

.p1 {
    background-image: url(images/person1.png);
    background-size: cover;
}

.p2 {
    background-image: url(images/person2\ 2.png);
    background-size: cover;
}

.p5 {
    background-image: url(images/person5.png);
    background-size: cover;
}

.p6 {
    background-image: url(images/person6.png);
    background-size: cover;
}

.p7 {
    background-image: url(images/person7.png);
    background-size: cover;
}

.p8 {
    background-image: url(images/person8.png);
    background-size: cover;
}

.located {
      background-image: url(images/1.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.location-container {
    display: flex;
    gap: 4rem;
    width: 70%;
    margin: 6rem 15%;
    margin-bottom: 8rem;
    justify-content: center;
}

.loc-box {
    background-color: black;
    border-radius: 2rem;
    width: 40%;
    display: flex;
    flex-direction: column;
    grid-area: 2rem;
    padding: 3rem;
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.loc-name {
    font-size: 4rem;
    color: #02fac6;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.add {
    font-size: 2rem;
    color: white;
    font-weight: 600;
    width: 70%;
}

.loc-plus-ic {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.ic {
    height: 5rem;
    width: 5rem;
}

.loc-ic {
    background-image: url(images/pages-imgs/ic1.png);
    background-size: cover;
}

.msg-ic {
    background-image: url(images/pages-imgs/ic2.png);
    background-size: cover;
}

.phone-ic {
    background-image: url(images/pages-imgs/ic3.png);
    background-size: cover;
}

/* Last section */
.address-plus-icon {
    display: flex;
    justify-content: center;
    gap: 1rem;
    /* margin-bottom: 1rem; */
    align-items: center;
}

.contact-us-icon {
    height: 4rem;
    width: 4rem;
}

.CUicon1 {
    background-image: url(images/pages-imgs/ic1.png);
    background-size: cover;
}

.CUicon2 {
    background-image: url(images/pages-imgs/ic2.png);
    background-size: cover;
}

.CUicon3 {
    background-image: url(images/pages-imgs/ic3.png);
    background-size: cover;
}

.address {
    color: white;
    font-size: 2.5rem;
}

.contact-us {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
    gap: 1rem;
    background-color: black;
}

/* Quick Links */
.quick-links {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
    padding-bottom: 1rem;
}

.quick-links-container {
    background-color: black;
    background-image: url(images/lastsec-bg.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.quick-links1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.quick-links2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 11rem;
    gap: .6rem;
}

.quick-links3 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 11rem;
    gap: .6rem;
}

.quick-links4 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 11rem;
    gap: .6rem;
}

.quick-link-logo {
    height: 24rem;
    width: 28rem;
    background-image: url(images/NAV-LOGO-GIF.gif);
    background-size: cover;
    margin: auto;
}

.quick-links1-details {
    color: white;
    font-size: 2rem;
    width: 61rem;
}

.quick-links-details {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    cursor: pointer;
}

.quick-links2-text {
    color: white;
    font-size: 2rem;
}

.quick-links3-text {
    color: white;
    font-size: 2rem;
}

.quick-links2-details {
    color: white;
    font-size: 2rem;
}

.quick-links3-details {
    color: white;
    font-size: 2rem;
}



.quick-links2-heading {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
}

.quick-links3-heading {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
}

.quick-links4-details {
    display: flex;
    gap: 1rem;
}

.quick-links4-heading {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
}

.quick-links4-icon {
    height: 4rem;
    width: 4rem;
    cursor: pointer;
}

.quick-links4-icon1 {
    background-image: url(images/pages-imgs/insta.png);
    background-size: cover;
}

.quick-links4-icon2 {
    background-image: url(images/pages-imgs/linkin.png);
    background-size: cover;
}

.quick-links4-icon3 {
    background-image: url(images/pages-imgs/f.png);
    background-size: cover;
}

.copy-right-cont {
    color: white;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8rem;
    overflow-y: hidden;
}

.contact-us-heading {
    font-size: 5rem;
    color: #ffffff;
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    font-style: normal;
    width: 48rem;
    text-align: center;
}

.blue-underline-c {
    width: 16rem;
    height: 0.6rem;
    background-color: #02fac6;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.blue-underline2 {
    width: 8rem;
    height: 0.3rem;
    background-color: #02fac6;
    border-radius: 1rem;
    margin-top: 0.2rem;
    margin-bottom: 1rem;
}

@media screen and (max-width:800px) {
    .v-class {
        opacity: 0;
        width: 0%;
    }

    .ham-burger {
        display: block;
    }

    .hamburger-container {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        flex-direction: column;
        padding-right: 2rem;
    }

    .main-menu {
        display: none;
    }

    .contact-us-btn {
        display: none;
    }
}

@media screen and ((min-width:800px) and (max-width:970px)) {
    .nav-items {
        font-size: 1.5rem;
    }

    .dropbtn {
        font-size: 1.5rem;
    }
}

@media screen and ((min-width:800px) and (max-width:1300px)) {
    .nav-items {
        gap: 3rem;
        font-size: 1.7rem;
    }
}

@media screen and (max-width:1200px) {

    .f-4 {
        font-size: 4rem;
    }

    .f-2 {
        font-size: 2rem;
    }

    .main-container {
        margin-left: 2rem;
        padding: 0;
        margin-top: 0;
        width: 73%;
    }

    .nav-container-logo {
        position: absolute;
        z-index: 10;
    }

    .main-section {
        height: 55rem;
        position: relative;
    }

    .main-bg {
        position: absolute;
        top: 3rem;
        height: 109%;
        width: 100%;
    }

    .main-info-container {
        flex-direction: column;
    }

    .right-container {
        width: 40rem;
        height: 52rem;
    }

    .left-container {
        margin: 0;
    }

    .left-gif {
        height: 30rem;
        width: 38rem;
    }

    .info-exp {
        font-size: 1.5rem;
    }

    .sa {
        font-size: 2rem;
        font-weight: 400;
    }

    .left-heading,
    .right-main-heading {
        font-size: 2.8rem;
    }

    .address {
        font-size: 1.5rem;
        font-weight: 600;

    }

    .contact-us-heading {
        font-size: 3rem;
    }

    .blue-underline-c {
        width: 14rem;
        height: 0.2rem;
    }

    /* values responsiveness */
    .values-boxes-wrapper {
        flex-direction: column;
    }

    .mot-name {
        font-size: 2rem;
    }

    .mot-icon {
        height: 6rem;
        width: 6rem;
    }

    .services-text {
        font-size: 4rem;
    }

    .valueb {
        width: 100%;
        padding: 4rem;
    }

    .mot-ic-sec-cont {
        flex-direction: column;
        gap: 4rem;
    }

    .motivation-icons-section2 {
        justify-content: center;
    }

    .motivation-icons-section1 {
        gap: 7rem;
    }

    /* location */
    .loc-box {
        width: 80%;
    }

    .location-container {
        width: 80%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 6rem 10%;
    }
}

@media screen and (max-width:1050px) {
    .logo-left {
        width: 80%;
        margin: 5rem 0;
        padding: 0 4rem;
    }

    .hidden-service {
        display: block;
    }

    .dropdown {
        display: none;
    }

    .logo-section {
        flex-direction: column;
    }

    .blue-btn {
        font-size: 1.3rem;
        height: 4rem;
        width: 20rem;
    }
}

/* our team */
@media screen and (max-width:1600px) {
    .person-img {
        height: 20rem;
    }

    .person-img2 {
        height: 15rem;
        width: 115%;
    }
}

@media screen and (max-width:1180px) {
    .person-img {
        height: 16rem;
        width: 123%;
    }

    .person-img2 {
        height: 13rem;
        width: 115%;
    }

    .name {
        font-size: 2rem;
    }

    .prof {
        font-size: 1rem;
    }
}

@media screen and (max-width:1000px) {
    .name {
        font-size: 2rem;
    }

    .prof {
        font-size: 1rem;
    }
}

@media screen and (max-width:800px) {

    .member,
    .member2 {
        width: 90%;
    }

    .dd-name {
        font-size: 1.4rem;
    }

    .person-img,
    .person-img2 {
        height: 60rem;
        width: 100%;
    }

    .teams-wrapper,
    .teams-wrapper2 {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .prof {
        font-size: 1.8rem;
    }

    .name {
        font-size: 2.5rem;
    }
}

@media screen and (max-width:600px) {

    .person-img,
    .person-img2 {
        height: 44rem;
        width: 100%;
    }
}

@media screen and (max-width:500px) {

    .person-img,
    .person-img2 {
        height: 36rem;
        width: 100%;
    }

    .icons-right {
        display: none;
        visibility: hidden;
    }

    .dd-icon {
        height: 4rem;
        width: 4rem;
    }

    .right-dd {
        gap: 3rem;
    }

    .main-menu2 {
        height: 60vh;
    }
}

/* quick links resposniveness */
@media screen and ((min-width:850px) and (max-width:1050px)) {
    .quick-links1-details {
        width: 29rem;
        font-size: 2rem;
    }

    .quick-links1-details {
        width: 30rem;
    }

    .quick-links2-heading {
        width: 15rem;
    }

    .quick-links {
        gap: 1rem;
        padding-left: 2rem;
    }

    .quick-links1 {
        margin-top: 6rem;
    }

    .quick-link-logo {
        height: 20rem;
        width: 23rem;
    }

    .quick-links2-details {
        width: 26rem;
    }
}

@media screen and (max-width:850px) {
    .blue-underline2 {
        width: 10rem;
        height: 0.4rem;
    }

    .quick-links {
        align-items: center;
        flex-direction: column;
    }

    .quick-links1-details {
        font-size: 2rem;
        width: 33rem;
        font-weight: 600;
    }

    .copy-right-cont {
        font-weight: 600;
        font-size: 1.5rem;
        text-align: center;
    }

    .quick-links {
        gap: 0;
    }

    .align-center {
        align-items: center;
        margin-top: 3rem;
        width: 100%;
        /* border-top:1px solid white ; */
    }

    .quick-links-container {
        background-image: url(images/last-resp-bg.png);
        background-size: cover;

    }

    .quick-links {
        padding: 0;
    }

    .copy-right-cont {
        font-weight: 600;
        font-size: 1.5rem;
        text-align: center;
    }

    .f-w-600 {
        font-weight: 600;
        font-size: 2rem;
    }

    .f-size-quick-text {
        font-size: 2rem;
    }

    .quick-link-logo {
        height: 19rem;
        width: 19rem;
    }

    .gmail {
        color: white;
        font-size: 1.5rem;
    }

    .add {
        font-size: 1.5rem;
    }

    .loc-name {
        font-size: 2.3rem;
    }

    .blue-underline {
        height: 0.2rem;
    }

    .ic {
        height: 4rem;
        width: 4rem;
    }
}

@media screen and (max-width:500px) {
    .pl {
        padding-left: 4rem;
        align-items: flex-start;
    }

    .logo-t {
        font-size: 1.5rem;
    }

    .quick-links2-text {
        font-size: 1.35rem;
    }

    .quick-links3-text {
        font-size: 1.35rem;
    }

    .quick-links1-details {
        font-size: 1.7rem;
    }

    .quick-links2-heading {
        font-size: 2.3rem;
    }

    .quick-links3-heading {
        font-size: 2.3rem;
    }

    .valueb-d {
        font-size: 1.5rem;
    }

    .cicada {
        height: 14rem;
        width: 15rem;
    }

    .logo-inspo {
        height: 14rem;
        width: 15rem;
    }

    .logo-pyramid {
        height: 11rem;
        width: 14rem;
        margin-bottom: 5rem;
        margin-left: 5rem;
    }

    .person-details {
        width: 80%;
    }

    .valueb {
        padding: 2rem;
        height: max-content;
    }

    .valueb-t {
        font-size: 2rem;
    }

    .mot-name {
        font-size: 1.5rem;
    }

    .nav-logo-container:hover .nav-logo-t {
        opacity: 0;
    }
}