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

body {
    font-family: "Century Gothic", Arial, sans-serif;
    background-color: black;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit, Arial, sans-serif;
}


/* Navbar styles */
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 14px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5000;
    min-height: 56px;
    height: auto;
}

.navbar.with-dropdown {
    background-color: rgba(0, 0, 0, 0.00001); /* Semi-transparent black */
    backdrop-filter: blur(10px); /* Blur the content underneath */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
}

/*menu X */
.menu-icon {
    margin-left: 10px;
    margin-right: 18px;
    display: inline-block;
    cursor: pointer;
    z-index: 6000;
    margin-top: 5.75px;
    margin-bottom: 8.75px;
}

.bar1, .bar2, .bar3 {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
    transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
    transform: translate(0, 7px) rotate(-45deg);
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    transform: translate(0, -7px) rotate(45deg);
}


/* Dropdown menu */
.dropdown-menu {
    visibility: hidden;
    position: absolute;
    top: 14px;
    left: 14px;
    padding-left: 53px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5500;
}

.dropdown-menu.show {
    visibility: visible;
    display: flex;
    opacity: 1;
}

#menu-about, #menu-tcs, #menu-privacy, #menu-pricing, #menu-demo {
    font-size: 20px;
    margin-right: 24px;
    color: black;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    align-items: center;
    text-align: left;
    line-height: 42.5px;
}

#menu-about::after, #menu-tcs::after, #menu-privacy::after, #menu-pricing::after, #menu-demo::after {
    content: ""; /* Create the pseudo-element */
    position: absolute; /* Position relative to the parent */
    bottom: 8px; /* Place at the bottom of the link */
    left: 0; /* Start at the left */
    width: 0; /* Initial width is 0 (hidden) */
    height: 2px; /* Height of the underline */
    background-color: black; /* Black underline */
    transition: width 0.6s ease; /* Smooth animation */
}

#menu-about:hover::after {
    width: 100%
}

#menu-tcs:hover::after {
    width: 100%
}

#menu-privacy:hover::after {
    width: 100%
}

#menu-pricing:hover::after {
    width: 100%
}

#menu-demo:hover::after {
    width: 100%
}

#navbar-right {
    display: flex;
}

#signin, #create-account {
    padding: 12px 18px;
    text-decoration: none;
    font-size: 16px;
}

#profile-icon i {
    color: black;
    font-size: 36px;
    line-height: 42.5px; /* match the 'signout' height */
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

#profile-icon i:hover {
    transform: scale(1.03);
}

#signout {
    border: 0px;
    color: #FCFCFC;
    background-color: black;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 18px;
    font-family: "Century Gothic", Arial, sans-serif;
    cursor: pointer;
    position: relative;
}

#signout::after {
    content: ""; /* Create the pseudo-element */
    position: absolute; /* Position relative to the parent */
    bottom: 0; /* Place at the bottom of the link */
    left: 0; /* Start at the left */
    width: 0; /* Initial width is 0 (hidden) */
    height: 2px; /* Height of the underline */
    background-color: #fcfcfc; /* Black underline */
    transition: width 0.6s ease; /* Smooth animation */
}

#signout:hover::after {
    width: 100%; /* Full width on hover */
}

#signin {
    color: #FCFCFC;
    background-color: black;
    font-weight: bold;
    position: relative;
}


#create-account {
    color: black;
    background-color: #FCFCFC;
    font-weight: bold;
    position: relative;
}


#create-account::after {
    content: ""; /* Create the pseudo-element */
    position: absolute; /* Position relative to the parent */
    bottom: 0; /* Place at the bottom of the link */
    left: 0; /* Start at the left */
    width: 0; /* Initial width is 0 (hidden) */
    height: 2px; /* Height of the underline */
    background-color: black; /* Black underline */
    transition: width 0.6s ease; /* Smooth animation */
}

#create-account:hover::after {
    width: 100%; /* Full width on hover */
}

#signin::after {
    content: ""; /* Create the pseudo-element */
    position: absolute; /* Position relative to the parent */
    bottom: 0; /* Place at the bottom of the link */
    left: 0; /* Start at the left */
    width: 0; /* Initial width is 0 (hidden) */
    height: 2px; /* Height of the underline */
    background-color: #fcfcfc; /* Black underline */
    transition: width 0.6s ease; /* Smooth animation */
}

#signin:hover::after {
    width: 100%; /* Full width on hover */
}

