/*====================
1. Google fonts
======================*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap');


/*====================
2. Theme variables
======================*/

:root {
  --body-font: 'Jost', sans-serif;
  --heading-font: 'Jost', sans-serif;
  --theme-color: #d8b30d;
  --second-color: #5f7a83;
  --theme-color2: #383F46;
  --three-color: #1B1A17;
  --theme-bg-light: #F9F9F9;
  --body-text-color: #757F95;
  --theme-color-gray: #FAFAFA;
  --color-white: #ffffff;
  --hero-overlay-color: #01060F;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --footer-text-color: #F5FAFF;
  --color-dark: #1B1A17;
  --container-width: 1310px;
}




/*====================
3. General css
======================*/

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;

}

a {
  color: var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
  margin: 0px;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.m5 {
  margin-top: 50px;
}

.img,
img {
  max-width: 100%;
  -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;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

.bg-gray {
  background-color: var(--theme-color-gray);
}


/*===================
5. Theme default css
======================*/

.ovrflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
  z-index: 1;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background: var(--theme-bg-light);
}



/*====================
6. Margin & padding
======================*/

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

.p-60 {
  padding: 60px 0 0 0;
}

.py-180 {
  padding: 180px 0;
}

.py-100 {
    padding:100px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-150 {
  margin-top: 150px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}



/*====================
7. Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color);
}

.site-title-tagline::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  background: var(--theme-color);
  opacity: .2;
  left: -2px;
  bottom: 0;
}

.site-title {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 55px;
  color: var(--color-dark);
  margin-bottom: 0;
}

.site-title span {
  color: var(--theme-color);
}

.site-heading p {
  margin-top: 15px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  border: 3px solid var(--theme-color);
  width: 90px;
  height: 10px;
  border-radius: 50px;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  height: 7px;
  width: 15px;
  border-radius: 50px;
  background: var(--theme-color);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(72px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(72px);
  }

  100% {
    transform: translateX(-1px);
  }
}



/*====================
8. Theme button
======================*/

.w-100 {
  width: 100%
}

.theme-btn{
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.btn-style-four{
	position:relative;
	line-height:24px;
	color:#ffffff;
	font-size:16px;
	font-weight:600;
	background:var(--theme-color);
	display:inline-block;
	padding:12px 28px;
	border-radius:10px;
	border:2px solid var(--theme-color);
}

.btn-style-four:hover{
	color:var(--theme-color);
	background:none;
}

/*wa btn*/
.wa-btn {
  font-size: 14px;
  color: #25D366;
  padding: 14px 25px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: 1px solid #25D366;
  background: transparent;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.wa-btn::before {
  content: "";
  height: 300px;
  width: 700px;
  background: #25D366;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.wa-btn:hover {
  color: var(--color-white);
}

.wa-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.wa-btn i {
  margin-left: 5px;
}


/*shopee btn*/
.shopee-btn {
  font-size: 14px;
  color: #EE4D2D;
  padding: 14px 25px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: 1px solid #EE4D2D;
  background: transparent;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.shopee-btn::before {
  content: "";
  height: 300px;
  width: 400px;
  background: #EE4D2D;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.shopee-btn:hover {
  color: var(--color-white);
}

.shopee-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.shopee-btn i {
  margin-left: 5px;
}



/*tokopedia btn*/
.tokopedia-btn {
  font-size: 14px;
  color: #008000;
  padding: 14px 25px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: 1px solid #008000;
  background: transparent;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.tokopedia-btn::before {
  content: "";
  height: 300px;
  width: 400px;
  background: #008000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.tokopedia-btn:hover {
  color: var(--color-white);
}

.tokopedia-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.tokopedia-btn i {
  margin-left: 5px;
}



/*lazada btn*/
.lazada-btn {
  font-size: 14px;
  color: #E31E52;
  padding: 14px 25px;
  transition: all#E31E52 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: 1px solid #E31E52;
  background: transparent;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.lazada-btn::before {
  content: "";
  height: 300px;
  width: 400px;
  background: #E31E52;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.lazada-btn:hover {
  color: var(--color-white);
}

.lazada-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.lazada-btn i {
  margin-left: 5px;
}







/*====================
9. Container
======================*/

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1200px;
  }
}



/*====================
10. Scroll top css
======================*/

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 23px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--theme-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}

#scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }

  .header-top-right {
    margin-right: 0;
  }
}

@media all and (max-width: 992px) {}



/*====================
11. Header top css
======================*/

.header-top {
  padding: 8px 0 10px 0;
  position: relative;
  background: var(--theme-color);

  z-index: 1;
}

/*.header-top::before{*/
/*  content: "";*/
/*  position: absolute;*/
/*  background: var(--theme-color);*/
/*  border-radius: 0 50px 0 0;*/
/*  border-right: 15px solid #fff;*/
/*  width: 10%;*/
/*  top: 0;*/
/*  left: 0;*/
/*  bottom: -1px;*/
/*  z-index: -1;*/
/*}*/

/*.header-top::after{*/
/*  content: "";*/
/*  position: absolute;*/
/*  background: var(--theme-color);*/
/*  border-radius: 50px 0 0 0;*/
/*  border-left: 15px solid #fff;*/
/*  width: 10%;*/
/*  top: 0;*/
/*  right: 0;*/
/*  bottom: -1px;*/
/*  z-index: -1;*/
/*}*/

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;

  font-size: 12px;
}

.header-top-contact a {
  color: var(--color-white);
  font-weight: 500;
}

.header-top-contact a i {
  color: var(--theme-bg-light);
}

.header-top-right {
  display: flex;
  align-items: center;
  /*gap: 15px;*/
  font-size: 12px;
  /*margin-right:30px;*/
}

.header-top-link a {
  color: var(--color-white);
  margin-right: 12px;
}

.header-top-link a:hover {
  color: var(--theme-color);
}

.header-top-social span {
  color: var(--color-white);
}

.header-top-social a {
  color: var(--color-white);
  font-size: 12px;
  text-align: center;
  margin-left: 14px;
  transition: var(--transition);
}

.header-top-social a:hover {
  color: var(--theme-color);
}


@media all and (max-width: 1199px) {

  .header-top-contact ul {
    gap: 10px;
  }

  .header-top-social a {
    width: 34px;
    height: 34px;
    line-height: 37px;
    margin-left: 0;
  }

  .header-top-left {
    margin-right: 5px;
  }

  .header-top-right {
    margin-right: 0px;
  }
}





/*====================
12. Navbar css
======================*/

.navbar {
  background: var(--color-dark);
  padding-top: 0px;
  padding-bottom: 0px;
  box-shadow: var(--box-shadow);
  z-index: 999;
}

.navbar.fixed-top {
  background: var(--color-dark);
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}


@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 130px;
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Free';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media all and (max-width: 1199px) {
  .nav-right {
    margin-left: 25px !important;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .nav-right-btn {
    display: none;
  }
}

.dropdown-item.active,
.dropdown-item:active {
  background: var(--theme-color) !important;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 20px;
    padding: 30px 0 30px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--theme-bg-light);
    text-transform: capitalize;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    border: none;
    left: -15px;
    border-radius: 8px;
    background: var(--color-white);
    width: 220px;
    box-shadow: var(--box-shadow);
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid var(--border-info-color);
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 9px 25px;
    font-weight: 600;
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
    padding-left: 32px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "//";
    position: absolute;
    left: 15px;
    top: 9px;
    color: var(--theme-color);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--theme-color);
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    width: 335px;
    left: 0;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .navbar #main_nav {
    justify-content: flex-end;
  }

  /* nav right */
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: 45px;
  }

  .nav-right-link {
    position: relative;
    font-size: 20px;
    color: var(--color-dark);
    transition: var(--transition);
  }

  .nav-right-link:hover {
    color: var(--theme-color) !important;
  }

  .nav-right .sidebar-btn .nav-right-link,
  .nav-right .search-btn .nav-right-link {
    border: none;
    background: transparent;
    color: var(--color-dark);
    font-size: 28px;
    padding-right: 0;
  }

  .nav-right .search-btn .nav-right-link {
    font-size: 20px;
    padding: 0;
  }

  .nav-right .theme-btn {
    padding: 12px 25px;
  }

}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    /*position: fixed;*/
  }

  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 70px;
  }

  .navbar-collapse {
    max-height: 420px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: var(--color-white);
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .mobile-menu-right .nav-right-link {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-dark);
  }

  .mobile-menu-right .nav-right-link:hover {
    color: var(--theme-color);
  }

  .search-area.open {
    top: 50px !important;
  }

  .navbar-toggler-mobile-icon {
    font-size: 25px;
    color: var(--theme-color);
    font-weight: 500;
  }

  .navbar .dropdown-menu {
    border-radius: 8px;
  }

  .nav-right {
    display: none;
  }

}


