@import url("reset.css");
@import url("fonts.css");

body {
    font-family: "Montserrat";
    font-weight: 400;
    color: #404041;
}

.bold {
    font-family: "Scarlet";
    font-weight: 700;
    letter-spacing: 0.1;
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
}

.site-header {
    background-color: #fff;

    .container {
        height: 90px;
        display: flex;
        align-items: center;
    }

    .logo {
        margin-right: auto;
    }

    .site-header-link {
        display: flex;
        gap: 5px;
        align-items: center;
        font-family: "Scarlet";
        font-weight: 700;
        text-decoration: none;
        color: inherit;
    }

    .site-header-link:last-child {
        display: none;
    }

    .splitter {
        display: none;
        line-height: 18px;
        font-size: 30px;
        font-weight: 400;
        letter-spacing: 0.1;
        margin: 0 10px;
    }
}

@media (min-width: 640px) {
    .site-header .site-header-link:last-child {
        display: flex;
    }
    .site-header .splitter {
        display: inline;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: start;
}

.hero .background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 600px;
    object-fit: cover;
    z-index: -1;
}

.hero .background.dull {
    filter: brightness(30%);
}

.hero .lifted {
    align-self: center;
}

.hero .intro {
    display: none;
    max-width: 500px;
    text-align: left;
    margin-top: 12px;
}
.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    div {
        display: flex;
        flex-direction: column;
        max-width: 700px;
    }
    .title {
        display: none;
        font-family: "Scarlet";
        font-weight: 700;
        font-size: 56px;
        letter-spacing: -1px;
        line-height: 60px;
        text-align: left;
        max-width: 450px;
        line-break: strict;
        text-wrap: unset;
        margin-bottom: 28px;
    }

    .title-text-container {
        display: none;
    }
    .quote-tool {
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .hero .container .title,
    .title-text-container,
    .hero .container .intro {
        display: block !important;
    }

    .hero .container .quote-tool {
        margin: unset;
    }
}

.company-values {
    display: none;
    background-color: #172944;

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 92px;
    }

    .item {
        display: flex;
        align-items: center;
        gap: 10px;

        .icon {
            width: 32px;
            height: 32px;
        }

        .label {
            font-family: "Scarlet";
            font-weight: 700;
            font-size: 18px;
            line-height: 28px;
            color: #fff;
        }
    }

    .item:nth-child(2),
    .item:nth-child(4),
    .item:nth-child(5) {
        display: none;
    }
}

@media (min-width: 640px) {
    .company-values {
        display: block;
    }
    .company-values .item:nth-child(5) {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .company-values .item:nth-child(4) {
        display: flex;
    }
}

@media (min-width: 1200px) {
    .company-values .item:nth-child(2) {
        display: flex;
    }
}

.feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 50px;

    p {
        opacity: 0.75;
        font-size: 16px;
        line-height: 32px;
        letter-spacing: 0.1px;
    }

    .feature-image {
        border-radius: 5px;
    }

    a {
        text-decoration: none;
    }
}

@media (min-width: 720px) {
    .feature {
        grid-template-columns: 1fr 1fr;
    }
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: ;
}

.headline {
    margin-bottom: 15px;
    font-family: "Scarlet";
    font-size: 32px;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: -0.4px;
    color: #3069b2;
}

.sectors {
    padding: 50px 0;
    background-color: #f0f4fb;

    .container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .sectors-title {
        font-family: "Scarlet";
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        letter-spacing: -0.1px;
        color: #3069b2;
    }

    .sectors-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (min-width: 640px) {
    .sectors .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .sectors .sectors-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.whyrix {
    background-color: #f0f4fb;
    padding: 50px 0;

    .header {
        margin-bottom: 32px;
    }

    .items {
        display: grid;
        gap: 30px;
        grid-template-columns: 1fr;

        .icon {
            text-align: center;
            margin-bottom: 12px;
        }

        .title {
            font-weight: 700;
            font-family: "Scarlet";
            line-height: 28px;
            margin-bottom: 8px;
            text-align: left;
        }
        .text {
            color: #404041;
            line-height: 20px;
            font-size: 14px;
            text-align: left;
        }
    }
}

@media (min-width: 640px) {
    .header {
        text-align: center;
    }

    .whyrix .items {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .whyrix .items {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.sector-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;

    .sector-card-info {
        padding: 24px 32px;

        .sector-card-title {
            font-family: "Scarlet";
            font-weight: 700;
            font-size: 24px;
            line-height: 32px;
            letter-spacing: -0.1px;
            margin-bottom: 12px;
            color: #3069b2;
        }

        p {
            opacity: 0.75;
            font-size: 16px;
            line-height: 32px;
            letter-spacing: 0.1px;
        }

        .sector-card-link {
            margin-top: 50px;
            display: inline-block;
            height: 37px;
            background-image: url("/images/icons/arrow.svg");
            background-repeat: no-repeat;
            background-size: 32px 32px;
            padding-left: 45px;
            font-weight: 700;
            font-family: "Scarlet";
            text-decoration: none;
            color: #3069b2;
            padding-top: 4px;
        }
    }
}

.list {
    display: flex;
    flex-direction: column;
    gap: 10px;

    .list-item {
        display: flex;
        align-items: center;
        gap: 24px;
    }
}

.efuels-list {
    margin-top: 20px;
}
.payments-list {
    margin-top: 28px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    height: 56px;
    font-family: "Scarlet";
    font-weight: 700;
    border: 2px solid #e02538;
    border-radius: 5px;
    color: inherit;
    text-decoration: none;
}

.btn:hover {
    background-color: #e02538;
    color: white;
}
.payments-btn {
    margin-top: 20px;
}
.myaccount-btn {
    margin-top: 32px;
}

.site-footer {
}

.footer-main {
    background-color: #172944;
    padding: 50px 0px !important;
    font-size: 16px;
    color: white;
    font-family: "Scarlet";
    font-weight: 700;
    border-top: 1px solid #3069b24d;

    .heading {
        color: white;
        display: block;
        margin-bottom: 12px;
        font-size: 18px;
    }
    .linklist {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    .link {
        color: white;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
    }
    .link:hover {
        text-decoration: underline;
    }

    .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .companyinfo {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .contact-item {
        display: flex;
        gap: 8px;
        align-items: center;
        color: unset;
        text-decoration: none;
    }
}

@media (min-width: 720px) {
    .footer-main .companyinfo {
        /* flex-direction: row; */
        align-items: flex-start;
    }
    .footer-main .container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-main .companyinfo {
        flex-direction: row;
    }
}

.copyright-bar {
    background-color: #172944;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid #3069b24d;
}

.quote-tool {
    width: 350px;
    height: 500px;
    border: none;
    background-color: transparent;
    border-radius: 14px;
}