#hero-section-container {
    background: url('/static/KeyImages/yortor_background_new4.png') center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

#hero-section {
    min-height: 100vh;
    color: black;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

@supports (-webkit-touch-callout: none) {
    #hero-section-container {
        background-attachment: scroll; /* fallback for iOS Safari */
    }

    #hero-section-container::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/static/KeyImages/yortor_background_new4.png') center / cover no-repeat;
        z-index: -1;
    }
}

#homepage-logo {
    position: absolute;
    bottom: 80px;
    right: 110px;
    width: 270px;
    height: auto;
}


#home-statement, #savings-note {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
}

.get-started-btn {
    display: inline-block;
    width: 200px;
    height: 50px;
    background-color: #FCFCFC;
    padding-top: 2px;
    padding-bottom: 2px;
    color: black;
    border: none;
    border-radius: 7px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    vertical-align: top; /* Align tab headings to the top */
    line-height: 46px; /* Center text vertically */
    text-align: center; /* Center text horizontally */
    text-decoration: none; /* remove underline */
    margin-right: 6px;
    margin-bottom: 10px;
}


.get-started-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
}


.pricing-btn {
    display: inline-block;
    width: 175px;
    height: 50px;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: black;
    color: #fcfcfc;
    border: none;
    border-radius: 7px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    vertical-align: top; /* Align tab headings to the top */
    line-height: 46px;
    text-align: center; /* Center text horizontally */
    text-decoration: none; /* remove underline */
    margin-bottom: 10px;
}

.pricing-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
}


.save-btn {
    display: inline-block;
    width: 319px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.55);
    color: black;
    border: none;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 7px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    vertical-align: top; /* Align tab headings to the top */
    line-height: 46px; /* Center text vertically */
    text-align: center; /* Center text horizontally */
    text-decoration: none; /* remove underline */

}

.save-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
}

.watch-demo-btn {
    display: inline-block;
    width: 210px;
    height: 50px;
    background-color: black;
    color: #fcfcfc;
    border: none;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 7px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    vertical-align: top; /* Align tab headings to the top */
    line-height: 46px; /* Center text vertically */
    text-align: center; /* Center text horizontally */
    text-decoration: none; /* remove underline */
    margin-bottom: 10px;
}

.watch-demo-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
}

#get_started {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the content vertically */
    margin-left: 110px;
    margin-right: 110px;
    margin-top: 60px;
    margin-bottom: 80px;
}


#tool-options {
    display: flex;
    justify-content: center; /* Center the tool cards */
    text-align: center;
    /* min-height: 100vh */
}

#best-tour-route-card {
    background: url('/static/KeyImages/yortor_background_new10.png');
    background-position: top;
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 100px;
    padding-top: 170px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center content horizontally */
    color: black;

}

#best-tour-schedule-card {
    background: url('/static/KeyImages/yortor_background_new4.png');
    background-position: bottom right;
    background-size: cover; /* Ensures the image covers the entire header */
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 100px;
    padding-top: 170px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center content horizontally */
    color: black;
}

.tool-card h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 32px;
}

.tool-card h3 {
    position: relative;
    display: inline-block;
}

.tool-card h3::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: black;
    transition: width 0.6s ease;
}

.tool-card:hover h3::after {
    width: 100%;
}

.tool-card ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    font-weight: 500;
    margin-top: 10px;
    font-size: 22px;
}

.tool-card ul li {
    margin: 10px 0;
}

.tool-card p {
    font-size: 22px;
    color: black;
    font-weight: 500;
    padding: 20px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
}

.tool-card-link {
    width: 50%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

#tools-statement {
    position: absolute;
    font-size: 40px;
    font-weight: 500;
    color: black;
    width: 100%;
    padding-top: 60px;
    padding-left: 60px;
}

#about-statement {
    position: absolute;
    font-size: 40px;
    font-weight: 500;
    color: black;
    width: 52%;
    padding-top: 60px;
    padding-left: 60px;
}

#features-statement {
    position: absolute;
    font-size: 40px;
    font-weight: 500;
    color: #fcfcfc;
    width: 42%;
    padding-top: 60px;
    padding-left: 60px;
}

#tools-container, #hero-section, #features-container {
    position: relative;
}

#features-container {
    width: 100vw;
    /* min-height: 100vh; */
    background-color: #fcfcfc;
    transition: height 0.3s ease-in-out;

}

