/* Main CSS
***********************************************/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
    font-weight: 500;
}

p,
a,
span {
    font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

p {
    font-size: 16px;
}

.size_18 {
    font-size: 22px;
}

body {
    background: #FFF;
    padding-top: 220px;
    transition: all 0.5s ease-in-out 0s;
}


.common {
    padding: 80px 0;
}

.breadcrumbs ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.breadcrumbs ul li {
    display: inline;
}

.blog-post-tags ul,
.blog-item-tags ul,
.blog-feature-tags ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.blog-post-tags ul li,
.blog-item-tags ul li,
.blog-feature-tags ul li {
    display: inline;
}

.animate {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.vertical_center {
    display: table;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    position: relative;
    text-align: center;
    vertical-align: middle;
}

/*video responsive*/

.video {
    position: relative;
    width: 100%;
}

.video_iframe {
    overflow: hidden;
    padding-top: 56%;
}

.video iframe {
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
}


/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/*-------- header ---------*/

.top-header {
    background: #efefef;
}

.logo {
    max-height: 120px;
}

.tagline-box {
    background: linear-gradient(90deg, #0d4f86, #e31b23);
    padding: 18px 30px;
}

.tagline-box h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-right a {
    text-decoration: none;
}

.header-right i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.facebook i {
    background: #1877f2;
}

.instagram i {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.phone i {
    background: #d62d20;
}

.phone-number {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-number span {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.fixed-top {
    transition: all 0.5s ease-in-out 0s;

}

.mobile_shrinking {
    transition: all 0.5s ease-in-out 0s;
    top: -150px;
}

@media (max-width:991px) {

    .tagline-box h2 {
        font-size: 24px;
    }

    .header-right {
        margin-top: 20px;
    }

}

.custom-navbar {
    background: #085186;
    min-height: 54px;
}

.custom-navbar .navbar-nav {
    gap: 10px;
}

.custom-navbar .nav-link {
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 10px !important;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #ffd700 !important;
}

.custom-navbar .dropdown-toggle::after {
    font-size: 12px;
    vertical-align: middle;
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

/* Mobile Logo */
.mobile-logo img {
    height: 60px;
    width: auto;
}

/* Toggler */
.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile View */
@media (max-width:991.98px) {

    /* Desktop Header Hide */
    .top-header {
        display: none;
    }

    .custom-navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #085186;
        z-index: 9999;
        padding: 10px 20px;
    }

    .custom-navbar .navbar-nav {
        gap: 0;
    }

    .custom-navbar .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .dropdown-menu {
        background: #c9171d;
        border: none;
        box-shadow: none;
    }

    .dropdown-item {
        color: #fff;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, .1);
        color: #fff;
    }

    .custom-navbar {
        background: #eeeeee;
        padding: 0;
    }

}

/*-----slider -----*/

.slider {
    background: #eeeeee;
    border-bottom: 30px solid #095a99;
}



.nav-pills .nav-link {
    background: #0c4f88;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    min-width: 180px;
}

.nav-pills .nav-link.active {
    background: #ef2029;
}

.insurance-card {
    position: relative;
    background: #eef3f5;
    border: 2px solid #0c4f88;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.insurance-card img {
    object-fit: contain;
}

.insurance-card span {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef2029;
    color: #fff;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
}

/* Card */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .4s;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card span {
    position: absolute;
    left: 20px;
    bottom: 15px;
    color: #f8e8c5;
    font-size: 38px;
    font-family: "Times New Roman", serif;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}

.testimonial-section {
    background: #efefef;
}

.section-title {
    position: relative;
}

.section-title h2 {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: #0b4d84;
    position: relative;
    background: #efefef;
    padding: 0 20px;
}

.section-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0b4d84;
    z-index: 0;
}

.section-title h2 {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.testimonial-card h6 {
    color: #e51c23;
    font-weight: 700;
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    transition: .3s;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
}


.privacy-section {
    background: #fff;
}

.privacy-content {
    width: 100%;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
}

.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content ul li {
    margin-bottom: 8px;
    color: #555;
}

.privacy-content h4 {
    color: #222;
    margin-bottom: 12px;
}

.terms-section {
    background: #fff;
}

.terms-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-content ul li {
    margin-bottom: 8px;
    color: #555;
}

.terms-content h4 {
    color: #222;
    margin-bottom: 12px;
}








/*----------- contact ---------------*/


.contact_us input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: "Gotham A", "Gotham B";
}

.contact_us textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: "Gotham A", "Gotham B";
}

.submit_button {
    background: #004a67;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    border: none !important;
    margin-bottom: 40px;
    font-size: 16px !important;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.submit_button:hover {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background: #00425c;
}


.card{
    border-radius:0;
}

.form-control{
    height:50px;
    border-radius:0;
    background:#f3f3f3;
    border:1px solid #ddd;
}

textarea.form-control{
    height:auto;
}

.btn-danger{
    background:#e7222a;
    border:none;
    min-width:180px;
}

.btn-danger:hover{
    background:#c91c23;
}

h2,h3{
    font-weight:500;
}

label{
    color:#555;
}


/*----------- footer ---------------*/
.footer-top {
    background: #e31b23;
}

.footer-top .nav-link {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0;
}

.footer-top .nav-link:hover {
    color: #ffd200;
}

.footer-middle {
    background: #0d4f86;
    color: #fff;
}

.footer-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-phone span {
    font-size: 22px;
    font-weight: 700;
}

.footer-phone .bi-telephone-fill {
    font-size: 26px;
}

.social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.fb {
    background: #1877f2;
}

.insta {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.address {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}

.footer-bottom {
    background: #0d4f86;
    color: #fff;
    border-top: 3px solid #fff;
    font-size: 18px;
    font-weight: 700;
}

.footer-middle a {
    text-decoration: none;
}



/*===========================================*/
/*------------- Media Queries ---------------*/
/*===========================================*/

/* up to 1200px width
********************************/
@media (max-width: 1200px) {}


/* up to 1100px width
********************************/
@media (max-width: 1100px) {}


/* up to 1000px width
********************************/
@media (max-width: 1000px) {}


/* within 979px to 768px width
********************************/
@media (min-width: 768px) and (max-width: 979px) {}


/* less than 979px width
********************************/
@media (max-width: 979px) {}

@media(max-width:767px) {
    .insurance-card {
        height: 160px;
    }

    .insurance-card span {
        font-size: 14px;
    }

    .mobile_shrinking {
        transition: all 0.5s ease-in-out 0s;
        top: 0px;
    }

    body {
        padding-top: 70px;
    }
}



/* less than 767px width
********************************/
@media (max-width: 770px) {

    body {
        padding-left: 0;
        padding-right: 0;
    }


}


/* less than 640px width
********************************/
@media (max-width: 640px) {}


/* less than 570px width for iphone 5
********************************/
@media (max-width: 570px) {}



/* less than 480px width
********************************/
@media (max-width: 480px) {}


/* less than 420px width
********************************/
@media (max-width: 400px) {}