@font-face {
  font-family: "SR";
  src: url("../fonts/SR.woff2") format("woff2"), url("../fonts/SR.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ST";
  src: url("../fonts/ST.woff2") format("woff2"), url("../fonts/ST.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "NR";
  src: url("../fonts/NR.woff2") format("woff2"), url("../fonts/NR.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NM";
  src: url("../fonts/NM.woff2") format("woff2"), url("../fonts/NM.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NB";
  src: url("../fonts/NB.woff2") format("woff2"), url("../fonts/NB.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  user-select: none;
  box-sizing: border-box;
  -webkit-user-drag: none;
}

html,
body {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
  font-family: "NM", Helvetica, sans-serif;
  font-weight: 500;
  font-style: normal;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  user-select: none;
  -webkit-user-select: none;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  color: #000000;
}

::-moz-selection {
  color: #000000;
  background: #fafafa;
}

::selection {
  color: #000000;
  background: #fafafa;
}

body::-webkit-scrollbar {
  width: 0;
  display: none;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: transparent;
}

body::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/*
.responsive {
  width: 100%;
}*/

img.lazy {
  opacity: 0;
}

img:not(.initial) {
  transition: opacity 1s;
}

img.initial,
img.loaded,
img.error {
  opacity: 1;
}

img:not([src]) {
  visibility: hidden;
}

h1,
h2,
h3,
p,
button,
.swiper-pagination,
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 0.625vw;
  line-height: 120%;
  margin: 0;
  font-weight: normal;
}

@media (max-width: 1919px) {
  h1,
  h2,
  h3,
  p,
  button,
  .swiper-pagination,
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 0.84vw;
  }
}

@media (max-width: 1024px) {
  h1,
  h2,
  h3,
  p,
  button,
  .swiper-pagination,
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 1.17vw;
  }
}

@media (max-width: 768px) {
  h1,
  h2,
  h3,
  p,
  button,
  .swiper-pagination,
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 1.5625vw;
  }
}

@media (max-width: 560px) {
  h1,
  h2,
  h3,
  button,
  .swiper-pagination,
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 3.2vw;
  }

  p {
    font-size: 2.7vw;
  }
}

