* {
    margin: 0;
    padding: 0;
  }


.body-container{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

  @media (max-width:800px){
    .body-container {
        margin: 0;
        width: 100%;
      }
  }

#home{
    display: flex;
    width: 100%;
    padding-bottom: 150px;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

@media (max-width:800px){
    #home{
        margin: 0;
        display: flex;
        gap: 100px;
        width: 100%;

      }
  }

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 80px;
    padding-left: 60px;
    gap: 80px;
    height: 150px; 
    transition: transform 0.3s ease-in-out;
}

@media (max-width:800px){
    .header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding:0px;
    margin: 0px;
    height: 100%;
    max-width: 100%;
      }
  }


.header:hover{
    opacity: 0.7;
    transform: scale(1.1);
}

@media (max-width:800px){
    .header:hover{
        opacity: 1;
        transform: none;
    }
}

.logo {
    display: flex;
    align-items: start;
    gap: 5px;
    margin: auto 0;
    
}

.logo-img {
    aspect-ratio: 1.07;
    object-fit: contain;
    object-position: top;
    width: 250px;
    overflow: hidden;
    max-width: 100%;
    flex-shrink: 0;
    padding-top: 60px;
    padding-right:20px;
}

@media (max-width:800px){
    .logo-img {
        display: flex;
        width: 150px;
        position: absolute;
        right: 0px;
        top: -20px;
    }
}

@media (min-width:801px) and (max-width:1119px){
    .logo-img {
        object-position: top;
        width: 200px;
        overflow: hidden;
        max-width: 100%;
        padding-top: 60px;
        padding-right:0px;
    }
}

ul {
    list-style: none;
    justify-content: center;
    align-items: center;
    align-self: auto;
    display: flex;
    flex-direction: row;
    gap: 56px;
    margin: auto 0;
    object-fit: contain;
    padding-left: 240px; 
}

@media (max-width:800px){
        ul {
            list-style: none;
            flex-direction: column;
            display: flex;
            align-items: flex-start;
            padding: 60px;
          }
      }

      @media (min-width:801px) and (max-width:1334px){
        ul {
            gap: 50px;
            margin: auto 0;
            object-fit: contain;
            padding-left: 100px; 
          }
      }

      @media (max-width:1200px){
        ul {
            gap: 30px;
            margin: auto 0;
            object-fit: contain;
            padding-left: 100px; 
          }
      }
      

    @media (max-width:800px) {
        #sidebar {
          position: absolute;
          width: 300px;
          height: 900px;
          background: black;
          transition: 0.4s;
          left: -300px;
        }
        }
  
    
     @media (max-width:800px){
        #sidebar.active {
            left: 0px;
        }
     }

    @media (max-width:800px){
        #togglebtn {
            position: absolute;
            top: 30px;
            left: 310px;
          }
        }

        @media (max-width:800px){
            #togglebtn span {
                width: 30px;
                height: 4px;
                display: block;
                margin-top: 4px;
                background: rgba(150, 101, 187, 0.85); 
            }
        }

.Contact a {
    color: #ffff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    text-decoration: none;
}
@media (max-width: 800px) {
    .Contact a {
        color: white; 
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        text-transform: capitalize;
        text-decoration: none;
    }
}

.navtext a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    text-decoration: none;
}

@media (max-width: 800px) {
        .navtext a {
            color: rgba(150, 101, 187, 0.85); 
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            text-transform: capitalize;
            text-decoration: none;
        }
}

#sidebar a:hover {
    color: lightsalmon;
}

 @media (max-width:800px) {
    #sidebar a:hover {
        color: lightsalmon;
    }
 }

