*, *::after, *::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0C55A5;
    --color-primary: #000F89;
    --color-secondary: #2B6CB5;
    --color-secondaryMedium: #5192db;
    --color-primaryDark: #125A82;
    --color-bgLight: #f7f7f7;
    --color-greyLight: #ebebeb;
    /*    --font-barlow: 'Barlow' sans-serif;*/
}

body {
    font-family: 'Barlow';
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.5;
}


img {
    width: 100%;
}

ul {
    list-style: none;
    padding-left: 0;
}

a {
    display: block;
    color: #000;
    text-decoration: none;
}

.icon {
    display: block;
    width: 25px;
    /*    padding:0.25rem 0.5rem;*/
}

.arrow {
    width: 2rem;
}

.form-label {
    margin-bottom: 0.15rem;
}

h2.headline {
    font-size: 2rem;
    color: var(--color-secondary);
    width: fit-content;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.sub-header {
    width: fit-content;
    padding-bottom: 0.25rem;
}

.para {
    font-size: 1.2rem;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
}
/*.mb-80{
    margin-bottom:80px;
}*/

@media(max-width:1199px) {
    h2.headline {
        text-align: center;
    }
}

@media(max-width:991px) {
    h2.headline {
        font-size: 2.1rem;
    }

    p {
        font-size: 1rem;
    }
}

.mb-80 {
    margin-bottom: 80px;
}

.flex-div {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

.empty-div {
    height: 140px;
}

@media(max-width:1199px) {
    .empty-div {
        height: 55px;
    }
}

.btn {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    text-align: center;
    border-radius: 2rem;
    background-color: var(--color-primary);
    color: #fff;
    transition: 300ms ease;
}

    .btn:hover {
        color: #fff;
        box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.4);
    }

@media(min-width:1400px) {
    .home-page .container {
        max-width: 1600px;
    }
}

/*hero-banner*/
.hero-banner {
    position: relative;
    width: 100%;
    height: 650px;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
}

    .banner-img img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

    .banner-content h5 {
        background-color: var(--color-secondary);
        width: fit-content;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
    }

    .banner-content h2 {
        font-size: 3rem;
    }

.banner-contentDiv {
    width: 45%;
}

@media(max-width:1400px) {
    .banner-contentDiv {
        width: 60%;
    }
}

@media(max-width:991px) {
    .banner-contentDiv {
        width: 80%;
    }

    .banner-content h5 {
        font-size: 1rem;
    }
}

@media(max-width:767px) {
    .banner-contentDiv {
        width: 95%;
    }
}

.banner-content p {
    font-size: 1.2rem;
    /*margin-bottom:0.25rem;*/
}

.banner-content .btn {
    background-color: #fff;
    color: var(--color-primary);
    font-weight: 500;
}

    .banner-content .btn.btn-about {
        background-color: var(--color-primary);
        color: #fff;
    }

.btn-div {
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
}

    .btn-div a {
        display: block;
    }

        .btn-div a:hover {
            background-color: var(--color-primary);
            color: #fff;
        }

.btn.btn-save {
    background-color: var(--color-greyLight);
    color: #000;
}
/*hero-banner*/
/*About-Section*/
.about-content {
    background-color: var(--color-primary);
    padding: 3rem;
    color: #fff;
}

    .about-content h2.headline {
        border-bottom: 1px solid #fff;
        margin-bottom: 2rem;
    }

    .about-content .img-div {
        border-bottom: 4px solid var(--color-secondary);
        height: 250px;
        overflow: hidden;
        transition: 500ms ease;
        position: relative;
    }

        .about-content .img-div h5 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            white-space: nowrap;
            color: #fff;
        }

        .about-content .img-div img {
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: 500ms ease;
        }

        .about-content .img-div:hover img {
            transform: scale(1.1);
        }
/*About-Section*/

/*carrier-section*/
.carrier-section h2.headline {
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    width: fit-content;
    margin-bottom: 2rem;
}

