@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #c00000;
    --secondary-color: #17365D;
    --white-color: #FFFFFF;
    --footer-color: #F8ECE0;
    --text-color: #434343;
    --text-color-2: #727272;
    --my-font: "Inter", sans-serif;
    --box-shadow: 0px 2px 15px 0px rgba(58, 58, 58, 0.1);
    --box-shadow-2: 0px 0px 25px 1px rgba(75, 75, 75, 0.1);
    --box-shadow-3: 0px 0px 20px 1px rgba(75, 75, 75, 0.1);
    --box-shadow-4: 0px 2px 15px 1px rgba(58, 58, 58, 0.1);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "poppins", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.1s ease-in;
}

h1,
h2,
h3,
h4 {
    font-weight: 500;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

ul {
    list-style: none;
}
.pulse {
    animation: pulse-animation 2s infinite;
  }
  
@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(250, 0, 0, 0.8);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
}

.pulse2 {
    animation: pulse-animation2 2s infinite;
  }
  
@keyframes pulse-animation2 {
    0% {
      box-shadow: 0 0 0 0px rgba(250, 0, 2, 0.8);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
}
.container-fluid{
    width: 94%;
}
/* Button styles */
/* ===================================== */
.btn1 {
    display: inline-block;
    padding: 8px 14px;
    background-color: var(--primary-color);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s ease-in-out, transform 0.25s linear;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    z-index: 1;
    outline: none;
}

.btn1::before,
.btn1::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--secondary-color);
    transition: all 0.5s ease-in-out;
}

.btn1::before {
    top: -2em;
    left: -2em;
}

.btn1::after {
    left: calc(100% + 2em);
    top: calc(100% + 2em);
}

.btn1:hover::before,
.btn1:hover::after {
    height: 410px;
    width: 410px;
}

.btn1:hover {
    color: var(--white-color);
    border-color: var(--secondary-color);
    transform: scale(0.95);
}

.btn1:active {
    filter: brightness(.8);
}

.btn2 {
    display: inline-block;
    padding: 8px 14px;
    background-color: transparent;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s ease-in-out, transform 0.25s linear;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    z-index: 1;
    outline: none;
}

.btn2::before,
.btn2::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--secondary-color);
    transition: all 0.5s ease-in-out;
}

.btn2::before {
    top: -2em;
    left: -2em;
}

.btn2::after {
    left: calc(100% + 2em);
    top: calc(100% + 2em);
}

.btn2:hover::before,
.btn2:hover::after {
    height: 410px;
    width: 410px;
}

.btn2:hover {
    color: var(--white-color);
    border-color: var(--secondary-color);
    transform: scale(0.95);
}

.btn2:active {
    filter: brightness(.8);
}


.sub-title {
    font-size: 18px;
    padding-bottom: 5px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}


.title {
    font-size: 36px;
    font-weight: 600;
    padding-bottom: 40px;
    text-transform: capitalize;
    font-family: var(--my-font);
    margin: 0;
    color: var(--secondary-color);
}

.title span {
    color: var(--primary-color);
}

/* Custom Css */
/* Header section */
header {
    background-color: var(--primary-color);
    width: 100%;
    padding: 10px 0;
    color: var(--white-color);
    font-size: 22px;
}

header a {
    transition: all 0.25s ease-in-out;
}

header a:hover {
    color: var(--white-color);
}

/* Navbar section */
.navbar {
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 110;
    padding: 10px 0;
}

.navbar-brand img {
    width: 270px;
}

