@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

/*  Pallete
darker: #222
dark: #9D0A0A
normal: #BF3231
light: ##EAD196
lighter: #EEEEEE
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "outfit";
}

/* Navbar Styles*/
.navbar-container {
  background-color: #222;
  height: 5rem;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all 0.2s ease;
}

.navbar-container-scrolled {
  box-shadow: 0 2px 9px #222;
}

.navbar-logo {
  transition: transform 0.2s ease;
}

.navbar-logo a {
  text-decoration: none;
  color: #fff;
  font-family: "ubuntu";
  font-size: 2rem;
  font-weight: 600;  
}

.navbar-logo a span {
  font-weight: 200;
}

.navbar-logo:hover {
  transform: scale(0.95);
}

.navbar-container ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-container li {
  list-style: none;
}

.navbar-container li a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
  display: block;
  transition: all 0.2s ease;
}

.navbar-container li a:hover {
  padding-bottom: 0.5rem;
  color: #d3d3d3;
}

.navbar-register-btn a {
  text-decoration: none;
  color: #bf3231;
  font-size: 1.2rem;
  font-weight: 500;
  border: 3px solid #bf3231;
  background-color: transparent;
  padding: 0.7rem 1.4rem;
  border-radius: 1rem;
  transition: all 0.2s ease;
}

.navbar-register-btn a:hover {
  background-color: #bf3231;
  color: #fff;
}

.navbar-sidebar-icon {
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

@media (max-width: 1023px) {
  .navbar-container ul {
    position: absolute;
    top: 80px;
    height: 50vh;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background-color: #222;
    gap: 1rem;
    overflow: hidden;
  }

  #menuList {
    transition: all 0.3s ease;
  }

  .navbar-container li {
    padding: 1.4rem;
  }

  .navbar-sidebar-icon {
    display: block;
  }
}

/*Main Page Styles*/

.mp-main-container-1 {
  height: 85vh;
}

.mp-main-container-1 .mp-main-container-1-subcontainer-1 img {
  position: relative;
  min-width: 300px;
  width: 100%;
  height: 85vh;
  max-height: 100vh;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
}

.mp-main-container-1 h1 {
  color: #fff;
  position: absolute;
  transform: translate(-50% -50%);
  left: 5%;
  top: 33%;
  font-size: 6dvh;
  line-height: 3.5rem;
  height: auto;
  transition: all 0.2s ease;
}

.mp-main-container-1 h1 span {
  color: #bf3231;
}

.mp-main-container-1 h3 {
  position: absolute;
  transform: translate(-50% -50%);
  color: #fff;
  font-weight: 400;
  font-size: 2.5dvh;
  left: 5%;
  top: 46.5%;
  transition: all 0.2s ease;
}

.mp-main-container-1 h3 span {
  color: #bf3231;
}

.mp-main-container-1-btn {
  position: absolute;
  transform: translate(-50% -50%);
  left: 5%;
  top: 52%;
  transition: transform 0.2s ease;
}

.mp-main-container-1-btn:hover {
  transform: scale(1.05);
}

.mp-main-container-1-btn a {
  color: #fff;
  text-decoration: none;
  background-color: #bf3231;
  font-size: 2rem;
  padding: 0.7rem 2.3rem;
  border-radius: 1rem;
  transition: all 0.2s ease;
}

.mp-main-container-1-btn a:hover {
  background-color: #9d0a0a;
}

@media (max-width: 640px) {
  .mp-main-container-1 h1 {
    font-size: 4dvh;
    line-height: 2rem;
    margin-top: 5vh;
  }

  .mp-main-container-1 h3 {
    font-size: 2dvh;
    margin-top: 2px;
  }

  .mp-main-container-1-btn a {
    font-size: 1.5rem;
    padding: 0.7rem 2.1rem;
  }
}

@media (max-width: 320px) {
  .mp-main-container-1 h1 {
    font-size: 3dvh;
    margin-top: 9vh;
  }
}

.mp-main-container-2 {
  height: auto;
  text-align: center;
  background-color: #fff;
  padding: 2rem 1rem;
}

