@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --white: #ffffff;
    --teal: green;
	--maroon: #800000;
    --black: #000000;
    --dark-grey: #262626;
    --mid-grey: #555555;
    --light-grey: #757575;

    --box-shadow: 0 8px 16px rgba(0, 0, 0, .35);
}

body,
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

p {
    font-size: 15px;
	width: 100%;
}

.load-left {
	font-size: 50px; 
	width: 100%;
	color: var(--white);
	margin-bottom: 2vh;
}

@media (max-width: 768px) {  
h1 {
    font-size: 37px;
}
.load-left {
	font-size: 37px;  
}
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 15px;
}

h5 {
    font-size: 12px;
}

h6 {
    font-size: 10px;
}

.logo {
    max-height: 10vh;
    max-width: 200px;
}

.button {
	min-width: 150px;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    color: var(--white);
    background: var(--dark-grey);
} 

.button.learn-more { 
    background: var(--light-grey);
} 

.button.arrow {
	width: 200px;
	margin-top: 3vh;
	border: none;
	position: absolute;
	left: 20px;
	bottom: 20px;
} 

.button.white-arrow { 
	width: 200px;
    background: var(--white); 
    color: var(--dark-grey);
	margin-top: 3vh;
	border: none;
	position: absolute;
	left: 20px;
	bottom: 20px;
} 

.button.active-page { 
    background: var(--maroon);
} 

/* ******************** Reveals ******************** */

.reveal {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.5s ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.reveal2 {
  position: relative;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.5s ease;
}

.reveal2.active2 {
  transform: translateX(0);
  opacity: 1;
}

.reveal3 {
  position: relative;
  opacity: 0;
  transform: scale(0.5); 
}

.reveal3.active3 {
  opacity: 1;
  transform: scale(1);
}

.reveal-1 {
  transition-delay: 0.1s;
  transition-duration: 0.5s;
}

.reveal-2 {
  transition-delay: 0.2s;
  transition-duration: 0.5s;
}

.reveal-3 {
  transition-delay: 0.3s;
  transition-duration: 0.5s;
}

.reveal-4 {
  transition-delay: 0.4s;
  transition-duration: 0.5s;
}

.reveal-5 {
  transition-delay: 0.5s;
  transition-duration: 0.5s;
}

.whatsapp-float {
  position: fixed;
  width: 8vh;
  height: 8vh;
  bottom: 5vh;
  right: 2.5%;
  background-color: green; /* WhatsApp green */
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

@media (max-width: 1023px) {  
    .whatsapp-float { 
  bottom: 15px;
  right: 15px; 
} 
}

.whatsapp-float i {
  font-size: 25px;
  color: var(--white);
}

.whatsapp-float:hover {
  background-color: #25D366;
}

@media (min-width: 1024px) {  
    .small-screens {
	   display: none;
    }  
}

@media (max-width: 1023px) {  
    .desktop {
	   display: none; 
    }  
}

.disable-hover {
    pointer-events: none;
} 

/*
** Side Navigation **************************************************
*/
    
.sideNavOpener { 
  position: fixed; 
  right: 5%;
top: 4vh;  
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  background: var(--maroon);
  cursor: pointer; 
  transition: opacity 0.5s ease-in-out;
  z-index: 99999;
} 
.menuIconContainer {
  display: inline-block;
  cursor: pointer; 
  border: none;
  outline: none;   
} 
.bar1, .bar2, .bar3 {
  width: 25px;
  height: 5px;
  background-color: var(--white);
  margin: 4px 0;
  transition: 0.5s;
}  
.change .bar1 {
  transform: translate(0, 9px) rotate(-45deg);
} 
.change .bar2 {
	opacity: 0;
} 
.change .bar3 {
  transform: translate(0, -9px) rotate(45deg);
}  
.bx-menu {
  color: #11101d;
  font-size: 35px; 
  margin: 0 15px;
  cursor: pointer;
}  

.sidebar-logo {
	width: 100%; 
	margin-top: 5vh;
} 
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  background-color: var(--light-grey);
  overflow-x: hidden;
  transition: 0.75s ease-in-out;
  padding-top: 15vh;
  overflow-y: scroll;
  scrollbar-width: none; 
}
.sidenav>.side-page-link {
	width: 300px;
} 
.sidenav.open {
  width: 300px;
}
.sidenav a { 
  text-decoration: none; 
} 
.sidenav .side-page-link {
  padding: 5px 8px 5px 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
        color: var(--dark-grey); 
  display: block;
  transition: 0.1s;
}
.sidenav .side-page-link:hover,
.sidenav .side-page-link.active {
  color: var(--white);
}
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 30px;
  margin-left: 50px;
}
.sidenav-subjects {
		width: 235px;
        margin: 5px 0 5px 50px;
        height: 30px; 
        background: var(--white); 
        font-size: 13px;
		font-weight: 600;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }	 
	.sidenav-subjects:hover,