.navbar .nav-link {
    font-weight: 500;
    font-size: 20px;
    margin: 0 16px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    background: red;
    width: 100%;
    height: 2px;
    transform: scale(0);
    transition: all 0.35s ease-in-out;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar .nav-link:hover::after {
    transform: scale(1);
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #0000001f;
    animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

/* Banner section */
.banner {
    width: 100%;
    height: 550px;
    background: url(../images/banner/banner.jpg) no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.banner h1 {
    font-weight: 700;
    font-family: var(--my-font);
    color: var(--white-color);
    font-size: 2rem;
}

.banner h1 span {
    color: var(--primary-color);
}
.otherBtn{
    background: linear-gradient(0deg, rgb(213 49 49) 0%, rgb(255 183 15) 100%);
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.15rem;
    text-align: center;
    font-weight: 600;
    display: block;
    padding: 0.75rem;
    outline: none;
}

/* News-paper section */
.news-paper .inner-contain {
    padding: 10px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Ads category */
.ads {
    width: 100%;
    background: url(../images/banner/banner-2.jpg) no-repeat;
    background-size: cover;
}

.ads .inner-contain {
    padding: 10px;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    background-color: var(--white-color);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.ads .inner-contain h4 {
    color: var(--secondary-color);
    margin-bottom: 2px;
    font-size: 22px;
    font-weight: 600;
    transition: all 0.25s ease-in-out;
}

.ads .inner-contain p {
    color: #434343;
    font-size: 11px;
    line-height: 1.2;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
}

/*.ads .inner-contain img {*/
/*    height: 80px;*/
/*}*/

.ads .inner-contain:hover {
    transform: translateY(-8px);
}

.ads .inner-contain:hover h4 {
    color: var(--primary-color);
}

.ads .inner-contain:hover p {
    color: var(--secondary-color);
}

/* Review section */
.review .inner-contain {
    padding: 25px;
    box-shadow: var(--box-shadow-3);
    border-radius: 10px;
    min-height: 250px;
    border: 1px solid var(--primary-color);
}

.review .inner-contain p {
    color: #434343;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
}

.review .inner-contain .img-contain {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review .inner-contain .img-contain>img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.review .rating {
    border: 1px solid #E4E4E4;
    border-radius: 5px;
}

.review .rating i {
    font-size: 12px;
}

.review .gradient-div {
    position: relative;
}

/*.review .gradient-color {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    left: 0;*/
/*    background: linear-gradient(to right,*/
/*            rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));*/
/*    z-index: 5;*/
/*    border-radius: 10px;*/
/*    pointer-blogs: none;*/
/*}*/

/* Enquiry banner */
.enquiry {
    width: 100%;
    background: url("../images/banner/banner-3.jpg") no-repeat center;
    background-size: cover;
    padding: 2rem 0;
}

.enquiry h2 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--my-font);
    color: var(--secondary-color);
}

.enquiry h2>span {
    color: var(--primary-color);
}

/* Blog section */
.blog .gradient-fill {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    transition: all 0.25s ease-in-out;
}

.blog .content {
    position: absolute;
    left: 4%;
    bottom: 5%;
    right: 4%;
}

.blog .content .category {
    padding: 2px 6px;
    background-color: var(--primary-color);
    border-radius: 3px;
    color: var(--white-color);
    font-size: 12px;
    margin-bottom: 8px;
}

.blog .content h3 {
    font-family: var(--my-font);
    color: var(--white-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.blog .blog-dets {
    color: #E6E6E6;
    font-size: 12px;
    padding-right: 20px;
}

.blog .blog-dets:nth-child(2) {
    padding-left: 20px;
}

.blog .blog-list {
    transition: all 0.25s ease-in-out;
}

.blog .blog-list:hover .gradient-fill {
    background: linear-gradient(transparent, rgba(192, 0, 0, 0.4));
}

.blog .inner-contain {
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.blog .blog-title {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
    margin: 12px 0;
}


/* Footer section */
footer {
    width: 100%;
    background: #F8ECE0;
    color: var(--secondary-color);
    font-size: 14px;
}

footer ul li a {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.25s;
    font-weight: 500;
    color: var(--secondary-color);
}

footer ul li a::before {
    content: "-";
    padding-right: 5px;
    font-size: 20px;
    color: var(--primary-color);
}

footer ul li a:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

footer .copy {
    border-top: 1px solid #c0000052;
    padding: 12px 0;
}

footer .copy p {
    color: var(--secondary-color);
    font-weight: 500;
}

/* About page */
.inner-banner {
    width: 100%;
    padding: 3rem 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(../images/banner/inner-banner.webp) no-repeat center;
    background-size: cover;
    color: var(--white-color);
}

/* Book page */
/*.book-ad {*/
/*    background-color: #ffebeb;*/
/*}*/


/*  Booking form css */
/* .book-ad .card {
    background-color: transparent;
    padding: 25px;
    padding-left: 0;
    border: none;
}

.book-ad .card h2 {
    color: var(--primary-color);
    font-weight: 600;
}

#msform fieldset {

    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

.form-card {
    text-align: left;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform .my-img {
    width: 300px;
    height: 300px;
    object-fit: fill;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--box-shadow-4);
}

#msform .selectpicker {
    width: 100%;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: #121212;
    background-color: var(--white-color);
}

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none;
    box-shadow: none;
}

.btn-light {
    background-color: var(--white-color) !important;
} */

/* .card {
    z-index: 0;
    border: none;
    position: relative;
  } */

.steps {
    font-size: 18px;
    color: #777;
    font-weight: normal;
    text-align: right;
}

.uploader {
    display: block;
    clear: both;
    width: 100%;
}

.uploader label {
    float: left;
    clear: both;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 7px;
    border: 3px solid #eee;
    transition: all 0.2s ease;
    user-select: none;
}

.uploader label:hover {
    border-color: #454cad;
}

.uploader label.hover {
    border: 3px solid #454cad;
    box-shadow: inset 0 0 0 6px #eee;
}

.uploader label.hover #start i.fa {
    transform: scale(0.8);
    opacity: 0.3;
}

.uploader #start {
    float: left;
    clear: both;
    width: 100%;
}

.uploader #start.hidden {
    display: none;
}

.uploader #start i.fa {
    font-size: 50px;
    margin-bottom: 1rem;
    transition: all 0.2s ease-in-out;
}

.uploader #response {
    float: left;
    clear: both;
    width: 100%;
}

.uploader #response.hidden {
    display: none;
}

.uploader #response #messages {
    margin-bottom: 0.5rem;
}