/*============================
13. Multi level dropdown menu
==============================*/

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 10px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}


/*====================
15. sidebar popup css 
======================*/

.sidebar-popup {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.sidebar-popup.open {
  visibility: visible;
  opacity: 1;
}

.sidebar-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 450px;
  background: var(--color-white);
  visibility: hidden;
  opacity: 0;
  padding: 40px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 9999;
}

.sidebar-wrapper.open {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.sidebar-content {
  position: relative;
  overflow-y: auto;
  height: calc(100vh - 75px);
}

.close-sidebar-popup {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 38px;
  height: 38px;
  line-height: 36px;
  border-radius: 50px;
  text-align: center;
  border: none;
  font-size: 20px;
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.close-sidebar-popup:hover {
  background: var(--theme-color);
}

.sidebar-logo img {
  width: 220px;
}

.sidebar-about {
  margin-top: 40px;
}

.sidebar-about h4 {
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sidebar-contact {
  margin-top: 20px;
}

.sidebar-contact h4 {
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.sidebar-contact li {
  margin: 10px 0;
}

.sidebar-contact li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.sidebar-contact li a:hover {
  color: var(--theme-color);
}

.sidebar-social {
  margin-top: 25px;
}

.sidebar-social h4 {
  margin-bottom: 20px;
  font-size: 19px;
  text-transform: uppercase;
}

.sidebar-social a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  margin-right: 8px;
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: var(--box-shadow);
}

.sidebar-social a:hover {
  background: var(--theme-color);
}



/*====================
16. Main section css 
======================*/

/*** 

====================================================================
Section Title
====================================================================

***/
.sec-title {
  position: relative;
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .sec-title br {
    display: none;
  }
}

.sec-title .sub-title {
  position: relative;
  display: inline-block;
 
  color: var(--theme-bg-light);
  text-transform: uppercase;
  padding-left: 40px;
  margin-bottom: 10px;
  letter-spacing: 3.36px;
  font-size:20px !important;
}

.sec-title .sub-title:after,
.sec-title .sub-title:before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 3px;
  width: 30px;
  margin-top: -1px;
  background-color: var(--theme-color);
  border-radius: 5px;
  content: "";
  font-family: "Font Awesome 6 Pro";
}

.sec-title .sub-title:after {
  display: none;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 48px;
  color: #30373e;
  font-weight: 500;
  margin-bottom: 0;
  z-index: 2;
}

@media (max-width: 575.98px) {
  .sec-title h2 {
    font-size: 36px;
    line-height: 1.1em;
    letter-spacing: -1px;
  }

  .sec-title h2 br {
    display: none;
  }
}

.sec-title .text {
  margin-top: 20px;
}

.sec-title.light .text,
.sec-title.light h2,
.sec-title.light h1 {
  color: #fff;
}

.sec-title.light .sub-title::before {
  background-image: url(../images/icons/sub-title-before-colored.png);
}

.sec-title.alt .sub-title {
  padding-left: 0;
}

.sec-title.alt .sub-title:before {
  display: none;
}


.main {
  margin-top: 0rem;
}



/*.carousel-inner::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  left: -0.5px;*/
/*  top: 0;*/
/*  background: var(--hero-overlay-color);*/
/*  opacity: 0.7;*/
/*  z-index: 1;*/
/*}*/

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--color-white);
  color: var(--theme-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {

  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 70px !important;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    left: 120px;
  }

  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 120px;
  }

}

