﻿header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 30px;
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

    header .navbar {
        padding: 0;
        width: 100%;
    }

        header .navbar .navbar-nav {
            gap: 1rem;
        }

            header .navbar .navbar-nav .nav-item .nav-link {
                color: var(--white);
                font-size: 15px;
                font-weight: 300;
                text-transform: capitalize;
                padding: 0;
            }

                header .navbar .navbar-nav .nav-item .nav-link:hover {
                    color: var(--primary);
                }
/* END: Header */


/* Begin: footer */
.writingService {
    background: url(../images/cta-bg.webp) center/cover no-repeat;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row wrap;
}

    .writingService .content h3 {
        color: var(--white);
        font-size: 2rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .writingService .content p {
        color: var(--white);
        margin: 0;
        width: 95%;
    }

    .writingService .btnStyle {
        background: var(--black);
        font-size: 1.25rem;
        box-shadow: 2px 2px 6px rgb(0 0 0 / 10%);
    }

        .writingService .btnStyle:hover, .writingService .btnStyle:focus {
            background: var(--white);
            color: var(--black);
        }

footer {
    background: #fff;
    padding-top: 0;
    border-top: #d0d0d0 solid 2px;
}

    footer h4 {
        font-size: 1.125rem;
        font-weight: 500;
        text-transform: capitalize;
        color: var(--primary);
        margin: 0 0 20px 0;
    }

    footer h5 {
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: capitalize;
        margin: 1rem 0;
    }

        footer h5 span {
            color: var(--primary);
        }

    footer p, footer .links li a {
        font-weight: 400;
        color: #3a3a3a;
        display: inline-block;
        padding: 5px 0;
    }
    footer .links li a:hover {
        text-decoration: underline !important;
        color: var(--black) !important;
    }

    footer p {
        padding: 0;
        margin: 0;
    }

    footer .links li a:hover,
    footer .links li a:focus {
        color: var(--primary);
    }

.links.inline {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    color: var(--white);
}

footer .contactInfor {
    margin: 0;
}

    footer .contactInfor li {
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        margin-bottom: 0;
        gap: 10px;
    }

    footer .contactInfor .ico {
        border-color: rgb(255 255 255 / 30%);
    }

    footer .contactInfor a span {
        font-size: 14px;
        text-transform: capitalize;
        font-weight: 500;
    }

    footer .contactInfor a {
        color: var(--white);
        font-size: 1rem;
        font-weight: 400;
        word-break: break-all;
    }

.QuotationSec .agentLink p {
    margin-bottom: 0;
}
.QuotationSec .agentLink i {
    color: #003f9c;
}
.QuotationSec .agentLink a {
    color: #414141;
    font-size: calc(14px + (20 - 14) * (100vw - 320px) / (1920 - 320));
}
.QuotationSec .agentLink a:hover i {
    color: #fff;
}

.copyRight {
    border-top: 1px solid rgb(255 255 255 / 10%);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    padding: 1rem 0;
    margin-top: 3rem;
}

footer .copyRight h5 {
    margin: 0;
}

.social {
    display: flex;
    gap: 1rem;
}

    .social li a {
        color: var(--primary);
        font-size: 1.5rem;
    }

        .social li a:hover {
            color: var(--white);
        }

.copyRight h4, .copyRight .indLedrCarousel {
    margin: 0;
}

    .copyRight .indLedrCarousel img {
        padding: 0 5px;
    }
/* END: footer */


@media only screen and (max-width: 767px) {
    header {
        padding-top: 10px;
    }
}

    