#Pricing {
  padding-top: 80px;
}
.pricing_content {
  width: 1140px;
  margin: auto;
}
.pricing_content .small_title {
  color: #6ab04c;
  font-weight: bold;
  text-align: center;
}

.pricing_content .title {
  padding-top: 25px;
  padding-bottom: 40px;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

.pricing {
  display: flex;
  /* gap: 36px; */
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing_box {
  width: 33.33%;
  transition: all 0.3s;
}
.pricing_box:hover {
  transform: translateY(-20px);
}

.pb_content {
  margin: 12px;
  padding: 36px 0;
  background: #fff;
  border: 2px solid #eee;
  box-shadow: 0px 0px 10px 0px #eee;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  text-align: center;
}

.pb_content:hover {
  box-shadow: 0px 0px 20px 0px #ddd;
}

.pb_content h2 {
  color: #ff4800;
  font-size: 40px;
}
.pb_content h2 span {
  font-size: 15px !important;
  color: #58468c;
}
.pb_content h3 {
  color: #58468c;
}
.pb_content p {
  width: 80%;
  margin: 0 auto;
}
.pb_content ul {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.pb_content ul li {
  border-bottom: 1px solid #786d991d;
  color: #786d99;
  padding-top: 5px;
  padding-bottom: 15px;
}

.pb_content a button {
  background: #ea6c4c;
  color: #fff;
  padding: 20px 36px;
  margin: 20px 0;
  border-radius: 100px;
  transition: all 0.3s;
}
.pb_content a button:hover {
  box-shadow: 0px 0px 25px 0px #999;
}
/* pricing Bottom */

.pricing_bottom {
  display: flex;
  background: #ebf4fd;
  margin-top: 80px;
}

.pricing_bottom_content {
  width: calc(100% - 80px);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
  justify-content: center;
}

.pricing_bottom_content > img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
}

.pricing_bottom_content > h2 {
  margin-top: 10px;
}
.pricing_bottom_content > h3 {
  color: blueviolet;
}
.pricing_bottom_content > p {
  margin: 10px 0;
  text-align: center;
}

.pricing_socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  justify-content: center;
  align-items: center;
}

.pricing_socials > a > img {
  width: 40px;
}

.pricing_bottom_cover_photo {
  width: 100%;
  background: linear-gradient(#300cff3a, #300cff32),
    url("https://the7.io/elementor-agency/wp-content/uploads/sites/75/2022/02/studio0057.jpg");
  background-size: cover;
  background-position: left center;
}

/* pricing Bottom */
@media (max-width: 1200px) {
  .pricing_content {
    width: 92%;
  }
}

@media (max-width: 1023px) {
  .pricing_bottom {
    flex-direction: column;
  }

  .pricing_bottom_content > div {
    width: 100%;
  }

  .pricing_bottom_cover_photo {
    height: 400px;
  }

  .pricing_box {
    width: 50% !important;
  }
}

@media (max-width: 639px) {
  .pricing_bottom_cover_photo {
    height: 280px;
  }
  .pricing_box {
    width: 100% !important;
  }
}

@media (min-width: 1024px) {
  .pricing_content .title {
    width: 70%;
    margin: auto;
  }
}