#features-note {
    top: 130px;
    left: 60px;
    font-size: 22px;
    line-height: 28px;
    text-align: justify;
    padding-right: 100px;
    padding-top: 130px;
    padding-left: 60px;
    padding-bottom: 40px;
}

#minimise-note {
    font-weight: 500;
    color: #3DBC6A;
}

#features-note p {
    margin-bottom: 30px;
}

#features-container2 {
    height: 100%;
    display: flex;
    position: relative;
}

#features-left {
    width: 58%;
    /* min-height: 100vh; */
    white-space: normal;
}

#features-right {
    /* min-height: 100vh; */
    width: 42%;
    white-space: normal;
    background-color: black;
    color: #fcfcfc;
}

#features-list {
    list-style-type: none;
}

#features-list-container {
    padding-left: 60px;
    padding-right: 40px;
    padding-top: 130px;
    padding-bottom: 40px;
}

#features-list li {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 40px;
    font-weight: 500;
    display: flex;
}

#features-list i {
    margin-right: 14px;
    line-height: 30px;
    font-size: 20px !important;
}

#acknowledgements-link {
    color: #9AA8C3;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px !important;
    cursor: pointer;
    position: relative;
}

#acknowledgements-link::after {
    content: ""; /* Create the pseudo-element */
    position: absolute; /* Position relative to the parent */
    bottom: 0; /* Place at the bottom of the link */
    left: 0; /* Start at the left */
    width: 0; /* Initial width is 0 (hidden) */
    height: 2px; /* Height of the underline */
    background-color: #9AA8C3;
    transition: width 0.6s ease; /* Smooth animation */
}

#acknowledgements-link:hover::after {
    width: 191px; /* length of Acknowledgements text */
}

#acknowledgements-note {
    color: #9AA8C3;
    font-size: 22px;
    line-height: 28px;
    text-align: justify;
}

#footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    background-color: black;
}

#footer-links {
    display: flex;
    flex-direction: column;
}

#footer-about, #footer-tcs, #footer-privacy, #footer-pricing, #footer-demo, #footer-account {
    width: fit-content;
    font-size: 18px;
    margin-bottom: 20px;
    color: #fcfcfc;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

#footer-about::after, #footer-tcs::after, #footer-privacy::after, #footer-pricing::after, #footer-demo::after, #footer-account::after {
    content: ""; /* Create the pseudo-element */
    position: absolute; /* Position relative to the parent */
    bottom: -3px; /* Place at the bottom of the link */
    left: 0; /* Start at the left */
    width: 0; /* Initial width is 0 (hidden) */
    height: 2px; /* Height of the underline */
    background-color: #FCFCFC; /* Black underline */
    transition: width 0.6s ease; /* Smooth animation */
}

#footer-about:hover::after {
    width: 47px;
}

#footer-tcs:hover::after {
    width: 175px;
}

#footer-privacy:hover::after {
    width: 114px;
}

#footer-pricing:hover::after {
    width: 55px;
}

#footer-demo:hover::after {
    width: 49px;
}

#footer-account:hover::after {
    width: 95px;
}


#panel-logo {
    width: auto;
    height: 34px;
    display: block;
}

#footer-company {
    margin-top: 80px;
    position: relative;
}

#footer-company p {
    color: #fcfcfc;
}

#footer-email {
    margin-top: 10px;
}

#footer-logo {
    margin-bottom: 20px;
    float: right;
    padding-left: 20px;
}

#footer-logo-contact {
    position: absolute;
    right: 0;
    bottom: 0;
}

#footer-copyright {
    width: 45%;
    padding-right: 20px;
}


/* Savings Calculator */
#savings-statement {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: bold;
}

#savings-calculator-container {
    padding-left: 110px;
    padding-right: 110px;
    padding-bottom: 60px;
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 80px;
    row-gap: 30px;
}

#savings-calculator-container1{
    display: flex;
    column-gap: 20px;
    flex: 1;
}

#demo-container {
    padding-left: 110px;
    padding-right: 110px;
    padding-bottom: 80px;
}

#marketing-container {
    margin-top: 20px;
}

#savings-statement {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}


#savings-calculator-results {
    display: flex;
}

#savings-calculator-results i {
    font-size: 22px;
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 2px;
}

#savings-calculator-container2 {
    background-color: #FCFCFC;
    padding: 20px;
    display: inline-block;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
}

#savings-tours-input {
    margin-bottom: 20px;
}

#savings-vehicle-input {
    margin-bottom: 20px;
}

