@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'AmericanCaptain';
    src: url(../font/American\ Captain.otf);
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

span {
    display: block;
    font-family: 'Poppins', Sans-Serif;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-family: 'Poppins', Sans-Serif;
}

a {
    text-decoration: none;
    color: #000;
    white-space: initial;
    font-family: 'Poppins', Sans-Serif;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

p {
    font-weight: 500;
    line-height: 25px;
    margin: 0;
    font-size: 14px;
    font-family: 'Poppins', Sans-Serif;
    color: #7c7c7c;
    transition: 0.5s all;
}

h1 {
    font-family: 'AmericanCaptain';
    font-size: 74px;
    line-height: 1.1;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: 'AmericanCaptain';
    font-size: 73px;
    line-height: 1.1;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: 'AmericanCaptain';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0;
}

h4 {
    font-family: 'AmericanCaptain';
    font-size: 30px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'AmericanCaptain';
    font-size: 30px;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

h6 {
    font-family: 'AmericanCaptain';
    font-size: 18px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

select {
    background: #fff url('../images/select.png') no-repeat right;
    padding: 0 40px 0 30px;
    background-position: right 0.7rem top 50%;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*---------------------------------------------------- Tabs Section Start ----------------------------------------------------------- */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/*---------------------------------------------------- Tabs Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Carousel Section Start ----------------------------------------------------------- */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

/*---------------------------------------------------- Carousel Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Button Section Start ----------------------------------------------------------- */

.theme_btn {
    padding: 18px 45px;
    border: unset;
    border-radius: 28px;
    color: #ffffff;
    z-index: 1;
    background: #30211a;
    position: relative;
    font-size: 16px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    overflow: hidden;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #aca6a3;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #fff;
}

.theme_btn:hover::before {
    width: 100%;
}

/*---------------------------------------------------- Button Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Header Section Start ----------------------------------------------------------- */

.menuSec {
    padding: 10px 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.logo-licencse span {
    color: #fff;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 10px;
}

.menuSec img {
    margin: 0;
    width: 70px;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    margin-top: 10px;
    left: 50px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 23px;
    font-size: 14px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #fff;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background: #fff;
    width: 100%;
    max-width: 90%;
    padding: 50px 50px 70px;
    border-radius: 10px;
    position: relative;
    animation: popupScale 0.3s ease;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    color: #000;
}

@keyframes popupScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background: #fff;
    width: 100%;
    max-width: 90%;
    padding: 50px 50px 70px;
    border-radius: 10px;
    position: relative;
    animation: popupScale 0.3s ease;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    color: #000;
}

@keyframes popupScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*---------------------------------------------------- Header Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */

.banner-sec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    align-content: center;
    margin-bottom: 100px;
    padding-bottom: 120px;
    background-image: url(../images/baner-new.jpg);
    z-index: 0;
    position: relative;
}

.banner-sec:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/baner-shadow.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    z-index: -1;
}

.banner-text.inr {
    text-align: center;
}

.banner-sec.iner .row {
    padding-top: 14%;
}

.banner-sec.iner {
    height: 70vh;
}

.banner-text.inr h2 {
    color: #fff;
}

.counter-main-banner {
    text-align: end;
    display: grid;
    justify-content: flex-end;
}

li.counter-box {
    text-align: justify;
    margin-bottom: 25px;
}

li.counter-box h2 {
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.banner-text span {
    font-family: 'AmericanCaptain';
    font-size: 20px;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 11px;
}

.banner-text h1 {
    margin-bottom: 7px;
}

.banner-text p {
    width: 74%;
    margin-bottom: 15px;
    opacity: 60%;
    color: #fff;
}

.container-fluid {
    padding: 0 5%;
}

.banner-sec .row {
    padding-top: 20%;
}

/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

.footerSec {
    background: #191919;
    padding: 190px 0 10px;
}

.footerSec .day-dtr {
    width: 100px;
}

.footer-shedule ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
    opacity: 60%;
}

.footer-shedule {
    margin-left: 15px;
}

.footerSec hr {
    color: #757070;
    margin-top: 40px;
}

.footerSec h5 {
    margin-bottom: 20px;
}

.footerSec ul.linkList li a {
    color: #fff;
    opacity: 60%;
    font-size: 14px;
}

.footerSec ul.linkList li {
    margin-bottom: 14px;
}

.footer-shedule UL {
    margin-bottom: 23px;
}

.footer-shedule span {
    color: #fff;
    font-family: 'Poppins', Sans-Serif;
    opacity: 60%;
    font-size: 14px;
    width: 120%;
}

.footer-info img {
    margin-bottom: 22px;
}

.footerSec .container.text-center p {
    color: #fff;
}


/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Testimonial Section Start ------------------------------------------------------------- */

.testimonial-sec {
    margin-bottom: 100px;
}

.testimonial-sec .slick-arrow:before {
    background: #aca6a3;
    color: #7d746f;
}

.slick-arrow:hover:before {
    color: #251914;
    background: #fff;
}

.slick-center .testi-main *, .testi-main:hover * {
    color: #fff;
}

.slick-center .testi-main, .testi-main:hover {
    background: #30211a;
}

.slick-center .testi-main img.quote-tsti, .testi-main:hover img.quote-tsti {
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(0%) hue-rotate(174deg) brightness(106%) contrast(108%);
}

.slick-center .testi-main p, .testi-main:hover p {
    opacity: 60%;
}

.testimonial-sec .slick-arrow:hover:before {
    background: #251914;
    color: #fff;
}

.testi-head {
    text-align: center;
    margin-bottom: 40px;
}

.testi-head span {
    font-family: 'AmericanCaptain';
    font-size: 20px;
    color: #30211a;
    letter-spacing: 3px;
}

.testi-head p {
    width: 60%;
    margin: 3px auto;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testi-main {
    border: 1px solid #000;
    border-radius: 10px;
    padding: 30px 30px 28px;
    transition: 0.5s all;
}

.testi-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

img.quote-tsti {
    width: 40px;
    margin-left: 100px;
}

.testi-usr-txt span {
    font-size: 12px;
}

/*---------------------------------------------------- Testimonial Section End ------------------------------------------------------------- */

/*---------------------------------------------------- About Section Start ------------------------------------------------------------- */

.about-sec {
    margin-bottom: 100px;
}

.about-img {
    margin-right: 15px;
}

.about-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
}

.about-text.last {
    margin-top: 2%;
}

.about-text span {
    font-family: 'AmericanCaptain';
    font-size: 23px;
    color: #30211a;
    letter-spacing: 3px;
}

.about-text p {
    margin-bottom: 24px;
    width: 99%;
}

.about-text h2 {
    font-size: 80px;
}

.about-text p {
    font-size: 15px;
    line-height: 27px;
}

/*---------------------------------------------------- About Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Services Section Start ------------------------------------------------------------- */

.service-sec {
    padding: 100px 0;
    background-image: url(../images/serv-bac.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-image: url(../images/serv-more-back.png);
    margin-bottom: 100px;
}

.serv-head {
    text-align: center;
    margin-bottom: 50px;
}

.serv-head * {
    color: #fff;
}

.serv-icon {
    background: #30211a;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    margin-bottom: 30px;
}

.serv-main {
    border-radius: 5px;
    border-bottom: 6px solid #30211a;
    border: 1px solid #fff;
    position: relative;
    height: 450px;
    overflow: hidden;
    z-index: 0;
}

.serv-main img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.serv-main:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #251914e3;
    width: 100%;
    height: 0px;
    transition: 0.5s all;
    z-index: -1;
}

.serv-main:hover:before, .slick-current .serv-main:before {
    height: 100%;
}

.serv-inr-main {
    padding: 20px 25px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 200px;
    transition: 0.5s ease all;
}

.serv-main:hover .serv-inr-main, .slick-current .serv-main .serv-inr-main {
    height: 100%;
}

.serv-head p {
    width: 60%;
    margin: 0 auto;
    opacity: 60%;
}

.serv-head span {
    font-family: 'AmericanCaptain';
    font-size: 20px;
    letter-spacing: 3px;
}

.serv-icon img {
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(0%) hue-rotate(174deg) brightness(106%) contrast(108%);
    object-fit: scale-down !important;
    z-index: 3;
}

.slick-center .serv-main .serv-icon img, .serv-main:hover .serv-icon img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(75%) saturate(395%) hue-rotate(336deg) brightness(97%) contrast(87%);
}

.slick-center .serv-main .serv-icon, .serv-main:hover .serv-icon {
    background: #fff;
}

.service-sec.inner {
    padding: unset;
    background: unset;
}

.service-sec.inner .serv-head * {
    color: #000;
}

.service-sec.inner .serv-main {
    border: 1px solid #30211a;
    margin-bottom: 30px;
    overflow: hidden;
    padding-bottom: 30px;
}

.serv-main * {
    color: #fff;
}

.serv-main a {
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
}

.serv-txt p {
    margin-bottom: 20px;
    margin-top: 8px;
    height: 225px;
    opacity: 60%;
}

.slick-slide {
    opacity: 1;
}

.slick-arrow:before {
    content: '\f061';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 500;
    top: 0;
    color: #5e544f;
    left: 0;
    background: #7c7572;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    border-radius: 50%;
    transition: 0.5s all;
}

button.slick-prev {
    left: -40px;
}

.slick-prev:before {
    content: '\f060';
}

.service-deatil-sec {
    margin-bottom: 100px;
}

.serv-detail-img img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 10px;
    object-position: top;
}

