*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
 }
 html {
     font-size: 10px;
     font-family:'poppins', sans-serif;
     scroll-behavior: smooth;
     background-color: #000;
 }
 .material-icons-outlined {
    vertical-align: middle;
    line-height: 1px;
    color: #9799ab;
    margin-left: -30px;
  }
 a{
     text-decoration: none;
 }

 .container {
     min-height: 100vh;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0 1em;
 }
h1 {
     font-size: 2rem;
     text-transform: uppercase;
     color: #fff;;
 }

.section-title{
    font-size: 4rem;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .2rem;
    text-align: center;
}
.section-title span{
    color: crimson;
} 
/* hero section */
 #hero {
    background: #fff;
    position: relative;
    flex-direction: column;
}
#hero .hero {
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

#hero .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin-left: 0px;
    flex-direction: row;
}

#hero .nav-bar .brand h2{
    color: #000;
    font-size: 7.5rem;
    margin-left: -7%;
}


#hero .nav-bar .brand p{
    color: #000;
    margin-top: 30px;
    margin-bottom: 5px;
    margin-left: -7%;
    font-size: 2.8rem;
}

#hero .nav-bar .brand .button{
    width: 20%;
    padding: 12px 20px;
    margin: 20px 0;
    display: inline-block;
    border: 1px solid #0e1133;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #0e1133;
    font-weight: 600;
    color: #fff;
    margin-left: -7%;
    
  }

#hero .nav-bar .brand .button:hover  {
    background-color: #fff;
    color: #000000;
}
#hero .nav-bar .brand .button1{
    width: 20%;
    padding: 12px 20px;
    margin: 20px 0;
    display: inline-block;
    border: 1px solid #0e1133;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #fff;
    font-weight: 600;
    color: #000000;
    margin-left: 20px;
  }
  #hero .nav-bar .brand  .button1:hover{
    background-color: #0e1133;
    color: #fff;
}
#hero .nav-bar   img {
    border-radius: 10px;
    height: 550px;
    width: 420px;
}
 /* end of hero section */
/*service section*/
#services .services {
    background: #E6E6E6;
    position: relative;
    flex-direction: column;
    margin-top: 1%;
}
#services .services {
    position: relative;
    flex-direction: column;
    margin-top: 1%;
}
#services .head h1{
    margin-left: -5%;
    color: #000000;
}
#services .all-projects{
    display: grid;
    margin-left: 5%;
    margin-bottom: 1%;
    grid-template-columns: 1fr 1fr 1fr;
    gap: px;
}

#services .project-info {
    padding: 25px;
    flex-basis: 50%;
    background-color: transparent;
    height: 100%;
    width: 90%;
    display: grid;
    border-radius: 5px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #000000;
}

#services .project-info h1{
    color: #000000;
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: inherit;
    margin-bottom: 15px;
}
#services .project-info p{
    color: #000000;
    font-size: 2.5rem;
}



/*end service section/

/* start of services */
#services1 {
    background: #0c0d11;
    position: relative;
    flex-direction: column;
    margin-top: 1%;
}
#services1  .services1 {
    padding-bottom: 10px;
    
}
#services1 .head h1{
    margin-top: 3%;
    margin-bottom: 100%;
    margin-left: 1%;
    margin-right: -8%;
    color: #add8e6;
}
#services1 .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin-top: -35%;
    margin-left: -73%;
    margin-bottom: -35%;
    margin-right: 20%;
    flex-direction: row;
}

#services1 .chevron {
    width: 0;
    height: 0;
    margin-bottom: -6%;
    margin-left: -6%;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #808080;
    clip-path: polygon(0 50%, 40% 51%, 40% 50%, 39% 50%, 40% 50%, 100% 50%, 50% 100%);
  }
#services1 .nav-bar .brand h2{
    color:#a0c6d3;
    font-size: 7.5rem;
    margin-left: 10%;
}

#services1 .all-projects {
    margin-left: 20%;
    margin-top: 10%;
}
#services1 .project-info {
    padding: 25px;
    flex-basis: 50%;
    background-color: #0c0d11;
    height: 70%;
    width: 140%;
    margin-right: -10%;
    display: grid;
    border-radius: 5px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #000000;
}