.mp-main-container-2 hr {
  width: 20%;
  height: 3px;
  background-color: #555;
}

.mp-main-container-2-subcontainer-1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.5rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  transition: all 0.2s ease;
}

.mp-main-container-2-sub-subcontainer-1 {
  flex: 1;
  padding: 1.5rem;
  min-width: 280px;
  max-width: 25rem;
  background-color: #eeeeee;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  margin: 0.5rem;
  transition: transform 0.2s ease;
}

.mp-main-container-2-sub-subcontainer-1:hover{
  transform: scale(1.05);
}

.mp-main-container-2-sub-subcontainer-1 h2 {
  font-size: 2rem;
  color: #bf3231;
}

.mp-main-container-2-sub-subcontainer-1 h3 {
  font-size: 1.7rem;
  text-align: left;
}

.mp-main-container-2-sub-subcontainer-1 p {
  color: gray;
  text-decoration: line-through;
  text-align: left;
}

.mp-main-container-2-sub-subcontainer-1 ul {
  list-style: none;
  text-align: left;
  font-size: 1rem;
  margin-bottom: 15px;
}

.mp-main-container-2-sub-subcontainer-1-btn a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  background-color: #bf3231;
  padding: 1rem 2rem;
  border-radius: 1rem;
}

.mp-main-container-2-sub-subcontainer-1-btn a:hover {
  background-color: #9d0a0a;
}

@media (max-width: 1024px) {
  .mp-main-container-2-sub-subcontainer-1 {
    min-width: 240px;
  }
}

@media (min-width: 768px) {
  .mp-main-container-2 {
    padding: 2rem;
  }

  .mp-main-container-2-subcontainer-1 {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1vh 5vh;
  }

  .mp-main-container-2-sub-subcontainer-1 {
    width: calc(33.333% - 2rem);
    padding: 2rem;
    margin: 0;
  }
}

.mp-main-container-2-subcontainer-2 {
  padding: 2rem;
}

