@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/*=========================================================
                     css common style 
===========================================================*/

body {
  font-family: "Roboto", serif;
}

p {
  font-size: 18px;
  line-height: 1.5;
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
}

ul li {
  font-size: 18px;
  padding-bottom: 10px;
}

.inner_sub_ul {
  list-style: initial;
}

ol li {
  font-size: 18px;
  padding-bottom: 10px;
}

/*=============================
          Preloader
===============================*/
#preloader {
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999;
}

#preloader .loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 3px solid #fdf2f9;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

#preloader .loader .loader-container::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-top: 6px solid #ffc300;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

#preloader .loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  text-align: center;
}

#preloader .loader .loader-icon img {
  animation: zoomIn alternate 900ms infinite;
  width: 100px;
}

#preloader.black-bg .loader-container, #preloader.black2-bg .loader-container {
  border: 3px solid #1a1a1a;
}

#preloader.black-bg .loader-icon, #preloader.black2-bg .loader-icon {
  filter: brightness(99) grayscale(9);
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

/*=============================
       Scroll Top
===============================*/
.scroll__top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 50%;
  z-index: 99;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #ffc300;
  transition: 1s ease;
  border: none;
}

@media (max-width: 1199.98px) {
  .scroll__top {
    right: 25px;
  }
}

@media (max-width: 991.98px) {
  .scroll__top {
    right: 30px;
  }
}

@media (max-width: 767.98px) {
  .scroll__top {
    right: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
  }
}

.scroll__top.open {
  bottom: 30px;
}

@media (max-width: 1199.98px) {
  .scroll__top.open {
    bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 15px;
  }
}

.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}




/*=======================================================
                     img-animation
=========================================================*/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@media (max-width: 767px) {

  .img-custom-anim-right,
  .img-custom-anim-left,
  .img-custom-anim-top {
    animation: none;
    opacity: 1;
  }
}

.slideinleft,
.slideinright,
.slideindown,
.slideinup {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 1.3s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}

.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1);
    transform: scale3d(.1, .1, .1);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@keyframes zoomOut {
  from {
    opacity: 1;
    transform: scale3d(.1, .1, .1);
  }
  50% {
    transform: scale3d(1, 1, 1);
  }

  
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}


/*=======================================================
                  site main heading section
=========================================================*/

.site_main_heading_sec {
  background-image: url(../images/home_banner1.png);
  background-size: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site_main_heading_sec h1 {
  font-family: "Permanent Marker", serif;
  font-size: 60px;
  font-weight: 300;
  color: #E5450B;
  text-shadow: -4px -4px 0 #fff, 4px -4px 0 #fff, -4px 4px 0 #fff, 4px 4px 0 #fff;
  letter-spacing: 4px;
}

.site_main_heading_sec_tint {
  padding: 150px 0 80px;
  position: relative;
  z-index: 1;
}

.site_main_heading_sec .kannada_heading {
  font-family: "Noto Serif Kannada", serif;
  color: #282363;
  text-shadow: -4px -4px 0 #fff, 4px -4px 0 #fff, -4px 4px 0 #fff, 4px 4px 0 #fff;
  font-weight: 600;
}

.site_main_heading_content h3 {
  font-size: 40px;
  font-weight: 400;
  margin-top: -10px;
  color: #ff661d;
  font-style: italic;
}

.main_box_images img {
  position: absolute;
  width: 10%;
}

.main_box_images img:first-child {
  top: 60%;
  left: 3%;
  width: 7%;
  animation: animation1 5s infinite;
}

.main_box_images img:nth-child(2) {
  top: 0%;
  right: 0%;
  width: 35%;
}

.main_box_images img:last-child {
  top: 60%;
  right: 44%;
  width: 4%;
  transform: rotate(41deg);
  animation: zoomOut 2s linear;
}


.heading_sec_img {
  animation: movebounce 3.9s linear infinite;
}

@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* @keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
} */

/* =========================================================
                      second section
============================================================= */

.section-space {
  padding: 60px 0;
}

.second_main_content {
  background-size: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #fff;
}

.second_sec_shape_img img {
  position: absolute;
  top: 0;
  width: 39%;
}

.second_sec_shape_img img:last-child {
  width: 8%;
  left: 26%;
  top: 10%;
  animation: animation1 5s infinite;
}

.ingredients_img {
  width: 92%;
}