.Contact {
    background-color: rgba(150, 101, 187, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 5px;
    padding: 12px 36px
}

@media (max-width:800px){
    .Contact{
        background-color: rgba(150, 101, 187, 0.85);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 2px;
        padding: 6px 8px;

    }
}

.main-content {
    display: flex;
    max-width: 1280px;
    justify-content: space-between;
    align-items: center;
    gap:80px;
}

@media (max-width:800px){
    .main-content {
        display: flex;
        width: 95%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding-left: 10px;
        padding-right: 10px;

    }
}

@media (max-width:1333px){
    .main-content {
        display: flex;
        max-width: 100%;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width:1200px){
    .main-content {
        display: flex;
        max-width: 100%;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding-left: 10px;
        padding-right: 10px;

    }
}

.left-content {
    display: flex;
    width: 620px;
    max-width: 620px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    gap: 72px;
}

@media (max-width:800px){
    .left-content {
        display: flex;
        width: 95%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

@media (max-width:800px){
    .text-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.title {
    flex: 1 0 0;
    align-self: stretch;
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 57.6px */
}

@media (max-width:800px) {
    .title {
        flex: 1 0 0;
        align-self: stretch;
        font-size: 30px;
    }
 }

.description {
    align-self: stretch;
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    text-transform: capitalize;
}

@media (max-width:800px) {
    .description {
        align-self: stretch;
        font-size: 14px;
    }
 }

.contact-spacing{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 10px;
    align-self: stretch;
}

@media (max-width:800px) {
    .contact-spacing {
        align-self: center;
    }
 }

.Contact-btn a {
    background-color: rgba(150, 101, 187, 0.85);
    display: flex;
    justify-content: center;
    color: #FFF;
    align-items: center;
    gap: 16px;
    border-radius: 5px;
    padding: 12px 36px;
    text-decoration: none;
}

@media (max-width:800px) {
    .Contact-btn a {
        font-size: 14px;
        gap: 8px;
        border-radius: 3px;
        padding: 8px 20px;
    }
 }

.Contact-btn a:hover {
    color: lightsalmon;
}

.statistics {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

@media (max-width:800px) {
    .statistics {
        gap: 20px;
        align-items: flex-start;
    }
 }

.stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@media (max-width:800px) {
    .stats {
        gap: 5px;
    }
 }

.number {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 32px */
    text-transform: capitalize;
}

@media (max-width:800px) {
    .number {
        font-size: 25px;
        font-weight: 600;
    }
 }

.label{
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
}

@media (max-width:800px) {
    .label {
        font-size: 13px;
    }
 }

.right-content {
    width: 540px;
    height: 542px;
}

@media (min-width: 391px) and (max-width: 800px) {
    .right-content {
        width: 95%;
        max-height: 50%;
        align-items: center;
        align-self: center;
        justify-content: center;
        display: flex;
        margin-top: -50px;
        margin-bottom: -150px;

    }
 }

 @media (min-width: 320px) and (max-width: 390px) {
    .right-content {
        max-width: 100%;
        max-height: 50%;
        align-items: center;
        justify-content: center;
        align-self: center;
        display: flex;
        margin-top: -100px;
        
    }
 }

 .img1 {
    width: 100px;
    height: 542px;
    flex-shrink: 0;
    border-radius: 8px;
}
@media (min-width: 801px) and (max-width: 970px) {
    .img1 {
        width: 70px;
        height: 540px;
        flex-shrink: 0;
    }
 }

@media (min-width: 971px) and (max-width: 1200px) {
    .img1 {
        width: 85px;
        height: 540px;
        flex-shrink: 0;
    }
 }

@media (min-width: 391px) and (max-width: 800px) {
    .img1 {
        width: 70px;
        height: 400px;
        flex-shrink: 0;
    }
 }

 @media (min-width: 320px) and (max-width: 390px) {
    .img1 {
        width: 30px;
        height: 400px;
        flex-shrink: 0;
    }
 }

.img2 {
    width: 100px;
    height: 475px;
    flex-shrink: 0;
    border-radius: 8px;
    padding-top: 43px;
    padding-bottom: 24px;
}
@media (min-width: 801px) and (max-width: 970px) {
    .img2 {
        width: 70px;
        height: 470px;
        flex-shrink: 0;
    }
 }
@media (min-width: 971px) and (max-width: 1200px) {
    .img2 {
        width: 85px;
        height: 470px;
        flex-shrink: 0;
    }
 }
@media (min-width: 391px) and (max-width: 800px) {
    .img2 {
        width: 70px;
        height: 350px;
        flex-shrink: 0;
    }
 }
 @media (min-width: 320px) and (max-width: 390px) {
    .img2 {
        width: 30px;
        height: 350px;
        flex-shrink: 0;
    }
 }

.img3 {
    width: 100px;
    height: 542px;
    flex-shrink: 0;
    border-radius: 8px;
}
@media (min-width: 801px) and (max-width: 970px) {
    .img3 {
        width: 70px;
        height: 540px;
        flex-shrink: 0;
    }
 }
@media (min-width: 971px) and (max-width: 1200px) {
    .img3 {
        width: 85px;
        height: 540px;
        flex-shrink: 0;
    }
 }

@media (min-width: 391px) and (max-width: 800px) {
    .img3 {
        width: 70px;
        height: 400px;
        flex-shrink: 0;
    }
 }

 @media (min-width: 320px) and (max-width: 390px) {
    .img3 {
        width: 30px;
        height: 400px;
        flex-shrink: 0;
    }
 }

.img4 {
    width: 100px;
    height: 488x;
    flex-shrink: 0;
    border-radius: 8px;
    padding-top: 30px;
    padding-bottom: 24px;
}
@media (min-width: 801px) and (max-width: 970px) {
    .img4 {
        width: 70px;
        height: 480px;
        flex-shrink: 0;
    }
 }
@media (min-width: 971px) and (max-width: 1200px) {
    .img4 {
        width: 85px;
        height: 480px;
        flex-shrink: 0;
    }
 }

@media (min-width: 391px) and (max-width: 800px) {
    .img4 {
        width: 70px;
        height: 360px;
        flex-shrink: 0;
    }
 }
 @media (min-width: 320px) and (max-width: 390px) {
    .img4 {
        width: 30px;
        height: 360px;
        flex-shrink: 0;
    }
 }

.img5 {
    width: 100px;
    height: 542px;
    flex-shrink: 0;
    min-width: 55px;
    border-radius: 8px;
}
@media (min-width: 801px) and (max-width: 970px) {
    .img5 {
        width: 70px;
        height: 540px;
        flex-shrink: 0;
    }
 }

@media (min-width: 971px) and (max-width: 1200px) {
    .img5 {
        width: 85px;
        height: 540px;
        flex-shrink: 0;
    }
 }

@media (min-width: 391px) and (max-width: 800px) {
    .img5 {
        width: 70px;
        height: 400px;
        flex-shrink: 0;
    }
 }
 @media (min-width: 320px) and (max-width: 390px) {
    .img5 {
        width: 30px;
        height: 360px;
        flex-shrink: 0;
    }
 }

#services {
    display: flex;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 100px;
    margin-left: 0;
    margin-right: 0;
    height: 697px;
    justify-content: center;
    align-items: center;
    background:rgb(0, 0, 0);
    flex-direction: column;
}

@media (max-width: 800px) {
    #services {
        width: 100%;
        height: 100%;
        padding-top: 60px;
        padding-bottom: 50px;
    }
 }

.main-content2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 1222px;
    height: 100%;
}

@media (max-width: 900px) {
    .main-content2 {
        width: 100%;
        height: 100%;
        gap: 50px;
    }
 }

.text-content2{
    display: flex;
    padding-bottom:20px;
    padding-left:200px;
    padding-right:200px;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    flex-direction: column;
}

@media (max-width: 900px) {
    .text-content2 {
        width: 100%;
        height: 100%;
        gap: 20px;
        padding-left:0px;
        padding-right:0px;
    }
 }

.services-text{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
    flex: 1 0 0;
}

@media (max-width: 800px) {
    .services-text {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
    }
 }

.Explore-text{
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 48px */
    flex: 1 0 0;
}

@media (max-width: 800px) {
    .Explore-text {
        font-size: 30px;
        font-style: normal;
        font-weight: 600;
    }
 }

.card-container{
    display: flex;
    align-items: center;
    gap: 32px;
    align-self: stretch;
    height: 441px;
}

@media (max-width: 800px) {
    .card-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-self: stretch;
        height: 100%;
        width: 100%;
    }
 }

 @media (max-width: 1333px) {
    .card-container {
        gap: 15px;
    }
 }

.card{
    display: flex;
    width: 322px;
    height: 345px;
    padding: 48px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    border-radius: 8px;
    border: 0.5px solid rgba(150, 101, 187, 0.85);
    background: #000;
}

@media (max-width: 800px) {
    .card {
        display: flex;
        width: 322px;
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        border-radius: 8px;
        border: 0.5px solid rgba(150, 101, 187, 0.85);
    }
 }


.img-plan1{
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.img-plan2{
    width: 28.953px;
    height: 25.858px;
    flex-shrink: 0;
}

.img-plan1{
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.planning-text{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
    align-self: stretch;
}

.precise-text{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    align-self: stretch;
}

#about-us{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    width: 100%;
    height: 652px;
    padding-top: 120px;
    padding-bottom: 90px;
}

@media (max-width: 800px) {
    #about-us {
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 40px; 
    }
 }

.left-content3{
    width: 528px;
    height: 652px;
    border: 1px solid rgba(150, 101, 187, 0.85);
    border-radius: 3px;
}

@media (max-width: 800px) {
    .left-content3 {
        display: none;
    }
 }

.right-content3{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    width: 632px;
    height: 652px;
    padding-right:20px;
}

@media (max-width: 800px) {
    .right-content3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        height: 100%;
        gap: 30px;
        padding-left: 10px;
        padding-right: 10px;
    }
 }

.text-content3{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

@media (max-width: 800px) {
    .text-content3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
 }

.title3{
    color: rgba(0, 0, 0, 0.85);
    font-size: 16px;
    font-style: normal;
    font-weight: 500px;
    line-height: 30px; /* 187.5% */
    text-transform: capitalize;
    align-self: stretch;
}

.description3{
    color: black;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 48px */
    align-self: stretch;
}

@media (max-width: 800px) {
    .description3 {
        font-size: 30px;
        font-weight: 600px;
    }
 }

.content3{
    color: rgba(0, 0, 0, 0.75);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 187.5% */
    align-self: stretch;
}

@media (max-width: 800px) {
    .content3 {
        font-size: 16px;
        font-weight: 400px;
    }
 }

.get-in-touch{
    display: flex;
    padding: 12px 36px;
    align-items: flex-start;
    gap: 10px;
    background: rgba(150, 101, 187, 0.85);
    border-radius: 8px;
}

@media (max-width:800px) {
    .get-in-touch {
        gap: 8px;
        border-radius: 5px;
        padding: 8px 20px;
    }
 }

.get-in-touch-btn a{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
    text-decoration: none;
}
@media (max-width: 800px) {
    .get-in-touch-btn a {
        color: white; 
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        text-transform: capitalize;
        text-decoration: none;
    }
}

#projects{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 800px) {
    #projects {
        width: 100%;
        height: 100%;
    }
}

