:root {
    --primary: #fff;
    --gray: #222222;
    --black: #000;
    --white: #fff;
    --primary-dark: #262626;
    --yellow: #FFFF73;
    --cyan:#B4FCF6;
    --bg-dark:#535B67;
}
body {
    font-family: 'Nunito', sans-serif;
}
header{

}
.br-top{
    border-top: 3px var(--primary-dark) solid;
}
.br-right{
    border-right: 3px var(--primary-dark) solid;
}
.br-bottom{
    border-bottom: 3px var(--primary-dark) solid;
}
.br-left{
    border-left: 3px var(--primary-dark) solid;
}
.br-5{
    border-width: 5px !important;
}
.logo {

}

.slide h2,
.slide p {
    text-shadow: rgb(0, 0, 0) 1px 1px 7px, rgb(0, 0, 0) 1px 1px 7px
}

.footer {
    background-color: var(--gray);
}

footer {
    background-color: var(--bg-dark);
    text-transform: uppercase;
}
section{
    background-color: #f2f2f2;
    padding: 30px 0;
}
.archive-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: 900;
    font-size: 50px;
    text-align: center;
    text-shadow: rgb(0, 0, 0) 1px 1px 7px, rgb(0, 0, 0) 1px 1px 7px;
    text-transform: uppercase;
    transition: all 250ms;
}

.archive-title:hover {
    font-size: 60px;
}