.carrier-section .card {
    padding: 2rem;
}

.slick-track {
    display: flex;
    column-gap: 0.75rem;
}
/*carrier-section*/

/*service-section*/
.service-section .card {
    border: 0;
    transition: 500ms ease;
    height: 100%;
    cursor: pointer;
    transition: 500ms ease;
    border-radius: 0.5rem;
}

    .service-section .card .img-div {
        margin-inline: auto;
        border-radius: 0.5rem 0.5rem 0 0;
        overflow: hidden;
        padding: 2rem;
        height: 300px;
    }

        .service-section .card .img-div img {
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

.service-section .card-content {
    padding: 1.5rem;
    background-color: #fff;
    /*background-color: var(--color-secondary);*/
    /*        color:#fff;*/
    border-bottom: 2px solid var(--color-secondary);
    /*position: relative;*/
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    margin-top: -3rem;
    transition: 500ms ease;
    height: calc(100% - 250px);
}


.service-section .card .card-content h4 {
    color: var(--color-secondary);
    /*color:#fff;*/
}

.service-section .card .card-content p {
    margin-bottom: 0;
    min-height: 175px;
}

.service-section .card .card-content .btn {
    position: absolute;
    right: 4rem;
    bottom: -1.2rem;
    background-color: #fff;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    padding-block: 0.35rem;
    transition: 500ms ease;
}

.service-section .card:hover .card-content {
    background-color: var(--color-secondary);
    color: #fff;
}

    .service-section .card:hover .card-content h4, .service-section .card:hover .card-content p {
        color: #fff;
    }




    .service-section .card:hover .card-content .btn {
        font-size: 1.2rem;
        right: 2rem;
        box-shadow: none;
        background-color: var(--color-secondary);
        border: 1px solid #fff;
        color: #fff;
    }
/*service-section*/



textarea.form-control {
    min-height: 100px;
}

.protectingDreams .col a {
    height: 100%;
}

.protectingDreams .card {
    height: 100%;
    border-radius: 0.5rem;
    text-align: center;
    color: var(--color-secondary);
    transition: 500ms ease;
}

    .protectingDreams .card:hover, .protectingDreams .card.active {
        background-color: var(--color-secondary);
        color: #fff;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    }

input[type="file"] {
    border: 0;
}

    input[type="file"]:focus {
        box-shadow: none;
    }

.protectingDreams .card .icon {
    width: 60px;
    margin-inline: auto;
    margin-bottom: 1rem;
}

    .protectingDreams .card .icon .icon-w {
        display: none;
    }

.protectingDreams .card:hover .icon .icon-w, .protectingDreams .card.active .icon .icon-w {
    display: block;
}

.protectingDreams .card:hover .icon .icon-b, .protectingDreams .card.active .icon .icon-b {
    display: none;
}

/*.protectingDreams .card h4, .protectingDreams .card .para {
        color: var(--color-secondary);
    }*/


.protectingDreams-forms {
    background-color: #fff;
    padding: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 1;
    width: 60%;
    margin-inline: auto;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

@media(max-width:1400px) {
    .protectingDreams-forms {
        width: 80%;
    }
}

@media(max-width:576px) {
    .protectingDreams-forms {
        width: 100%;
        box-shadow: none;
    }
}

.protectingDreams-forms .form-div {
    width: 100%;
    padding: 0;
}

.form-control, .form-select {
    height: 48px;
}

textarea.form-control {
    min-height: 100px;
}

input[type="file"] {
    border: 0;
}

    input[type="file"]:focus {
        box-shadow: none;
    }

.form-control:focus, .form-select :focus {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
    border-color: #000;
}
/*protectingDreams*/


/*review-section*/
.review-container {
    background: #000F89;
    background: linear-gradient(0deg,rgba(0, 15, 137, 1) 0%, rgba(43, 108, 181, 1) 100%);
    width: 100%;
    /*min-height: 500px;*/
    border-radius: 0.5rem;
}
/*
    .review-container .row-div {
        background: #000F89;
        background: linear-gradient(0deg,rgba(0, 15, 137, 1) 0%, rgba(43, 108, 181, 1) 100%);
    }

*/

.review-section {
    margin-top: 12rem;
}

.review-container .img-div {
    height: 700px;
    position: absolute;
    right: 1rem;
    bottom: 0;
}

    .review-container .img-div img {
        height: 100%;
        object-fit: cover;
    }

}

.review-card .rating-div {
    display: flex;
    align-items: center;
    column-gap: 0.25rem;
}

.review-slider {
    padding: 2.2rem;
    width: 650px;
}

    .review-slider h2.headline {
        color: #fff;
        border-bottom-color: #fff;
        margin-bottom: 0;
    }

.slick-slide {
    height: inherit;
}

    .slick-slide > div {
        height: 100%;
    }

.review-card {
    /*background-color: #fff;*/
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 300px;
    height: 100%;
    /*    border: 1px solid #ccc;*/
    transition: 500ms ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

/*.review-card:hover {
        border: 1px solid var(--color-primaryDark);
    }*/

.reviewer-name {
    margin-bottom: 1rem;
}

.review-card .rating-div {
    display: flex;
    align-items: center;
}

    .review-card .rating-div .icon {
        width: 20px;
    }

.btn-review {
    background-color: transparent;
    border: 1px solid #fff;
}

    .btn-review:hover {
        background-color: #fff;
        color: var(--color-primary);
    }

@media(max-width:1199px) {
    .review-wrapper .review-bg img {
        object-position: center;
    }
}

@media(max-width:767px) {
    .review-slider {
        width: 100%;
    }
}


/*review-section*/
/***** start of contact-us*****/
.contact-us .btn {
    background-color: var(--color-secondary);
    color: #fff;
    padding-inline: 3rem;
}

@media(max-width:1199px) {
    .contact-us .row-div {
        flex-direction: column-reverse;
    }

    .contact-us .btn {
        margin-top: 1rem;
    }
}

@media(max-width:991px) {
    .contact-us .btn {
        width: 100%;
    }
}

@media(max-width:767px) {
    .contact-content {
        flex-direction: column-reverse;
    }

    .contact-us .btn {
        width: 100%;
    }

    .contact-img {
        border-radius: 30px;
        overflow: hidden;
        height: 500px;
    }
}

@media(max-width:576px) {
    .contact-content {
        flex-direction: column-reverse;
    }

    .contact-img {
        height: 300px;
    }
}

/***** end of contact-us*****/

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background-color: var(--color-secondary);
    border-radius: 0.5rem;
    z-index: 99;
}

    .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
        color: #fff;
        background: var(--color-secondary);
    }
/***** end of contact-us*****/

/*capcha*/

.captchaField {
    border: 1px solid var(--darkGrey-color);
    /*padding: 15px;*/
    max-width: 400px;
    border-radius: 5px;
}

.CaptchaWrap {
    position: relative;
}

.CaptchaTxtField {
    border-radius: 5px;
    border: 1px solid #ccc;
    display: block;
    box-sizing: border-box;
}

#UserCaptchaCode {
    padding: 15px 10px;
    outline: none;
    font-size: 18px;
    width: 100%;
}