.uploader #file-image {
    display: inline;
    margin: 0 auto 0.5rem auto;
    width: auto;
    height: auto;
    max-width: 180px;
}

.uploader #file-image.hidden {
    display: none;
}

.uploader #notimage {
    display: block;
    float: left;
    clear: both;
    width: 100%;
}

.uploader #notimage.hidden {
    display: none;
}


.uploader input[type="file"] {
    display: none;
}

.uploader div {
    margin: 0 0 0.5rem 0;
    color: #5f6982;
}

/* About Page */
.objective {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.objective .title,
.objective .sub-title {
    color: var(--white-color);
}

.objective ul li {
    position: relative;
    font-size: 14px;
    margin: 10px 0;
    display: flex;
    align-items: start;
}

.objective ul li::before {
    content: "\f058";
    font-size: 14px;
    font-family: "Font Awesome 6 Free";
    color: var(--white-color);
    padding-right: 8px;
}


/* Blog page */
.blog-list .card {
    border-radius: 15px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.25s ease-in-out;
}

.blog-list .card .card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.blog-list .card .card-title {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 20px;
    color: var(--secondary-color);
    transition: all 0.25s ease-in-out;
}

/*.blog-list .card:hover .card-title {*/
/*    color: var(--primary-color);*/
/*}*/

.blog-list .card .card-text {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: var(--text-color-2);
}

.blog-list .blog-list-date {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.blog-list .card .card-body {
    padding: 18px 24px;
}


/* Blog details page */
.blog-det h2 {
    font-weight: 600;
    font-size: 28px;
}

.blog-det .date-cat {
    color: var(--primary-color);
    font-weight: 500;
}

.left .latest {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
}

.left .latest i {
    font-size: 15px;
    color: #666;
}

.blog-list .publish {
    font-size: 14px;
}

.left .latest .lat-post {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.25rem;
}

.left .latest .lat-post img {
    width: 100px;
    border-radius: 5px;

}

.left .latest .lat-post h6 {
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
    margin-bottom: 5px;
}

.left .latest .lat-post:hover h6 {
    color: var(--primary-color);
}

.left .latest .lat-post p {
    color: var(--primary-color);
    font-size: 13px;
}


/* Media page */
.media .inner-contain,
.faq .inner-contain {
    padding: 25px;
    box-shadow: 5px 6px 40px rgba(39, 98, 131, 0.15);
    border-radius: 15px;
}

.media .inner-contain h4 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
}

.media .inner-contain p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
}

.media .inner-contain h4:hover {
    color: var(--primary-color);
}


/* Paq page */
.faq-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
    border-radius: 0;
    display: block;
    margin-bottom: 15px;
    background: var(--white-color);
    border: 1px solid var(--secondary-color);
    padding: 1rem 1.5rem;
    box-shadow: 1px 1px 0 var(--secondary-color);
    border-radius: 5px;
}

.faq-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
    padding: 0 60px 0 0;
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.faq-accordion .accordion .accordion-title::before {
    content: '\f059';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: var(--secondary-color);
    padding-right: 10px;
}

.faq-accordion .accordion .accordion-title i {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.faq-accordion .accordion .accordion-title.active {
    color: #212121;
}

.faq-accordion .accordion .accordion-title.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    margin-top: 10px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.faq-accordion .accordion .accordion-content.show {
    display: block;
}

.faq-accordion .accordion .accordion-content ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

.faq-accordion .accordion .accordion-content ul li {
    color: #3e555f;
    position: relative;
    margin-bottom: 12px;
    line-height: 25px;
    padding-left: 15px;
}

.faq-accordion .accordion .accordion-content ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #086AD8;
    border-radius: 50%;
}

.faq-accordion .accordion .accordion-content ul li:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion .accordion-content p {
    margin-bottom: 0;
}


/* Contact page */
.contact-page .inner-contain {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 13px 14px 40px rgba(0, 0, 0, 0.089);
}

.input-container {
    position: relative;
}

.input-container input,
.input-container select {
    height: 50px;
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    background-color: transparent;
    padding: 0 1rem;
    outline: none;
    border: 1px solid var(--secondary-color);
}

