@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*:focus,
*:focus-visible {
    outline: none;
}

:root {

    --transition-05s: all ease-in-out 0.5s;

    --font-rethink: "Rethink Sans", sans-serif;

    --main-color: #bb1c21;
    /* rgb(0, 174, 239, 1); */
    --black-color: 0, 0, 0;
    /* rgb(0, 0, 0); */
    --white-color: 255, 255, 255;
    /* rgb(255, 255, 255); */

}

body {
    font-family: "Instrument Sans", sans-serif;
    overflow-x: hidden;
}

ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.row {
    gap: 24px 0px;
}

/*<======================= Common Css ===============>*/
.common-section {
    padding: 80px 0px;
}

.common-head {
    text-align: center;
    width: 50%;
    margin: auto;
    margin-bottom: 40px;
}

.common-head h3 {
    color: #13181f;
    font-size: 38px;
    font-weight: 600;
    text-transform: capitalize;
}

.common-head p {
    color: #54585a;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 28px;
}

.common-btn {
    background-color: var(--main-color);
    border-radius: 10px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-05s);
    color: rgba(var(--white-color), 1);
    position: relative;
    border: none;
    transform: scale(1);
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    /* IMPORTANT for shutter effect */
    z-index: 1;
}

/* Shutter layer */
.common-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0b4870;
    /* hover color */
    transform: scaleY(0);
    /* hidden initially */
    transform-origin: top;
    /* start from top */
    transition: transform 0.4s ease;
    z-index: -1;
}

/* Hover effect */
.common-btn:hover::before {
    transform: scaleY(1);
    /* shutter down */
}

/* Optional scale effect */
.common-btn:hover {
    transform: scale(1.1);
    color: rgba(var(--white-color), 1);
}



/************************************ Header Section **************************************/
header {
    width: 100%;
    height: max-content;
    z-index: 10;
    background: rgba(var(--white-color), 1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 15px 0px;
    /* box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.75); */
}

.navbar.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.95);
    /* background: rgba(14, 13, 14, 0.8); */
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 90px;
}

.header-fixed .navbar-brand {
    width: 50px;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* .navbar-nav .nav-item a {
    font-weight: 700;
    font-size: 16px;
    color: #082465;
    text-transform: capitalize;
} */

.navbar-nav .nav-item a {
    font-weight: 700;
    font-size: 16px;
    color: #082465;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item a img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item .active {
    color: var(--main-color);
}

.navbar-toggler-icon {
    filter: invert(0);
    border-color: #fff;
}





/******************************************* Banner Section ***********************************/
.banner-section {
    position: relative;
    min-height: 100vh;
    height: 100%;
    background-color: #0d293f;
    box-shadow: inset 0 100px 0 #fff;
    padding-bottom: 120px;

}

.bnr-left-img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 70%;
    height: 800px;
    border-radius: 0px 48px 48px 0px;
    overflow: hidden;
}

.bnr-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bnr-right-img {
    position: absolute;
    right: 0px;
    top: 50px;
    width: 35%;
    height: 550px;
    border-radius: 48px 0px 0px 48px;
    overflow: hidden;
    z-index: 1;
    /* box-shadow: 49px 31px 52px 0px rgba(12, 33, 49, 1); */
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    min-height: 95vh;
    height: 100%;
    padding-right: 200px;
    padding-left: 60px;
    position: relative;
}

.bnr-shadow {
    position: absolute;
    right: 4px;
    bottom: 100px;
}

.bnr-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-img-box {
    position: relative;

}

.banner-img-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.banner-img-outer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: rotateBanner 12s linear infinite;
}

.banner-img-outer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes rotateBanner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.banner-text {
    width: 40%;
}

.banner-text h3 {
    font-family: var(--font-rethink);
    color: #fff;
    font-size: 82px;
    font-weight: 800;
    line-height: 86px;
}

.banner-text p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

/************************** About Us Section ********************************/
.abt-section {
    position: relative;
    min-height: 85vh;
    height: 100%;
}

.abt-right-img {
    position: absolute;
    top: -60px;
    right: 0;
    height: 650px;
    width: 45%;
    border-radius: 30px;
    overflow: hidden;
}

.abt-right-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.abt-left-img {
    position: absolute;
    bottom: 60px;
    left: 0;
    height: 400px;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
    z-index: 1;
}