@media all and (max-width: 991px) {

  .hero-single .hero-content .hero-title {
    font-size: 50px;
  }

}

@media all and (max-width: 767px) {

  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content {
    margin-top: -100px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }

}




/*====================
19. Nice select css
======================*/

.nice-select {
  width: 100%;
  height: 55px;
  line-height: 54px;
  border-radius: 10px;
  font-size: 16px;
  border-color: #CED4DA;
  color: var(--body-text-color);
}

.nice-select::after {
  width: 9px;
  height: 9px;
  right: 20px;
  margin-top: -7px
}

.nice-select:focus {
  border-color: var(--theme-color);
}

.nice-select .list {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  border-radius: 8px;
  background: rgba(255, 179, 0, .1);
  color: var(--theme-color);
}


/* ===================
RTL css
====================== */

body.rtl-mode {
  direction: rtl;
}

body.rtl-mode .item-area {
  direction: ltr;
}

body.rtl-mode .price-wrapper {
  direction: rtl;
}

@media (min-width: 992px) {
  body.rtl-mode .navbar-brand {
    margin-left: 3rem;
  }

  body.rtl-mode .navbar .nav-item .nav-link {
    margin-left: 3rem;
    margin-right: 0;
  }
}


/*====================
47. User profile css 
======================*/

.nav-right-account img {
  width: 50px;
  border-radius: 50%;
  padding: 3px;
  border: 3px solid var(--theme-color);
  cursor: pointer;
}

.nav-right-account .dropdown-menu {
  border: none;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.nav-right-account .dropdown-menu li a i {
  margin-right: 5px;
}

.nav-right-account .dropdown-menu .dropdown-item {
  padding: 8px 20px;
  font-weight: 500;
}

.nav-right-account .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--theme-color);
  padding-left: 25px;
}

.mobile-menu-right {
  gap: 20px;
}

.mobile-menu-right .nav-right-account img {
  width: 35px;
  padding: 0;
  border: none;
}


.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: var(--title-font);
}

