/* Import a custom font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap');


/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.content-wrapper {
    max-width: 50%; /* Maximum width of the content */
    width: 100%; /* Use the full width up to the max-width */
    margin: auto; /* Center the content wrapper */
    background-color: #1b1b1b; /* Background color of the content area */
    padding: 0px; /* Optional: adds some spacing inside the content wrapper */
}
    .container img {
  object-fit: contain;
/* or
  object-fit: cover; */
}
/* Responsive adjustments for smaller screens */
@media(orientation : portrait) { /* Adjust this breakpoint as needed */
    .content-wrapper {
        max-width: 100%; /* Allow the content to fill 100% of the screen width on small screens */
        padding: 10px; /* Optionally adjust padding for smaller screens */
    }
}

body {
    font-family: 'Inconsolata', monospace; /* Apply the custom font */
    line-height: 1.6;
    color: #629b91;
    padding: 0px;
    background-color: #1b1b1b; /* Custom color background */
}

header {
    background: #629b91; /* Custom header background color */
    color: #000000;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    border-radius: 1x;
}

section {
    padding: 20px;
    margin-top: 20px;
}

footer {
    background: #629b91;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #1b1b1b;
    border-radius: 0%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 0%;
}

.button {
    background: #324b52;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 0%;
    cursor: pointer;
}

.button:hover {
    background: #5e8e9b;
}

.swiper-container {

    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Adjust how images fit within the slide */
}

.swiper-slide video {
    width: 100%;    /* Makes the video's width responsive to its parent container */
    height: 100%;   /* Scales the height automatically to maintain the aspect ratio */
}

.swiper-pagination {
    position: sticky;
    bottom: 10px; /* Adjust as needed */
    left: 0;
    width: 100%;
    text-align: center;
}

swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%; /* Centers vertically */
    width: 50px; /* Width of the arrow */
    height: 50px; /* Height of the arrow */
    margin-top: -25px; /* Half of the height to ensure vertical centering */
    z-index: 10;
    background-size: 50%; /* Adjusts the size of the arrow icon */
    background-position: center;
    background-repeat: no-repeat;
    color: black;
}

.swiper-button-next {
    right: 10px; /* Distance from the right edge */
    background-image: url('path/to/your/right-arrow.png'); /* Path to your custom right arrow icon */
}

.swiper-button-prev {
    left: 10px; /* Distance from the left edge */
    background-image: url('path/to/your/left-arrow.png'); /* Path to your custom left arrow icon */
}

