:root {
    --custom-color: #1f793c;
	--color: #3ea549;
	--color-second: #066db0;
    --bg-light: #e6f3ff;
    --hover: #c8444969;
}

body {
    margin: 0;
    padding: 0;
}

img,
iframe,
video {
    max-width: 100%;
    vertical-align: middle;
}

a {
	outline: none;
	text-decoration: none;
	color: #555;
}

h4 {
    font-weight: 700;
    color: var(--custom-color);
}

a:hover, a:focus{
	outline: none;
	text-decoration: none;
}

.top-header {
    background-color: var(--custom-color);
}

/* header css start */

nav {
  background: var(--background-color);
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}
header .logo {
    width: 25%;
}

.main_menu {
    width: 75%;
    text-align: end;
}

.main_menu ul li {
    text-align: left;
}

.logo a {
  font-size: 20px;
  font-weight: 700;
  color: #353535;
  text-transform: uppercase;
}

/* normal menu css */

.main_menu > ul > li {
  display: inline-block;
  position: relative;
  margin: 0 -2px;
}
.main_menu ul li {
  position: relative;
}

.main_menu ul li a {
    font-size: 16px;
    color: #353535;
    padding: 8px 25px;
    /* display: block; */
    font-weight: 400;
}

.main_menu ul li .active,
.main_menu ul li:hover > a {
  color: var(--hover-color);
}
/* Normal Dropdown menu */
.main_menu ul li ul {
  width: 200px;
  background: #fff;
  transition: 0.5s;
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}

.main_menu ul li ul li a {
  padding: 10px 25px;
  font-size: 15px;
}
.main_menu ul li ul li a i {
  float: right;
}

.main_menu ul li ul li ul {
  left: 100%;
  top: 0;
}

/* mega menu css */
.mega_menu_dropdown {
  position: static !important;
}
.mega_menu {
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  transition: 0.5s;
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}
.mega_menu_item {
  width: 25%;
  padding: 30px 20px;
}
.main_menu ul li .mega_menu_item a {
  padding: 10px 0;
}

.main_menu ul li .mega_menu_item a:hover {
  color: var(--hover-color);
}
.mega_menu_item h3 {
  margin-bottom: 15px;
}
.mega_menu_item img {
  width: 100%;
}

/* demo_2 css */
.mega_menu_demo_2 .mega_menu {
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
}

.mobile_btn {
  display: none;
}

/* responsive css */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    width: 960px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 940px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    width: 720px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 700px;
  }
  .main_menu ul li a {
    font-size: 15px;
    padding: 10px 10px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}
@media (min-width: 768px) {
  .main_menu ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li .mega_menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    z-index: 99;
  }
  .main_menu ul li:hover > .mega_menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 99;
  }
}

@media (max-width: 767.98px) {
  .mega_menu_demo_2 .mega_menu,
  .container {
    width: 100%;
  }

  nav {
    padding: 15px;
  }
  .mobile_btn {
    cursor: pointer;
    display: block;
  }

  .main_menu {
    display: none;
    width: 100%;
  }

  .main_menu ul li {
    display: block;
  }
  .main_menu ul li a i {
    float: right;
  }
  .main_menu ul li a {
    border-bottom: 1px solid #ddd;
  }
  .main_menu ul li ul {
    width: 100%;
  }
  .main_menu ul li ul li ul {
    left: 0;
    top: auto;
  }

  .mega_menu .mega_menu_item {
    width: 50%;
  }
  .main_menu ul li ul {
    display: none;
    transition: none;
  }
  .main_menu ul li .mega_menu {
    display: none;
    transition: none;
  }

  .mega_menu_demo_2 .mega_menu {
    transform: translateX(0);
  }
}

@media (max-width: 575.98px) {
  .mega_menu .mega_menu_item {
    width: 100%;
  }
}

/* header css end */

header.sticky-top {
    background: #fff;
}

.navbar a.nav-link {
    color: var(--color);
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
}

.navbar a.nav-link:hover {
    background: var(--color);
    color: #fff;
    border-radius: 5px;
    margin-right: 10px;
}

header .logo span {
    font-size: 25px;
    font-weight: 700;
    color: var(--custom-color);
    /* padding-left: 10px; */
}

li.nav-item.dropdown:hover ul.dropdown-menu {
    display: block;
}

