@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*
 CSS Reset
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
}

#root,
#__next {
  isolation: isolate;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  background-color: #040006;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  position: relative;
}

.justify-content-between {
  justify-content: space-between;
}

.margin-90 {
  margin-top: 90px;
}

h1 {
  font-size: 3rem;
}

/* Page Navigation  */
nav {
  height: 80px;
  /* position: fixed; */
  width: 100%;
  top: 0;
  z-index: 10;
  background: #040006;
}

nav ul {
  padding-left: 0;
}

nav ul.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 0;
}

nav .logo {
  position: absolute;
  left: 20px;
}

nav .logo img {
  width: 200px;
}

nav .menu {
  position: absolute;
  right: 20px;
}

nav li img {
  width: 30px;
  margin-right: 5px;
}

nav li {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav li a {
  font-size: 16px;
  text-decoration: none;
  line-height: 20px;
  position: relative;
  font-weight: 600;
  color: #fff;
  transition: all 0.2s ease-out;
  cursor: pointer;
  text-transform: capitalize;
}

nav li a:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 997px) {
  .nav-desktop {
    display: none !important;
  }
}

.mobile-navigation-header {
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 10px;
  background-color: #000000;
  z-index: 20;
}

.mobile-navigation-header.scrolled {
  position: fixed;
}

.mobile-navigation-logo {
  position: absolute;
  left: 25px;
}

.mobile-navigation-logo img {
  width: 80%;
}

.mobile-navigation-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 25px;
}

.mobile-navigation-close {
  width: 25px;
  z-index: 99;
  cursor: pointer;
  display: none;
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 5px;
  position: relative;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.mobile-navigation-menu {
  position: fixed; /* Make the menu fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #333;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 90;
}

.mobile-navigation-menu.open {
  transform: translateY(0);
}

.mobile-navigation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.mobile-navigation-list li {
  margin: 1.5rem 0;
}

.mobile-navigation-list a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

@media (min-width: 997px) {
  .mobile-navigation-header {
    display: none;
  }
}

/* Page Content Header  */
.content_header {
  background: #08080c;
  padding: 50px 0;
  gap: 50px;

  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  &.single-article {
    padding: 120px 0;
  }
}

.content_header h1 {
  color: #fff;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 800;
  line-height: 72px; /* 112.5% */
  letter-spacing: -2px;

  @media (max-width: 767px) {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.2;
  }
}

.content_header p {
  flex: 1 1 0;
  margin: 0;
  color: #a0a0ab;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  text-align: left;

  @media (max-width: 767px) {
    font-size: 18px;
    text-align: center;
  }
}

.content_header__badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  color: #ffffff;
  font-family: "Geist", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 30px;
  padding: 10px 30px;
}
.content_header__copy {
  display: flex;
  gap: 50px;
  max-width: 1280px;
  width: 100%;
}

/**** Media Queries *****/

@media (max-width: 767px) {
  .content_header {
    padding: 50px 20px;
    margin-top: 0;
  }
  .content_header h1 {
    font-size: 24px;
  }
  .content_header p {
    font-size: 14px;
  }

  .content_header {
    padding: 40px 20px 70px;
    gap: 30px;
  }

  .content_header .content_header__badge {
    font-size: 16px;
    line-height: 1.2;
    padding: 8px 20px;
  }

  .content_header h1 {
    font-size: clamp(32px, 9vw, 44px);
    letter-spacing: -0.8px;
  }

  .content_header .content_header__copy {
    flex-direction: column;
    gap: 20px;
  }

  .content_header .content_header__copy p {
    font-size: 18px;
  }
}

/* Page Hero  */

.page-hero {
  position: relative;
  display: flex;
  justify-content: center;
  background: url(../../assets/images/headerBackground.png) no-repeat center center;
  background-size: cover;
  align-items: center;
  min-height: 100vh;
  padding: 60px 0;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.45) 0%, #08080c 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page_hero_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.page_hero_content_text {
  flex: 1 1 0;
  max-width: 560px;
  gap: 28px;
}

.page-hero h1 {
  color: #f4f4f6;
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.page_hero_content_text .description {
  margin: 0;
  color: #8f8e9c;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.kicker {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #f4f4f6;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.kicker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00892b;
}

.page_hero_actions {
  gap: 16px;
}

.hero_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    border-color 0.25s ease;
}

