footer {
    /* border: 1px solid green; */
    padding: 3rem 0 3rem 0;
    /* height: 118vh; */
    background-color: #c29d6836;
}

footer .fs_h3 {
    font-size: 18px;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

footer .fs_h3::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--theme-gold3);
    margin-top: 5px;
}

.use_links {
    padding: 0;
}

.use_links li {
    list-style-type: none;
    margin: 15px 0;
}

.use_links li a {
    font-family: Lora;
    font-size: 18px;
    text-decoration: none;
    color: #000;
}

.fc_details ul {
    list-style-type: none;
    padding: 0;
}

.fc_details ul li {
    font-size: 18px;
    margin: 20px 0;
}

.fc_details ul li i {
    color: var(--theme_blue_dark_3);
}

.fc_rel_div {
    position: relative;
    /*padding: 2rem 1.5rem 2rem;*/
}

.fc_abs_div {
    /* position: static; */
    /*position: absolute;*/
    padding: 20px 0px 0px;
    /* margin-top: -13.5rem; */
    top: -13.5rem;
    left: 0;
    z-index: 3;
    border-radius: 10px;
    /* border: 1px solid gray; */
    /*background-color: #fff;*/
}


.fc_abstop {
    display: flex;
    align-items: center;
}

.fc_abstop h2 {
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 0rem;
}

.fs_gallery {
    display: flex;
    flex-wrap: wrap;
}

.fs_gallery .fsg1 {
    /* border: 1px solid; */
    width: 100%;
    padding: 10px;
}

.fs_gallery .fsg1 img {
    width: 100%;
    border-radius: 10px;
}

.fs_form .fc_h4 {
    font-size: 19px;
    font-weight: normal;
    color: var(--grey_color2);
}

.fc_form input {
    padding: 20px;
    width: 100%;
    margin-top: 14px;
    border-radius: 10px;
}

.fc_form input::placeholder {
    text-align: center;
    font-size: 18px;
}

.fc_form button {
    padding: 20px;
    width: 100%;
    background-color: var(--theme_blue_dark_3);
    font-family: "Cormorant Garamond";
    border: transparent;
    margin-top: 16px;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
}

.fc_social_icons i {
    background-color: var(--theme_blue_dark_3);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    text-align: center;
    align-content: center;
    font-size: 18px;
    margin-right: 0.5rem;
}

.fbs {
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    padding: 22px 0;
}

.fbs p {
    text-align: center;
    font-family: lora;
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
}

/* Overlay hidden by default */
.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.3s ease;
}

/* Icon style */
.gallery-item .overlay i {
    color: #fff;
    font-size: 30px;
}

/* Show overlay on hover */
.gallery-item:hover .overlay {
    opacity: 1;
}