.mp-main-container-2-sub-subcontainer-2 {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.mp-main-container-2-image-slider-1 {
  display: flex;
  aspect-ratio: 16/9;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border: 10px #222 solid;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.mp-main-container-2-image-slider-1 img {
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
  user-select: none;
}

.mp-main-container-2-image-slider-nav {
  display: flex;
  column-gap: 1rem;
  position: absolute;
  background-color: transparent;
  border-radius: 1rem;
  padding: 0.3rem 0.5rem;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.mp-main-container-2-image-slider-nav a {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #eeeeee;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.mp-main-container-2-image-slider-nav a:hover {
  opacity: 1;
}

.mp-main-container-3 {
  height: auto;
  background-color: #f1f1f1;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-box {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 0 0 calc(50% - 2rem); 
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.faq-box:hover{
  transform: scale(1.05);
}

.faq-box h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #bf3231;
}

.faq-box p {
  text-align: justify;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq-box {
    flex: 0 0 100%;
  }
}

/*Input other main page styles here!!*/
!important
!important

/*Price Page Styles*/

.pp-container-1 {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.pp-hero {
  position: relative;
  width: 100%;
  height: 100%;
}

.pp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pp-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 0 1rem;
  z-index: 2;
}

.pp-hero-content h1 {
  font-size: 4vw;
  width: 90vw;
}

.pp-hero-content h3 {
  font-size: 3vw;
  margin-top: 1rem;
}

.pp-hero-content .select-container {
  margin-top: 2rem;
}

.pp-hero-content .select-box {
  width: 100%;
  max-width: 280px;
  border: none;
  padding: 1rem 1.2rem;
  background-color: #bf3231;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 10px;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="10" viewBox="0 0 14 10"><path fill="%23fff" d="M7 10L0 0h14z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.pp-hero-content .select-box:hover {
  background-color: #9d0a0a;
  transform: scale(1.05);
}

.pp-hero-content .select-box:focus{
  transform: scale(1.05);
  background-color: #9d0a0a;
}

.pp-hero-content .select-box:focus option{
  background-color: #bf3231;
}

.pp-hero-content .select-box option:hover{
  background-color: #9d0a0a;
}

@media (max-width: 480px) {
  .pp-container-1 .select-box {
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
  }
}

.pp-container-1 .select-box:hover{
  background-color: #9d0a0a;
}

.pp-container-1 span{
  color: #bf3231;
}

.pp-container-1 img {
  position: relative;
  min-width: 300px;
  width: 100%;
  height: 85vh;
  max-height: 100vh;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
}
@media (max-width: 768px) {
  .pp-container-1 h1 {
    font-size: 6vw;
  }

  .pp-container-1 h3 {
    font-size: 4.5vw;
  }

  .pp-container-1 .select-box {
    font-size: 1.2rem;
    padding: 0.6rem 0.9rem;
  }
}

@media (max-width: 480px) {
  .pp-container-1 h1 {
    font-size: 7vw;
  }

  .pp-container-1 h3 {
    font-size: 5vw;
  }

  .pp-container-1 .select-box {
    font-size: 0.85rem;
  }
}

.pp-container-2{
  height: auto;
}

.pp-container-2-subcontainer-1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 2rem;
  max-width: 100%;
  margin: 0 auto;
}

.pp-container-2-sub-subcontainer-1 {
  width: calc(25% - 2rem); 
  min-width: 300px;
  height: 400px;
  background-color: #eeeeee;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  margin: 0.5rem 0;
  transition: transform 0.2s ease;
}

.pp-container-2-sub-subcontainer-1:hover{
  transform: scale(1.05);
}

.pp-container-2-sub-subcontainer-1 h2 {
  font-size: 2rem;
  color: #bf3231;
}

.pp-container-2-sub-subcontainer-1 h3 {
  font-size: 1.7rem;
  text-align: left;
}

.pp-container-2-sub-subcontainer-1 p {
  color: gray;
  text-decoration: line-through;
  text-align: left;
}

.pp-container-2-sub-subcontainer-1 ul {
  list-style: none;
  text-align: left;
  font-size: 1rem;
  margin-bottom: 15px;
}

.pp-container-2-sub-subcontainer-1-btn a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  background-color: #bf3231;
  padding: 1rem 2rem;
  border-radius: 1rem;
}

.pp-container-2-sub-subcontainer-1-btn a:hover {
  background-color: #9d0a0a;
}

@media (max-width: 1024px) {
  .pp-container-2-sub-subcontainer-1 {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .pp-container-2-sub-subcontainer-1 {
    width: 100%;
  }
}

.pp-container-2-subcontainer-2{
  background-color: #222;
  min-width: 10vh;
  max-width: 1280px;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: transform 0.2s ease;
}

.pp-container-2-subcontainer-2:hover{
  transform: scale(1.03);
}

.pp-container-2-subcontainer-2 h2{
  color: #bf3231;
  font-size: 2rem;
}

.pp-container-2-subcontainer-2 p{
  color: #fff;
  font-size: 1.1rem;
  text-align: justify;
}

.pp-container-2-subcontainer-2 #real-price{
  color: gray;
  text-decoration: line-through;
}

.pp-container-2-subcontainer-2 h3{
  color: #fff;
  font-size: 1.5rem;
}

.pp-container-2-subcontainer-2 .pp-container-2-subcontainer-2-btn{
  text-decoration: none;
  width: 1rem;
  font-size: 1.3rem;
  border-radius: 1rem;
  padding: 0.7rem 1rem;
  color: #fff;
  line-height: 3rem;
  background-color: #bf3231;
}

.pp-container-2-subcontainer-2 .pp-container-2-subcontainer-2-btn:hover{
  background-color: #9d0a0a;
}

@media (max-width: 768px) {
  .pp-container-2-subcontainer-2 {
    padding: 1rem;
    max-width: 90vw;
  }

  .pp-container-2-subcontainer-2 p {
    font-size: 1rem;
  }

  .pp-container-2-subcontainer-2 h3 {
    font-size: 1.2rem;
  }

  .pp-container-2-subcontainer-2 .pp-container-2-subcontainer-2-btn {
    font-size: 1.1rem;
  }
}