.serdp ul.dropdown-menu {
    overflow-y: scroll;
    height: 450px;
}

ul.dropdown-menu{
    padding: 0;
    margin-bottom: 15px;
}

a.dropdown-item {
    border-bottom: 1px solid var(--color);
    padding: 10px 15px;
    background: var(--custom-color);
    color: #fff;
    font-weight: 700;
}

.logo .navbar-brand p {
    color: var(--color);
    line-height: 1.1;
}

h3.text-uppercase.fw-bold {
    color: var(--color);
}

header a.navbar-brand img {
    width: 250px;
}

.heading h2 {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color);
}
.heading h2:before {
    content: '';
    background: var(--color-second);
    width: 100px;
    height: 3px;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}

.sevsec{
    background-color: var(--bg-light);
}

.address ul.list-unstyled i {
    font-size: 25px;
}

.sevsec .card:hover {
    transform: translateY(10px);
    transition: all 0.5s;
}

.sevsec .card {
    transition: all 0.5s;
    margin-bottom: 20px;
}

.card img {
    height: 280px;
    object-fit: cover;
}

.galimg {
    overflow: hidden;
    border: 1px solid var(--color);
}

.galimg img {
    width: 100%;
    transition: all 0.5s;
}

.galimg img:hover {
    transform: scale(0.9);
    transition: all 0.5s;
}

.textmon {
    background: url(../images/home-prakriti-bg.jpg);
    /* background: var(--bg-light); */
    padding: 50px 0;
    background-blend-mode: multiply;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.abtimg { 
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 25px;
}

.fa-star:before {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
}

.btn {
    border: none;
    /* display: block; */
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
    overflow: hidden;
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    background-color: var(--custom-color);
    padding: 10px 30px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.20);
}
  
.btn span {
    position: relative; 
    z-index: 1;
    color: #fff;
}
  
.btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 490%;
    width: 140%;
    background: var(--color);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
    transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

  
