.container-first {
    display: flex;
    width: 90vw; 
    overflow: hidden;
}
.left-column, .right-column {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.styled{
    font-size: 2em;
    color:skyblue;
}

.sub-titless span{
font-size:1em;
	color:#035286;
	font-family: 'geomanist-book';
	font-weight: normal;

}

/*PEN STYLES*/
  .benifit {
    background: white;
    display: flex;
    flex-direction:column;
    font-size: 1rem;

    justify-content: center;
    align-items: center;
  }
  
  .blog-card {
    display: flex;
  

    flex-direction: column;
    margin: 1rem auto;
    box-shadow: 0 3px 7px -1px rgba(#000, .1);
    margin-bottom: 1.6%;
    background: white;
    line-height: 1.4;
    font-family: sans-serif;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
    
    .meta {
      position: relative;
      z-index: 0;
      height: 200px;
    }
    .photo {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-size: cover;
      background-position: center;
      transition: transform .2s;
    }
    .details,
    .details ul {
      margin: auto;
      padding: 0;
      list-style: none;
    }
  
    .details {
      position: absolute;
      top: 0;
      bottom: 0;
      left: -100%;
      margin: auto;
      transition: left .2s;
      background: rgba(#000, .6);
      color: white;
      padding: 10px;
      width: 100%;
      font-size: .9rem;
      a {
        text-decoration: dotted underline
      }
      ul li {
        display: inline-block;
      }
      .author:before {
        font-family: Arial, Helvetica, sans-serif;
        margin-right: 10px;
        content: "\f007";
      }
  
      .date:before {
        font-family:Arial, Helvetica, sans-serif;
        margin-right: 10px;
        content: "\f133";
      }
  
      .tags {
        ul:before {
          font-family: Arial, Helvetica, sans-serif;
          content: "\f02b";
          margin-right: 10px;
        }
        li {
          margin-right: 2px;
          &:first-child {
            margin-left: -4px;
          }
        }
      }
    }
    .description {
      padding: 1rem;
      background: rgb(235, 229, 229);
      position: relative;
      z-index: 1;
      h1,
      h2 {
        font-family: Poppins, sans-serif;
      }
      h1 {
        line-height: 1;
        margin: 0;
        font-size: 1.7rem;
      }
      h2 {
        font-size: 1rem;
        font-weight: 300;
        text-transform: uppercase;
        color: grey;
        margin-top: 5px;
      }
    
    }
    p {
      position: relative;
      margin: 1rem 0 0;
      &:first-of-type {
        margin-top: 1.25rem;
        &:before {
          content: "";
          position: absolute;
          height: 5px;
          background:#035286;
          width: 35px;
          top: -0.75rem;
          border-radius: 3px;
        }
      }
    }
    &:hover {
      .details {
        left: 0%;
      }
    }
  
  
    @media (min-width: 640px) {
      flex-direction:row;
      max-width: 700px;
      .meta {
        flex-basis: 40%;
        height: auto;
      }
      .description {
        flex-basis: 60%;
        &:before {
          transform: skewX(-3deg);
          content: "";
          background: rgb(235, 229, 229);
          width: 30px;
          position: absolute;
          left: -10px;
          top: 0;
          bottom: 0;
          z-index: -1;
        }
      }
      &.alt {
        flex-direction: row-reverse;
        .description {
          &:before {
            left: inherit;
            right: -10px;
            transform: skew(3deg)
          }
        }
        .details {
          padding-left: 25px;
        }
      }
    }
  }

  .points{
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.features-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}
.feature:last-child {
    border-bottom: none;
}
.feature-icon {
    font-size: 40px;
    color: #3498db;
    margin-right: 20px;
    flex-shrink: 0;
}
.feature-content {
    flex: 1;
}
.feature-title {
    font-size: 1.8em;
    color: #34495e;
    margin-bottom: 10px;
}
.feature-description {
    color: #7f8c8d;
    line-height: 1.6;
}
.cta {
    text-align: center;
    margin-top: 40px;
}
.cta a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta a:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}



.elg-points {
    margin: 0;
    padding: 20px;
}
.container-elg {
        background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.header {
    text-align: center;
    padding: 10px 0;
}

.criteria-list {
    list-style: none;
    padding: 0;
}
.criteria-list li {
    background-color: #f9f9f9;
    border-left: 4px solid #035286;
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
}
.criteria-list li p {
    margin: 0;
}
.highlight {
    font-weight: bold;
}

.container-ad{
  width: 80%;
  padding: 20px;
 
}

h1 {
  text-align: center;
  color: #333;
}

.step {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.icon {
  color: #fff;
  border-radius: 50%;
  padding: 15px;
  margin-right: 20px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  animation: bounce 1.5s infinite;
}

.content {
  flex-grow: 1;
}

.content h2 {
  margin: 0 0 10px;
  color: #333;
}

.content p {
  margin: 0;
  color: #666;
}

@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}

.un-section {
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;

}

.card-container .card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 500px;
  margin: 10px;
  text-align: center;

}




.card-container .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-container .card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;

}

.card-container .card h2 {
  font-size: 1.1em;
  margin: 15px 0;
  color: #333;

}

.card-container .card p {
  font-size: 1em;
  color: #666;
  padding: 30px;
text-align: justify;

}

.card-container .card button {
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  margin-bottom: 20px;
  font-size: 1em;
}

.card-container .card button:hover {
  background-color: #0056b3;
} 

.container-ads {
  width: 80%;
  padding: 20px;
}

h1 {
  text-align: center;
}

.steps {
  list-style: none;
  padding: 0;
}

.step {
  display: flex;
  margin-bottom: 30px;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #007BFF;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
}

.step-content {
  margin-left: 20px;
}

.step-content h2 {
  margin-top: 0;
}

.step-content p {
  margin-bottom: 0;
}


.q-im{

  background: url(../images/q.jpg) no-repeat left 8px;
}

.faq-container {
  max-width: 800px;
  padding: 20px;
}

.faq-list {
  margin-top: 20px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  color: white;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question input[type="checkbox"] {
  display: none;
}

.faq-question label {
  display: block;
  padding: 15px;
  background-color: #035286; /* Question background color */
  cursor: pointer;
}

.faq-answer {
  padding: 15px;
  background-color:#fca311;
  
  display: none;
  
  animation: fadeIn 0.5s ease; /* Fade-in animation */
}
.faq-answer p{

 
}
.faq-question input[type="checkbox"]:checked ~ .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}




/* Media query for responsiveness */
@media (max-width: 768px) {
  .container-ads {
    width: 90%;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
  }
  
  .step-number {
    margin-bottom: 10px;
  }
}


@media (max-width: 768px) {
  .card-container {
      justify-content: center;
  }
  
  .card-container .card {
      width: 45%;
  }
}

@media (max-width: 480px) {
  .card-container .card {
      width: 90%;
  }
}

@media (max-width: 768px) {
    .feature {
        flex-direction: column;
        align-items: center;
    }
    .feature-icon {
        margin-bottom: 10px;
    }
    .blog-card .meta .photo{
      height: 300px;
    }
}

@media (max-width: 913px) {
    .container-first {
        flex-direction: column;
    }
   
}