.abt-left-img img {
    height: 100%;
    object-fit: cover;
}

.abt-leftBg-img {
    position: absolute;
    top: 80px;
    left: 0;
}

.abt-leftBg-img img {
    height: 100%;
    object-fit: cover;
}

.abt-raser-img {
    position: absolute;
    bottom: 0;
    right: 400px;
    height: 120px;
}

.abt-raser-img img {
    height: 100%;
    object-fit: contain;
}

.abt-content {
    width: 60%;
    padding: 100px 0 0 380px;
    position: relative;
    z-index: 1;
}

.abt-content span {
    font-size: 18px;
    font-weight: 600;
    color: #002c4e;
}

.abt-content h3 {
    font-family: var(--font-rethink);
    font-size: 56px;
    line-height: 52px;
    font-weight: 800;
    color: #002c4e;
    margin: 20px 0px;
}

.abt-content p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #474747;
    margin: 20px 0px;
    width: 90%;
}

.abt-content .common-btn {
    width: fit-content;
}

/*************************** Service Section *******************************/
.service-section {
    position: relative;
    background: var(--main-color) no-repeat center center / cover;
}

.service-head {
    width: 50%;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}

.service-head span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.service-head h3 {
    font-family: var(--font-rethink);
    color: #fff;
    font-size: 56px;
    line-height: 52px;
    font-weight: 800;
    margin-top: 20px;
}

.service-box {
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    display: inline-block;
    transition: var(--transition-05s);
}

.service-box:hover {
    background: #960409;
}

.service-img {
    height: 380px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.service-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h5 {
    font-family: var(--font-rethink);
    font-size: 24px;
    line-height: 32px;
    font-weight: 800;
    color: #2d2d2d;
}

.service-content p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #333333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-box:hover .service-content h5,
.service-box:hover .service-content p {
    color: #fff;
}

.service-content .service-btn {
    --ehw-btn: 50px;
    width: var(--ehw-btn);
    height: var(--ehw-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2d2d2d;
    background: transparent !important;
    border: 1px solid rgba(45, 45, 45, 0.3);
    transform: rotate(-45deg);
    transition: var(--transition-05s);
}

.service-box:hover .service-content .service-btn {
    background: #fff !important;
    transform: rotate(0deg);
}

.service-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.service-btn-box .service-btn {
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background: transparent;
    padding: 10px 25px;
    border-radius: 12px;
}

.service-slider.owl-carousel {
    position: relative;
}

.service-slider.owl-carousel .owl-nav .owl-prev,
.service-slider.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #002c4e;
    color: #fff;
    font-size: 16px;
}

.service-slider.owl-carousel .owl-nav .owl-prev {
    left: -15px;
}

.service-slider.owl-carousel .owl-nav .owl-next {
    right: -15px;
}

/***************************** Testimonial Section ********************************/
.testi-section {
    position: relative;
}

.testi-left-side-img {
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 400px;
}

.testi-left-side-img img {
    height: 100%;
    object-fit: contain;
}

.testi-right-side-img {
    position: absolute;
    right: 0;
    bottom: 20px;
    height: 500px;
    /* transform: rotate(-180deg); */
}

.testi-right-side-img img {
    height: 100%;
    object-fit: contain;
}

.testi-content-head {
    margin-bottom: 40px;
}

.testi-content-head span {
    font-size: 18px;
    font-weight: 600;
    color: #002c4e;
}

.testi-content-head h3 {
    font-family: var(--font-rethink);
    font-size: 56px;
    line-height: 52px;
    font-weight: 800;
    color: #002c4e;
    margin-top: 20px;
}

.testi-box {
    background: #f6f6f6;
    border-radius: 30px;
    padding: 30px 20px;
    max-height: 350px;
    height: 100%;
    overflow: auto;
}

.testi-box .testi-review {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testi-box .testi-review i {
    font-size: 18px;
    color: #ff9b06;
}

.testi-box>p {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #474747;
    margin: 30px 0px;
}

.testi-prof {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-prof-img {
    --ehw-img: 60px;
    height: var(--ehw-img);
    width: var(--ehw-img);
    border-radius: 50%;
    overflow: hidden;
}

.testi-prof-name h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #474747;
    margin-bottom: 0;
}

.testi-prof-name p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #656464;
    margin-bottom: 0;
}

.testi-prof-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-img {
    height: 650px;
    margin-bottom: -80px;
    margin-right: -100px;
    position: relative;
    z-index: 1;
}

.testi-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testi-slider.owl-carousel {
    position: relative;
}

.testi-slider.owl-carousel .owl-nav {
    position: absolute;
    left: 0;
    bottom: -80px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-slider.owl-carousel .owl-nav .owl-prev,
.testi-slider.owl-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #002c4e;
    color: #fff;
    font-size: 16px;
}

/*************************** About Us Page Section *******************************/
.inr-banner-section {
    min-height: 50vh;
    height: 100%;
    width: 92%;
    margin: auto;
    border-radius: 30px;
    /* position: relative; */
}

.inr-banner-text {
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 36, 101, 0.2);
    /* width: fit-content; */
}

