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


.fullsection{
  background-color: black;
}

.fullsection .container {
  width: 100%;
  height: 100%;
  padding: 0px 8%;
  background-color: black;
  color: #fff;
}

.fullsection .container h1 {
  text-align: center;
  padding-top: 10%;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.fullsection .container h1::after {
  content: '';
  background: #cadb2a;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.fullsection .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.fullsection .service {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
}

.fullsection .service i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #cadb2a;
}

.fullsection .service h2 {
  font-weight: 600;
  margin-bottom: 8px;
}

.fullsection .service:hover {
  background: #cadb2a;
  color: rgb(4, 4, 4);
  transform: scale(1.05);
}

.fullsection .service:hover i {
  color: #fff;
}

  
.serviceextra {
  width: 100%;
  padding: 0 10%;
  display: table;
  margin: 0;
  max-width: none;
  background-color: #ffffff;
  height: 40vh;
}

.serviceextra .content {
  display: table-cell;
  vertical-align: middle;
  padding-top: 20%;
}

.serviceextra h1 {
  font-size: 5em;
  display: block;
  color: #080808;
  font-weight: 300;
}
.serviceextra h1 span{
  color: #cadb2a;
  
}

@media only screen and (max-width: 600px){
  .serviceextra {
    width: 100%;
    padding: 0 10%;
    height: 30vh;
  }
  .serviceextra h1 {
    font-size: 3em;
  }
}
