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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--primary-color);
}


:root {
  --primary-font: "Poppins", sans-serif;
  --primary-color: #fc9d00;
  --teritary-color: #0b7eae;
  --white-color: #fff;
  --black-color: #000;
}


/* reset css start */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--primary-font);
  overflow-x: hidden;
}





img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease-out 0s;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
  font-family: var(--primary-font);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

span {
  font-family: var(--primary-font);
}

button:focus {
  outline: none;
}

a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--primary-font);
}

a:hover {
  text-decoration: none;
  color: #000;
}


p {
  font-size: 20px;
  color: #000;
  text-align: justify;
  line-height: 35px;
  margin-bottom: 0;
}



/* typography css start */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: #000;
  margin: 0;
  line-height: 1.4;
  font-family: var(--primary-font);
}

h1 {
  font-size: 70px;
}


h2 {
  font-size: 60px;
}

h3 {
  font-size: 48px;
}

h4 {
  font-size: 38px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 15px;
}

/* typography css end */

/* Heder css start*/
.site-header {
  width: 100%;
  z-index: 9;
}

.site-header__3 {
  /* border-bottom: 1px solid #32323D; */
  padding: 10px 0px;
  background-color: #fff;
}


.header-top {
  padding: 30.5px 0px;
  border-bottom: 1px solid #32323D;
}

.header-top__right a {
  text-decoration: none;
}

.header-top__right .tel {
  color: #ffffff;
  font-size: 18px;
}

.header-top__right .tel i {
  color: #C7A17A;
  padding-right: 15px;
  font-size: 19px;
}

.header-top__right .site-btn {
  margin-left: 80px;
}

/* .arrow-btn {
  background-color: var(--primary-color);
  padding: 11px 13px;
  border-radius: 0 0 27px 27px;
  position: relative;
  top: -14px;
  right: -8px;
} */

.arrow-btn i {
  font-weight: 400;
  font-size: 30px;
}

.arrow-btn-1 i {
  font-weight: 400;
  font-size: 30px;
}


.header-top__infos li {
  color: #6c6c6c;
  text-transform: uppercase;
  font-weight: 500;
}

.header-top__infos li:not(:last-child) {
  margin-right: 65px;
}

.header-top__infos li i {
  color: #C7A17A;
  padding-right: 10px;
  font-size: 19px;
}

.header-top__infos li a {
  color: #6c6c6c;
  text-decoration: none;
}

/* 
.logo img {
  max-width: 95px;
} */

/* Navigation css */
.main-menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  justify-content: end;
  padding: 0;
  margin: 0;
  align-items: center;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li:not(:last-child) {
  margin-right: 10px;
  margin-left: 0px;
}

.main-menu ul li a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: #000;
  padding: 0px 10px;
  position: relative;
  line-height: 22px;
  font-weight: 400;
}

.main-menu ul li a.site-btn {
  background-color: #007832;
  color: var(--white-color) !important;
  font-size: 1rem;
  padding: 13px 20px;
}


.main-menu ul li a:hover::after {
  opacity: 1;
  visibility: visible;
  left: 0;
}


.main-menu ul li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(100%);
  -ms-transform: scaleY(100%);
  transform: scaleY(100%);
}

.main-menu ul li .sub-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  min-width: 240px;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  background: #ffffff;
  padding: 20px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  z-index: 3;
  text-align: left;
  transform-origin: 50% 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  border-radius: 5px;
}

.main-menu ul li .sub-menu li {
  margin-right: 0px;
}

.main-menu ul li .sub-menu li a {
  color: #010103;
  padding: 10px 30px;
}

.main-menu ul li .sub-menu li a::after {
  left: 15px;
}

.main-menu ul li .sub-menu li a:hover::after {
  left: 10px;
}

.main-menu ul li .sub-menu li:hover>a {
  color: #C7A17A;
  letter-spacing: 1px;
}

.main-menu ul li .sub-menu li:hover>a::after {
  left: 10px;
}

.main-menu ul li .sub-menu ul {
  left: 100%;
  top: 0px;
}

.main-menu ul li .sub-menu .active>a {
  color: #C7A17A;
  letter-spacing: 1px;
}

.main-menu ul li .sub-menu .active>a::after {
  left: 10px;
}

.main-menu ul .active>a {
  color: #C7A17A;
}

