/*
Theme Name: traning
Theme URI: https://example.com/my-custom-theme
Author: Russell Azim
Author URI: https://example.com
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, theme-options

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you learn with others.
*/

@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Hind+Siliguri:wght@300;400;500;600;700&family=Roboto+Slab:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #faaf00;
  --secondery: #12b76a;
  --grayBlack: #374151;
  --light: #eee0ff;
  --derk: #1f2937;
  --light-gray: #f3f4f6;
  --bg: #131b2a;
  --font-Roboto: "Roboto Slab", serif;
  --font-Siliguri: "Hind Siliguri", sans-serif;
  --font-Baloo: "Baloo 2", sans-serif;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 10px;
}

body {
  background: var(--bg);
}

/* Navbar Start Here */
header nav {
  padding: 30px 0 20px 0;
}

header nav .navbar-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0;
}

header nav .navbar-wrapper li {
  list-style: none;
  .active {
    color: var(--primary);
  }
}

header nav .navbar-wrapper li a {
  font-family: var(--font-Siliguri);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: white;
  transition: all 0.4s;
  &:hover {
    color: var(--primary);
  }
}

header nav .navButton button {
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  background: var(--primary);
  border: none;
  border-radius: 5px;
  .icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
}
/* Navbar End Here */

/* Banner Start Here */
#banner {
  padding: 100px 0 90px 0;
  background: linear-gradient(#111827, #1f2937, #111827);
}

#banner .bannerWrapper {
  padding: 22px 20px 0 22px;
  border: solid 1px rgba(55, 65, 81, 0.6);
  border-radius: 16px;
  filter: drop-shadow(0 20px 25px -5px #000000);
  margin: 0;
  padding: 0;
}
#banner .bannerImage img {
  width: 100%;
}
#banner .bannerTitle {
  padding-top: 20px;
}
#banner .bannerTitle h2 {
  font-family: var(--font-Baloo);
  font-size: 38px;
  font-weight: 600;
  line-height: 27px;
  color: white;
  margin-bottom: 14px;
  span {
    color: var(--secondery);
  }
}

#banner .bannerTitle .countdown timer {
  align-items: center;
  gap: 8px;
  color: var(--light);
  display: flex;
}
#banner .bannerTitle .countdown .count {
  padding: 15px 0 12px 0;
  width: 90px;
  text-align: center;
  background: rgba(238, 224, 255, 0.05);
  border-radius: 16px;
}
#banner .bannerTitle .countdown .count h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 3px;
}
#banner .bannerTitle .countdown .count span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
#banner .bannerTitle h5 {
  font-family: var(--font-Roboto);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: var(--secondery);
  margin-left: 60px;
  margin-top: 14px;
  position: relative;
}
#banner .bannerTitle h5::before {
  content: "";
  width: 48px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: -56px;
  transform: translateY(-50%);
  background: var(--secondery);
}
#banner .bannerTitle h1 {
  max-width: 525px;
  font-family: var(--font-Roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  color: white;
  margin-top: 13px;
  .sqa {
    font-weight: 900;
    color: var(--primary);
  }
  span {
    color: #f76c6c;
  }
}
#banner .bannerTitle h4 {
  font-family: var(--font-Roboto);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #d1d5db;
  margin: 20px 0 36px 0;
}
#banner .bannerBtn {
  gap: 16px;
}
#banner .bannerBtn button {
  padding: 12px 24px;
  border: 1px solid rgba(75, 85, 99, 0.5);
  border-radius: 8px;
  background-image: linear-gradient(to right, #1f2937, #374151);
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: white;
  transition: ease-in-out 0.4s;
  span {
    margin-left: 8px;
  }
  &:hover {
    background-image: linear-gradient(to right, #0e9958, #12b76a, #0e9958);
  }
}
#banner .bannerItem {
  margin-top: 96px;
}
#banner .bannerItem .item {
  text-align: center;
  border-radius: 16px;
  padding-top: 40px;
  padding-bottom: 24px;
  position: relative;
}
#banner .bannerItem .item h3 {
  font-family: var(--font-Baloo);
  font-size: 52px;
  font-weight: 600;
}
#banner .bannerItem .item h6 {
  font-family: var(--font-Baloo);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
#banner .bannerItem .item .icon {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, 60%);
}

