:root {
/*--primary-background: #00284E;*/
/*    --bs-primary: #00284E;*/
/*    --bs-secondary: #ff9900;*/
    --bs-primary-rgb: 0, 40, 78;
    --bs-secondary: #DD3D08;
    --bs-secondary-rgb: 221, 61, 8;

    /* Button overrides */
    --bs-btn-secondary-color: #fff;
    --bs-btn-secondary-bg: #DD3D08;
    --bs-btn-secondary-border-color: #DD3D08;
    --bs-btn-secondary-hover-color: #fff;
    --bs-btn-secondary-hover-bg: #bb3307;
    --bs-btn-secondary-hover-border-color: #aa2d06;
    --bs-btn-secondary-active-color: #fff;
    --bs-btn-secondary-active-bg: #aa2d06;
    --bs-btn-secondary-active-border-color: #992806;
    --bs-btn-secondary-disabled-color: #fff;
    --bs-btn-secondary-disabled-bg: #DD3D08;
    --bs-btn-secondary-disabled-border-color: #DD3D08;
    --bs-nav-link-font-size:18px;
    --bs-nav-link-color:#fff;
}
.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #DD3D08;
    --bs-btn-border-color: #DD3D08;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #bb3307;
    --bs-btn-hover-border-color: #aa2d06;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #aa2d06;
    --bs-btn-active-border-color: #992806;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #DD3D08;
    --bs-btn-disabled-border-color: #DD3D08;
    font-size: 24px;
}
.navbar{
    --bs-navbar-nav-link-padding-x:16px;

}
.navbar-nav{
    --bs-nav-link-color:#fff;
}
body{
    font-family: "Inter", sans-serif;
    margin: 0;
}
.primary-font{
    font-family: "Inter", sans-serif;
}
.container{
    max-width: 1300px;
}
.secondary-font{
    font-family: "EB Garamond", serif;
}
.fs-14{
    font-size: 14px;
}
.color1{
    color: #00284E;
}
.tick-list{
    list-style: none;
    padding-left: 0;
    li::before{
        content: "";
        background-image: url("../img/tick.svg");
        width: 16px;
        height: 14px;
        display: inline-block;
        margin-right: 8px;
    }
}
.hours-section{
    border-radius: 20px;
    background: #FBE6DF;
    padding:32px 24px;
}
.light-color{
    color: #FBE6DF;
    font-size: 130px;
}
.reasons-item{
    border-radius: 20px;
    background: rgba(221, 61, 8, 0.13);
}
.highlight-col {

    border-radius: 20px;
    background: rgba(251, 230, 223, 0.38);
    padding: 2rem 2rem;
    height: 100%;
}
.feature-col {
    font-weight: 600;
    display: flex;
    align-items: center;
}
.comparison-row {
    min-height: 90px;
    display: flex;
    align-items: center;
    font-size: 18px;
    svg{
        flex: 0 0 30px;
    }
}
.full-height {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.full-height > .row {
    flex: 1;
    align-items: start;
}
.first-column{
    margin-top: 6rem;
}
.last-column{
    padding: 2rem 0rem 2rem 2rem;
}
footer{
    background-color: #00284E;
    color: #fff;
    padding: 2rem;
    a{
        color: #fff;
        text-decoration: none;
    }
}
.fs-12{
    font-size: 12px;
}
.companies{
    /*img{*/
    /*    max-width: 160px;*/
    /*}*/
}
.card-img{
    object-fit: cover;
}
@media screen and (max-width:768px) {
    .companies {
        img {
            max-width: 120px;
        }
    }
    footer{
        text-align: center;
    }
    .comparison-row{
        min-height: 40px;
        margin-bottom: 1rem;
    }
    .highlight-col, .last-column{
     padding-inline: 1rem;
    }.comparison-row {
         svg {
             flex: 0 0 24px;
         }
     }
    .tick-list {
        li{
            display: flex;
        }
        li::before {
            flex: 0 0 18px;
            margin-top: 9px;
        }
    }
    .column-one .comparison-row{
        display: flex;
        align-items: start;
        &:before{
            margin-top: 10px;
            width: 5px;
            height: 5px;
            background-color: #000;
            content: "";
            display: inline-block;
            border-radius: 10px;
            margin-left: 8px;
        }

    }
}