@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: #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: #7c7c7c;
    font-size: 14px;
}


/***** Font Files *****/

@font-face {
    font-family: 'SKCuriosity-Regular';
    src: url(../fonts/SKCuriosity-Regular.ttf);
}

@font-face {
    font-family: 'SKCuriosity-Medium';
    src: url(../fonts/SKCuriosity-Medium.ttf);
}

@font-face {
    font-family: 'SKCuriosity-Bold';
    src: url(../fonts/SKCuriosity-Bold.ttf);
}


/***** 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 {
    border: 1px solid #1f7a7a;
    color: #ffffff;
    z-index: 1;
    background: #1f7a7a;
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    width: fit-content;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 0;
    border-radius: 30px;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #ffffff;
    z-index: -1;
    transition: all 250ms;
    border-radius: 370px;
}

.theme_btn:hover {
    color: #1f7a7a;
}

.theme_btn:hover::before {
    width: 100%;
}

.theme_btn span {
    background: #fff;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    box-shadow: 0 0 10px #ccc;
    border-radius: 50px;
    margin-right: 4px;
}

.theme_btn:hover span {
    background: #1f7a7a;
}

.theme_btn:hover span img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7451%) hue-rotate(108deg) brightness(111%) contrast(103%);
}

.theme_btn img {
    width: auto;
    transition: 0.5s;
}

.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: 'SKCuriosity-Bold';
    font-size: 90px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0 0 17px;
    text-transform: uppercase;
}

h2 {
    font-family: 'SKCuriosity-Bold';
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h3 {
    font-family: 'SKCuriosity-Bold';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 20px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', 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: 20px 0 10px;
    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: center;
    gap: 40px;
}

.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: #000;
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
}

.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: var(--primary-color);
}

.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 */



.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;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ HOME +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
section.banner {
    padding: 80px 0;
}

section.banner .container-fluid, header .container-fluid {
    padding: 0 5%;
}

.h1-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.h1-heading img {
    height: 100px;
    width: 300px;
    border-radius: 50px;
    background: #000;
}

.h1-heading span {
    font-family: 'SKCuriosity-Bold';
    font-size: 89px;
    line-height: 1;
    color: #000;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

img.img-ban1 {
    height: 800px;
    object-fit: cover;
    width: 90%;
    clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
    object-position: left;
    border-radius: 20px;
}

.ban-img {
    position: relative;
}

.ban-img-text {
    position: absolute;
    bottom: 50px;
    left: 3%;
    width: 68%;
}

.ban-img-text:before,
.ban-img-text:after {
    position: absolute;
    content: '';
    border-bottom: 1px solid #ccc;
    width: 75%;
    bottom: 0;
    left: 0;
}

.ban-img-text:after {
    border-color: #fff;
    width: 12%;
    border-width: 2px;
}

section.banner .row {
    align-items: center;
}

.ban-img-text h3 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ban-img-text p {
    color: #ffffffba;
}

.ban-img:before {
    position: absolute;
    content: '';
    background: linear-gradient(45deg, black, transparent);
    width: 90%;
    height: 800px;
    bottom: 0;
    left: 1px;
    border-radius: 0 0 0 20px;
    clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
}

.scroll-down {
    width: fit-content;
    position: absolute;
    text-align: center;
    right: 80px;
    bottom: 0;
    color: #000;
}

.scroll-down span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1f7a7a;
    border-radius: 50%;
    margin: 0 auto;
}

.scroll-down span img {
    transform: rotate(90deg);
}

section.about {
    padding-bottom: 80px;
}

.top-head h2 {
    margin: 0;
    text-transform: uppercase;
}

.top-head {
    margin-bottom: 40px;
}

.top-head h5 {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'SKCuriosity-Bold';
}

.abt-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0 30px;
    clip-path: polygon(10% 0, 100% 0, 100% 75%, 90% 100%, 0 100%, 0 25%);
}

section.services {
    padding: 80px 0 100px;
    position: relative;
}

section.services:before {
    position: absolute;
    content: '';
    background-image: url(../images/ser-bg.jpg);
    background-size: cover;
    width: 100%;
    height: 60%;
    z-index: -1;
    top: 0;
}

section.services .top-head h2,
section.services .top-head h5,
section.services .top-head p {
    color: #fff;
}

img.ser-img1 {
    height: 470px;
    object-fit: cover;
    border-radius: 0 30px 0 30px;
}

.ser-text {
    position: absolute;
    bottom: 20px;
    padding: 20px;
    width: 90%;
    left: 5%;
    border-radius: 13px;
    clip-path: polygon(0% 0, 100% 0, 100% 45%, 82% 100%, 0 100%, 0 0%);
    height: 80px;
    transition: 0.5s;
}

.ser-box {
    position: relative;
    clip-path: polygon(22% 0, 100% 0, 100% 75%, 82% 100%, 0 100%, 0 25%);
}

