/* Banner */
.Banner_Collection {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: multiply;
    display: flex;
    justify-content: center;
    position: relative;
}

.Banner_Collection_In {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Banner_Collection_Intro_Text {
    font-size: 27px;
    line-height: 40px;
    font-weight: 600;
    color: white;
    text-align: center;
    text-shadow: 0 1px 2px hsl(0deg 0% 0% / 50%);
}

.Banner_Collection_Intro_Text p {
    font-size: 40px;
    line-height: 45px;
}

.Horse_Search_Title {
    margin-right: auto;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--blue);
    text-align: center;
    text-shadow: 0 1px 2px hsl(0deg 0% 0% / 50%);
}

.Learn_More {
    border: 3px solid white;
    padding: 10px 30px;
    cursor: pointer;
    color: white;
    margin-top: 20px;
    transition: 0.3s;
}

.Learn_More:hover {
    background-color: hsl(0, 0%, 100%, 0.2);
}

/* Selects */
.Collection_Selects {
    width: 100%;
    padding: 40px 0px;
    background-color: var(--light-gray);
    font-weight: bold;
}

.Collection_Selects_In {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.Collection_Selects_In p {
    max-width: 700px;
}

.Collection_Select_Box {
    display: flex;
    align-items: center;
    width: fit-content;
}

.Collection_Select_Box i {
    font-size: 18px;
    background-color: var(--blue);
    color: white;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    padding: 10.5px 8px;
    width: 40px;
}

.Collection_Selects_In select {
    width: 100%;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    padding: 10px 20px;
    background-color: white;
    z-index: 2;
}

/* Collection */
.Collection_Content {
    margin-top: 80px;
    width: 100%;
}

.Collection_Content_In {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}

.Collection_Holder {
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2%;
    color: white;
}

.collectionCard {
    width: 23.5%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 440px !important;
    background-color: var(--blue);
    margin: 30px 0px;
}

.Collection_Card_Img_Holder {
    overflow: hidden;
    display: block;
    position: relative;
    cursor: pointer;
    transition: 1s;
}

.Collection_Card_Img_Holder_Text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
    text-shadow: 0 1px 2px hsl(0deg 0% 0% / 50%);
}

.Collection_Card_Img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-color: hsl(0deg 0% 0% / 50%);
    background-position: center center;
    cursor: pointer;
    transition: 0.3s;
    filter: grayscale(0.2);
}

.Collection_Card_Img_Holder:hover .Collection_Card_Img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.Collection_Card_Img_Holder:hover .Collection_Card_Img_Holder_Text {
    opacity: 1;
}

.Collection_Card_Title {
    width: 100%;
    position: absolute;
    z-index: 2;
    background-color: rgba(7, 22, 34, 0.9);
    color: white;
    transform: translateY(-100%);
    border-bottom: 1px solid white;
    text-transform: uppercase;
    padding: 5px 0px;
    text-align: center;
    font-size: 18px;
}

.Collection_Card_Description {
    width: 100%;
    padding: 15px;
    display: flex;
    min-height: 215px;
    flex-direction: column;
    gap: 7px;
}

.Collection_Card_Description_Text {
    font-size: 16px;
    line-height: 25px;
    display: flex;
    flex-direction: row;
    position: relative;
}

.Collection_Card_Description i {
    position: absolute;
    top: 5px;
}

.Description_Text {
    margin-left: 30px;
    text-transform: capitalize;
}

.Collection_Card_See {
    display: block;
    padding: 15px 0px;
    text-align: center;
    cursor: pointer;
    background-color: var(--light-gray);
    color: var(--blue);
    transition: 0.3s;
}

.Collection_Card_A_See {
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
}

.Collection_A_Button {
    width: 50%;
    cursor: pointer;
    padding: 15px 0px;
}

.Collection_Card_Read {
    background-color: var(--light-gray);
    color: var(--blue);
    transition: 0.3s;
}

.Collection_Card_Delete {
    background-color: var(--danger);
}

.Add_collectionCard {
    width: 23.5%;
    position: relative;
    height: 496.5px !important;
    background-color: var(--success);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}

.Add_collectionCard:hover {
    opacity: 1;
}

.Upload_Label {
    padding-top: 15px;
    cursor: pointer;
}

.Upload_Modal {
    z-index: 3;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: start;
    overflow-y: scroll;
    background: rgba(189, 178, 168, 0.9);
}

.Upload_Modal_Close {
    background: var(--blue);
    opacity: 1;
    border-radius: 50%;
    padding: 10px 18px;
    font-size: 25px;
    color: white;
    position: absolute;
    cursor: pointer;
    transition: 0.3s;
    top: 20px;
    right: 20px;
}