body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 18px !important;
}

.navbar {
    background-color: rgba(248, 248, 248, 0.85);
    background: rgb(248, 248, 248, 0.85);
    border-color: rgb(248, 248, 248, 0.85);
}

.navbar-transparent {
    background-color: rgba(248, 248, 248, 0.8);
    background: rgb(248, 248, 248, 0.8);
    border-color: rgb(248, 248, 248, 0.8);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 3rem;
    font-weight: bold;
}

.logo {
    margin-right: 20px;
    height: 50px;
    width: 50px
}

.navbar-brand img.logo {
    transition: width 0.6s ease, height 0.6s ease;
}

.navbar-toggle {
    display: block;
    /* Ensure it's visible */
    border: none;
    /* Remove unwanted borders */
    background: transparent;
    /* Optional, to match navbar */
}

.navbar-toggle .icon-bar {
    background-color: #000;
    /* Set visible colors for bars */
}

.half-breakline {
    width: 70%;
    border: none;
    border-bottom: 1px solid #2c6183;
    margin: 0 auto;
}

@media(min-width:767px) {
    .navbar {
        padding: 20px 0;
        -webkit-transition: background .5s ease-in-out, padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out, padding .5s ease-in-out;
        transition: background .5s ease-in-out, padding .5s ease-in-out;
    }

    .top-nav-collapse {
        padding: 0;
    }
}

/*Intro*/
.intro {
    text-align: center;
}

.intro img {
    max-width: 100%;
    height: auto;
    border-radius: 0 0 10px 10px;
}



/*About*/
.about {
    padding: 100px 0 100px 0;
    text-align: center;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2c3145;
    font-weight: 600;
}

.heading span {
    color: #2c6183;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.section-title {
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.section-subtitle {
    letter-spacing: 0.4px;
    line-height: 28px;
    max-width: 550px;
}

.section-title-border {
    background-color: #000;
    height: 1 3px;
    width: 44px;
}

.section-title-border-white {
    background-color: #fff;
    height: 2px;
    width: 100px;
}

.text_custom {
    color: #2c6183;
}

.about_icon i {
    font-size: 30px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    display: inline-block;
    background: #fff;
    border-radius: 35px;
    color: #2c6183;
    box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
    font-size: 20px;
}

.about_icon span {
    position: relative;
    top: -10px;
}

.about_content_box_all {
    margin: 28px;
}

.vertical_content_manage {
    margin-top: 28px;
}

.about-us-photo {
    height: 275px;
    width: auto;
    border-radius: 10px;
}

.paragraph-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 275px;
    text-align: left;
    box-sizing: border-box;
}



/* Service */
.services {
    padding: 100px 0 100px 0;

    .section_subtitle {
        text-align: center;
    }
}

/* Ensure all cards have the same height */
.card.h-100 {
    margin-top: 50px;
    height: 550px;
    /* Fixed height for all cards, adjust as needed */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Prevent overflow of content */
}

/* Make sure images are of the same size and cover the card evenly */
.service-img {
    object-fit: cover;
    height: 250px;
    /* Adjust the height of the image */
    width: 100%;
    /* Ensure image takes full width of card */
    border-radius: 10px;
}

/* Ensure the card body is consistent and handles overflow text */
.card-body {
    display: flex;
    flex-direction: column;
    padding: 15px;
    flex-grow: 1;
    /* Ensure it fills the available space */
    overflow: hidden;
    /* Prevent overflow */
}

/* Make sure long text doesn't overflow and is properly contained */
.card-body h5 {
    font-size: 1.1rem;
    /* Adjust the size if needed */
    margin-bottom: 1rem;
}

/* Ensure the list items are properly spaced inside the card */
.card-body ul {
    padding-left: 20px;
    /* Add some space to the left of the list items */
    list-style-position: inside;
    /* Ensure list items are inside */
}

/* Make sure the card does not overflow beyond its parent container */
.card {
    border: none;
    border-radius: 10px;
    /* Optional: smooth rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional: subtle shadow for card */
}




/* Contact */
.contact {
    padding: 100px 0 100px 0;
    text-align: center;
}

.contact .heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.contact .heading h2 span {
    color: #2c6183;
}

.contact .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #999999;
    margin: 20px 0 60px;
    padding: 0;
}

.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border: 0;
    border-radius: 10px;
}

.contact button.btn {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    background: #2c6183;
    color: #ffffff;
    width: 100%;
}

.contact .title h3 {
    font-size: 18px;
    font-weight: 600;
}

.contact .title p {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0 0 25px;
}

.contact .content .info i {
    font-size: 30px;
    padding: 0;
    margin: 0;
    color: #2c6183;
    text-align: center;
}

.contact .content .info h4 {
    font-size: 13px;
    line-height: 1.4;
}

.contact .content .info h4 span {
    font-size: 13px;
    font-weight: 300;
    color: #999999;
}

.map {
    height: 350px;
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {

    /* Medium screens (tablet) */
    .col-md-4 {
        flex: 0 0 100%;
        /* Stacks into a single column */
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    /* Small screens (mobile) */
    .map-box {
        display: none !important;
        /* Hide map on small screens */
    }

    .form-box {
        margin-top: 50px !important;
    }

    .about-box {
        padding-top: 0px !important;
    }

    .logo {
        margin-right: 20px;
        height: 50px;
        width: 50px;
    }

    .img_about{
        margin-top: 20px;
    }
}

/*Sent.html*/

.danke-box {
    display: flex;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center */
    height: 100%;
    /* Full height of the viewport */
    text-align: center;
    /* Center text inside */
}

.sent-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;

    p {
        font-size: 10px;
    }
}

footer {
    p {
        font-size: 10px;

    }
}