#services1 .project-info h1{
    color: #add8e6;
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: inherit;
    margin-bottom: 15px;
}
#services1 .project-info p {
    color: #fff;
    font-size: 2.5rem;
    position: relative;
    width: 90%;
    animation: movedown 6s linear forwards;
    opacity: 0;
}
@keyframes movedown {
    0% {
        opacity: 1;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
#services1 .project-info p::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: gray;
    top: 0;
    left: -3.5%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;
}
@keyframes moveline {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

#services1 .nav-bar   img {
    border-radius: 10px;
    height: 550px;
    width: 420px;
    margin-left: 50%;
}
/* end of services */
/*service section*/
#services2 .services2 {
    background: #0c0d11;
    position: relative;
    flex-direction: column;
    margin-top: 1%;
}
#services2 .head h1{
    margin-left: -15%;
    color: #add8e6;
}
#services2 .all-projects{
    display: grid;
    margin-left: 30px;
    margin-bottom: 1%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-left: 10%;
}
#services2 .all-projects1{
    display: grid;
    margin-left: 30px;
    margin-bottom: 1%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-left: 10%;
}
#services2 .project-info {
    padding: 25px;
    flex-basis: 50%;
    background-color: #0c0d11;
    height: 100%;
    width: 90%;
    display: grid;
    border-radius: 5px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #000000;
}

#services2 .project-info h1{
    color: #add8e6;
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: inherit;
    margin-bottom: 15px;
}
#services2 .project-info p{
    color: #fff;
    font-size: 2.5rem;
}

#services2 .project-info li{
    color: #000000;
    font-size: 1.5rem; 
    margin-left: 120px;
}

#services2 .squareBase  {
    border-radius: 10%;
  }
#services2 .brand {
    margin-top: 20px;
    margin-bottom: -70px;
    margin-left:-40px ;
}
#services2 .square6 {
    align-items: flex-end;
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    background: #deb887;
    border: 2px solid #deb887;
}
#services2 .square6 a {
 align-items: center;
  margin-left: 25%;
  margin-top: 15%;
  font-size: 3.5rem;
  color: #000;
}
/*end service2 section/
/*service section*/
#services3 .services3 {
    background: #0c0d11;
    position: relative;
    flex-direction: column;
    margin-top: 1%;
}
#services3 .head h1{
    margin-top: -2%;
    margin-left: -2%;
    color: #add8e6;
}
#services3 .all-projects{
    display: grid;
    margin-left: 30px;
    margin-bottom: 5%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-left: 5%;
}
#services3 .all-projects1{
    display: grid;
    margin-left: 30px;
    margin-bottom: 1%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-left: 5%;
}
#services3 .project-info {
    padding: 25px;
    flex-basis: 50%;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    height: 100%;
    width: 90%;
    display: grid;
    border-radius: 5px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #000000;
}

#services3 .project-info h1{
    color: #add8e6;
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: inherit;
    margin-bottom: 15px;
}
#services3 .project-info p{
    color: #fff;
    font-size: 2.5rem;
}

/*end service2 section/

/*service section*/
#services5 .services5 {
    background: #0c0d11;
    position: relative;
    flex-direction: column;
    margin-top: 1%;
}
#services5 .head h1{
    margin-left: -10%;
    color: #add8e6;
}
#services5 .all-projects{
    display: grid;
    margin-left: 30px;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-left: 5%;
}

#servicese5.project-info {
    padding: 25px;
    flex-basis: 50%;
    background-color: #0c0d11;
    height: 100%;
    width: 80%;
    display: grid;
    border-radius: 5px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #000000;
}

#services5 .project-info h1{
    color: #add8e6;
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: inherit;
    margin-bottom: 15px;
}
#services5 .project-info p{
    color: #fff;
    font-size: 2.5rem;
}
/*end service section/
/*service section*/
#services6 .services6 {
    background: #0c0d11;
    position: relative;
    flex-direction: column;
    margin-top: 1%;
}
#services6 .head h1{
    margin-top: 2%;
    margin-bottom: 1%;
    margin-left: 10%;
    margin-right: -8%;
    color: #add8e6;
}
#services6 .bond {
    margin-right: 30%;
    margin-left: 3%;
}
#services6 img {
    margin-left: -107%;
    margin-bottom: -155%;
    margin-top: 10%;
    width: 420px;
    height: 550px;
}
#services6 .all-projects{
    margin-top: 1%;
    margin-left: 40%;
    margin-right: -20%;
}
#services6 .project-info {
    padding: 25px;
    flex-basis: 50%;
    background-color: #0c0d11;
    height: 1%;
    width: 90%;
    margin-left: 2%;
    margin-top: -25%;
    display: grid;
    border-radius: 5px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #000000;
}

#services6 .project-info h1{
    color: #add8e6;
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: inherit;
    margin-bottom: 15px;
}
#services6 .project-info p{
    color: #fff;
    font-size: 2.5rem;
}

