/* Slider */
.slick-slider {
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.carousel-inner, .carousel-item, .carousel-item img {
    height: 500px; /* Adjust the height as needed */
    max-height: 500px;
    object-fit: cover; /* Ensures the image covers the container without stretching */
}


#footer .footer-main{
    height: 250px;
}

.footer .footer-content {
    margin-top: 0;
    margin-bottom: 0;
}

.footer .footer-content p,
.footer .footer-content ul,
.footer .footer-content li {
    margin: 0;
    padding: 0;
    line-height: 1.5; /* Adjust line height for readability */
}

.footer .footer-content a {
    margin: 0;
    padding: 0;
}
.homepage-carousel {
    height: 100%;
    position: relative;
}
#footer .footer-main {
    background-color: #04424d;
    padding: 30px 0 54px;
    
}
/* General styling for the navigation bar */
.header-main {
    display: flex;
    align-items: center; /* Vertically center the items */
    justify-content: space-between; /* Space out items */
    height: 70px; /* Adjust height as needed */
    padding: 20 20px; /* Add padding for spacing */
    padding-bottom: 20px;
    padding-top: 10px;
    /* background-color: #04424d;  */
}

/* Logo container styling */
.header-main .logo {
    display: flex;
    align-items: center;
}

/* Adjust the logo size if needed */
.header-main .logo img {
    max-height: 50px; /* Adjust the max height of the logo */
}

/* Navigation links container styling */
.header-main nav {
    display: flex;
    align-items: center;
}

/* Navigation links styling */
.header-main nav a {
    color: #ffffff; /* Text color for the nav links */
    margin-left: 20px; /* Space between each link */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Font size */
}

/* Reduce the height of the call-to-action bar (phone and email section) */
#call-to-action {
    padding-top: 5px; /* Adjust the top padding */
    padding-bottom: 5px; /* Adjust the bottom padding */
    background-color: #028090; /* Background color of the call-to-action bar */
    color: #ffffff; /* Text color */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styling for the phone and email contact information */
#call-to-action span {
    margin: 0 10px; /* Space between phone and email */
}

/* Ensure the content below the header isn't hidden */
body {
    margin-top: 70px; /* Add margin to the top to accommodate the header height */
}