.projects-container{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
    padding-bottom: 80px;
    flex-direction: column;
}

@media (max-width: 800px) {
    .projects-container {
        width: 100%;
        height: 100%;
        gap: 40px;
        padding-bottom: 40px; 
    }
}

.text-content4{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

@media (max-width: 800px) {
    .text-content4 {
        gap: 10px;
        justify-content: flex-start;
        align-items: flex-start;
        padding-left:25px;
        width: 95%
    }
}

.projects {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 187.5% */
    text-transform: capitalize;
}

.executed{
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 48px */
    text-transform: capitalize;
    width: 694px;
}

@media (max-width: 800px) {
    .executed {
        font-size: 30px;
        font-weight: 600;
        width: 90%;
    }
}

.gallery {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 10px;
    border-style: solid;
    border-width: 3px;
    border-radius: 5px;
    border-left-color: rgba(150, 101, 187, 0.85);
    border-right-color: rgba(150, 101, 187, 0.85);
    padding: 5px 5px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 320px) and (max-width: 800px) {
    .gallery {
        grid-template-columns:repeat(2, 1fr);
        gap: 5px;
        align-self: center;
    }
}

@media (min-width: 801px) and (max-width: 1200px) {
    .gallery {
        grid-template-columns:repeat(3, 1fr);
        gap: 5px;
    }
}


.img_gallery {
    width: 300px;
    height: 300px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 800px) {
    .img_gallery {
        width: 200px;
        height: 200px;
    }
}

.img_gallery:hover {
    transform: scale(1.1);
}

#section5{
    display:flex;
    width: 100%;
    align-items: center;
    background: #000;
}