.sidenav-subjects.active	{ 
        background: var(--maroon);  
    } 
	.sidenav-subjects a { 
        color: var(--darkgrey); 
    }	 
	.sidenav-subjects.last-one {  
        margin: 5px 0 15px 50px;
    }	 
	.sidenav-contacts {
		width: 235px;
        margin: 5px 0 5px 50px;
        height: 25px;
        color: var(--dark-grey); 
        background: transparent;
        font-size: 13px;
		font-weight: 600;
        text-align: right;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: background 0.5s, transform 0.5s;
		display: flex;
		align-items: center; 
		flex-wrap: wrap;
    }
	.sidenav-lines{
		border: 1px solid var(--mid-grey);
	} 
.social-links.side-nav {  
		width: 10vh;
        height: 5vh;
    margin: 2vh 0 5px 25px; 
} 
.social-links.side-nav a { 
    margin: 0 10px 10px 0; 
    background: var(--dark-grey);
        color: var(--white); 
} 

/* ******************** Header ******************** */

.header {
    height: 12vh;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5%;
	
	position: fixed;   /* keeps it stuck at the top */
    top: 0;            /* aligns it to the very top */
    left: 0;           /* aligns it to the left edge */
    z-index: 1000;     /* ensures it stays above other content */
    background: #fff;  /* optional: prevents content from showing through */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar li {
    margin: auto 15px;
}

.navbar li a {
    color: var(--dark-grey);
}

.navbar li a:hover {
    color: var(--maroon);
}

.navbar li a.active-page {
    color: var(--maroon);
    font-weight: 600;
}

/* ******************** Hero ******************** */

.hero {
    position: relative;
    width: 100%;
    height: 79vh;
    margin: 12vh 0; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 7.5vh 2.5%; 
} 

.hero.about-page { 
    height: 65vh;
    margin: 12vh 0 5vh;  
} 

@media (max-width: 1023px) {  
    .hero {
    align-items: center; 
	text-align: center;
}  
.hero.our-services { 
    margin: 0; 
}  

.background-image{
	width: 100%;
    height: 79vh; 
    background-image: url('images/banner-2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
} 

}

.hero.our-services { 
    height: 60vh; 
    flex-direction: column; 
	align-items: center;
	text-align: center;
    padding: 12vh 2.5%; 
}  

.background-image{
	width: 100%;
    height: 79vh; 
    background-image: url(images/banner-2.png);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
} 

.background-image.our-services{ 
    height: 60vh;   
} 

.background-image.about-page{ 
    height: 65vh;  
} 

.background-image.civil{ 
    background-image: url(images/civil.png); 
} 
.background-image.electrical{ 
    background-image: url(images/electrical.png); 
} 
.background-image.fencing{ 
    background-image: url(images/fencing.png); 
} 
.background-image.road{ 
    background-image: url(images/road.png); 
} 
.background-image.building{ 
    background-image: url(images/building.png); 
} 

.over {
    background: rgba(0, 0, 0, 0.75);
    height: 100%;  
}      

.hero p,
.hero h1 {
    color: var(--white); 
    z-index: 1;
}

.hero p {
    margin-bottom: 3vh;
}

.hero h1 {
    margin-bottom: 1vh;
}

.hero h1 span {
    color: var(--maroon);
}

.hero .button {
    width: 200px;
    background: var(--maroon);
    text-align: center;
}

.load-1 {
    margin-left: -20%;
    opacity: 0;
    transition-delay: 0.5s;
    transition-duration: 0.75s;
}

.load-2 {
    margin-left: -20%;
    opacity: 0;
    transition-delay: 0.65s;
    transition-duration: 0.75s;
}

.load-3 {
    margin-left: -20%;
    opacity: 0;
    transition-delay: 0.8s;
    transition-duration: 0.7s;
}

.contact-icon-header {
	position: relative;
	z-index: 1;
	margin: -10vh auto 4vh auto;
	height: 20vh;
	width: 20vh;
	border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
	background: var(--maroon);
}

.contact-icon-header img{
	height: 10vh;
} 

/* ******************** About us ******************** */

.container {
    width: 95%;
    margin: 10vh 2.5%;
    display: flex; 
    justify-content: space-between;
}

.container.grey {
    background: radial-gradient(var(--dark-grey), var(--black));
	padding: 25px;
	margin: 2.5vh 2.5%;
	border-radius: 5px;
}

.container.shadow {
    box-shadow: var(--box-shadow);
	padding: 25px;
	margin: 2.5vh 2.5%;
}

.container.team { 
    margin: 5vh 2.5% 0; 
}

.container.service { 
    margin: 10vh 2.5% 5vh; 
}


@media (max-width: 1023px) {  
.container.service { 
    margin: 10vh 2.5% 0; 
}
.container.service.bottom { 
    margin: 1vh 2.5%; 
}  
.container.service.bottom.under { 
    margin: 5vh 2.5% 1vh; 
}  
}

.about-us-img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}