.serv-detail-img {
    margin-bottom: 25px;
}

.serv-detail-txt h2 {
    margin-bottom: 10px;
    font-size: 65px;
}

.serv-detail-txt p {
    margin-bottom: 25px;
}

.serv-detail-txt ul li {
    margin-left: 17px;
    padding-left: 7px;
    list-style: disc;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 25px;
    font-size: 14px;
    font-family: 'Poppins', Sans-Serif;
    color: #7c7c7c;
    transition: 0.5s all;
}

/*---------------------------------------------------- Services Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Why Choose Us Section Start ------------------------------------------------------------- */

.whychooseus-img img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(1);
}

.whychooseus-sec {
    margin-bottom: 100px;
}

.whychoose-text h2 {
    margin-bottom: 12px;
}

.whychoose-text .skill {
    margin-bottom: 32px;
    width: 83%;
}

.whychoose-text .label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    FONT-FAMILY: 'AmericanCaptain';
    color: #000;
    font-size: 30px;
}

.whychoose-text .progress {
    width: 100%;
    height: 6px;
    background: #e5e5e5;
    overflow: hidden;
}

.whychoose-text .progress-bar {
    height: 100%;
    width: 0;
    background: #2b1b14;
}

.whychoose-text .label span {
    font-family: 'AmericanCaptain';
    font-size: 30px;
    font-weight: 500;
}

