@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 'goudy-bold';
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    font-family: 'goudy-bold';
}

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 {
    line-height: 25px;
    font-family: 'goudy-bold';
    color: #333333;
    font-size: 18px;
}


/***** 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
}

@font-face {
    font-family: 'goudy-bold';
    src: url(../fonts/goudy-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 {
    padding: 15px 25px;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    z-index: 1;
    position: relative;
    font-size: 17px;
    -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;
    font-size: 18px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: -3px 5px 10px 0 #0cadbc;
    background: linear-gradient(313deg, rgba(0, 151, 206, 1) 0%, rgba(2, 137, 13, 1) 100%);
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 0;
    background-color: #000;
    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;
    border-image: linear-gradient(296deg, rgb(1 140 67), rgb(1 150 192)) 1 / 1 / 0 stretch;
}

.theme_btn:hover {
    color: #fff;
}



.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: 'goudy-bold';
    font-size: 85px;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    margin: 0 0 17px;
}

h2 {
    font-family: 'goudy-bold';
    font-size: 55px;
    line-height: 1.2;
    color: #00910d;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: capitalize;
}

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

h4 {
    font-family: 'goudy-bold';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'goudy-bold';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'goudy-bold';
    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 */

.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: 12px;
    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-indicators {
    gap: 10px;
    align-items: center;
}

.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: rgb(0 0 0 / 50%);
}

.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 {
    background-color: #28b16d;
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    border-radius: 0 !important;
}


/*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  */

.menu_sec #menu li a {
    font-size: 22px;
    color: #000;
    text-transform: capitalize;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.menu_sec ul {
    margin-bottom: 0;
}

.meun-link ul {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: end;
}

.meun-sec-btn a {
    font-size: 17px !important;
    padding: 15px 17px;
    font-family: "Roboto", sans-serif;
}

.meun-link {
    margin-bottom: -20px;
}

.meun-sec-btn {
    margin-bottom: -20px;
}

.meun-link .active a {
    color: #038d1f !important;
    text-decoration: underline !important;
}


.menu_sec #menu>li>ul {
    background: #000;
    width: 240px;
    position: absolute;
    top: -90px;
    padding: 20px 20px;
    transition: 0.3s all;
    opacity: 0;
    z-index: -1;
}

.menu_sec #menu>li:nth-child(3) {
    position: relative;
}

.menu_sec #menu>li>ul>li>a {
    color: #fff;
}


/* .menu_sec #menu>li:nth-child(3):after {
    position: absolute;
    content: "";
    background: #000;
    width: 10px;
    height: 10px;
    bottom: -14px;
    left: 10px;
    clip-path: polygon(52% 0, 0 100%, 100% 100%);
    transition: 0.3s all;
    opacity: 0;
} */

.menu_sec #menu>li:nth-child(3):hover:after {
    opacity: 1;
    transition: 0.5s ease-in-out;
}

.menu_sec #menu>li:nth-child(3):hover ul {
    opacity: 1;
    transition: 0.5s ease-in-out;
    top: 40px;
    z-index: 2;
    padding: 10px;
}

.menu_sec #menu>li:nth-child(3):hover ul li {
    margin-bottom: 11px;
    background: green;
    padding: 10px;
}


/* Header */

ul.footer-social-list {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
    margin-bottom: 0;
}

ul.footer-social-list li i {
    font-size: 18px;
    color: #038b19;
}

ul.footer-social-list li i:hover {
    background: #002691;
    transition: 1s ease-in-out;
    color: #fff;
    box-shadow: 0 0 8px 0 #000;
    border: 1px solid #fff;
}

.topSec {
    padding-top: 10px;
}

.topSec p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.topSec .row {
    align-items: center;
}

.header-info ul {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: right;
    margin: 0;
    padding: 30px 0px;
}

.header-info ul li h6 span {
    display: block;
}

.header-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: right;
}

.header-info ul li h6 {
    font-size: 20px;
    color: #000;
    margin: 0;
}

.header-info ul li h6 span,
.header-info ul li h6 span a {
    font-size: 16px;
    color: #000;
}

.logo a img {
    width: 80%;
}

