:root {
  /* Colors */
  --primary-color: #db0505;
  --lary-color: #faf2e1;
  --m-color: #d9d9d9;
  /* Headers */
  --xl-header: 64px;
  --l-header: 54px;
  --m-header: 34px;
  --s-header: 24px;
  /* Paragraphs */
  --xl-prg: 20px;
  --l-prg: 18px;
  --m-prg: 16px;
  --s-prg: 14px;
  --xs-prg: 12px;
  /* Font Weights */
  --xl-weight: 800;
  --l-weight: 500;
  /* Border Radius */
  --xl-br: 50px;
  --l-br: 20px;
  --m-br: 15px;
  --s-br: 10px;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
}
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden !important;
  box-sizing: border-box;
  width: 100vw;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
  color: rgb(82, 82, 82);
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
button {
  border: none;
}
/*! GENERAL CLASSES */
.ll-section {
  padding: 0;
  margin: 0;
  padding: 100px 0;
}
.ll-container {
  max-width: 1240px;
  margin: 0 auto;
}
.ll-flex__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ll-flex__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.primary-btn {
  display: block;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 400;
  padding: 14px 40px;
  width: fit-content;
  font-weight: var(--l-weight);
}
/* Typography */
.xl__header {
  font-size: var(--xl-header);
}
.l__header {
  font-size: var(--l-header);
}
.m__header {
  font-size: var(--m-header);
}
.s__header {
  font-size: var(--s-header);
}
.xl__prg {
  font-size: var(--xl-prg);
}
.l__prg {
  font-size: var(--l-prg);
  line-height: 30px;
}
.m__prg {
  font-size: var(--m-prg);
  line-height: 20px;
}
.s__prg {
  font-size: var(--s-prg);
}
.xs__prg {
  font-size: var(--xs-prg);
}
.bold {
  font-weight: var(--xl-weight);
}
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.ll-container {
  align-items: flex-start;
  justify-content: flex-start;
}
a:hover {
  text-decoration: underline;
}
.box-wrapper {
  justify-content: start;
  gap: 5px;
  align-items: stretch;
}
.main__header {
  width: 65%;
}
.box-wrapper .ll-flex__col {
  gap: 0;
  justify-content: space-between;
}
.description-text {
  font-style: italic;
}
.yellow-text {
  color: #f37226;
}
.left-col {
  width: 65%;
}
.left-col ul {
  list-style: circle;
  list-style-position: inside;
}
.card {
  border-radius: 10px;
  background-color: #f0f0f0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  gap: 20px;
}
.card__img {
  height: 160px;
  width: auto;
}
.purple-text {
  color: #eb2969;
  text-align: center;
}
.banner-box {
  border: 1px solid #000;
  width: 100%;
}
.banner-box .ll-flex__row {
  padding: 20px;
}
.banner-title {
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.banner-text {
  align-items: center;
  gap: 18px;
}
.banner-btn {
  display: block;
  background-color: #57af08;
  border-radius: 8px;
  font-size: 20px;
  padding: 8px 20px;
  text-align: center;
  color: #fff;
  font-weight: 800;
}
.ta-c {
  text-align: center;
}
.right-col {
  width: calc(35% - 40px);
  align-items: center;
}
.right-col h2 {
  text-align: center;
}
.right-col img {
  width: 100%;
}
.card__flex {
  align-items: flex-start;
  justify-content: space-between;
}
.side-banner {
  padding: 20px;
  width: 100%;
  border: 1px dotted #000;
  text-align: center;
}
.comment-block {
  gap: 10px;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: start;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 20px;
  width: 65%;
}
.comment-text {
  gap: 6px;
}
.blue-text {
  color: #4267b2;
}
.grey-text {
  color: rgb(62, 62, 62);
}
.comment-pic {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.comment-time {
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 8px;
}
.likes {
  color: #4267b2;
}
.comment-container {
  gap: 20px;
}
@media screen and (max-width: 1240px) {
  .ll-section {
    padding-inline: 2%;
  }
}
@media screen and (max-width: 1024px) {
  .card__flex {
    justify-content: center;
  }
}
@media screen and (max-width: 992px) {
  .ll-section {
    padding: 70px 4%;
  }
}
@media screen and (max-width: 767px) {
  .left-col,
  .main__header,
  .comment-block {
    width: 100%;
  }
  .right-col {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .ll-section {
    padding: 50px 4%;
  }
  .m__header {
    font-size: 25px;
    line-height: 32px;
  }
  .l__prg {
    font-size: 16px;
    line-height: 24px;
  }
  .card__wrapper {
    flex-direction: column;
  }
  .banner-text {
    text-align: center;
  }
}
