header {
    background-color: transparent;
}
div.banner {
    padding: calc(60px + 30px) 0 60px 0;
    /*margin-top: 60px;*/
    background-color: #0a2540;
    height: 42vh;
    max-height: 470px;
    margin-bottom: 50px;
    & div.child {
        position: relative;
        height: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    & div.west-bengal {
        margin-left: -70px;
        margin-top: -50px;
        height: 122%;
        width: auto;
    }
    & div.west-bengal svg {
        height: 100%;
        width: auto;
    }
    & div.west-bengal svg path {
        fill: #0d3257 !important;
    }
    & h1 {
        color: #ffffff;
    }
    & div.info {
        position: relative;
        z-index: 10;
        flex: 1;
    }
}
div.banner div.features {
    display: flex;
    margin-top: 30px;
    gap: 10px;
}
div.banner div.feature {
    flex: 1;
    height: auto;
    background-color: #1e3d58;
    padding: 18px;
}
div.banner div.feature:nth-child(1) {
    border-radius: 14px 0 0 0;
}
div.banner div.feature:nth-child(3){
    border-radius: 0 14px 0 0;
}
div.banner div.feature h2 {
    font-weight: 600;
    color: #ffffff;
}
div.banner div.feature p.info {
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.4;
    color: #f7f7f7;
}
div.banner p.customer-service {
    background-color: #1e3d58;
    color: #ffffff;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-radius: 0 0 14px 14px;
    & span.and {
        font-size: 34px;
        font-weight: 600;
        padding-right: 10px;
        color: var(--primary-color);
    }
    & span {
        font-size: 20px;
        font-weight: 500; padding-right: 7px;
    }
}
div.banner a.action {
    text-transform: uppercase;
    text-decoration: none;
    background-color: var(--primary-color);
    display: inline-flex;
    height: 50px;
    margin-top: 20px;
    align-items: center;
    width: 250px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    justify-content: center;
}
div.banner a.action:hover {
    transition: all 250ms ease-in-out;
    background-color: #ffffff;
    color: var(--primary-color);
}

/* Quick Links - Start -> */
div.quick-links {
    margin-bottom: 60px;
}
div.quick-links div.links {
    margin-top: 20px;
    display: flex;
    height: auto;
    gap: 16px;
}
div.quick-links div.links a {
    position: relative;
    flex: 1;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    padding: 20px;
    border-radius: 14px;
    text-decoration: none;
    color: #000;
    overflow: hidden;
    & span.line {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 7px;
        background-color: var(--primary-color);
    }
}
div.quick-links div.links a img {
    width: auto;
    height: 50px;
    display: flex;
    margin-bottom: 16px;
}
div.quick-links div.links a p.container-title {
    font-weight: 600;
    margin-bottom: 7px;
    color: #000;
}
div.quick-links div.links a p {
    font-size: 15px;
    line-height: 1.5;
    color: #353535;
}
div.quick-links div.links a:hover {
    background-color: var(--primary-color-10);
    && p {
    color: var(--primary-color) !important;
    }
}
/* Quick Link - End -^ */
@media only screen and (max-width: 1200px) {
    div.quick-links,
    div.banner div.child {
        margin-left: 30px;
        margin-right: 30px;
    }
}
@media only screen and (max-width: 1040px) { 
    header a.brand-logo svg {
        height: 20px;
    }   
    header div.links a {
        height: 32px;
        font-size: 15px;
    }
    div.banner {
        padding: calc(60px + 20px) 0 0 0;
        max-height: none;
        height: auto;
        & div.child div.info {
            padding-bottom: 24px;
        }
    }
    div.banner div.tab.west-bengal {
        display: none;
    }
    div.banner,
    div.quick-links {
        margin-bottom: 40px;
    }
    div.banner div.feature,
    div.quick-links div.links a {
        padding: 16px;
    }
    div.banner div.features,
    div.quick-links div.links {
        gap: 10px;
        margin-top: 20px;
    }
    div.banner p.customer-service {
        margin-top: 10px;
    }
    div.banner p.customer-service span {
        font-size: 18px;
    }
    div.banner p.customer-service span.and {
        font-size: 29px;
    }
    div.banner a.action {
        margin-top: 18px;
        font-size: 16px;
        height: 45px;
    }
    div.quick-links div.links a img {
        height: 40px;
    }
}