.theme-btn .btn-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*Btn Style One*/
.btn-style-one {
  position: relative;
  font-size: 14px;
  line-height: 26px;
  padding: 15px 30px;
  font-weight: 500;
  overflow: hidden;
  color: var(--theme-color);
  border:2px solid var(--theme-color);
  background: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-style-one i {
  position: relative;
  display: block;
  margin-left: 10px;
}

.btn-style-one:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--theme-color);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-style-one:hover {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-style-one:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.btn-style-one.light-bg {
  border: 1.5px solid #E1E1E1;
  background-color: var(--theme-bg-light);
  color: var(--color-dark);
}

.btn-style-one.light-bg:hover {
  color: var(--theme-bg-light);
  border-color: var(--color-dark);
}

.btn-style-one.light-bg::before {
  background-color: var(--theme-color);
}

.btn-style-one.hover-light:before {
  background-color: var(--theme-bg-light);
}

.btn-style-one.hover-light:hover {
  color: var(--color-dark);
}


/*======================================
19. BANNER
======================================*/

/*-------------------------------------
	1. inner page banner 
-------------------------------------*/
.wt-bnr-inr {
  height: 300px;
  background-size: cover;
  background-position: center center;
  display: table;
  width: 100%;
}

.wt-bnr-inr .container {
  display: table;
  height: 100%;
}

.wt-bnr-inr-entry {
  display: table-cell;
  vertical-align: middle;
}

.wt-bnr-inr-entry .banner-title-outer {
  position: relative;
  /*padding: 70px 0px 70px 30px;*/
  /*border: 10px solid #fff;*/
  border-right: 0px;
}

.wt-bnr-inr-entry .banner-title-outer:after {
  top: 0px;
}

.wt-bnr-inr-entry .banner-title-outer:before {
  bottom: 0px;
  right: 0px;
}


@media only screen and (max-width: 991px) {
  .wt-bnr-inr {
    height: 230px;
  }
}

@media only screen and (max-width: 768px) {
  .wt-bnr-inr-entry .banner-title-name {
    width: auto;
  }
}

.banner-inner-row h1,
.banner-inner-row h2,
.banner-inner-row h3,
.banner-inner-row h4,
.banner-inner-row h5,
.banner-inner-row h6 {
  color: #FFF;
}

.overlay-main {
  z-index: -1;
}



/*======================================
8. OVERLAY ( transparient box style  )
======================================*/

.overlay-wraper {
  position: relative;
}

.overlay-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.opacity-01 {
  opacity: 0.1;
}

.opacity-02 {
  opacity: 0.2;
}

.opacity-03 {
  opacity: 0.3;
}

.opacity-04 {
  opacity: 0.4;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-06 {
  opacity: 0.6;
}

.opacity-07 {
  opacity: 0.7;
}

.opacity-08 {
  opacity: 0.8;
}

.opacity-09 {
  opacity: 0.9;
}

.overlay-light .overlay-main {
  opacity: 0.3;
}

.overlay-dark .overlay-main {
  opacity: 0.9;
}

.overlay-wraper>.container,
.overlay-wraper>.container-fluid,
.overlay-wraper>.wt-icon-box-wraper,
.overlay-wraper>.wt-left-part,
.overlay-wraper>.wt-right-part {
  position: relative;
  z-index: 1;
}

.bg-black {
  background-color: #000;
}

.opacity-07 {
  opacity: 0.7;
}

/*=========================
39. background Square block
=========================*/
/*shape1*/
.square_shape1,
.square_shape2,
.square_shape3,
.square_shape4 {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.square_shape1:after,
.square_shape2:before,
.square_shape3:before,
.square_shape4:after {
  width: 800px;
  height: 800px;
  position: absolute;
  content: "";
  border: 40px solid rgba(191, 191, 191, 0.1);

  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: -1;
}

/*shape1*/
.square_shape1:after {
  left: -700px;
  top: 50px;
}

/*shape2*/
.square_shape2:before {
  right: -700px;
  bottom: -340px;
}

/*shape3*/
.square_shape3:before {
  right: -700px;
  bottom: -300px;
}

/*shape4*/
.square_shape4:after {
  left: -820px;
  top: -260px;
}

.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px;
}


/*13.1 breadcrumb-row-1*/

.wt-breadcrumb {
  margin: 0;
  list-style: none;
}

.wt-breadcrumb li {
  padding: 0;
  margin-right: 3px;
  color: #fff;
  position: relative;
  display: inline-block;
  font-size: 12px;
}

.wt-breadcrumb li a {
  color: #fff;
}

.wt-breadcrumb li a:hover {
  color: #000;
}

.wt-breadcrumb li:last-child {
  color: #fff;
}

.wt-breadcrumb li:first-child a i {
  font-size: 18px;
  vertical-align: text-top;
}

.wt-breadcrumb li:last-child:after {
  display: none;
}

/*13.2 Breadcrumb-1*/
.breadcrumb-style-2 li:after {
  content: "\f101";
  margin-left: 7px;
  font-family: 'FontAwesome';
  color: #fff;
  font-size: 16px;
  font-weight: normal;
}

/*-------------------------------------
	3. background image
-------------------------------------*/
.bg-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width:768px) {
  .bg-parallax {
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.bg-top-center {
  background-position: top center;
}

/* about area */

.bdr-gray {
  border-color: var(--theme-color-gray);
}


/*** 

====================================================================
	Education Section
====================================================================

***/

.sec-title-one h2:after {
  position: absolute;
  content: '';
  left: 105%;
  bottom: 4px;
  width: 35px;
  height: 2px;
  background-color: #d9b256;
}
.sec-title-one h2:after {
  border-color:#d9b256;
}

.education-section{
	position:relative;
	padding:90px 0px 60px;
	background-color:#f5f5f5;
}

.education-section .sec-title-one{
	margin-bottom:45px;
}

.education-section .notes-column h3{
	position:relative;
	color:#242424;
	font-size:20px;
	font-weight:600;
	line-height:1.2em;
	margin-bottom:8px;
}

.education-section .notes-column .text{
	position:relative;
	color:#777777;
	font-size:15px;
	line-height:1.8em;
}



/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--theme-color);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 4px;
  left: -60px;
  background: var(--theme-color);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}


.bg-repeat {
  background-repeat: repeat;
}

/*** Img Border ***/
.img-border {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.img-border::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 3rem;
  bottom: 3rem;
  border: 15px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.img-border img {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: calc(100% - 3rem);
  /*height: calc(100% - 3rem);*/
  height:100%;
  object-fit: cover;
  border-radius: 6px;
}



/* projects area */


/* ======= Projects style ======= */


.projects .item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius:10px;
}

.projects .item:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-filter: brightness(70%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.projects .item:hover .con {
  bottom: 0;
}

.projects .item img {
  -webkit-transition: all .5s;
  transition: all .5s;
  width:100%;
}

.projects .item .con {
  padding: 30px 15px;
  position: absolute;
  bottom: -90px;
  left: 0;
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
  z-index: 20;
  height: auto;
  box-sizing: border-box;
  /*background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, .1) 2%, rgba(0, 0, 0, .75) 90%);*/
  /*background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);*/
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 5%);
}

.projects .item .con:hover {
    top:50px;
}

.projects .item .con h6,
.projects .item .con h6 a {
  position: relative;
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.projects .item .con h5,
.projects .item .con h5 a {
  position: relative;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  margin-top: 0px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.projects .item .con p {
  color: #fff;
  font-size: 20px;
}

.projects .item .con i {
  color: #fff;
  font-size: 20px;
}

.projects .item .con i:hover {
  color: #b19777;
}

.projects .item .con .butn-light {
  margin-left: 0;
  border-radius: 30px;
  border-color: #999;
  padding: 11px 30px;
}

.projects .item .con .butn-light:hover {
  border-color: #b19777;
}

/* line animation */
.projects .item .line {
  text-align: center;
  height: 1px;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  margin: 0 auto 30px;
}

.projects .item:hover .line {
  width: 100%;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

/* prev/next project */
.projects-prev-next {
  padding: 40px 0;
  border: none;
  border-top: 1px solid #323232;
  position: relative;
}

@media (max-width: 576px) {
  .projects-prev-next {
    text-align: center;
  }

  .projects-prev-next-left {
    margin-bottom: 10px;
  }
}

.projects-prev-next a {
  display: inline-block;
  font-size: 16px;
  color: #999;
  line-height: 1em;
}

.projects-prev-next a i {
  font-size: 20px;
}

.projects-prev-next a:hover {
  color: #b19777;
}

.projects-prev-next .projects-prev-next-left a i {
  margin-right: 5px;
  font-size: 12px;
}

.projects-prev-next .projects-prev-next-right a i {
  font-size: 12px;
  margin-left: 0;
  margin-left: 5px;
}





/*====================
45. project single css 
======================*/

.produk-carousel .owl-nav {
  display:none;
}

.project-single-wrapper{
position: relative;
}

.project-single-widget{
background: var(--color-white);
border-radius: 10px;
padding: 20px;
margin-bottom: 25px;
}

.project-single-top{
margin-bottom: 25px;
}

.project-single-title{
margin-top: 10px;
margin-bottom: 8px;
}

.project-single-top .project-status{
position: unset;
font-size: 14px;
padding: 5px 15px;
background:var(--theme-color);
color:  var(--color-white);
font-weight:500;
border-radius:15px;
}

.project-single-meta li{
display: inline-block;
margin-right: 15px;
}

.project-single-meta li i{
color: var(--theme-color);
}

.project-single-slider{
position: relative;
}

.project-single-slider img{
border-radius: 10px;
width:100%;
}

.project-single-slider .flex-control-thumbs img{
padding: 0;
}

.project-single-slider .flex-control-nav{
margin-top: 20px;
}

.project-single-slider .flexslider-thumbnails .flex-direction-nav a{
margin-top: -80px;
border-radius: 50%;
line-height: 40px;
}

.project-single-slider .flexslider-thumbnails .flex-direction-nav .flex-prev{
left: 20px;
}

.project-single-slider .flexslider-thumbnails .flex-direction-nav .flex-next{
right: 20px;
}

.project-key-item{
display: flex;
gap: 10px;
margin-bottom: 25px;
}

.project-key-icon{
margin-top: 5.5px;
}

.project-key-icon i{
font-size: 24px;
line-height: 1;
color: var(--theme-color);
}

.project-single-list li{
margin: 8px 0;
}

.project-single-list li i{
color: var(--theme-color);
margin-right: 5px;
}

.project-single-map iframe{
height: 300px;
border-radius: 10px;
}

.project-single-price{
font-weight: 700;
color: var(--theme-color);
margin-bottom: 15px;
}

.project-single-author{
display: flex;
align-items: center;
gap: 15px;
}

.project-single-author img{
border-radius: 50%;
width: 100px;
}

.project-single-author-content span{
color: var(--theme-color);
font-weight: 500;
}

.project-single-author-social{
margin-top: 7px;
padding-top: 6px;
border-top: 1px solid var(--border-info-color);
}

.project-single-author-social a{
margin-right: 9px;
font-size: 17px;
}

.project-single-author-social a:hover{
color: var(--theme-color);
}

.project-single-form .form-group{
margin-top: 20px;
}

.project-single-form .form-control{
padding: 14px 20px;
border-radius: 10px;
box-shadow: none;
}

.project-single-form .form-control:focus{
border-color: var(--theme-color);
}








/* fun fact */

.fun-fact-section-two {
  position: relative;
  background-color: var(--color-dark);
  padding: 80px 0 20px;
}

.counter-block-two {
  position: relative;
  margin-bottom: 60px;
}

.counter-block-two:first-child .inner {
  border-left: 0;
}

.counter-block-two .inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 575.98px) {
  .counter-block-two .inner {
    border: 0;
  }
}

.counter-block-two .inner:hover .icon {
  background-color: var(--color-dark);
  color: var(--theme-bg-light);
  border-radius: 50%;
}

.counter-block-two .icon {
  position: relative;
  display: inline-block;
  height: 80px;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--theme-color);
  border:1px solid var(--theme-bg-light);
  border-radius:50%;
  font-size: 42px;
  margin: 0 auto 30px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.counter-block-two .count-box {
  position: relative;
  font-size: 48px;
  line-height: 52px;
  font-family: var(--title-font);
  color: var(--theme-bg-light);
  margin-bottom: 0px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.counter-block-two .count-box .count-text {
  font-size: 48px;
  line-height: 52px;
  font-family: var(--title-font);
  color: var(--theme-bg-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.counter-block-two .counter-title {
  color: var(--theme-bg-light);
  font-family: var(--text-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}




.gallery-style .gallery-img {
  overflow: hidden;
  position: relative;
  border-radius: 30px
}

.gallery-style .gallery-img img {
  width: 100%;
  transform: scale(1.001);
  transition: all ease .4s
}

.gallery-style .gallery-img:after,
.gallery-style .gallery-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 40%;
  background-color: rgba(	216,179,13, .9);
  opacity: 0;
  visibility: hidden;
  transition: all ease .6s;
  z-index: 1
}

.gallery-style .gallery-img:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0
}

.gallery-style .gallery-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--color-dark);
  color: var(--theme-bg-light);
  border-radius: 50%;
  font-size: 24px;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  visibility: hidden
}

.gallery-style .gallery-btn:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
  background-color: var(--theme-color);
  border-radius: inherit;
  z-index: -1;
  transition: all ease .4s;
  transform: scale(0.5);
  opacity: 0;
  visibility: hidden
}

.gallery-style .gallery-btn:hover {
  color: var(--color-white)
}

.gallery-style .gallery-btn:hover:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1)
}