.ser-box:before {
    position: absolute;
    content: '';
    background: linear-gradient(45deg, #0000004f, transparent);
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    border-radius: 0 30px 0 30px;
}

.ser-text h3 {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}

.ser-text p {
    color: #fff;
    height: 0;
    opacity: 0;
    margin: 0;
}

.ser-text a {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid;
    display: inline-block;
    opacity: 0;
    height: 0;
    border: 0;
}

.ser-box:hover .ser-text p {
    height: auto;
    opacity: 1;
    margin-bottom: 11px;
}

.ser-box:hover .ser-text a {
    opacity: 1;
    height: auto;
    border-bottom: 1px solid;
}

.ser-box:hover .ser-text {
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.slick-slide {
    opacity: 1;
}
.ser-slider .slick-prev:before, .ser-slider .slick-next:before {
    position: absolute;
    content: "\f104";
    font-family: "FontAwesome";
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 1;
    border: 1px solid #fff;
    background: #1f7a7a;
}

.ser-slider .slick-prev.slick-disabled:before, .ser-slider .slick-next.slick-disabled:before {
    opacity: 1;
}

.ser-slider .slick-next:before {
    content: '\f105';
}

.ser-slider .slick-next {right: 5%;}

.ser-slider .slick-prev, .ser-slider .slick-next {
    top: -20%;
    z-index: 9;
}
.ser-slider .slick-prev {
    left: 87%;
}

.ser-slider .slick-prev:hover:before, .ser-slider .slick-prev:focus:before, .ser-slider .slick-next:hover:before, .ser-slider .slick-next:focus:before {
    background: #fff;
    border-color: #fff;
    color: #1f7a7a;
}

.ser-slider .slick-prev:after {
    position: absolute;
    content: '';
    border: 1px solid #ffffff85;
    height: 60px;
    top: 6px;
    left: -6px;
    width: 148px;
    border-radius: 50px;
    z-index: -1;
}
section.why-chs {
    padding-bottom: 80px;
}

.chs-img img {
    height: 620px;
    object-fit: cover;
    object-position: left;
    clip-path: polygon(22% 0, 100% 0, 100% 75%, 82% 100%, 0 100%, 0 25%);
    border-radius: 30px;
}

.accordion-button {
    font-size: 20px;
    text-transform: uppercase;
    color: #000000;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: unset;
    color: #000000;
}

.accordion-item {
    margin-bottom: 20px;
    border: 1px solid #1f7a7a !important;
    border-radius: 30px !important;
}

.accordion-button {
    background: transparent;
}

.accordion-button::before {
    position: absolute;
    content: '';
    background: #1f7a7a;
    width: 45px;
    height: 45px;
    right: 8px;
    top: 5px;
    border-radius: 61px;
}

.accordion-button::after {
    z-index: 9;
    background-image: url(../images/arr2.png);
    transform: rotate(
270deg);
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/arr2.png);
    transform: rotate(90deg);
}
section.process .container:before {
    position: absolute;
    content: '';
    background-image: url(../images/line.png);
    width: 50%;
    height: 40%;
    background-repeat: no-repeat;
    background-size: contain;
    left: 29%;
    top: 36%;
}

section.process .container {
    position: relative;
}
.procc-wrap {background: #fff;padding: 17px;clip-path: polygon(25% 0, 100% 0, 100% 75%, 81% 100%, 0 100%, 0 34%);border-radius: 20px;}

.procc-box {
    border: 1px solid #ccc;
    padding: 1px;
    background: #ccc;
    clip-path: polygon(25% 0, 100% 0, 100% 75%, 81% 100%, 0 100%, 0 34%);
    border-radius: 20px;
    width: 90%;
}
.procc-wrap h2 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 16px 0 10px;
}

.procc-wrap p {
    margin: 0;
    width: 90%;
}

.procc-wrap img {
    border-radius: 20px;
    clip-path: polygon(24% 0, 100% 0, 100% 61%, 80% 100%, 0 100%, 0 52%);
        width: 100%;
}

.procc-box.pr-2 {
    margin-top: 100px;
}

.procc-box.pr-3 {
    margin-top: 200px;
}
span.pr-num {
    font-size: 70px;
    color: #000;
    font-family: 'SKCuriosity-Bold';
    width: fit-content;
    margin: -70px 30px 0px auto;
    display: block;
    line-height: 1;
}
section.testimonial {
    padding: 90px 0 160px;
}
.testi-slider .slick-prev::after {
    position: absolute;
    content: '';
    border: 1px solid #1f7a7a9c;
    height: 60px;
    top: 5px;
    left: -6px;
    width: 262px;
    border-radius: 50px;
    z-index: -3;
    pointer-events: none;
}
.top-head.text-center {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
}
img.quote {
    width: auto;
    position: absolute;
    right: 30px;
    top: 2px;
}
.testi-box {
    background: #fff;
    padding: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 25%);
    border-radius: 20px;
}

.test-wrap {
    border: 1px solid #ccc;
    background: #ccc;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 25%);
    border-radius: 20px;
}

.testiimg img {
    width: 100%;
}


.testi-text h3 {
    font-size: 22px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}

.testi-text h3 span {
    font-size: 15px;
    color: #ccc;
    display: block;
    text-transform: capitalize;
}

