@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

body,
html {
    font-family: "Open Sans", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #141619;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15%;
    background-color: #141619;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar li {
    padding: 0 10px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
}

.hamburger {
    background: none;
    /* Removes any default background */
    border: none;
    /* Removes any default border */
    cursor: pointer;
    padding: 10px;
    /* Adds some padding around the icon */
}


.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin-bottom: 4px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
    }

    .navbar {
        display: none;
        width: 100%;
        position: absolute;
        top: 90px;
        left: 0;
        background-color: #141619;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .navbar ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        margin-top: 10%;
    }

    .navbar li {
        padding: 16px 10px;
    }

    .navbar li:hover {
        text-decoration: underline;
    }

    .navbar.active {
        display: flex !important;
    }

    .nav-container {
        padding: 0 5%;
    }
}

.book-section .hero-background {
    height: 600px;
    /* Keeps height fixed for large screens */
    background-image: url(../images/hero.jpg);
    background-size: cover;
    background-position: center;
    display: grid;
    align-items: center;
    justify-items: left;
}

.container {
    padding: 0 15%;
    /* Keeps container padding for large screens */
}

#bookingForm {
    background: rgba(20, 22, 25, 0.95);
    padding: 20px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns for large screens */
    grid-gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Target input within the .input-with-icon class more specifically */
.input-with-icon input,
.input-with-icon .e-input {
    /* Target Syncfusion inputs specifically */
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: #333;
    color: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
    outline: none;
    /* Removes outline on focus */
}

.input-with-icon input:focus,
.input-with-icon .e-input:focus {
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.5);
    /* Blue glow for focus */
}

.input-with-icon input::placeholder {
    color: #bbb;
}

/* Main container for the timepicker dropdown */
.ui-timepicker-wrapper {
    border: 1px solid #555;
    /* Border color */
    background-color: #333;
    /* Background color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    /* Shadow for 3D effect */
    overflow: hidden;
    /* Ensures the dropdown does not overflow the rounded corners */
    border-radius: 5px;
    /* Rounded corners */
    color: #fff;
    /* Text color */
}

/* List items within the dropdown */
.ui-timepicker-list li {
    background-color: #333;
    /* Background color for each list item */
    border-bottom: 1px solid #555;
    /* Slight border for each item */
    color: #fff;
    /* Text color */
    padding: 8px 10px;
    /* Padding for each item */
    cursor: pointer;
    /* Cursor indicates item can be clicked */
}

/* Hover and active state for list items */
.ui-timepicker-list li:hover,
.ui-timepicker-list li.ui-timepicker-selected {
    background-color: #555;
    /* Darker background on hover/active */
    color: #fff;
    /* White text color for readability */
}

/* Scrollbar within the dropdown */
.ui-timepicker-wrapper::-webkit-scrollbar {
    width: 6px;
    /* Width of the scrollbar */
}

.ui-timepicker-wrapper::-webkit-scrollbar-track {
    background-color: #333;
    /* Scrollbar track color */
}

.ui-timepicker-wrapper::-webkit-scrollbar-thumb {
    background-color: #555;
    /* Scrollbar color */
    border-radius: 3px;
    /* Rounded corners for the scrollbar */
}

.ui-timepicker-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #777;
    /* Scrollbar color on hover */
}

/* Main container for the timepicker dropdown */
.ui-timepicker-wrapper {
    max-height: 200px;
    /* Limit the height to enforce a scrollbar */
    overflow-y: auto;
    /* Allow vertical scrolling */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

/* Style for the scrollbar */
.ui-timepicker-wrapper::-webkit-scrollbar {
    width: 8px;
    /* Sufficient width for easy interaction */
}

.ui-timepicker-wrapper::-webkit-scrollbar-track {
    background: #2e2e2e;
    /* Dark track background */
}

.ui-timepicker-wrapper::-webkit-scrollbar-thumb {
    background-color: #6e6e6e;
    /* Lighter grey for visibility */
    border-radius: 4px;
}

.ui-timepicker-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #9e9e9e;
    /* Even lighter on hover to indicate interactivity */
}

.search-button,
.toggle-return {
    grid-column: 1 / -1;
    /* Full width on all screen sizes */
    background-color: #273fac;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
}




