@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
*,*::after,*::before{
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--c1--2--);
    margin: 0;
    padding: 0;
}
body{
    --c1--1--:#ffffff;
    --c1--2--:#292f36;
    --c1--3--:#4d5053;
    --c1--4--:#f4f0ec;
    --c1--5--:#cda274;
    --gap--:clamp(1rem,5vw,5rem);
    background: var(--c1--1--);
}
img{
    display: flex;
    max-width: 100%;

}
a{
    display: inline-block;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transation:0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}
ul{
    list-style: none;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'DM serif Display', serif;
    text-transform: capitalize;
    line-height: 125%;
}
.row{
    display: flex;
}
.flex{
    flex-wrap: wrap;
    gap: var(--gap--);

}
.flex>*{
    flex: 1 1 38rem;
}
.column{
    display: grid;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap--);
}

.container{
    max-width: 90%;
    margin: 0 auto;
}
/*--Navigation--*/
header{
    align-items: center;
    justify-content: space-between;
    gap: var(--gap--);
    padding: 1.5rem 0;
}
.logo img{
    object-fit: contain;
    max-height: 100px;
    width: 100px;

}
.toggleMenu{
    display: none;
}
nav{
    align-items: center;
    gap: var(--gap--);
}
nav a{
    font-size: 1.25rem;
    fill: transparent;
    stroke: var(--c1--2--);
}
nav a:hover{
    color: var(--c1--5--);
    stroke: var(--c1--5--);
}
nav a svg{
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transation:0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;

}
nav a:hover svg{
    transform: 45deg ;
    -webkit-transform: 45deg;
    -moz-transform: 45deg;
    -ms-transform: 45deg;
    -o-transform: 45deg;

}
/*--End Navigation--*/

/*Hero*/
.hero{
    background-image: url(assets/home3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 0 0 0 25%;
    -webkit-border-radius:0 0 0 25%;
    -moz-border-radius:0 0 0 25%;
    -ms-border-radius:0 0 0 25%;
    -o-border-radius:0 0 0 25%;
}
.hero .container{
    min-height: clamp(50vh, 100vw, 100vh);
    align-items: center;
    padding: 2rem 0;
}
.hero .content{
    max-width: 550px;
     
}
h1{
    font-size: clamp(2rem, 7.5vw, 5rem);
    
}
p{
    font-size: clamp(0.8rem, 5vw, 1.375rem);
    line-height: 125%;
    color: var(--c1--3--);
}
.hero-content p,
 .cards div p,
 .contact-content h2+p {
    margin: 1.5rem auto;
}

/*page button*/
.page-btn{
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--c1--1--);
    text-transform: capitalize;
    fill: transparent;
    stroke: var(--c1--1--);
    align-items: center;
    gap: 0.25rem;
    background: var(--c1--2--);
    max-width: max-content;
    border: 1px solid var(--c1--2--);
    padding: 0.4rem 1rem;
    border-radius: 10px 10px 0 ;
    -webkit-border-radius:10px 10px 0;
    -moz-border-radius:10px 10px 0;
    -ms-border-radius: 10px 10px 0;
    -o-border-radius:10px 10px 0;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transation:0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}
.page-btn.active{
    color: var(--c1--2--);
    stroke: var(--c1--2--);
    background: transparent;
    padding: 0;
    border: 0;
}
.page-btn:hover{
    color: var(--c1--2--);
    stroke: var(--c1--2--);
    background: transparent;
    border-radius: 0 10px 0px 10px ;
    -webkit-border-radius: 0 10px 0px 10px ;
    -moz-border-radius: 0 10px 0px 10px ;
    -ms-border-radius:  0 10px 0px 10px ;
    -o-border-radius: 0 10px 0px 10px ;
}


/*end page button*/

/*end hero*/

/*cards*/
.cards, .project, footer {
    padding: 4rem 0;
}

.cards div{
    text-align: center;
    border: 1px soild var(--c1--4--);
    padding: 2rem;
    border-radius:25px;
    -webkit-border-radius:25px ;
    -moz-border-radius:25px ;
    -ms-border-radius:25px;
    -o-border-radius:25px ;
}
h4{
    font-size: clamp(1rem, 4.5vw, 1.6rem);
}
.cards.page-btn{
    margin: 0 auto;
}
/*end card*/