/* HOMEPAGE STYLE *****************************************************************************************************/
@keyframes opacityzinho {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.menu-wrapper {
  width: 100%;
  position: sticky;
  top: 0;
  padding: 7px 10px 40px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(180deg, #ffffff 82%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.dark-menu-background {
  background: linear-gradient(180deg, #000000 82%, rgba(0, 0, 0, 0) 100%);
}

.logo-home-link {
  width: 50%;
  display: flex;
}

.logo-home-link a:nth-child(1) {
  width: 50%;
}

.logo-home-link a:nth-child(1) h1 {
  font-family: "NB", Helvetica, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
}

.logo-home-link a:nth-child(2) {
  display: flex;
  position: relative;
  cursor: pointer;
}

.logo-home-link a:nth-child(2) h1 {
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  display: flex;
  cursor: pointer;
}

.logo-home-link a:nth-child(2) div {
  width: 0;
  height: 2px;
  transition: all 0.35s ease;
}

.logo-home-link a:nth-child(2):hover div {
  width: 100%;
  height: 2px;
  transition: all 0.5s ease;
}

.logo-home-link a:nth-child(2) span {
  opacity: 0;
  height: 2px;
  transition: all 0.1s ease;
}

.logo-home-link a:nth-child(2):hover span {
  opacity: 1;
  height: 2px;
  transition: all 0.3s ease;
  transition-delay: 0.35s;
}

.work-mode-link {
  width: 10%;
  animation: opacityzinho 2s ease 0.5s backwards;
}

.work-mode-link h1:nth-child(2),
.work-mode-link h1:nth-child(3) {
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
  cursor: pointer;
}

.work-mode-link h1:nth-child(2):hover,
.work-mode-link h1:nth-child(3):hover {
  font-family: "ST", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: italic;
}

.convert-type-white {
  color: #ffffff !important;
}

.dark-background {
  background-color: #000000;
}

.dark-lines-background {
  background-color: #0e0e0e !important;
}

.area-type-link {
  width: 15%;
  animation: opacityzinho 2s ease 0.5s backwards;
}

.area-type-link button {
  border: none;
  background: none;
  outline: none;
  color: #000000;
  display: block;
  margin: 0;
  padding: 0;
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
  cursor: pointer;
}

.area-type-link button:hover {
  font-family: "ST", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: italic;
}

.activa {
  font-family: "ST", "Times New Roman", Times, serif !important;
  font-weight: normal;
  font-style: italic;
}

.btn.active {
  font-family: "ST", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: italic;
}

.slide-container {
  width: 15%;
  animation: opacityzinho 2s ease 0.5s backwards;
}

input[type="range"] {
  appearance: none;
  width: 100%;
  height: 10px;
  background: #fafafa;
  border: 0.5px solid #000000;
  border-radius: 100px;
  padding: 0 1px;
  outline: none;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
  margin: 0 !important;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 7px;
  height: 7px;
  background: #000000;
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
}

input[type="range"]::-moz-range-thumb {
  width: 7px;
  height: 7px;
  background: #000000;
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb:active {
  cursor: grab;
}

.information-link {
  width: 10%;
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
  animation: opacityzinho 2s ease 0.5s backwards;
}

.information-link:hover {
  font-family: "ST", "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: italic;
}

.main-projects-container {
  width: 100%;
  padding: 60px 0 1px 0;
  background-image: linear-gradient(to right, #000000 10%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 4px 1px;
  background-repeat: repeat-x;
}

.project-wrapper {
  width: 100%;
  padding: 5px 10px 35px 10px;
  background-image: linear-gradient(to right, #000000 10%, rgba(255, 255, 255, 0) 0%);
  background-position: top;
  background-size: 4px 1px;
  background-repeat: repeat-x;
  display: none;
  animation: opacityzinho 2s ease 0.5s backwards;
}

.light-dotted-border {
  background-image: linear-gradient(to right, #fafafa 10%, rgba(255, 255, 255, 0) 0%);
}

.show {
  display: block;
}

.gray-row {
  background-color: #fafafa;
}

.header-project {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 4px;
}

.header-project h1:nth-child(1) {
  width: 25%;
  text-transform: uppercase;
  padding-right: 5px;
}

.header-project h1:nth-child(2) {
  width: 35%;
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  padding-right: 5px;
}

.header-project h1:nth-child(3) {
  width: 35%;
  padding-right: 5px;
}

.header-project h1:nth-child(4) {
  width: 5%;
  text-align: right;
  text-transform: uppercase;
}

.images-project {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  grid-row-gap: 5px;
}

.images-group:nth-child(odd) {
  justify-content: space-between;
}

.images-group:nth-child(even) {
  justify-content: space-evenly;
}

.images-group {
  width: 100%;
  display: flex;
  align-items: flex-start;
  grid-column-gap: 5px;
  overflow-x: hidden;
}

.images-group img {
  max-width: 19.61% !important;
  cursor: pointer;
}

.images-group img:hover {
  outline: 0.5px solid #000000;
  outline-offset: -0.5px;
}

.dark-lines img:hover {
  outline: 0.5px solid #fafafa;
  outline-offset: -0.5px;
}

.dont-scroll {
  overflow: hidden !important;
}

.lightbox {
  display: none;
}

.lightbox-appears {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(2px);
}

.lightbox-dark-background {
  background: rgba(0, 0, 0, 0.95);
}

.swiper {
  width: 100%;
  height: 100%;
}

.header-lightbox {
  width: 100%;
  padding: 7px 10px 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 9999;
}

.header-lightbox h1:nth-child(1) {
  width: 35%;
  text-transform: uppercase;
  padding-right: 5px;
}

.swiper-pagination {
  width: 55% !important;
  position: relative;
  top: 0 !important;
  font-family: "NR", Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

span.swiper-pagination-current:before {
  content: "Image ";
}

h1.close-lightbox {
  width: 10%;
  text-align: right;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

h1.close-lightbox:hover {
  opacity: 0.7;
  transition: opacity 0.35s ease;
}

.swiper-slide {
  width: fit-content;
  height: fit-content;
  text-align: center;
  display: block;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  opacity: 0.4;
  transition: opacity 0.1s ease;
}

.swiper-slide-active {
  opacity: 1;
  transition: opacity 0.35s ease;
}

.swiper-slide img {
  max-width: 35vw;
  max-height: 70vh;
  display: block;
  object-fit: contain;
  cursor: grab;
}

.work-description {
  padding-top: 5px;
  padding-right: 2px;
  text-align: left;
  position: absolute;
}

.work-description p:nth-child(1) {
  font-family: "ST", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: italic;
}

.work-description p:nth-child(2),
.work-description p:nth-child(3) {
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
}

.swiper-button-prev,
.swiper-button-next {
  width: 50%;
  height: 100vh;
  position: absolute;
  top: auto !important;
  bottom: 0;
  color: #000000;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "NR", Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after {
  content: "Previous";
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.swiper-button-next:after {
  content: "Next";
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.1;
  cursor: pointer;
  pointer-events: none;
}

.footer-home {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 200px 10px 10px 10px;
}

.copyright-year {
  width: 25%;
}

.name-footer {
  width: 35%;
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
}

.design-code {
  width: 30%;
}

.design-code a {
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
}

.design-code a:hover {
  font-family: "ST", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: italic;
}

.contacts-home {
  width: 10%;
  display: flex;
  justify-content: flex-end;
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
}

.contacts-home a:hover {
  font-family: "ST", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: italic;
}

.contacts-home a:nth-child(1) h1:after {
  content: " / ";
}

.contacts-home a:nth-child(1):hover h1:after {
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
}

.contacts-home a:nth-child(2) h1 {
  padding-left: 3px;
}

@media (max-width: 1440px) {
  .swiper-slide img {
    max-width: 32vw;
    max-height: 62vh;
    display: block;
    object-fit: contain;
    cursor: grab;
  }
}

@media (max-width: 1024px) {
  .main-projects-container {
    padding: 20px 0 1px 0;
  }

  .header-lightbox h1:nth-child(1) {
    width: 40%;
  }

  .swiper-pagination {
    width: 40% !important;
  }

  h1.close-lightbox {
    width: 20%;
  }

  .swiper-slide img {
    max-width: 60vw;
    max-height: 85vh;
  }
}

@media (max-width: 768px) {
  .menu-wrapper {
    flex-wrap: wrap;
    padding: 7px 10px 30px 10px;
    grid-column-gap: 0;
    background: linear-gradient(180deg, #ffffff 88%, rgba(255, 255, 255, 0) 100%);
  }

  .dark-menu-background {
    background: linear-gradient(180deg, #000000 88%, rgba(0, 0, 0, 0) 100%);
  }

  .logo-home-link {
    width: 60%;
    order: 1;
    grid-column-gap: 0;
  }

  .logo-home-link a:nth-child(1) {
    width: 33.3333333%;
    padding-right: 5px;
  }

  .logo-home-link a:nth-child(2) {
    width: 66.6666667%;
    padding-right: 5px;
  }

  .work-mode-link {
    width: 20%;
    order: 3;
    padding-top: 25px;
    padding-right: 5px;
  }

  .area-type-link {
    width: 40%;
    order: 4;
    padding-top: 25px;
    padding-right: 5px;
  }

  .slide-container {
    width: 40%;
    order: 5;
    padding-top: 22px;
  }

  .information-link {
    width: 40%;
    order: 2;
  }

  .main-projects-container {
    padding: 30px 0 1px 0;
  }

  .project-wrapper {
    padding: 5px 10px 25px 10px;
  }

  .header-project h1:nth-child(1) {
    width: 50%;
  }

  .header-project h1:nth-child(2) {
    width: 20%;
  }

  .header-project h1:nth-child(3) {
    display: none;
  }

  .header-project h1:nth-child(4) {
    width: 20%;
  }

  .images-project {
    width: fit-content;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .images-project::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  .images-project::-webkit-scrollbar-track {
    background: transparent;
  }

  .images-group:nth-child(odd),
  .images-group:nth-child(even) {
    width: fit-content;
    justify-content: flex-start;
    overflow-x: visible;
  }

  .images-group img {
    max-width: 60% !important;
  }

  .mobile-images-group {
    display: flex;
    grid-column-gap: 5px;
    align-items: flex-start;
  }

  .swiper-slide img {
    max-width: 60vw;
    max-height: 80vh;
  }

  .footer-home {
    flex-wrap: wrap;
    padding: 120px 10px 10px 10px;
  }

  h1.copyright-year {
    width: 20%;
    padding-right: 5px;
  }

  h1.name-footer {
    width: 40%;
    padding-right: 5px;
  }

  .design-code {
    display: none;
  }

  .contacts-home {
    width: 40%;
  }
}

@media (max-width: 560px) {
  .main-projects-container {
    padding: 10px 0 1px 0;
  }
  .header-lightbox {
    flex-wrap: wrap;
  }
  .header-lightbox h1:nth-child(1) {
    width: 80%;
    order: 1;
  }
  .swiper-pagination {
    width: 80% !important;
    order: 3;
  }
  h1.close-lightbox {
    order: 2;
  }
  .swiper-slide img {
    max-width: 80vw;
    max-height: 65vh;
  }
  .work-description {
    max-width: 82vw;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

/* INFORMATION PAGE STYLE *****************************************************************************************************/
body.information {
  height: 100%;
  min-height: 100vh;
  position: relative;
}

body.information .menu-wrapper {
  background: none;
  padding: 7px 10px;
}

body.information .information-link {
  font-family: "ST", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: italic;
}

.information-main-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 7px 10px 10px 10px;
  position: absolute;
  top: 0;
  animation: opacityzinho 2s ease 0.5s backwards;
}

.information-main-container a {
  font-family: "SR", "Times New Roman", Times, serif !important;
  font-weight: normal;
  font-style: normal;
  display: contents;
}

.information-main-container a:hover {
  font-family: "ST", "Times New Roman", Times, serif !important;
  font-weight: normal;
  font-style: italic;
}

.information-main-container h1 {
  width: fit-content;
}

.information-statement {
  width: 40%;
  margin-left: 50%;
  padding-bottom: 10px;
}

.information-statement h1 {
  padding-right: 5px;
}

.contacts-information-wrapper {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.contacts-information-wrapper div {
  width: 50%;
}

.represented-by,
.contacts {
  padding-bottom: 35px;
}

.studio-address {
  padding-bottom: 100px;
}

.studio-address h1:nth-child(2) {
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
}

.design-credits {
  margin-left: 50%;
}

.rod-portrait {
  width: 25%;
  line-height: 0;
}

.rod-portrait img {
  width: 100%;
}

.back-to-projects {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

body.information .footer-home {
  position: absolute;
  bottom: 0;
  padding: 10px;
}

body.information h1.copyright-year {
  width: 100%;
  padding-right: 5px;
}

@media (max-width: 1024px) {
  .studio-address {
    padding-bottom: 60px;
  }

  .rod-portrait {
    width: 40%;
  }

  .back-to-projects {
    width: 40%;
    margin-left: 50%;
    justify-content: flex-start;
    padding-top: 35px;
  }
}

@media (max-width: 768px) {
  body.information {
    min-height: 100%;
  }

  body.information .menu-wrapper {
    padding: 7px 10px 10px 10px;
    background: linear-gradient(180deg, #ffffff 92%, rgba(255, 255, 255, 0) 100%);
  }

  .information-main-container {
    position: relative;
    padding: 18px 10px 10px 10px;
  }

  .information-statement {
    width: 80%;
    margin-left: 20%;
    padding-bottom: 7px;
    order: 1;
  }

  .contacts-information-wrapper {
    width: 100%;
    padding-top: 25px;
    order: 3;
  }

  .represented-by {
    width: 80% !important;
    margin-left: 20%;
    padding-bottom: 25px;
    order: 1;
  }

  .contacts {
    width: 100% !important;
    padding-bottom: 25px;
    order: 3;
  }

  .more-info {
    width: 80% !important;
    margin-left: 20%;
    padding-bottom: 25px;
  }

  .studio-address {
    width: 80% !important;
    margin-left: 20%;
    padding-bottom: 25px;
    order: 4;
  }

  .design-credits {
    width: 80% !important;
    margin-left: 20%;
    padding-bottom: 40px;
    order: 5;
  }

  .rod-portrait {
    width: 80%;
    margin-left: 20%;
    order: 2;
  }

  .back-to-projects {
    width: 80%;
    margin-left: 20%;
    padding-top: 0;
    order: 4;
  }

  body.information .footer-home {
    position: relative;
    padding: 90px 10px 10px 10px;
  }
}

/* TEXTS PAGE STYLE *****************************************************************************************************/
.close-texts {
  width: 10%;
  position: fixed;
  top: 0;
  right: 0;
  text-align: right;
  padding: 7px 10px;
  opacity: 1;
  transition: opacity 0.15s ease;
  z-index: 1;
  animation: opacityzinho 2s ease 0.5s backwards;
}

.close-texts:hover {
  opacity: 0.7;
  transition: opacity 0.35s ease;
}

.main-texts-container {
  width: 100%;
  position: relative;
  animation: opacityzinho 2s ease 0.5s backwards;
}

.main-texts-container .text-wrapper:last-child {
  padding-bottom: 0;
}

.text-wrapper {
  width: 100%;
  display: flex;
  padding-bottom: 100px;
}

.text-header {
  width: 50%;
  position: sticky;
  top: 0;
  padding: 7px 10px;
  display: flex;
  align-self: flex-start;
}

.text-header h1:nth-child(1) {
  width: 50%;
  font-family: "NM", Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  padding-right: 5px;
}

.text-header h1:nth-child(2) {
  width: 50%;
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  padding-right: 5px;
}

.body-text {
  width: 40%;
  padding: 7px 5px 0 0;
}

.body-text span,
.body-text sup {
  font-family: "SR", "Times New Roman", Times, serif;
  font-weight: normal;
  font-style: normal;
}

@media (max-width: 560px) {
  .close-texts {
    width: 25%;
  }

  .text-wrapper {
    flex-wrap: wrap;
  }

  .text-header {
    width: 100%;
    flex-wrap: wrap;
    padding: 7px 10px 10px 10px;
    background: linear-gradient(180deg, #ffffff 92%, rgba(255, 255, 255, 0) 100%);
  }

  .text-header h1:nth-child(1) {
    width: 75%;
  }

  .text-header h1:nth-child(2) {
    width: 75%;
    padding-top: 1px;
  }

  .body-text {
    width: 100%;
    padding: 16px 10px 2px 10px;
  }

  body.texts h1.copyright-year {
    width: 100%;
  }
}