#banner .bannerItem .one {
  background: rgba(255, 75, 75, 0.05);
  border: 1px solid #ff4500;
  color: #ff4500;
}
#banner .bannerItem .two {
  background: rgba(179, 28, 221, 0.05);
  border: 1px solid #b41cdd;
  color: #b41cdd;
}
#banner .bannerItem .three {
  background: rgba(18, 183, 106, 0.05);
  border: 1px solid #12b76a;
  color: #12b76a;
}
/* Banner End Here */

/* Plan Start Here */
#plan {
  padding: 64px 0;
  background: linear-gradient(#111827, #1f2937, #111827);
}
#plan .title h2 {
  font-family: var(--font-Roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #d1d5db);
  background-clip: text;
  color: transparent;
  position: relative;
}
#plan .title h2::after {
  content: "";
  width: 305px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #f9741600);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}
#plan .title h4 {
  font-family: var(--font-Roboto);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: #d1d5db;
  margin-top: 12px;
}
#plan .service {
  width: 100%;
  flex-wrap: wrap;
  color: white;
  margin-top: 48px;
}
#plan .service .item {
  width: 33%;
  padding: 30px 40px;
  text-align: center;
  border: 1px solid rgba(55, 65, 81, 0.6);
  background: rgba(31, 41, 55, 0.9);
}
#plan .service .item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto;
  border: 1px solid #374151;
  border-radius: 50%;
}
#plan .service .item h4 {
  font-family: var(--font-Roboto);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--light-gray);
  margin-top: 24px;
}
#plan .service .item p {
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #d1d5db;
  margin-top: 12px;
}
/* Plan End Here */

/* Premium Start Here */
#premium {
  padding: 40px 0;
  background: linear-gradient(#111827, #1f2937, #111827);
}
#premium .title h2 {
  font-family: var(--font-Roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #d1d5db);
  background-clip: text;
  color: transparent;
  position: relative;
}
#premium .title h2::after {
  content: "";
  width: 305px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #f9741600);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}
#premium .title h4 {
  font-family: var(--font-Roboto);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: #d1d5db;
  margin-top: 12px;
}
#premium .courseCard {
  padding: 21px;
  background: var(--derk);
  border: 1px solid #374151;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(99, 101, 241, 0.2);
  position: relative;
  overflow: hidden;
}
.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

.ribbon span {
  max-width: 120px;
  padding: 40px 20px 5px 20px;
  position: absolute;
  background: #ff4d00;
  color: white;
  text-align: center;
  font-weight: bold;
  transform: rotate(-45deg);
  top: -20px;
  left: -44px;
  font-family: var(--font-Roboto);
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
}
#premium .courseCard h4 {
  max-width: 304px;
  font-family: var(--font-Roboto);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--light-gray);
  margin-top: 240px;
  margin-bottom: 13px;
}
#premium .courseCard .services p {
  font-family: var(--font-Roboto);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #d1d5db;
}
#premium .courseCard .services p .one {
  color: #4ade80;
  margin-right: 8px;
}
#premium .courseCard .services p .two {
  color: #f472b6;
  margin-right: 8px;
}
#premium .courseCard .services p .three {
  color: #818cf8;
  margin-right: 8px;
}
#premium .courseCard .services p .four {
  color: #facc15;
  margin-right: 8px;
}
#premium .courseCard .services p .check {
  color: #4ade80;
  margin-left: 4px;
}
#premium .courseCard .info {
  gap: 8px;
}
#premium .courseCard .info p {
  padding: 4px 6px;
  background: rgba(30, 59, 138, 0.4);
  border-radius: 8px;
  font-family: var(--font-Roboto);
  font-weight: 500;
  line-height: 18px;
  color: #93c5fd;
  span {
    margin-right: 4px;
  }
}

#premium .courseCard .info .time {
  background: rgba(124, 44, 18, 0.4);
  color: #fdba74;
}
#premium .courseCard h5 {
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--secondery);
  margin: 0 0 16px 28px;
}
#premium .courseCard .cardBtn button {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-Roboto);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: white;
  border-radius: 8px;
  background: linear-gradient(to right, #25d366, #fbbf24);
  margin-bottom: 2px;
  span {
    margin-left: 8px;
  }
}
#premium .courseBtn {
  text-align: center;
}
#premium .courseBtn .gradiant {
  display: inline-block;
  padding: 1px;
  background: linear-gradient(to right, #12b76a, #ffc727);
  border-radius: 8px;
}
#premium .courseBtn button {
  padding: 13px 90px;
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #d1d5db;
  border: none;
  border-radius: 8px;
  background: #262c33;
}
/* Premium End Here */