.menu_sec {
    padding: 0px 0 10px;
}

header {
    z-index: 0;
}


/* end  */


/* banner */

img.img-fluid {
    width: 100%;
    height: 740px;
    object-fit: cover;
}

.banner_text p {
    width: 90%;
    font-size: 18px;
    color: #fff;
}

.theme_btn.btn2 {
    background: transparent;
    border: unset;
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(296deg, rgb(1 140 67), rgb(1 150 192)) 1 / 1 / 0 stretch;
}

.theme_btn.btn2:before {
    background: linear-gradient(3deg, rgba(15, 185, 247, 1) 0%, rgba(2, 137, 13, 1) 87%);
}

.theme_btn.btn2:hover {
    background: rgb(0, 151, 206);
}

.ban-btn {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}


/* end  */


/* After Banner */

section.after-banner {
    padding: 60px 0;
}

.wrap-after {
    position: relative;
    padding: 20px;
    background-color: #019076;
    background-image: url(../images/after-ban1.png);
    background-size: cover;
    text-align: center;
    transition: 0.5s;
    height: 220px;
    /* border-width: 6px; */
    /* border-style: solid; */
    /* border-image: linear-gradient(296deg, rgb(1 140 67), rgb(1 150 192)) 1 / 1 / 0 stretch; */
    box-shadow: -12px 10px 10px 0 #0cadbc;
}

.wrap-after:before {
    position: absolute;
}

.wrap-after h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1;
    margin-bottom: 20px;
}

.wrap-after p {
    font-size: 16px;
    color: #fff;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.wrap-after a {
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid #fff;
}

.wrap-after:hover {
    background-color: #000;
}

.wrap-after.wrap-after-2 {
    background-image: url(../images/after-ban2.png);
}

.wrap-after.wrap-after-3 {
    background-image: url(../images/after-ban3.png);
}


/* end  */


/* About */

section.about {
    padding: 30px 0 80px 0;
}

.about-img img {
    width: 90%;
    margin: 0 0 0 auto;
    display: block;
    height: 480px;
    object-fit: cover;
    box-shadow: 0 0 26px 0 #000;
}

.about-img h6 {
    font-size: 37px;
    color: #fff;
    letter-spacing: 5px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0;
    position: absolute;
    top: 10px;
    left: 0;
    width: 63px;
    background: linear-gradient(313deg, rgba(0, 151, 206, 1) 0%, rgba(2, 137, 13, 1) 100%);
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    position: relative;
}

.play-btn i {
    color: #fff;
    font-size: 20px;
    border: 6px solid #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.play-btn {
    position: absolute;
    left: 5%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    z-index: 9;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    transform: translate(0, -50%);
    background: linear-gradient(0deg, rgba(2, 137, 13, 1) 0%, rgba(14, 181, 226, 1) 50%, rgba(2, 137, 13, 1) 100%);
}

section.about .play-btn {
    display: none;
}

h2 span {
    color: #000000;
}

.abt-text p {
    line-height: 25px;
}


/* end */


/* Counter  */

section.counter-sec {
    padding: 5% 0 5%;
    text-align: center;
    position: relative;
    background: linear-gradient(313deg, rgba(0, 151, 206, 1) 0%, rgba(2, 137, 13, 1) 100%);
}

.conter-wrap img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7459%) hue-rotate(167deg) brightness(106%) contrast(91%);
}

.plus {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    margin: 10px 0;
}

section.counter-sec h3 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 0;
}

span.counter {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}


/* Counter end  */


/* Services */

section.services {
    padding: 80px 0;

}

.top-heading {
    text-align: center;
    margin-bottom: 40px;
}

.top-heading p {
    width: 52%;
    margin: 0 auto;
}

.top-heading h2 {
    margin-bottom: 20px;
    margin-bottom: 10px;
}