.inr-banner-text p {
    font-family: var(--font-rethink);
    font-size: 56px;
    line-height: 52px;
    font-weight: 800;
    color: #fff;
}

.abt-section.inr-abt>.abt-left-img {
    bottom: 150px !important;
}

/***************************************** Contact Us Page *******************************/
.contact-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    gap: 20px;
    min-height: 150px;
    padding: 20px;
    transition: var(--transition-05s);
    /* padding: 60px 20px; */
}

.contact-card:hover {
    background: var(--main-color);
    color: rgba(var(--white-color), 1);
}

.contact-card:hover i {
    color: rgba(var(--white-color), 1);
}

.contact-card i {
    --ehw-bg: 50px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    font-size: 25px;
    background: var(--main-color);
    color: rgba(var(--white-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.contact-name {
    width: 70%;
}

.contact-card .contact-name h4 {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.contact-card .contact-name p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}

.iframe-box {
    width: 100%;
    height: 580px;
    border: 1px solid rgba(var(--second-color), 1);
    padding: 5px;
    border-radius: 20px;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.contact-form-head {
    text-align: center;
    padding: 20px 0px;
}

.contact-form-head h3 {
    font-size: 54px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form-head p {
    font-size: 24px;
    font-weight: 400;
}

.contact-form {
    /* box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.75); */
    border: 1px solid #D1D1D1;
    padding: 20px;
    border-radius: 20px;
}

.form-contact-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-contact-box input::placeholder,
.form-contact-box textarea::placeholder {
    font-weight: 400;
}

.form-contact-box input:focus,
.form-contact-box textarea:focus {
    box-shadow: none !important;
}

.form-contact-box label {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-rethink);
}

.form-contact-box select {
    width: 100%;
    height: 40px;
    padding: 10px 14px;
    border: 1px solid #D1D1D1;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    background-color: #fff;
    outline: none;

    /* Remove default browser arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Custom arrow spacing */
    padding-right: 40px;
}

.form-contact-box {
    position: relative;
}

.form-contact-box select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}

.form-contact-box select:focus {
    border-color: #86b7fe;
    box-shadow: none;
}

.form-contact-box select option[disabled] {
    color: #aaa;
}

.form-contact-box button {
    width: 100%;
}

.service-inr-section .service-head span {
    font-size: 18px;
    font-weight: 600;
    color: #002c4e;
}

.service-inr-section .service-head h3 {
    font-family: var(--font-rethink);
    font-size: 56px;
    line-height: 52px;
    font-weight: 800;
    color: #002c4e;
    margin-top: 20px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
}

/* .service-row:nth-child(odd)  */

/* Layout switch (dynamic) */
.service-row[data-layout="reverse"] {
    direction: rtl;
}

.service-row[data-layout="reverse"]>* {
    direction: ltr;
}

/* Column base */
.service-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-col .common-btn {
    width: fit-content;
}

/* Offer section */
.service-col[data-type="offer"] {
    background: #f5f5f5;
}

/* Content section */
.service-col[data-type="content"] {
    background: #002c4e;
    color: #fff;
}

/* Image */
.service-image {
    padding: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography */
.service-col h3 {
    font-size: 28px;
    font-weight: 700;
}

.service-col h4 {
    font-size: 24px;
    font-weight: 700;
}

.service-col h5 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-col p {
    font-size: 15px;
    line-height: 1.7;
}

/* Offer list */
.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.offer-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2ecc71;
}

/* Button */
.btn-dark {
    background: #111;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    width: fit-content;
}

/* Modal wrapper */
.estimate-modal .modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: none;
}

/* Header */
.estimate-header {
    background: var(--main-color);
    color: #fff;
    padding: 18px 25px;
}

.estimate-header .modal-title {
    font-size: 20px;
    font-weight: 700;
}

.estimate-header .btn-close {
    filter: invert(1);
    opacity: 1;
}

/* Body */
.estimate-body {
    padding: 15px;
}

/* Labels */
.estimate-body label {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 6px;
}

/* Inputs */
.estimate-input {
    /* height: 50px; */
    border-radius: 5px;
    border: 1px solid #dcdfe3;
    padding: 10px !important;
    font-size: 14px;
    box-shadow: none !important;
}

.estimate-input:focus {
    border-color: #09a9e6;
}

/* Select custom arrow */
.estimate-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2309a9e6' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

/* Footer button */
.estimate-footer {
    display: flex;
    /* justify-content: flex-end; */
    margin-top: 30px;
}

.btn-next {
    background: #3bb5eb;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.btn-next:hover {
    background: #2ca6dc;
}

/******************************** Footer Section *********************************************/
.footer-section {
    background: #002c4e;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-top-left p {
    color: #fff;
    margin-bottom: 0;
    font-size: 48px;
    line-height: 46px;
    font-weight: 800;
    width: 62%;
}

.footer-top-right {
    width: 50%;
}

.footer-top-right form {
    width: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.footer-top-right form input {
    width: 70%;
    background: transparent;
    border: 1px solid transparent;
    padding: 10px;
}

.footer-top-right form button {
    width: 30%;
    background: transparent;
    border: 1px solid transparent;
    background: var(--main-color);
    padding: 10px;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.footer-lwr {
    padding: 40px 0px 0px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    width: 100%;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-social,
.footer-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.footer-social {
    align-items: flex-end;
}

.footer-list {
    align-items: flex-start;
}

.footer-social li a,
.footer-list li a {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    transition: var(--transition-05s);
}

.footer-social li a:hover,
.footer-list li a:hover {
    color: var(--main-color);
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
}

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    transition: var(--transition-05s);
}

.footer-contact li a:hover {
    color: var(--main-color);
}

.footer-copyright {
    padding: 20px 0px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-copyright p {
    color: #dedede;
    margin-bottom: 0px;
    font-size: 15px;
}



/* Pagination Style */
a.page-numbers {
    padding: 5px 10px !important;
    border: 1px solid #bb1c21 !important;
    color: #000;
}
span.page-numbers.current {
    display: inline-block;
    border: 1px solid #bb1c21;
    padding: 5px 15px;
    background: #bb1c21;
    color: #fff;
    font-weight: 600;
}
.pagination-inner {
    display: block;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.navbar-nav .nav-item a[aria-current="page"] {
    color: #bb1c21;
}

/* 404 Page css  */

.common-section404 {
  padding: 40px 0px;
  position: relative;
  overflow: hidden;
}
.section-404 {
  text-align: center;
}
.section-404 .error {
  font-size: 150px;
  color: #ca432c;
  text-shadow: 1px 1px 1px #ca432c, 2px 2px 1px #ca432c, 3px 3px 1px #ca432c, 4px 4px 1px #ca432c, 5px 5px 1px #ca432c, 6px 6px 1px #ca432c, 7px 7px 1px #ca432c, 8px 8px 1px #ca432c, 25px 25px 8px rgba(0,0,0, 0.1);
}
.section-404 .page {
  margin: 2rem 0;
  font-size: 20px;
  font-weight: 600;
  color: #444;
}


.error404 .common-btn{
    display: inline-block;
}

/********************************************** Media query ***********************************/

/********************* Min width Section *****************************/

/* @media (min-width: 992px) {
    .dropdown-menu {
      display: grid;
      opacity: 0;
      visibility: hidden;
    }
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show {
      opacity: 1;
      visibility: visible;
    }
}
@media (min-width: 1200px){
	.nav-item.dropdown .dropdown-menu[data-bs-popper] {
		top: 100%;
	}
}
 */

@media (min-width: 1400px) and (max-width: 1500px) {
    .banner-text {
        width: 60%;
    }

    .banner-content {
        min-height: 100vh;
        padding-right: 20px;
    }

    .abt-right-img {
        height: 500px;
        width: 40%;
    }

    .abt-content {
        width: 65%;
        padding: 0px 0 0 360px;
    }

    .abt-left-img {
        height: 360px;
    }

    .service-head {
        width: 60%;
    }

    .service-content {
        padding: 10px;
    }

    .testi-content-head {
        margin-bottom: 20px;
    }

    .testi-content-head h3 {
        font-size: 48px;
    }
}

@media (min-width: 1500px) {}

@media (min-width: 1540px) {
    .container {
        max-width: 1500px;
    }

    /* .banner-content {
        min-height: 100vh;
        padding-right: 40px;
    }

    .bnr-shadow {
        width: 35%;
    } */
}

@media (min-width: 1640px) {
    .container {
        max-width: 1600px;
    }

    /* .banner-content {
        min-height: 100vh;
        padding-right: 120px;
    } */
}

@media (min-width: 1740px) {
    .container {
        max-width: 1690px;
    }

}

/************************************* Max Width Section ******************************/

@media (max-width: 1399px) {
    .bnr-right-img {
        width: 45%;
        height: 400px;
    }

    .bnr-left-img {
        height: 650px;
    }

    .banner-text {
        width: 60%;
        text-align: end;
    }

    .banner-content {
        min-height: 85vh;
        padding-right: 0px;
    }

    .banner-text h3 {
        font-size: 74px;
        line-height: 78px;
    }

    .abt-right-img {
        height: 400px;
        width: 40%;
    }

    .abt-left-img {
        bottom: 150px;
        height: 300px;
    }

    .abt-content {
        width: 80%;
        padding: 0px 0 0 300px;
    }

    .abt-leftBg-img img {
        height: 100%;
        object-fit: cover;
        width: 350px;
    }

    .service-head h3 {
        font-size: 42px;
        line-height: 48px;
    }

    .service-content {
        padding: 10px;
    }

    .service-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .service-content h5 {
        font-size: 20px;
        line-height: 26px;
    }

    .abt-raser-img {
        right: 200px;
    }

    .testi-right-side-img {
        bottom: 40px;
        height: 400px;
    }

    .testi-left-side-img {
        bottom: 0px;
        height: 350px;
    }

    .testi-content-head h3 {
        font-size: 44px;
        line-height: 48px;
    }

    .testi-box>p {
        font-size: 16px;
        line-height: 24px;
    }

    .testi-prof-name h5 {
        font-size: 16px;
    }

    .testi-prof-name p {
        font-size: 14px;
    }

    .testi-img {
        margin-bottom: -150px;
    }

    .footer-top-left p {
        font-size: 42px;
        width: 65%;
    }

    .footer-social li a,
    .footer-list li a {
        font-size: 20px;
    }

    .footer-logo {
        height: 150px;
    }

    .footer-contact li a {
        font-size: 15px;
        line-height: 20px;
    }
}

@media (max-width: 1199px) {
    .banner-img-outer img {
        width: 80%;
    }

    .banner-img-inner {
        left: 58%;
    }

    .banner-img-inner img {
        width: 70%;
    }

    .banner-text h3 {
        font-size: 68px;
        line-height: 74px;
    }

    .banner-text p {
        font-size: 18px;
    }

    .abt-left-img {
        height: 280px;
    }

    .abt-leftBg-img img {
        width: 280px;
    }

    .abt-leftBg-img {
        top: 140px;
    }

    .abt-content span {
        font-size: 16px;
    }

    .abt-content h3 {
        font-size: 44px;
        line-height: 46px;
    }

    .abt-content p {
        font-size: 15px;
    }

    .abt-content {
        width: 80%;
        padding: 40px 0 0 300px;
    }

    .service-head {
        width: 70%;
    }

    .testi-content-head h3 {
        font-size: 36px;
        line-height: 42px;
    }

    .testi-content-head h3 {
        margin-top: 10px;
    }

    .testi-slider.owl-carousel .owl-nav {
        bottom: -60px;
    }

    .footer-top-left p {
        font-size: 36px;
    }

    .footer-top-right form button {
        width: 40%;
        font-size: 14px;
    }

    .service-col {
        padding: 20px;
    }

    .service-col.service-image {
        padding: 0px;
    }

    .service-col h3 {
        font-size: 22px;
    }

    .service-col h5 {
        font-size: 15px;
    }

    .service-col p {
        font-size: 13px;
        line-height: 1.5;
    }

    .offer-list li {
        font-size: 14px;
    }

    .service-inr-section .service-head h3 {
        font-size: 42px;
        line-height: 48px;
    }

}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        background: rgba(255, 255, 255, 1);
        width: 100%;
        left: 0;
        top: 100%;
        padding: 20px;
        border-top: 1px solid #f4f4f4;
        /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.23); */
    }

    .navbar-nav {
        gap: 10px;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: auto;
    }

    .navbar-brand {
        width: 80px;
    }

    .banner-content {
        padding-left: 0px;
    }

    .head-contact>.navbar-toggler,
    .head-contact>.navbar-toggler.collapsed {
        padding: 2px;
        border: 1px solid #fff;
        background: #fff;
        border-radius: 0px;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 00.5) !important;
    }

    .head-contact {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .banner-img-outer img {
        width: 65%;
    }

    .banner-text h3 {
        font-size: 58px;
        line-height: 68px;
    }

    .bnr-shadow {
        position: absolute;
        right: 23px;
        bottom: 50px;
    }

    .banner-text p {
        font-size: 15px;
    }

    .banner-section {
        min-height: 90vh;
    }

    .abt-content {
        width: 70%;
        padding: 0px 0 0 0px;
    }

    .abt-leftBg-img {
        display: none;
    }

    .abt-left-img {
        bottom: 10px;
    }

    .abt-raser-img {
        right: 60px;
    }

    .abt-content h3 {
        font-size: 42px;
        line-height: 46px;
    }

    .service-head h3 {
        font-size: 36px;
        line-height: 42px;
    }

    .service-content .service-btn {
        --ehw-btn: 35px;
        font-size: 14px;
    }

    .testi-img {
        margin-bottom: -80px;
        height: 400px;
        margin-top: 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-top-left p {
        width: 100%;
    }

    .footer-top-right {
        width: 80%;
    }

    .footer-top-right form button {
        width: 30%;
    }

    .footer-top-right form {
        padding: 5px;
        border-radius: 12px;
    }

    .footer-social li a,
    .footer-list li a {
        font-size: 18px;
    }

    .footer-contact li a {
        font-size: 13px;
        line-height: 16px;
    }

    .footer-copyright p {
        font-size: 13px;
    }

    .footer-top-left p {
        font-size: 32px;
    }

    .footer-logo {
        height: 120px;
    }

    .testi-right-side-img {
        bottom: auto;
        top: 0px;
    }

    .contact-card {
        border-radius: 10px;
        min-height: 100px;
        padding: 20px;
        justify-content: flex-start;
    }

    .service-head {
        width: 100%;
    }



}

@media (max-width: 767px) {

    .navbar {
        padding: 5px 0px;
    }

    .testi-img {
        margin-right: 0px;
    }

    .bnr-left-img {
        width: 100%;
        border-radius: 0px 0px 0px 0px;
    }

    .bnr-right-img {
        display: none;
    }

    .banner-content {
        min-height: 60vh;
    }

    .bnr-shadow {
        display: none;
    }

    .banner-content {
        flex-direction: column;
        min-height: 50vh;
        align-items: center;
        padding-top: 40px;
    }

    .banner-text {
        width: 100%;
        text-align: center;
    }

    .bnr-left-img {
        height: 560px;
    }

    .banner-section {
        min-height: 50vh;
    }

    .abt-right-img {
        top: 0px;
    }

    .banner-img-outer img {
        width: 50%;
    }

    .banner-img-inner img {
        width: 45%;
    }

    .banner-img-inner {
        left: 60%;
    }

    .abt-raser-img {
        display: none;
    }

    .abt-left-img {
        display: none;
    }

    .abt-content {
        width: 100%;
    }

    .abt-content h3 {
        font-size: 34px;
        line-height: 38px;
    }

    .abt-content p {
        font-size: 14px;
    }

    .abt-right-img {
        height: 400px;
        width: 100%;
        border-radius: 0px;
        margin-top: 50px;
        bottom: 0px;
        top: auto;
    }

    .abt-content h3 {
        margin: 10px 0px;
    }

    .abt-content p {
        margin: 10px 0px;
        width: 100%;
    }

    .common-btn {
        padding: 5px 20px;
        font-size: 14px;
    }

    .navbar-brand {
        width: 60px;
    }

    .service-head {
        width: 100%;
    }

    .common-section {
        padding: 40px 0px;
    }

    .testi-img {
        margin-bottom: -40px;
    }

    .testi-right-side-img {
        height: 300px;
    }

    .footer-contact {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 20px 0px;
        flex-direction: column;
        gap: 20px;
    }

    .footer-social {
        align-items: flex-start;
    }

    .footer-logo {
        width: auto;
    }

    .testi-right-side-img {
        display: none;
    }

    .testi-content-head h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .testi-content-head {
        margin-bottom: 20px;
    }

    .service-slider.owl-carousel .owl-nav .owl-prev {
        left: -5px;
    }

    .service-slider.owl-carousel .owl-nav .owl-next {
        right: -5px;
    }

    .testi-content-head span {
        font-size: 14px;
    }

    .contact-card {
        min-height: 100px;
    }

    .contact-card i {
        --ehw-bg: 35px;
        font-size: 16px;
    }

    .contact-card .contact-name h4 {
        font-size: 16px;
    }

    .contact-card .contact-name p {
        font-size: 13px;
    }

    .contact-form {
        padding: 10px;
        border-radius: 10px;
    }

    .iframe-box {
        height: auto;
        border-radius: 10px;
    }

    .service-inr-section .service-head span {
        font-size: 14px;
    }

    .service-inr-section .service-head h3 {
        font-size: 34px;
        line-height: 42px;
    }

    .service-inr-section .service-head h3 {
        font-size: 24px;
        line-height: 28px;
    }




}

@media (max-width: 575px) {
    .bnr-left-img {
        height: 360px;
    }

    .banner-text h3 {
        font-size: 42px;
        line-height: 44px;
    }

    .banner-text p {
        font-size: 14px;
        line-height: 18px;
    }

    .banner-section {
        min-height: 30vh;
        padding-bottom: 20px;
    }

    .banner-content {
        min-height: 30vh;
        padding-top: 20px;
    }

    .abt-right-img {
        height: 300px;
    }

    .abt-content h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .abt-content span {
        font-size: 14px;
    }

    .common-btn {
        font-size: 13px;
    }

    .service-head h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .service-box {
        border-radius: 16px;
        padding: 10px;
    }

    .service-img {
        border-radius: 16px;
    }

    .testi-box {
        border-radius: 16px;
        padding: 20px 15px;
    }

    .testi-box>p {
        font-size: 14px;
        line-height: 20px;
        margin: 15px 0px;
    }

    .testi-slider.owl-carousel .owl-nav .owl-prev,
    .testi-slider.owl-carousel .owl-nav .owl-next {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .testi-slider.owl-carousel .owl-nav {
        bottom: -40px;
    }

    .testi-img {
        margin-bottom: -60px;
    }

    .footer-top-left p {
        font-size: 24px;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .footer-top-right {
        width: 100%;
    }

    .footer-social li a,
    .footer-list li a {
        font-size: 14px;
    }

    .footer-copyright p {
        font-size: 11px;
    }

    .footer-top-right form button {
        padding: 5px;
        border-radius: 4px;
    }

    .footer-top-right form input {
        padding: 5px;
        font-size: 14px;
    }

    .footer-top-right form {
        padding: 5px;
        border-radius: 6px;
    }

    .service-btn-box .service-btn {
        font-size: 13px;
        padding: 5px 15px;
    }

    .testi-prof-img {
        --ehw-img: 40px;
    }

    .testi-prof-name h5 {
        font-size: 15px;
    }

    .testi-prof-name p {
        font-size: 13px;
    }

    .abt-section {
        min-height: 75vh;
    }

    .inr-banner-text p {
        font-size: 42px;
        line-height: 44px;
    }

    .service-col h4 {
        font-size: 20px;
    }

    .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }






}

/* @media (max-width: 410px) {
    .contact-form {
        padding: 10px;
        border-radius: 10px;
    }

    .cart-icon img {
        width: 40px;
    }

    .btn-cart {
        gap: 5px;
    }

    .nav-btns {
        gap: 5px;
    }

    .head-brand-menu .common-btn {
        font-size: 10px;
    }
} */