.about-us-img.choose {
	width: 90%;
	margin-left: 10%;
	height: auto;
}

.about-values { 
    display: flex; 
    align-items: center;  
	margin-bottom: 3vh;
}

.about-values h4 { 
    color: var(--white); 
}

.about-values .icon-container {
    width: 40px;
    height: 40px;
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light-grey);
    border-radius: 50%;  
	margin-right: 10px;
}  

.container.in-line { 
    grid-template-columns: repeat(5, 1fr);
    gap: 3vh 2.5%;
    margin: 5vh 2.5% 0;
}   

.content {
    flex-basis: 40%; 
}

.content.image {
    flex-basis: 30%;  
}

.content.image.service,
.content.image.project,
.content.left.description {
    flex-basis: 48%;  
} 


.content.left.description.grey p,
.content.left.description.grey h2,
.content.left.description.grey h3,
.content.left.description.grey h3 span,
.content.left.description.grey h4 
{
	color: #ababab;
}


.content.values {
    width: 100%;
    background: radial-gradient(var(--dark-grey), var(--black));
	border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	padding: 20px;
}

.content.left { 
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;  
}

.content.transnet {   
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;  
}
 

.content.left.service { 
    flex-basis: 49%;  
	
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left; 
}

@media (max-width: 1023px) {  
.content.image.service,
.content.left.service,
.content.left.project,
.content.left.description{
    flex-basis: 100%;  
}  

.content.left.description .button{
   margin: 5vh 0;  
} 

.content.left.description h4{
   margin-top: 5vh;  
} 

.content.image.service.bottom {
    margin-top: 5vh;  
}
}

@media (max-width: 1023px) {  
.container { 
    display: block;  
}
.container-contents { 
    width: 95%;
     display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5vh 2.5%;
	margin-top: 3vh;
} 
.content {
    width: 100%; 
}

.content.image {
    width: 100%;  
}

.content.values {
    width: 100%;
    background: var(--white);
}

.content.left { 
    width: 100%;   
}

.content.left h2 { 
    margin: 5vh auto;  
}

.content.left .button { 
    margin-bottom: 5vh;  
}

.content.promise-left { 
    width: 100%;   
}


.about-us-img.choose {
	width: 90%;
	margin: 0 5%;
	height: auto;
}
 
    }
  
.content.promise-left { 
    flex-basis: 40%;   
}

.content.promise-right { 
    width: 100%;  
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5vh 5%;
} 

.stats {
    width: 100%;
}