.ser-wrap img {
    transition: 0.5s;
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.ser-wrap:hover {
    box-shadow: 0 0 13px 0 #0eb4de;
}

.ser-wrap {
    text-align: center;
    box-shadow: 0 0 13px 0 #059443;
    padding-bottom: 30px;
    border-radius: 7px;
    transition: 0.5s;
	height: 650px !important;
}





.ser-wrap h3 {
    margin: 20px 0;
    text-transform: capitalize;
    padding: 0 10px;
    height: 70px;
}

.ser-wrap p {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
}





/* emd  */


/*Free Form*/

section.free-consultancy {
    z-index: 5;
    position: relative;
}

section.free-consultancy .par-free {
    background-image: url(../images/form-bg.jpg);
    background-repeat: no-repeat;
    padding: 60px;
    background-size: cover;
}

.free-head {
    text-align: center;
    padding-bottom: 15px;
}

.free-head h4 span {
    color: unset;
    font-weight: 700;
}

.frm input,
select.form-select {
    width: 100%;
    padding: 0 16px;
    margin-bottom: 20px;
    border: unset;
    color: #666;
    background: #ebebeb;
    height: 60px;
    font-size: 18px;
}

.frm input::placeholder {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}

.frm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: unset;
    background: #ebebeb;
}

.frm textarea::placeholder {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}

section.free-consultancy button.theme_btn {
    width: 36%;
}




/*Free Form end*/


/*subscribe start*/

.subscribe-text h4 {
    font-size: 37px;
    margin-bottom: 10px;
    color: #fff;
}

.subscribe-text p {
    margin: 0;
    color: #fff;
}

.subscribe-foam input {
    border: navajowhite;
    background: #fff;
    width: 100%;
    padding: 15px 10px;
}

.subscribe-foam form {
    position: relative;
}

.subscribe-foam button {
    position: absolute;
    width: 30%;
    right: 5px;
    top: 5px;
    border: none;
    background: #e8912e;
    color: #fff;
    padding: 10px 0;
}

.subscribe-text h4 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #fff;
    text-transform: capitalize;
    line-height: 0.9;
}

section.subscribe-wrap .row {
    padding: 40px 15px;
    width: 90%;
    margin: 0 auto;
    align-items: center;
    border-radius: 8px;
    background: rgb(0, 151, 206);
    box-shadow: 0 0 8px 0 #fff;
}

.subscribe-text p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-size: 18px;
}

.subscribe-foam input {
    border: navajowhite;
    background: #fff;
    width: 100%;
    padding: 15px 10px;
    border-radius: 5px;
}

.subscribe-foam form {
    position: relative;
}

.subscribe-foam button {
    position: absolute;
    width: 30%;
    right: 5px;
    top: 5px;
    border: none;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    background: linear-gradient(313deg, rgba(0, 151, 206, 1) 0%, rgba(2, 137, 13, 1) 100%);
}

section.subscribe-wrap {
    z-index: 1;
    position: relative;
}


/*subscribe end*/


/*footer start*/

.footer-text h6 {
    color: #fff;
    font-size: 31px;
    line-height: 40px;
    margin: 0;
    position: relative;
    margin-bottom: 50px;
    position: relative;
}

.footer-text li {
    color: #fff;
    line-height: 40px;
    margin-bottom: 20px;
}

.footer-text input {
    border: 1px solid #fff;
    background: none;
    color: #fff;
    width: 100%;
    padding: 8px 10px;
}

.footer-text ::placeholder {
    color: #fff;
}

.footer-text button {
    background: none;
    border: 2px solid #118ed7;
    width: 100%;
    padding: 10px 0;
    color: #fff;
    margin: 16px 0;
    background: #118ed7;
}

section.footer {
    background-repeat: no-repeat;
    padding: 80px 0;
    padding-top: 4%;
    margin-top: 0;
    padding-bottom: 0;
    background-color: #000000e8;
    background-image: url(../images/footer-bg.png);
    /* background-blend-mode: overlay; */
    /* background-position: center; */
    /* background-size: cover; */
    background: linear-gradient(313deg, rgba(0, 151, 206, 1) 0%, rgba(2, 137, 13, 1) 100%);
}

.socail-icon a img {
    border-radius: 50%;
    border: 1px solid #fff;
}

.socail-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-right {
    text-align: center;
    border-top: 2px solid #fff;
    padding: 17px 0;
    margin-top: 20px;
}

.copy-right ul {
    display: flex;
    align-items: center;
}