.pp-container-2-subcontainer-2 .read-more-text ul{
  color: #fff;
  list-style: none;
  font-size: 1rem;
}

.pp-container-2-subcontainer-2 .read-more-container{
  display: flex;
  flex-direction: column;
  color: #fff;
}

.pp-container-2-subcontainer-2 .container{
  background-color: #222;
  border-radius: 1rem;
}

.pp-container-2-subcontainer-2 .read-more-btn{
  color: #bf3231;
  cursor: pointer;
  display: block;
  font-weight: 500;
}

.pp-container-2-subcontainer-2 .read-more-btn:hover{
  color: #9d0a0a;
}

.pp-container-2-subcontainer-2 .read-more-text{
  display: none;
}

.pp-container-2-subcontainer-2 .read-more-text--show{
  display: inline;
}

.pp-container-3{
  background-color: #eeeeee;
  padding: 2rem;
}

.pp-container-3-subcontainer-1{
  overflow-x: auto;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.pp-container-3-subcontainer-1::-webkit-scrollbar {
  height: 8px;
}

.pp-container-3-subcontainer-1::-webkit-scrollbar-thumb {
  background-color: #bf3231;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .pp-package-table {
    font-size: 0.9rem;
    min-width: 600px;
  }

  .pp-package-table th,
  .pp-package-table td {
    padding: 0.7rem;
  }
}

.pp-package-table {
  width: 90%;
  margin: 2rem auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.pp-package-table th, .pp-package-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.pp-package-table th {
  background-color: #bf3231;
  color: #fff;
  font-weight: 600;
}

.pp-package-table td {
  color: #222;
  background-color: #f9f9f9;
}

.pp-package-table tr:nth-child(even) td {
  background-color: #eeeeee;
}

.pp-package-table i.fa-check {
  color: green;
  font-weight: bold;
}

.pp-package-table i.fa-remove {
  color: red;
  font-weight: bold;
}

/*Features Styles*/

.fp-container-1{

}

.fp-container-1-img img{
  position: relative;
  min-width: 300px;
  width: 100%;
  height: 85vh;
  max-height: 100vh;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
}

.fp-container-1-img h1{
  position: absolute;
  color: #fff;
  font-size: 3rem;
  top: 36%;
  left: 5%;
}

.fp-container-1-img h1 .span-1{
  color: #bf3231;
}

.fp-container-1-img h1 .span-2{
  font-size: 2.3rem;
  font-weight: 500;
}

.fp-container-1-img .fp-container-1-btn{
  position: absolute;
  text-decoration: none;
  text-align: center;
  top: 50%;
  left: 5%;
  background-color: #bf3231;
  color: #fff;
  font-size: 2rem;
  width: 280px;
  min-width: 90px;
  padding: 0.7rem 1rem;
  transition: 0.2s all ease;
  border-radius: 1rem;
}

.fp-container-1-btn:hover{
  background-color: #9d0a0a;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .fp-container-1-img h1 {
    font-size: 2.5rem;
    top: 33%;
  }

  .fp-container-1-img h1 .span-2 {
    font-size: 1.8rem;
  }

  .fp-container-1-img .fp-container-1-btn {
    font-size: 1.6rem;
    width: 220px;
    padding: 0.6rem 1rem;
    top: 46%;
  }
}

@media (max-width: 768px) {
  .fp-container-1-img h1 {
    font-size: 2rem;
    top: 35%;
  }

  .fp-container-1-img h1 .span-2 {
    font-size: 1.4rem;
  }

  .fp-container-1-img .fp-container-1-btn {
    font-size: 1.3rem;
    width: 180px;
    padding: 0.5rem 0.8rem;
    top: 45%;
  }
}

