@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

:root {
    --theme1: #6488ea;
}

a {
    text-decoration: none;
    color: #28b16d;
    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: 400;
    line-height: 25px;
    color: #2e2e2e;
    font-size: 14px;
}


/***** Font Files *****/

@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
}


/***** 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: 15px 25px;
    border: 1px solid var(--theme1);
    color: #ffffff;
    z-index: 1;
    background: var(--theme1);
    position: relative;
    font-size: 15px;
    transition: all 250ms;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 50px;
    border-radius: 30px;
    text-transform: uppercase;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #fff;
    z-index: -1;
    transition: all 250ms;
}

.theme_btn:hover {
    color: var(--theme1);
}

.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: "Cormorant", serif;
    font-size: 76px;
    line-height: 1.1;
    color: #000;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: "Cormorant", serif;
    font-size: 83px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 20px;
}

h3 {
    font-family: "Cormorant", serif;
    font-size: 31px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 20px;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

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: 24px 0;
    background: #fff;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 40px;
    padding-right: 30px;
}

.menuSec ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
}

.menuSec li:hover ul {
    opacity: 1;
    visibility: visible;
}


.menuSec ul li a {
    position: relative;
    text-decoration: none;
    color: #646464;
    font-size: 13px;
    font-weight: 500;
    transition: 0.5s;
    text-transform: uppercase;
    padding-bottom: 5px;
    transition: 0.5s;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    color: var(--theme1);
    border-bottom: 1px solid var(--theme1);
}

.menuSec li>ul {
    position: absolute;
    z-index: 0;
    background-color: #fff;
    left: 0;
    width: 240px;
    text-align: left;
    opacity: 0;
    transition: 0.2s ease-in-out;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
    box-shadow: 0 0 10px #ccc;
    column-count: 2;
    display: flex;
    padding: 10px 0;
    visibility: hidden;
    top: 60px;
}

.menuSec li:hover ul {
    transition: 0.2s ease-in-out;
    top: 60px;
    z-index: 999;
}

.menuSec li>ul:after {
    position: absolute;
    content: "";
    background: #606060;
    width: 20px;
    height: 20px;
    top: -20px;
    left: 10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 999;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    /* color: #fff !important; */
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #848484;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
    width: 100%;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.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  */

/* +++++++++++++++++++++++++ HOME +++++++++++++++++++++++++ */

.topSec {
    background-color: transparent;
    border-bottom: 1px solid #e9e9e9;
}

.topSec ul {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: right;
    margin: 0;
}

.topSec ul li a {
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #fff;
    border-left: 1px solid #e9e9e9;
    padding-left: 50px;
    gap: 10px;
    color: #000;
    padding-top: 10px;
    padding-bottom: 10px;
}


.topSec ul li h4 {
    font-size: 13px;
    text-transform: uppercase;
    margin: 0;
    color: #6488ea;
}

ul.hdr-top-right-list {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}


ul.hdr-top-right-list h6 {
    margin: 0;
}

ul.hdr-top-right-list li a {
    background: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    border: 1px solid #333333;
    transition: 0.3s ease-in-out;
    border-radius: 50%;
    padding: 0;
    font-size: 18px;
}

ul.hdr-top-right-list li a:hover {
    background: var(--theme1);
    border-color: var(--theme1) !important;
    transition: 0.3s ease-in-out;
    color: #fff;
}

.logo a img {
    position: absolute;
    top: 0;
    z-index: 99;
    height: 160px;
}

.banner_text {
    position: relative;
}

.banner_text:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 89vw;
    height: 120%;
    right: -40px;
    top: -10%;
    z-index: -1;
}

.banner_text {
    z-index: 98;
    position: relative;
}


img.img-fluid {
    width: 100%;
}

h1 span {
    text-transform: uppercase;
    font-size: 106px;
}

.phon-plus {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.phon-plus>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phon-plus>div>a h5 {
    font-size: 24px;
    font-family: "Cormorant", serif;
    margin: 0;
}

.phon-plus>div>a h6 {
    margin: 0;
    font-size: 26px;
    color: var(--theme1);
}

.phon-plus>div span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 3px solid var(--theme1);
}

section.about {
    padding: 80px 0;
    position: relative;
}

section.about:before {
    position: absolute;
    content: '';
    background-image: url(../images/abt-bg.png);
    background-size: cover;
    width: 500px;
    height: 300px;
    right: 0;
    top: 0;
    background-position: bottom;
}

section.about .row {
    align-items: center;
}

.abt-img img {
    min-width: 460px;
    max-width: 460px;
    margin: 0 auto;
    display: block;
    border: 8px solid #fff;
}

.abt-img {
    position: relative;
    padding-top: 60px;
}

