body {
  background: linear-gradient(90deg, #030712, #002645);
}

/*--------------------------------------------------------------
  # Electronic and 3D Desing Section
  --------------------------------------------------------------*/

.container-services{
  padding: 0 5%;
  padding-top: 10vh;
  width: 100%;
  height: auto;
}

.electronic,
.maintenance {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.desing3d {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5%;
}

.electronic-img {
  position: relative;
  width: 40%;
  height: auto;
}

.electronic-img img,
.desing3d-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 10% 0;
}

.desing3d-img {
  width: 40%;
  height: auto;
}

.container-services .text {
  width: 55%;
  color: white;
}

.container-services .text h1{
  margin: 0 5%;
  font-size: 50px;
  padding: 30px 0;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #0B5ED7;
}

.container-services .text h2{
  text-align: center;
  font-size: 25px;
  letter-spacing: 1px;
}

.container-services .button{
  width: 100%;
  display: flex;
  justify-content: end;
}

.container-services a{
  background-color: transparent;
  min-width: 130px;
}

@media (max-width: 900px) {

  .container-services{
    margin-top: 15vh;
    padding: 0 10%;
  }
  
  .electronic,
  .desing3d{
    margin-top: 5%;
  }

  .electronic .text,
  .desing3d .text{
    width: 100%;
  }
  .electronic .text h1,
  .desing3d .text h1{
    margin-bottom: 70% !important;
  }
  .electronic-img,
  .desing3d-img{
    position: absolute;
    width: 100%;
    left: 0;
    top: 20%;
  }

  section{
    padding: 0 5%;
  }
}

  /*--------------------------------------------------------------
    # Work Process Section
    --------------------------------------------------------------*/
  section,
  .section {
    color: #444444;
    scroll-margin-top: 88px;
    overflow: clip;
    background: linear-gradient(180deg, #030712, #003561);
    padding-bottom: 50px;
  }
/*   
  @media (max-width: 1199px) {
  
    section,
    .section {
      scroll-margin-top: 66px;
    }
  } */
  
  .services .text {
    color: white;
    text-align: center;
    padding: 5% 0;
  }
  
  .services .text h1 {
    font-size: 50px;
  }
  
  .container .text p {
    font-family: 'Bebas Neue', sans-serif !important;
    color: #ccc;
    letter-spacing: 1px;
    font-size: 20px;
  }
  
  .services .service-item {
    height: 100%;
    padding: 30px 30px;
    transition: all ease-in-out 0.4s;
    color: black;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
  }
  
  .services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 25px;
    letter-spacing: 1px;
  }
  
  .services .service-item h4 a {
    color: #37517e;
    transition: ease-in-out 0.3s;
  }
  
  .services .service-item p {
    margin-bottom: 0;
  }
  
  .services .service-item:hover {
    transform: translateY(-10px);
  }
  
  .services .service-item:hover h4 a {
    color: #47b2e4;
  }
  
  .service-item img {
    width: 60%;
    margin-left: 20%;
    margin-bottom: 10%;
  }

  @media (max-width: 700px) {
  
    .services .text h1 {
      font-size: 40px !important;
    }

    .service-item img{
      width: 40%;
      margin-left: 30%;
      margin-bottom: 3%;
    }
  }

  /*--------------------------------------------------------------
    # CONTACT
    --------------------------------------------------------------*/

.contact {
  width: 90%;
  margin-left: 5%;
  height: fit-content;
  margin-top: 5%;
  border-radius: 10px;
  background: linear-gradient(90deg, #030712, #002645);
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.contact .text {
  text-align: left;
}

.contact .text h3 {
  margin: 0;
  font-size: 40px;
}

.contact .text p {
  margin: 0;
}

.contact a{
  width: 300px !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 35px !important;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  transition: 0.3s;
}

.contact a p{
  margin: 0 !important;
}

.contact .btn {
  height: 60%;
  width: 25%;
  background-color: #f8f8f8;
  color: black !important;
  font-size: 20px;
  border-color: white;
}

.contact .btn:hover {
  background-color: #ccc;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}


@media (max-width: 1000px) {
  
  .contact a{
    width: 15% !important;
  }

  .contact a p{
    display: none ;
  }
}

@media (max-width: 700px) {
 
  .contact{
    width: 112%;
    margin-left: -6%;
    margin-top: 10%;
    border-radius: 0;
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 7% 5%;
  }

  .contact .text{
    text-align: center;
  }

  .contact h3{
    scale: 0.9;
  }

  .contact a{
    width: 80% !important;
    margin-left: 10%;
    gap: 3%;
  }

  .contact a p{
    display: block;
    padding: 5%;
    font-size: 30px;
  }
}

@media (max-width: 500px) {

  
  
  .contact a p{
    font-size: 25px;
  }
  .contact a{
    height: 80% !important;
  }
}

@media (max-width: 400px) {

  .contact .text{
    margin-bottom: 5%;
  }

  .contact a p{
    display: none;
  }

  .contact a{
    width: 60% !important;
    margin-left: 20%;
  }
}