@media (max-width: 800px) {
    #section5 {
        width: 100%;
        height: 100%;
        background: none;
    }
}

.section5-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    height: 650px;
}

@media (max-width: 800px) {
    .section5-container {
        width: 100%;
        height: 250px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(150, 101, 187, 0.85);
    }
}

.image-right{
    width: auto;
    height: 440px;
    flex-shrink: 0;
    border-radius: 5px;
    background: lightgray 50%;
    position: absolute;
    right: 100px;
}

@media (max-width: 800px) {
    .image-right {
        display: none;
    
    }
}

.left-content5{
    display: inline-flex;
    padding: 80px 64px;
    width:568px;
    height: 200px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 5px;
    background: rgba(150, 101, 187, 0.85);
    position: absolute;
    left: 80px;
}
@media (max-width: 800px) {
    .left-content5 {
        display: flex;
        width: 100%;
        height: 350px;
        padding: 0px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        background: none;
        position: relative;
        left: -50px;
        border-radius: 0px;
    }
}
.text-ready{
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 75% */
    text-transform: capitalize;
    align-self: stretch;
}

@media (max-width: 800px) {
    .text-ready {
        font-size: 30px;
        font-weight: 500px; 
        align-items: center;
        justify-content: center;
        align-self: center;
        padding-left: 10px;
        padding-right: 10px;
    }
    }
   
    @media (max-width: 800px) {
        .text-content5 {
            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;
            justify-content: center;  
            padding-left: 100px;
        }
        }

