*{
    padding: 0;
    margin: 0;
}
body{
  scroll-behavior: smooth;
 }
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
  }
  header .navbar{
    position: fixed;
  }
  .nav-toggle {
    display: none;
    background-color: #fff;
    border: 1px solid #333;
    padding: 5px 10px;
    border-radius: 5px;
  }
  nav ul {
    list-style-type: none;
    display: flex;
  }
  nav li {
    margin-right: 40px;
  }
  nav li:last-child {
    margin-right: 0;
  }
  nav a {
    color: #373c45;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
  }
 header img {
    height: 60px;
  }
  .image-container {
    background-size: cover;
    width: 100%;
    position: relative;;
    height: 500px;
    background-image: url(images/./main-img.webp);
  }
  .text {
    width: 50%;
    padding: 0 60px;
    position: absolute;
    top: 30%;
    color: white;
    font-size: 25px;
    font-weight: bold;
  }
  .button{
    background-color: #f9f515;
    line-height: 30px;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    margin: 2% 0;
    display: table;
    border-radius: 5px;
  }
  .logos{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 40px 40px;
    background-color: #373c45;
  }
  .logos p{
    margin-top: 10px;
    line-height: 30px;
    color: white;
    font-size: 18px;
    font-weight: 700;
  }
  .logos div, .aboutlogo div{
    width: 100%;
    padding: 1%;
  }
  .abouttext{
    display: grid;
    line-height: 1.8;
    margin: 0 10px;
  }
  .abouthalf{
    line-height: 2; padding: 2% 0;
  }
  .aboutlogo{
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    padding: 40px 40px;
  }
  .aboutlogo p{
    margin-top: 10px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 700;
  }
  .aboutlogo h1{
    font-size: 60px;
    color: #f9f515;
  }
  #about img{
    height: fit-content;
    width: 40%;
    position: relative;
  }
  #about{
    display: flex;
  }
  iframe{
    width: 100%;
    height: 100vh;
  }
footer a img{
    margin-right: 5%;
    margin-bottom: -18px;
}
.footer{
  display: flex;
  background: #373c45;
  padding: 3% 0;
  justify-content: center;
}
.footerlogo{
    width: 30%;
}
.footlogo{
    height: 50px;
    background: white;
    border-radius: 5px;
}
footer a{
    width: 75%;
    text-decoration: none;
    color: white;
}
footer h2{
    text-decoration: none;
    color: white;
}
.footerservices{
    display: grid;
    grid-gap: 5%;
}
.footerservices div{
    align-items: center;
    display: flex;
    color: white;
    margin: 3% 0;
}

.area-item {
    width: 100%;
    text-align: center;
    position: relative;
    
}
.center:before {
    border-top: 2px solid #f3b925;
    border-bottom: 2px solid #f3b925;
    transform: scale3d(0,1,1);
}
.center:before, .center:after {
    box-sizing: inherit;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -2px;
    left: 0;
    height: 100%;
    transform-origin: center;
    z-index: 1;
}
.center:after {
    border-left: 2px solid #f3b925;
    border-right: 2px solid #f3b925;
    transform: scale3d(1,0,1);
}
.center:after {
    top: 0;
    left: 0;
    width: calc(100% - 4px);
}
.center:hover:before, .center:hover:after {
    transform: scale(1,1);
    transition: transform .5s;
}

@media (max-width: 1075px) {
    .logos {
        display: grid;
        grid-template-columns: 50% 50%;
    }
}
@media (max-width: 1024px) {
    nav ul{
        display: grid;
        line-height: 40px;
    }
    header img {
        height: 100px;
    }
    .text h1{
      font-size: 30px;
      margin-bottom: 10%;
    }
    .aboutlogo{
      display: grid;
      grid-template-columns: 50% 50%;
    }
    .abouthalf{
      font-size: 14px;
    }
}

@media (max-width: 780px) {
    .logos img{
        width: 30%;
    }
    .logos p{
        font-size: 14px;
    }
    #about{
      text-align: -webkit-center;
      justify-items: center;
      display: grid;
      padding: 2%;  
    }
    nav li{
      margin-right: 0;
    }
    header{
      text-align: center;
      display: grid;
      justify-content: center;
    }
 }

 @media (max-width: 900px) {
  .footer{
    display: flex;
    justify-content: center;
  }
  footer a img {
    margin-right: 6%;
  }
  .footerlogo {
    width: 65%;
}
.aboutlogo, .logos {
  display: flex;
  flex-direction: column;
}
 }
@media (max-width: 590px) {
  .footerlogo {
    padding: 7% 0;
    width: auto;
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footerservices {
  text-align-last: center;
}
footer a {
  width: auto;
}
}