.testi-text {
    position: relative;
    padding-right: 10px;
}

.testi-box .row {
    align-items: center;
}
.testi-slider .slick-prev:before, .testi-slider .slick-next:before {
    position: absolute;
    content: "\f104";
    background: #1f7a7a;
    font-family: "FontAwesome";
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 1;
    border: 1px solid #1f7a7a;
}

.testi-slider .slick-prev.slick-disabled:before, .testi-slider .slick-next.slick-disabled:before {
    opacity: 1;
}

.testi-slider .slick-next:before {
    content: '\f105';
}

.testi-slider .slick-next {right: 43%;}

.testi-slider .slick-prev, .testi-slider .slick-next {
    top: unset;
    bottom: -60px;
    z-index: 9;
}
.testi-slider .slick-prev {
    left: 40%;
}

.testi-slider .slick-prev:hover:before, .testi-slider .slick-prev:focus:before, .testi-slider .slick-next:hover:before, .testi-slider .slick-next:focus:before {
    background: #fff;
    color: #1f7a7a;
    border-color: #1f7a7a;
}
footer {
    position: relative;
    background: #252525;
}


.footer-logo img {
    width: 250px;
}

footer h4 {
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'SKCuriosity-Bold';
}

footer ul li a {
    color: #ffffffbd;
    font-size: 15px;
    line-height: 40px;
}

p.copy-write {
    margin: 0;
    text-align: center;
    color: #fff;
    padding: 14px 0;
}

.footer-wrap {
    padding: 80px 0 50px;
    border: 1px solid #ffffff66;
    border-left: 0;
    border-radius: 0;
}
.quick-link {
    border-left: 1px solid #cccccc6b;
    padding-left: 20%;
    margin-left: 5%;
}

.follow-us h4 {
    margin: 0;
}


.quick-link .d-flex {
    gap: 30px;
}

footer ul li {
    line-height: 32px;
}

.contact-infoe {
    width: 100%;
    border-left: 1px solid #cccccc6b;
    padding-left: 30%;
}

footer ul li a:hover {
    color: #1f7a7a;
}
.follow-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.follow-us ul {
    display: flex;
    gap: 10px;
    margin: 0;
}

.follow-us ul li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cccccc6b;
    border-radius: 50%;
    color: #cccccc6b;
    font-size: 20px;
    transition: 0.5s;
}

.follow-us ul li a:hover {
    background: #1f7a7a;
    color: #fff;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ HOME END +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Inner Pages  +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
section.banner.inn-banner {
    padding-bottom: 0;
}
section.banner.inn-banner img.img-ban1 {
    height: 400px;
}

section.banner.inn-banner .ban-img:before {
    height: 400px;
}

section.banner.inn-banner h1 {
    font-size: 70px;
}

section.banner.inn-banner .ban-img {
    width: 90%;
}
section.about.inn-abt {
    padding-top: 80px;
}
section.services.inn-serv {
    background: #fff;
}
section.services.inn-serv .top-head h2, section.services.inn-serv .top-head h5, section.services.inn-serv .top-head p {
    color: #000;
}
section.service-detail {
    padding: 80px 0;
}

.ser-det-text h3 {
    font-size: 60px;
}
section.process.inn-process {
    padding: 90px 0;
}
/* 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: #1f7a7a;
    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;
}

.header-btn {
    width: fit-content;
    margin: 0 auto;
}

/* end */

/*Inner Contact Us Start*/

.inner-contact-us-sec {
    padding: 100px 0;
}

.inner-contact-us-have-any-question p {
    color: #000;
    font-weight: 600;
}

.inner-contact-us-have-any-question h2 {
    margin-bottom: 5px;
}

.inner-contact-us-have-any-question ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000;
    font-weight: 500;
}

.inner-contact-us-have-any-question ul li span {
    background: #1f7a7a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border-radius: 10px 0 10px 0;
    height: 50px;
    font-size: 18px;
    color: #fff;
}

.inner-contact-us-have-any-question ul {
    line-height: 80px;
}

.inner-contact-us-have-any-question i.fas.fa-phone-alt {
    transform: rotate(95deg);
}

.inner-contact-us-form {
    margin-left: 30px;
}

.inner-contact-us-form input {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    border: 2px solid #d4d1d1;
    margin-bottom: 20px;
    background: #ffff;
    border-radius: 20px 0;
}

.inner-contact-us-form textarea {
    width: 100%;
    height: 150px;
    padding: 15px 15px;
    border: 2px solid #d4d1d1;
    resize: none;
    margin-bottom: 20px;
    border-radius: 20px 0;
}
.inenr-contact-us-row iframe {
    width: 100%;
    height: 500px;
    border: 2px solid #1f7a7a !important;
    border-radius: 30px;
}

.inenr-contact-us-row {
    margin-top: 55px;
}
section.banner.inner-banner:before, section.banner.inner-banner .banner-wrap:after {
    display: none;
}

/*Inner Contact Us Ends*/
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Inner Pages end  +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */