html {
    font-size: 62.5%;
}

body, textarea::placeholder {
    margin: 0;
    font-family: 'poppins';
    background-color: #fff;
}

.wrapper {
    max-width: 100vw;
    margin: 0 auto;
}

h3 {
    font-weight: 500;
    font-size: 1.8rem;
    margin: 0;
}

p {
    margin: 0;
}

.accordion-tab-content h3 {
    font-size: 1.8rem;
}

.row {
    display: flex;
    flex-direction: column;
}

.side-padding {
    padding-left: 5%;
    padding-right: 5%;
}

.margin-bttm {
    margin-bottom: 1em;
}

.top-bottom-padding-lg {
    padding-top: 50px;
    padding-bottom: 50px;
}

.side-border {
    border-left: 1px solid rgb(240, 240, 240);
    padding-left: 30px;
}

/* Navigation */

.scroll-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 9990;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    line-height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: transform 0.3s ease-in-out;
}

.scroll-header.hidden {
    transform: translateY(-100%);
}

.off {
    display: none;
}

.logo {
    width: 200px;
    height: auto;
}

.logo-text {
    color: #000000;
}

nav {
    margin: 3em;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 4.1em;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #868686;
    text-transform: uppercase;
    font-size: 1.4rem;
    position: relative;
}

nav ul li a:hover {
    color: black;
}

.nav-menu {
    display: none;
    cursor: pointer;
}

.right-nav {
    display: flex;
    align-items: center;
}

.cta-btn {
    text-decoration: none;
    display: inline-block;
    border-radius: 1.9em;
    background-color: #002060;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.6rem;
    padding: 0.8em 1em;
    width: 130px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.cta-btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.cta-btn span:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -15px;
    transition: 0.5s;
}

.cta-btn:hover span {
    padding-right: 15px;
}

.cta-btn:hover span:after {
    opacity: 1;
    right: 0;
}

.nav-btn {
    text-decoration: none;
    --color: #00B0F0;
    font-family: inherit;
    display: inline-block;
    padding: 0.5em 0.5em;
    overflow: hidden;
    margin: 0;
    font-size: 17px;
    z-index: 1;
    color: var(--color);
    border: 2px solid var(--color);
    border-radius: 1.9em;
    position: relative;
}

.nav-btn::before {
    position: absolute;
    content: "";
    background: var(--color);
    width: 200px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
}

.nav-btn:hover {
    color: white;
}

.nav-btn:before {
    top: 100%;
    left: 100%;
    transition: .3s all;
}

.nav-btn:hover::before {
    top: -30px;
    left: -30px;
}

/*Hero Section*/

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    margin-top: 5em;
    position: relative;
    background-image: url('../images/hero-1.webp');
    background-color: #808080;
    background-size: cover;
    transition: background-image 0.5s ease-in-out;
    background-position: center center;
}

.hero-background-1 {
    background-image: url('../images/hero-1.webp');
}

.hero-background-2 {
    background-image: url('../images/hero-2.webp');
}

.hero-background-3 {
    background-image: url('../images/hero-3.webp');
}

.hero-text {
    padding-left: 5%;
    padding-right: 5%;
}

.hero h1 {
    color: white;
    font-size: 5.2rem;
    font-weight: 600;
    margin: 0;
}
  
.subhead {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 40px;
}
  
.primary-btn {
    background-color: #002060;
    font-size: 1.6rem;
    color: white;
    border-radius: 1.9em;
    text-decoration: none;
    padding: 1em 2em;
}

/*Badges*/

.badges {
    display: flex;
    justify-content: center;
    padding: 2%;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}

.rate {
    position: relative;
}

.tooltip {
    position: absolute;
    top: 0;
    left: -75px;
    min-width: 200px;
    text-align: center;
    font-size: 14px;
    background: #ffffff;
    color: #000000;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.rate:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.divider-top {
    display: flex;
    justify-content: flex-end;
    margin-top: -3px;
}

.divider-bottom {
    margin-bottom: -3px; 
}

/*Content Page*/

h2 {
    color: black;
    font-size: 4.2rem;
    font-weight: 500;
    padding-top: 1em;
    padding-bottom: 0.5em;
    margin: 0;
    position: relative;
}

h2.active::before {
    position: absolute;
    content: "";
    width: 35%;
    height: 1px;
    border-top: 5px solid black;
    top: -0.1em;
}

.about-us, .latest-projects {
    padding: 0 5%;
}

.about-us-sec, .latest-projects-sec {
    margin-top: 5em;
    border-top: 1px solid black;
}

p.title {
    font-size: 3.3rem;
    margin: 0;
    font-weight: 200;
    line-height: 100%;
}

.details {
    font-size: 1.4rem;
    margin: 0;
}

.about-us-con {
    display: flex;
    gap: 8em;
    margin-bottom: 10em;
}