.copy-right p {
    font-size: 18px;
    margin: 0;
}

.copy-right * {
    color: #fff;
}

.footer-text ul li a {
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.footer-text.footer-text1 a i {
    margin-right: 16px;
    color: #fff;
    font-size: 20px;
}

.copy-right1 p {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.copy-right1 {
    background: #474646;
    text-align: center;
    ;
    padding: 10px 0;
}

.footer-img img {
    width: 100%;
    margin-bottom: 15px;
}

.footer-text h6:before {
    position: absolute;
    content: '';
    background-color: #fff;
    width: 25%;
    left: 0;
    bottom: -10px;
    height: 4px;
}


/*footer end*/


/* Inner Pages */

section.main_slider.inn-ban img.img-fluid {
    height: 500px;
    object-fit: contain;
    background: linear-gradient(to right, rgba(2, 137, 13, 1) 0%, rgba(1, 144, 111, 0) 51%, rgba(0, 151, 206, 1) 100%);
}

section.main_slider.inn-ban h1 {
    margin: 0;
}

section.about.inn-abt {
    padding: 80px 0;
}

section.about.inn-abt.choose img {
    width: 1009%;
}


/* Team Sec css Starts  */

section.team-sec {
    padding: 80px 0;
}

.team-heading {
    text-align: center;
    margin: 0 0 50px 0;
}

.team-heading p {
    font-size: 14px;
    line-height: 24px;
    margin: 0 auto;
    width: 61%;
}

.team-card-txt {
    text-align: center;
}

.team-card-txt h5 {
    font-size: 30px;
    line-height: 29px;
    margin: 10px 0;
    color: #161515;
}

.team-card-txt h6 {
    font-size: 20px;
    line-height: 29px;
    margin: 10px 0;
    color: #161515;
}

.team-card-txt ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 0 auto;
    gap: 10px;
}

.team-card-txt ul li a {
    color: #00910d;
    border-radius: 100px;
    border: 1px solid #00910d;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    font-size: 18px;
    transition: ease-in;
    transition-duration: 0.2s;
}

.team-card-txt ul li a:hover {
    background-color: #00910d;
    color: #fff;
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.2s;
}


/* Team Sec css Ends  */


/* Book Appointment Starts*/

section.book-appointment {
    padding: 80px 0;
}

.book-appointment-heading {
    text-align: center;
    margin: 0 0 50px 0;
}

.book-appointment-heading h2 {
    font-size: 63px;
    line-height: 1;
    margin: 20px 0;
    text-transform: capitalize;
}

.book-appointment-heading p {
    font-size: 17px;
    line-height: 29px;
    width: 67%;
    margin: 0 auto;
}

.book-input {
    border: 1px solid #00000045;
    padding: 20px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.book-input input,
.book-input select,
.book-input textarea {
    border: none;
    width: 100%;
    padding: 0;
    font-size: 18px;
    color: #333333;
}

.book-input textarea {
    resize: none;
    height: 200px;
}

.book-input img {
    width: 2%;
}

.book-btn {
    margin: 40px 0 0 0;
}

.book-slec {
    position: relative;
}

.book-slec::before {
    content: '\f078';
    position: absolute;
    top: 30%;
    right: 3%;
    color: #6c757d;
    font-family: 'Font Awesome 5 Pro';
    font-size: 20px;
    z-index: 0;
    pointer-events: none;
}



section.book-appointment button.theme_btn {
    width: 33%;
    margin: 0 auto;
    display: block;
}


/* Book Appointment end*/

section.services.inn-serv img {
    width: 90%;
    height: 320px;
}

section.services.inn-serv .ser-wrap {
    /* margin-bottom: 60px; */
}


/* Service detail */

ul.detail-types {
    padding-left: 5%;
    padding-top: 70px;
    padding-bottom: 70px;
    background-image: url(../images/footer-bg.png);
    background-size: cover;
    background-color: #000000e3;
    margin-top: 30px;
}

ul.detail-types li h3 {
    color: #fff;
    font-size: 35px;
}

ul.detail-types li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}

section.ser-detrail .container-fluid {
    padding-left: 2%;
    padding-right: 5%;
}

.ser-det-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

section.ser-detrail {
    padding: 80px 0;
}

section.ser-detrail h3 {
    font-size: 45px;
    text-transform: capitalize;
}

section.ser-detrail p {
    line-height: 32px;
    font-size: 19px;
}


/* end  */


/* Contact Page Start */

section.contact-pg {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(188deg, #fff, transparent);
}

ul.cont-list-ad i {
    font-size: 30px;
    color: #00910d;
    margin-right: 20px;
}

ul.cont-list-ad {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0px 0 60px;
}

ul.cont-list-ad h5 {
    font-size: 20px;
    margin: 0;
    color: #000000;
    font-weight: 700;
}

ul.cont-list-ad p {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

ul.cont-list-ad a {
    font-size: 19px;
    color: #333333;
    font-weight: 500;
    line-height: 30px;
}

.contact-head {
    margin-bottom: 30px;
}

ul.footer-social-list.cont-social-pg li i {
    color: #0005bb;
    font-size: 30px;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid #0005bb;
}

.contact-pg-inp input {
    font-size: 16px;
    color: #666666;
    border: 1px solid #cdcacb;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 0;
}

.contact-pg-inp textarea {
    border: 1px solid #cdcacb;
    width: 100%;
    height: 120px;
    padding: 10px;
    color: #cdcacb;
    margin-bottom: 30px;
    border-radius: 0;
}

.contact-pg-inp input::placeholder {
    color: #666666;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-head h2 {
    color: #000;
    margin-bottom: 20px;
    font-size: 50px;
}

.contact-head p {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    width: 90%;
}

.map-location iframe {
    width: 100%;
    height: 400px;
    border-radius: 0;
}

ul.product-social.contact-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

ul.product-social.contact-social i {
    border: 1px solid #00910d;
    color: #00910d;
}

ul.product-social li i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 50px;
}


/* Contact Page End */


/* Testimonial */

.testi-img-sldr img {
    opacity: 1;
    margin: 0;
    border-radius: 50%;
}

.testi-img-sldr .slick-list {
    width: 40%;
    margin: auto;
}

.testi-img-sldr img.slick-active:not(.slick-current) {
    transform: scale(0.5);
    margin: 0;
}

.testi-img-sldr img.slick-current+.slick-active+.slick-active {
    transform: scale(0.6) translateX(-70px);
}

.testi-box {
    text-align: center;
    padding: 50px 100px;
    padding-bottom: 0;
}

.testi-box>p {
    color: #fff;
    width: 90%;
    margin: 0 auto;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.testi-box h6,
.testi-box span {
    font-size: 20px;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

section.testimonal-sec {
    background-image: url(../images/testi-bg.jpg);
    padding: 80px 0;
    background-size: cover;
    position: relative;
    background: linear-gradient(313deg, rgba(0, 151, 206, 1) 0%, rgba(2, 137, 13, 1) 100%);
}

img.img-top1 {
    position: absolute;
    top: -10px;
    left: 0;
}

img.img-btm1 {
    position: absolute;
    bottom: -4px;
    right: 0;
}

section.testimonal-sec p {
    color: #fff;
}

section.testimonal-sec h2 span,
section.testimonal-sec h2 {
    color: #fff;
}

.testi-box>p:before,
.testi-box>p:after {
    position: absolute;
    content: '';
    background-image: url(../images/q1.png);
    color: #fff;
    left: -40px;
    top: -40px;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 99;
}

.testi-box>p:after {
    background-image: url(../images/q2.png);
    left: unset;
    right: -30px;
    top: 100%;
}

section.testimonal-sec .slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}

section.testimonal-sec .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #00910d;
    font-size: 20px;
}

section.testimonal-sec .slick-dots {
    bottom: -50px;
}


/* end  */


/* end  */

.bottom-para {
    margin-top: 20px;
}

section.about.inn-abt .abt-text p {
    line-height: 30px;
}


/* Gallery */

section.gallery {
    padding: 0px 0 100px 0;
}

.gall-wrap img {
    width: 100%;
    height: 300px;
    transition: 0.5s;
    object-fit: cover;
}

.gall-wrap img:hover {
    filter: grayscale(1);
    transform: scale(1.5);
}

.gall-wrap {
    overflow: hidden;
}

section.gallery .slick-slide {
    opacity: 1 !important;
    margin: 0 10px;
}

.gall_slider .slick-dots li.slick-active button:before {
    opacity: 1 !important;
    width: 10px;
    height: 10px;
    background: #00910d;
}

.gall_slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 7px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '' !important;
    text-align: center;
    background: #201d16;
    opacity: 1;
    color: #01b7f2;
    border-radius: 11px;
}

.gall_slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    bottom: -50px;
}

