:root {
    --allimages: 3;
    --currentchild: 0;
}

* {
    text-transform: uppercase;
}

#image-showcase {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.589);
    z-index: 1001;
    transition: all 0.3s linear;
    opacity: 0;
    
    display: none;
    align-items: center;
    justify-content: center;
}

#image-showcase-img {
    width: 65%;
    border-radius: 2rem;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.473);
}

#main-page {
    width: 100%;
    height: 130vh;
    padding-top: 13rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gold-line-w-logo {
    width: 25vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.gold-line {
    width: 100%;
    height: 1px;
    background: black;
    border-radius: 1rem;
    background: #bba35e;
}

#main-page-box {
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 75vw;
}

#main-page-title-desc-box {
    display: flex;
    flex-direction: column;

}

.title-text {
    font-weight: 700;
    font-size: 6.5rem;
    color: #bba35e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.desc-text {
    margin-top: 3rem;
    width: 48ch;
    font-weight: 700;
    font-size: 2.3rem;
    color: #000780;
    text-align: justify;
    text-justify: inter-word;
    line-height: 3.2rem;
}

#main-page-box-list {
    list-style: none;
    color: #000780;
    font-size: 2.15rem;
    font-weight: 700;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

#main-page-box-list > li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: calc(50px + 26ch + 1rem);
    text-align: justify;
    text-justify: inter-word;
}

.main-page-box-list-icon {
    margin-right: 1rem;
    width: 50px;
}


#main-page-gallery {
    width: 75%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    overflow: scroll;
    overflow-x: hidden;
    margin-top: 3rem;
}

.main-page-gallery-image {
    width: 500px;
    border: #000780 solid 5px;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.2s ease-in;
}

.main-page-gallery-image:hover {
    cursor: pointer;
    filter: grayscale(80%);
}

.main-page-gallery-arrows {
  background: rgba(255, 255, 255, 0.856);
  color:#000780;
  position: absolute;
  text-align: center;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.452);
  display: flex;
  justify-content: space-between;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-out;
  cursor: pointer;
}

.main-page-gallery-arrows > img {
  width: 40px;
}

.main-page-gallery-arrows:hover {
  transform: scale(1.1);
}

#arrow1 {
  left: 14%
}


#arrow2 {
  right: 14%;
}