@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
 
}

body {
  color: #fff;
  background: #242629;
}

.about-us,
.about-us1 {
  height: auto;
  padding: 30px 0;
  background: #242629;
}

.pic {
  width: 302px;
  height: auto;
}
.pic2 {
    width: 302px;
    height: auto;
  }
.about {
  max-width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #242629;
  padding-top: 5%;
}
.about1{
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #242629;
}

.text {
  width: 100%;
  padding: 0 15px;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.text h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  line-height: 2;
}

.text h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 2;
}

.text p {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  line-height: 2;
}

.data {
  margin-top: 20px;
}

.hire{
    font-size: 18px;
    background: #34a58e;
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 8px 25px;
    border-radius: 6px;
    transition: 0.5s;
    cursor: pointer;
  }
  .hire:hover{
    background: #34a58e;
    border: 1px solid #34a58e;
    cursor: pointer;
  }

a {
  color: #34a58e;
  text-decoration: none;
}

a:hover {
  border-bottom-color: transparent;
  color: #34a58e;
}

#nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 1.5em 0 1.5em 0;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 50%;
}
#nav ul li :hover{
    content: '';
    transition: 0.5s;
    color:  #34a58e;
}

    #nav > ul {
        line-height: 0px;
        position: relative;
        display: inline-block;
        margin: 0;
        height: 21px;
        
    }

        #nav > ul:before, #nav > ul:after {
            content: '';
            display: block;
            width: 300%;
            position: absolute;
            top: 50%;
            margin-top: -2px;
            height: 5px;
            
        }

        #nav > ul:before {
            left: 100%;
            margin-left: 1px;
        }

        #nav > ul:after {
            right: 100%;
            margin-right: 1px;
        }

        #nav > ul > li {
            display: inline-block;
            margin: -9px 0.5em 0 0.5em;
            border-radius: 0.5em;
            padding: 0.85em;
            border: solid 1px transparent;
            -moz-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
            -webkit-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
            -ms-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
            transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
        }

            #nav > ul > li.active {
                border-color: rgba(192, 192, 192, 0.35);
            }

            #nav > ul > li > a, #nav > ul > li > span {
                display: block;
                color: inherit;
                text-decoration: none;
                border: 0;
                outline: 0;
            }

            #nav > ul > li > ul {
                display: none;
            }

@media only screen and (min-width: 768px) {
  .about,
  .about1 {
    flex-direction: row;
  }

  .text {
    width: 540px;
    padding: 0 30px;
  }
}
@media only screen and (max-width:621px){
    .about{
        padding-top: 20%;
    }
}