@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&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');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
    background-color: #f2f2f3;
}

@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: 'Kormile';
    src: url(../font/Komrile-Regular.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;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #000;
    white-space: initial;
    font-family: 'Poppins';
}

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;
}

h1 {
    font-family: 'Kormile';
    font-size: 325px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: 'Kormile';
    font-size: 60px;
    line-height: 1;
    color: #272727;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: 'Kormile';
    font-size: 40px;
    line-height: 1.2;
    color: #272727;
    font-weight: 500;
    margin: 0;
}

h4 {
    font-family: 'Kormile';
    font-size: 30px;
    line-height: 1.2;
    color: #272727;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'Kormile';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'Kormile';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.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: 15px 25px;
    border: unset;
    border-radius: 45px;
    color: #ffffff;
    z-index: 1;
    background: #573c1e;
    position: relative;
    font-size: 16px;
    transition: all 250ms;
    overflow: hidden;
    box-shadow: 0px 12px 29px 0px rgba(0, 0, 0, 0.16);
    font-family: "Libre Caslon Text", serif;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: max-content;
    border: 1px solid transparent;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: transparent;
    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 10px;
    position: absolute;
    width: 100%;
    z-index: 999;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    width: max-content;
    border: 1px solid #ffffffc2;
    background-color: rgba(0, 0, 0, 0.102);
    border-radius: 30px;
    padding: 0 12px;
    margin: 0 auto;
    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: 16px 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: #573c1e;
}

.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;
}

.slick-slide {
    opacity: 1;
}

.header-logo img {
    width: 120px;
}

/*---------------------------------------------------- Header Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */

.container-fluid.padd-all {
    padding: 0 5%;
}

.banner-sec {
    background-image: url(../images/baner-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-position: top;
    height: 900px;
    align-content: flex-end;
    padding-top: 8%;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.baner-mainimage {
    text-align: center;
    position: relative;
    left: 11px;
    margin-top: -70%;
}

.banner-heading {
    text-align: center;
}

.baner-heading-side h2 {
    color: #fff;
}

.baner-text p {
    color: #fff;
    text-align: end;
    opacity: 77%;
    width: 95%;
    margin: 0 0 17px auto;
}

.baner-text a {
    margin: 0 0 0 auto;
}

ul.baner-last li {
    color: #fff;
}

ul.baner-last {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    margin-top: -60px;
}

.banner-heading h1 span {
    font-style: italic;
}

.baner-mainimage img {
    width: 279px;
    object-position: top;
    height: 700px;
    object-fit: cover;
    margin: 0 auto;
}

.baner-heading-side {
    width: 115%;
}

.banner-sec:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid #fff;
    width: 100%;
    height: 7%;
    z-index: -1;
    background: transparent;
    backdrop-filter: blur(4px);
}

.banner-sec.iner {
    height: 510px;
    padding-top: 60px;
    align-content: center;
    background-image: url(../images/baner-iner-back.jpg);
}

.banner-sec.iner:before {
    width: 0;
}

.banner-heading.iner h1 {
    font-size: 120px;
    color: #000;
}


/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

.footer-bottom {
    padding: 20px 0 20px;
    text-align: center;
    border-top: 1px solid #beb6b7;
    margin-top: 50px;
}

.footer-bottom p {
    color: #000;
}

.proces-sec {
    padding: 60px 0 100px;
    position: relative;
}

.footer-links ul li {
    margin-bottom: 13px;
}

.footer-links ul li a {
    color: #7c7c7c;
    font-size: 14px;
}

footer h4 {
    margin-bottom: 22px;
}

.footer-contact ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
    font-size: 14px;
    color: #7c7c7c;
}

.footer-contact ul li a:Last-child {
    align-items: baseline;
}

.footer-contact ul li a i {
    color: #573c1e;
    font-size: 19px;
}

.footer-info p {
    color: #7c7c7c;
    width: 67%;
    margin: 13px 0 25px;
}