.main-menu ul .active>a::after {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.main-menu__2 ul li a {
  color: #000;
  font-weight: 500;
}


.main-menu__4 ul li a {
  color: #000;
  font-weight: 500;
}

.menu-area {
  position: relative;
  z-index: 99;
}

.logo {
  background-color: #fff;
  padding: 0px 0;
  text-align: left;
}

.menu-area__right .item {
  font-size: 19px;
  color: #ffffff;
}

.menu-area__right .item i {
  color: #000;
}

.menu-area__right--2 .item {
  color: #000;
}

.menu-area__right--2 .item i {
  color: #000;
}

.menu-area__right--4 .item {
  color: #000;
}

.menu-area__right--4 .item i {
  color: #000;
}



.menu-area.sticky-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  background: #ffffff;
  -webkit-box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}


.menu-area-2.sticky-header {
  background-color: #ffffff;
}


.logo img {
  width: 140px;
}


.menu-area__4.sticky-header {
  background-color: #ffffff;
}

.menu-area.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.mean-container .mean-nav ul li a:hover {
  color: #C7A17A;
}


.after-logo-1 {
  display: flex;
  margin-bottom: 10px;
}

.after-logo {
  display: flex;

}

span.exchange-rate,
span.date {
  font-size: 14px;
  margin-right: 30px;
}

span.usd,
span.euro {
  font-size: 14px;
  margin-right: 68px;
}

.currnecy-link {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}


/* Button css */
.site-btn {
  background: var(--primary);
  color: var(--white-color);
  font-size: 1rem;
  line-height: 1;
  padding: 15px 30px;
  font-family: var(--primary-font);
  border-radius: 3rem;
  font-weight: 600;
}




/* .site-btn:hover {
  background: linear-gradient(130deg, rgba(247, 154, 0, 1) 0%, rgba(22, 0, 0, 1) 100%);
  color: var(--white-color);
} */


.site-btn__borderd {
  background: transparent;
  border-color: #ffffff50;
}



.section {
  padding: 120px 0;
}