.abt-img:before {
    position: absolute;
    content: '';
    background: #6488ea;
    width: 100%;
    height: 33%;
    z-index: -1;
    top: 0;
}

.abt-text {
    width: 90%;
    margin: 0 0 0 auto;
}

.abt-text p {
    color: #2e2e2e;
    line-height: 20px;
    font-weight: 500;
}

section.Services {
    padding: 80px 0;
    background: #f5f5f5;
}

.top-heading {
    margin-bottom: 50px;
}

.top-heading h2 {
    text-align: center;
}

.ser-box {
    width: 95%;
    margin: 0 auto;
}

.ser-box img {
    width: 100%;
    height: 439px;
    object-fit: cover;
}

.ser-text {
    text-align: center;
    padding: 20px;
    width: 80%;
    margin: 0 auto;
    background: #fff;
    margin-top: -100px;
    z-index: 99;
    position: relative;
    box-shadow: 0 0 10px #ccc;
}

.ser-text a {
    margin: 0 auto;
    margin-bottom: -47px;
}

.ser-text p {
    font-size: 13px;
}

.ser-slider .slick-slide {
    margin-bottom: 40px;
    opacity: 2;
}

.ser-slider .slick-prev.slick-disabled:before,
.ser-slider .slick-next.slick-disabled:before {
    opacity: 1;
}