#savings-vehicle-input i {
    margin-right: 6px;
}

.savings-input-titles {
    font-size: 13px;
    color: #9AA8C3;
    margin-bottom: 4px;
    font-weight: bold;
}

#without-optimiser-stats {
    border: solid 1px #9AA8C3;
    border-radius: 7px;
    margin-bottom: 10px;
    padding: 12px;
    overflow: hidden;
}

#with-optimiser-stats {
    border: none;
    border-radius: 7px;
    background-color: black;
    padding: 12px;
    color: #FCFCFC !important;
    overflow: hidden;
}

.dropdown-toggle {
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content {
    display: none;
    margin-top: 6px;
}

#without-optimiser-stats .dropdown-toggle {
    background: none;
    color: #9AA8C3;
}

#with-optimiser-stats .dropdown-toggle {
    background: none;
    color: #fcfcfc;
}

.dropdown.open .dropdown-content {
    display: block;
}

.dropdown.open .arrow {
    transform: rotate(180deg);
    display: inline-block;
}


#final-savings-stats {
    border-radius: 7px;
    padding: 20px 0px;
    font-size: 20px;
    width: max-content;
}

#final-savings-stats i {
    margin-right: 6px;
}

#without-optimiser-stats p {
    margin-bottom: 4px;
    color: #9AA8C3;
}

#with-optimiser-stats p {
    margin-bottom: 4px;
}

#fuel-with-optimiser, #fuel-without-optimiser {
    padding-bottom: 4px;
}

#fuel-cost-saved {
    font-weight: bold;
}

#emissions-saved {
    font-weight: bold;
}

#fuel-without-optimiser {
    color: #9AA8C3 !important;
}

.number-stepper {
    align-items: center;
    gap: 4px;
    margin-left: 40px;
    display: flex;
}

.stepper-btn {
    border: 0px;
    background: #FCFCFC;
    font-size: 16px;
    padding: 2px;
    cursor: pointer;
    color: #9AA8C3;
}

.minus:hover {
    color: black;
    background-color: #e9eef5;
}

.plus:hover {
    color: black;
    background-color: #e9eef5;
}

.number-input-container {
    display: flex;
    justify-content: space-between;
}


#savings-form input[type="number"] {
    background-color: #FCFCFC;
    border: 0px;
    height: 27px;
    width: 40px;
    padding: 6px 10px;
    font-size: 16px;
    border-radius: 0px;
    font-weight: bold;
    text-align: right;
    margin-bottom: 2px;
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; /* Chrome/Safari/Edge */
    margin: 0;
}

#savings-form input[type="number"]:focus {
    outline: none;
    z-index: 1000;

}

#savings-tours-input label,
#savings-vehicle-input label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
}

#savings-tours-input label span {
    display: inline-block;
    width: 126px;
}

#savings-vehicle-input-hgv label span {
    display: inline-block;
    width: 106px;
}

#savings-vehicle-input-other label span {
    display: inline-block;
}

#savings-form {
    padding-left: 12px;
    padding-right: 12px;
}

.fuel-value {
    font-weight: bold;
    font-size: 42px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.emissions-value {
    font-weight: bold;
    font-size: 42px;
    margin-top: 4px;
    margin-bottom: 4px
}

.fuel-litre-value {
    font-weight: bold;
}

#fuel-litre-saved {
    margin-bottom: 14px;
    font-size: 16px;
}

#savings-percent {
    font-size: 54px;
    font-weight: bold;
}

#savings-percent-txt {
    font-size: 22px;
    margin-left: 8px;
    font-weight: bold
}

.benefits {
    margin-top: 30px;
    list-style: none;
    font-size: 20px;
}

.benefits li {
    margin-bottom: 14px;
}


.demo-video video {
    max-width: 940px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* subtle shadow */
}


#follow-statement {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: 50px;
}

#demo-sub-statement1 {
    font-size: 28px;
    margin-bottom: 30px;
    max-width: 940px;
    font-weight: bold
}


#demo-sub-statement2 {
    font-size: 22px;
    line-height: 30px;

    margin-bottom: 60px;
    max-width: 940px;
}

#bottom-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 50px;
    margin-top: 20px;
}


.get-started-btn2 {
    display: inline-block;
    width: 160px;
    height: 50px;
    line-height: 46px;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: #FCFCFC;
    color: black;
    border: none;
    border-radius: 7px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    vertical-align: top; /* Align tab headings to the top */
    text-align: center; /* Center text horizontally */
    text-decoration: none; /* remove underline */
}