.gallery-style:hover .gallery-img:after,
.gallery-style:hover .gallery-img:before {
  opacity: 1;
  visibility: visible;
  height: 100%
}

.gallery-style:hover .gallery-img img {
  transform: scale(1.15)
}

.gallery-style:hover .gallery-btn {
  opacity: 1;
  visibility: visible
}

.gallery-style.radius-2 .gallery-img {
  border-radius: 150px 150px 30px 30px
}

.gallery-style.radius-3 .gallery-img {
  border-radius: 30px 30px 150px 150px
}

.gallery-style.layout2 .gallery-btn {
  background-color: rgba(0, 0, 0, 0);
  color: var(--white-color);
  font-size: 30px
}

.vs-carousel .owl-nav {
  display: none;
}



.portfolio-style .portfolio-img {
    overflow: hidden;
    position: relative;
    border-radius: 30px
  }
  
  .portfolio-style .portfolio-img img {
    width: 100%;
    transform: scale(1.001);
    transition: all ease .4s
  }
  
  .portfolio-style .portfolio-img:after,
  .portfolio-style .portfolio-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 40%;
    opacity: 0;
    visibility: hidden;
    transition: all ease .6s;
    z-index: 1
  }
  
  .portfolio-style .portfolio-img:after {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0
  }
  
  .portfolio-style .portfolio-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
 
    color: var(--theme-bg-light);
    border-radius: 50%;
    font-size: 24px;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    visibility: hidden
  }
  
  .portfolio-style .portfolio-btn:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    background-color: var(--theme-color);
    border-radius: inherit;
    z-index: -1;
    transition: all ease .4s;
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden
  }
  
  .portfolio-style .portfolio-btn:hover {
    color: var(--color-white)
  }
  
  .portfolio-style .portfolio-btn:hover:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
  }
  
  .portfolio-style:hover .portfolio-img:after,
  .portfolio-style:hover .portfolio-img:before {
    opacity: 1;
    visibility: visible;
    height: 100%
  }
  
  .portfolio-style:hover .portfolio-img img {
    transform: scale(1.15)
  }
  
  .portfolio-style:hover .portfolio-btn {
    opacity: 1;
    visibility: visible
  }
  
  .portfolio-style.radius-2 .portfolio-img {
    border-radius: 150px 150px 30px 30px
  }
  
  .portfolio-style.radius-3 .portfolio-img {
    border-radius: 30px 30px 150px 150px
  }
  
  .portfolio-style.layout2 .portfolio-btn {
    background-color: rgba(0, 0, 0, 0);
    color: var(--white-color);
    font-size: 30px
  }
  