#CaptchaImageCode {
    position: relative;
    text-align: center;
    margin-top: 15px;
    padding: 0px 0;
    width: calc(100% - 42px);
    overflow: hidden;
}

.capcode {
    font-size: 46px;
    display: block;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    letter-spacing: 1px;
    color: #ccc;
    font-family: 'Roboto Slab', serif;
    font-weight: 100;
    font-style: italic;
    width: 100%;
}

.ReloadBtn {
    width: 42px;
    height: 42px;
    border: 0px;
    background: var(--primary-color);
    padding: 8px;
    border: solid 1px var(--primary-color);
}

    .ReloadBtn img {
        width: 100%;
        transition: 0.5s ease;
    }

    .ReloadBtn:hover img {
        transform: rotate(180deg);
    }

.btnSubmit {
    margin-top: 15px;
    border: 0px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.captchaField .error {
    color: red;
    font-size: 12px;
    /*  display: none;*/
}

.captchaField .success {
    color: green;
    font-size: 18px;
    margin-bottom: 15px;
    display: none;
}

/*endcapcha*/

/*Join-us Page*/
.joinUs-bg {
    background-color: var(--color-primary);
    padding-block: 4rem;
}

.joinUs-Container {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    margin-top: -3rem;
}

.continue-form {
    display: none;
}

    .continue-form.show {
        display: block;
    }

    .continue-form input[type="email"] {
        width: 50%;
    }

@media(max-width:991px) {
    .continue-form input[type="email"] {
        width: 100%;
    }
}
/*Join-us Page*/

/****** location-page ******/
.location-page .social-icons {
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
}

    .location-page .social-icons a {
        display: inline-block;
        background-color: var(--color-primary);
        width: 32px;
        height: 34px;
        padding: 0.25rem;
    }
/****** location-page ******/

.btn-independantAgency {
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    width: fit-content;
    margin-top: 1rem;
}

/*welcome-section*/

.welcome-section .row-div .card {
    padding: 2rem;
    background-color: var(--color-secondary);
    color: #fff;
    text-align: center;
    height: 100%;
    overflow: hidden;
}

@media(max-width:991px) {
    .welcome-section .welcome-rowDiv {
        flex-direction: column-reverse;
    }
}
/*welcome-section*/
/*biography*/
.biographyDiv {
    background-color: var(--color-bgLight);
    padding: 2rem;
}

    .biographyDiv .flex-div {
        align-items: flex-start;
        column-gap: 2rem;
    }

@media(max-width:991px) {
    .biographyDiv .flex-div {
        flex-direction: column;
        row-gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

        .biographyDiv .flex-div.flex-div2 {
            flex-direction: column-reverse;
        }
}

.biography .img-div {
    width: 200px;
}

/*biography*/

/*externalServices*/
.externalServices .flex-div {
    justify-content: center;
    column-gap: 1.5rem;
    align-items: stretch;
}
    

    @media(max-width:768px) {
        .externalServices .flex-div {
        flex-direction:column;
        row-gap:1rem;
    }
            .externalServices .flex-div a {
                margin-inline: auto;
            }
}

.externalServices .flex-div .card {
    border: 0;
    width:fit-content;
    height: 100%;
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

    .externalServices .flex-div .card h5 {
        text-align: center;
        color: var(--color-primaryDark);
        /*border-top:1px solid #ccc;*/
    }

.externalServices .img-div {
    width: 350px;
    height: 100%;
}

    .externalServices .img-div img {
        height: 100%;
    }
/*externalServices*/
/****** Card-css & animation ******/
.member-card {
    position: relative;
    height: 230px;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img {
    height: 100%;
    width: 100%;
}

    .card-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.member-name {
    color: #fff;
    border-radius: 0 100px 0 0;
    padding: 0.5rem;
    font-size: 1.2rem;
    transition: 200ms ease;
    z-index: 9;
}

    .member-name h6 {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

/*.hiddenCard-container {
    background-color: var(--color-grey);
}*/
.hiddenCard-div {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translate(-50%);
    height: 100%;
    width: 100%;
    background-color: var(--color-greyLight);
    padding: 0.35rem 0.75rem;
    color: #000;
    text-align: center;
    transition: 400ms ease;
    transform-origin: bottom;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.member-card:hover .member-name {
    opacity: 0;
}

p.member-desc {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.member-card:hover .hiddenCard-div {
    bottom: 0%;
}

/***** End of Card-css & animation ******/


/*.getQuotesPage*/

.getQuotesPage .products .productsFormContainer {
    background-color: #fff;
    padding: 2rem;
    margin-top: -5rem;
    position: relative;
    z-index: 1;
}

.getQuotesPage .products .card {
    padding: 2rem;
    transition: 500ms ease;
    cursor: pointer;
}

    .getQuotesPage .products .card:hover, .getQuotesPage .products .card.active {
        background-color: var(--color-secondaryMedium);
    }

    .getQuotesPage .products .card .img-div {
        width: 50px;
        margin-inline: auto;
    }

.digicert-logo {
    width: 150px;
    margin-inline: auto;
}

.getQuotesPage .products h4 {
    color: var(--color-secondary);
    font-size: 1.8rem;
}

.stepper {
    text-align: unset;
}

    .stepper .btn {
        width: fit-content;
    }

        .stepper .btn.prev {
            background-color: var(--color-greyLight);
            color: #000;
            border: 0;
        }

.hide {
    display: none;
}

.show {
    display: block;
}

.btn-add {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

    .btn-add:hover {
        color: #000;
    }

    .btn-add .icon-white {
        display: none;
    }

/*.getQuotesPage*/

/*about-whyChoose*/

.about-whyChoose h2.headline {
    margin-inline: auto;
    margin-bottom: 2rem;
}

.about-whyChoose .card {
    padding: 1.5rem;
    height: 100%;
    background-color: var(--color-secondary);
    color: #fff;
    text-align: center;
    transition: 500ms ease;
}

    .about-whyChoose .card .img-div {
        width: 75px;
        background-color: #fff;
        border-radius: 50%;
        margin-inline: auto;
        margin-bottom: 1rem;
        padding: 0.5rem;
    }

    .about-whyChoose .card:hover {
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-7px);
    }

.our-mission .btn-letGetStarted {
    background-color: #fff;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    border: 1px solid var(--color-secondary);
    width: fit-content;
    border-radius: 0;
    padding: 0.35rem 1rem;
    margin-bottom: 1rem;
}

/*about-whyChoose*/

/*whatWeCare*/
.whatWeCare a {
    height: 100%;
}

.whatWeCare .card {
    border: 1px solid var(--color-secondary);
    padding: 1.5rem;
    height: 100%;
    transition: 500ms ease;
}

    .whatWeCare .card h5 {
        color: var(--color-secondary);
        font-size: 1.5rem;
    }

    .whatWeCare .card:hover h5 {
        color: #fff;
    }

    .whatWeCare .card:hover {
        background-color: var(--color-secondary);
        color: #fff;
    }


/*whatWeCare*/
.personalInsurance ul {
    padding-left: 2rem;
    list-style: disc;
}

/*vsi-card*/

.vsi-card {
    background-color: var(--color-greyLight);
}

    .vsi-card .vsi-logo {
        width: 300px;
        margin-inline: auto;
        margin-bottom: 1rem;
    }

    .vsi-card .card {
        padding: 2rem;
        width: 60%;
        margin-inline: auto;
    }

        .vsi-card .card .flex-div {
            align-items: flex-start;
            justify-content: space-between;
        }

@media(max-width:1400px) {
    .vsi-card .card {
        width: 80%;
    }
}

@media(max-width:991px) {
    .vsi-card .card {
        width: 100%;
        text-align: center;
    }

        .vsi-card .card .flex-div {
            text-align: left;
        }
}

@media(max-width:767px) {
    .vsi-card .card .flex-div {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}
/*vsi-card*/

/*nadiya-card*/

.nadiya-card {
    background-color: var(--color-greyLight);
}

    .nadiya-card .card {
        padding: 2rem;
    }

        .nadiya-card .card .card-content h2 {
            color: var(--color-primaryDark);
        }

    .nadiya-card .person-img {
        width: 200px;
    }
/*nadiya-card*/

.mail-icon {
    width: 20px;
}