.ser-slider .slick-prev:before,
.ser-slider .slick-next:before {
    position: absolute;
    content: '';
    background-image: url(../images/arr.png);
    width: 32px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.ser-slider .slick-next:before {
    transform: rotate(180deg);
}

.ser-slider .slick-prev,
.ser-slider .slick-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.ser-slider .slick-prev {
    left: -40px;
}

.ser-slider .slick-next {
    right: -30px;
}

.ser-slider .slick-prev:hover:before,
.ser-slider .slick-next:hover:before {
    filter: brightness(0) saturate(100%) invert(50%) sepia(81%) saturate(1385%) hue-rotate(202deg) brightness(94%) contrast(94%);
}

.ser-slider button.slick-prev:hover,
.ser-slider button.slick-next:hover {
    border-color: #a9bcf3;
}

section.gallery {
    padding: 110px 0 80px 0;
}

section.gallery img {
    width: 100%;
    object-fit: cover;
}

img.img-g1 {
    max-width: 418px;
    margin: 0 0 0 auto;
    display: block;
    height: 419px;
    margin-bottom: 20px;
}

img.img-g3 {
    height: 350px;
}

img.img-g2 {
    height: 162px;
}

img.img-g4 {
    margin-top: 260px;
}

section.gallery img.img-g5 {
    width: 170px;
    margin-top: 200px;
}

img.img-g6 {
    margin-top: 20px;
    height: 410px;
}

h2.gall-heading {
    position: relative;
    font-size: 69px;
    text-align: right;
    width: fit-content;
    margin: 0 0 -150px auto;
    padding: 20px 160px 20px 70px;
    color: #fff;
}

h2.gall-heading:before {
    position: absolute;
    content: '';
    background: var(--theme1);
    width: 60vw;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

section.contact_us {
    position: relative;
    padding-bottom: 80px;
}

section.contact_us:before {
    position: absolute;
    content: '';
    background-image: url(../images/map.png);
    width: 100%;
    height: 80%;
    bottom: 0;
    background-color: var(--theme1);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact-text h2 {
    font-size: 100px;
    margin-bottom: 90px;
}

.contact-text h3 {
    font-size: 51px;
    margin-bottom: 30px;
    color: #fff;
}

.contact-text ul li a {
    display: flex;
    background: #fff;
    align-items: center;
    gap: 20px;
    padding: 24px 20px;
    margin-bottom: 20px;
    border-left: 4px solid #405eb0;
}

.contact-text ul li a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact-text h4 {
    font-size: 19px;
    color: #000;
    margin-bottom: 0;
}

.contact-text ul li a>div {
    color: #1c1c1c;
    font-size: 16px;
}

.contact-text {
    width: 90%;
}

form.cnt-frm {
    padding: 40px;
    background: #fff;
    box-shadow: 0 0 10px #ccc;
    width: 96%;
    margin: 0 0 0 auto;
}

.inp-wrap input,
.inp-wrap select,
.inp-wrap textarea {
    font-family: "Cormorant", serif;
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 10px;
    color: #000;
    font-size: 19px;
    padding-left: 30px;
    border-left: 2px solid var(--theme1);
    font-weight: 500;
}

.inp-wrap {
    position: relative;
}

button.theme_btn {
    margin: 0 auto;
}

.inp-wrap textarea {
    height: 270px;
}

.inp-wrap i {
    font-size: 17px;
    position: absolute;
    right: 10px;
    top: 16px;
    color: var(--theme1);
    pointer-events: none;
}


section.testimonials .headtext {
    text-align: center;
    width: 74%;
    margin: 0px auto;
}

section.testimonials .headtext h2 span {
    color: #003a37;
}

section.testimonials .headtext p {
    color: #003a37;
    font-weight: 500;
}

section.testimonials .item {
    /* opacity: 1; */
}

section.testimonials .item .box {
    display: flex;
    box-shadow: 6px 8px 20px 0px #44444417;
    box-sizing: border-box;
    border-radius: 0px;
    padding: 40px 30px 30px 10px;
    position: relative;
    border-radius: 0;
    background: var(--theme3);
    border: 0;
}

section.testimonials .item .box .author {
    width: 66%;
    padding: 0px 10px;
    position: relative;
}

section.testimonials .item .box .author-text {
    position: relative;
    padding-top: 18px;
    padding-bottom: 20px;
    transition: 2s;
    margin-bottom: 10px;
}

section.testimonials .item .box .author-text h4 {
    color: #000;
    font-size: 19px;
    text-transform: uppercase;
    line-height: 18px;
    margin-bottom: 0px;
    transition: 2s;
    font-weight: 500;
    font-family: 'Montserrat';
}

section.testimonials .item .box .author-text span {
    color: #000;
    font-size: 16px;
    line-height: 28px;
    transition: 2s;
}

section.testimonials .item .box p {
    font-style: italic;
    line-height: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    transition: 2s;
    display: inline;
    color: #9c9c9c;
    font-style: unset;
}

section.testimonials .item .box .des {
    padding-left: 10px;
    padding-bottom: 30px;
}

section.testimonials .item .box p:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 14px;
    left: -23px;
    top: 10px;
    background-image: url(../images/topQuote.png);
    background-size: 100% 100%;
    transition: 2s;
}

section.testimonials .item .box p:after {
    position: absolute;
    content: "";
    width: 15px;
    height: 14px;
    right: -20px;
    bottom: 10px;
    background-image: url(../images/btm-quote.png);
    background-size: 100% 100%;
    transition: 2s;
}

section.testimonials .item .box:hover p::before {
    filter: brightness(0) invert(1);
}

section.testimonials .item .box:before {
    position: absolute;
    content: "";
    width: 12%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--theme1);
    border-radius: 0px;
    transition: 1s;
    border-radius: 0;
}

section.testimonials .item .box:hover p {
    color: #fff;
}

section.testimonials .item .box .author img {
    transition: 2s;
}

section.testimonials .item .box:hover .author-text {
    color: #fff;
}

section.testimonials .item .box:hover .author-text span {
    color: #fff;
}

section.testimonials .item .box:hover .author-text h4 {
    color: #fff;
}

section.testimonials .item .box:hover:before {
    width: 100%;
}

section.testimonials .slick-list {
    margin-right: 69px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-left: 40px;
}

section.testimonials {
    padding-bottom: 100px;
    position: relative;
    /* overflow: hidden !important; */
    /* padding-right: 20px; */
    padding-top: 100px;
    background: var(--theme2);
    width: 100%;
    height: 100%;
    background-attachment: fixed;
}

.clientsslid .slick-active {
    opacity: 1.5;
}

section.testimonials .heading-services h2 {
    color: #000;
}

section.testimonials .heading-services p {
    color: #000;
}

section.testimonials .item .box:hover p:after {
    filter: brightness(0) invert(1);
}

.heading-services {
    text-align: center;
    margin-bottom: 40px;
}


.testimonials_sldier .slick-slide {
    margin: 0px 10px;
}

.testimonials_sldier .slick-active {
    opacity: 1;
}

/* footer start */

footer.footer-sec {
    position: relative;
    padding: 60px 0 0;
    width: 100%;
    background: #0a0e19;
}

ul.footer-link {
    column-count: 2;
}

.footer-text.user-links {
    width: 90%;
    margin: 0 0 0 auto;
}

.footer-text.chg p {
    text-align: left;
    margin-top: 20px;
    color: #ffffffc7;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 26px;
    font-size: 14px;
}

ul.footer-social-list li i:hover {
    background: #004aad;
    transition: 1s ease-in-out;
    color: #fff;
}

ul.footer-link li a {
    font-size: 16px;
    color: #ffffffc7;
    line-height: 40px;
    font-weight: 300;
    text-transform: capitalize;
}

ul.footer-link-list li i {
    font-size: 22px;
    color: var(--theme1);
}

ul.footer-link-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding-right: 15px;
    margin-bottom: 17px;
}

ul.footer-link-list li p {
    font-size: 15px;
    color: #ffffffc7;
    font-weight: 500;
    line-height: 25px;
    margin: 0;
}