/*contact*/
.contact{
    flex-wrap: wrap-reverse;
    padding: 4rem 0;
}
.contact-content{
    align-self: center;
}
h2{
    font-size: clamp(1.5rem, 5vw, 3.125rem);
}
.details{
    max-width: max-content;
    text-align: center;
    align-items: center;
    gap: 1rem;
}
.details.row,.p-card-content .row{
    fill: transparent;
    stroke: var(--c1--5--);
    background: var(--c1--4--);
    width: 90px;
    height: 90px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    -webkit-border-radius: 50px ;
    -moz-border-radius: 50px ;
    -ms-border-radius:  50px;
    -o-border-radius: 50px ;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transation:0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}
.details:hover .row,
.p-card:hover .p-card-content .row{
    background: var(--c1--5--);
    stroke: var(--c1--4--);

}
.details p{
    text-transform: capitalize;
    margin-top: 0.25rem;
}
.contact-content .page-btn, .heading p{
    margin-top: 1.5rem;
}
.contact-img img{
    width: 100%;
    object-fit: cover;
    border-radius: 0 50% 0 25%;
    -webkit-border-radius:  0 50% 0 25%;
    -moz-border-radius:  0 50% 0 25%;
    -ms-border-radius:  0 50% 0 25%;
    -o-border-radius:  0 50% 0 25% ;
}

/*end contact*/

/*---Logos---*/
.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    text-align: center;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.client-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}



/*--Projects--*/
.heading{
    text-align: center;
    max-width: 750px;
    margin: 0 auto 1.5rem auto;
}
.project-cards img{
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
}
.project-cards a:nth-of-type(1) img{

    border-radius: 0 100px 0 0;
    -webkit-border-radius:   0 100px 0 0;
    -moz-border-radius:   0 100px 0 0;
    -ms-border-radius:   0 100px 0 0;
    -o-border-radius:   0 100px 0 0 ;

}
.project-cards a:nth-of-type(2) img{
    border-radius: 100px 0 0 0;
    -webkit-border-radius:   100px 0 0 0;
    -moz-border-radius:   100px 0 0 0;
    -ms-border-radius:  100px 0 0 0;
    -o-border-radius:   100px 0 0 0 ;
}
.project-cards a:nth-of-type(3) img{
    border-radius: 0 0 100px 0;
    -webkit-border-radius:    0 0 100px 0;
    -moz-border-radius:    0 0 100px 0;
    -ms-border-radius:   0 0 100px 0;
    -o-border-radius:    0 0 100px 0;
}
.project-cards a:nth-of-type(4) img{
    border-radius: 0 0 0 100px;
    -webkit-border-radius:     0 0 0 100px;
    -moz-border-radius:     0 0 0 100px;
    -ms-border-radius:    0 0 0 100px;
    -o-border-radius:     0 0 0 100px;
}
.p-card-content{
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}
.p-card-content .row{
    width: 70px;
    height: 70px;

}

/*--End Project--*/
/*Numbers*/
.numbers{
    background: var(--c1--4--);
    padding: 4rem 0;
}
.numbers .container{
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap--);
}
.numbers div{
    text-align: center;
}
.number{
    font-weight: 700;
    font-size: clamp(2rem, 7.5vw, 5rem);
    color: var(--c1--5--);
}



/*End Numbers*/

/*join*/
.join{
    background: var(--c1--2--);
    padding: 4rem 2rem;
    border-radius:25px;
    -webkit-border-radius:25px;
    -moz-border-radius:25px;
    -ms-border-radius:25px;
    -o-border-radius:25px;
}
.join :is(h2,p){
    color: var(--c1--1--);
}
form{
    max-width: 600px;
    margin: 0 auto;
    gap: 2rem;
}
input{
    font-size: 1rem;
    color: var(--c1--1--);
    text-transform: lowercase;
    outline: 0;
    border: 1px solid var(--c1--5--);
    background: transparent;
    padding: 1rem 0.5rem;
}
::placeholder{
    text-transform: uppercase;
    color: var(--c1--5--);
}
form .page-btn{
    border-color: var(--c1--5--);
    margin: 0 auto;
}
form .page-btn:hover{
    color: var(--c1--5--);
    stroke: var(--c1--5--);
}


/*end join*/
/*--footer--*/
.footer{
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--gap--);
}
.footer-content{
    max-width: 360px;
    
}
.footer-content p{
    font-size: 1rem;
    margin-top: 0.5rem;
}
footer h3{
    margin-bottom: 1rem;
}
footer li+li{
    padding-top: 0.5rem;
}
footer a{
    font-size: 1rem;
    text-transform: capitalize;
}
/*href selection*/
a[href$="za"]{
    text-transform: lowercase;
}

