@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Epilogue", sans-serif;  font-family: "DM Sans", sans-serif;*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* ------Scrollbar CSS Start----- */
/* Firefox */


/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: #fff;
}

*::-webkit-scrollbar-thumb {
    background-color: #2e3a3f;
    border-radius: 5px;
    border: 0px;
}

/* ------Scrollbar CSS End----- */

/*--- Common Style Start---*/

:root {
    --black: #2e3a3f;
    --white: #ffffff;
    --red: #CD2027;
    --grey-text: #4E4E4E;
    --body-font: 'DM Sans', sans-serif;
    --heading: 'Epilogue', sans-serif;
}
html {
scroll-behavior: smooth;
}
html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    color: var(--black);
    background-color: #f7f4ee;
}

a {
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}


figure {
    margin: 0;
    padding: 0;
    display: block;
}


h1,
h2{
    line-height: normal;
    font-family: var(--heading);
    color: var(--black);
}
h2{
    font-size: 34px;
}
h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul {
    padding-left: 0px;
    margin-bottom: 0px;
    font-family: var(--body-font);
}
.heading{
    max-width: 800px;
    margin: 0 auto 45px auto;
}
.heading h2, .heading h1{
    color: #012641;
    font-size: 45px;
    line-height: 52px;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.heading h2:after, .heading h1:after
{
    position: absolute;
    content: "";
    width: 70px;
    height: 2px;
    background-image: linear-gradient(to right, #60b3d1 , #fff);
    bottom: 0;
    left: 0;
}
.heading h6 {
    font-size: 14px;
    line-height: 20px;
    color: #60b3d1;
    text-transform: uppercase;
    font-weight: 500;
}
.heading p{
    font-size: 16px;
    line-height:22px;
    color: #000;
    font-weight: 300;
}
.heading img {
    margin-top: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

button:focus,
button:focus-visible
{
    outline: none;
}

/*--- Common Style End---*/

/*--- Bootstrap Form Start ---*/

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

textarea.form-control {
    height: 50px;
    /* resize: none; */
    padding: 0;
}

.form-control::placeholder {
    color: var(--color-gray);
}
.form-control:focus
{
    background-color:transparent;
    border-color:#e7e7e7;
    outline: 0;
    box-shadow: none;
}

/*- Bootstrap Form End -*/

/*--- Animation Header Start ---*/


@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

/*--- Animation Header End ---*/



/*----   HEADER  START  ----*/

.main-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.mainhead{
    padding: 20px;
}

.navbar {
    padding:0;
}

.navbar-brand {
    padding:0;
    margin-right: 2rem;
}

.navbar-brand img {
    width:200px;
}

.navbar-collapse ul>li {
    margin-right: 10px;
    position: relative;
}

.navbar-collapse ul>li:last-child {
    margin-right: 0px;
}

.navbar .navbar-collapse ul>li>a {
    color: #598e06;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 9;
    text-transform: capitalize;
    transition: all 0.4s;
}
.navbar .navbar-collapse ul>li.active a, .navbar .navbar-collapse ul>li:hover a{
    color:#000;
}

.navbar-text{
    padding: 10px 0;
}
.navbar-text ul li+li {
    margin-left: 12px;
}

.drop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .4s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.has-dropdown:before {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/icon/down-arrow.svg) no-repeat center;
    width: 12px;
    height: 12px;
    line-height: 12px;
    background-size: 12px 12px;
    content: '';
}

.navbar .sub-menu-toggle {
    display: none;
}
.menu-item-has-children > a.nav-link:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
};
}