.text-success{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 187.5% */
    text-transform: capitalize;
    width: 100%;
    height: 74px;
}

@media (max-width: 800px) {
    .text-success {
        font-size: 13px;
        font-weight: 500px; 
        align-items: center;
        justify-content: center;
        align-self: center;
        padding-left: 20px;
        width: 100%;
    }
}

.ready-btn{
    display: flex;
    padding: 12px 36px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 8px;
    background: white;
}

@media (max-width:800px) {
    .ready-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 5px;
        padding: 8px 20px;
    }
 }

.text-ready-btn{
    color: rgba(150, 101, 187, 0.85);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
}

@media (max-width: 800px) {
    .text-ready-btn {
        font-size: 14px;
        font-weight: 700px; 
    }
}
  

  #contactus{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  @media (max-width: 800px) {
    #contactus {
        width: 100%;
        align-self: center;
        align-items: center;
    }
}

  .footer-container{
    display: flex;
    align-items: center;
    gap: 60px;
    align-self: stretch;
    flex-direction: row;
    padding: 80px;
  }

  @media (max-width: 800px) {
    .footer-container{
        width: 100%;
        height: 100%;
        padding-bottom: 10px;

    }
}

  .footer-left{
    display: flex;
    width: 864px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  @media (max-width: 800px) {
    .footer-left {
        width: 100%;
        align-items: center;
        align-self: center;
        margin-top: -50px;
    }
}

@media (max-width: 1333px) {
    .footer-left {
        width: 100%;
        align-items: center;
        align-self: center;
        margin-top: -50px;
    }
}

    @media (max-width: 800px) {
        .footer-logo {
            display: flex;
            width: 150px;
            margin-left: -100px;
        }
    }


  .footer-left-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
  }

  .address{
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%; /* 21px */
    align-self: stretch;
  }

  .address-name{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    align-self: stretch;
    padding-left: 45px;
  }

  .phone{
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%; /* 21px */
    align-self: stretch;
  }

  .tel{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    align-self: stretch;
    padding-left: 45px;

  }

  .email{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    align-self: stretch;
    color: #000;
    padding-left: 45px;
  }

  .email_a{
    text-decoration: none;
    color:#000
  }

  .email_a:hover{
    color: rgba(150, 101, 187, 0.85);
  }

  .email_add{
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%; /* 21px */
    align-self: stretch;
  }

.socials{
    padding-top: 20px;
    align-items: flex-start;
}  

@media (max-width: 800px) {
    .socials {
        margin-left: -20px;
    }
}

  .fa {
    padding: 10px;
    font-size: 10px;
    width: 20px;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
  }

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-instagram {
  background: #dd4b39;
  color: white;
}

.footer-right{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    flex:1 0 0;
    width: 100%
  }

  @media (max-width: 800px) {
    .footer-right{
        display: none;
    }
}



.company-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 165px;
    align-self: stretch;
}

.help-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width:165px;
    align-self: stretch;
}

.footer-right-title{
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
    align-self: stretch;
}

.footer-right-text{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
    align-self: stretch;
}

.copyright{
    display: flex;
    color: rgba(150, 101, 187, 0.85);
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding-bottom: 20px;
}
@media (max-width: 800px) {
    .copyright{
        width: 100%;
        height: 100px;
        padding-bottom: 40px;
        font-size: 13px;
        

    }
}