@keyframes animation1 {
  0% {
    transform: translateY(50px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(50px);
  }
}

@keyframes blinking {
  0% {
    background-color: var(--DTPrimaryColor);
  }

  50% {
    background-color: var(--DTSecondaryColor);
  }

  100% {
    background-color: var(--DTPrimaryColor);
  }
}

/*======================================================
                    3rd section
======================================================== */
.third_sec {
  position: relative;
  background-size: cover;
  background-position: right;
  overflow: hidden;
  background-attachment: fixed;
  height: 418px;
}

.third_sec video {
  height: 418px;
  object-fit: cover;
  object-position: center;
}

.third_sec::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(88deg, #76af07d6, transparent);
}

.third_sec_shapes div {
  position: absolute;
  z-index: 11;
  background-image: linear-gradient(to left, #76af07d6, #ffd000ad);
  width: 600px;
  height: 170%;
  top: -30%;
  opacity: 0.4;
  transform: skew(-40deg, -10deg);
}

.third_sec_shapes div:first-child {
  left: 10%;
}

.third_sec_shapes div:nth-child(2) {
  left: 23%;
}

.third_sec_text_content {
  position: absolute;
  z-index: 11;
  top: 0;
  width: 68%;
  padding: 60px 0;
  left: 0;
  right: 0;
  margin: auto;
}

.third_sec h3 {
  color: #fff;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
}

.third_sec_main_content {
  padding: 20px;
}

/*  */
.service-item {
  position: relative;
  padding: 20px;
  border-radius: 15px;
  background: #ffd0009c;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.service-item::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: #679a08;
  opacity: 0.5;
  right: -50px;
  top: -50px;
  border-radius: 50%;
}

.service-icon {
  width: 70px;
  height: 70px;
  line-height: 40px;
  background: #001d50;
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-right: 20px;
  border-radius: 50px;
  position: relative;
  transition: all 0.5s ease-in-out;
  font-weight: 500;
  margin-bottom: 0;
  margin: auto;
  padding: 10px;
  margin-bottom: 20px;
}

.service-icon::before {
  content: "";
  position: absolute;
  border: 3px solid #001d50;
  border-top-color: transparent;
  left: -7px;
  right: -7px;
  top: -7px;
  bottom: -7px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.service-content {
  position: relative;
  text-align: center;
}

.service-content h3 {
  font-size: 22px;
  margin: 0;
  color: #001d50;
}

.service-item:hover .service-icon::before {
  transform: rotate(180deg);
}

.service-item:hover::after {
  width: 120px;
  height: 120px;
}

.service-item::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: #649408;
  opacity: 0.4;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}



/*=================================================
                        header
===================================================*/
.transparent-header {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  height: auto;
  padding: 5px 0;
}

@media (max-width: 991.98px) {
  .tg-header__area {
    padding: 15px 0;
  }
}

.tg-header__area .tgmenu__navbar-wrap>ul>li a {
  padding: 35px 0px;
}

.sidebar-btn {
  position: relative;
  width: 60px;
  border-radius: 50%;
  background: #ffc300;
  text-align: center;
  padding: 22px 0;
  display: inline-block;
}

.sidebar-btn .line {
  display: block;
  height: 2px;
  width: 18px;
  background: #fff;
  margin: auto;
  transition: 0.4s;
}

.sidebar-btn .line:not(:last-child) {
  margin-bottom: 5px;
}

.sidebar-btn:hover .line:nth-child(2) {
  width: 10px;
}

@media (max-width: 767.98px) {
  .sidebar-btn {
    width: 50px;
    padding: 17px 0;
  }
}

.tgmenu__nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 991.98px) {
  .tgmenu__nav {
    justify-content: space-between;
  }
}

.tgmenu__nav .logo img {
  max-height: 80px;
}

.tgmenu__navbar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
}

.tgmenu__navbar-wrap>ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 0;
  margin: 0 auto;
}

.tgmenu__navbar-wrap>ul>li {
  list-style: none;
  display: block;
  position: relative;
  margin-right: 56px;
  padding-bottom: 0;
}

@media (max-width: 1199.98px) {
  .tgmenu__navbar-wrap>ul>li {
    margin-right: 45px;
  }
}

.tgmenu__navbar-wrap>ul>li:last-child {
  margin-right: 0;
}

