
/**
 * Theme gallery
 */
.gallery-img {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Aspect ratio: 4:3 */
    overflow: hidden;
}

.gallery-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**
 * Team Picture
 * same size for all images
 */
.team-block img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
}

/**
 * Carousel: "about us" section
 */
.carousel-custom img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
}


/**
 * Pricing table
 */
.pricing-body span {
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/**
 * Form styles
 */
.frame-layout-0 h2 {
    display: none;
}
.frame-layout-0 .form-group .form-label {
    font-size: 0.875rem !important;
    line-height: 1.313rem !important;
    color: #fff !important;
    letter-spacing: 0.0625rem !important;
    font-family: "Montserrat", sans-serif !important;
    text-transform: uppercase !important;
}
.frame-layout-0  textarea {
    font-size: 0.875rem !important;
    letter-spacing: 0.025rem !important;
    padding: 0.75rem 0.875rem;
    min-height: 130px !important;
    font-family: "Montserrat", sans-serif !important;
}
.frame-layout-0 .form-navigation .submit .btn {
    margin-top: 1.5rem !important;
    background-color: #0baf4e !important;
}

/**
 * Header logo
 */
header .navbar-brand img {
    height: 150px;
    top: -33px;
}

header.shrink .navbar-brand img {
    height: 110px;
    top: -23px;
}

@media (max-width: 991px) {
    header.shrink .navbar-brand img {
        top: -12px;
    }
}

/**
 * Footer logo
 */
#footer-logo {
    height: 120px;
    position: relative;
}
#footer-logo .footer-logo {
    width: 210px;
    position: absolute;
    margin: 0 auto;
    height: auto;
    left: 0;
    right: 0;
    max-height: max-content;
}

/**
 * Footer copyright, mobile
 */
@media (max-width: 991) {
    .break-word-mobile {
        display: block;
    }
}
#footer-nav {
    text-align: right;
}
@media (max-width: 767px) {
    #copyright {
        padding-bottom: 15px;
    }
}

@media (max-width: 575px) {
    #copyright {
        text-align: center !important;
    }
    #footer-nav {
        text-align: center !important;
    }
}


/**
 * Custom theme
 */
.custom-theme .custom-theme-content {
    background-color: #f7f7f7;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    min-height: 267px;
}