.footer-info ul li a {
    width: 38px;
    height: 38px;
    border: 1px solid #b1adae;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
    border-radius: 50%;
    color: #573c1e;
}

.footer-info ul {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-info ul li a:hover {
    background: #573c1e;
    color: #fff;
    border-color: #573c1e;
}

footer {
    background-image: url(../images/section-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding-top: 60px;
}

.footer-info img {
    width: 150px;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */

/*---------------------------------------------------- About Section Start ------------------------------------------------------------- */

.site-headbar {
    display: flex;
    align-items: center;
    gap: 7px;
    width: max-content;
}

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: left;
    transition: 0.5s all;
}

.about-text.iner p {
    width: 100%;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    max-width: 280px;
    margin: 0 auto;
}

.about-main .row {
    width: 77%;
    margin: 0 auto 40px;
}

.about-text {
    text-align: center;
}

.about-text p {
    font-size: 20px;
    line-height: 35px;
    color: #7c7c7c;
    width: 79%;
    margin: 6px auto 22px;
}

.about-text a {
    margin: 0 auto;
}

.about-main .site-headbar {
    margin: 0 auto 40px;
}

.about-sec {
    padding: 100px 0;
    background-image: url(../images/section-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about-image:hover img {
    filter: brightness(0.5);
    transform: scale(1.3);
}

.about-text.iner ul li {
    font-size: 20px;
    line-height: 35px;
    color: #7c7c7c;
    list-style: disc;
    width: max-content;
    margin: 0 auto 11px;
    font-weight: 500;
}

.about-text.iner ul {
    column-count: 2;
}

.about-text.iner h3 {
    margin: 27px 0 22px;
}

ul.educ-aboutiner {
    column-count: unset !important;
}

ul.educ-aboutiner li {
    width: 95% !important;
    text-align: justify;
}

/*---------------------------------------------------- About Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Services Section Start ------------------------------------------------------------- */

.service-head-text p {
    width: 80%;
    text-align: end;
    margin: 0 0 20px auto;
    color: #7c7c7c;
}

.service-head-text a {
    margin: 0 0 0 auto;
}

.serv-head h4 {
    margin-bottom: 20px;
}

.srv-headtop {
    margin-bottom: 40px;
}

.service-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: 0.5s all;
}

.service-image {
    overflow: hidden;
    border-radius: 17px;
}

.service-main {
    position: relative;
}

.service-text {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 1px solid #bfbfbf;
    border-radius: 10px;
    width: 92%;
    backdrop-filter: blur(4px);
    padding: 30px 27px 30px;
    text-align: center;
    background-color: rgb(0 0 0 / 27%);
}

.service-text * {
    color: #fff;
}

.service-text p {
    opacity: 66%;
    margin: 10px auto 24px;
    width: 95%;
}

.service-text a {
    margin: 0 auto;
}

.service-main:hover .service-image img {
    filter: brightness(0.5);
    transform: scale(1.2);
}

.service-sec {
    margin-bottom: 100px;
}

.service-main:hover {
    box-shadow: 0px 10px 114px 0px rgba(0, 0, 0, 0.32);
}

.service-sec.iner {
    margin: 0;
    padding: 100px 0 20px;
}

.service-main.iner {
    margin-bottom: 40px;
}

.service-head-text.iner p {
    margin-bottom: 0;
}

/*---------------------------------------------------- Services Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Process Section Start ------------------------------------------------------------- */

.process-head {
    text-align: center;
    margin-bottom: 30px;
}

.process-head .site-headbar {
    margin: 0 auto 20px;
}

.process-head p {
    width: 60%;
    margin: 10px auto 0;
}

.proces-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #573c1e;
    width: 100%;
    height: 63%;
    z-index: -1;
    background-image: url(../images/proces-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.process-head * {
    color: #fff;
}

.process-head .site-headbar img {
    filter: brightness(11);
}

.proces-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 60px;
    width: 100%;
    border: 0 !important;
    padding: 0 !important;
    margin-bottom: 50px;
}

.proces-tab button {
    padding: 26px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: 'Kormile';
    font-size: 30px;
    gap: 170px;
    border-radius: 50px !important;
    transition: 0.5s all;
    position: relative;
}

.proces-tab button span {
    color: #000;
    opacity: 40%;
}

.proces-tab button.active {
    background-color: #272727 !important;
}

.proces-tab button.active span {
    color: #fff;
    opacity: 1;
}

.procee-image-box img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 13px;
}

.procee-image-box {
    border: 10px solid #f2f2f3;
    border-radius: 12px;
    overflow: hidden;
}

.process-text p {
    color: #7c7c7c;
}

.process-text p {
    margin: 12px 0 17px;
    width: 88%;
}

.process-text {
    margin-bottom: 7px;
}

.proces-tab button:before {
    content: '';
    position: absolute;
    top: 50%;
    background: #cccccc;
    width: 48%;
    right: 0;
    left: 17px;
    margin: 0 auto;
    height: 1px;
}

.proces-tab button.active:before {
    background: #525252;
}


/*---------------------------------------------------- Process Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Why Choose Section Start ------------------------------------------------------------- */

.whychoose-icons {
    width: 75px;
    height: 75px;
    background: #573c1e;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.whychoose-icons img {
    width: max-content;
}

.whychoose-box {
    overflow: hidden;
    padding: 50px 30px 50px;
    border-radius: 20px;
    position: relative;
    z-index: 0;
}

.whychoose-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-image: url(../images/whychose-box-back.png);
    height: 100%;
    z-index: -1;
    filter: brightness(0) saturate(100%) invert(21%) sepia(76%) saturate(387%) hue-rotate(351deg) brightness(93%) contrast(91%);
}

.whychoose-text p {
    margin-top: 14px;
    color: #7c7c7c;
    width: 100%;
}

.whychoose-slider {
    margin-top: 30px;
}

.whychoose-slider .slick-list.draggable {
    padding: 0 180px !important;
}

.whychoose-sec {
    padding: 0 0 80px 0;
    background-image: url(../images/section-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.whychoose-head h2 {
    margin-top: 22px;
}

.whychoose-head-text p {
    width: 80%;
    text-align: end;
    margin: 0 0 10px auto;
    color: #7c7c7c;
}

.slider-progress-bar {
    position: relative;
    width: 35%;
    height: 2px;
    margin: 40px auto 0;
}

.progress-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(194 182 181);
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: #573c1e;
    transition: left 0.3s ease, width 0.3s ease;
}

/*---------------------------------------------------- Why Choose Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Service Detail Section Start ------------------------------------------------------------- */

.service-detail-sec {
    padding: 100px 0 60px;
}

.service-detail-image img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    border-radius: 16px;
}

.service-detail-text p {
    color: #7c7c7c;
    margin-top: 25px;
}

.service-detail-text p:nth-child(2) {
    margin-top: 22px;
}

/*---------------------------------------------------- Service Detail Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Quote Section Start ------------------------------------------------------------- */

section.bookSec {
    position: relative;
    z-index: 12;
    padding: 100px 0 60px;
}

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 .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: 45px;
    -webkit-appearance: none;
    background-color: transparent;
    font-family: 'Poppins';
}

