@import url('https://fonts.googleapis.com/css?family=Big+Shoulders+Text:100,300,400,500,600,700,800,900&display=swap');

/* font-family: 'Big Shoulders Text', cursive; */

.nav-flex-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    z-index: 100;
    left: 0;
    width: 100%;
    padding: 0;
}

.nav-flex-row li {
    text-decoration: none;
    list-style-type: none;
    padding: 20px 15px;
}

.nav-flex-row li a {
    font-family: 'Big Shoulders Text', cursive;
    color:tomato;
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 300;
}

.section-intro {
    height: 725px;
    background-image: url(img/index.JPG);
    background-size: cover;
    display: flex;
    flex-direction: column;
    color: deeppink;
}

@media (min-width:577px) and (max-width: 800px) {
    .section-intro {
        height: 500px;
    }
}

@media screen and (max-width: 576px) {
    .section-intro {
        height: 300px;
    }
}

.container1 {
    width: 80%;
    margin: auto;
    text-align: center;
}

h1{
    text-align: center;
}

.centered-form {
    margin-top: 50px;
}

.form-row {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

label {
    flex: 1;
    text-align: right;
    margin-right: 10px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
select {
    flex: 2;
    width: calc(100% - 20px);
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    flex: 2;
    width: calc(100% - 20px);
    height: 120px;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    width: 50%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    justify-content: center;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.cont {
    height: 710px;
    background-image: url(img/contact.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:brown;
}
.preb {
    height: 710px;
    background-image: url(img/preb.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    color:black;
}
.tariff {
    height: 710px;
    background-image: url(img/tariff.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    color:black;
}
.abt{
    height: 710px;
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.popup-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #000;
    padding: 20px;
    z-index: 9999;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color:white;
    text-align: center;
    padding: 10px 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    color: black;
}

.left, .right {
    width: 48%; /* Adjust as needed */
}

.left {
    text-align: left;
    margin-right: 10%;
}

.right {
    text-align: right;
    margin-left: 10%;
}

.wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap; /* Ensure all sections are displayed on a single line */
}

.section {
    display: inline-block;
}

img {
    max-width: 100%; /* Ensure images don't exceed the width of their container */
    height: auto; /* Maintain aspect ratio */
    animation: scroll 10s linear infinite; /* Apply animation to images */
}

@keyframes scroll {
    0% {
        transform: translateX(0); /* Start from the left edge */
    }
    100% {
        transform: translateX(-400%); /* Scroll to the left by 600% of viewport width */
    }
}