/* artikel */

.news-section {
  position: relative;
  padding: 120px 0 90px;
}

@media (max-width: 767.98px) {
  .news-section .sec-title {
    margin-bottom: 30px;
    text-align: center;
  }
}

.news-section .top-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991.98px) {
  .news-section .top-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
  }
}

.news-block {
  position: relative;
  margin-bottom: 30px;
}

.news-block .inner-box:hover .image-box .image a:after {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.news-block .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.news-block .inner-box .image-box {
  position: relative;
}

.news-block .inner-box .image-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.news-block .inner-box .image-box .image img {
  display: block;
  width: 100%;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.news-block .inner-box .image-box .image a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.news-block .inner-box .image-box .post-date {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 20px;
  margin-bottom: 20px;
  z-index: 10;
}

@media (max-width: 575.98px) {
  .news-block .inner-box .image-box .post-date {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

.news-block .inner-box .image-box .post-date .date {
  position: relative;
  background-color: var(--theme-color);
  border-radius: 5px;
  color: var(--theme-bg-light);
  line-height: 21px;
  padding: 9px 20px;
  margin-bottom: 0;
}

.news-block .inner-box .content-box {
  border: 1px solid #e3e3e3;
  padding: 20px 30px;
}

@media (max-width: 1199.98px) {
  .news-block .inner-box .content-box {
    padding: 15px 20px 20px;
  }
}

.news-block .inner-box .content-box .post-meta {
  margin-bottom: 19px;
}

.news-block .inner-box .content-box .post-meta li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}

.news-block .inner-box .content-box .post-meta li:first-child {
  margin-right: 10px;
}

@media (max-width: 1199.98px) {
  .news-block .inner-box .content-box .post-meta li:first-child {
    margin-right: 5px;
  }
}

.news-block .inner-box .content-box .post-meta li .icon {
  position: relative;
  color: var(--theme-color);
  margin-right: 10px;
}

.news-block .inner-box .content-box .title:hover {
  color: var(--theme-color);
}

.news-block .inner-box .content-box .text {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.news-block .inner-box .content-box .read-more {
  display: block;
  color: var(--color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.news-block .inner-box .content-box .read-more .icon {
  margin-left: 10px;
  font-size: 16px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media (max-width: 1199.98px) {
  .news-block .inner-box .content-box .read-more .icon {
    font-size: 14px;
  }
}

.news-block .inner-box .content-box .read-more:hover {
  color: var(--theme-color);
}

/***

====================================================================
    Blog Details
====================================================================

***/
.blog-details {
  position: relative;
  display: block;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__img {
  position: relative;
  display: block;
  border-radius: 10px;
}

.blog-details__img img {
  width: 100%;
  border-radius: 10px;
}

.blog-details__date {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--theme-color);
  text-align: center;
  padding: 21px 24px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-details__date .day {
  font-size: 16px;
  color: #fff;
  font-weight: var(--body-font-weight-bold);
  line-height: 16px;
}

.blog-details__date .month {
  position: relative;
  display: block;
  font-size: 10px;
  font-weight: var(--body-font-weight-bold);
  color: #fff;
  line-height: 12px;
  text-transform: uppercase;
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 22px;
}

.blog-details__meta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-details__meta li+li {
  margin-left: 18px;
}

.blog-details__meta li a {
  font-size: 15px;
  color: #777;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__meta li a:hover {
  color: var(--theme-color);
}

.blog-details__meta li a i {
  color: var(--theme-color);
  margin-right: 6px;
}

.blog-details__title {
  font-size: 30px;
  line-height: 40px;
  margin-top: 12px;
  margin-bottom: 21px;
  font-weight: var(--body-font-weight-bold);
}

.blog-details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 49px;
  border-top: 1px solid #ece9e0;
}

@media only screen and (max-width: 767px) {
  .blog-details__bottom {
    gap: 30px;
  }
}

.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags span {
  color: #0e2207;
  font-size: 20px;
  margin-right: 14px;
  font-weight: var(--body-font-weight-bold);
}

.blog-details__tags a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--theme-color);
  color: #fff;
  display: inline-block;
  padding: 5px 30px 5px;
  font-weight: var(--body-font-weight-bold);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 35px;
}

.blog-details__tags a:hover {
  background-color: var(--theme-color);
  color: var(--headings-color);
  text-decoration: none;
}

.blog-details__tags a+a {
  margin-left: 6px;
}

.blog-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-details__social-list a {
  position: relative;
  height: 43px;
  width: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.blog-details__social-list a:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.blog-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.blog-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--theme-color2);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.blog-details__social-list a+a {
  margin-left: 10px;
}

.blog-details__pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 53px;
}

.blog-details__pagenation {
  position: relative;
  display: block;
}

.blog-details__pagenation li {
  position: relative;
  float: left;
  font-size: 20px;
  color: #0e2207;
  font-weight: var(--body-font-weight-bold);
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  line-height: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 52px;
  padding-bottom: 52px;
  border-radius: 10px;
}

.blog-details__pagenation li:hover {
  background-color: var(--theme-color2);
  color: var(--text-color-bg-theme-color2);
}

.blog-details__pagenation li+li {
  margin-left: 30px;
}

/* Nav Links */
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 53px;
}

@media only screen and (max-width: 767px) {
  .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.nav-links .prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: calc(50% - 15px);
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .nav-links .prev {
    width: 100%;
  }
}

.nav-links .prev .thumb {
  margin-right: 20px;
}

.nav-links .next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: calc(50% - 15px);
}

@media only screen and (max-width: 767px) {
  .nav-links .next {
    width: 100%;
  }
}

.nav-links .next .thumb {
  margin-left: 20px;
}

.nav-links>div {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.nav-links>div .thumb {
  display: inline-block;
  min-width: 60px;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.nav-links>div .thumb a {
  display: inline-block;
}

.nav-links>div>a {
  display: inline-block;
  word-wrap: break-word;
  white-space: -moz-pre-wrap;
  white-space: pre-wrap;
  font-size: 20px;
  line-height: 1.637;
  font-weight: var(--body-font-weight-bold);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  padding: 52px 50px;
  border-radius: 10px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .nav-links>div>a {
    padding: 30px;
  }
}

.nav-links>div>a:hover {
  color: var(--theme-bg-light);
  background-color: var(--theme-color);
}

/*** 

====================================================================
Sidebar
====================================================================

***/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: var(--h4-font-weight);
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type=search] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding-left: 50px;
  height: 74px;
  width: 100%;
  padding-right: 80px;
  border-radius: 10px;
}

.sidebar__search-form input[type=search]::-webkit-input-placeholder {
  color: var(--text-color-bg-th--theme-color);
  opacity: 1;
}

.sidebar__search-form input[type=search]::-webkit-input-placeholder,
.sidebar__search-form input[type=search]:-ms-input-placeholder,
.sidebar__search-form input[type=search]::-ms-input-placeholder,
.sidebar__search-form input[type=search]::placeholder {
  color: var(--text-color-bg-th--theme-color);
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .sidebar__search-form input[type=search] {
    padding-left: 30px;
  }
}

.sidebar__search-form button[type=submit] {
  background-color: transparent;
  color: #fff;
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .sidebar__search-form button[type=submit] {
    width: 42px;
  }
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 46px 30px 30px;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .sidebar__post {
    padding: 30px;
  }
}

.sidebar__post .sidebar__title {
  margin-left: 20px;
}

@media only screen and (max-width: 767px) {
  .sidebar__post .sidebar__title {
    margin-left: 0;
  }
}

.sidebar__post .sidebar__post-list {
  margin: 0;
}

.sidebar__post .sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 20px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media only screen and (max-width: 767px) {
  .sidebar__post .sidebar__post-list li {
    padding: 16px 0;
  }
}

.sidebar__post .sidebar__post-list li:hover {
  background-color: #ffffff;
  border-radius: 10px;
}

.sidebar__post .sidebar__post-list li+li {
  margin-top: 11px;
}

.sidebar__post .sidebar__post-list .sidebar__post-image {
  margin-right: 20px;
  -webkit-box-flex: 70px;
  -ms-flex: 70px 0 0px;
  flex: 70px 0 0;
}

.sidebar__post .sidebar__post-list .sidebar__post-image>img {
  width: 80px;
  border-radius: 10px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content {
  position: relative;
  top: -3px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
  letter-spacing: 0;
}

.sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
  color: #0e2207;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 18px;
  line-height: 24px;
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: #757873 !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
  color: var(--theme-color2);
  font-size: 14px;
  padding-right: 3px;
}

.sidebar__category {
  position: relative;
  display: block;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  border-radius: 10px;
  padding: 45px 30px 38px;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .sidebar__category {
    padding: 30px 15px 30px;
  }
}

.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 9px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li+li {
  margin-top: 4px;
}

.sidebar__category-list li a {
  color: #757873;
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 12px 20px;
  font-weight: 500;
  border-radius: 10px;
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: #0e2207;
  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
}

.sidebar__category-list li a:hover span {
  color: #ffcd1e;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--theme-color2);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
}

.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: #0e2207;
  border-radius: 10px;
  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
}

.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: #ffcd1e;
}

