@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,600;1,400;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');

:root {
    --white-color: #fff;
    --black-color: #000;
    --yellow-color: #ebc934;
    --red-color: #ff5100;
    --grey-color: #525252;
    --blue-color: #0053be;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Source Sans Pro', sans-serif;
}

.form-control {
    border: 1px solid #bbbbbb;
    height: 40px;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #bbbbbb;
}

section {
    position: relative;
    padding-bottom: 50px;
}

#nav-sec {
    height: 105px;
}

.navigation {
    width: 100%;
    box-shadow: 10px;
    position: fixed;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
}

.top-bar {
    width: 100%;
    background-color: var(--red-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
}

.right-top-bar p,
.left-top-bar p {
    margin: 0px;
    padding: 5px 5px;
    font-size: .8em;
    font-family: 'Nunito', sans-serif;
    color: var(--white-color);
}

.nav-bar {
    width: 100%;
    background-color: var(--white-color);
}

.nav-bar-content {
    display: flex;
    justify-content: space-between;
}

.nav-brand-logo {
    flex: 3;
    display: flex;
    font-size: 30px;
    align-items: center;
    height: 70px;
}

#burger {
    display: none;
}

.nav-brand-logo img {
    height: 70px;
    width: auto;
    padding: 8px;
}

.nav-links {
    flex: 5;
}

.nav-links ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: flex-end;
}

.nav-links ul li {
    list-style-type: none;
    font-size: 17px;
    font-weight: 600;
    padding: 13px;
    transition: ease .3s all;
}

.nav-links ul a {
    padding: 13px;
    text-decoration: none;
}

.nav-links ul a:hover {
    cursor: pointer;
    color: var(--red-color);
}

.nav-links ul .active {
    color: var(--red-color);
}

.nav-btn {
    display: flex;
    justify-content: flex-end;
    flex: 3;
    padding: 17px 0px;
}

.nav-btn button {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    padding-top: 8px;
    transition: ease .3s all;
}

.nav-btn button:hover {
    color: var(--red-color);
}

.nav-btn button:hover {
    border-color: red;
}

.nav-btn button:first-child {
    width: 130px;
    margin-left: 20px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
}

.nav-btn button:last-child {
    width: 180px;
    margin-left: 20px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
}

.nav-btn p {
    margin-left: 5px;
}

.drop-down {
    text-align: center;
    top: 85px;
    position: absolute;
    z-index: -1;
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
}

.drop-down.hide {
    display: none;
}

.drop-down ul {
    display: flex;
    flex-direction: column;
}

.drop-down ul li {
    padding: 10px;
}

.drop-down ul a {
    padding: 0px;
    cursor: pointer;
}

.drop-down ul li:hover {
    background-color: var(--red-color);
    color: var(--white-color);
}

.gallery {
    position: relative;
}

