/* Variables */
:root {
    --primaryColor: #1f2878;
    --secondaryColor: #fa1e1e;
}

/* General Styles */

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Manrope", sans-serif;
    letter-spacing: 0.75px;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a,
button {
    display: inline-block;
    font: inherit;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

section {
    position: relative;
    padding: 75px 0;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--secondaryColor);
    background-color: var(--secondaryColor);
    color: #fff;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
    -webkit-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}

.btn:hover {
    background-color: transparent;
    color: var(--secondaryColor);
}

.swiper-pagination-bullet-active {
    background-color: var(--primaryColor) !important;
}

.anchor-proxy {
    position: absolute;
    top: -70px;
}

/* ================================WhatsApp Icon Integration=================================*/
#whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#whatsapp-chat img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
}

.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

/* for mobile */
@media screen and (max-width: 767px) {

    .whatsapp_float {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 10px;
        font-size: 22px;
    }
}


/* Typography */

h1 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-align: center;
}

h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h5 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

p,
li {
    font-size: 1.125rem;
    line-height: 1.25;
}

.bold {
    font-weight: 700;
}

.colored-text {
    color: var(--secondaryColor);
}

/* Navigation Bar Styles */

header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--primaryColor);
    z-index: 9999;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.homepage header {
    position: fixed;
}

.nav-container {
    position: relative;
    padding: 0;
    background-color: var(--primaryColor);
}

nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

nav h1 {
    text-align: center;
    margin-bottom: 1.25rem;
}

.logo {
    width: 100px;
    overflow: hidden;
}

.nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    font-size: 1.125rem;
}

.nav-list li {
    -webkit-transition: color 0.35s ease;
    -o-transition: color 0.35s ease;
    transition: color 0.35s ease;
}

.nav-list li:hover a,
.nav-link.active {
    color: var(--secondaryColor);
}

.nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin-top: 5px;
    background: var(--secondaryColor);
    transition: width 0.5s;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -ms-transition: width 0.5s;
    -o-transition: width 0.5s;
}

.nav-link:hover:after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Styles */

.hamburger {
    display: none;
}

.hamburger {
    width: 26px;
    height: 32px;
    margin-top: 10px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 8px;
}

.hamburger span:nth-child(4) {
    top: 16px;
}

header.open .hamburger span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

header.open .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

header.open .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

header.open .hamburger span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* Hero Section */

.hero-section {
    padding: 0;
}

.hero-banner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 40, 120, 0.25);
}

.hero-banner>div {
    position: relative;
    z-index: 1;
}

.hero-banner .container {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

.hero-banner .container.active {
    opacity: 1;
    visibility: visible;
}

.hero-section .hero-pagination {
    position: absolute;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    bottom: 5% !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9;
}

.hero-section .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: transparent !important;
    opacity: 1 !important;
    border: 1px solid #fff;
    margin: 0 10px !important;
}

.hero-section .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff !important;
}

.scroll-down {
    font-size: 1.125rem;
    color: #fff;
    position: absolute;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    animation: scrollDown 1s infinite;
    -webkit-animation: scrollDown 1s infinite;
    z-index: 999;
}

@-webkit-keyframes scrollDown {
    0% {
        -webkit-transform: translate(-50%, -75%) scale(1.05, 0.95);
        transform: translate(-50%, -75%) scale(1.05, 0.95);
    }

    50% {
        -webkit-transform: translate(-50%, -125%) scale(1, 1);
        transform: translate(-50%, -125%) scale(1, 1);
    }

    55% {
        -webkit-transform: translate(-50%, -125%) rotate(2deg);
        transform: translate(-50%, -125%) rotate(2deg);
    }

    60% {
        -webkit-transform: translate(-50%, -125%) rotate(-2deg);
        transform: translate(-50%, -125%) rotate(-2deg);
    }

    65% {
        -webkit-transform: translate(-50%, -125%) rotate(2deg);
        transform: translate(-50%, -125%) rotate(2deg);
    }

    70% {
        -webkit-transform: translate(-50%, -125%) rotate(-2deg);
        transform: translate(-50%, -125%) rotate(-2deg);
    }

    100% {
        -webkit-transform: translate(-50%, -75%) scale(1.05, 0.95);
        transform: translate(-50%, -75%) scale(1.05, 0.95);
    }
}

