body {
	font-family:lato, sans-serif;
	font-size: 16px;
	line-height: 1.4;
	margin:0
}


.slick-slider {
    height: 300px; /* Keeps the slider fixed at 300px tall */

}

.slick-slide {
    height: 300px !important; /* Ensures all slides are exactly 300px */
    display: flex;
    align-items: center;
    margin-right: 5px; /* Adds the 5px gap between slides */
}

.slick-slide img {
    height: 100%; /* Ensures images fully fit the 300px height */
    width: auto; /* Maintains aspect ratio */
    object-fit: cover;
}

/* Force arrows to be visible */
.slick-prev, .slick-next {
    display: block !important; /* Override any hidden styles */
    z-index: 10;
    background: rgba(0, 0, 0, 0.5); /* Dark background for visibility */
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.slick-prev:hover, .slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Adjust positioning */
.slick-prev {
    left: 15px !important; /* Move arrows outside the slides */
}

.slick-next {
    right: 15px !important;
}

/* Style dots for better visibility */
.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white; /* Change color if needed */
    opacity: 0.75;
}

.slick-dots li.slick-active button:before {
    color: #fff; /* Highlight active dot */
    opacity: 1;
}

.slick-dots {
	bottom: 0 !important;
}

.container {
    position: relative;
    height: 100vh; /* Full viewport height */
	width: 100vw;
	position:fixed;
	z-index: 999;
}

.mmb {
    position: absolute;
    top: 0; /* Align to the top of the screen */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    z-index: 10; /* Higher z-index */
	
}

.mmb img {
	display: none; /* Remove bottom space from images */
	width:180px;
}

.crane {
    position: absolute;
    bottom: 00px; /* Align the bottom of the crane image to the bottom of the screen */
    left: 0; /* Start from the left edge */
    width: 100%; /* Full width of the viewport */
    z-index: 1; /* Lower z-index than mmb */
    background-color: white; /* White background */
}

.crane img {
    display: block; /* Remove bottom space from images */
    margin: 0 auto; /* Center the image horizontally */
	width: 180px;
}

.gform_fields, .gform_field {
    grid-row-gap: 0 !important;
}

.slick-slider {
    max-height: 300px;
    overflow: hidden;
}

.slick-slider img {
    max-height: 300px !important;
}