/* Services Section */
#services {
  padding: 2rem 0;
  /* Center align text */
  /* text-align: center; */
  width: 80%;
  margin: auto;
}
.services {
  background-color: #fcf4ec;
}

/* Home Section */
#home {
  width: 100%;
  height: 100vh;
  margin: auto;
  background: url(../images/Untitled\ design.png);
  background-size: cover;
}
#home .container {
  padding: 15rem 0;
  text-align: center;
  width: 60%;
  margin: auto;
}
#home h1 {
  font-size: 52px;
  font-weight: 800;
}
#home p {
  font-size: 32px;
  color: #333;
}

/* Offer Section */
.offer {
  padding: 30px 15%;
  margin-top: 60px;
}
.offer h1 {
  color: #020202;
  font-size: 32px;
  text-align: center;
}
.offer .content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 20px;
}
.offer .content div {
  background: #fff;
  padding: 40px;
  font-size: 13px;
  font-weight: 300;
  border-radius: 10px;
  transition: background 0.5s, transform 0.5s;
}
.offer .content div i {
  font-size: 50px;
  margin-bottom: 30px;
}
.offer .content div h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
.offer .content div p {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  margin-top: 20px;
  display: inline-block;
}
.offer .content div a {
  text-decoration: none;
  color: #ccc;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  margin-top: 20px;
  display: inline-block;
  background-color: #020202;
}
.offer .content div:hover {
  background: #7b0505;
  transform: translateY(-10px);
  color: #ccc;
}
.offer .content div:hover h2,
.offer .content div:hover p {
  color: #ccc;
}






















/* Services Offering Section */
.services-offering {
  padding: 30px 10%;
  margin-top: 60px;
  background-color: #fff;
}
.services-offering h1 {
  color: #020202;
  font-size: 32px;
  text-align: center;
}
.services-offering .contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 40px;
  margin-top: 20px;
}
.services-offering .contents div {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  transition: background 0.5s, transform 0.5s;
  box-shadow: #020202 0px 0px 2px;
}

/* Our Services Section */
#services h2 {
  text-align: center;
  font-size: 42px;
}
#services .text {
  padding: 0;
  margin: auto;
}
#services .text h2 {
  color: #020202;
  font-size: 32px;
  text-align: left;
}
#services .text p {
  color: #333;
  font-size: 18px;
  width: 100%;
}
#services li {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}
#services li div {
  width: 48%;
}
#services li .image img {
  width: 100%;
  margin: auto;
}

/* Platforms Section */
.platforms {
  padding: 30px 10%;
  margin-top: 60px;
  background-color: #fff;
}
.platforms h1 {
  color: #020202;
  font-size: 32px;
  text-align: center;
}
.platforms .content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 20px;
}
.platforms .content div {
  background: #f4f4f4;
  padding: 40px;
  font-size: 13px;
  font-weight: 300;
  border-radius: 10px;
  transition: background 0.5s, transform 0.5s;
}
.platforms .content div h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
.platforms .content div p {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  margin-top: 20px;
  display: inline-block;
}
.platforms .content div a {
  text-decoration: none;
  color: #fff;
  padding: 5px 30px;
  border-radius: 5px;
  font-size: 18px;
  margin-top: 20px;
  display: block;
  background-color: #020202;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.platforms .content div:hover {
  background: #7b0505;
  transform: translateY(-10px);
  color: #fff;
}
.platforms .content div:hover h2,
.platforms .content div:hover p {
  color: #fff;
}

/* Media Queries */
@media only screen and (max-width: 1050px) {
  .offer .content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 40px;
    margin-top: 20px;
  }
  #home .container {
    padding: 10rem 0;
    width: 60%;
  }
}
@media only screen and (max-width: 750px) {
  #home .container {
    padding: 10rem 0;
    width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  #home {
    background: url(../images/Untitled\ design1.png);
  }
  #home .container {
    padding: 10rem 0;
  }
  #home h1 {
    font-size: 32px;
    font-weight: 800;
  }
  #home p {
    font-size: 22px;
  }
}
