* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navbar-bg-color: rgb(51, 51, 51);
  --skill-level-title: white;
  --hover-btm-border: white;
  --post-title: black;
  --contact-form-bg-color: rgb(51, 51, 51);
  --contact-form-border-clicked: blue;
  --contact-form-border: black;
  --about-me-title: rgba(0, 0, 255, 0.525);
  --about-me-bg-color: aliceblue;
  --copy-right-bg-color: rgba(248, 248, 248);
  --welcome-title: linear-gradient(#00ccff, #d400d4);
  --back-button-color: #0b0b3e9c;
  --back-button-hover-color: rgba(0, 0, 255, 0.525);
}
html {
  scroll-behavior: smooth;
  margin-right: auto;
  margin-left: auto;
}
body {
  font-family: 'Poppins' 'Open Sans', Verdana, Geneva, Tahoma, sans-serif;
  background: rgb(255, 255, 255);
}
.loader {
  margin:  auto;
  border: 8px solid rgb(247, 245, 245);
  border-top: 8px solid #0cabc3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin .3s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-img {
  background-image: url(images/ufc\ pose.jpg);
  background-size: auto;
  background-repeat: space;
  height: 36vh;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: white;
  border: 27px solid white;
}
.welcome-title {
  /* font-family: 'Sedgwick Ave Display', cursive; */
  font-family: 'Splash', cursive;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 50px;
  padding: 164px;
  color: black;
  animation: slogan 3s ease-out 1 both;
  font-size: 2.3rem;
  z-index: 2;
  /* mix-blend-mode: lighten; */
  /* border: 2px solid black; */
}
.for-mobile-title {
  color: rgb(255, 255, 255);
  top: 10px;
  position: relative;
  display: flex;
  z-index: 3;
  margin: 10px;
  position: fixed;
  flex-direction: row;
  /* margin-left: 125px; */
  font-size: 16px;
}
/* FOR TITLE TEXT */
@keyframes slogan {
  0% {
    color: rgba(255, 255, 255, 0);
  }
  15% {
    color: rgba(66, 66, 66);
  }
  20% {
    color: rgb(129, 129, 129);
  }
  25% {
    color: rgba(192, 192, 192);
  }
  50% {
    color: rgba(255, 255, 255);
  }
  75% {
    color: rgb(66, 66, 66);
  }
  80% {
    color: rgb(255, 255, 255);
  }
  90% {
    color: rgb(0, 0, 0);
  }
  95% {
    color: rgb(255, 255, 255);
  }
  97% {
    color: rgb(128, 128, 128);
  }

  100% {
    color: black;
  }
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(-360deg);
    background: linear-gradient(#00ccff4a, #d400d429);
  }
}
@keyframes fade {
  0% {
    transform: rotate(0deg);
    background: linear-gradient(#00ccff4a, #d400d429);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.blog-containers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin: 80px auto;
  gap: 2em;
}
img {
  width: 400px;
  height: 340px;
}
nav {
  display: inline;
}
.navbar {
  min-height: 50px;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  background: rgb(51 51 51);
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 50px;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  top: 0;
  z-index: 3;
}
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  z-index: 1;
  gap: 5rem;
}
#nav-menu-bg-color,
#hamburger-bg-color {
  background-color: rgba(0, 0, 0, 0.8);
}
.nav-menu a {
  text-decoration: none;
  position: relative;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
  line-height: 25px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  background-color: var(--hover-btm-border);
  height: 3px;
  width: 0;
  left: 0;
  bottom: 0px;

  transition: 0.3s;
}
.nav-menu a:hover {
  transition: 0.5s;
}
.nav-menu a:hover:after {
  width: 100%;
}