.tgmenu__navbar-wrap>ul>li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #000;
  letter-spacing: 0.05em;
  padding: 55px 0px;
  display: flex;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.tgmenu__navbar-wrap>ul>li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  background: var(--tg-color-dark);
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 0px 5px rgba(255, 255, 255, 0.1);
  -moz-box-shadow: 0 0px 5px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0px 5px rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}

.tgmenu__navbar-wrap>ul>li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}

.tgmenu__navbar-wrap>ul>li .sub-menu>li {
  margin-left: 0;
  text-align: left;
  display: block;
}

.tgmenu__navbar-wrap>ul>li .sub-menu>li a {
  padding: 11px 15px 5px 25px;
  line-height: 1.3;
  display: block;
  color: var(--tg-color-white-default);
  text-transform: capitalize;
}

.tgmenu__navbar-wrap>ul>li .sub-menu>li:hover>a, .tgmenu__navbar-wrap>ul>li .sub-menu>li.active>a {
  color: #ffc300;
}

.tgmenu__navbar-wrap>ul>li .sub-menu>li:hover>a {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  -ms-transform: translateX(8px);
  -o-transform: translateX(8px);
  transform: translateX(8px);
}

.tgmenu__navbar-wrap>ul>li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.tgmenu__navbar-wrap>ul>li.active a, .tgmenu__navbar-wrap>ul>li:hover a {
  color: #76af07;
  transition: .5s ease;
}

.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}

.tgmenu__main-menu li.menu-item-has-children>a:hover {
  color: var(--tg-theme-primary);
}

.tgmenu__main-menu li.menu-item-has-children:hover>a::after {
  color: var(--tg-theme-primary);
}

.tgmenu__main-menu li.menu-item-has-children.active>a::after {
  color: var(--tg-theme-primary);
}

@media (max-width: 1199.98px) {
  .tgmenu__search {
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  .tgmenu__search {
    display: none;
  }
}

.sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border-radius: 0;
}

.sticky-menu ul li .sub-menu {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  -o-border-radius: 0 0 6px 6px;
  -ms-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}


/*=============================
	12. Mobile Menu
===============================*/
.tgmobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 999;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
}

.tgmobile__menu .navbar-collapse {
  display: block !important;
}

.tgmobile__menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}

.tgmobile__menu .nav-logo img {
  max-height: 35px;
}

.tgmobile__menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}

.tgmobile__menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0;
}

.tgmobile__menu .navigation li.active>a {
  color: #76af07;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 2px;
  height: 12px;
  background-color: #fff;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
  background-color: #fff;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
  background-color: #000;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
  display: none;
}

.tgmobile__menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 1.5;
  padding: 10px 60px 10px 25px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
}

.tgmobile__menu .navigation li>a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 2px;
  background: var(--tg-theme-primary);
  pointer-events: none;
}

.tgmobile__menu .navigation li ul li>a {
  margin-left: 20px;
}

.tgmobile__menu .navigation li ul li ul li a {
  margin-left: 40px;
}

.tgmobile__menu .navigation li ul li ul li ul li a {
  margin-left: 60px;
}

.tgmobile__menu .navigation li>ul {
  display: none;
}

.tgmobile__menu .navigation li>ul>li>ul {
  display: none;
}

.tgmobile__menu .navigation ul {
  padding: 0;
  margin: 0;
}

.tgmobile__menu .navigation ul li a {
  display: block;
}

.tgmobile__menu .navigation ul li ul li>a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.tgmobile__menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tgmobile__menu .navigation>li>ul>li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tgmobile__menu .navigation>li.active>a::before {
  height: 100%;
}

.tgmobile__menu .close-btn {
  position: absolute;
  right: 15px;
  top: 28px;
  line-height: 30px;
  width: 35px;
  text-align: center;
  font-size: 20px;
  color: var(--tg-theme-primary);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tgmobile__menu .close-btn i[class^=flaticon-]:before {
  font-weight: var(--tg-fw-bold) !important;
}

.tgmobile__menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
}

.tgmobile__menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(347deg, #ffcd00, #76af07);
  padding: 0px 0px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.tgmobile__menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--tg-color-white-default);
  margin-right: 30px;
  top: 15px;
}

@media (max-width: 991.98px) {
  .tgmobile__menu-outer .mobile-nav-toggler {
    display: block !important;
  }
}


