.article-writing .s1 {
  margin-top: 10rem;
}

@media only screen and (max-width:992px) {
  .article-writing .s1 {
    margin-top: 5.5rem;
  }
}

.article-writing .s1 h1 span {
  color: transparent;
  background-image: linear-gradient(50deg, #7132CA, #F29AAE);
  background-clip: text;
  position: relative;
}

.article-writing .s1 h1 span::before {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(50deg, #7132CA, #F29AAE);
}

.article-writing .s1 p:nth-child(3) {
  margin-bottom: 0px;
}

@media only screen and (min-width:992px) {

  .s1 .content-col p {
    line-height: 2.5rem;
    font-size: 1.1rem;
  }
}

.s1 .img-div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.s1 .img-div::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 50%);
  border-bottom: 3px solid rgba(242, 154, 174, 30%);
  border-right: 3px solid rgba(242, 154, 174, 30%);
  box-shadow: inset 0px 0px 18px 2px rgba(242, 154, 174, 45%),
    0px 0px 18px 2px rgba(113, 50, 202, 40%);
}

.s1 .img-div img {
  border-radius: 5px;
  position: relative;
  z-index: 2;
  transform: translateX(0px) translateY(0px);
  transition: all 0.5s ease-in-out;
}

.s1 .img-div img.active {
  transform: translateX(-10px) translateY(-10px);
}



/* .s1 .img-div img.deactive{
    transform: translateX(0px) translateY(0px);
    transition: all 0.5s ease-in-out;
} */

.article-writing .s2 .box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.article-writing .s2 .box div {
  width: 75%;
  text-align: center;
  font-size: 0.9rem;
  border-radius: 5px;
  border: 1px solid rgba(242, 154, 174, 50%);
  padding: 1rem;
  line-height: 1.8rem;
  box-shadow: inset 0px 0px 18px 2px rgba(242, 154, 174, 45%),
    0px 0px 18px 2px rgba(113, 50, 202, 40%);
}

.article-writing .s2 .box div a {
  background-color: #e2ae1d;
  white-space: nowrap;
  color: white;
  text-decoration: none;
  padding: 2px;
  border-radius: 2px;
  box-shadow: 0px 2px 2px 1px #c29416,
    0px 2px 5px 1px #cc9d1b;
  margin: 0px 7px;
}

.article-writing .s2 .box div:hover a {
  box-shadow: 1px 3px 6px 1px #c29416,
    1px 3px 9px 1px #cc9d1b;
  padding: 3px;
}

.article-writing .s2 .card {
  height: 100%;
  background-color: #E6E6E6;
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: inset 0px 0px 18px 2px #a6e7ff;
  border: 1px solid #a6e7ff;
}

.article-writing .s2 .card h3 {
  text-align: center;
  position: relative;
}

.article-writing .s2 .card h3 span {
  position: absolute;
  background-color: #F7B980;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  left: -20px;
  top: -20px;
  color: rgb(82, 78, 78);
  box-shadow: 2px 3px 5px 1px #b47c47;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-writing .s2 .card p {
  font-size: 0.95rem;
  padding: 0px 0.5rem;
}

.article-writing .s3 .box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.article-writing .s3 .box ul {
  list-style-type: none;
  margin-bottom: 0px;
}