.top-head {
    text-align: center;
}

.gall_slider .slick-dots li {
    opacity: 1;
}


/* end  */

section.about video {
    width: 90%;
    height: 480px;
    object-fit: cover;
    object-position: bottom;
    margin: 0 0 0 auto;
    margin: 0 0 0 auto;
    display: block;
}

/* new css */

.gellery_new_secc {
    padding: 90px 0px;
}

.gellery_new_secc a>img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    margin-bottom: 30px;
}

.gellery_new_secc .row {
    justify-content: center;
}

/* new css */


section.main_slider img {
    object-position: top;
    height: 850px;
}

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {
header .meun-link ul#meun {
    margin: 0 15px 0 0 !important;
    gap: 20px !important;
}
ul#meun li a {
    font-size: 20px;
}
.meun-sec-btn a {
    font-size: 14px !important;
    padding: 10px 10px;
    margin-left: -20px;
}

h1 {
    font-size: 62px;
    margin: 0 0 5px;
}

.banner_text p {
    width: 100%;
    font-size: 17px;
}

.abt-text p {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 5px 0px;
}

section.about video {
    height: 550px;
}

.ser-wrap h3 {
    font-size: 20px;
    height: 40px;
}

.ser-wrap p {
    font-size: 15px;
    line-height: 28px;
}