.tgmobile__menu-outer {
  margin-top: 75px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .tgmobile__menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu-visible .tgmobile__menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-visible .tgmobile__menu .close-btn {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

.mobile-nav-toggler {
  display: none;
}

@media (max-width: 991.98px) {
  .mobile-nav-toggler {
    display: inline-flex;
  }
}

/* ====================================================
                         btn styles
======================================================= */

.main_btn {
  font-size: 16px;
  border-radius: 30px;
  padding: 10px 10px 10px 15px;
  transition: .5s ease;
  background-color: #ffc300;
  color: #fff;
  border: none;
}

.main_btn i {
  background: #123c69;
  padding: 6px 10px;
  border-radius: 50%;
}

.main_btn:hover {
  background-color: #123C69;
  transition: .5s ease;
}

.main_btn:hover i {
  background: #84c734;
  color: #fff;
  transition: .5s ease;
}

/* =================================================
                  4th section
====================================================*/

.forth_sec {
  background: url(../images/imli_girl_bg.png);
  background-attachment: fixed;
  background-size: cover;
}

.forth_sec_tint {
  background-color: #ffffffde;
}

.imli_ver_block {
  padding: 30px;
  text-align: center;
  border-radius: 30px;
  border: 3px solid #ff9933;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  background: #ffffffa8;
}

.imli_ver_block_content p {
  font-size: 20px;
}

.imli_ver_block_content h3 {
  font-family: "Permanent Marker", serif;
  font-size: 34px;
}

.imli_block img {
  width: 100%;
  position: relative;
  z-index: 1;

}

.imli_block {
  position: relative;
  width: 47%;
  margin: auto;
  margin-top: -30px;
  animation: animation1 5s infinite;
}

.imli_block::before {
  content: "";
  position: absolute;
  background: linear-gradient(323deg, #ffc300, transparent);
  height: 47%;
  width: 150%;
  z-index: 1;
  border-radius: 50%;
  bottom: 0;
  left: -25%;
}

/*====================================================
                      footer
======================================================*/
footer {
  color: #fff;
}

.footer_logo {
  width: 70%;
  margin-bottom: 10px;
}

footer p {
  font-weight: 300;
  color: #fff;
}

footer h4 {
  color: #ffd000;
  font-weight: 400;
}

.footer__area {
  padding-bottom: 30px;
  padding-top: 40px;
}

.footer_logo_content1 {
  width: 20%;
}

.footer_logo_content2 {
  width: 80%;
}

/*=============================================================
                       inner banner
===============================================================*/
.inner_banner {
  background: url(../images/inner_banner.png);
  background-size:cover;
}

.inner_banner_tint {
  padding: 170px 0 130px;
}

.banner_shape_img {
  animation: twinklestar 4s infinite;
}

.inner_banner_tint h1 {
  color: #ffb000;
  text-shadow: -2px 1px 1px #87cd00;
  font-weight: 400;
}

@keyframes twinklestar {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.5);
    opacity: 0.5;
  }
}

/*============================================================
                      shop inner page
==============================================================*/
.shop_categories {
  padding: 20px;
  background: #6ca205;
  color: #fff;
}

.shop_categories h3 {
  margin-bottom: 15px;
  font-weight: 400;
}

.shop_categories ul {
  padding: 0;
}

.shop_categories ul li {
  padding: 10px;
  background: #5a8801;
  background: linear-gradient();
  margin-bottom: 15px;
}

.shop_categories ul li a {
  color: #fff;
}

.shop_card {
  border: 3px solid #ffc300;
  border-radius: 30px;
  overflow: hidden;
  padding: 20px;
  width: 90%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.shop_card_text {
  background: #6ca205;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
}

.shop_card_text h4 {
  margin: 0;
  color: #fff;
  font-weight: 400;
}

.shop_card img {
  transition: .5s ease;
}

.shop_card:hover img {
  transition: .5s ease;
  transform: scale(1.1);
}

/* ===================================================================
                            contact page 
====================================================================== */

.contact_logo_content div:first-child {
  width: 20%;
}

.contact_logo_content div:last-child {
  width: 80%;
}

.contact-main-block {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.contact-main-block i {
  float: left;
  padding: 10px 15px;
  font-size: 20px;
  color: #ffc300;
  border: 1px dotted #ffc300;
  border-radius: 50%;
  margin-right: 20px;
  transition: .5s ease;
}

.contact-main-block p {
  margin: 0;
}

.contact-main-block .contact_first {
  margin-bottom: 15px;
}

.contact-main-block:hover i {
  background-color: #6ca205;
  transition: .5s ease;
  color: #fff;
  border-color: #6ca205;
}