.footer-form {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    position: relative;
}

.footer-form input {
    width: 100%;
    height: 60px;
    padding: 15px;
    border: none;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
}

.footer-text.chg {
    padding: 0;
    margin: 0;
    padding-top: 0;
}

section.bottom-nav {
    padding: 15px 0;
    text-transform: capitalize;
    margin-top: 30px;
    border-top: 1px solid #cccccc52;
}

section.bottom-nav p {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    margin: 0;
    font-weight: 300;
}

.footer-text {
    position: relative;
}

ul.footer-link li {
    border-bottom: 1px solid transparent;
    width: 75%;
    transition: 1s ease-in-out;
}


ul.footer-link-list li {
    border-bottom: 1px solid #ffffff2b;
    padding-bottom: 20px;
    transition: 1s ease-in-out;
    width: fit-content;
}

.footer-text ul.hdr-top-right-list li a:hover {
    transition: 0.3s ease-in-out;
    background-color: #1eb8d1;
    border: 1px solid #1eb8d1;
}


ul.hdr-top-right-list li a:hover i {
    transition: 0.3s ease-in-out;
    color: #fff;
}

ul.hdr-top-right-list li a i {
    font-size: 20px;
}


.footer-text h5 {
    color: #fff;
    position: relative;
    z-index: 1;
    margin: 0 0 30px 0;
    font-size: 30px;
    text-transform: capitalize;
}

.footr-btn button {
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 15px 25px;
    border-radius: 10px;
    background: var(--theme1);
    gap: 7px;
    font-weight: 400;
    color: #fff;
    width: fit-content;
    border: 0;
    font-size: 18px;
}

.footer-text p {
    color: #ffffffc7;
    font-size: 13px;
}

footer.footer-sec .main-silder-socail-link ul:before {
    display: none;
}

.footr-btn button:hover {
    background: #000;
}

ul.footer-link-list li:last-child {
    border: 0;
}

footer.footer-sec ul.hdr-top-right-list {
    justify-content: start;
}

footer.footer-sec ul.hdr-top-right-list li a {
    color: #fff;
    border-color: #fff;
}

/* footer end */
/* +++++++++++++++++++++++++ HOME end +++++++++++++++++++++++++  */


/* Inner Pages */
section.main_slider.inner-banner .banner_text {
    width: fit-content;
}

section.main_slider.inner-banner img.img-fluid {
    height: 500px;
    object-fit: cover;
    object-position: top;
}

section.about.in-abt {
    padding-bottom: 0;
}

section.Services.inner-services {
    padding: 80px 0 30px 0;
}

section.Services.inner-services .ser-box {
    margin-bottom: 70px;
}

section.service-deail {
    padding: 80px 0;
}

.ser-det-img img {
    width: 95%;
}

section.contact_us.inner-contact {
    margin-top: 80px;
}

/* Quote */

section.booking-wrap {
    padding: 100px 0;
}

.booking-in input {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #80808080;
    background: transparent;
    height: 55px;
    padding: 15px;
    color: #ababab;
    border-radius: 0;
    font-size: 13px;
    text-transform: unset;
}

.booking-in input::placeholder {
    color: #ababab;
    font-weight: 500;
}

.booking-in textarea::placeholder {
    color: #ababab;
    font-weight: 500;
}

.booking-in textarea {
    width: 100%;
    margin-bottom: 1%;
    border: 1px solid #80808080;
    padding: 15px 10px;
    height: 150px;
    background: transparent;
    border-radius: 0;
    font-size: 13px;
}

.booking-in input::placeholder,
.booking-in textarea::placeholder {
    text-transform: uppercase;
}

.booking-btn {
    text-align: center;
}

section.booking-wrap button.theme-btn {
    border: unset;
}

.apointment-head {
    text-align: center;
    margin-bottom: 3%;
}
.booking-in {
  position: relative;
  border-radius: 10px;
}

.booking-in i {
  position: absolute;
  right: 1px;
  width: 15%;
  height: 53px;
  display: inline-flex;
  color: white;
  align-items: center;
  justify-content: center;
  background: var(--theme1);
  font-size: 26px;
  top: 1px;
  pointer-events: none;
  border-radius: 0;
}

.booking-in select {
  width: 100%;
  height: 55px;
  border: 1px solid #80808080;
  padding-left: 15px;
  color: #ababab;
  border-radius: 0;
  font-size: 13px;
  text-transform: uppercase;
}

.booking-in .header-btn {
  margin: 0 auto;
  display: block;
  width: 20%;
}
/* end */
/* +++++++++++++++++++++++++  Inner Pages end +++++++++++++++++++++++++ */