@keyframes scrollDown {
    0% {
        -webkit-transform: translate(-50%, -75%) scale(1.05, 0.95);
        transform: translate(-50%, -75%) scale(1.05, 0.95);
    }

    50% {
        -webkit-transform: translate(-50%, -125%) scale(1, 1);
        transform: translate(-50%, -125%) scale(1, 1);
    }

    55% {
        -webkit-transform: translate(-50%, -125%) rotate(2deg);
        transform: translate(-50%, -125%) rotate(2deg);
    }

    60% {
        -webkit-transform: translate(-50%, -125%) rotate(-2deg);
        transform: translate(-50%, -125%) rotate(-2deg);
    }

    65% {
        -webkit-transform: translate(-50%, -125%) rotate(2deg);
        transform: translate(-50%, -125%) rotate(2deg);
    }

    70% {
        -webkit-transform: translate(-50%, -125%) rotate(-2deg);
        transform: translate(-50%, -125%) rotate(-2deg);
    }

    100% {
        -webkit-transform: translate(-50%, -75%) scale(1.05, 0.95);
        transform: translate(-50%, -75%) scale(1.05, 0.95);
    }
}

/* Booking Section */

.booking-section {
    color: #fff;
    background-color: var(--primaryColor);
}

.booking-content h3 {
    margin-bottom: 1rem;
}

.booking-content h5 {
    text-align: center;
}

.booking-content .booking-contact {
    text-align: center;
}

.booking-content .booking-contact a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    gap: 1rem;
    font-size: 1.125rem;
}

.booking-content a svg {
    width: 30px;
}

.booking-form {
    max-width: 920px;
    margin: 0 auto;
}

.booking-form .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 1.5rem 3rem;
    margin-top: 3rem;
}

.booking-form .row>div {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
}

input {
    color: var(--primaryColor);
}

.booking-form input[type="radio"] {
    display: none;
}

.booking-form input:not([type="radio"]),
.booking-form select {
    display: block;
    height: 42px;
    width: 100%;
    font-size: 1rem;
    margin-top: 0.75rem;
    padding-left: 50px;
    padding-right: 20px;
    background-position: 15px;
    background-repeat: no-repeat;
    border: 1px solid #000;
    outline-color: var(--secondaryColor);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.booking-form input::-webkit-input-placeholder {
    font-size: 1rem;
    color: #928c8c;
}

.booking-form input::-moz-placeholder {
    font-size: 1rem;
    color: #928c8c;
}

.booking-form input:-ms-input-placeholder {
    font-size: 1rem;
    color: #928c8c;
}

.booking-form input::-ms-input-placeholder {
    font-size: 1rem;
    color: #928c8c;
}

.booking-form input::placeholder {
    font-size: 1rem;
    color: #928c8c;
}

.radio-btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 0.75rem 0;
    border: 2px solid var(--secondaryColor);
    background-color: var(--secondaryColor);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    -webkit-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
    cursor: pointer;
}

.booking-form input[type="radio"]:checked+.radio-btn {
    background-color: #fff;
    color: var(--secondaryColor);
}

.booking-form .row:last-child {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.no-spin {
    -moz-appearance: textfield !important;
}

#depart,
#destination {
    background-image: url(../images/icons/location.svg);
    background-size: 18px;
}

#mileage {
    background-image: url(../images/icons/mileage.svg);
    background-size: 22px;
}

#departure-date,
#return-date {
    background-image: url(../images/icons/date.svg);
    background-size: 22px;
}

#departure-time,
#return-time {
    background-image: url(../images/icons/clock.svg);
    background-size: 22px;
}

#passengers {
    background-image: url(../images/icons/user.svg);
    background-size: 22px;
}

#suitcases {
    background-image: url(../images/icons/luggage.svg);
    background-size: 20px;
}

#email {
    background-image: url(../images/icons/email.svg);
    background-size: 24px;
}

#phone {
    background-image: url(../images/icons/phone.svg);
    background-size: 22px;
}

.booking-footer {
    text-align: center;
    margin-top: 2rem;
}

.booking-footer p {
    margin-bottom: 1.5rem;
}

/* Why Section */

.why-section {
    text-align: center;
    color: #4d4e4f;
    font-weight: 600;
}

.why {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: inherit;
    align-content: inherit;
    gap: 2rem;
    margin-bottom: 2rem;
}

.why>div {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    max-width: 380px;
    padding: 2rem 1.25rem;
    background-color: #f5f9ff;
    -webkit-box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Services Section */

.services-section {
    background-color: var(--primaryColor);
    color: #fff;
}

.services>.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 1rem 3rem;
    margin-bottom: 1rem;
}

.service {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    width: 100%;
    max-width: 380px;
}

.service>a {
    display: block;
    width: 100%;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    -o-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
    will-change: transform;
}

.service:hover a {
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
}

.service-img {
    height: 200px;
    margin-bottom: 1.25rem;
    border-radius: 10px;
    -webkit-filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.1));
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Testimonial Section */

.testimonial-section {
    text-align: center;
}