/* side info css */
.hamburger-trigger {
  margin-left: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.side-info {
  padding-left: 20px;
  padding-right: 20px;
}

.side-info .title {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}

.side-info .mb-5 {
  margin-bottom: 5px !important;
}

.side-info p {
  font-size: 15x;
  line-height: 28px;
}

.side-info__close {
  top: 0;
  left: 0;
  background: #007832;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.side-info__close a {
  display: block;
  height: 100%;
  width: 100%;
  color: #ffffff;
}

.side-info__close:hover {
  background: #007832;
}

.side-info__wrapper {
  padding: 20px;
}

.side-info .social-links a:hover {
  color: #007832;
  border-color: #007832;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear 0s;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.overlay.active {
  opacity: 0.5;
  visibility: visible;
  cursor: url(../images/icons/cancel.png), auto;
}

.side-info-wrapper,
.cart-bar-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -370px;
  width: 340px;
  height: 100%;
  display: block;
  background-color: #ffffff;
  z-index: 100;
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  padding-top: 0px;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.side-info-wrapper .nav,
.cart-bar-wrapper .nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.side-info-wrapper .nav a,
.cart-bar-wrapper .nav a {
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  max-width: 50%;
  font-size: 18px;
  color: #010103;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}

.side-info-wrapper .nav a.active,
.cart-bar-wrapper .nav a.active {
  background: #010103;
  color: #ffffff;
}

.side-info-wrapper.show,
.cart-bar-wrapper.show {
  right: 0;
}

.side-info-wrapper.mm-only.show {
  display: none;
}

@media (max-width: 991px) {
  .side-info-wrapper.mm-only.show {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .side-info-wrapper.show-all.show {
    display: none;
  }
}

.side-info-wrapper .contact__info li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 15px;
  align-items: flex-start;
}

.side-info-wrapper .contact__info li span {
  margin-right: 10px;
  flex: 0 0 15px;
  -ms-flex: 0 0 15px;
  max-width: 15px;
  color: #C7A17A;
  font-size: 15px;
}

.side-info-wrapper .contact__info li p {
  flex: 0 0 85%;
  -ms-flex: 0 0 85%;
  max-width: 85%;
}

.side-info-wrapper .contact__info li:not(:last-child) {
  margin-bottom: 5px;
}






.pad-left {
  padding-left: 84px;
}

.pad-left-3 {
  padding-left: 62px;
}

.pad-left-1 {
  padding-left: 40px;
}

.pad-left-2 {
  padding-left: 120px;
}





.satguru-footer {
  padding: 35px 0 100px 0;
  /* background-color: #00304b; */
}

.satguru-footer .middle-footer .contact__Bx .img-icon {
  width: 65px;
  height: 65px;
  background-color: #ffffff46;
  border-radius: 50%;
  text-align: center;
  margin-right: 15px;
  line-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.satguru-footer .middle-footer .contact__Bx .img-icon img {
  width: 28px;
  display: flex;
  align-items: center;
  height: 28px;
}

.satguru-footer .middle-footer .contact__Bx .contact__details p {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1;
}

.satguru-footer .middle-footer .contact__Bx .contact__details a {
  color: #000;
  font-size: 25px;
  font-weight: 600;
  transition: .2s ease-in;
  line-height: 28px;
  text-decoration: none;
}

.satguru-footer .middle-footer .contact__Bx .contact__details .social-share.icon-transparent li a {
  height: 50px;
  width: 50px;
  color: #fff;
  font-weight: 400;
  -webkit-transition: .4s;
  transition: .4s;
  line-height: 37px;
  background-color: #007832;
  border: none;
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;

}

.social-share.icon-transparent li {
  margin: 0 14px 0 0;
}

.satguru-footer .middle-footer .contact__Bx .contact__details a {
  color: var(--black-color);
  font-size: 14px;
  font-weight: 400;
  transition: .2s ease-in;
  line-height: 28px;
}

.satguru-footer .middle-footer .contact__Bx .contact__details .social-share.icon-transparent li a i {
  color: #fff;
  font-weight: 400;
  -webkit-transition: .4s;
  transition: .4s;
  line-height: initial;
  font-size: 30px;
  border: none;
  border-radius: 0;
}

.middle-footer {
  padding-bottom: 20px;
}

.social-share {
  padding: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.col-border {
  border-left: 1px solid #33596f;
  padding-top: 15px;
  padding-bottom: 15px;
}


.copyright-area {
  border-top: 2px solid #1d475f;
  padding: 20px 0;

}

.copyright-area p {
  color: var(--white-color);
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

.logo-section {
  padding: 70px 0 50px;
  background-color: #fff;
}

.hero__area.hero__area--4.bg_img {
  padding-bottom: 30px;
  background-color: #fff;
}

.logo-grid {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.logo-grid .footer-logo {
  margin: 0 20px;
}


.footer-logo-1 {
  display: flex;
  justify-content: start;
  text-align: center;
}

.footer-logo-1 .flogo {
  margin: 0 20px 0 0px;
}

.mentoring-says {
  position: relative;
}

.mentoring-says .owl-nav {
  position: absolute;
  bottom: 9px;
  right: 13px;
}

.mentoring-says .prev_btn,
.mentoring-says .next_btn {
  position: absolute;
  bottom: 0;

}

.mentoring-says .next_btn {
  right: 0;
  position: absolute;
  background-color: #fff;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  height: 45px;
  border-radius: 50px;
  transition: 0.3s all ease-in;
  border: 2px solid #007832;

}

.mentoring-says .next_btn:hover,
.mentoring-says .prev_btn:hover {
  background-color: #007832;
  color: #fff;
  border: 2px solid #007832;


}

.mentoring-says .prev_btn {
  right: 53px;
  position: absolute;
  background-color: #fff;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  height: 45px;
  border-radius: 50px;
  transition: 0.2s all ease-in;
  border: 2px solid #007832;

}

.mobile_abt_bx {
  padding: 20px;
}

.exchange-rate {
  font-size: 16px;
  font-weight: 400;
}

.price {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 10px;
}

.mobile-menu-call {
  text-decoration: none;
  color: #000;
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.mobile-menu-mail {
  text-decoration: none;
  color: #000;
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.currency {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}


.mobile-menu-call i {
  width: 30px;
  height: 30px;
  display: inline-block;
  border: 2px solid #007832;
  border-radius: 50px;
  text-align: center;
  color: #007832;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.mobile-menu-mail i {
  width: 30px;
  height: 30px;
  display: inline-block;
  border: 2px solid #007832;
  border-radius: 50px;
  text-align: center;
  color: #007832;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

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

.logo-grid .owl-dots .active {
  border: 2px solid #007731;
  background-color: #007731;
}

.logo-grid .owl-dots button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border: 2px solid #bababa;
  margin: 10px 5px 0;
  border-radius: 50%;
}



.small-text {
  font-size: 16px;
}

.wp-icon img {
  width: 60px;
  position: fixed;
  right: 30px;
  bottom: 140px;
  z-index: 1;
}