/*Services*/

.services {
    background-color: #F2F3F5;
    padding: 10em 5% 10em 5%;
}

.services-sec {
    border-top: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }

 .service-cen {
    display: grid;
    justify-items: center;
    margin-top: 2em;
    gap: 3em;
}

 .service-grid {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10em;
    grid-row-gap: 1em;
}

div a {
    text-decoration: none;
    color: black;
}

.card1, .card2, .card3, .card4, .card5, .card6 {
    width: 200px;
    text-align: center;
    transition: all 200ms;
}

.card1:hover, .card2:hover, .card3:hover, .card4:hover, .card5:hover, .card6:hover {
    opacity: 80%;
    transform: scale(1.05);
}

.sec-btn {
    background-color: white;
    color: black;
}

.bottom-gap {
    margin-bottom: 10em;
}

.bottom-gap-md {
    margin-bottom: 5em;
}

/*Latest Projects*/
.cards {
    display: flex;
    justify-content: center;
    gap: 3em;
    align-items: stretch; /* Ensure all cards are the same height */
    flex-wrap: wrap;
}

.latest-projects-cont {
    display: flex;    
    flex-direction: column;
    align-items: center;
}

.prj-card {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 2em;
    margin-bottom: 2em;
    flex-grow: 1; /* Make sure all cards grow equally */
}

.prj-img {
    width: 300px;
    height: auto;
}

.prj-card-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space the text evenly */
    flex-grow: 1; /* Ensure text section fills the remaining space */
    max-width: 300px;
    
}

.prj-card-text h3 {
    color: #002060;
}

.prj-card img, .card-pic img {
    max-width: 360px;
    height: auto;
}

.read-more {
    font-size: 1.6rem;
    color: #002060;
    font-weight: 500;
}

.read-more:hover {
    color: #0137a4;
}

/*Clients*/

.tab {
    border-top: 1px solid black;
    display: flex;
    
    margin-left: 5%;
    margin-right: 5%;
}

.tabLinks {
    padding: 1em 0em 1em 0em;
    color: #ecebeb;
    font-size: 4.2rem;
    font-weight: 500;
    margin-right: 1em;
    border: none;
    background-color: transparent;
    position: relative;
}

.tabLinks.active::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    border-top: 5px solid black;
    top: -0.1em;
}

.tabLinks:hover {
    color: rgb(126, 126, 126);
}

.active {
    color: black;
}

.logo-cen {
    display: grid;
    justify-items: center;
}
.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 5em;
    grid-row-gap: 5em;
    }

.parent img {
    max-width: 120px;
    height: auto;
}

.img1 { grid-area: 1 / 1 / 2 / 2; }
.img2 { grid-area: 1 / 2 / 2 / 3; }
.img3 { grid-area: 1 / 3 / 2 / 4; }
.img4 { grid-area: 1 / 4 / 2 / 5; }
.img5 { grid-area: 2 / 1 / 3 / 2; }
.img6 { grid-area: 2 / 2 / 3 / 3; }
.img7 { grid-area: 2 / 3 / 3 / 4; }
.img8 { grid-area: 2 / 4 / 3 / 5; }

.img1, .img2, .img3, .img4, .img5, .img6 {
    filter: grayscale(100%);
    opacity: 40%;
}

.img1:hover , .img2:hover , .img3:hover , .img4:hover , .img5:hover , .img6:hover {
    filter: grayscale(0%);
    opacity: 100%;
}

/*Testimonials*/

.testimonials {
    background-color: #002060;
    color: white;
    display: grid;
    justify-items: center;
    align-items: center;
    min-height: 150px;
    gap: 5em;
    padding-top: 5em;
    padding-bottom: 10em;
}

.quotes {
    display: flex;
    flex-wrap: wrap; /* Allows the quotes to wrap to the next line if necessary */
    justify-content: center; /* Centers the quotes horizontally */
    gap: 5em; /* Spacing between quotes */
}

.quote {
    flex: 1 1 300px; /* Each quote takes up at least 300px, can grow and shrink */
    max-width: 300px; /* Prevents quotes from getting wider than 300px */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    position: relative;
    border: 2px solid #ffffff;
    padding: 60px 20px 20px 20px;
    border-top: none; /* Remove the top border */
    box-sizing: border-box; /* Ensures padding and border are included in width */
    text-align: center;
}

.quote .company {
    color: #cdcdcd;
}

@media (max-width: 768px) {
    .quotes {
        flex-direction: column; /* Stacks quotes vertically on smaller screens */
        align-items: center; /* Centers each quote */
        gap: 5em;
    }
}


.quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px; /* Same as the border thickness */
    background: linear-gradient(to right, #ffffff 0%, #ffffff calc(50% - 50px), transparent calc(50% - 50px), transparent calc(50% + 50px), #ffffff calc(50% + 50px), #ffffff 100%);
}