@media (max-width: 480px) {
  .fp-container-1-img h1 {
    font-size: 1.5rem;
    top: 35%;
  }

  .fp-container-1-img h1 .span-2 {
    font-size: 1.1rem;
  }

  .fp-container-1-img .fp-container-1-btn {
    font-size: 1.1rem;
    width: 160px;
    padding: 0.4rem 0.6rem;
    top: 46%;
  }
}

.fp-container-2 h1{
  text-align: center;
}

.fp-container-2-subcontainer-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fp-container-2-box {
  background-color: #eeeeee;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  flex: 0 0 calc(50% - 2rem); 
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.fp-container-2-box:hover{
  transform: scale(1.05);
}

.fp-container-2-box-img {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 1rem auto;
}

.fp-container-2-box h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #bf3231;
}

.fp-container-2-box p {
  text-align: justify;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .fp-container-2-box {
    flex: 0 0 100%;
  }
}

/*Modpacks styles*/

.pl-container-1 h1{
  text-align: center;
  margin: 1rem 0;
}

.pl-container-1-subcontainer-1 {
  display: flex;
  justify-content: center;
  padding: 0 2rem;
  gap: 1rem;
}

.pl-container-1-box{
  background-color: #eeeeee;
  width: 25vw;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.pl-container-1-box h2{
  text-align: center;
  color: #bf3231;
}

.pl-container-1-box p{
  text-align: justify;
}

.pl-container-1-box:hover{
  transform: scale(1.05);
}

.pl-container-1-box img{
  background: #333;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.2s ease;
}

.pl-container-1 img:hover{
  transform: scale(1.05);
  background-color: #222;
}

@media (max-width: 1024px) {
  .pl-container-1-subcontainer-1 {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .pl-container-1-box {
    width: 40vw;
    text-align: justify;
  }
}

@media (max-width: 768px) {
  .pl-container-1-subcontainer-1 {
    flex-direction: column;
    align-items: center;
  }

  .pl-container-1-box {
    width: 60vw;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .pl-container-1-box {
    width: 85vw;
    text-align: justify;
  }

  .pl-container-1-box img {
    width: 150px;
    height: 150px;
  }
}

/*Modrinth Styles*/

.mr-container-1-subcontainer-1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10rem;
}

.mr-container-1 a{
  text-decoration: none;
  color: #000;
}

.mr-container-1 h1{
  text-align: center;
}

.mr-container-1-box h2{
  color: #bf3231;
}

.mr-container-1-box{
  background-color: #eeeeee;
  padding: 2rem 1rem;
  border-radius: 1rem;
  width: 60vw;
  transition: transform 0.2s ease;
}

.mr-container-1-box:hover{
  background-color: #d3d3d3;
  transform: scale(1.05);
}

.mr-container-1-box img{
  width: 128px;
  height: 128px;
  background-color: #222;
  padding: 0.5rem;
  margin: 0 1rem;
}

@media (max-width: 480px) {
  .mr-container-1-box {
    width: 80vw;  
  } 
}

/*News Styles*/

.np-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #333;
}

.np-update-date{
  background-color: #eeeeee;
  padding: 1rem;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  width: 70vw;
}

.np-update-date h1{
  color: #9d0a0a;
}

.np-update-date h2{
  color: #bf3231;
}

/*Footer Styles*/

.footer-container {
  padding: 2rem 0;
  background-color: #222;
  width: 100%;
}

.footer-container h2 {
  color: #fff;
  font-weight: 400;
  text-align: center;
}

.footer-link-logo a i {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  text-decoration: none;
  line-height: 4rem;
  padding: 0 1.5rem;
}

.footer-link-logo a i:hover {
  color: #d3d3d3;
}

.footer-container .footer-quick-link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-container .footer-quick-link li {
  list-style: none;
}

.footer-container .footer-quick-link a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 0 1.5rem;
}

.footer-container .footer-quick-link a:hover {
  color: #d3d3d3;
}

.footer-line {
  width: 95%;
}

.footer-copyright {
  color: #fff;
  text-align: center;
  padding-top: 8px;
  line-height: 2rem;
}

.footer-copyright a {
  text-decoration: none;
  color: #fff;
}