section.bookSec .contact-input textarea {
    height: 180px;
    resize: none;
    align-content: end;
    border-radius: 20px;
    padding-bottom: 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: #909091 !important;
}

.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: 60%;
    margin: 0px auto 40px;
}

.bookSec .heading p {
    opacity: 60%;
    width: 90%;
    margin: 0 auto;
}

.heading.text-center h2 {
    margin-bottom: 10px;
}

.sitebtn-quote button {
    text-align: center;
    margin: 0 auto;
}

.slick-slide .service-main {
    width: 100%;
}

.slick-current .service-main {
    width: 100% !important;
}

.slick-slide {
    margin: 50px 20px;
}

.service-sec .slick-list.draggable {
    padding: 0 !important;
}

/*---------------------------------------------------- Quote Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Contact Section Start ------------------------------------------------------------- */

.contact-pag-form form {
    position: relative;
}

.contact-pag-form .form-group {
    position: relative;
}

.contact-pag-form .form-group::after {
    content: "";
    height: 53px;
    width: 10px;
    position: absolute;
    left: 50px;
    top: 5px;
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-pag-form .form-group1::after {
    content: "";
    height: 53px;
    width: 10px;
    position: absolute;
    right: 40px;
    top: 5px;
    left: unset;
    transform: rotate(180deg);
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-pag-form form input.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 75px;
    border: 1px solid #bdbdbd;
    line-height: 0;
    box-shadow: none;
    color: black;
    font-weight: 400;
    background-color: transparent;
    margin-top: 26px;
    display: flex;
    border-radius: 55px;
}

.contact-pag-form form select.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 25px;
    border: 1px solid #bdbdbd;
    box-shadow: none;
    color: black;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    display: flex;
    border-radius: 5px;
}

.contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 8px;
    height: 47px;
    background-repeat: no-repeat;
    left: 40px;
    top: 5px;
}

.contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 50px;
    height: 50px;
}

.contact-pag-form form input.form-control::placeholder {
    color: #909091;
}

.contact-main-sec .them-btn-1:hover {
    background-color: #00006d;
    transition: 0.3s all;
}

.contact-pag-form form textarea.form-control {
    font-size: 15px;
    padding-left: 25px;
    padding-top: 20px;
    border: 1px solid #c6c6c6;
    letter-spacing: 0;
    box-shadow: none;
    resize: unset;
    background-color: transparent;
    margin-top: 20px;
    color: #000000;
    border-radius: inherit;
    border-radius: 10px;
    height: 150px;
    scroll-behavior: unset;
    position: relative;
}

.contact-pag-form .detailss {
    position: relative;
}

.contact-pag-form .detailss i {
    position: absolute;
    top: 20px;
    color: #573c1e;
    left: 14px;
    font-size: 20px;
}

.contact-pag-form .email {
    padding: 0;
}

.contact-pag-form h4 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}

.contact-pag-form form textarea.form-control::placeholder {
    color: #909091;
}

.contact-pag-form ::-webkit-input-placeholder {
    color: #909091;
}

.contact-pag-form ::-moz-placeholder {
    color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-ms-input-placeholder {
    color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-moz-placeholder {
    color: rgba(18, 28, 42, 0.55);
}

.cicle-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    color: #573c1e;
    background: #fff;
    border: unset;
}

.cicle-icon img {
    margin: 0 auto;
}

.contact-info {
    background: white;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px;
    gap: 10px;
    border-radius: 8px;
    background-color: #573c1e;
}

.contact-main-sec h4 {
    font-size: 45px;
    color: #000000;
    font-weight: 400;
    line-height: 42px;
}

.contact-main-sec p span {
    display: block;
}

.contact-main-sec h2 {
    margin: 0;
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    line-height: 33px;
    letter-spacing: 2px;
}


.contact_text p a,
.contact_text p {
    font-size: 14px;
    color: #fff;
    transition: 0.5s ease-in-out;
}

.mailt {
    padding-left: 30px;
}

.contact_text a:hover {
    color: #8b8b8b;
}

.contact_text p a.email-text:hover {
    color: #8b8b8b;
}

.contact-us {
    padding: 6% 0;
}

.contact-head {
    text-align: center;
}

.contact-head h2 {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}

.lg-btn {
    width: 100%;
}

.cp {
    font-size: 17px;
    line-height: 27px;
}

.contact_heading {
    margin-bottom: 30px;
}

.contact_heading h2 {
    font-size: 45px;
    color: #000000;
    font-weight: bolder;
}

.contact-side-bar {
    padding-top: 0;
    margin-left: 20px;
}

.contact-main-sec {
    padding: 100px 0;
}

.contact-pag-form .form-group i {
    position: absolute;
    top: 20px;
    color: #573c1e;
    left: 20px;
    font-size: 20px;
}

.contact-pag-form .form-group1 i {
    right: 13px;
    left: unset;
    color: #7f7f7f;
    pointer-events: none;
}

.contact-pag-form {
    margin-top: 0;
}

.contact-pag-form button {
    margin-top: 30px;
}

section.contact-main-sec button span {
    width: 50px;
    height: 58px;
    border-radius: 0 5px 5px 0;
}

.cicle-icon {
    margin: 0 20px 0 0;
}

.contact-side-bar h4 {
    padding: 0 0 30px 0;
}

/*---------------------------------------------------- Contact Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Pricing Section Start ------------------------------------------------------------- */

.pricing {
    padding: 100px 0px;
}

.pricing-txt-pg {
    text-align: center;
    margin-bottom: 35px;
}

.pricing-txt-pg h3 {
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    color: #505146;
    margin-bottom: 5px;
}

.pricing-txt-pg p {
    color: #7c7c7c;
    width: 53%;
    margin: 20px auto 0;
}

.pricing-bx-main {
    padding: 40px 30px;
    background: #fff;
    border-radius: 13px;
}

.pricing-bx-main h4 {
    margin-bottom: 20px;
}

.pricing-bx-main h3 {
    font-size: 50px;
    color: #1c1c1c;
    margin-bottom: 10px;
    display: flex;
    align-items: end;
}

.pricing-bx-main p {
    color: #151515;
}

.pricing-bx-main p span {
    display: block;
}

.pricing-bx-main ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 11px;
}