.counters {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.counter {
    flex: 1;
    min-width: 0;
    padding: 1rem;
    border-radius: 5px;
    color: var(--black);
    text-align: center;
    transition: transform 0.2s ease;
}

.counter:hover {
    transform: translateY(-5px);
}

.counter h3 {
    margin: 0;
}

.counter h4 {
    font-weight: 400;
    margin-top: 0.5rem;
	font-size: 12px;
}

.counter.light h4 {
    color: var(--white);
}

.counter h3,
.counter h4,
.counter span {
    color: var(--black);
}

@media (max-width: 768px) {
    .counters {
        flex-wrap: wrap;
    }

    .counter {
        flex: 0 0 48%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .counter {
        flex: 0 0 100%;
    }
}

.about-box {
    width: 100%; 
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(var(--dark-grey), var(--black));
    box-shadow: var(--box-shadow);
} 

.about-box.align-left { 
    text-align: left;
    display: flex; 
    align-items: flex-start; 
} 

.about-box.service { 
    padding: 1.5rem; 
}

.about-box.service:hover {
	transform: translateY(-10px);
}    

.about-box.transparent {
    background: transparent;
}

.about-box h4, 
.about-box h3,
.about-box h2,
.about-box p {
    color: var(--white);
}

.about-box h4 {
    margin-bottom: 2vh;
}

.about-box.abs h4 {
    margin: 1vh 0;
}

.about-box p {
    margin: 2vh 0;
} 

.about-box.abs p {
    margin: 0;
}

.about-box.transparent h4,
.about-box.transparent h3,
.about-box.transparent h2,
.about-box.transparent p{
    color: var(--dark-grey);
}

.about-box .button { 
    min-width: 100px;
    padding: 5px; 
    font-size: 12px; 
}

.about-box .icon-container {
    width: 40px;
    height: 40px;
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--dark-grey);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: .2s linear;
}  

.about-box:hover .icon-container {
    transform: translateY(-10px);
}

.safety {
    width: 95%;
	margin: 5vh 2.5% 0;  
	padding: 20px;
    background: radial-gradient(var(--light-grey), var(--mid-grey));
    border-radius: 5px; 
    box-shadow: var(--box-shadow);
}

.safety.benefit { 
	margin: 0 2.5%;  
    background: radial-gradient(var(--dark-grey), var(--black));
	padding-bottom: 5vh;
}

.safety.together { 
	margin: 3vh 2.5% 0;   
}

.safety h2,
.safety p {
    color: var(--white);
	margin-bottom: 3vh;
}

.safety.benefit h2 {
    color: var(--white);
	margin-bottom: 1vh; 
}

.safety-sign {
	width: 10vh;
	border-radius: 50%;
	margin-right: 2.5%;
}

.promise {
    width: 95%;
    margin: 10vh 2.5%; 
	text-align: center;
}

/* ******************** About Page ******************** */

.about-container {
    width: 95%;
    margin: 10vh 2.5%;
    display: flex; 
    justify-content: space-between;
    align-items: stretch; /* 🔥 ensures equal heights */
    gap: 20px; /* optional spacing */
} 

.about-container.contact-page { 
    margin: 10vh 2.5% 7.5vh; 
} 

.about-container.service-page { 
    margin: 5vh 2.5%; 
} 

.our-story,
.our-mission,
.our-approach {
    display: flex;
    flex-direction: column; /* 🔥 stack contents top-to-bottom */
    border-radius: 5px;
    padding: 20px;
    position: relative;
    min-height: 60vh;
}

/* widths preserved */
.our-story {
    flex-basis: 45%;
    box-shadow: var(--box-shadow);
}
.our-mission {
    flex-basis: 25%;
    background: radial-gradient(var(--dark-grey), var(--black));
}
.our-approach {
    flex-basis: 25%; 
    box-shadow: var(--box-shadow);
}


@media (max-width: 1023px) {  
.about-container { 
    display: block;  
}
.our-story ,
.our-mission,
.our-approach { 
   width: 100%; 
	margin-bottom: 3vh;
}
  
}

/* text colors */
.our-mission h2, 
.our-mission p { 
    color: var(--white);
    margin-bottom: 2vh;
}
 
.our-approach h2,
.our-approach p {  
    margin-bottom: 2vh;
}


.our-story h2,
.our-mission h2,
.our-approach h2 { 
    font-size: 25px;
}

.our-story h3,
.our-mission h3,
.our-approach h3 { 
    margin: 3vh 0 1vh;
}

/* header icon */
.about-header {
    height: 7vh;
    display: flex;
    align-items: center;
    margin-bottom: 3vh;
}

.about-header h2 { 
    margin-bottom: 0;
}

.about-icon { 
    height: 7vh;
    width: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--maroon);
}
.about-icon.dark {  
    background: var(--white);
}
.about-icon img { 
    height: 5vh; 
}

/* 🔥 Button always at bottom */
.button-wrapper {
    margin-top: auto; /* pushes button down */
    align-self: flex-start; /* keeps alignment consistent */ 
	height: 10vh;
}

/* ******************** Contact Page ******************** */ 

/* widths preserved */
.contact-details {
    flex-basis: 100%;
	display: grid; 
    grid-template-columns: repeat(1, 1fr);
    gap: 7.5vh 0; 
} 

.contact-form {
    flex-basis: 48%;   
    background: #eeeeee;
	border-radius: 5px;
} 

.abs {
	position: relative;
}

.contact-header {
    height: 12vh;
    display: flex;
    align-items: center;
    margin-bottom: 3vh;
	position: absolute;
	top: -6vh;  
}

.contact-header img {
    height: 5vh; 
}

 .google-map {
        width: 100%;
        height: 50vh;  

    }

    .google-map iframe {
        width: 100%;
        height: 100%;
        border: none; 
    }
	
/* ******************** Services Page ******************** */ 