.ser-wrap img {
    height: 290px;
}

section.services {
    padding-bottom: 30px;
}


.footer-text h6 {
    font-size: 28px;
}
.wpb_single_image img {
    height:550px !important;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo a img {
    width: 100%;
}

ul#meun li a {
    font-size: 14px !important;
}

header .meun-link ul#meun {
    gap: 14px;
}

.meun-sec-btn a {
    margin-left: -60px;
    padding: 10px 10px;
    font-size: 14px !important;
}

h1 {
    font-size: 46px;
}

.banner_text p {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
}

section.main_slider img {
    height: 600px;
}

.abt-text p {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 8px 0;
}

section.about video {
    height: 500px;
}

.plus {
    font-size: 40px;
}

span.counter {
    font-size: 40px;
}

section.counter-sec h3 {
    font-size: 20px;
}

.top-heading p {
    width: 90%;
}

.ser-wrap img {
    height: 250px !important;
}

section.services.inn-serv img {
    width: 100% !important;
    height: 320px !important;
}

.ser-wrap h3 {
    margin: 10px 0;
    font-size: 18px;
    line-height: 24px;
    padding: 0 0;
    height: 40px;
}

.ser-wrap p {
    width: 98%;
    font-size: 16px;
    line-height: 23px;
}

section.services {
    padding: 50px 0;
}

.gall-wrap img {
    height: 270px;
}

section.testimonal-sec h2 span, section.testimonal-sec h2 {
    font-size: 40px;
}

section.testimonal-sec p {
    width: 100%;
    font-size: 17px;
}

.free-head h2 {
    font-size: 40px;
}

.wrap-after {
    padding: 20px 10px;
}

.wrap-after h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer .col-lg-3,.footer .col-lg-2, .footer .col-lg-4 {
    width: 50%;
}
section.main_slider.inn-ban img.img-fluid {
    height: 350px;
}

.main_slider.inn-ban h1 {
    font-size: 40px !important;
}



.abt-text h2 {
    font-size: 40px !important;
}

.ser-detrail h3 {
    font-size: 30px;
    margin: 0;
}

.ser-detrail p {
    font-size: 14px;
    line-height: 24px;
}