.testimonial-slider {
    margin-bottom: 4rem;
}

.testimonial {
    max-width: 380px;
    padding: 2rem 1.25rem;
    margin: 1rem;
    background-color: #f5f9ff;
    -webkit-box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-weight: 600;
}

.testimonial p {
    line-height: 1.75;
}

.rating-img {
    max-width: 150px;
    margin: 2rem auto 0;
}

/* Hire Section */

.hire-content h3 {
    text-align: left;
    margin-bottom: 1.25rem;
}

.hire-content .img-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.hire-content img {
    /* max-width: 600px; */
    margin-bottom: 1.5rem;
}

.hire-content p {
    margin-bottom: 1em;
}

.hire-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.hire-content ul li {
    margin: 0.75rem 0;
}

/* About Section */

.about-text .about-img {
    /* max-width: 600px; */
    margin: 2rem 0 1rem;
}

.about-text h3 {
    text-align: left;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1em;
}

.about-text ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.about-text ul li {
    margin: 0.75rem 0;
}

/* Contact Section */

.contact-content {
    width: 100%;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.contact-us-form form .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 1rem;
}

.contact-us-form form input,
.contact-us-form form textarea {
    display: block;
    font: inherit;
    width: 100%;
    height: 48px;
    margin: 0 0 1rem;
    padding: 0 1.25rem;
    background-color: #fff;
    border: 2px solid var(--primaryColor);
    outline-color: var(--secondaryColor);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.contact-us-form form textarea {
    min-height: 120px;
    max-height: 240px;
    padding: 1rem 1.25rem;
    resize: vertical;
}

.contact-success,
.contact-error {
    display: none;
    margin-top: 2rem;
    margin-bottom: 0;
    text-align: center;
}

.contact-success {
    color: #2ecc71;
}

.contact-error {
    color: #c0392b;
}

.contact-error svg {
    display: inline-block;
    fill: #c0392b;
    width: 25px;
    vertical-align: middle;
}

.contact-us-form form .btn {
    width: 180px;
}

.contact-content .btn {
    width: 180px;
}

/* Map */

.google-map-iframe {
    padding: 0;
}

/* Location Section */

.locations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
}

.locations>div {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    min-width: 300px;
}

.locations h3 {
    text-align: left;
    margin-bottom: 2rem;
}

.locations ul li {
    font-weight: 700;
    margin: 1rem 0;
}

.location-section .btn-container {
    text-align: center;
}

/* Footer */

footer {
    padding: 50px 0;
    background-color: var(--primaryColor);
    color: #fff;
}

.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
}

footer h4 {
    text-align: left;
}

.footer-nav>div:first-child {
    text-align: center;
}

.footer-nav>div:first-child img {
    margin: 0 auto;
    margin-bottom: 1rem;
}

.contact-list,
.footer-list {
    margin-top: 2rem;
}

.contact-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.contact-list svg {
    width: 30px;
}

.footer-list li {
    margin: 1.25rem 0;
    font-weight: 600;
}

.copyright {
    font-size: 0.875rem;
    margin-top: 2rem;
    text-align: center;
}

/* Media Queries */

@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Typography */

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    p,
    li {
        font-size: 1rem;
    }

    /* Navigation Bar */

    nav h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .placeholder-item {
        display: none;
    }

    .hamburger {
        display: block;
    }

    header,
    .homepage header {
        position: -webkit-sticky;
        position: sticky;
    }

    .logo {
        width: 60px;
    }

    .nav-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 0;
        background-color: var(--primaryColor);
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
        transition: -webkit-transform 0.5s, -webkit-box-shadow 0.5s;
        -o-transition: transform 0.5s, box-shadow 0.5s;
        transition: transform 0.5s, box-shadow 0.5s;
        transition: transform 0.5s, box-shadow 0.5s, -webkit-transform 0.5s,
            -webkit-box-shadow 0.5s;
        z-index: -1;
    }

    header.open .nav-list {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    /* Hero Section */

    .scroll-down {
        bottom: 10%;
    }

    /* Footer */

    .footer-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    /* Typography */

    h2 {
        font-size: 2.25rem;
    }

    /* Booking Section */

    .booking-form .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 1.5rem;
    }

    /* Why Section */

    .why {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /* Services Section */

    .services>.row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }

    nav h1 {
        font-size: 1rem;
    }

    /* Typography */

    h2 {
        font-size: 1.75rem;
    }

    /* Hero Section */

    .hero-section {
        padding: 0;
    }

    .hero-banner {
        min-height: 420px;
        background-position: center;
    }

    /* Testimonial Section */

    .testimonial {
        max-width: 100%;
    }

    /* Contact Section */

    .contact-us-form form .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}