/* SuccessStoru Start Here */
#SuccessStory {
  padding: 100px 0;
  background: rgba(31, 41, 55, 0.2);
}
#SuccessStory .carousel-indicators {
  bottom: -50px;
}
#SuccessStory .title h2 {
  font-family: var(--font-Roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #d1d5db);
  background-clip: text;
  color: transparent;
  position: relative;
  margin-bottom: 48px;
}
#SuccessStory .title h2::after {
  content: "";
  width: 305px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #f9741600);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}
#SuccessStory .story .item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  img {
    width: 100%;
  }
}
/* SuccessStoru End Here */
/* Feedback Start Here */
#feedback {
  padding: 0 0 100px 0;
  background: rgba(31, 41, 55, 0.2);
}
#feedback .carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button{
  height: 8px !important;
  width: 8px !important;
  border-radius: 50%;
  padding: 0 !important;
  border: 0 !important;
  background: #4B5563;
}
.carousel-indicators .active{
  width: 32px !important;
  border-radius: 10px !important;
  background: #12B76A;
}
#feedback .title h2 {
  font-family: var(--font-Roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #d1d5db);
  background-clip: text;
  color: transparent;
  position: relative;
  margin-bottom: 48px;
}
#feedback .title h2::after {
  content: "";
  width: 305px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #f9741600);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}
#feedback .studentFeedback {
  overflow: hidden;
}
#feedback .studentFeedback .feedbackCard {
  min-width: fit-content;
  padding: 24px;
  background: rgba(126, 250, 147, 0.1);
  border-radius: 24px;
  .ratting {
    margin-bottom: 34px;
    span {
      font-size: 24px;
    }
    .stars {
      color: var(--primary);
    }
  }
  p {
    font-family: var(--font-Baloo);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: white;
    margin-bottom: 10px;
  }
  .info {
    align-items: start;
    .title {
      margin-left: 10px;
      h5 {
        font-family: var(--font-Baloo);
        font-size: 18px;
        font-weight: 500;
        line-height: 27px;
        color: white;
      }
      span {
        font-family: var(--font-Baloo);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: rgba(255, 255, 255, 0.7);
      }
    }
    .bacth {
      padding: 2px 10px;
      background: var(--secondery);
      border-radius: 4px;
      span {
        font-family: var(--font-Baloo);
        font-size: 16px;
        font-weight: 500;
        line-height: 27px;
        color: white;
        text-wrap: nowrap;
      }
    }
  }
}
.swiper-pagination-bullet{
  height: 8px;
  width: 8px;
  background: #4B5563;
}
.swiper-pagination-bullet-active{
    width: 32px;
    height: 8px;
    border-radius: 10px;
    background: #12B76A;
}
.swiper-pagination{
  position: unset;
  margin-top: 30px;
}
/* Feedback End Here */

/* Top Companies Start Here */
#topCompanies {
  padding: 186px 0 46px 0;
  background: linear-gradient(#111827, #1f2937, #111827);
}

#topCompanies .content {
  padding: 48px 16px 18px;
  background: rgba(17, 24, 39, 0.9);
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(17, 24, 39, 0.3);
  overflow: hidden;
}
#topCompanies .content .title h2 {
  font-family: var(--font-Roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #d1d5db);
  background-clip: text;
  color: transparent;
  position: relative;
  margin-bottom: 48px;
}
#topCompanies .content .title h2::after {
  content: "";
  width: 305px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #f9741600);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}
#topCompanies .content .companies {
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
}
#topCompanies .content .companies .brand {
  padding: 32px 25px;
  background: #1f2937;
  border-radius: 16px;
}
/* Top Companies End Here */

/* Team Start Here */
#team {
  padding: 80px 0;
  background: #111827;
}
#team .teamContent {
  padding: 20px 54px;
  background: var(--derk);
  opacity: 90%;
  border-radius: 8px;
}
#team .teamContent .title h2 {
  font-family: var(--font-Roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #d1d5db);
  background-clip: text;
  color: transparent;
  position: relative;
  margin-bottom: 48px;
}
#team .teamContent .title h2::after {
  content: "";
  width: 305px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #f9741600);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}