.get-started-btn2:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
}

.pricing-btn2 {
    display: inline-block;
    width: 175px;
    height: 50px;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: black;
    color: #fcfcfc;
    border: none;
    border-radius: 7px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    vertical-align: top; /* Align tab headings to the top */
    line-height: 46px;
    text-align: center; /* Center text horizontally */
    text-decoration: none; /* remove underline */
    margin-bottom: 60px;
}


.pricing-btn3 {
    display: inline-block;
    width: 175px;
    height: 50px;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: black;
    color: #fcfcfc;
    border: none;
    border-radius: 7px;
    font-family: "Century Gothic", Arial, sans-serif;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    vertical-align: top; /* Align tab headings to the top */
    line-height: 46px;
    text-align: center; /* Center text horizontally */
    text-decoration: none; /* remove underline */
}

.pricing-btn2:hover, .pricing-btn3:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: black;
}


@media screen and (max-width: 1200px) {
    #savings-calculator-container {
        column-gap: 30px;
    }
}

@media screen and (max-width: 1024px) {
    #homepage-logo {
        width: 200px;
        bottom: 60px;
        right: 80px;
    }

    #get_started {
        margin-left: 80px;
        margin-right: 80px;
    }

    #savings-calculator-container, #demo-container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media screen and (max-width: 900px) {
    #savings-calculator-container1 {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    #home-statement {
        font-size: 36px;
        -webkit-text-size-adjust: 100%;
    }

    #follow-statement, #savings-note {
        font-size: 32px;
        -webkit-text-size-adjust: 100%;
    }

    #demo-sub-statement {
        font-size: 18px;
        -webkit-text-size-adjust: 100%;
    }

    #homepage-logo {
        right: 60px;
    }

    #get_started {
        margin-left: 60px;
        margin-right: 60px;
    }

    #savings-calculator-container, #demo-container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .watch-demo-btn, .get-started-btn, .get-started-btn2 {
        font-size: 20px;
        width: 160px;
        -webkit-text-size-adjust: 100%;
    }

    .save-btn {
        font-size: 20px;
        width: 260px;
        -webkit-text-size-adjust: 100%;
    }

    .pricing-btn2, .pricing-btn3 {
        font-size: 20px;
        width: 160px;
        -webkit-text-size-adjust: 100%;
    }

    .menu-icon {
        margin-left: 0px;
    }

    #profile-icon i {
        padding-right: 0px
    }

    #features-container2 {
        height: 100%;
        position: relative;
        flex-direction: column;
    }

    #features-left,
    #features-right {
        width: 100%; /* Make each section take up full width */
        min-height: auto;
    }

    #features-note {
        padding-left: 40px;
        padding-right: 40px;
    }

    #features-list-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    #features-statement, #about-statement, #tools-statement {
        padding-left: 40px;
    }

    #tool-options {
        flex-direction: column;
        height: 100%
    }

    .tool-card-link {
        width: 100%
    }

    #best-tour-route-card, #best-tour-schedule-card {
        padding-left: 40px;
        padding-right: 40px;
    }

    #menu-about, #menu-tcs, #menu-privacy, #menu-pricing, #menu-demo {
        margin-right: 20px;
    }

    .dropdown-menu {
        padding-left: 43px;
    }
}

@media screen and (max-width: 600px) {
    .benefits span {
        display: block;
        line-height: 28px;
    }
}

@media screen and (max-width: 490px) {
    .save-btn {
        margin-bottom: 40px;
    }

    #homepage-logo {
        right: 40px;
    }

    #home-statement {
        margin-bottom: 60px;
    }

    #savings-vehicle-input-other label span, #savings-vehicle-input-hgv label span {
        width: 126px;
    }

    #savings-vehicle-input-hgv label span {
        margin-left: 0px;
    }

    #savings-vehicle-input {
        display: block
    }

    #get_started {
        margin-left: 40px;
        margin-right: 40px;
    }

    #savings-calculator-container, #demo-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}


@media screen and (max-width: 430px) {
    .watch-demo-btn, .get-started-btn, .get-started-btn2 {
        width: 145px;
    }

    .save-btn {
        width: 245px;
    }

    .pricing-btn2, .pricing-btn3 {
        width: 145px;
    }

    .emissions-value, .fuel-value{
        font-size: 34px;
        -webkit-text-size-adjust: 100%;
    }
}