/* widths preserved */
.our-service {
    flex-basis: 100%;
	display: grid; 
    grid-template-columns: repeat(1, 1fr);
    gap: 3vh 2.5%; 
} 

.our-service .button {
    border: none;
}


.service-container-contents { 
    width: 100%;
     display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5vh 2.5%; 
} 

@media (max-width: 1023px) {  
.our-service,
.service-container-contents
 { 
    grid-template-columns: repeat(1, 1fr); 
} 

}

#benefit .button {
    width: 200px;
	height: 5vh;
	font-size: 15px;
    background: var(--maroon);
    text-align: center;
	margin-top: 2vh;
}


/* ******************** Footer ******************** */
 
.main-footer {
  width: 100%;
  margin: 5vh 0 0; 
  position: relative;
  background: radial-gradient(var(--dark-grey), var(--black));
  padding: 5vh 2.5%;
}    

.top-footer {
  display: flex;
  justify-content: flex-start; /* keep first columns left */
  align-items: flex-start;
  flex-wrap: wrap; /* allow small screens to wrap if necessary */ 
  margin-bottom: 5vh;
}

.top-footer .logo-column {
  flex: 0 0 220px; 
  margin-right: 75px;
}

.top-footer .column {
  flex: 0 0 200px; 
} 

.top-footer .projects-column {
  flex: 0 0 300px; /* stays fixed width */
  margin-left: auto; /* pushes it to the far right */ 
} 

@media (max-width: 1023px) {  
.top-footer {
  display: block; 
  margin-bottom: 5vh;
}

.top-footer .logo-column {
  width: 100%; 
  margin-right: 0; margin-bottom: 12vh;
}

.top-footer .column {
  width: 100%;  margin-bottom: 5vh;
} 

.top-footer .projects-column {
  width: 100%; margin-bottom: 5vh;
}  

.top-footer .logo-column .footer-logo {
	border-radius: 5px;
    width: 100%;
}

}

.footer-logo {
	border-radius: 2px;
    width: 220px;
}

.top-footer h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.contribution {
	height: 5vh;
  display: flex; 
  justify-content: space-between;
  align-items: center;  
} 

.bee {
	width: 6.5vh;
	height: 6.5vh;
	border-radius: 50%;
	margin-top: 4vh;
	background: var(--maroon);
	color: var(--white);
	font-size: 11px;
  display: flex; 
  justify-content: center;
  align-items: center;  
  text-align: center;
  cursor: pointer;
}

.bee.active-btn { 
	background: var(--teal); 
} 

.display span {
  display: none;
}

.display .active-content {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
	margin-top: 4vh;
}

.top-footer .logo-column ul {
  list-style: none;
  font-size: 13px; 
}

.top-footer .logo-column ul li {
  margin-top: 1vh;
  color: #ababab;
}

.top-footer .column ul,
.top-footer .projects-column ul {
  list-style: none;
  font-size: 13px;
  margin-top: 3vh;
}

.top-footer .column ul li,
.top-footer .projects-column ul li {
  margin-top: 1vh;
}

.top-footer .column ul li a,
.top-footer .projects-column ul li a {
  color: var(--light-grey);
  text-decoration: none; 
  cursor: pointer;
}

.top-footer .column ul li a:hover {
  color: var(--maroon);
}

.top-footer .column ul li a.active-page {
  color: var(--maroon);
  font-weight: 600;
}

.top-footer .column ul li .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mid-grey);
  border-radius: 50%;
  cursor: pointer;
  margin-top: 10px;
}

.top-footer .column ul li .icon:hover {
  background: #778899;
}

.top-footer .column ul li .icon img {
  width: 20px;
  height: 20px;
  margin: auto;
}

.top-footer .projects-column i {
  color: var(--white); 
}   

.social-links a {
  display: inline-block;
  text-align: center;
  height: 35px;
  width: 50%;
  background-color: #555555;
  opacity: 0.99;
  margin: 3vh 5px 10px 0;
  line-height: 35px;
  border-radius: 50px;
  color: #ffffff;
  transition: all 0.5s ease;
}

.social-links a:hover {
  background-color: #555555; 
}

.bottom-footer .column-1 {
  flex-basis: 100%;
  border-radius: 5px;
  padding: 2vh;
  display: flex;
  flex-direction: column;  
  background: #333333;
}    

.bottom-footer .column-1 .copyright {
  font-size: 12px;  
}

.bottom-footer .column-1 .copyright a {
  font-weight: 600;
  color: var(--light-grey);
  text-decoration: underline;
} 