#team .teamContent .cardWrapper {
  justify-content: space-between;
  margin-bottom: 54px;
  gap: 20px;
}
#team .teamContent .cardWrapper .cardItem {
  text-align: center;
  border: 1px solid #374151;
  border-radius: 12px;
  overflow: hidden;
  .info {
    margin-top: 56px;
    h3 {
      font-family: var(--font-Roboto);
      font-size: 30px;
      font-weight: 700;
      line-height: 37px;
      color: white;
    }
    span {
      font-family: var(--font-Siliguri);
      font-size: 20px;
      font-weight: 400;
      line-height: 24px;
      color: white;
    }
  }
  .brand {
    padding: 9px 0;
    border-top: 1px solid #374151;
    margin-top: 40px;
    span {
      font-family: var(--font-Roboto);
      font-size: 14px;
      font-weight: 400;
      line-height: 21px;
      color: #9ca3af;
    }
  }
}
#team .teamContent button {
  display: block;
  padding: 12px 18px;
  background: #1e2736;
  border: 1px solid var(--primary);
  border-radius: 6px;
  margin: 0 auto;
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: white;
}
/* Team End Here */

/* FAQ Start Here */
#faq {
  padding: 80px 0;
  background: linear-gradient(#111827, #1f2937);
}
#faq .faqContent {
  padding: 20px 54px;
  background: linear-gradient(to right, #1f2937, #111827);
  opacity: 90%;
  border-radius: 8px;
}

#faq .faqContent .title h2 {
  font-family: var(--font-Roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #d1d5db);
  background-clip: text;
  color: transparent;
  position: relative;
  margin-bottom: 32px;
}
#faq .faqContent .title h2::after {
  content: "";
  width: 305px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #f9741600);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}
#faq .faqContent .title h5 {
  font-family: var(--font-Roboto);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #d1d5db;
  text-align: center;
}
#faq .faqContent .left {
  padding: 16px;
}
#faq .faqContent .left h4 {
  max-width: 322px;
  font-family: var(--font-Roboto);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: white;
  margin-bottom: 16px;
}
#faq .faqContent .left p {
  max-width: 322px;
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #d1d5db;
  margin-bottom: 24px;
}
#faq .faqContent .left button {
  padding: 12px 20px;
  background: linear-gradient(to right, #3b82f6, #2563eb);
  border: none;
  border-radius: 8px;
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: white;
}
#faq .faqContent .accordion .accordion-button span i {
  width: 28px;
  height: 28px;
}
#faq .faqContent .questionBG {
  padding: 1px 17px;
  background: var(--derk);
  border: 1px solid var(--grayBlack);
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(17, 24, 39, 0.3);
}
#faq .faqContent .questions {
  padding: 56px 16px;
  background: linear-gradient(#111827, #1f2937, #111827);
}
#faq .faqContent .accordion .accordion-item {
  padding: 12px 17px 21px;
  background: linear-gradient(#1f2937, #111827);
  border: 1px solid var(--grayBlack);
  border-radius: 8px;
  color: white;
}
#faq .faqContent .accordion .accordion-button {
  background: transparent;
  border: none;
  color: white;
  box-shadow: none;
}
#faq .faqContent .accordion .accordion-button::after {
  display: none;
}
#faq .faqContent .accordion .accordion-button span {
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
}
#faq .faqContent .questions button {
  width: 100%;
  padding: 13px 0;
  background: linear-gradient(to right, #1f2937, #374151);
  border: 1px solid #3b82f6;
  border-radius: 8px;
  color: #60a5fa;
  gap: 4px;
  margin-top: 24px;
}
/* FAQ End Here */

/* Blog Start Here */
#blog {
  padding: 80px 0;
  background: #111827;
}
#blog .blogContent {
  padding: 20px 54px;
  background: var(--derk);
  opacity: 90%;
  border-radius: 8px;
}
#blog .blogContent .title {
  margin-bottom: 30px;
}
#blog .blogContent .title h2 {
  font-family: var(--font-Roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #d1d5db);
  background-clip: text;
  color: transparent;
  position: relative;
  margin-bottom: 12px;
}
#blog .blogContent .title h2::after {
  content: "";
  width: 119px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #f9741600);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}