.article-writing .s3 .box ul li {
  background-color: #85409D;
  padding: 0.6rem;
  color: white;
  font-weight: 900;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

.article-writing .s3 .box ul li:nth-child(1) {
  margin-right: 1rem;
}

.article-writing .s3 .box ul li:nth-child(1)::before {
  content: "1";
  height: 30px;
  width: 30px;
  color: white;
  position: absolute;
  left: -40px;
  background-color: #EEA727;
  border-radius: 5px;
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shadow-bling 2s ease-in-out infinite;
}

.article-writing .s3 .box ul li:nth-child(2) {
  margin-top: 1rem;
}

.article-writing .s3 .box ul li:nth-child(2)::before {
  content: "2";
  height: 30px;
  width: 30px;
  color: white;
  position: absolute;
  left: -40px;
  background-color: #EEA727;
  border-radius: 5px;
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shadow-bling 2s ease-in-out infinite;
}

@keyframes shadow-bling {
  0% {
    box-shadow: 0px 0px 5px 0px #b37c16;
  }

  50% {
    box-shadow: 0px 0px 18px 2px #EEA727;
  }

  100% {
    box-shadow: 0px 0px 5px 0px #b37c16;
  }
}

.article-writing .s3 a {
  border: none;
  background-image: linear-gradient(to right, #5D688A, #F7A5A5);
  background-clip: text;
  padding: 1rem 1.3rem;
  border-radius: 10px;
  font-weight: 600;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin-top: 1rem;
  /* color: #FFF2EF; */
  color: transparent;
  border: 2px solid #F7A5A5;
  box-shadow: 0px 5px 10px 0px #F7A5A5,
    inset 0px 5px 10px 0px #F7A5A5;
  transition: all 0.3s ease-in-out;
}

.article-writing .s3 a:hover {
  background-image: linear-gradient(to right, #5D688A, #F7A5A5);
  background-clip: unset;
  color: #FFF2EF;
}

/* .article-writing .s3 button a{
    text-decoration: none;
    padding: 0.8rem 1rem;
    background-color: black;
} */

.article-writing .s3 .list-box ul {
  list-style-type: none;
}

.article-writing .s3 .list-box ul li {
  position: relative;
  margin: 8px 0px;
}

.article-writing .s3 .list-box ul li::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -25px;
  background-image: url(../../image/do-follow/example-of-article-writing/correct.png);
  transition: background-image 0.5s ease-in-out;
  height: 25px;
  width: 25px;
  background-position: center;
  background-size: cover;
}

.article-writing .s3 .table-div {
  display: flex;
  align-items: center;
  justify-content: center
}

.article-writing .s3 .table-div table {
  /* background-color: rgb(217, 196, 176); */
  background-color: #fef4ea;
  /* border: 2px solid #d1b79f !important; */
  border: 2px solid #fae5cf !important;
}

.article-writing .s3 .table-div table,
tr,
th,
td {
  /* border: 1px solid #FFF2EF; */
  border: 1px solid #f1ddc8;
  border-collapse: collapse;
  padding: 0.7rem;
  font-size: 0.9rem;
}

.article-writing .s3 .table-div table .top-head {
  text-align: center;
}

.article-writing .s3 .table-div table .top-head th {
  font-size: 1rem;
  font-weight: 800;
}

.article-writing .s3 .table-div table tr .icon-head {
  position: relative;
}

.article-writing .s3 .table-div table tr .title::before {
  content: "🏷️";
  font-size: 1.2rem;
}

.article-writing .s3 .table-div table tr .abstract::before {
  content: "📝";
  font-size: 1.2rem;
}

.article-writing .s3 .table-div table tr .introduction::before {
  content: "ℹ️";
  font-size: 1.2rem;
}

.article-writing .s3 .table-div table tr .literature::before {
  content: "📚";
  font-size: 1.2rem;
}

.article-writing .s3 .table-div table tr .main-body::before {
  content: "💬";
  font-size: 1.2rem;
}

.article-writing .s3 .table-div table tr .methodology::before {
  content: "🧪";
  font-size: 1.2rem;
}

.article-writing .s3 .table-div table tr .results::before {
  content: "📊";
  font-size: 1.2rem;
}

.article-writing .s3 .table-div table tr .conclusion::before {
  content: "✅";
  font-size: 1.2rem;
}

.article-writing .s3 .table-div table tr .recommendations::before {
  content: "📌";
  font-size: 1.2rem;
}

.article-writing .s3 .table-div table tr .references::before {
  content: "🔗";
  font-size: 1.2rem;
  color: white;
}

/* .article-writing .s3 .table-div table tr td:nth-child(2){
    font-size: 0.9rem;
} */

.article-writing .s4 .p strong {
  background-color: rgb(255, 255, 152);
  font-size: 1rem;
}

.article-writing .s4 .p {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.article-writing .s4 button {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  background-image: linear-gradient(to right, #77231d, #aa4f48);
  border: 2px solid #aa4f48;
  box-shadow: 0px 5px 10px 0px #aa4f48,
    inset 0px 5px 10px 0px #aa4f48;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.article-writing .s4 button a {
  margin: 10px 10px;
  color: #FFF2EF;
  text-decoration: none;
}

.article-writing .s4 button:hover {
  background-image: linear-gradient(to left, #77231d, #aa4f48);
  transform: scale(1.05);
}

.article-writing .s5 .cards {
  /* background-image: linear-gradient(to bottom, #BA487F, #FF9587); */
  /* background-image: linear-gradient(to bottom, #d1a939, #FF9587); */
  background-color: #d1a939;
  height: 100%;
  border-radius: 15px;
  /* position: relative; */
  overflow: hidden;
  box-shadow: 0px 5px 10px -2px rgba(170, 79, 72, 50%);
  transition: all 0.3s ease-in-out;
}

/* .article-writing .s5 .b{
    transform: scaleY(1.15) scaleX(0.95);
} */

.article-writing .s5 .cards:hover {
  transform: scale(1.02);
  box-shadow: 0px 5px 10px 0px rgba(170, 79, 72, 50%),
    inset 0px 5px 10px 0px rgba(170, 79, 72, 50%);
}

/* .article-writing .s5 .cards::before {
    content: '';
    position: absolute;
    height: 50%;
    width: 250%;
    bottom: 0px;
    background: linear-gradient(to bottom, hsla(0, 0%, 64%, 0.42) -21%, hsla(0, 0%, 96%, 0.091) 128%);
    backdrop-filter: blur(1px);
    border-radius: 15px;
    rotate: -60deg;
    transform: translateY(-1000px);
    transition: all 0.3s ease-in-out;
}

.article-writing .s5 .cards:hover::before {
    transform: translateY(0%);
} */

.article-writing .s5 .cards h3 {
  color: white;
  text-align: center;
  background-color: #2A1458;
  height: 80px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 0.8rem;
}

.article-writing .s5 .cards p {
  padding: 1.2rem;
  margin-bottom: 0px;
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: rgb(61, 61, 61);
}

@media only screen and (min-width: 994px) {
  .article-writing .s5 .cards {
    -webkit-box-reflect:
      below 5px linear-gradient(to bottom,
        transparent 0%,
        transparent 80%,
        rgba(0, 0, 0, 0.2) 100%);
  }
}

.price-page {
  background: #fff;
  width: 100%;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.price-page h2 {
  margin: 0px;
}

.price-page h2 div {
  font-size: clamp(1.3rem, 5vw, 1.5rem) !important;
  color: #444;
  text-align: center;
  margin-bottom: 10px;
}

.features {
  margin: 15px 0 25px;
  padding: 0;
  list-style: none;
}

.features li {
  margin-bottom: 5px;
  font-size: 15px;
  color: #444;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group input:first-child {
  width: 60%;
}

.phone-group input:last-child {
  width: 40%;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

@media only screen and (max-width:550px) {
  .actions {
    flex-flow: column;
  }
}

.actions button {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
}

.download-btn {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: #fff;
}

.expert-btn {
  background: linear-gradient(135deg, #d4d4d4, #f5f5f5);
  color: #111;
}

.download-btn:hover,
.expert-btn:hover {
  opacity: 0.9;
}

.s6 .img-div {
  width: fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: relative; */
  overflow: hidden;
  border-radius: 20px;
}

/* .s6 .img-div::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 70%;
    left: -20px;
    top: -20px;
    background-color: #FDEDED;
    border-radius: 5px;
}

.s6 .img-div::after{
    content: '';
    position: absolute;
    height: 70%;
    width: 70%;
    right: -20px;
    bottom: -20px;
    background-color: #EDFFF0;
    border-radius: 5px;
} */

.s6 .img-div img {
  position: relative;
  z-index: 3;
  /* height: 100%;
    width: 100%; */
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}

.s6 .img-div:hover img {
  transform: scale(1.1);
}

.s7 ul {
  list-style-type: none;
}

.s7 ul li {
  margin-bottom: 10px;
  position: relative;
}

.s7 ul li::before {
  content: "";
  position: absolute;
  background-image: url(../../image/do-follow/example-of-article-writing/mistake.png);
  height: 25px;
  width: 25px;
  background-position: center;
  background-size: cover;
  left: -30px;
}

.s8 .list-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.s8 .list-div ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.s8 .list-div ul li {
  margin-bottom: 20px;
}

.s8 .list-div ul li div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.s8 .list-div ul li h3 {
  font-size: 1.2rem;
  color: #006A67;
  padding-right: 1rem;
}

.s8 .list-div ul li div .article-questions-btn {
  height: 15px;
  width: 15px;
  background-image: url(../../image/do-follow/example-of-article-writing/bottom-arrow.png);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.article-questions-btn.active {
  transform: rotate(180deg);
}

.s8 .list-div ul li .article-answers {
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0px;
  display: none;
  background-color: #fff6cc;
}

.s8 .list-div ul li .article-answers.active {
  display: block;
}