.nav-link {
  transition: 0.7s ease;
  color: white;
  text-decoration: none;
}
.nav-link:hover {
  border: 1px solid white;
  color: black;
  border-radius: 10px;
  padding: 5px;
}
/* HAMBURGER MENU */
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
/* HAMBURGER MENU MQ */
@media (max-width: 740px) {
  .hamburger {
    display: block;
  }
  /* used :nth-child() to target specific child elements based on their position */
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 57px;
    gap: 0;
    flex-direction: column;
    background-color: #262626;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }
  .nav-item {
    margin: 16px 0;
  }
  .nav-menu.active {
    left: 0;
  }
}
/*-------------- Slideshow container --------------*/
.slideshow-container,
.slideshow-container-two,
.slideshow-container-three,
.slideshow-container-four {
  max-width: 425px;
  position: relative;
  margin: auto;
}
/* Hide icon text */
.visually-hidden {
  position: absolute ;
  clip: rect(1px 1px 1px 1px); /* Clip the text off-screen */
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px ;
  height: 1px ;
  overflow: hidden;
}
/* Hide the images by default */
.mySlides,
.mySlides-two,
.mySlides-three,
.mySlides-four {
  display: none;
  width: 300px;
}
.img-border {
  border-radius: 10px;
  width: 100%;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 26px;
  transition: 0.2s ease;
  border-radius: 0 3px 3px 0;
  user-select: none; 
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
}
/* Caption text */
.text {
  color: var(--skill-level-title);
  font-size: 15px;
  padding: 12px 12px;
  position: absolute;
  /* bottom: 8px; */
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
}
.fight-location-text {
  font-size: 1rem;
  color: white;
}
.class-name {
  color: var(--post-title);
  padding: 15px;
  font-size: 1.5rem;
}
.img-title {
  color: var(--skill-level-title);
  background: rgb(0 0 0/ 0.8);
  border-radius: 10px;
  font-size: 16px;
  margin: 65px 0px 0px 10px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  z-index: 0;
}
/* READ MORE */
.read-more {
  color: var(--skill-level-title);
  padding: 12px;
  text-align: center;
  /* text-decoration: underline; */
  display: inline-block;
  border-radius: 10px;
  background: rgb(0 0 0/ 0.8);
  margin: 0px 0px 0px 0px;
  transition: 0.5s;
}
.read-more:hover {
  background: rgba(255, 255, 255);
  color: rgb(0, 0, 0);
  text-decoration: underline;
}
/* The dots/bullets/indicators */
.dot-container,
.dot-container-two,
.dot-container-three,
.dot-container-four {
  text-align: center;
}
.dot,
.dotsTwo,
.dotsThree,
.dotsFour {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active,
.dot:hover {
  background-color: var(--about-me-title);
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.about-me {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 200px;
  color: rgb(0, 0, 0);
  background-color: rgba(209, 209, 209, 0.164);
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1440px;
  text-align: center;
}
.about-me h3 {
  color: var(--post-title);
  font-size: 1.5rem;
  margin: 10px;
  text-align: center;
}
.signature-quote {
  font-family: 'Comforter Brush', cursive;
  font-size: 2rem;
  color: red;
  margin: 10px;
  text-align: center;
  padding: 5px;
}
.call-to-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 380px;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1440px;
  text-align: center;
}
.call-to-action-paragraph {
  font-size: 1.5rem;
  margin: 10px;
  margin-top: 20px;
  display: flex;
  gap: 2em;
}
.fa-brands,
.fa-twitter,
.fa-instagram {
  color: #d1d1d1;
  margin: 10px;
}
.fa-instagram:hover {
  color: #a45d74;
}
.fa-facebook:hover {
  color: blue;
}
.fa-twitter:hover {
  color: rgb(0, 132, 255);
}
/* FOOTER NAV */
.copy-rights {
  display: flex;
  flex-direction: row;
  background: var(--copy-right-bg-color);
  position: fixed;
  bottom: 0;
  margin-top: 20px;
  height: 29px;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  z-index: 100;
}
/* CONTACT FORM */
.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(0, 0, 0);
  background-color: rgba(209, 209, 209, 0.164);
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1440px;
  text-align: center;
}
.contact-page-social-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.call-to-action-paragraph-contact-page {
  border-bottom: 2px solid #000000;
  border-top: 2px solid #000;
  padding: 5px 0px 5px 0px;
  margin: 20px auto;
  width: 70%;
  justify-content: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  margin: 20px auto;
  width: 90%;
  text-align: center;
  gap: 1em;
}
.contact-form input {
  width: 100%;
  padding: 10px;
  outline-color: var(--contact-form-border-clicked);
  font-size: 1rem;
  caret-color: blue;
}
.contact-form input:hover {
  border-color: black;
}
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--contact-form-border);
  outline-color: var(--contact-form-border-clicked);
  font-size: 1rem;
  height: 300px;
}
.contact-title {
  font-size: 2rem;
  color: var(--post-title);
  margin: 40px auto;
  text-align: center;
  padding: 5px;
}
.contact-form-btn {
  background-color: white;
  color: var(--contact-form-btn-color);
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border-right: none;
  border-left: none;
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.contact-form-btn:hover {
  background-color: rgba(20, 20, 255, 0.866);
  color: white;
  border: rgba(20, 20, 255, 0.866);
}
/* form classes for message errors */
.form-error {
  display: none;
  color: red;
  font-size: 0.8rem;
  margin-top: 2px;
  font-style: italic;
}
.form-submitted {
  display: none;
  color: rgb(0, 255, 0);
  font-size: 1.2rem;
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid rgba(0, 255, 0);
  padding: 10px;
  width: 200px;
}
/* ABOUT ME PAGE - ABOUT ME SECTION */
.deep-dive-bg-color {
  background-color: var(--about-me-bg-color);
  height: 400px;
  padding: 20px;
  margin: 0px auto 250px auto;
  max-width: 1024px;
}
.about-me-ufc-bg-color {
  background-color: var(--about-me-bg-color);
  height: 700px;
  padding: 20px;
  margin: 0px auto 400px auto;
  max-width: 1024px;
}
.myself-section,
.about-me-deep-dive-section,
.about-me-ufc-section,
.about-me-team-gsp {
  display: flex;
  flex-flow: column wrap;
  max-width: 500px;
  font-size: 1rem;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.5rem;
}
#about-me {
  padding-top: 60px;
}
.about-me-img {
  width: 300px;
  height: 100%;
  border-radius: 10px;
}
.myself-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 3rem;
  margin: 50px auto 250px auto;
  padding: 0 50px 0 50px;
  max-width: 1024px;
}
.myself-container-deep-dive {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 3rem;
  padding: 0 50px 0 50px;
  max-width: 1024px;
}
.deep-dive-img {
  width: 300px;
  height: 450px;
  border-radius: 10px;
}
.subject-title {
  color: var(--about-me-title);
}
.subject-description {
  font-size: 1.3rem;
}
.myself-section p::before,
.about-me-deep-dive-section p::before,
.about-me-ufc-section p::before,
.about-me-team-gsp p::before {
  content: open-quote;
  font-size: 2.5em;
  color: red;
}
.myself-section p::after,
.about-me-deep-dive-section p::after,
.about-me-ufc-section p::after,
.about-me-team-gsp p::after {
  content: close-quote;
  font-size: 1.5rem;
  color: red;
}
/*-------------- FIGHT POST PAGE ---------------*/
/* Dropdown Button */
.view-all-post-button {
  margin: 50px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropbtn {
  background-color: rgba(57, 57, 82, 0.53);
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  width: 100vw;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  width: 100%;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  justify-content: center;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: var(--about-me-title);}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: var(--about-me-title)}
.blog-post-page-layout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: 365px;
  margin-top: 0px;
}
.fight-post-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  max-width: 1444px;
}
.full-body-img {
  width: 400px;
  height: 100%;
  padding: 20px;
  margin-bottom: 30px;
  position: fixed;
  left: 10px;
}
.blog-post-container {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  max-width: 1249px;
  margin: 20px auto 0 auto;
  flex-wrap: wrap;
}
.fight-card-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
  padding: 0 50px;
}
.blog-imgs {
  width: 300px;
  height: 220px;
  margin-bottom: 15px;
}
.blog-post-read-more {
  color: var(--blog-post-read-more);
  font-size: 1.2rem;
  font-weight: bold;
  /* text-decoration: underline; */
}
.blog-post-read-more:hover {
  color: var(--blog-post-read-more);
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: underline;
}
.more-posts {
  color: var(--blog-post-read-more);
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: underline;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin: 0 50px 50px 0;
}
/* dialog styling  */
.post-dialog {
margin: auto;
width: 100%;
height: 70%;
background-color: rgba(0, 0, 0);
border-radius: 0px;
}
/* load more posts btn */
.load-more-posts {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px;
  padding: 20px;
  background-color:  rgba(57, 57, 82, 0.53);;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border: none;
  color: white;
}
.load-more-posts:hover {
  background-color: var(--about-me-title);
  color: white;
  box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0);
  border-color: white;
  outline: none;
}
/* --------------- LATEST-FIGHT-POST PAGE ----------*/
.fight-post-header {
  margin:12px auto;
  display: flex;
  justify-content: center;
  color: var(--about-me-title);
}
.post-paragraph-content {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin: 20px 0px 50px 10px;
  max-width: 1200px;
}
.button-containor {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 20px;
}
.button-containor a {
  text-decoration: none;
}
.back-button,
.more-post-button {
  display: flex;
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  width: 100px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(216, 216, 216);
  background-color:  rgba(57, 57, 82, 0.53);;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border: none;
  color: white;
}
.back-button:hover,
.more-post-button:hover {
  border: none;
  background-color: var(--about-me-title);
  color: white;
  box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0);
 }