#blog .blogContent .title h3 {
  font-family: var(--font-Roboto);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: white;
  text-align: center;
}
#blog .blogContent .blogCards {
  margin-bottom: 34px;
}
#blog .blogContent .blogCards .cardItem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  border: 1px solid #374151;
  border-radius: 12px;
  overflow: hidden;
}
#blog .blogContent .blogCards .cardItem .image img {
  width: 100%;
}
#blog .blogContent .blogCards .cardItem .info {
  margin-top: 15px;
  padding: 16px;
}
.blogCards .cardItem .info h4 {
  font-family: var(--font-Roboto);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: white;
}
.blogCards .cardItem .info p {
  font-family: var(--font-Siliguri);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: white;
  margin-top: 7px;
}
#blog .blogContent .blogCards .cardItem .brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px;
  border-top: 1px solid #374151;
}
.blogCards .cardItem .brand span {
  font-family: var(--font-Roboto);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #9ca3af;
}
.blogCards .cardItem .brand button {
  font-family: var(--font-Roboto);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: var(--secondery);
  background: transparent;
  border: none;
}
.blogCards .cardItem .brand button span {
  color: var(--secondery);
}

#blog .blogContent .seeBtn {
  display: block;
  padding: 12px 18px;
  background: #1e2736;
  border: 1px solid var(--primary);
  border-radius: 6px;
  margin: 0 auto;
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: white;
}

/* Blog End Here */
/* Subscribe Start Here */
#subscribe {
  padding: 20px 0;
  background: #111827;
}
#subscribe .subscribeContent {
  padding: 20px 0 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #505050;
  border-radius: 8px;
}

#subscribe .subscribeContent .title h2 {
  font-family: var(--font-Roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #d1d5db);
  background-clip: text;
  color: transparent;
  position: relative;
  margin-bottom: 32px;
}
#subscribe .subscribeContent .title h2::after {
  content: "";
  width: 305px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #f9741600);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}
#subscribe .subscribeContent .title h5 {
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #9ca3af;
  text-align: center;
}
#subscribe .subscribeContent form input {
  width: 448px;
  padding: 14px 17px;
  background: var(--derk);
  border: 1px solid var(--grayBlack);
  border-radius: 6px;
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
}
#subscribe .subscribeContent form input::placeholder {
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
}
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.subscribeContent form .subsBtn .bg {
  display: inline-block;
  background: linear-gradient(to right, #12b76a, #ffc727);
  border-radius: 10px;
  padding: 1px;
}
.subscribeContent form .subsBtn .bgTwo {
  display: inline-block;
  background: linear-gradient(to left, #12b76a, #ffc727);
  border-radius: 10px;
  padding: 1px;
}
.subscribeContent form .subsBtn {
  gap: 20px;
  margin-top: 20px;
}
.subscribeContent form .subsBtn button {
  width: 180px;
  padding: 12px 20px;
  background: linear-gradient(to right, #12b76a, #ffc727);
  border: none;
  border-radius: 10px;
  font-family: var(--font-Baloo);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: white;
  text-align: center;
  text-wrap: nowrap;
  transition: all 0.4s;
}
.subscribeContent form .subsBtn .btnTwo {
  background: linear-gradient(to left, #12b76a, #ffc727);
}
.subscribeContent form .subsBtn button:hover {
  background: #121926;
}
/* Subscribe Start Here */

/* Footer Start Here */
footer {
  padding: 27px 26px;
  background: #111827;
}
footer .item p {
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #d1d5db;
  margin-top: 12px;
}
footer .item h3 {
  font-family: var(--font-Roboto);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  color: white;
  margin-bottom: 24px;
}
footer .item ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
footer .item ul li {
  list-style: none;
}
footer .item ul li a {
  text-decoration: none;
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #d1d5db;
}
footer .social ul li a {
  font-family: var(--font-Baloo);
  font-weight: 500;
}
footer .item ul li a span {
  width: 24px;
  margin-right: 8px;
}
footer .copyright {
  font-family: var(--font-Roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #d1d5db;
  margin-top: 74px;
  text-align: center;
}
footer .copyright span {
  font-weight: 600;
  color: white;
}
/* Footer End Here */