footer a:hover{
    color: var(--c1--5--);
    fill: var(--c1--5--);
}
.links{
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.copyright{
    font-size: 0.8rem;
    text-align: center;
    margin-top: 2rem;
}

/*---CONTACT PAGE--*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}
/*Form section*/
.contact2 {
    display: flex;
    justify-content: space-between;
    padding: 5rem 2rem;
    background-color: var(--c1--2--);
    gap: 3rem;
  }
  
  .contact__left {
    width: 40%;
  }
  
  .contact__left h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #f5f5f5;
  }
  
  .contact__left h1 span {
    display: block;
    position: relative;
    margin-top: 0.5rem;
    color: #f5f5f5;
  }
  
  .contact__left h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 30px;
    height: 3px;
    background-color: var(--c1--1--); /* Accent color */
  }
  
  .contact__left p {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--c1--1--);
  }
  
  /* Contact Details Styling */
  .contact__details {
    margin-top: 3rem;
    
  }
  
  .contact__details p {
    margin: 1rem 0;
    font-size: 1rem;
    color: var(--c1--5--);
  }
  
  .contact__details a {
    color: var(--c1--5--);
    text-decoration: none;
  }
  
  .contact__details a:hover {
    text-decoration: underline;
  }
  
  .contact__right {
    width: 50%;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    gap: 1.5rem;
  }
  
  input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--c1--5--);
    background-color: var(--primary-color);
    color: #f5f5f5;
    font-size: 1rem;
    border-radius: 5px;
  }
  
  textarea {
    resize: none;
  }
  
  input::placeholder, textarea::placeholder {
    color: #888;
  }
  
  button {
    padding: 1rem;
    font-size: 1rem;
    color: #f5f5f5;
    background-color: transparent;
    border: 1px solid var(--c1--5--);
    cursor: pointer;
    border-radius: 25px;
  }
  
  button:hover {
    background-color: var(--primary-color);
    color: #1c1c1c;
  }
  
  @media (max-width: 768px) {
    .contact2 {
      flex-direction: column;
      align-items: center;
    }
  
    .contact__left, .contact__right {
      width: 100%;
    }
  
    .form-group {
      flex-direction: column;
    }
  }

/*---SERVICES PAGE--*/
.gallery-layout2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 15px;
    padding: 40px;
    background-color: var(--primary-color); /* Adjust to your background preference */
  }
  
  .gallery-item2 {
    position: relative;
    overflow: hidden;
  }
  
  .gallery-item2 img {
    width: 100%;
    height: 100%;
    display: block;
    width: 100%;
    object-fit: cover;
    
  }
  
  .text-item2 {
    background-color: var(--white); /* Light gray background like in your image */
    color: var(--primary-color); /* Adjust text color */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    object-fit: cover;
    border-radius: 0 50% 0 25%;
    -webkit-border-radius:  0 50% 0 25%;
    -moz-border-radius:  0 50% 0 25%;
    -ms-border-radius:  0 50% 0 25%;
    -o-border-radius:  0 50% 0 25% ;
  }
  
  .text-item2 h2 {
    font-size: 2rem;
    margin: 0;
  }
  
  .text-item2 p {
    font-size: 1.2rem;
    margin-top: 5px;
    color: #8a7f72; /* Adjust for secondary text color */
  }
  .btn-container {
    text-align: center;
    margin: 20px 0;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .gallery-layout2 {
        grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .gallery-layout2 {
        grid-template-columns: 1fr;
    }
  }

/*--About us page--*/
.about2{
    background: url(assets/craftsman.jpg) no-repeat left;
    background-size: 55%;
    background-color: var(--primary-color);
    overflow: hidden;
    padding: 100px 0;
    border-radius: 0 50% 0 25%;
    -webkit-border-radius:  0 50% 0 25%;
    -moz-border-radius:  0 50% 0 25%;
    -ms-border-radius:  0 50% 0 25%;
    -o-border-radius:  0 50% 0 25% ;
}
.inner-section2{
    width: 55%;
    float: right;
    background-color: #fdfdfd;
    padding: 140px;
    box-shadow: 10px 10px 8px rgba(0,0,0,0.3);
}
.inner-section2 h1{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
}
.text2{
    font-size: 16px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
    font-family: 'Arial';
}
.skills2 button{
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color); /* Adjust button color */
    color: #fff; /* Text color */
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.skills2 button:hover{
    background-color: darken(var(--secondary-color), 10%); /* Darken on hover */
}
@media screen and (max-width:1200px){
    .inner-section2{
        padding: 80px;
    }
}
@media screen and (max-width:1000px){
    .about2{
        background-size: 100%;
        padding: 100px 40px;
    }
    .inner-section2{
        width: 100%;
    }
}

@media screen and (max-width:600px){
    .about2{
        padding: 0;
    }
    .inner-section2{
        padding: 60px;
    }
    .skills2 button{
        font-size: 19px;
        padding: 5px;
        width: 160px;
    }
}

/*mission statement*/

.mission-team-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
  }
  
  .mission-team-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .mission-team-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  
  .mission-box, .team-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-left: 6px solid var(--c1--5--);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-radius: 8px;
  }
  
  .mission-box p, .team-box p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    text-align: center;
  }
  
  .mission-box:hover, .team-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