/* Responsive adjustments */
@media (max-width: 768px) {
    .book-section .hero-background {
        height: auto;
        /* Adjust height on smaller screens */
        padding: 20px;
        /* Add padding */
    }


    .container {
        padding: 0 5%;
        width: 90%;
        /* Less padding on smaller screens */
    }

    #bookingForm {
        grid-template-columns: 1fr;
        margin: 10% 0 10% 0;
        /* Single column layout on smaller screens */
    }

    .input-with-icon input {
        padding-left: 10px;
        /* Reduce padding for smaller screens */
    }

}

@media (max-width: 480px) {
    .book-section .hero-background {
        padding: 10px;
        /* Minimal padding on very small screens */
    }

    .container {
        padding: 0 2%;
        /* Minimal padding on very small screens */
    }

    #bookingForm {
        grid-gap: 8px;
        /* Tighter grid gap */
    }

    .search-button,
    .toggle-return {
        padding: 8px 16px;
        /* Smaller buttons for smaller screens */
        font-size: 14px;
        /* Smaller font size for better fit */
    }
}


.hidden {
    display: none;
}


.section {
    padding: 20px 0;
    background-color: #141619;
}

#services,
#features {
    background-color: #141619;
}

.container2 {
    text-align: center;
    background-color: #141619;
    color: #fff;
    padding: 0 15%;
}

.container2 h2 {
    margin: 10px 0;
    font-size: 2em;
}

.container2 p {
    margin: 20px 0;
}

.card-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    gap: 5%;
}

.card {
    background-color: #2c2c2c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}

.card-content {
    padding: 15px;
    text-align: left;
    /* Aligns text to the left for better readability */
}

.card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.card p {
    color: #ffffff;
    font-size: 14px;
    /* Adjust font size for better readability */
    line-height: 1.6;
    /* Improves text spacing */
}

/* General Styling for Sections */
.section3 {
    background-color: #141619;
    /* Light background for better readability */
    padding: 40px 0;
    /* Ample padding for visual separation */
    color: #fff;
    /* Darker text for contrast */
}

.container3 {
    width: 100%;
    padding: 20px 15%;
    background-color: #141619;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 26px;
}

/* Styling for Headings */
.container3 h2 {
    font-size: 28px;
    /* Prominent size for headings */
    color: #ffffff;
    /* A warm, welcoming color */
    margin-bottom: 20px;
    /* Space below the heading */
}

/* Paragraph Styling */
.container3 p {
    font-size: 16px;
    /* Optimal font size for readability */
    line-height: 1.6;
    /* Line height for better reading experience */
    color: #fff;
    /* Slightly lighter than the usual black for a softer appearance */
    margin-bottom: 20px;
    /* Margin below each paragraph */
    text-align: justify;
    /* Justify aligns the text for a clean look */
}

.about-image img {
    width: 100%;
    height: auto;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .container3 {
        width: 95%;
        /* More width to use more screen space on smaller devices */
        padding: 10px;
        /* Less padding to accommodate smaller screens */
    }

    .container3 h2 {
        font-size: 24px;
        /* Slightly smaller font size for headings on smaller screens */
    }

    .container3 p {
        font-size: 14px;
        /* Slightly smaller text on small devices */
    }
}

.footer-hr {
    color: #fff;
}



.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    padding: 70px 15%;
    margin: auto;
    background-color: #fff;
    gap: 5%;
}

.feature {
    text-align: center;
    width: 100%;
}

.feature i {
    font-size: 40px;
    color: #273fac;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 18px;
    margin-top: 10px;
    color: #141619;
}

.feature p {
    font-size: 16px;
    color: #141619;
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 80%;
        margin-bottom: 20px;
    }
}

.reviews-container {
    background-color: #fff;
    padding: 20px 15%;
    width: 100%;
    position: relative;
}

.reviews-container h2 {
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 20px;
}

.reviews-container p {
    color: #ffffff;
    text-align: center;
    font-style: italic;
}

.slider {
    overflow: hidden;
    width: 100%;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0;
}