.sidebar__tags {
  position: relative;
  display: block;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  padding: 46px 45px 50px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .sidebar__tags {
    padding: 30px;
  }
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 14px;
  color: #0e2207;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #ffffff;
  display: inline-block;
  padding: 5px 28px 5px;
  margin-left: 5px;
  border-radius: 30px;
}

.sidebar__tags-list a:hover {
  color: var(--text-color-bg-th--theme-color);
  background: var(--theme-color);
}

.sidebar__tags-list a+a {
  margin-left: 5px;
  margin-top: 10px;
}

.sidebar__comments {
  position: relative;
  display: block;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  padding: 46px 50px 43px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .sidebar__comments {
    padding: 30px;
  }
}

.sidebar__comments .sidebar__title {
  margin-bottom: 25px;
}

.sidebar__comments-list {
  position: relative;
  display: block;
}

.sidebar__comments-list li {
  position: relative;
  display: block;
  padding-left: 65px;
  color: #fff;
}

.sidebar__comments-list li:hover .sidebar__comments-icon {
  background-color: var(--theme-color);
  color: var(--headings-color);
}

.sidebar__comments-list li+li {
  margin-top: 23px;
}

.sidebar__comments-icon {
  height: 45px;
  width: 45px;
  background-color: var(--theme-color);
  border-radius: 50%;
  font-size: 15px;
  color: var(--text-color-bg-th--theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__comments-text-box p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  font-weight: 500;
}

.sidebar__comments-text-box p span {
  color: #0e2207;
}

.sidebar__comments-text-box h5 {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  color: #757873;
  font-weight: 500;
  letter-spacing: 0;
}




/*** 

====================================================================
    Call To Action
====================================================================

***/

.icon-arrow {
  background-image: url(../img/icon-arrow.png);
}

.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.call-to-action {
  position: relative;
  /*min-height: 459px;*/
}

.call-to-action .bg-image:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-dark);
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.call-to-action .icon-arrow {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size:contain;
}