.fight-post-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 50px auto 0px auto;
  padding: 0 50px 0 50px;
  max-width: 1249px;
}
.fight-post-img {
  width: 75%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  margin: auto;

}
.post-date-styling {
  font-size: 1.2rem;
  font-style: italic;
}
/* MEDIA QUERIES */
@media (max-width: 375px) {
  .blog-post-page-layout {
    margin-left: 160px;
  }
  .full-body-img {
    width: 250px;
  }
  img {
    height: 230px;
  }
  .my-slides-on-mobile {
    width: 360px;
  }
  .bg-img {
    background-image: url(images/ufc\ pose.jpg);
    background-size: cover;
    background-repeat: inherit;
    top: 30px;
  }
}
@media (max-width: 425px) {
  .full-body-img {
    width: 250px;
  }
  img {
    height: 230px;
  }
  .my-slides-on-mobile {
    width: 360px;
  }
  .for-mobile-title {
    right: 70px;
  }
  .navbar {
    justify-content: flex-start;
    background-color: #000000;
    height: 57px;
    padding: 0px 8px;
  }
  .welcome-title {
    font-size: 1.8rem;
  }
  .bg-img {
    background-image: url(images/ufc\ pose.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 36vh;
    width: 100%;
    top: 23px;
    z-index: 1;
    background-color: white;
    border: 27px solid white;
    margin-top: 50px;
  }
  body {
    background-color: #ffffff;
  }
  .about-me {
    color: black;
    background: #ffffff;
    padding: 12px;
    width: 100%;
    margin: auto;
    font-size: 12px;
    border-radius: 0px;
  }
  .call-to-action {
    color: black;
    background: #ffffff;
    padding: 12px;
    width: 100%;
    margin: auto;
    font-size: 12px;
    border-radius: 0px;
    margin-top: 0;
  }
  .blog-post-container {
    margin: 0px;
    justify-content: center;
    padding-top: 20px;
  }
  .fight-post-img {
    width: 400px;
  }
  .blog-post-page-layout {
    margin-left: 160px;
  }
  .myself-container,
  .myself-container-deep-dive {
    padding: 0px 8px;
  }
}
@media (min-width: 426px) {
  .for-mobile-title {
    display: none;
  }
}

@media (max-width: 768px) {
  #nav-menu-bg-color {
    background-color: rgb(51 51 51);
  }

  .bg-img {
    background-image: url(images/ufc\ pose.jpg);
    background-size: contain;
    background-repeat: space;
    height: 36vh;
    width: 100%;
    position: sticky;
    top: 23px;
    z-index: 1;
    background-color: white;
    border: 27px solid white;
  }
  .welcome-title {
    font-size: 2.3rem;
    padding: 20px;
    background-color: white;
    position: relative;
    margin-top: 171px;
  }
  .call-to-action {
    padding: 100px 80px;
  }
  .justify-768px {
    justify-content: center;
  }
  .full-body-img {
    width: 250px;
    padding: 20px 10px;
    left: 0px;
  }
  .blog-post-page-layout {
    margin-left: 260px;
  }
  .fight-card-posts {
    padding: 0px;
    max-width: 210px;
  }
  .deep-dive-bg-color {
    height: 100%;
    margin-bottom: 0px;
  }
  .about-me-ufc-bg-color {
    height: 100%;
    margin-bottom: 0px;
  }
  .myself-container {
    margin-bottom: 70px;
  }
}
@media (max-width: 980px) {
  .justify-768px {
    justify-content: center;
  }
  .fight-card-posts {
    max-width: 210px;
  }
}
@media (max-width: 1024px) {
  #nav-menu-bg-color {
    background-color: rgb(51 51 51);
  }
  .welcome-title {
    font-size: 2.3rem;
    padding: 0px;
    background-color: white;
    position: relative;
    margin-top: 170px;
  }
  .bg-img {
    background-size: contain;
    background-repeat: space;
    top: 30px;
  }
  .blog-post-container {
    gap: 1rem;
  }
  .blog-imgs {
    width: 200px;
    height: 150px;
  }
}
@media (max-width: 1440px) {
  #nav-menu-bg-color {
    background-color: rgb(51 51 51);
  }
  .welcome-title {
    font-size: 2.3rem;
    padding: 0px;
    background-color: white;
    position: relative;
    margin-top: 170px;
  }
  .bg-img {
    background-size: contain;
    background-repeat: space;
    top: 30px;
    max-width: 1440px;
  }
}
@media (max-width: 1920px) {
  #nav-menu-bg-color {
    background-color: rgb(51 51 51);
  }
  .welcome-title {
    padding: 0px;
    background-color: white;
    position: relative;
    margin-top: 170px;
  }
  .about-me {
    font-size: 1.5rem;
    max-width: 1920px;
    text-align: justify;
  }
}