.quotation {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials h2 {
    color: white;
}

.statement {
    font-size: 1.2rem;
}

/*Footer*/
.contact-form {
    background-color: #F3F3F3;
}

.form-content {
    border-top: 1px solid black;
    position: relative;
}

.inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.input-field {
    flex: 1 1 300px;
    padding: 15px;
    border: none;
    outline: none;
    min-width: 0;
    box-sizing: border-box;
    color: #555555;
}

.input-field:focus, .message-input:focus {
    border: 2px solid #002060;
}

.message-area {
    position: relative;
    margin-top: 3em;
    margin-bottom: 2em;
}

.message-input {
    width: 100%;
    min-width: 300px;
    min-height: 200px;
    resize: none;
    box-sizing: border-box;
    border: none;
    padding: 15px;
}

.inputs {
    display: flex;
    justify-content: space-between;
}

.right {
    display: flex;
    flex-direction: column;
    align-items: end;
}

footer {
    background-color: #F3F3F3;
    width: 100%;
    
}

.footer-content {
    padding: 8em 5%;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
}

.social-sec {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    gap: 2em;
}

.social-sec p {
    margin: 0;
}

.social-icons {
    display: flex;
    justify-content: space-between;
}

.social-icons img {
    width: 20px;
}

.more-icons {
    display: flex;
    align-items: center;
    gap: 2em;
}

.more-icons p {
    margin: 0;
}

.more-icons img {
    width: 30px;
}

.foot-contact {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.left-col, .left-col2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.copyright {
    display: flex;
    justify-content: center;
}

/********************************************************
Contact Us
*********************************************************/
.contact-cont {
    display: flex;
    gap: 5em;
    justify-content: space-between;
}

.form-cont {
    max-width: 100%;
}

.form p {
    font-size: 1.4rem;
    max-width: 600px;
    color: #555555;
}






/***********************************************************
Services
************************************************************/

.tab-title {
    padding-left: 5%;
    min-height: 10em;
    padding-top: 10em;
    padding-bottom: 5em;
    display: flex;
    align-items: center;
    background: rgb(0,32,96);
    background: linear-gradient(90deg, rgba(0,32,96,1) 0%, rgba(0,32,96,1) 51%, rgba(0,176,240,1) 100%);
}

.tab-title h2 {
    color: white;
}

.work {
    width: 100%;
    margin-bottom: 5em;
    z-index: 20;
}

.work-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3em;
    background-color: #F2F3F5;  
}

.work-image {
    height: 300px;
    width: 50%;
    background-color: rgb(216, 216, 216);
    background-size: cover;
}

.work-elec-infrus {
    background-image: url(/images/electricalInfrustructure.webp);
    background-position: center center;
}

.work-ict {
    background-image: url(/images/ICT2.jpg);
}

.work-epower-systems {
    background-image: url(/images/electricalPowerSystems.webp);
    background-position: center center;
}

.work-power-elec {
    background-image: url(/images/powerElectronics.jpg);
    background-position: center center;
}

.work-cad {
    background-image: url(/images/CAD2.jpg);
    background-position: center center;
}

.work-rewind {
    background-image: url(/images/rewind.webp);
}

.work-sales {
    background-image: url(/images/sales.webp);
    background-position: center center;
}

.work-details {
    padding: 0 5%;
}

.center {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}



  /*Menu*/
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgba(0,32,96, 0.994);
    overflow-x: hidden;
    transition: 0.5s;
}
  
.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 1em;
}
  
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: white;
    display: block;
    transition: 0.3s;
}
  
.overlay a:hover, .overlay a:focus {
    color: #818181;
}
  
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}
  
/*********************************************************************************************
404 Error
***********************************************************************************************/

/**/
.error-wrapper {
    height: 100svh;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bottom-margin {
    margin-bottom: 10em;
}

.top-margin {
    margin-top: 5em;
}

.top-margin-sm {
    margin-top: 2em;
}

.container {
    padding: 0.5em 5%;
}

.sub-text {
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

/************** 404 Animation ****************/

.loader {
    position: relative;
}
  
.loader span {
    position: absolute;
    color: #fff;
    transform: translate(-50%, -50%);
    font-size: 16rem;
    letter-spacing: 5px;
}
  
.loader span:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 0.3px rgb(0, 32, 96);
}
  
.loader span:nth-child(2) {
    color: rgb(0, 32, 96);
    -webkit-text-stroke: 1px rgb(0, 32, 96);
    animation: uiverse723 3s ease-in-out infinite;
}
  
@keyframes uiverse723 {
    0%, 100% {
      clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 
       54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }
  
    50% {
      clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 
       51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}

/***************** Button *******************/

.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    text-decoration: none;
    cursor: pointer;
}
   
.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #00B0F0;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}
   
.cta span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #002060;
}
   
.cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #002060;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    background: #00B0F0;
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active {
    transform: scale(0.95);
}

/**********************************************************************************
About Us
***********************************************************************************/

.brand {
    display: flex;
    background-color: #F2F3F5;
}

.left-col h2 {
    padding: 1em;
    background-color: #002060;
    color: white;
    width: 30px;
}

.brand .left-col, .team .left-col {
    padding: 0;
    align-items: center;
}

.right-col3 {
    padding-left: 5%;
}

.p-parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10em;
}

.p-parent strong {
    font-size: 5rem;
    color: #cdcdcd;
}    
    
.management-con, .team {
    display: flex;
}

.management {
    background-color: #F2F3F5;
}

.management h2, .philosophy h2 {
    padding-top: 0;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.get-a-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.download {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: #3d3a4e;
    background-size: 400%;
    color: #fff;
    border: none;
}

.download:hover::before {
    transform: scaleX(1);
}

.button-content {
    position: relative;
    z-index: 1;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: #00B0F0;
    transition: all 0.475s;
}

    /******************************************************************************************
    Projects
    ******************************************************************************************/      
.project-title p {
    font-size: 1.4rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    padding: 2em;
    min-width: 200px;
}

.card-top {
    display: flex;
    min-width: 200px;
    justify-content: center;
}

.project-title {
    max-width: 200px;
}

.project-pic1 {
    min-width: 200px;
    min-height: 200px;
    background-color: #00B0F0;
}

.project-pic2 {
    width: 200px;
    height: 200px;
    background-color: burlywood;
}

.accordion-tab {
    border-top: 1px solid #ccc;
    }

.accordion-tab-header {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e4e4e4;
    cursor: pointer;
    padding: 10px;
}

.accordion-tab-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.accordion-tab.active2 .accordion-tab-content {
    max-height: fit-content;
    margin-bottom: 2em;
}  
/********************************/

.carousel-images img {
    max-width: 400px;
}

/************/
  .carousel-images .full-width {
    width: 100%;
  }
  
  .slide,.slide2 {
    display: none;
  }
  

  .slide.active,.slide2.active2 {
    display: block;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
  }

.carousel-text {
    display: flex;
    gap: 3em;
    align-items: center;
    max-width: 600px;
}

.project-count {
    min-width: 60px;
    font-size: 2.6rem;
}

.project-count strong {
    color: #00B0F0;
}

.project-count span {
    color: #c3c3c3;
}

.left {
    display: flex;
    gap: 3em;
    flex-direction: column;
    align-items: center;
}

.carousel-controls {
    display: flex;
    gap: 3em;
}

.carousel-controls button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease; 
}

.prev  {
    background-color: #ffffff;
    color: #000000;
    border-color: rgb(240, 240, 240);
    
}

.next  {
    border: none;
    background-color: #00B0F0;
    color: #fff;
}

.next:hover, .prev:hover {
    transform: scale(1.05);
}

/*********************************************************************************************
Responsive
**********************************************************************************************/
@media screen and (max-width: 768px) {
    
    .service-grid, .mobile-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-column-gap: 0;
        grid-row-gap: 1em;
    }

    .card1, .card2, .card3, .card4, .card5, .card6, .mobile {
        grid-area: unset;
        margin-bottom: 3em;
    }

    .delete {
        display: none;
    }

    .about-us-con {
        flex-wrap: wrap;
        gap: 0;
    }

    .work-title, .prj-card {
      flex-wrap: wrap;
    }

    .prj-card {
        flex-wrap: wrap;
        justify-content: center;
      }
    
    .work-title .center,
    .work-title .work-image {
      width: 100%;
    }

    .left-col h2 {
        min-width: 150px;
    }

    footer {
        flex-wrap: wrap;
    }
    
    .left-col, .right-col {
        width: 100%;
        gap: 1em;
        padding: 5em 0;
    }

    .client-suplier {
        display: none;
    }

    .map {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    .badges {
        display: none;
    }    
}

@media screen and (max-width: 1080px) {

    nav ul, .nav-btn {
        display: none;
    }
    
    .nav-menu {
        display: block;
    }

    .logo {
        width: 200px;
    }
}

@media screen and (max-width: 830px) {

    .left-col2 {
        display: none;
    }

    .right-col2 {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 1120px) {
    .footer-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10em;
    }

    .quick-links {
        display: none;
    }

    .latest-projects {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .p-parent {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

}

@media screen and (max-width: 768px) {
    .management-con, .team, .brand, .card-top, .cards {
        flex-wrap: wrap;
    }

    .right-col3 {
        padding-left: 0;
    }

    .project-background {
        padding: 0;
    }

}