.input-container label {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 14px;
    line-height: 30px;
    background-color: #fff;
    z-index: 10;
    border-radius: 50vw;
    color: var(--theme-bg-color);
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.input-container input:focus+label,
.input-container input:not(:placeholder-shown)+label,
.input-container textarea:focus+label,
.input-container textarea:not(:placeholder-shown)+label {
    top: -16px;
    left: 10px;
    font-size: 12px;
    padding: 0 10px;
    background-color: #fff;
    /* Change background color when focused */
    border-radius: 50vw;
    color: var(--primary-color);
}

.my-text textarea {
    font-size: 14px;
    padding: 0.75rem 1rem;
    resize: none;
    height: 100px;
    border: 1px solid var(--secondary-color);
    resize: none;
}

.input-container input:focus,
.input-container select:focus,
.my-text textarea:focus {
    border-color: var(--primary-color);
}

/* Info section */
.info .inner-contain {
    padding: 25px;
    border-radius: 10px;
    min-height: 160px;
    text-align: center;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.089);
}

.info .inner-contain i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Q&A section */
.qa {
    background-color: #FFEBEB;
}

.qna .faq-accordion .accordion .accordion-title::before {
    display: none;
}

.qna .user-name {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
}




/*form styles*/
.progress-bar {
    background-color: #454cad;
}
.step {
    display: none;
}
.step.active {
    display: block;
}
.progress-bar {
    transition: width 0.4s;
}

.book-ad .inner-contain {
    padding: 16px;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: var(--white-color);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.book-ad .inner-contain:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}
.book-ad .inner-contain img {
    height: 60px;
}
.book-ad .inner-contain p{
    font-size: 10px;
    color: #565656;
}
.book-ad .btn-light {
    background-color: var(--white-color) !important;
    border: none !important;
    box-shadow: none;
}
.book-ad .btn-light:active , .book-ad .btn-light:focus {
    border: none !important;
    box-shadow: none;
}
.book-ad .bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
   color: #121212;
   border: none !important;
   outline: none !important;
}
.book-ad input[type=text],input[type="email"], .book-ad input[type=date], .book-ad select {
    height: 50px;
}

.book-ad .btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {

    border: none !important;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}


/* Help section */
.need-help .inner-contain {
    border-radius: 10px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.058);
    position: relative;
    overflow: hidden;
}
.need-help .inner-contain .step-no {
    display: inline-block;
    background: var(--primary-color);
    padding: 5px 8px;
    border-radius: 3px;
    color: var(--white-color);
    position: absolute;
    top: 15px;
    right: 0;
    box-shadow: 2px 2px 20px rgba(224, 9, 9, 0.242);
}
.need-help h4 {
    color: var(--primary-color);
}


/* Policy section */
.policy h4 {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 12px;
}

.ad_type_border
{
    border-color: var(--primary-color) !important;
}

.text-left
{
    text-align: left;
}

.f-size-13
{
    font-size: 13px;
}


.whatsapp{
    position: fixed;
    left: 10px;
    bottom: 10px;
}
.callus{
    position: fixed;
    left: 10px;
    bottom: 70px;
    border-radius: 30px;
    background: #fff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    padding-right: 10px;
    color: #17365d;
    z-index: 999;
    border: 1px solid #f00;
}


.btn-close {
    position: absolute;
    right: -0.5em;
    top: -0.5em;
    padding: 0.5em;
    outline: none;
    box-shadow: none;
    border-radius: 2rem;
}
.getquoteModal .modal-content {
    border: 0;
    border-radius: 0;
}

.getquoteModalPanel {
    display: flex;
    justify-content: center;
    border-radius: 0.25rem;
}
.form-control {
    border-color: #ddd;
    min-height: 50px;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.form-select {
    width: 80px;
    border-color: #ddd;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.form-control:hover,
.form-control:focus,
.form-select:hover,
.form-select:focus {
    border-color: var(--theme-color);
    box-shadow: none;
}

.chosen-choices {
display: block;
width: 100%;
font-size: 1rem;
min-height: 50px;
}

.chosen-container-multi .chosen-choices li.search-choice {
position: relative;
margin: 3px 8px 3px 0;
padding: 10px 20px 10px 10px;
min-height: 45px;
display: flex;
justify-content: center;
align-items: center;
}

.chosen-container-multi .chosen-choices li.search-choice {
background-size: 100%;
background: rgb(255, 239, 239);
}

.chosen-container-multi .chosen-choices {
white-space: nowrap;
flex-wrap: nowrap;
display: flex;
overflow-x: auto;
}
.chosen-results {
text-align: left;
}

.swal2-container .swal2-html-container {
overflow: hidden !important;
}


#rate_chart_details1 table{
    border: 1px solid #101010;
    caption-side: bottom;
    border-collapse: collapse;
}
#rate_chart_details1 table tr td{
    border: 1px solid #101010;
    padding: 5px;
}
#rate_chart_details1 table tr th{
    border: 1px solid #101010;
    padding: 5px;
}