/*what we do*/
#what-we-do {
    background-color: #ffffff;
    padding: 50px 20px;
}

#what-we-do .container {
    max-width: 1200px;
    margin: 0 auto;
}

#what-we-do h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.service h3 {
    font-size: 24px;
    color: var(--c1--5--);
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}



/*values*/
.our-values-section {
    padding: 60px;
    background-color: #fafafa;
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
  }
  
  .our-values-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .our-values-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .value-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--c1--5--);
  }
  
  .value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }
  
  .value-box h3 {
    font-size: 1.8em;
    color: var(--c1--5--);
    margin-bottom: 15px;
  }
  
  .value-box p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
  }

/*whatapp icon*/

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
    z-index:100;
}

.my-float{
	margin-top:16px;
}

.gallery-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 15px;
    padding: 20px;
    background-color:var(--primary-color); 
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-item {
    background-color: var(--white); /* Light gray background like in your image */
    color: #5c5c5c; /* Adjust text color */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 20px;
}

.text-item h2 {
    font-size: 2rem;
    margin: 0;
}

.text-item p {
    font-size: 1.2rem;
    margin-top: 5px;
    color: var(--primary-color); /* Adjust for secondary text color */
}
.hidden {
    display: none; /* Initially hide the additional images */
}

.view-more-container {
    text-align: center;
    width: 100%;  /* Make sure the container is full width */
    margin-top: 20px;
}

.view-more-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color); /* Adjust button color */
    color: #fff; /* Text color */
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    text-align: center; /* Ensure text inside the button is centered */
    max-width: 200px; /* Optional: control button width */
}

.view-more-btn:hover {
    background-color: darken(var(--secondary-color), 10%); /* Darken on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-layout {
        grid-template-columns: 1fr;
    }
}




/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

/* Links inside dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
}

/* Change background color on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown content only on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change dropdown button background on hover */
.dropdown:hover .dropbtn {
    background-color: #575757;
}
/* Styles for small screens */
@media screen and (max-width: 768px) {
    .navigation {
        flex-direction: column;
    }

    .dropdown-content {
        position: relative;
        width: 100%; /* Full width for small screens */
    }

    /* Show dropdown on click instead of hover for small screens */
    .dropdown-content.show {
        display: block;
    }
}



/*Media*/
@media(min-width:1220px){
    .container{
        max-width: 1160px;
    }
}
@media(max-width:1000px){
    .toggleMenu{
        display: flex;
        cursor: pointer;
        background-color: transparent;
        background-image: url(assets/menu.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 30px;
        width: 30px;
        height: 30px;
        border: 0;
        z-index: 1000;
        transition: background-size 0.5s ease-in-out;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -ms-transation:0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
    }
    .toggleMenu.active{
        position: fixed;
        right: 5%;
        background-image: url(assets/close.png);
        background-size: 25px;
    }
    nav{
        position: absolute;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        min-height: 0;
        opacity: 0;
        transform: scale(0) ;
       -webkit-transform: scale(0);
       -moz-transform: scale(0)g;
       -ms-transform: scale(0);
       -o-transform: scale(0);
       transition: opacity 0.5s ease-in-out;
        -webkit-transition: opacity 0.5s ease-in-out;
        -moz-transition: opacity 0.5s ease-in-out;
        -ms-transation:opacity 0.5s ease-in-out;
        -o-transition: opacity 0.5s ease-in-out;
    }
    nav.active{
        position: fixed;
        min-height: 100%;
        opacity: 1;
        background-color: var(--c1--1--);
        z-index: 999;
        transform: scale(1) ;
       -webkit-transform: scale(1);
       -moz-transform: scale(1)g;
       -ms-transform: scale(1);
       -o-transform: scale(1);
    }
    .logos{
        justify-content: center;
    }
    
}