html {
  box-sizing: border-box;
  font-size: 16px;
}

:root {
  --primary-color: rgb(36, 36, 36);
  --text-color: rgb(97, 97, 97);
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}


ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-size: 19px;
  color: #3d3d3d;
}

/* SECTION 1 */
.seniors-1 .ll-container {
  display: flex;
  align-items: center;
  justify-content: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 180px;
  padding-right: 180px;
}

.seniors-1__img {
  height: 50px;
}

/* SECTION 2 */
.seniors-2 .ll-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 180px;
  padding-right: 180px;
}

.seniors-2 a {
  color: rgb(202, 2, 2);
  text-decoration: none;
}

.seniors-btn {
  background-color: rgb(202, 2, 2);
  width: 100%;
  padding: 20px;
  font-size: 19px;
}

.seniors__img {
  width: 100%;
}

.seniors__img--sm {
  height: 500px;
  margin-inline: auto;
}

.seniors__title {
  font-size: 60px;
  color: rgb(202, 2, 2);
  font-weight: bold;
}

.seniors__title--sm {
  font-size: 40px;
  color: #3d3d3d;
  font-weight: 600;
}

.seniors__author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  color: gray;
}

.seniors__author img {
  border-radius: 300px;
  height: 45px;
  width: 45px;
}

.seniors-author__text b {
  color: blue;
}

.seniors__text-sm {
  font-size: 15px;
}

/* SECTION 3 */
.seniors-3 {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.seniors-3 .ll-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-left: 180px;
  padding-right: 180px;
}

.seniors-3__img {
  height: 30px;
}


.seniors-3__text-sm {
  color: #b3b3b3;
  font-size: 10px;
}

.seniors-3__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.seniors-3__links a {
  text-decoration: none;
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 500;
}


@media screen and (max-width: 992px) {

  .seniors-3 .ll-container,
  .seniors-2 .ll-container,
  .seniors-1 .ll-container {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 17px;
  }


  .seniors__title {
    font-size: 35px;
  }

  .seniors__title--sm {
    font-size: 25px;
    font-weight: 500;
  }


}

@media screen and (max-width: 576px) {

  .seniors-3 .ll-container,
  .seniors-2 .ll-container,
  .seniors-1 .ll-container {
    padding-left: 0;
    padding-right: 0;
  }
}