.hero_btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hero_btn-primary {
  background: #00892b;
  color: #ffffff;
}

.hero_btn-secondary {
  background: transparent;
  color: #f4f4f6;
  border-color: #8f8e9c;
}

.hero_btn_icon {
  font-size: 18px;
  line-height: 1;
}

.page_hero_media {
  flex: 1 1 0;
}

.page_hero_media_frame img {
  width: 100%;
  border-radius: 16px;
}

.btn-send {
  padding: 15px 60px;
  line-height: 30px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(#13c5d2, #15a6db);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  max-width: 300px;
}

.btn-send:hover {
  transform: scale(1.1);
  background: linear-gradient(#15a6db 0%, #13c5d2 100%);
}

.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid #15a6db;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -4px;
}
.card_border {
  position: relative;
  /* border: 2px solid #ed3030; */
  width: 100%;
  max-width: 200px;
}

.card_border p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/***** media queries ******/

@media (max-width: 1199px) {
  .page-hero {
    min-height: auto;
    padding: 100px 0 70px;
  }

  .page_hero_content {
    gap: 36px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 6vw, 52px);
  }

  .page_hero_content_text .description {
    font-size: 16px;
    line-height: 26px;
  }

  .page_hero_media_frame {
    max-width: 520px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    min-height: auto;
    padding: 80px 0 50px;
  }

  .page_hero_content {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .page_hero_content_text {
    max-width: none;
    gap: 20px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.12;
  }

  .kicker {
    font-size: 11px;
  }

  .page_hero_actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero_btn {
    padding: 14px 24px;
    flex: 1 1 calc(50% - 6px);
    min-width: 165px;
    font-size: 15px;
  }

  .page_hero_media_frame {
    max-width: 100%;
    border-radius: 18px;
    padding: 10px;
  }

  .page_hero_media_frame img {
    border-radius: 12px;
  }

  .hero_card {
    margin-bottom: 30px;
  }
}

/* Home Cards  */

.home-cards {
  padding: 70px 0 100px;
}

.home-cards-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  margin: 0 0 40px;
}

.home-cards-title span {
  color: #00892b;
}

.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-card h3 {
  color: #00892b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.home-card p {
  color: #f4f4f6;
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
}