.call-to-action .outer-box {
  position: relative;
  padding: 90px 0 40px;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .call-to-action .outer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.call-to-action .outer-box .title {
  color: var(--theme-color);
  margin-bottom: 57px;
  line-height: 1.2em;
  font-weight:600;
  text-align:left;
  font-size:24px;
}

@media (max-width: 575.98px) {
  .call-to-action .outer-box .title {
    font-size: 18px;
  }
  .call-to-action .outer-box {
  padding: 45px 0 20px;
}
.call-to-action .outer-box .theme-btn {
    padding: 9px 15px !important;
    line-height: 15px !important;
}
}

.call-to-action .outer-box .theme-btn {
  padding: 18px 30px;
  line-height: 25px;
  background-color: transparent;
  color: var(--theme-bg-light);
  border: 2px solid #ffffff;
  border-radius: 5px;
}

.call-to-action .outer-box .theme-btn:before {
  background-color: var(--theme-bg-light);
}

.call-to-action .outer-box .theme-btn:hover {
  color: var(--color-dark);
}

.call-to-action .outer-box .theme-btn .icon {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

/*-------------------------------------
	6. Carousels
-------------------------------------*/
/* 6.1 Client carousel 1*/
.ow-client-logo {
  display: table;
  width: 100%;
}

.client-logo {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
}

.owl-carousel .ow-client-logo img {
  max-height: 100%;
  width: auto;
  display: inline-block;
}

.client-logo-media img {
  max-width: 100% !important;
  margin: 0px auto !important;
  width: auto !important;
}

/*====================
52. Footer css 
======================*/

.footer-area {


  background: #111111;
}




.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 210px;
  margin-bottom: 20px;
}

.copyright {
  position: relative;
  padding: 20px 0;
  background: #181818;

  z-index: 1;
}


.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 10px;
  text-align: center;
}

.copyright .copyright-text a {
  color: #fff;
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 600;
  z-index: 1;
  font-family: var(--body-font);
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 90px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 2px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 18px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  /*justify-content: end;*/
}

.footer-social li a i {
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50px;
  background: var(--color-dark);
  color: var(--theme-color);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--color-white);
  color: var(--theme-color);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .copyright::before {
    clip-path: polygon(30% 1%, 100% 0, 100% 100%, 0% 100%);
  }

  .copyright .copyright-text a {
    color: var(--theme-color);
  }
}



/*===================
35. Contact us css 
=====================*/

.contact-wrapper {
  background: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.contact-img{
  position: relative;
}

.contact-img::before{
  content: "";
  position: absolute;
  border: 6px solid var(--theme-color);
  border-radius: 25px 50% 50% 50%;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.contact-img img{
  width: 100%;
  padding: 15px;
  border-radius: 40px 50% 50% 50%;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color:  var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 20px;
  background:var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-info::before{
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--theme-color);
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 20px;
  right: 15px;
  top: 15px;
  transition: var(--transition);
}

.contact-info:hover::before{
  width: 80%;
  height: 80%;
}

.contact-info:hover{
  transform: translateY(-8px)
}

.contact-info-icon i {
  font-size: 35px;
  color: var(--color-white);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color:  var(--color-dark);
}

.contact-info p{
  color:  var(--color-dark);
  font-weight: 500;
  font-size: 16px;
}


@media all and (max-width: 768px) {
  .contact-content {
    margin-top: 50px;
    margin-bottom: 0;
  }
  .img-border img {
      top:1rem;
      object-fit:contain;
  }
  .projects .item .con:hover {
      top:200px;
  }
}

.section-content .owl-nav {
    display:none;
}

.footer-contact-card {
  position: relative;
  padding-left: 25px;
  margin-top: 12px;
}

.footer-contact-card i {
  color: var(--theme-color);
  font-size: 15px;
  position: absolute;
  left: 0;
  top: 4px;
}

.footer-contact-card h5 {
  color: var(--theme-color);
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 600;
}

.footer-contact-card p a {
  color: #d5d5d5;
}