.pricing-bx-main ul li p {
    margin: 0;
    font-size: 14px;
}

.pricing-bx-main ul {
    margin-bottom: 30px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #00000045;
}

.pricing-bx-main a.theme_btn {
    width: 100%;
    display: block;
}

.pricing-bx-main a.theme_btn .btn-inner {
    width: 100%;
    display: block;
    text-align: center;
}

.pricing-bx-main:hover {
    background-color: #573c1e;
    transition: 1s;
    border-radius: 12px;
}

.pricing-bx-main:hover h3 {
    color: #fff;
}

.pricing-bx-main:hover p {
    color: #fff;
}

.pricing-bx-main:hover h4 {
    color: #fff;
}

.pricing-txt-pg h4.site-headbar {
    margin: 0 auto 20px;
}

.pricing-bx-main h3 span {
    color: #7c7c7c;
    font-size: 14px;
    font-family: 'Poppins';
    position: relative;
    bottom: 10px;
}

.pricing-bx-main a.theme_btn {
    width: max-content;
}

.pricing-bx-main:hover h4 {
    color: #fff;
}

.pricing-bx-main:hover h3 span {
    color: #fff;
}

.pricing-bx-main:hover ul li img {
    filter: brightness(5);
}

.pricing-bx-main:hover a {
    border-color: #fff;
    background: transparent;
}

.pricing-bx-main ul li img {
    filter: brightness(0) saturate(100%) invert(21%) sepia(76%) saturate(387%) hue-rotate(351deg) brightness(93%) contrast(91%);
}

.pricing-bx-main:hover .bnt-text {
    background-color: #fff;
    color: #000;
}

.site-headbar img {
    filter: brightness(0) saturate(100%) invert(21%) sepia(76%) saturate(387%) hue-rotate(351deg) brightness(93%) contrast(91%);
}

.header-btns a {
    margin: 0 0 0 auto;
}

/*---------------------------------------------------- Pricing Section End ------------------------------------------------------------- */