.home-card {
  background: #121118;
  border-radius: 12px;
  min-height: 300px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.home-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/**** Media Queries ****/

@media (min-width: 768px) and (max-width: 1199px) {
  .home-cards {
    padding: 65px 0 80px;
  }

  .home-cards-title {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .home-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .home-card p {
    font-size: 14px;
    line-height: 1.4;
  }

  .home-card {
    min-height: 260px;
    padding: 20px 16px;
  }
}

@media (max-width: 767px) {
  .home-cards {
    padding: 50px 0 60px;
  }

  .home-cards-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .home-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-card {
    min-height: 240px;
    padding: 20px 18px;
    gap: 14px;
  }

  .home-card img {
    width: 58px;
    height: 58px;
  }

  .home-card h3 {
    font-size: 17px;
  }

  .home-card p {
    font-size: 14px;
    line-height: 1.45;
  }
}

/* Popular Now Section */

.popular-now {
  padding: 100px 0;
  background: #0a0a10;
}

.popular-now__header {
  margin-bottom: 40px;
}

.popular-now__kicker {
  margin: 0 0 12px;
  color: #00892b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.popular-now__title {
  margin: 0;
  color: #f4f4f6;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.popular-now__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.popular-now__card {
  min-width: 0;
}

.popular-now__poster {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 14px;
}

.popular-now__type {
  margin: 0 0 4px;
  color: #00892b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.popular-now__name {
  margin: 0;
  color: #f4f4f6;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .popular-now {
    padding: 80px 0;
  }

  .popular-now__title {
    font-size: 32px;
  }

  .popular-now__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .popular-now__poster {
    height: 300px;
  }

  .popular-now__name {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .popular-now {
    padding: 60px 0;
  }

  .popular-now__header {
    margin-bottom: 24px;
  }

  .popular-now__kicker {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .popular-now__title {
    font-size: 28px;
  }

  .popular-now__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .popular-now__card {
    flex: 0 0 min(72vw, 250px);
    scroll-snap-align: start;
  }

  .popular-now__poster {
    height: 280px;
    margin-bottom: 10px;
  }

  .popular-now__name {
    font-size: 18px;
  }
}

/* How It Works */

.how-it-works {
  padding: 100px 0;
  background: #121118;
}

.how-it-works__header {
  max-width: 640px;
  text-align: center;
  margin: 0 auto 30px;
}

.how-it-works__kicker {
  margin: 0 0 10px;
  color: #00892b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.how-it-works__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.how-it-works__description {
  margin: 0;
  color: #a0a0ab;
  font-size: 16px;
  line-height: 1.5;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.how-it-works__step {
  min-width: 0;
}

.how-it-works__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.how-it-works__step h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.how-it-works__step p {
  margin: 0;
  color: #a0a0ab;
  font-size: 14px;
  line-height: 1.5;
}

/* Most Read */

.most-read {
  padding: 100px 0;
  background: #0d0d14;
  cursor: pointer;
}

.most-read__header {
  text-align: center;
  margin-bottom: 40px;
}

.most-read__kicker {
  margin: 0 0 12px;
  color: #00892b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.most-read__title {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.most-read__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.most-read__card {
  min-width: 0;
  overflow: hidden;
  .most-read__image {
    transition: transform 0.3s ease-in-out;
  }

  &:hover {
    .most-read__image {
      transform: scale(1.05);
    }
  }
}

.most-read__image {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 12px;
}

.most-read__name {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.most-read__meta {
  margin: 0;
  color: #a0a0ab;
  font-size: 13px;
  line-height: 1.35;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .how-it-works,
  .most-read {
    padding: 80px 0;
  }

  .how-it-works__title,
  .most-read__title {
    font-size: 34px;
  }

  .how-it-works__steps,
  .most-read__grid {
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .how-it-works,
  .most-read {
    padding: 60px 0;
  }

  .how-it-works__header,
  .most-read__header {
    margin-bottom: 24px;
  }

  .how-it-works__title,
  .most-read__title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .how-it-works__description {
    font-size: 15px;
  }

  .how-it-works__steps,
  .most-read__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-it-works__icon {
    margin-bottom: 12px;
  }

  .how-it-works__step h3 {
    font-size: 19px;
  }

  .most-read__image {
    height: 190px;
  }
}

.contact_backgound {
  background: url(../../assets/images/sensibo-contact-background-blue.png) no-repeat center center;
  background-size: cover;
  padding: 160px 40px;
  position: relative;
}

.form_container {
  z-index: 9;
}

form {
  max-width: 450px;
}

label {
  display: block;
}

textarea,
input {
  padding: 10px 25px;
  margin: 10px auto;
  background: rgba(85, 85, 85, 0.26);
  color: #fff;
  border: none;
  border-radius: 40px;
  max-width: 450px;
  width: 100%;
}

::placeholder {
  color: #b5b5b5;
  opacity: 1; /* Firefox */
}

.headset_image {
  position: absolute;
  right: 10%;
  top: -50px;
}

.btn-send {
  width: 100%;
  max-width: none;
}

.recaptcha {
  margin-top: 30px;
}

/****** Media Queries ******/

@media (min-width: 1200px) and (max-width: 1439px) {
  .headset_image {
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .contact_backgound {
    padding: 50px 0;
  }
  .headset_image {
    right: 0;
    width: 50%;
    top: 50px;
  }
}

@media (max-width: 767px) {
  .contact_backgound {
    padding: 50px 0;
  }
  .headset_image {
    display: flex;
    position: relative;
    justify-content: center;
    margin-top: 40px;
    right: 0;
    top: 0;
    max-width: 100%;
  }
}
/* Page Content  */
.main_content {
  background: #232323;
  padding: 100px 0;
  width: 100%;
}

.main_content.articles_content {
  background: #101010;
}

.main_content--our-content {
  background: #0b0b13;
  padding: 40px 0 100px;
}

.our-content-categories-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  text-align: center;
}

.our-content-categories-kicker {
  margin: 0;
  color: #00892b;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.our-content-categories-title {
  margin: 0;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

.our-content-categories-description {
  margin: 0;
  max-width: 640px;
  color: #a0a0ab;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.our-content-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.our-content-card {
  position: relative;
  border: 1px solid #201f2c;
  border-radius: 16px;
  min-height: 292px;
  overflow: hidden;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.our-content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.our-content-card h3,
.our-content-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.our-content-card h3 {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.our-content-card p {
  color: #a0a0ab;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

/**** Media Queries *****/

@media (max-width: 767px) {
  .main_content {
    padding: 50px 0;
  }

  .main_content--our-content {
    padding: 30px 0 60px;
  }

  .our-content-categories-header {
    margin-bottom: 24px;
  }

  .our-content-categories-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .our-content-card {
    min-height: 220px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .our-content-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Page News  */
.articles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  background: #101010;
}

.articles_card {
  display: flex;
  gap: 30px;
  max-width: 900px;
}
.articles_card_link {
  text-decoration: none;
  color: inherit;
}
.articles_card_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.articles_card_title {
  font-size: 20px;
  margin-bottom: 20px;
}
.articles_card_description {
  font-size: 15px;
  color: #b7b7b7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.articles_card > .img-frame {
  max-width: 150px;
  min-width: 150px;
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.articles_card_image {
  min-width: 150px;
  min-height: 150px;
  object-fit: cover;
}

/***** Media Queries *****/

@media (max-width: 767px) {
  .articles_card {
    gap: 15px;
  }
  .articles_card > .img-frame {
    max-width: 100px;
    min-width: 100px;
    width: 100px;
    height: 100px;
  }
  .articles_card_title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/* Single Article  */
.single_article {
  padding: 50px 20px 100px;
  max-width: 800px;
  margin: 0 auto;
}

.single_article img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 40px;
  display: block;
}

.single_article > h2,
.single_article_title {
  margin-top: 50px;
  font-size: 24px;
  font-weight: 700;
}

.single_article > h3 {
  margin-top: 30px;
  font-size: 21px;
  font-weight: 600;
}

.single_article > h4 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.single_article a {
  color: inherit;
}
.single_article {
  ul {
    padding-left: 20px;
    margin: 20px 0;
  }

  ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    list-style: disc;
    text-align: justify;
  }
}

.single_article p {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 20px;
}
/***** Media queries ****/

@media (max-width: 767px) {
  .single_article {
    text-align: center;
  }
}

/* Footer  */
.footer {
  background: #121118;
  padding: 60px 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .footer_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.footer .footer_item > img {
  margin-bottom: 10px;
  width: 200px;
}

.footer .footer_item h4 {
  color: #797979;
  font-size: 20px;
  position: relative;
  text-align: left;
  padding-bottom: 10px;
  width: max-content;
}

.footer .footer_item h4::before {
  content: "";
  width: 50px;
  height: 2px;
  background: #797979;
  display: block;
  position: absolute;
  left: 0;
  top: 35px;
}

.footer .footer_item ul {
  padding-left: 0;
  margin: 0;
}

.footer .footer_item ul li {
  text-align: left;
  margin-bottom: 15px;
}

.footer .footer_item a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.footer .footer_item .link-item {
  display: flex;
}

.footer .footer_item .link-item span {
  min-width: 100px;
  display: inline-block;
  text-align: left;
}

/**** Media Queries ****/

@media (min-width: 768px) and (max-width: 1199px) {
  .footer .footer_item a,
  .footer .footer_item span {
    font-size: 14px;
  }
  .footer .footer_item h4 {
    font-size: 16px;
    font-weight: 600;
  }
}

@media (max-width: 767px) {
  .footer .container {
    flex-direction: column;
  }
  .footer .footer_item .link-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .footer_item {
    align-items: center;
    text-align: center;
  }
  .footer .footer_item .link-item span {
    text-align: center;
  }
  .footer .footer_item ul li {
    text-align: center;
  }
  .footer .footer_item h4::before {
    left: calc(50% - 25px);
  }
}

@media (max-width: 767px) {
  .margin-90 {
    margin-top: 50px;
  }

  .btn-send {
    padding: 15px 30px;
    font-size: 20px;
    width: 100%;
    max-width: 300px;
  }
}