.menu-item-has-children ul.sub-menu {position: absolute;top: 100%;right: 0;left: 0;width: 190px;padding: 5px 0;background: #f5fff7;border-radius: 0 0 5px 5px;opacity: 0;z-index: 9;box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);visibility: hidden;transition: all 0.4s ease;}

.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

/* sticky menu  */
.header-appear {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

.header-appear .navbar{
    padding: 2px 0px;  
}
.main-header.header-appear .headtop {
    display: none;
}

.main-header.header-appear .navbar-brand {
    padding: 5px 0;
}

.main-header.header-appear .navbar-brand img {
    width: 100px;
}


.main-header.innerheader {
    position: relative;
}
.single-post .main-header.innerheader {
    position: absolute;
}

.headrgts .bd_btn:hover {
    background: #e5c07a;
    color: #000;
}

.mainhead #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link{
    font-weight: 600 !important;
}

/*---   HEADER END   ---*/

p:last-of-type {
    margin-bottom: 0;
}

/*---   BANNER START   ---*/

.bannersec{display: flex; align-items: center;}

.bannerimg {
    position: relative;
    padding-top: 50%;
    background: #121212;
    width: 50%;
    order: 1;
}
.bannerimg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bannerconsec {
    position: relative;
    width: 50%;
    /* top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%); */
}
.bannercon h2, .bannercon h1 {
    color: #2e3a3f;
    font-size: 52px;
    line-height: 65px;
    font-weight: 600;
}
.bannercon h5{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 2rem;
}
.bannercon p {
    font-size: 16px;
    line-height: 24px;
    color: #2d322c;
}

.gap20{gap: 20px;}

.bg{
    background-color: #ffffff;
}
.bg1{
    background-color:#FAF9F3;
}

.bg3{
    background-color:#E8A87C;
}

/*---   BANNER END   ---*/

.twoimg {
    padding:0 20% 0 0;
    position: relative;
}

.twoimg img:nth-child(2) {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 250px;
    height: 300px;
    border-radius: 0px 130px 0px 130px;
    border: 12px solid #fff;
}


.twoimg img {
    z-index: 2;
    position: relative;
    height: 670px;
    object-fit: cover;
    width: 100%;
}

.bgafter {
    padding: 100px 0;
}

.bgafter:after {
    position: absolute;
    content: "";
    background-color: #000000;
    opacity: 0.75;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.bgafter .container {
    z-index: 1;
    position: relative;
}

.bgafter .inner_con h2 {
    color: white;
    line-height: 42px;
}

.bgafter .inner_con p {
    color: white;
    padding: 0 8% 0 8%;
}

.testimonialbox {
    text-align: left;
    background-color: #FFFFFF;
    margin: 15px 10px 15px 10px;
    padding: 10px 40px 40px 40px;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
}

.testibox > p {
    margin: 30px 0;
    font-size: 16px;
    font-weight: 300;
    color: #7a7a7a;
    line-height: 1.5rem;
}

.tesinfo {
    display: flex;
    align-items: center;
    position: relative;
}
.tesinfo i{
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 40px;
    transform: translateY(-50%);
    color: #FCBC4529;
}

.tesinfo img {
    width: 60px !important;
    border-radius: 50px;
    margin-right: 20px;
}

.tesinfo .tisub h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 5px;
}

.tesinfo .tisub p {
    color: #7a7a7a;
    font-weight: 300;
    font-size: 14px;
}

.blogimg {
    height: 250px;
    position: relative;
    margin-bottom: 1.5rem;
}

.blogimg img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.bloginfo h2 {
    font-size: 18px;
    line-height: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.bloginfo p {
    color: #7a7a7a;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3rem;
}

.bloginfo a.slink {
    color: #FCBC45;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bloginfo a.slink i {
    margin-left: 5px;
}

/*  */


/* Footer */

.bd_footer{
    background:#f2f2f2;
    padding-top: 60px;
}
.contactpt {
    padding: 30px 20px 30px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    color: white;
}

.contactpt i {
    color: #fcbc45;
    font-size: 30px;
    margin: 2px 15px 0 0;
}

.contactpt .contisub span {
    display: block;
    color: #fcbc45;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
}

.contactpt .contisub {
    font-size: 18px;
    line-height: 1.3rem;
    font-weight: 500;
}



.newsletter {
    margin-top: 20px;
}
.newsletter form.es_subscription_form.es_subscription_form[data-form-id="2"].wysiwyg-form {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}
.newsletter label.es-field-label {
    font-size: 0;
    margin-top: -25px;
}

.newsletter .es-subscribe-btn.es-custom-button {
    margin-top: 0 !important;
}
/* 
.newsletter .es-form-field-container {
    display: flex;
}

.newsletter .es-form-field-container input[type=email] {
    border-radius: 5px 0px 0px 5px;
    padding: 14px 20px 14px 20px;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    font-size: 12px;
    font-weight: 300;
    width: 100%;
    font-family: var(--body-font);
}

.newsletter .es-form-field-container input[type="submit"] {
    border-radius: 0px 5px 5px 0px;
    padding: 15px 10px 15px 10px;
    color: #252425 !important;
    background-color: #FCBC45 !important;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-family: var(--body-font);
    width: 100%;
    border: 0;
}
.newsletter .es-form-field-container .gjs-row:nth-child(2) {
    flex: 0 0 80%;
    max-width: 80%;
    margin: 0;
}

.newsletter .es-form-field-container .gjs-row:nth-child(3) {
    flex: 0 0 20%;
    max-width: 20%;
} */

/*  */
.ftrlogo a {
    width: 240px;
    margin-bottom: 20px;
}
.ftrlogo {
    padding-right: 60px;
}

.ftrlogo p {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

.csocial {
    display: flex;
    margin-top: 30px;
}

.csocial a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 0;
	transition:0.5s;
}
.csocial a:hover{
	background: #E8A87C;
}
.csocial a:hover i{
    color: #2e3a3f;
}

.csocial a+a {
    margin-left: 20px;
}


/* .ftrsec, .ftrlogo{
    padding-top: 60px;
} */
.ftrsec .menu li a {
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    text-transform: capitalize;
    font-weight: 300;
    color: #000;
}

.ftrsec .menu li+li {
    margin-top: 10px;
}

.ftrsec h2{
    margin-bottom: 20px;
    color: #1a97a6;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}
.ftrsec p {
    color: #000000;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3rem;
}
.ftr_btm {    
    margin-top:40px;
    position: relative;
}
.fcontact ul li+li {
    margin-top: 15px;
}

.fcontact ul li {
    position: relative;
    padding-left: 28px;
}

.fcontact ul li .ficon {
    position: absolute;
    top: 0;
    left: 0;
}

.fcontact ul li a {color: #2b2e31cc;}
.ftrbtmsec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #1D1D1D;
}
.ftr_btm p, .ftr_btm a {
    color: #000;
    font-size: 14px;
    line-height:20px;
    margin-bottom: 0;
    font-weight: 300;
}
.ftr_btm a{
    color:#000;
}
.ftrsec .csocial a {
    background: #F1F1F1;
    color: #6e6e6e;
}

/* Footer */

.uplimg {
    background-color: #fff;
    padding: 20px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: 0.5s;
}
.uplimg img {
    height: 90px;
    object-fit: contain;
}
.uplimg:hover{
    opacity: 1;
    filter: grayscale(0);
}

.serimg img {
    height: 450px;
    object-fit: cover;
    border-radius:200px 200px 0 0;
}

.sercon {
    background: #fff;
    margin: 0 20px;
    padding: 20px;
    text-align: center;
    margin-top: -40px;
    position: relative;
    z-index: 1;
    min-height: 220px;
}

.sercon h3 {
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 26px;
    color: #3a8a9e;
    min-height: 52px;
}

.sercon p {
    font-size: 15px;
    line-height: 20px;
}
.serminhei {
    margin-bottom: 10px;
    min-height: 150px;
}

.sercon a {
    font-weight: 500;
    text-decoration: underline !important;
    text-transform: uppercase;
    color: #6bb26b;
}
.sercon a:hover{color:#e5c07a;}
.twoimg2 img {
    height: 450px;
    border: 10px solid #ffffff;
}

.twoimg2 img:nth-child(2) {
    height:450px;
    width: 100%;
    border-radius: 0;
    top: -80px;
    bottom: 0;
    right: -190px;
    position: relative;
}

.twoimg.twoimg-2 {
    padding: 0 0 0 20%;
}

.twoimg.twoimg-2 img:nth-child(2) {
    right: inherit;
    left: 0;
    bottom: 0;
    border-radius: 130px 0px 130px 0px;
}



.accordion-title .icon::before {
    content: "-";
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.accordion-title.collapsed .icon::before {
    content: "+";
}
.icontxt {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.iconbox {
    border: 1px solid #E8A87C;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    padding: 30px;
    margin: 0 0 20px 0;
	transition: 0.5s;
}

.iconbxt h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

.iconbxt p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}
.icontxt:hover .iconbox {background-color:#E8A87C;}
.icontxt:hover .iconbox img {
    filter: invert(20%) sepia(6%) saturate(1712%) hue-rotate(153deg) brightness(87%) contrast(88%);
}

.slidertestimonial{
    /* background: #faf9f3;
    padding: 40px;
    border-radius: 15px; */
}

.testsec .testimonialcon p:nth-child(1) {
    margin-bottom: 7px;
    color: #ffaf19;
    font-size:20px;
}

.testimonialcon h3 {
    margin: 10px 0;
    font-weight: 700;
}
.testsec {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 0 0 100px 0;
}

.testsec img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.testsec .testimonialcon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #4b94a76b;
    padding: 40px 40px 40px 40px;
    width: 60%;
    max-height: 55%;
    overflow-y: scroll;
    border-radius: 50px 0 0 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition:all 0.8s ease-in-out;
}
.testsec .testimonialcon p, .testsec .testimonialcon h2, .testsec .testimonialcon h3, .testsec .testimonialcon h4{color: #fff;}
.testsec:hover img{
    transform: scale(1.1);
}
.testsec .testimonialcon:hover{
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}
/* .testimonialcon .quotes img {
    width: 40px !important;
    filter: contrast(0.1) invert(1);
}
.tequbotm {
    text-align: right;
    text-align: -webkit-right;
}

.tequbotm img {
    transform: rotateZ(180deg);
} */

/* Post */

.featured_img {
    margin-bottom: 20px;
}

.featured_img a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    padding-top: 65%;
}

.featured_img a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.post_content h2 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    min-height: 55px;
}

.post_btn a {
    color: #598e06;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}
.post_item:hover .featured_img a img{
    transform: scale(1.1);
}

.shiny-glass-effect{position: relative; overflow: hidden;}
.shiny-glass-effect:after{
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.shiny-glass-effect:hover:after{
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}

.inner_con blockquote {
    background: #ffffff;
    padding: 20px;
    border-left: 10px solid #1a97a6;
}

.inner_con blockquote p {
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
}

.inner_con blockquote::before {
    display: none;
}
.inner_con ol {
    padding: 0 0 0 18px;
}

.inner_con ol li+li {
    margin-top: 10px;
}
.conimg  img.baner_img_page {
    object-fit: cover;
    border-radius: 0 100px 0 0;
}
.pageicon {
    margin-top: 100px;
}
.pageicon:after {
    position: absolute;
    content: "";
    background:url(../images/leaf.png);
    background-size: contain;
    width: 70px;
    height: 70px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    filter: invert(97%) sepia(16%) saturate(3812%) hue-rotate(301deg) brightness(94%) contrast(93%);
}

body .ftrsec .newsletter form.es_subscription_form.es_subscription_form[data-form-id="2"][data-form-id="2"].wysiwyg-form input.es-subscribe-btn{
    background: #398a9e;
    border-color: #398a9e;
    height: 45px;
    border-radius: 0 25px 0 25px;
        font-weight: 500;
    text-transform: uppercase;
}
body .ftrsec .newsletter form.es_subscription_form.es_subscription_form[data-form-id="2"][data-form-id="2"].wysiwyg-form input.es-subscribe-btn:hover{
     background: #e5c07a;
    border-color: #e5c07a;
}

.slidertestimonial  .owl-nav {
    margin: 0;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.slidertestimonial .owl-nav [class*='owl-'] {
    background: #4b94a7;
}
.slidertestimonial .owl-nav [class*='owl-']:hover{
    background:#E8A87C; 
}


.fullpadd .pageicon {
    margin: 0;
}

.fullpadd {
    padding: 150px 100px 70px 100px;
    position: relative;
}
.fullpadd .pageicon::after {
    top: 50px;
    filter: invert(89%) sepia(22%) saturate(273%) hue-rotate(334deg) brightness(107%) contrast(86%);
    transform: translateX(0);
    left: 100px;
}
.bg3 .inner_con ul li::after {
    color: #ede4d3;
}

.bigulli.inner_con ul li:after{
    content: "\f18c";
    font-size: 40px;
}

.bigulli.inner_con ul li strong {
    display: block;
}

.bigulli.inner_con ul li {
    padding-left: 50px;
}

.singlelineli.bigulli.inner_con ul li+li {margin-top: 12px;}

.singlelineli.bigulli.inner_con ul li::after {
    font-size: 28px;
}

.singlelineli.bigulli.inner_con ul li {
    padding-left: 38px;
}


.imgovcon .oneimg img {
    border-radius: 20px;
}

.imgovcon .aboovocnsec {
    position: relative;
    left: -50px;
    border-radius: 20px;
    margin-top: 90px;
}

.imgovcon .aboovocnsec .fullpadd {
    padding: 50px;
}

/* Service Page Css */


.servicebanner {
    padding: 100px 0;
    /* background-color: #ededed; */
}

.serbanncon p {
    border-left: 2px solid #c5a8a4;
    padding: 0 0 0 20px;
    font-weight: normal;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6rem;
    color: #fff;
}
.serbanimg {
    position: relative;
    padding-top: 100%;
    border: 6px solid #fff;
}

.serbanimg img {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    object-fit: cover;
}


.misinfoFallbacksec {
    text-align: center;
}

.misinfoFallback {
    background: #ededed;
    padding: 60px;
    border: 1px solid #d7d7d7;
    margin-top: 20px;
}

.misinfoFallback h3 {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 20px;
}

.misinfoFallback p {
    /* text-transform: capitalize;
    background: #fff;
    padding: 16px;
    border-radius: 10px; */
    font-size: 1rem;
    line-height: 1.2rem;
    /* position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #d7d7d7; */
}

.suitabilitybox {
    background: #ffffff33;
    padding: 40px;
        height: 100%;
}

.suitabilitybox .icon {
    background: #ffffffbd;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.resuitabilitybox {
    background: #ffffffc4;
    border: 1px solid #d7d7d7;
    height: 100%;
    box-shadow: 0 10px 30px -15px rgba(110, 117, 91, 0.15);
    transition: 0.5s;
}
.resuitabilitybox:hover{
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.resuitabilitybox .icon {
    background: transparent;
    width: auto;
    display: flex;
    height: auto;
    font-size: 3rem;
    line-height: 3.1rem;
    font-weight: 600;
    color: #e2d3d1;
    justify-content:center;
}
.resuitabilitybox .icon i {
    background: #f3efe9;
    width: 70px;
    height: 70px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #2e3a3f;
}

.resuitabilitybox h3 {
    font-weight: 600;
	min-height: 52px;
}

.clientsec {
    background-color: #fff;
    padding: 40px;
    border-radius: 1.5rem;
    margin-top: 3rem;
    border: 1px solid #f3efe9;
}

.clientsec > span {
    text-transform: uppercase;
    font-weight: 600;
}

.clientsec h3 {
    font-size: 2rem;
    line-height: 2.3rem;
    margin: 8px 0 0 0;
}
.cliename span, .cliename strong {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    background-color: #f3efe9;
    padding: 0.5rem 1rem 0.5rem 1rem;
    border-radius: 50px;
    transition: 0.5s;
    cursor: pointer;
}

.cliename {
    gap: 0.75rem;
    margin: 15px 0 0 0;
}

.cliename span:hover {
    background-color: #e8a87c;
}

.roundboximg {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px auto;
}

.learsec {
    text-align: center;
}

.roundboximg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pricebox {
    background: #ededed;
    position: relative;
    padding: 40px 40px 110px 40px;
}

.pricebox h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
}
.pricebox .pricebtn {
    position: absolute;
    left: 40px;
    bottom: 40px;
}