@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #202948;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.navigation {
    width: 300px;
    max-width: 300px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    padding: 30px 20px;
}

.navigation ul {
    list-style: none;
}

.navigation ul li:not(:last-child) {
    margin-bottom: 15px;
}

.navigation ul li a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    color: #202948;
}

.navigation ul li a.active {
    color: #F85C81;
}

.galWrap {
    flex: 0 0 calc(100% - 300px);
    max-width: calc(100% - 300px);
    margin-left: 300px;
}

.gallery {
    width: 100%;
    position: relative;
    min-height: 31.25rem;
    height: 100vh;
}

.gallery footer {
    position: absolute;
    z-index: 50;
    left: 2rem;
    bottom: 1rem;
    transform: translatey(-50%);
}

@media screen and (min-width: 37.5rem) {
    .gallery footer {
        left: 4rem;
    }
}

.gallery footer ul {
    list-style: none;
    display: flex;
    gap: 1.563rem;
}

.gallery footer ul li {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.1rem;
    font-weight: 600;
    font-size: 1.75rem;
    color: #1aad8a;
}

.gallery footer ul li span {
    font-size: 0.8rem;
    opacity: 0.4;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    margin-right: 0.5rem;
}

.gallery-slider {
    width: 100%;
    height: 100%;
}

.gallery-slider .swiper-slide {
    width: auto;
    height: 100%;
    /* overflow-y: auto; */
}


/* .gallery-slider .swiper-slide::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 0%, #0000001c 100%);
} */

.gallery-slider .swiper-slide img {
    display: block;
    width: 100%;
    pointer-events: none;
}

.gallery .swiper-pagination {
    position: relative;
    bottom: -0.313rem;
    text-align: left;
}

.gallery .swiper-pagination-bullet {
    border-radius: 0;
    width: 1.125rem;
    height: 0.25rem;
    background: #000;
    opacity: 1;
}

.gallery .swiper-pagination-bullet-active {
    background: #fff;
}

.gallery-thumbs {
    width: 14.375rem;
    padding: 0;
    overflow: hidden;
    position: absolute;
    bottom: 8rem;
    right: 0;
}

@media screen and (min-width: 37.5rem) {
    .gallery-thumbs {
        width: 20rem;
    }
}

.gallery-thumbs .swiper-slide {
    width: 6.25rem;
    height: 6.25rem;
    text-align: center;
    overflow: hidden;
    opacity: 0.5;
    border: #fff 4px solid;
}

.gallery-thumbs .swiper-slide-active {
    opacity: 1;
}

.gallery-thumbs .swiper-slide img {
    width: auto;
    height: 100%;
}

@media screen and (max-width: 62.188rem) and (max-height: 43.75rem) {
    .content {
        top: 30% !important;
        transform: translatey(-30%);
    }
}

.custom-file-upload-hidden {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.custom-file-upload {
    display: block;
    width: auto;
    font-size: 16px;
    margin-top: 30px;
}

.custom-file-upload label {
    display: block;
    margin-bottom: 5px;
}

.file-upload-wrapper {
    position: relative;
    margin-bottom: 5px;
}

.file-upload-input {
    width: 300px;
    color: #fff;
    font-size: 16px;
    padding: 11px 17px;
    border: none;
    background-color: #c0392b;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    float: left;
    /* IE 9 Fix */
}

.file-upload-input:hover,
.file-upload-input:focus {
    background-color: #ab3326;
    outline: none;
}

.file-upload-button {
    cursor: pointer;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 11px 20px;
    border: none;
    margin-left: -1px;
    background-color: #962d22;
    float: left;
    /* IE 9 Fix */
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.file-upload-button:hover {
    background-color: #6d2018;
}

.upFile {
    max-width: 600px;
    width: 100%;
}

.uploadSection {
    height: 100vh;
    width: 100%;
}

.upFile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.submitBtn {
    background: #c0392b;
    color: #fff;
    padding: 0 30px;
    border: none;
    height: 40px;
    margin-left: 5px;
    font-weight: 600;
    cursor: pointer;
}