#services6 .project-info li{
    color: #000000;
    font-size: 1.5rem; 
    margin-left: 120px;
}


#services6 .brand {
    margin-top: 20px;
    margin-bottom: -70px;
    margin-left:-20px ;
}
#services6 .square1 {
    align-items: flex-end;
    width: 50px;
    height: 150px;
    margin-bottom: 2%;
    background: #808080;
    border: 2px solid #808080;
    clip-path: polygon(100% 88%, 53% 100%, 0 88%, 0 0, 52% 14%, 100% 0);
}
#services6 .square1 li {
 align-items: center;
 list-style: none;
  margin-left: 18%;
  margin-top: 28%;
  font-size: 5.5rem;
  color: #000;
}
#services6 .square2 {
    align-items: flex-end;
    width: 50px;
    height: 150px;
    margin-bottom: 2%;
    background: #808080;
    border: 2px solid #808080;
    clip-path: polygon(100% 88%, 53% 100%, 0 88%, 0 0, 52% 14%, 100% 0);
}
#services6 .square2 li {
 align-items: center;
 list-style: none;
  margin-left: 18%;
  margin-top: 28%;
  font-size: 5.5rem;
  color: #000;
}
#services6 .square3 {
    align-items: flex-end;
    width: 50px;
    height: 150px;
    margin-bottom: 2%;
    background: #808080;
    border: 2px solid #808080;
    clip-path: polygon(100% 88%, 53% 100%, 0 88%, 0 0, 52% 14%, 100% 0);
}
#services6 .square3 li {
 align-items: center;
 list-style: none;
  margin-left: 18%;
  margin-top: 28%;
  font-size: 5.5rem;
  color: #000;
}
/*end service2 section/
/* start of services */
#services4 {
    background: #0c0d11;
    position: relative;
    flex-direction: column;
    margin-top: 1%;
}
#services4  .services4 {
    padding-bottom: 10px;
   
}
#services4 .head h1{
    margin-top: -14%;
    margin-bottom: 100%;
    margin-left: 20%;
    margin-right: -30%;
    color: #add8e6;
}
#services4 .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin-top: 15%;
    margin-left: -52%;
    flex-direction: row;
}
#services4 .chevron {
    width: 0;
    height: 0;
    margin-bottom: -6%;
    margin-left: -6%;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #808080;
    clip-path: polygon(0 50%, 40% 51%, 40% 50%, 39% 50%, 40% 50%, 100% 50%, 50% 100%);
  }
#services4 .nav-bar .brand h2{
    color:#a0c6d3;
    font-size: 7.5rem;
    margin-left: 10%;
}
#services4 .all-projects{
    margin-right: -45%;
    margin-left: 25%;
    margin-top: -5%;
}

#services4 .project-info {
    padding: 25px;
    flex-basis: 50%;
    background-color: #0c0d11;
    height: 50%;
    width: 90%;
    margin-left: 7%;
    display: grid;
    border-radius: 5px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #000000;
}

#services4 .project-info h1{
    color: #add8e6;
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: inherit;
    margin-bottom: 15px;
}
#services4 .project-info p {
    color: #fff;
    font-size: 2.5rem;
    position: relative;
    width: 90%;
    animation: movedown 6s linear forwards;
    opacity: 0;
}
@keyframes movedown {
    0% {
        opacity: 1;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
#services4 .project-info p::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: gray;
    top: 0;
    left: -3.5%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;
}
@keyframes moveline {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
#services4 .project-info li {
    color: #fff;
    font-size: 2.5rem;
    position: relative;
    width: 90%;
    animation: movedown 6s linear forwards;
    opacity: 0;
}
@keyframes movedown {
    0% {
        opacity: 1;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
#services4 .project-info li::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: gray;
    top: 0;
    left: -3.5%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;
}
@keyframes moveline {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
#services4 .nav-bar   img {
    border-radius: 10px;
    height: 550px;
    width: 420px;
    margin-bottom: 20%;
    margin-top: -40%;
    margin-left: -210%;
}
/* end of services */
                                                                                                               
 
/*key frames*/
@keyframes hamburger_puls {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}
@keyframes text_reveal_box{
 50% {
    width: 100%;
    left: 0;
}
 100% {
    width: 0;
    left: 100%;
}
}
@keyframes text_reveal{
    100% {
        color: white;
    } 
}
@keyframes text_reveal_name{
    100%{
        color: crimson;
        font-weight: 500px;
    }
}
/*end key frames*/

/* media query */

/* media query for tablet*/
@media only screen and (max-width:768px){
    .cta {
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    h1 .section-title {
        font-size: 6rem;
    } 
}
