@import '../../node_modules/bootstrap/dist/css/bootstrap.min.css';
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');




/* Generic Starts */
::-moz-selection {
    background-color: #005ba5 !important;
    color: white;
}

::selection {
    background-color: #005ba5 !important;
    color: white;
}


html {
    font-size: 16px;
    scroll-behavior: smooth !important;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px white;
    box-shadow: inset 0 0 6px white;
}

body::-webkit-scrollbar-thumb {
    background-color: #005ba5 !important;
    outline: 1px solid #005ba5 !important;
}

.service-box::-webkit-scrollbar {
    width: 6px;
}

.service-box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px white;
    box-shadow: inset 0 0 6px white;
}

.service-box::-webkit-scrollbar-thumb {
    background-color: #005ba5 !important;
    outline: 1px solid #005ba5 !important;
}


h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

a:hover {
    text-decoration: none;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.font-600 {
    font-weight: 600;
}

.font-800 {
    font-weight: 800;
}

.font-900 {
    font-weight: 900;
}

.section {
    padding: 50px 0px;
}

.image-red {
    filter: invert(20%) sepia(83%) saturate(2754%) hue-rotate(340deg) brightness(88%) contrast(92%);
    -webkit-filter: invert(20%) sepia(83%) saturate(2754%) hue-rotate(340deg) brightness(88%) contrast(92%);
}

.image-white {
    filter: invert(89%) sepia(90%) saturate(1%) hue-rotate(182deg) brightness(111%) contrast(97%);
    -webkit-filter: invert(89%) sepia(90%) saturate(1%) hue-rotate(182deg) brightness(111%) contrast(97%);
}

.bg-blue {
    background-color: #005ba5 !important;
}

.bg-fade-blue {
    background-color: #74c1ff75 !important;
}

.bg-fade-red {
    background-color: #f4d3d659 !important;
}

.bg-red {
    background-color: #c92333 !important;
}

.bg-gray {
    background-color: #80808017 !important;
}

.text-blue {
    color: #005ba5 !important;
}

.text-red {
    color: #c92333 !important;
}

.btn {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn-red {
    background-color: #c92333;
    border: none;
    color: white;
    font-weight: 600;
}

.btn-red:hover {
    background-color: #c92333;
    border: none;
    color: white;
    font-weight: 600;
}


.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: white;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-blue {
    background-color: #005ba5;
    border-color: #005ba5;
    color: white;
    font-weight: 600;
}

.btn-blue:hover {
    background-color: #005ba5;
    border-color: #005ba5;
    color: white;
    font-weight: 600;
}


.form-control {
    border: 0px;
    border-bottom: 1px solid gray;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.border-radius-6 {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

/* Generic Starts */



/* Navbar Starts */
.btn-header {
    color: #c92333;
    font-weight: 600;
}

.nav-link {
    font-weight: 600;
    color: #005ba5 !important;
}

.nav-link:hover {
    position: relative;
    transition: 0.6s linear;
    -webkit-transition: 0.6s linear;
    -moz-transition: 0.6s linear;
    -ms-transition: 0.6s linear;
    -o-transition: 0.6s linear;
}

.nav-link:hover::after {
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: #c92333;
    transition: 0.6s linear;
    -webkit-transition: 0.6s linear;
    -moz-transition: 0.6s linear;
    -ms-transition: 0.6s linear;
    -o-transition: 0.6s linear;
}

.nav-link:hover::before {
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: #005ba5;
    transition: 0.6s linear;
    -webkit-transition: 0.6s linear;
    -moz-transition: 0.6s linear;
    -ms-transition: 0.6s linear;
    -o-transition: 0.6s linear;
}

.social-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.social-links li a {
    filter: invert(1);
    -webkit-filter: invert(1);
    margin-right: 10px;
}

/* Navbar Ends */



.location-box img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.location-content h6 {
    font-size: 14px;
    min-height: 34px;
}



.custom-accordion-item {
    border: 1px solid #74c1ff75;
    margin-bottom: 10px;
    border-radius: 6px;
    color: #005ba5;
}

.custom-accordion-item-header {
    padding: 10px;
    background-color: #74c1ff75;
    cursor: pointer;
    position: relative;
}

.custom-accordion-item-content {
    display: none;
    padding: 10px;
}

.custom-accordion-item-header::after {
    content: '+';
    position: absolute;
    right: 10px;
}

.custom-accordion-item.open .custom-accordion-item-header::after {
    content: '-';
}

.footer-link-list {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.footer-link-list li {
    margin-bottom: 8px;
}

.footer-link-list li a {
    color: white;
}


button:focus {
    outline: 0;
    box-shadow: none;
}

.box-red {
    overflow: hidden;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #c92333;
}

.why-content {
    max-height: 381px;
    overflow-y: scroll;
}

.category-box img {
    width: auto !important;
    height: 80px;
    margin: 0 auto;
}

.diamond-design-1 {
    background-image: url('../images/service-bg.jpg');
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ffffffa1;
    background-blend-mode: overlay;
}

.diamond-design-2 {
    background-image: url('../images/service-bg-2.jpg');
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ffffffa1;
    background-blend-mode: overlay;
}

.sky-blue-bg {
    background-image: url('../images/sky-blue-bg.jpg');
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ffffffa1;
    background-blend-mode: overlay;
}

.feature-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

#testimonial-section {
    background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
}

.overview-shadow {
    box-shadow: 0 .5rem 1rem rgb(241 12 12 / 15%) !important;
}

#banner-section {
    border-bottom: 8px solid #005ba5;
}

#overview-section {
    border-top: 8px solid #c92333;
}

.bg-gradient-animated {
    background: linear-gradient(120deg, #ffc4c9, #0469bb88, #ffc4c9);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.service-box {
    max-height: 480px;
    overflow-y: scroll;
}