@media screen and (max-width: 768px) {
    #burger {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }

    .nav-links.mount {
        position: absolute;
        width: 100%;
        left: 0px;
        top: 105px;
        background-color: var(--white-color);
        transition: all ease 0.5s;
        z-index: -1;
    }

    .nav-links {
        position: absolute;
        width: 100%;
        left: 0px;
        top: -350%;
        background-color: var(--white-color);
        transition: all ease 0.5s;
        z-index: -1;
    }

    .nav-links ul li {
        width: 100vw;
        text-align: center;
    }

    .nav-links a {
        padding: 0px;
    }

    .nav-links ul li:hover {
        background-color: var(--red-color);
        color: #fff;
    }

    .nav-links ul {
        margin: 0px;
        padding: 0px;
        display: flex;
        gap: 0px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-btn button {
        text-align: center;
        padding: 8px 0px;
    }

    .nav-btn button:first-child {
        width: 50px;
        margin-left: 10px;
        border-radius: 30px;
    }

    .nav-btn button:last-child {
        width: 50px;
        margin-left: 10px;
        border-radius: 30px;
    }

    .nav-btn p {
        display: none;
    }

    .drop-down {
        top: 0px;
        z-index: 1;
        position: static;
        box-shadow: none;
    }

    .drop-down ul li {
        padding: 10px;
    }
}


.share {
    text-align: center;
}

.share a {
    text-decoration: none;
    text-align: center;
}

.share a:hover {
    background: #f7f7f7;
}

.share a:nth-child(1) {
    color: #4267B2;
}

.share a:nth-child(2) {
    color: #25D366;
}

.share a:nth-child(3) {
    color: #e95950;
}

.share a:nth-child(4) {
    color: black;
}

.share a i {
    font-size: 50px;
    padding: 0px;
}

/*---------View Album ----------*/

.album-view {
    background-color: var(--red-color);
    color: var(--white-color);
    padding: 50px 0px;
}

.album-view-data {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.album-view-data button {
    background-color: transparent;
    border: solid 2px var(--white-color);
    color: var(--white-color);
    width: 200px;
    height: 60px;
    border-radius: 0px;
    font-size: 25px;
}

.gallery-img h1 {
    text-align: center;
    font-family: 'Yeseva One', cursive;
}


/*----------PDF PAGE--------------*/

#pages {
    text-align: center;
}

.page {
    width: 98%;
    margin: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

@keyframes pageIn {
    0% {
        transform: translateX(-300px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

#zoom-percent {
    display: inline-block;
}

#zoom-percent::after {
    content: "%";
}


/*----------we are different-------------*/

.content-title {
    text-align: center;
    font-size: 3em;
    font-weight: 600;
    font-family: 'Yeseva One', cursive;
}

.content-sub-title {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: var(--red-color);
    font-family: 'Nunito', sans-serif;
}

.different-content {
    padding: 40px 0px;
    display: flex;
}

.different-img img {
    padding: 0px 20px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.different-text h2,
h4 {
    font-family: 'Raleway', sans-serif;
}

.different-img,
.different-text {
    width: 50%;
}

@media screen and (max-width: 768px) {

    .content-title {
        font-size: 2em;
        line-height: 35px;
    }

    .different-content {
        flex-direction: column-reverse;
        padding-bottom: 0px;
    }

    .different-img,
    .different-text {
        width: 100%;
        padding: 10px;
    }

    .different-img img {
        padding: 0px;
        width: 100%;
        height: auto;
    }
}

/*------------High-card--------------*/

.highlight-card-content {
    display: flex;
    justify-content: space-between;
}

.high-card-item {
    box-shadow: rgba(14, 30, 37, 0.10) 0px 2px 4px 0px, rgba(14, 30, 37, 0.22) 0px 2px 16px 0px;
    flex: 1;
    margin: 5px;
    padding: 10px;
    display: flex;
    align-items: centers;
}

.high-card-item img {
    width: 60px;
    height: 60px;
}

.hight-card-text {
    padding-left: 5px;
    padding-top: 5px;
    line-height: 10px;
    font-family: 'Raleway', sans-serif;
}

.hight-card-text p {
    margin: 0px;
    font-size: 10px
}

@media screen and (max-width: 768px) {
    .highlight-card-content {
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .counters span {
    font-size: 48px;
    display: block;
    color: var(--red-color);
}

.facts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}

/*-----------feature-card----------------*/

.feature-card {
    width: 100%;
}

.feature-card-content .card {
    width: 250px;
    height: 250px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.feature-card-content .card img {
    width: 100%;
    height: auto;
}

.feature-card-content {
    padding: 30px;
}

/*-------------band-img-------------------*/
.band-area {
    position: relative;
}

.band-img {
    width: 100%;
    height: 300px;
    position: absolute;
    z-index: -1;
    background-image: url('../assets/images/band-img.jpg');
    filter: brightness(25%);
}

.band-content {
    display: flex;
    height: 300px;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 40px;
    color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
    background: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--red-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--red-color);
}

.testimonials .swiper-slide {
    opacity: 0.3;
}

@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }

    .testimonials .swiper-pagination {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    background: white;
    border-radius: 50px;
    padding: 2px 15px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #444444;
    margin: 0 4px 8px 4px;
    transition: 0.3s;
    border-radius: 50px;
    border: 1px solid #fff;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: var(--red-color);
    border-color: var(--red-color);
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    object-fit: contain;
    transition: 1s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid rgba(1, 41, 112, 0.2);
    border-left: 3px solid rgba(1, 41, 112, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid rgba(1, 41, 112, 0.2);
    border-right: 3px solid rgba(1, 41, 112, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: var(--black-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    background: var(--red-color);
    margin: 10px 2px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
    font-size: 24px;
    line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    background: var(--blue-color);
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--red-color);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--red-color);
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: var(--red-color);
    float: left;
    width: 44px;
    height: 44px;
    background: #effbf9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222222;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #555555;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--red-color);
    color: #fff;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: var(--red-color);
    padding: 0 0 30px 0;
    font-size: 14px;
}

.footer .footer-top {
    background: var(--red-color);
    background-size: contain;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }
}

.footer .footer-top .footer-info {
    margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
}

.footer .footer-top .footer-info a {
    text-decoration: none;
}

.footer .footer-top .footer-info p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    color: #fff;
    font-family: "Nunito", sans-serif;
}

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(255, 255, 255, 1);
    line-height: 0;
    margin-right: 30px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    color: #fff;
}

.footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-top .footer-links {
    margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d0d4fc;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-top .footer-links ul li {
    padding: 0px;
    display: flex;
    align-items: center;
}

.footer .footer-top .footer-links ul li a {
    padding: 13px;
    text-decoration: none;
    font-size: 18px;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
    color: #000;
}

.footer .footer-top .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #fff;
}

.footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/*------------Album Plan--------------*/

#price {
    text-align: center;
}

.plan {
    display: inline-block;
    margin: 10px 1%;
    font-family: 'Lato', Arial, sans-serif;
}

.plan-inner {
    background: #fff;
    margin: 0 auto;
    min-width: 380px;
    max-width: 100%;
    position: relative;
    padding-bottom: 30px;
}

.entry-title {
    background: #53CFE9;
    height: 140px;
    position: relative;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    background-image: url('../assets/img/albumplan/std.webp');
    background-size: 50% auto;
    background-position-y: 20px;
}

.entry-title>h3 {
    background: #20BADA;
    font-size: 20px;
    padding: 5px 0;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.entry-title .price {
    position: absolute;
    bottom: -25px;
    background: #20BADA;
    height: 95px;
    width: 95px;
    margin: 0 auto;
    left: 0;
    right: 0;
    overflow: hidden;
    border-radius: 50px;
    border: 5px solid #fff;
    line-height: 80px;
    font-size: 28px;
    font-weight: 700;
}

.price span {
    position: absolute;
    font-size: 9px;
    bottom: -10px;
    left: 30px;
    font-weight: 400;
}

.entry-content {
    color: #323232;
}

.entry-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.entry-content li {
    border-bottom: 1px solid #E5E5E5;
    padding: 10px 0;
}

.entry-content li:last-child {
    border: none;
    margin-bottom: 30px;
}

.btn a {
    background: var(--red-color);
    padding: 10px 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
}

.hot {
    position: absolute;
    top: -7px;
    background: var(--red-color);
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
    padding: 2px 5px;
    font-size: 15px;
    border-radius: 2px;
    right: 10px;
    font-weight: 700;
}

.basic .entry-title {
    background: #75DDD9;
    background-image: url('../assets/img/albumplan/std+.webp');
    background-size: 50% auto;
    background-position: center;
}

.basic .entry-title>h3 {
    background: #44CBC6;
}

.basic .price {
    background: #44CBC6;
}

.pro .entry-title {
    background: #ffc400;
    background-image: url('../assets/img/albumplan/premium.webp');
    background-size: 60% auto;
    background-position: center;
    background-position-y: 30px;
}

.pro .entry-title>h3 {
    background: #eeb600;
}

.pro .price {
    background: #eeb600;
}

.standard .entry-title {
    background: #4484c1;
    background-image: url('../assets/img/albumplan/combo.webp');
    background-size: 100% auto;
    background-position-y: 30px;
}

.standard .entry-title>h3 {
    background: #3772aa;
}

.standard .price {
    background: #3772aa;
}

.ultimite .entry-title>h3 {
    background: #DD4B5E;
}

.ultimite .entry-title {
    background: #7d232f;
    background-image: url('../assets/img/albumplan/ultra.webp');
    background-size: 50% auto;
    background-position-y: 10px;
}

.ultimite .price {
    background: #DD4B5E;
}

/*-----------Gallery View---------------*/

.background {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0px 20px;
}

.main-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-around;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.img-container {
    width: 100vw;
    background: rgb(255, 251, 224);
    box-shadow: 3px 10px 10px rgba(0, 0, 0, 0.25);
}

.image {
    border: 15px solid rgb(255, 251, 224);
    border-width: 1vmin 1vmin 1vmin 1vmin;
    overflow: hidden;
    width: 100%;
}

.image img {
    padding: 40px 0px;
    height: 600px;
    object-fit: contain;
    width: 70%;
    filter: drop-shadow(5px 5px 5px #655a42);
}

.img-container h5 {
    padding: 20px;
}

@media (max-width: 992px) {
    .image img {
        height: 300px;
        object-fit: contain;
        width: 80%;
        filter: drop-shadow(5px 5px 5px #655a42);
    }
}