.review {
    background-color: #2c2c2c;
    width: calc((100% - 60px) / 3);
    /* This will be dynamically changed in JS */
    padding: 20px;
    margin: 10px;
    box-sizing: border-box;
    border-left: 5px solid #273fac;
    border-radius: 5px;
    flex-shrink: 0;
}

.review h5 {
    font-size: 14px;
    color: #ffffff;
    text-align: right;
    margin-top: 10px;
    font-weight: 800;
}

.slide-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


.footer {
    background-color: #141619;
    /* Dark background for footer */
    color: #fff;
    /* Light text for readability */
    padding: 20px 0;
    /* Padding above and below the content */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Three equal columns */
    max-width: 1200px;
    /* Maximum width of the footer container */
    margin: 0 auto;
    /* Center the container */
    padding: 0 20px;
    /* Padding on the sides */
    gap: 20px;
    /* Space between grid columns */
}

.footer-contact,
.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    /* Stack the content vertically */
}

.footer h3 {
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    /* Remove bullet points */
    padding: 0;
    /* Remove padding */
}

.footer li {
    margin-bottom: 5px;
    font-size: 0.8em;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8em;
}

.footer a:hover {
    text-decoration: underline;
}



/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        /* Stack the columns on smaller screens */
        text-align: center;
        /* Center align the text for smaller screens */
    }
}

.container-sv {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15%;
    box-sizing: border-box;
}

.container-sv h1 {
    margin-bottom: 40px;
}

/* Styling for each vehicle option */
.vehicle-option {
    background-color: #2a2a2a;
    /* Slightly lighter shade for the vehicle cards */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.vehicle-option h2 {
    color: #fff;
}

.vehicle-option ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
}

.vehicle-option img {
    width: 200px;
    /* Set specific width */
    height: 100px;
    /* Set specific height */
    object-fit: cover;
    /* Ensure the aspect ratio is maintained without distortion */
    border-radius: 4px;
}

#inception {
    display: grid;
    grid-template-columns: 1fr;
}

#in {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

#in i {
    padding-right: 5px;
}

.price-tag {
    font-size: 24px;
    color: #20ab76;
    /* Accent color for prices */
}

/* Styling for buttons */
.button {
    background-color: #273fac;
    /* Accent color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.button:hover {
    background-color: #1c2f91;
    /* Darker shade of the accent color on hover */
}

/* Order summary styling */
.order-summary {
    background-color: #333;
    /* Dark background for the summary */
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    justify-content: center;
}

.order-summary h2 {
    color: #fff;
    margin-bottom: 20px;
}

.order-summary p {
    color: #ccc;
    margin-bottom: 5px;
    /* Light gray for less emphasis */
}

.order-summary button {
    background-color: #20ab76;
    /* Accent color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    width: 100%;
}

#einfo {
    margin: 40px auto;
    background-color: #333;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#einfo h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

#einfo input,
#einfo textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 16px;
}

#einfo input::placeholder,
#einfo textarea::placeholder {
    color: #bbb;
}

#einfo textarea {
    resize: vertical;
    min-height: 100px;
}

#einfo .form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

#einfo .form-buttons button {
    flex: 1;
    margin: 5px 0;
    padding: 12px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#einfo .form-buttons button[type="submit"] {
    background-color: #20ab76;
    color: #fff;
}

#einfo .form-buttons button[type="submit"]:hover {
    background-color: #2ae09b;
}

#einfo .form-buttons button[type="button"] {
    background-color: #273fac;
    color: #fff;
}

#einfo .form-buttons button[type="button"]:hover {
    background-color: #1c2f91;
}

@media (max-width: 480px) {
    #einfo .form-buttons {
        flex-direction: column;
    }

    #einfo .form-buttons button {
        width: 100%;
    }
}

.container-rv {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15%;
    box-sizing: border-box;
}

.container-rv h1 {
    color: #fff;
    margin-bottom: 20px;
}

.container-rv p {
    color: #ccc;
    font-size: 18px;
    margin: 8px 0;
}

.container-rv p span {
    font-weight: bold;
    color: #fff;
}

/* Buttons styling */
#review {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

#review button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#review button[type="submit"] {
    background-color: #20ab76;
    color: #fff;
}

#review button[type="submit"]:hover {
    background-color: #2ae09b;
}

#review button[type="button"] {
    background-color: #273fac;
    color: #fff;
}