.posterid {
    position: absolute;
    bottom: -50px;
    width: calc(100% - 1.5rem);
    height: 50px;
    z-index: 11;
    background: rgb(2, 0, 36);
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(2, 0, 36, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 250ms;
}

.posterid-active {
    bottom: 0;
}

.form-check-input {
    clear: left;
}

.form-switch.form-switch-sm {
    margin-bottom: 0.5rem;
    /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-sm .form-check-input {
    height: 1rem;
    width: calc(1rem + 0.75rem);
    border-radius: 2rem;
}

.form-switch.form-switch-md {
    margin-bottom: 1rem;
    /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-md .form-check-input {
    height: 1.5rem;
    width: calc(2rem + 0.75rem);
    border-radius: 3rem;
}

.form-switch.form-switch-lg {
    margin-bottom: 1.5rem;
    /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-lg .form-check-input {
    height: 2rem;
    width: calc(3rem + 0.75rem);
    border-radius: 4rem;
}

.form-switch.form-switch-xl {
    margin-bottom: 2rem;
    /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-xl .form-check-input {
    height: 2.5rem;
    width: calc(4rem + 0.75rem);
    border-radius: 5rem;
}

.circle-checkbox input[type=checkbox] {
    cursor: pointer;
    height: 30px;
    margin: 4px 0 0;
    position: absolute;
    opacity: 0;
    width: 30px;
    z-index: 2;
}

.circle-checkbox input[type=checkbox]+span {
    background: #e74c3c;
    border-radius: 50%;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .1);
    display: inline-block;
    height: 30px;
    margin: 4px 0 0;
    position: relative;
    width: 30px;
    transition: all .2s ease;
}

.circle-checkbox input[type=checkbox]+span::before,
input[type=checkbox]+span::after {
    background: #fff;
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    transition: all .2s ease;
}

.circle-checkbox input[type=checkbox]:checked+span::before {
    height: 16px;
    left: 13px;
    top: 7px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.circle-checkbox input[type=checkbox]+span::after {
    height: 16px;
    right: 13px;
    top: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.circle-checkbox input[type=checkbox]:checked+span::after {
    height: 16px;
    right: 13px;
    top: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.circle-checkbox input[type=checkbox]:checked+span {
    background: #2ecc71;
}

.circle-checkbox input[type=checkbox]+span::before {
    height: 9px;
    left: 9px;
    top: 13px;
    -webkit-transform: rotate(-47deg);
    transform: rotate(-47deg);
}

.circle-checkbox input[type=checkbox]+span::after {
    height: 15px;
    right: 11px;
    top: 8px;
}

img {
    border: 0px solid;
    transition: all 100ms;
}

.poster-active {
    border: #2ecc71 8px solid;
}
div.menu{
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border:1px solid #d2d2d2;
    height: 70px;
    column-gap: 40px;
}
div.menu a{
    color: var(--gray);
}
div.menu a:hover{
    color: var(--bs-primary);
}
.text-justify{
    text-align: justify;
}
.comment-img{
    width: 60px;
    height: 60px;
    background: gray;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bolder;
}
.comments{
    width: 100%;
    background: #E2ECF5;
}
.menu-left{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 170px;
    gap: 25px 50px;
}
.menu-ds a{
    height: 40px;
    border-top: var(--primary-dark) 3px solid;
    padding-right: 25px;
    display: flex;
    align-items: center;
    color: var(--primary-dark);
    transition: all 250ms;
    box-sizing: border-box;
}
.menu-ds a:hover{
    background-color:var(--yellow);
    padding-left: 10px;
    padding-right: 15px;
}
.menu-ds .menu-right{
    height: 100%;
}
.menu-right a{
    margin-bottom: 25px;
}
.menu-right a.social{
    padding: 0;
    justify-content: center;
    width: calc(33% - 10px);
    margin: 0 5px;
    float: left;
}
.menu-right{
}
#carouselExampleCaptions h2{
    font-weight: 900;
    font-size: 64px;
    text-shadow: 0px 0px 18px rgba(0, 0, 0, 0.66);
    margin-bottom: 30px;
}
.carousel-caption{
    right: auto;
    bottom: auto;
    top: 60px;
    text-align: left;
}
.slider-button{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-dark);
    background: var(--cyan);
    width: 156px;
    height: 42px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
}
.swiper-container {
    width: 100%;
    height: 325px;
}
.swiper-slide {
    border: 5px var(--primary-dark) solid;
    border-left: 0px;
    border-right: 0px;
    color: var(--primary-dark);
    padding: 0 20px;
    box-sizing: border-box;
    /*background-color: rgba(255, 255, 115, 0.1);*/
    background-color: rgb(180 252 246 / 10%);
}
.swiper-slide .number{
    color: #ECF0F4;
    font-size: 96px;
    font-weight: 800;
    margin-top: 20px;
}
.swiper-slide .title{
    font-weight: 600;
    font-size: 22px;
    margin-top: 30px;
    text-transform: uppercase;
}
.swiper-slide .desc{
    font-weight: 400;
    font-size: 14px;
    margin-top: 10px;
}
.swiper-slide .more, .more a{
    font-weight: 400;
    font-size: 16px;
    margin-top: 35px;
    color: var(--primary-dark);
}

.title-left{
    font-weight: 900;
    font-size: 64px;
    padding-top: 10px;
    padding-right: 20px;
    border-top: 5px solid var(--primary-dark);
    box-sizing: content-box;
    display: inline-block;
}
.title-center{
    font-weight: 900;
    font-size: 64px;
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 20px;
    border-top: 5px solid var(--primary-dark);
    box-sizing: content-box;
    text-align: center;
    color: var(--primary-dark);
    display: inline-block;
    margin: auto;
}
.title-white{
    border-color: var(--white);
    color: var(--white);
}
.swiper-slide-button{
    display: flex;
    gap: 20px;
}
.swiper-slide-button div{
    border-top: 3px var(--primary-dark) solid;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
}
.col-desc{
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    color: var(--primary-dark);
}
.bgdark{
    background: var(--bg-dark);
}
.search-input{
    width: 435px;
    height: 40px;
    background: #676E7B;
    border-radius: 46px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.search-input input{
    background: none;
    border: none;
    color: var(--white) !important;
    height: 100%;
    width: 100%;
    padding-left: 30px;
}
.search-input input::placeholder {
    color: var(--white) !important;
    opacity: 0.4;
}
.search-input input:focus{
    border: none;
    outline: none;
}
.search-input button{
    width: 76px;
    height: 100%;
    background: #FFFFFF;
    border-radius: 29px;
}
.search-desc{
    text-align: center;
    font-size: 14px;
    color: var(--white);
}
.ex-card{
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 300px;
    box-sizing: border-box;
    padding: 10px;
    overflow: hidden;
}
.ex-card a{
    width: 100%;
}
.ex-card a:hover{
    text-decoration: underline !important;
    text-decoration-color: var(--yellow) !important;
}
.ex-card img{
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    z-index: -1;
    transition: all 250ms;
}
.ex-card:hover img{
    filter: grayscale(1);
    transform: scale(1.1);
}
.ex-card .ex-card-text{
    background: rgb(38,38,38);
    background: linear-gradient(10deg, rgba(38,38,38,1) 0%, rgba(38,38,38,0) 100%);
    width: 100%;
    padding: 20px;
    color: var(--white);
    transition: all 250ms;
}
.ex-card:hover .ex-card-text{
    color: var(--yellow);
}
.ex-card-title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.ex-card-desc{
    font-size: 12px;
}
.contact-back{
    background-image: url("../images/contact.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-card{
    width: 100%;
}
.page-title{
    border-top: solid 3px var(--primary-dark);
    padding: 10px 30px 10px 10px;
    background-color: var(--yellow);
    display: inline-block;
    text-transform: uppercase;
}
.page-content{
    border-top: solid 3px var(--primary-dark);
    padding: 10px;
    background-color: var(--white);
    color: var(--primary-dark);
}
.page-content a{
    color: var(--primary-dark);
    transition: all 250ms;
}
.page-content a:hover{
    font-weight: 700;
}
.page-content p{
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 200;
    text-align: justify;
}
.sticky-header{
    width: 100%;
    height: 70px;
    border-bottom: 5px var(--primary-dark) solid;
    background-color: var(--white);
    position: fixed;
    z-index: 2;
    top: -70px;
    left: 0;
    transition: all 250ms;
}
.sticky-header-active{
    top: 0;
}
.sticky-header-menu a{
    border-top: var(--primary-dark) solid 3px;
    color: var(--primary-dark);
    padding: 5px 10px;
    transition: all 250ms;
    text-transform: uppercase;
}
.sticky-header-menu a:hover{
    background-color: var(--yellow);
}
.mob-menu{
    width: 100%;
    max-width: 320px;
    height: 100%;
    position: fixed;
    right: -320px;
    top: 0;
    z-index: 999;
    background-color: var(--white);
    box-sizing: border-box;
    padding-top: 20px;
    color: var(--primary-dark);
    transition: 250ms all;
}
.mob-menu-active{
    right: 0;
}
.mob-menu-back{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    display: none;
}
.mob-menu a{
    border-bottom: var(--primary-dark) 1px solid;
    display: block;
    text-align: center;
    color: var(--primary-dark);
    padding: 10px 0;
}
.mob-menu a:hover{

}
.mob-menu a.border-tp{
    border-top: var(--primary-dark) 1px solid;
}
.mob-menu .social{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.mob-menu a.social{
    width: calc(33.3% - 10px);
    text-align: center;
    justify-content: center;
    border-bottom: 0;
    border-top: var(--primary-dark) solid 1px;
}
.hamburger-menu{
    font-size: 30px;
    color: var(--primary-dark);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.mob-menu-logo{
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
    margin-bottom: 20px;
    font-size: 30px;
}

i.collection{
    font-size: 62px;
    margin-bottom: 10px;
    color: var(--blue);
}
.card-custom{
    border-radius: 5px;
}
.card-custom .title{

}
.card-custom .content{
    font-size: 25px;
    font-weight: 700;
}
.archiveTitle div{
    display: inline;
    margin-right: 5px;
}
.share{
    color: var(--primary-dark);
    font-size: 20px;
    padding: 5px;
    margin: 5px;
    transition: all 250ms;
}
.share:hover{
}