.whychoose-text p {
    margin-bottom: 23px;
    width: 96%;
}

.whychoose-text .skill p {
    margin: 0 0 12px 0;
    width: unset;
}

.whychooseus-img {
    margin-left: 20px;
}

/*---------------------------------------------------- Why Choose Us Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Contact Section Start ------------------------------------------------------------- */

.contact-txt {
    background: #30211a;
    padding: 50px 50px;
    height: 100%;
    background-image: url(../images/contact-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    border-radius: 5px;
}

.contact-sec.inner {
    margin-bottom: 100px;
}

.contact-sec {
    margin-bottom: -90px;
}

.contact-form {
    border-radius: 10px;
    padding: 40px 40px;
    background: #fff;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    height: 55px;
    padding: 10px 20px;
    border: 1px solid #7c7c7c;
    margin-bottom: 15px;
    border-radius: 4px;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form h4 {
    margin-bottom: 20px;
    font-size: 42px;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #7c7c7c;
    font-size: 14px;
    font-family: 'Poppins';
}

.contact-txt h4 {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-txt * {
    color: #fff;
}

.contact-txt p {
    width: 70%;
    opacity: 60%;
}

.contact-txt ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
}

.contact-txt ul li p {
    opacity: 100% !important;
    font-size: 16px;
}

.contact-txt ul li i {
    background: #fff;
    width: 50px;
    height: 50px;
    color: #30211a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

.contact-txt ul li a {
    font-size: 16px;
}

.contact-txt ul {
    margin-top: 20px;
}

.contact-sec .row {
    border-radius: 7px;
    overflow: hidden;
    width: 98%;
    margin: 0px auto;
    box-shadow: 0px 31px 38px 0px rgb(0 0 0 / 44%);
}

.contact-form .row {
    box-shadow: unset;
    width: 100%;
}

/*---------------------------------------------------- Contact Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Quote Section Start ------------------------------------------------------------- */

.bookSec {
    position: relative;
    z-index: 12;
    margin-bottom: 100px;
}

.bookSec .contact-input {
    position: relative;
}

.bookSec .contact-input::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 45px;
    top: 5px;
    right: 55px;
    background: url(../images/contact-input-bef.png) no-repeat;
}

.bookSec .contact-input input,
.bookSec .contact-input select,
.bookSec .contact-input textarea {
    width: 100%;
    height: 60px;
    border: 1px solid #bdbdbd;
    margin-bottom: 20px;
    padding: 5px 80px 5px 20px;
    border-radius: 0px;
    font-weight: 500;
    color: #000;
    appearance: auto;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    border-radius: 5px;
    -webkit-appearance: unset;
}

.bookSec .contact-input textarea {
    height: 180px;
    resize: none;
}

.bookSec .contact-input i {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #7e7e7e;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(2px 4px 12px #ff521d52);
    font-size: 20px;
}

.bookSec .contact-input.selectbox:before {
    left: unset !important;
    right: 60px;
    transform: rotateY(156deg);
}

.bookSec .contact-input.selectbox i.fa-solid.fa-angle-down {
    position: absolute;
    right: 22px;
    left: unset !important;
    top: 16px;
    cursor: pointer;
}

.bookSec .contact-input.selectbox i.fa-solid.fa-angle-down::before {
    content: url(../images/down-img.png);
}

.bookSec .contact-input.textaryea:before {
    display: none;
}

.bookSec .contact-input.textaryea textarea::placeholder {
    position: absolute;
    bottom: 20px;
}

.bookSec .formWraper {
    width: 88%;
    margin: 0px auto;
}

.bookSec .contact-input.nostyle:before {
    display: none;
}

.bookSec .contact-input.nostyle input {
    padding-left: 20px;
}

.bookSec .sitebtn .pbtn {
    border: 1px solid #ff5d269c !important;
    margin: 24px auto 0;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: #909091;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bookSec .heading {
    width: 70%;
    margin: 0px auto 40px;
}

.bookSec .heading p {
    opacity: 60%;
}

img.book-pankh-img {
    position: absolute;
    right: 10px;
    top: 40%;
}

img.book-kite-img {
    position: absolute;
    bottom: 5%;
    left: 210px;
}

.heading.text-center h2 {
    margin-bottom: 10px;
}

.sitebtn button {
    margin: 0 auto;
}

.contact-input select {
    color: #9f9fa0 !important;
}

.sitebtn {
    text-align: center;
}

/*---------------------------------------------------- Quote Section End ------------------------------------------------------------- */


.bio-main h6 {
    font-size: 53px;
    margin-bottom: 5px;
}

.bio-main p {
    margin-bottom: 18px;
}

.bio-main ul li {
    list-style: disc;
    color: #7c7c7c;
    font-family: 'Poppins', Sans-Serif;
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px;
    margin-bottom: 4px;
}

.bio-main {
    margin-top: 40px;
}

.contctmethd {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contctmethd input {
    margin: 0 !important;
}

.compaign-form-iner .col-lg-6.rt input {
    margin: 0 !important;
}

label.checkbox-btn.lst {
    border: unset;
}

.compaign-Plan-head {
    text-align: center;
    margin-bottom: 20px;
}

.compaign-Plan-head p {
    width: 60%;
    margin: 5px auto 0;
    font-weight: 600;
}

.compaign-form-iner h3 {
    font-size: 33px;
    margin-left: 10px;
    color: #2d2a2c;
    margin-bottom: 10px;
    font-weight: 400;
}

.compaign-form-iner h6 {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 600;
    color: #2d2a2c;
    margin: 20px 0 12px;
    text-transform: uppercase;
}

.compaign-form-iner input,
.compaign-form-iner select {
    width: 100%;
    height: 60px;
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid #000;
    margin-bottom: 15px;
    font-family: 'Montserrat';
    font-size: 14px;
    border-color: #999999;
}

.compaign-form-iner .col-lg-6.rt {
    margin-bottom: 30px;
}

.compaign-form-iner input::placeholder,

.compaign-form-iner textarea::placeholder {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2d2a2c;
}

.compaign-form-iner select {
    text-transform: uppercase;
    font-weight: 600;
    color: #2d2a2c;
    background: #fff url(../images/arrow-stepform.png) no-repeat right;
    padding: 0 40px 0 20px;
    background-position: right 1.4rem top 50%;
}

.compaign-form-iner label {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 600;
    color: #2d2a2c;
    text-transform: uppercase;
    margin: 5px 0 5px 0px;
}

button.btn-step-plan {
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 600;
    background: #2F211A;
    border: 1px solid #4f330b;
    height: 60px;
    width: 100%;
    border-radius: 40px;
    text-transform: uppercase;
    margin-top: 10px;
}

.compaign-form-iner .checkbox-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.compaign-form-iner .checkbox-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border: 1.5px solid #cfcfcf;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    user-select: none;
}

.compaign-form-iner .checkbox-btn input {
    display: none;
}

.compaign-form-iner .checkbox-btn.active {
    background: #2f211a;
    color: white;
    border-color: transparent;
    box-shadow: 0 3px 8px rgba(165, 120, 47, 0.3);
}

.compaign-form-iner .checkbox-btn:hover {
    border-color: #a6782f;
}

.compaign-form-iner textarea {
    width: 100%;
    height: 160px;
    border-radius: 13px;
    resize: none;
    border: 1px solid #999999;
    margin-bottom: 12px;
    padding: 10px 20px;
}


label.checkbox-label-plan {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: unset;
}

label.checkbox-label-plan input {
    width: 20px;
    height: 20px;
    margin: unset;
}

.row.audi-demograp ul {
    column-count: 2;
    width: 90%;
    margin-top: 6px;
    margin-left: 20px;
}

.row.audi-demograp ul li {
    margin-bottom: 10px;
}

label.prefred-chanel {
    margin-left: 20px;
}

.compaign-plan-side {
    margin-top: 80px;
    margin-left: 30px;
}

.compaign-plan-side ul li {
    font-family: 'Montserrat';
    font-size: 18px;
    color: #2d2a2c;
    font-weight: 600;
    margin-bottom: 10px;
}

.compaign-plan-side span {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #2d2a2c;
    font-weight: 600;
    width: 80%;
    display: block;
    margin-top: 20px;
}

.budget-allocation .dropdown-container {
    width: 220px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 15px;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.budget-allocation .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.budget-allocation .dropdown-arrow {
    transition: transform 0.3s ease;
}

.budget-allocation .dropdown-arrow.rotate {
    transform: rotate(180deg);
}

.budget-allocation .dropdown-content {
    margin-top: 10px;
    display: none;
    font-weight: bold;
}

.budget-allocation .dropdown-content div {
    margin-bottom: 5px;
}

.budget-allocation .dropdown-container.open .dropdown-content {
    display: block;
}




/* Form Step Styles */
.compaign-Plan-sec .form-step {
    display: none;
}

.compaign-Plan-sec .form-step.active {
    display: block;
}

/* Buttons */
.compaign-Plan-sec .buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.compaign-Plan-sec button[disabled] {
    background: #ccc;
    cursor: not-allowed;
}

/* Simple Progress Bar (No Steps or Circles) */
.compaign-Plan-sec .progress-container {
    margin-top: 20px;
    background: #ddd;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.compaign-Plan-sec .progress-bar {
    height: 100%;
    width: 0%;
    background: #c59a4e;
    transition: width 0.3s ease;
}

h3.content-war-needstep {
    margin-top: 15px;
}

ul.content-war {
    margin-bottom: 10px;
}

.whychose-text p {
    margin-bottom: 20px;
}

button.btn-progres-lst-compaign-plan {
    width: 100%;
    height: 60px;
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid #000;
    margin-bottom: 15px;
    font-family: 'Montserrat';
    font-size: 14px;
    border-color: #999999;
    text-transform: uppercase;
    font-weight: 600;
    color: #2d2a2c;
}

.about-sec:hover img {
    filter: contrast(0.5);
}

.why-choose-img:hover img {
    filter: brightness(0.5);
    transform: scale(1.1);
}


.slider-container {
    position: relative;
    margin: 40px 0;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #ddd 0%, #dddddd 0%, #dddddd 100%);
    outline: none;
    margin: 20px 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #352413;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2575fc;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.values-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.value-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 0 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-amount {
    font-family: 'Montserrat';
    font-size: 15px;
    font-weight: 600;
    color: #2d2a2c;
}

.middle-value {
    background-color: #e3f2fd;
    border: 2px solid #2575fc;
    transform: scale(1.05);
}

.middle-value .value-label {
    color: #2575fc;
    font-weight: 600;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

.range-display {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background-color: #f0f8ff;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .values-container {
        flex-direction: column;
    }

    .value-box {
        margin: 10px 0;
    }

    .container {
        padding: 25px;
    }
}

.estimate-budget-bar-elucat {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.estimate-budget-bar-elucat input#priceRange {
    height: 15px;
    border: unset;
    background: linear-gradient(to right, #ddd 0%, #dddddd 0%, #dddddd 100%) !important;
    padding: 0 0;
}

.slider-labels {
    margin: unset;
}

.estimated-rangebar-plan {
    width: 100%;
}

.budget-allocation {
    width: 490px;
}

.client-options, .client-options label {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 10px 0 10px;
}

.client-options label {
    gap: 10px;
    font-size: 16px;
    color: #000;
}



.top-slider {
    width: 100%;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-slider-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
}

.top-slider-track span {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    font-family: 'Montserrat';
}

@keyframes scroll {
    From {
        transform: translateX(0);
    }

    To {
        transform: translateX(-100%);
    }
}

.top-slider-track.tnh-1 {
    animation: scroll 5s ease-in-out infinite both;
}

.topsec {
    background: #30211a;
    padding: 3px 0;
}

.menuSec .theme_btn {
    padding: 20px 30px;
    margin-left: -35px;
}

.contact-sec.innr {
    margin-bottom: 100px;
}

/*---------------------------------------------------- Quote Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Quote Section End ------------------------------------------------------------- */

.fees-section {
    padding: 0px 0px 100px;
    background: #f9fafc;
}

.fees-heading {
    text-align: center;
    font-size: 62px;
    margin-bottom: 40px;
    font-weight: 500;
}

.sub-heading {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 500;
}

.fees-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-row span:first-child {
    font-weight: 500;
    color: #333;
}

.fee-row span:last-child {
    font-weight: 600;
    color: #111;
    text-align: right;
}

.payment-note {
    margin-top: 25px;
    font-weight: 600;
}

.fees-serv-sec {
    margin-bottom: 100px;
}

.fees-serv-sec h2 {
    line-height: 1;
}

thead.table-dark {
    --bs-table-bg: #30211a;
}

thead.table-dark th {
    padding: 15px 30px;
    font-family: 'AmericanCaptain';
    font-size: 28px;
    font-weight: 300;
}

thead.table-dark td {
    padding: 10px 20px;
}

thead.table-dark {
    --bs-table-bg: #30211a;
}

thead.table-dark th {
    padding: 15px 30px;
    font-family: 'AmericanCaptain';
    font-size: 28px;
    font-weight: 300;
}

thead.table-dark td {
    padding: 10px 20px;
}

td {
    font-size: 14px;
    height: 60px;
    margin: 10px 40px;
}

.fees-serv-sec h3 {
    font-size: 35px;
    margin-bottom: 90px;
    font-weight: 500;
}

/*---------------------------------------------------- Quote Section End ------------------------------------------------------------- */

.top-main {
    color: #fff;
    font-size: 20px;
}

img.ftr-badge {
    width: 170px;
    position: absolute;
    left: 31%;
    bottom: 50px;
}

.footerSec .col-md-5.col-sm-6 {
    position: relative;
}

ul.mt-3.srvfe-point li {
    margin-bottom: 10px;
    list-style: disc;
    margin-left: 20px;
    padding-left: 1px;
    font-size: 14px;
    font-family: 'Poppins', Sans-Serif;
    color: #7c7c7c;
}

section.disclaimer-sec {
    margin-bottom: 100px;
}

.disclaimer-main ul li {
    margin-bottom: 15px;
    list-style: decimal;
    margin-left: 0;
    padding-left: 12px;
    font-size: 17px;
    font-family: 'Poppins';
    line-height: 30px;
}

.disclaimer-main h2 {
    margin-bottom: 15px;
}

.fee-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 26%);
    height: 100%;
    transition: 0.5s all;
}

.fee-box h3 {
    margin-bottom: 10px;
    font-weight: 500;
}

.price {
    font-size: 25px;
    font-weight: 600;
    color: #8b4b2a;
    font-family: 'Poppins';
    margin-bottom: 15px;
}

.disclaimer-main ul {
    margin-left: 20px;
}

.price-note {
    font-weight: 600;
    margin-bottom: 10px;
}

.fee-box ul {
    padding-left: 18px;
}

.fee-box ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #7c7c7c;
}

.discount-line {
    max-width: 1200px;
    margin: 25px auto 70px;
    text-align: center;
    font-weight: 500;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.fees-serv-sec .col-lg-6 {
    margin-bottom: 30px;
}

.fee-box * {
    transition: 0.7s auto;
}

.fee-box:hover {
    background: #251914e3;
    transform: scale(1.03);
}

.fee-box:hover * {
    color: #fff;
}

.fees-serv-sec h2 {
    margin-bottom: 50px;
}

.serv-detail-txt h6 {
    font-size: 30px;
    margin-bottom: 8px;
    margin-top: 20px;
}

.serv-detail-txt.thrd p {
    margin-bottom: 10px;
}

.serv-detail-img.one img {
    object-position: 0 -50px;
}

.serv-detail-img.two img {
    object-position: 0px -200px;
}

.serv-detail-img.hrd img {
    object-position: unset;
}