#review button[type="button"]:hover {
    background-color: #1c2f91;
}

@media (max-width: 480px) {
    #review {
        flex-direction: column;
    }

    #review button {
        width: 100%;
    }
}

.container-confirmation {
    max-width: 1200px;
    margin: 50px auto;
    padding: 10px 15%;
    box-sizing: border-box;
}

.container-confirmation a {
    text-decoration: none;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.faq-header {
    text-align: center;
    margin-bottom: 20px;
}

.faq-header h1 {
    color: #273fac;
}

.faq-search {
    width: 100%;
    padding: 10px;
    border: 1px solid #273fac;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
}

.faq {
    background: #333;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq:hover {
    background: #444;
}

.faq h2 {
    font-size: 18px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq i {
    transition: transform 0.3s ease;
}

.faq.active i {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    padding-top: 10px;
    font-size: 16px;
    color: #ccc;
}

.back-button {
    display: inline-block;
    background-color: #273fac;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    display: block;
    text-align: center;
}

.back-button:hover {
    background-color: #1c2f91;
}

.terms-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.terms-header {
    text-align: center;
    margin-bottom: 20px;
}

.terms-header h1 {
    color: #273fac;
}

.terms-section {
    background: #333;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.terms-section:hover {
    background: #444;
}

.terms-section h2 {
    font-size: 18px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terms-section i {
    transition: transform 0.3s ease;
}

.terms-section.active i {
    transform: rotate(180deg);
}

.terms-content {
    display: none;
    padding-top: 10px;
    font-size: 16px;
    color: #ccc;
}

.back-button {
    display: inline-block;
    background-color: #273fac;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    display: block;
    text-align: center;
}

.back-button:hover {
    background-color: #1c2f91;
}

.privacy-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.privacy-header {
    text-align: center;
    margin-bottom: 20px;
}

.privacy-header h1 {
    color: #273fac;
}

.privacy-section {
    background: #333;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.privacy-section:hover {
    background: #444;
}

.privacy-section h2 {
    font-size: 18px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-section i {
    transition: transform 0.3s ease;
}

.privacy-section.active i {
    transform: rotate(180deg);
}

.privacy-content {
    display: none;
    padding-top: 10px;
    font-size: 16px;
    color: #ccc;
}

.back-button {
    display: inline-block;
    background-color: #273fac;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    display: block;
    text-align: center;
}

.back-button:hover {
    background-color: #1c2f91;
}

/* General Container Styling */
.container-rt {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1c1c1c;
    /* Dark background */
    color: #ffffff;
    /* White text */
}

/* Hero Image Styling */
.hero-image {
    text-align: center;
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;

}

/* Route Information Section */
.route-info {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.route-info ul {
    list-style: none;
    padding: 0;
}

.route-info li {
    padding: 8px 0;
    font-size: 18px;
    color: #20ab76;
}

.route-info strong {
    color: #fff;
    /* Accent color */
}

/* Destination Information Section */
.destination-info {
    margin-top: 20px;
    background: #252525;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.destination-info h2 {
    color: #fff;
    /* Accent color */
    border-bottom: 2px solid #273fac;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.destination-info ul {
    list-style: none;
    padding: 0;
}

.destination-info li {
    padding: 6px 0;
    font-size: 16px;
}

/* Call to Action (Booking Section) */
.cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.cta p {
    font-size: 18px;
    margin-bottom: 10px;
}

.book-now {
    display: inline-block;
    background-color: #20ab76;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
}

.book-now:hover {
    background-color: #2be49d;
}

@media (max-width: 768px) {
    .card-container {
        grid-template-columns: 1fr;
    }

    .features-container {
        grid-template-columns: 1fr;
        margin-top: 25%;
    }

    .container2 {
        padding: 0 10%;
    }

    .container3 {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 10%;
    }

    .container3 p {
        text-align: left;
    }

    .book-section .hero-background {
        justify-items: center;
    }

    #bookingForm {
        background: rgba(20, 22, 25, 0.75);
    }


    .vehicle-option ul {
        grid-template-columns: 1fr;
        justify-items: start;
    }

}

@media (max-width: 400px) {

    .features-container {
        margin-top: 40%;
    }
}