.ser-detrail img {
    width: 100%;
    height: 400px !important;
}

.wpb_text_column.wpb_content_element p {
    font-size: 14px !important;
    line-height: 24px !important;
}
.inn-serv .col-md-4 {
    width: 50%;
    margin: 10px 0;
}

}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {
.slicknav_menu .current-menu-item a {
    color: #fff !important;
}
    .slicknav_menu {
    background: linear-gradient(313deg, rgba(0, 151, 206, 1) 0%, rgba(2, 137, 13, 1) 100%);
}

.menu_sec .col-md-3, .menu_sec .col-md-2 {
    width: 50%;
    padding: 0 8px;
}

.logo a img {
    height: auto;
    width: 100%;
}

.meun-sec-btn a {
    font-size: 12px !important;
    padding: 10px !important;
}

h1 {
    font-size: 36px;
}

.banner_text p {
    width: 100%;
    font-size: 15px;
    line-height: 24px;
}

.ban-btn {
    gap: 5px;
}

.ban-btn a {
    padding: 10px !important;
    font-size: 14px !important;
}

section.main_slider img {
    height: 500px !important;
}

section.about video {
    height: auto !important;
}

.conter-wrap {
    margin: 15px 0;
}

section.counter-sec h3 {
    font-size: 24px;
}

section.services {
    padding: 50px 0;
}

.top-heading h2 {
    font-size: 36px !important;
}

.top-heading p {
    width: 100% !important;
    font-size: 15px !important;
    line-height: 24px !important;
}

.ser-wrap img {
    height: 250px !important;
}

.ser-wrap h3 {
    font-size: 24px !important;
    height: 50px !important;
}

.ser-wrap {
    margin: 10px 0;
}

section.gallery {
    padding: 0 0 50px;
}

section.testimonal-sec {
    padding: 50px 0;
}

section.testimonal-sec h2 span, section.testimonal-sec h2 {
    font-size: 40px;
}

.testi-box {
    padding: 10px 0;
}

.testi-box>p {
    width: 100%;
    font-size: 15px;
    line-height: 24px;
}

.testi-box>p:after {
    right: 0;
}

.testi-box>p:before, .testi-box>p:after {
}

section.free-consultancy .par-free {
    padding: 40px 0;
}

section.free-consultancy button.theme_btn {
    width: fit-content;
}

.wrap-after {
    height: auto;
    margin: 10px 0;
}

.copy-right p {
}
.current-menu-item a {
    color: #fff !important;
}

section.main_slider.inn-ban img {
    height: 300px !important;
}

.about-img img {
    height: auto !important;
}

.about-img h6 {
    font-size: 18px !important;
    letter-spacing: 0 !important;
}

section.about.inn-abt .abt-text p {
    font-size: 15px;
}

section.about.inn-abt {
    padding: 50px 0;
}

.abt-text h2 {
    font-size: 34px !important;
}

section.about.inn-abt video {
    margin: 0 !important;
    width: 100% !important;
}
.ser-detrail h3 {
    font-size: 32px !important;
    margin: 0 0 10px !important;
}

.ser-detrail p {
    font-size: 15px !important;
    line-height: 25px !important;
}

.wpb_wrapper p {
    font-size: 15px !important;
    line-height: 25px !important;
}
.gellery_new_secc a>img {
    height: auto !important;
}

.gellery_new_secc {
    padding: 50px 0;
}
section.contact-pg {
    padding: 50px 0;
}

.contact-head h2 {
    font-size: 40px !important;
}

.contact-head p {
    width: 100% !important;
    font-size: 15px !important;
}
section.book-appointment {
    padding: 50px 0;
}

.book-appointment-heading h2 {
    font-size: 50px !important;
}

.book-appointment-heading p {
    width: 100%;
    font-size: 15px;
}

.book-input {
    padding: 10px 10px;
}
section.footer {
    padding: 50px 0 0;
}
}

/*Media Query End*/





.ser-wrap {
    text-align: center;
    box-shadow: 0 0 13px 0 #059443;
    padding-bottom: 30px;
    border-radius: 7px;
    transition: 0.5s;
	height: 650px !important;
}

