@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;
}

a {
    text-decoration: none;
    color: #fbcd0e;
    white-space: initial;
}

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;
}

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;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 25px;
    font-family: 'poppins-regular';
    color: #000;
    opacity: 50%;
}


/***** Font Files *****/

@font-face {
    font-family: 'anton-font';
    src: url(../font/anton.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'poppins-medium';
    src: url(../font/Poppins-Medium.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'poppins-regular';
    src: url(../font/Poppins-Regular.ttf);
    font-weight: 400;
    font-style: normal
}



/***** Custom Classes *****/

.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;
}

.theme_btn {
    padding: 6px 6px 6px 16px;
    border: unset;
    border-radius: 50px;
    color: #000000;
    z-index: 1;
    background: #fbcd0e;
    position: relative;
    font-size: 16px;
    /* -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;
    overflow: hidden;
    display: inline-block;
    font-family: 'poppins-medium';
    text-transform: uppercase;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #000000;
    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: #ffffff;
}

.theme_btn:hover::before {
    width: 100%;
}

.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;
}

h1 {
    font-family: 'anton-font';
    font-size: 78px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0 0 17px;
    text-transform: uppercase;
}

h2 {
    font-family: 'anton-font';
    font-size: 50px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 8px;
    text-transform: uppercase;
}

h3 {
    font-family: 'anton-font';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 8px;
    text-transform: uppercase;
}

h4 {
    font-family: 'anton-font';
    font-size: 27px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'anton-font';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'anton-font';
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 2px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 10px 0;
    position: absolute;
    z-index: 1;
    width: 100%;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.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: #000000;
    padding: 10px 23px;
    font-size: 14px;
    font-family: 'poppins-medium';
}



.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.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: #fbcd0e;
}

.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;
}


/*header css start */

.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;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.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;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.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  */

.dis-block{
    display: block;
}
.container-fluid{
    padding: 0px 100px;
}
.banner-img img {
    width: 100%;
    height: 100vh;
}

.side-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-btn-img {
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}

.banner_text p {
    color: #000;
    width: 50%;
}

.banner_img {
    position: absolute;
    bottom: 200px;
    right: 100px;
    background: #fff;
    width: 14%;
    padding: 20px;
    border-radius: 20px;
}

.banner_img ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.banner_img h3 {
    font-size: 37px;
}

.banner_img ul li h4 {
    color: #000;
    margin-bottom: 0px;
}

.counter-section{margin-top: -50px;position: relative;z-index: 1;margin-bottom: 100px;}

.counter-box{
border-right:1px solid rgba(0,0,0,0.2);
}

.border-none{
border-right:none;
}

.counter-box h2{font-size: 71px;color:#000;margin-bottom:5px;}

.counter-box h2::after{
content:"+";
}

.counter-box p{font-size:16px;color:#222;margin:0;opacity: 1;}
section.counter-section .row {
    background: #fbcd0e;
    padding: 60px 0px;
    border-radius: 20px;
}
.about-img img {
    width: 100%;
}

.about-heading-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.about-heading-icon h3 {
    font-size: 20px;
    margin-bottom: 0px;
}
.banner_img h3 span {
    font-size: 20px;
    color: #fbcd0e;
}
section.about-sec {
    margin-bottom: 100px;
}
.services-top-btn {
    text-align: end;
}
.services-box-text p {
    width: 80%;
}

.services-box-text a {
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #000;
    font-weight: 500;
}

.services-box-img img {
    width: 100%;
}

.services-top-heading p {
    width: 80%;
}

.row.services-row {
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 50px;
}

section.services-sec {
    background: #f2f2f2;
    padding: 80px 0px;
    margin-bottom: 100px;
}


/* Why Choose Sec Css Start */


.why-choose-sec{margin-bottom: 100px;}

.timeline{
position:relative;
margin-top:80px;
}

.main-line{position:absolute;top: 53%;left:0;width:100%;height:3px;background:linear-gradient(90deg,#e0e0e0,#9e9e9e,#e0e0e0);}

.timeline-item{
position:relative;
}


.top-row{margin-bottom: 0px;}

.bottom-row{margin-top: 40px;}

/* vertical lines */

.connector{
position:absolute;
left:50%;
width:2px;
background:linear-gradient(to bottom,#e0e0e0,#9e9e9e);
transform:translateX(-50%);
}

.top-row .connector{height: 190px;bottom: -30px;left: 14px;}

.bottom-row .connector{height: 162px;bottom: 0px;left: 13px;transform: rotate(0deg);}

/* ball */

.ball{
    position:absolute;
    left: 14px;
    top: -8%;
    width:18px;
    height:18px;
    background:#f6b400;
    border-radius:50%;
    transform:translate(-50%,-50%);
    animation:ballmove 2s ease-in-out infinite;
    z-index:5;}

@keyframes ballmove{
0%{transform:translate(-50%,-55%)}
50%{transform:translate(-50%,-45%)}
100%{transform:translate(-50%,-55%)}
}




.content h4 {
    font-size: 25px;
}

.content p {
    width: 87%;
    opacity: 1;
}

.content {
    padding-left: 30px;
    padding-top: 20px;
}
.why-choose-top-heading {
    text-align: center;
}

.why-choose-top-heading p {
    width: 60%;
    margin: 0 auto;
}
.why-choose-top-heading .about-heading-icon {
    justify-content: center;
}
/* Why Choose Sec Css Start */

.project-box {
    position: relative;
}

.project-box img {
    width: 100%;
}

.project-box-text {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
}

.project-box-text h3 {
    color: #fff;
}

.project-box-text p {
    color: #fff;
    opacity: 87%;
}

section.project-sec {
    margin-bottom: 100px;
}









/*---------------------------------------------------- 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: #fbcd0e;
}

.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: 1; */
}

.testimonial-sec .slick-arrow:hover:before {
    background: #000000;
    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 20px 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;
}
.testi-slider .slick-prev:before {
    content: '\f060' !important;
}
.testi-slider .slick-arrow:before {
    content: '\f061';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 500;
    top: 0;
    color: #000000;
    left: 0;
    background: #fbcd0e;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    border-radius: 50%;
    transition: 0.5s all;
}
.testi-slider .slick-active {
    opacity: 1;
}

.testi-slider .slick-prev {
    left: -45px;
}
.testi-head .about-heading-icon {
    justify-content: center;
}
/*---------------------------------------------------- Testimonial Section End ------------------------------------------------------------- */




/*Footer Start*/

.heading-ft-contact h2 {
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ft-contact ul li img {width: 55px;height: 55px;object-fit: contain;padding: 16px 5px;border-radius: 50%;background: #fbcd0e;transition: 0.8s;}

.ft-contact ul li p {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0px;
}

.ft-contact ul li  a {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.ft-contact ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ft-contact ul li span {
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}




.ft-contact {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
}

.heading-ft-contact {
    margin-bottom: 30px;
}

.ft-contacts-main-sec {padding: 100px 0px 0px;}

footer {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 31px;
    background: #282424;
}
.ft-logo-main p {
    /* font-family: 'Montserrat'; */
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    margin-top: 22px;
    margin-bottom: 7px;
}

.ft-links h3 {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 20px;
}

.ft-links ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.ft-links ul {
    column-count: 1;
}

.ft-links ul li {
    margin-bottom: 10px;
}

.ft-links {
    margin: 0px 0px 20px 80px;
    border-left: 1px solid #ffffff57;
    padding: 20px 0px 10px 150px;
}

.ft-social ul li {
    border: 1px solid #ffffff7d;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.ft-social ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ft-social ul li a {
    color: #ffffff94;
}

.ft-social ul li:hover {
    /* background-image: -webkit-linear-gradient(0deg, rgb(14, 123, 187) 0%, rgb(18, 37, 92) 100%); */
    transition: 0.9s;
    border: unset;
    background: #fbcd0e;
}

.ft-social ul li:hover a {
    color: #fff;
}

.ft-form-main h2 {
    font-size: 47px;
    margin-bottom: 23px;
    line-height: 31px;
}

.ft-form-main p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 22px;
}

.ft-form-field input {
    border: 1px solid #00000040;
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 24px;
    border-radius: 50px;
    /* font-family: 'Montserrat'; */
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.ft-form-field  textarea {
    border: 1px solid #00000040;
    width: 100%;
    margin-bottom: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    color: #000;
    height: 150px;
    font-weight: 500;
}

.ft-form-main {
    background: #fff;
    padding: 30px 30px;
    margin-top: -200px;
    margin-left: 12px;
    box-shadow: 0px 0px 111px 0px rgba(0, 0, 0, 0.06);
}

.ft-bottom p {
    text-align: start;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    background: #fff;
    margin-bottom: unset;
    padding: 30px 0px;
    width: 98.6%;
    opacity: 1;
    padding-left: 300px;
}
.ft-logo-main {
    margin-top: 60px;
}
footer .row {
    align-items: center;
}
.ft-social h2 {
    color: #fff;
    font-family: 'anton-font';
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 14px;
    margin-top: 20px;
}
.ft-form-field  button.theme_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}


.ft-form-field  button.theme_btn .side-btn-img {position: absolute;right: 5px;}
/*Footer End*/


.banner-img.inner-banner-img img {
    height: 70vh;
    object-fit: cover;
    object-position: top;
}
section.about-sec.inner-about {
    margin: 100px 0px;
}
section.services-sec.inner-services {
    padding: 0px 0px;
    background: #fff;
    margin: 100px 0px;
}
section.project-sec.inner-project {
    margin: 100px 0px;
}

section.services-sec.inner-services .services-box-text p {
    width: 100%;
}




/*---------------------------------------------------- Contact Section Start ------------------------------------------------------------- */

.contact-txt {
    background: #fbcd0e;
    padding: 90px 30px;
    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: 0px;
}

.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: #000000;
}

.contact-txt p {
    width: 85%;
    opacity: 1;
}

.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;
    margin-bottom: 0px;
    color: #000;
}

.contact-txt ul li i {
    /* background: #fff; */
    /* width: 50px; */
    /* height: 50px; */
    color: #000000;
    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 / 8%);
}

.contact-form .row {
    box-shadow: unset;
    width: 100%;
}
.contact-form button {
    width: auto;
}

.contact-form button .side-btn-img {
    position: relative;
}
section.contact-sec.innr {
    margin: 100px 0px;
}
/*---------------------------------------------------- Contact Section End ------------------------------------------------------------- */





/* Book Start */

section.bookSec {
    position: relative;
    z-index: 12;
    margin-bottom: 100px;
    margin: 100px 0px;
}

section.bookSec .contact-input {
    position: relative;
}

section.bookSec .contact-input::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 45px;
    top: 5px;
    right: 55px;
    background: url(../images/contact-input-bef.png) no-repeat;
}

/* section.bookSec input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
} */

section.bookSec .contact-input input,
section.bookSec .contact-input select,
section.bookSec .contact-input textarea {
    width: 100%;
    height: 60px;
    border: 1px solid #bdbdbd;
    margin-bottom: 20px;
    padding: 5px 20px 5px 20px;
    border-radius: 0px;
    font-weight: 500;
    color: #000;
    appearance: auto;
    font-size: 14px;
    border-radius: 50px;
    -webkit-appearance: none;
}

section.bookSec .contact-input textarea {
    height: 180px;
    resize: none;
    align-content: end;
    border-radius: 20px;
}

section.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;
}

section.bookSec .contact-input.selectbox:before {
    left: unset !important;
    right: 60px;
    transform: rotateY(156deg);
}

section.bookSec .contact-input.selectbox i.fa-solid.fa-angle-down {
    position: absolute;
    right: 22px;
    left: unset !important;
    top: 16px;
    cursor: pointer;
}

section.bookSec .contact-input.selectbox i.fa-solid.fa-angle-down::before {
    content: url(../images/down-img.png);
}

section.bookSec .contact-input.textaryea:before {
    display: none;
}


section.bookSec .formWraper {
    width: 88%;
    margin: 0px auto;
}

section.bookSec .contact-input.nostyle:before {
    display: none;
}

section.bookSec .contact-input.nostyle input {
    padding-left: 20px;
}

section.bookSec .contact-input select {
    color: #000000a8 !important;
    text-transform: uppercase;
    font-weight: 600;
    
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: #000000a8;
    text-transform: uppercase;
    font-weight: 600;
   
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

section.bookSec .heading {
    width: 60%;
    margin: 0px auto 40px;
}

section.bookSec .heading p {
    opacity: 60%;
    width: 70%;
    margin: 0 auto;
}

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;
}

img.select-img {
    position: absolute;
    top: 26px;
    right: 22px;
}

.sitebtn-quote {
    text-align: center;
}

.sitebtn-quote button {
    margin: 0 auto;
}

/* Book  Start */