.btn:hover:after {
    -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
    transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.body-type {
    background: url(../images/home-prakriti-bg.jpg);
}

.body-type .col-md-6:first-child {
    padding: 80px;
}

.tmon-img img {
    width: 70px !important;
    border-radius: 50%;
    margin: auto;
}

.textmon .item {
    width: 50%;
    margin: auto;
    /* background: var(--bg-light); */
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.galimg img {
    min-height: 350px;
    max-height: 350px;
    /* object-fit: cover; */
}

.social-icon i {
    font-size: 22px;
    padding: 10px;
    background: var(--custom-color);
    color: #fff;
    border-radius: 50%;
}

.social-icon i:hover {
    background: #fff;
    color: var(--custom-color);
}

footer {
    padding: 50px 0 50px;
    /* background-color: var(--bg-light); */
    background: url(../images/home-prakriti-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: right;
}

input[type="submit"]:hover {
    background: var(--color);
    color: #fff;
}

.menutnt h3 {
    color: var(--color);
    margin-bottom: 30px;
    position: relative;
}

.menutnt h3:before {
    position: absolute;
    content: '';
    width: 100px;
    height: 3px;
    background-color: var(--custom-color);
    bottom: -15px;
}

footer .logo img {
    width: 60%;
    /* padding-bottom: 20px; */
    /* filter: drop-shadow(0px 0px 15px var(--custom-color)); */
}

footer .useful-link a {
    color: var(--custom-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s;
    display: inline-block;
    padding: 5px 0 0;
}

footer h4 {
    color: var(--custom-color);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 20px;
}

footer .useful-link a:hover {
    color: var(--color);
    padding-left: 15px;
    transition: all 0.5s;
}

section.sevsec {
    background: url(../images/ser-bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}
.sevsec .heading p {
    font-weight: 600;
    color: transparent;
    letter-spacing: 3px;
    font-size: 70px !important;
    text-transform: capitalize;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

i.far.fa-angle-double-right {
    color: var(--color) !important;
    padding-right: 10px;
}

.contus .addrs1 i {
    color: var(--color);
    font-size: 30px;
    padding: 10px 20px 10px 20px;
}

.contus .addrs1 {
    background: var(--bg-light);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px 0px #aeaeae;
    border-radius: 5px;
}

.contus .addrs1 span.jhg {
    font-size: 18px;
    font-weight: 500;
}

.contus .addrs1 label {
    font-size: 25px;
    font-weight: 700;
    color: var(--custom-color);
    padding-right: 15px;
}


.address .list-unstyled a {
    color: var(--custom-color);
    text-decoration: none;
    padding: 5px 0;
    display: flex;
    font-weight: 600;
    align-items: center;
}

.address .list-unstyled p {
    margin: 0;
}

.footer-bottom {
    background-color: var(--custom-color);
}

/* sticky social icon css start */

.sticky-social {
    position: fixed;
    top: 200px;
    left: -35px;
    padding: 0px;
    margin: 0px;
    z-index: 9999;
}

.social {
    list-style: none;
}

.social li {
    padding: 10px 10px;
    font-size: 25px;
    transition: all 0.8s ease-in-out;
}

.social li a {
    color: #fff;
}

.social li:hover {
    margin-right: -15px;
    box-shadow: 2px 5px 10px grey;
}

.social li:hover .fa {
    margin-left: 20px;
}

.fa {
    color: #fff;
    transition: all 0.8s ease-in-out;
}

.fb {
    background-color: #3C5A98;
}

.twitter {
    background-color: #1EA1F2;
}

.insta {
    background-color: #DC4F42;
}

.whats {
    background-color: #18e43a;
}

.vim {
    background-color: #59BFBE;
}


/* sticky social icon css end */

.sltfl {
    padding: 100px 0 50px;
}

.addrs {
    background: var(--bg-light);
    padding: 30px;
    position: relative;
    text-align: center;
    height: 160px;
}

.addrs span.ico-box {
    display: block;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    background: var(--color);
    width: 50px;
    margin: auto;
    border-radius: 50%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addrs span.ico-box i {
    padding: 0;
    font-size: 25px;
    width: auto;
    color: #fff;
}
.addrs label {
    display: block;
    padding: 10px 0;
    margin: 0;
    font-size: 22px;
    color: var(--custom-color);
    text-transform: uppercase;
    font-weight: 700;
}

.addrs span.jhg {
    font-weight: 600;
    color: #fff;
}

section.badcrm {
    background: var(--custom-color);
    padding: 80px 0;
}

.tithd p {
    font-size: 35px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}


/* responsive css */

@media (max-width:991px){
    .navbar-toggler .fa-bars:before {
        font-family: 'Font Awesome 5 Pro';
        font-style: normal;
        color: #fff;
    }
    header .logo span {
        padding-left: 0px;
    }
    .navbar {
        justify-content: end;
        position: relative;
    }
    .navbar-toggler:focus{
        box-shadow: none;
    }
    .navbar-toggler {
        background-color: var(--color);
    }
    .navbar-toggler-icon {
        width: auto;
        height: auto;
    }
    div#hedmenu {
        position: absolute;
        top: 43px;
        background: var(--custom-color);
        width: 320px;
        padding: 15px;
        border-radius: 5px;
        max-height: 400px;
        overflow: scroll;
    }
    .navbar a.nav-link:hover {
        color: #fff;
        background-color: var(--color);
    }
    .navbar a.nav-link {
        background: #fff;
        color: var(--custom-color);
        font-size: 18px;
        font-weight: 600;
        margin-right: 0;
        display: inline-block;
        padding: 7px 15px;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    .abtvt .row{
        overflow: hidden;
    }
    .heading {
        padding-bottom: 1.5rem !important;
    }
    .py-5 {
        padding: 1.5rem 0 !important;
    }
    .abtimg {
        margin-bottom: 20px;
    }
    .menuimg {
        margin-top: 30px;
    }
    .sevsec .card {
        margin-bottom: 20px;
    }
    .textmon .item {
        width: 100%;
    }
    iframe {
        padding-top: 30px;
    }
    footer .col-md-3:not(:last-child) {
        padding-bottom: 20px;
    }
    .sltfl{
        padding: 50px 0 0;
    }
    .addrs {
        margin-bottom: 50px;
    }
}

@media (max-width:767px){
    header .logo {
        width: 60%;
    }
    .mobile_btn {
        width: 40%;
        text-align: end;
        font-size: 25px;
    }
    .body-type .col-md-6:first-child {
        padding: 40px;
    }
    .cntfrm {
        margin-top: 30px;
    }
    .textmon .sttimg {
        display: none;
    }
    .useful-link {
        margin-top: 20px;
    }
    .top-header .col-md-6 {
        text-align: center !important;
    }
}