/*=============== Fonts ===================*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=League+Spartan:wght@100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=League+Spartan:wght@100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap');

:root,
[data-bs-theme=light] {
  --primary-font: "Space Grotesk", sans-serif;
  --body-font: "DM Sans", sans-serif;
  --primary-color: #FFAA17;
  --secondary-color: #089FAC;
  --heading-color: #222429;
  --grey-color: #808287;
  --white-color: #FFFFFF;
  --light-grey-color: #DDDDDD;
  --bg-white: #FFFFFF;
  --bg-dark: #222429;
  --bg-grey: #F4F5F8;
  --box-shadow: 0px 30px 60px 0px rgba(10.000000000000004, 42.999999999999964, 82.99999999999999, 0.14901960784313725);
}
/*
* ----------------------------------------------------------------------------------------
* GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
body {
  background-color: var(--bg-white);
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 27px;
  color: var(--grey-color);
  font-weight: 400;
  letter-spacing: -0.2px;
  position: relative;
  overflow-x: hidden !important;
  overflow-y: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: .5s;
}
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}
a,
a:hover,
.form-control,
.form-control:hover,
button {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
[animation-type] {
  visibility: hidden;
}
.animated {
  visibility: visible;
  animation-duration: 800ms;
  animation-delay: 200ms;
}
body.no-scroll {
  overflow-y: hidden;
}
ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}
section {
  position: relative;
}
.padding {
  padding: 100px 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--primary-font), sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--heading-color);
}
h1 {
  font-size: 45px;
  font-weight: 600;
  line-height: 55px;
  margin: 0 0 10px;
  color: var(--heading-color);
}
h2 {
  font-size: 32px;
  line-height: 42px;
  color: var(--heading-color);
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: -1px;
}
h3, h4 {
  margin: 0 0 10px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 16px;
}
h5, h6 {
  font-size: 14px;
  margin: 0 0 10px;
}
img {
  border: none;
  outline: none;
  max-width: 100%;
}
.bd-bottom {
  border-bottom: 1px solid #eee;
}
.mt-6 {
  margin-top: 6rem !important;
}
.mt-7 {
  margin-top: 7rem !important;
}
.mt-8 {
  margin-top: 8rem !important;
}
.mt-9 {
  margin-top: 9rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.bg-grey {
  background-color: var(--bg-grey);
}
blockquote {
  background-color: var(--bg-grey);
  padding: 40px;
  border: none;
  border-left: 3px solid var(--primary-color);
  color: var(--heading-color);
  font-family: var(--primary-font);
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  margin: 0;
  margin-bottom: 40px;
}
blockquote i {
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
  font-size: 40px;
}
blockquote span {
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  color: var(--grey-color);
  display: block;
  margin-top: 15px;
}
/*
* ----------------------------------------------------------------------------------------
* BUTTONS
* ----------------------------------------------------------------------------------------
*/
button {
  border: none;
  background: none;
}
.default-btn {
  background: var(--primary-color);
  font-family: var(--primary-font);
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  padding: 20px 30px;
  position: relative;
  z-index: 1;
}
.default-btn:hover {
  color: var(--white-color);
}
.default-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--bg-dark);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: transform 500ms cubic-bezier(0.85, 0, 0.08, 1), -webkit-transform 500ms cubic-bezier(0.85, 0, 0.08, 1);
  -webkit-transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
  transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
  z-index: -1;
}
.default-btn:hover:before {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
/*
* ----------------------------------------------------------------------------------------
* HEADER
* ----------------------------------------------------------------------------------------
*/
.main-header {
  background: var(--bg-dark);
  position: relative;
  z-index: 2;
  overflow-x: clip;
  overflow-y: visible;
}
.main-header-wapper {
  display: grid;
  grid-template-columns: 200px auto;
  align-items: center;
}
.site-logo {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.site-logo > .logo {
  display: block;
  width: 400px;
  height: 138px;
  max-width: 150px;
  max-height: 60px;
  background-image: url(../../assets/img/logo-light.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}
.main-header-info {
  position: relative;
}
.main-header-info:before {
  background-color: var(--bg-dark);
  clip-path: polygon(0 0, 0% 0%, 100% 100%, 0% 100%);
  width: 50px;
  height: 100%;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
}
.main-header-info:after {
  background-color: var(--primary-color);
  transform: skewX(23deg);
  width: 8px;
  height: 100%;
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
}
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 80px;
}
.top-header:before {
  background-color: var(--primary-color);
  content: '';
  width: 6000px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.top-left {
  display: flex;
  align-items: center;
  column-gap: 50px;
}
.top-right {
  display: inline-flex;
  align-items: center;
}
.top-header-nav {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.top-header-nav li {
  position: relative;
}
.top-header-nav li:not(:last-of-type):before {
  background-color: #e39c20;
  width: 2px;
  height: 15px;
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
}
.top-header-nav li a,
.top-left li a,
.top-left li {
  font-family: var(--primary-font);
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1;
}
.top-left li i {
  font-size: 20px;
  color: var(--heading-color);
  margin-right: 5px;
}
.top-header-nav li a,
.top-left li a,
.top-left li {
  font-family: var(--primary-font);
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1;
}
.header-social-share {
  display: flex;
  align-items: center;
}
.header-social-share li a {
  font-size: 16px;
  color: var(--heading-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e39c20;
}
.header-menu-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 80px;
}
.header-menu-wrap:before {
  background-color: var(--white-color);
  width: 6000px;
  height: 100%;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.header-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-menu-wrap ul li {
  display: inline-block;
  position: relative;
  padding: 30px 0;
  margin-right: 50px;
}
.header-menu-wrap ul li > a {
  display: block;
  font-family: var(--primary-font);
  font-size: 16px;
  letter-spacing: -0.2px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--heading-color);
  padding: 0;
  margin: 0;
  line-height: 1;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 1;
}
.header-menu-wrap ul li > a:hover,
.header-menu-wrap ul li > a.active {
  color: var(--primary-color);
}
.header-menu-wrap li ul {
  background-color: var(--white-color);
  box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
  border-radius: 0;
  width: 220px;
  padding: 0;
  display: block;
  position: absolute;
  left: -35px;
  top: 70px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transform: perspective(300px) rotateX(-18deg);
  transform: perspective(300px) rotateX(-18deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header-menu-wrap li ul {
  display: block !important;
}
.header-menu-wrap ul li {
  display: inline-block;
  position: relative;
  padding: 30px 0;
  margin-right: 30px;
}
.header-menu-wrap li li {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  margin: 0;
  border-bottom: 1px solid #ddd;
  text-align: left;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.header-menu-wrap li li:before {
  background-color: #f1f4f9;
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: width .5s linear;
}
.header-menu-wrap li li:after {
  background-color: var(--primary-color);
  width: 3px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all .2s cubic-bezier(.75, 0, .175, 1);
}
.header-menu-wrap li li > a {
  font-family: var(--body-font);
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 20px;
  letter-spacing: -0.2px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
.menu-right-item {
  display: flex;
  align-items: center;
  column-gap: 15px;
  height: 100%;
}
.menu-right-item > div {
  height: 100%;
  display: flex;
  align-items: center;
}
.menu-right-item .menu-action-btn {
  color: var(--heading-color);
  cursor: pointer;
  font-size: 20px;
  position: relative;
  transition: .5s;
}
.menu-right-item .menu-action-btn:hover {
  color: var(--primary-color);
}
.menu-right-item .mobile-menu-icon {
  display: none;
}
.mobile-navigation-menu {
  display: none;
}
.mobile-navigation-menu ul {
  padding-left: 0;
}
.mobile-navigation-menu ul li {
  position: relative;
  margin: 0;
  display: block;
  padding: 0;
}
.mobile-navigation-menu ul li > a {
  display: block;
  padding: 15px 40px;
  font-family: var(--primary-font);
  color: var(--dark-color);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}
.mobile-navigation-menu ul li > a:hover,
.mobile-navigation-menu ul li > a.active {
  color: var(--primary-color);
}
#mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 20px;
  width: 60px;
  height: 60px;
  font-size: 40px;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#mobile-menu-close:hover {
  color: var(--primary-color);
}
.burger-menu {
  width: 20px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  -webkit-transition: transform 330ms ease-out;
  -moz-transition: transform 330ms ease-out;
  -o-transition: transform 330ms ease-out;
  transition: transform 330ms ease-out;
}
.line-menu {
  background-color: var(--heading-color);
  border-radius: 0;
  width: 100%;
  height: 2px;
}
.burger-menu:hover .line-menu {
  background-color: var(--primary-color);
}
.line-menu.line-half {
  width: 50%;
}
.line-menu.first-line {
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: right;
}
.line-menu.last-line {
  align-self: flex-end;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: left;
}
.menu-open .burger-menu {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-open .line-menu.first-line {
  -webkit-transform: rotate(-90deg) translateX(3px);
  -moz-transform: rotate(-90deg) translateX(3px);
  -o-transform: rotate(-90deg) translateX(3px);
  transform: rotate(-90deg) translateX(3px);
}
.menu-open .line-menu.last-line {
  -webkit-transform: rotate(-90deg) translateX(-3px);
  -moz-transform: rotate(-90deg) translateX(-3px);
  -o-transform: rotate(-90deg) translateX(-3px);
  transform: rotate(-90deg) translateX(-3px);
}
.sticky-header {
  display: none;
}
.sticky-header {
  background-color: var(--white-color);
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  transform: translateY(-100%);
  z-index: 99;
}
.sticky-header.sticky-fixed-top {
  transition: transform 1s ease;
  will-change: transform;
}
.sticky-header.sticky-fixed-top {
  transform: translateY(0);
  box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
}
.sticky-header .top-header {
  display: none;
}
.sticky-header .main-header-info:after {
  transform: skewX(33deg);
}
#popup-search-box {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
.open-search-box #popup-search-box {
  opacity: 1;
  visibility: visible;
}
#popup-search-box .box-inner-wrap {
  background-color: var(--white-color);
  border-bottom: 1px solid #eee;
  padding: 80px 0;
  width: 100%;
  transform: translateY(-100%);
  transition: all ease-in-out 0.3s;
  box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
}
.open-search-box #popup-search-box .box-inner-wrap {
  transform: translateY(0);
}
#popup-search-box .box-inner-wrap form {
  position: relative;
  margin: 0 auto;
}
#popup-search-box .box-inner-wrap input {
  background: var(--bg-white);
  font-family: var(--primary-font);
  width: 600px;
  padding: 15px 30px;
  padding-right: 80px;
  border: 1px solid #eee;
  font-size: 18px;
  color: var(--grey-color);
  border-radius: 50px;
}
#popup-search-box .box-inner-wrap input:focus {
  outline: none;
  border: 1px solid #ff9900;
}
#popup-search-box .box-inner-wrap button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--grey-color);
  font-size: 30px;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap button:hover {
  color: var(--primary-color);
}
.search-close {
  font-size: 30px;
  color: var(--grey-color);
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.85, 0.45, 1);
}
.search-close:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}
#searchbox-overlay {
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0s ease-in-out;
  width: 100%;
  z-index: -1;
}
.open-search-box #searchbox-overlay {
  opacity: 1;
  z-index: 1002;
  cursor: none;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}
/*
* ----------------------------------------------------------------------------------------
* SLIDER
* ----------------------------------------------------------------------------------------
*/
.main-slider {
  background-color: var(--bg-grey);
  position: relative;
  overflow: hidden;
}
.main-slider .swiper-slide {
  background-image: url(../../assets/img/slider-background.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
.slider-img-wrap {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.slider-img {
  background-repeat: no-repeat;
  background-position: center left;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 200px 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  z-index: -1;
}
.slider-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation-duration: 8s;
}
.slider-shape {
  transform: skewX(18deg);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 40px;
  top: 0;
}
.slider-shape div {
  background-color: var(--bg-dark);
  width: 100px;
  height: 65%;
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.swiper-slide-active .slider-shape div {
  visibility: visible;
  opacity: 1;
}
.slider-shape div:nth-child(2) {
  background-color: var(--primary-color);
  height: 40%;
  left: 50px;
}
.slider-shape div:nth-child(3) {
  width: 50px;
  height: 15%;
  left: 40px;
  top: auto;
  bottom: 0;
}
.slider-shape div:nth-child(4) {
  background-color: var(--primary-color);
  width: 70px;
  height: 10%;
  left: 60px;
  top: auto;
  bottom: 0;
}
.slider-content-wrap {
  height: 650px;
}
.slider-content-wrap .slider-content {
  width: 50%;
}
.slider-caption.medium {
  font-family: var(--primary-font);
  color: var(--heading-color);
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
}
.slider-caption.medium .inner-layer div {
  position: relative;
/*  padding-left: 15px;*/
}
/*
.slider-caption.medium .inner-layer div:before {
  background-color: var(--primary-color);
  box-shadow: 0px 0px 0px 3px rgba(255, 153, 0, 0.5);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
*/
.slider-caption.big {
  font-family: var(--primary-font);
  font-size: 80px;
  line-height: 80px;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.slider-caption.small {
  font-family: var(--primary-font);
  font-size: 18px;
  line-height: 30px;
  color: var(--grey-color);
  margin-bottom: 20px;
}
/* Slider Pagination */
.main-slider .swiper-nav {
  background-color: var(--primary-color);
  width: 55px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--heading-color);
  position: absolute;
  left: 0;
  bottom: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.main-slider .swiper-nav.slider-button-prev {
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}
.main-slider .swiper-nav.slider-button-next {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
  left: auto;
  right: 0;
}
.main-slider .swiper-nav:hover {
  background-color: var(--bg-dark);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.main-slider .slider-pagination {
  width: 15px;
  height: auto;
  position: absolute;
  left: 30px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.main-slider .slider-pagination .swiper-pagination-bullet {
  background-color: var(--bg-dark);
  opacity: 0.8;
}
.main-slider .slider-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  position: relative;
  transition: all 0.2s ease-in-out;
}
.main-slider .slider-pagination .swiper-pagination-bullet-active:before {
  content: "";
  border: 1px solid var(--primary-color);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}
/*
* ----------------------------------------------------------------------------------------
* SECTIONS
* ----------------------------------------------------------------------------------------
*/
.bg-half {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 500px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.bg-pattern {
  background-image: url(../../assets/img/background-pattern.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.service-section .bg-half {
  background-image: url(../../assets/img/service-background.jpg);
  height: 517px;
  filter: grayscale(50%);
}
.section-heading h3 {
  display: inline-block;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-left: 55px;
}
.section-heading h3:before {
  background-color: var(--primary-color);
  width: 50px;
  height: 2px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-heading h2 {
  font-size: 46px;
  line-height: 48px;
  font-weight: 600;
  letter-spacing: -1.5px;
  display: block;
  margin: 0;
}
.section-heading h2 span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.section-heading h2 span:before {
  background-color: var(--primary-color);
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: -1;
}
.section-heading p {
  margin-top: 20px;
  margin-bottom: 0;
}
.service-item {
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.09);
}
.service-item-inner {
  background-color: var(--bg-white);
  border-radius: 5px;
  overflow: hidden;
}
.service-item .service-thumb {
  overflow: hidden;
  height: 175px;
}
.service-item .service-thumb img {
  transition: all .5s cubic-bezier(.160, .85, .45, 1);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.service-content {
  position: relative;
  padding: 60px 25px 25px;
  text-align: center;
  transition: all .5s cubic-bezier(.160, .85, .45, 1);
}
.service-content:before {
  background-color: var(--primary-color);
  content: "";
  width: 60%;
  height: 4px;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
  transition: all .5s cubic-bezier(.160, .85, .45, 1);
}
.service-content.min-padding {
  padding-top: 25px;
  padding-bottom: 15px;
}
.service-content.min-top-padding {
  padding-top: 25px;
}
.service-item:hover .service-content:before {
  width: 80%;
}
.service-icon {
  background-color: #fff;
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
}
.service-icon i {
  color: var(--primary-color);
  font-size: 45px;
}
.service-price {
  background-color: var(--bg-dark);
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 30px;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  padding: 10px 15px;
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 17px;
}
.service-content h3 {
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.2;
}
.service-content p {
  margin: 0;
}
.service-content .read-more {
  background-color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--heading-color);
  padding: 5px 20px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  bottom: -100%;
  transform: translateX(-50%);
}
.service-item:hover .read-more {
  transition-duration: 600ms;
  bottom: 0;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 5px;
}
.about-img-wrap img:nth-child(1) {
  width: 350px;
  height: 100%;
}
.about-img-wrap img:nth-child(2) {
  width: 320px;
  position: absolute;
  right: 30px;
  bottom: -70px;
}
.experience {
  background-color: var(--white-color);
  background-color: var(--primary-color);
  border-top: 4px solid var(--primary-color);
  border-top: 4px solid var(--heading-color);
  box-shadow: var(--box-shadow);
  padding: 20px;
  border-radius: 5px;
  position: absolute;
  right: 50px;
  top: 120px;
}
.experience h3 {
  color: var(--primary-color);
  color: var(--heading-color);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}
.experience h3 span {
  font-family: var(--body-font);
  color: var(--grey-color);
  color: var(--heading-color);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  display: block;
  margin-top: 5px;
}
/*
* ----------------------------------------------------------------------------------------
* FAQ
* ----------------------------------------------------------------------------------------
*/
.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.accordion-item .accordion-header .accordion-button {
  border-radius: 5px;
}
.accordion-item {
  border: none;
/*  border: 1px solid #eee;*/
  overflow: hidden;
}
.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:first-of-type .accordion-button {
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
.accordion-header {
  margin-bottom: 0;
}
.accordion-button {
  background-color: var(--bg-white);
  color: var(--heading-color);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 500;
  border: 1px solid #eee;
  padding: 15px;
}
.accordion-button[aria-expanded="true"] {
  border: 0;
  outline: none;
  border-radius: 5px 5px 0 0!important;
}
.accordion-button:focus {
	outline: none;
  box-shadow: none;
}
.accordion-button:after {
  background-image: inherit;
  content: "\f067";
  font-family: 'Font Awesome 6 Pro';
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  color: #222;
  font-weight: 600;
  transform: translateY(-50%) !important;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-button:not(.collapsed) {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.accordion-button:not(.collapsed):after {
  background-image: inherit;
  content: "\f068";
  color: var(--white-color);
  transform: inherit;
}
.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:first-of-type .accordion-button {
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 5px 5px;
}
.accordion-body p {
  color: var(--grey-color);
  margin-bottom: 0;
}
/*
* ----------------------------------------------------------------------------------------
* FOOTER
* ----------------------------------------------------------------------------------------
*/
.footer-section {
  background-image: url(../../assets/img/footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
.footer-section:before {
  background: var(--bg-dark);
  opacity: 0.9;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.footer-section:after {
  background-image: url(../../assets/img/square-pattern.png);
  background-size: 20px;
  opacity: 0.8;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.footer-area {
  padding-bottom: 80px;
}
.footer-area .col-lg-3:nth-child(2) {
  padding-left: 70px;
}
.footer-widget .footer-logo {
  margin-bottom: 20px;
  display: block;
}
.footer-widget .footer-logo {
  display: block;
  width: 400px;
  height: 138px;
  max-width: 200px;
  max-height: 70px;
  background-image: url(../../assets/img/logo-light.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-widget li a,
.footer-widget p {
  color: var(--light-grey-color);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.footer-social li {
  display: inline-block;
  margin-bottom: 10px;
}
.footer-social li a {
  background-color: var(--bg-dark);
  display: inline-block;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.footer-social li a:after {
  background-color: var(--primary-color);
  width: 0;
  height: 40px;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
.footer-social li:hover a:after {
  left: 0;
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.footer-widget h3 {
  color: var(--white-color);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-widget li:not(:last-of-type) {
  margin-bottom: 10px;
}
.footer-widget li a,
.footer-widget p {
  color: var(--light-grey-color);
}
.footer-widget ul:not(.footer-social) li a {
  position: relative;
}
.footer-widget ul:not(.footer-social) li a:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 10px;
  left: -15px;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
  border: 1px solid var(--primary-color);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.footer-widget ul:not(.footer-social) li a:hover::before,
.footer-widget ul:not(.footer-social) li a.active::before {
  opacity: 1;
}
.footer-widget ul:not(.footer-social) li a:hover,
.footer-widget ul:not(.footer-social) li a.active {
  color: var(--primary-color);
  margin-left: 15px;
}
.copyright-text {
  background-color: var(--bg-dark);
  padding: 25px 0;
  text-align: center;
  color: var(--light-grey-color);
}
.copyright-text a {
  color: var(--primary-color);
}
/*
* ----------------------------------------------------------------------------------------
* PAGE HEADER
* ----------------------------------------------------------------------------------------
*/
.page-header {
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.page-header-bg {
  background-image: url(../../assets/img/page-header.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: grayscale(90%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.page-header-bg:before {
  background: var(--bg-dark);
  background: radial-gradient(at center, var(--bg-dark), transparent);
  opacity: 0.5;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.page-header-info {
  padding-top: 20px;
}
.page-header-info h4 {
  background: var(--primary-color);
  font-family: var(--secondary-font);
  color: var(--heading-color);
  display: inline-block;
  height: 25px;
  line-height: 25px;
  padding: 0 15px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.page-header-info h2 {
  color: var(--white-color);
  font-size: 46px;
  line-height: 48px;
  margin-bottom: 20px;
}
.page-header-info h2 span {
  color: var(--primary-color);
  display: inline-block;
  position: relative;
  z-index: 1;
}
.page-header-info p {
  color: var(--light-grey-color);
  margin: 0;
}
.page-header .post-meta {
  margin-top: 20px;
}

.page-header .post-meta li {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
}
/*
* ----------------------------------------------------------------------------------------
* SECTIONS
* ----------------------------------------------------------------------------------------
*/
.map-pattern {
  background-image: url(../../assets/img/map-pattern-2.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
/*/
 * ----------------------------------------
 * project
 * ----------------------------------------
/*/
.project-section {
  position: relative;
  z-index: 1;
}
.project-thumb {
  width: 100%;
  height: 330px;
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.project-content {
  background-color: #fff;
  padding: 20px 30px;
  margin: 0 10px;
  transform: translateY(-20px);
  box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
  border-radius: 5px;
}
.project-content .category {
  background-color: var(--primary-color);
  padding: 10px 15px;
  font-family: var(--primary-font);
  color: var(--heading-color);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  left: 30px;
  top: -20px;
}
.project-content .category:before {
  background-color: #d38b0e;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  content: "";
  width: 10px;
  height: 20px;
  position: absolute;
  left: -9px;
  top: 0;
  z-index: -1;
}
.project-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}
/*/
 * ----------------------------------------
 * products
 * ----------------------------------------
/*/
.products-section .search-line {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.products-section .search-line [type="search"] {
  background: var(--bg-grey);
  outline: none;
  border: 1px solid var(--bs-border-color);
  border-radius: 5px;
  padding: 10px 20px;
  width: 100%;
  line-height: 28px;
  transition: .5s;
}
.products-section .search-line [type="search"]:focus {
  border-color: var(--primary-color);
}
.products-section .search-line button {
  position: absolute;
  right: 12px;
  background: var(--bg-dark);
  border-radius: 0 5px 5px 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition: .5s;
}
.products-section .search-line button.clear-search {
  right: 62px;
  width: auto;
  border-radius: 0;
  padding-left: 20px;
  padding-right: 20px;
  background: var(--bs-border-color);
  color: var(--bg-dark);
}
.products-section .search-line button:hover {
  background: var(--primary-color);
}
.products-section .search-line [type="search"]:focus + button {
  background: var(--primary-color);
}
.products-section .products-list {
  display: flex;
  flex-direction: column;
}
.products-section .product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-section .product-item > .product-title {
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--heading-color);
  transition: .5s;
}
.products-section .product-item > .product-sep {
  flex: 1;
  flex-basis: 50px;
  border-top-style: dotted;
  border-top-width: 1px;
}
.products-section .product-item > .product-price {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 0 10px;
  transition: .5s;
}
.products-section .product-item:hover > .product-title,
.products-section .product-item:hover > .product-price {
  color: var(--primary-color);
}
/*/
 * ----------------------------------------
 * review
 * ----------------------------------------
/*/
.review-section {
  position: relative;
  z-index: 1;
}
.review-item {
  position: relative;
  padding-left: 50px;
}
.review-thumb {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.review-thumb img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
  z-index: 1;
}
.review-content {
  background-color: #fff;
  padding: 30px 30px 30px 60px;
  border-radius: 2px;
  box-shadow: 0px 0px 10px 0.5px rgb(0 0 0 / 10%);
  position: relative;
  z-index: -1;
}
.review-content:before {
  background-color: var(--primary-color);
  content: "";
  width: 4px;
  height: 70%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.review-content .quote {
  background-color: var(--primary-color);
  color: var(--heading-color);
  font-size: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 50px;
  top: -20px;
}
.review-content p {
  font-size: 18px;
  margin-top: 10px;
}
.testi-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.testi-content h5 {
  font-family: var(--body-font);
  color: var(--grey-color);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}
/*/
 * ----------------------------------------
 * contact
 * ----------------------------------------
/*/
.contact-section {
/*  background-image: url(../../assets/img/gradiant-bg-2.jpg);*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-heading {
  margin-bottom: 40px;
}
.contact-section .contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  color: var(--heading-color);
  font-weight: 500;
}
.contact-section .contact-details li i {
  background: var(--primary-color);
  color: var(--heading-color);
  font-size: 25px;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 1px;
}
.contact-section .contact-details a:hover {
  color: var(--primary-color);
}
.contact-form-group {
  display: grid;
  grid-gap: 15px;
}
@media (min-width: 768px) {
  .contact-form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
}
.contact-form-group .form-control {
  background-color: var(--bg-grey);
  height: 50px;
  border-radius: 0;
  border: 1px solid #eee;
  box-shadow: none;
  outline: none;
}
.contact-form-group .message .form-control {
  height: 120px;
}
@media (min-width: 768px) {
  .form-field.submit-btn, .contact-form-group .form-field.message {
    grid-column-end: span 2;
  }
}
#form-messages {
  display: none;
  margin-top: 15px;
  margin-bottom: 0;
}
form .captcha {
  
}
form .captcha .math {
  white-space: nowrap;
}
form .form-footer {
  display: contents;
  align-items: center;
}
/*/
 * ----------------------------------------
 * blog
 * ----------------------------------------
/*/
.blog-section {
  overflow: hidden;
}
.post-details {
  
}
.post-details .post-thumb {
  min-height: 350px;
  position: relative;
  margin-bottom: 40px;
}
.post-details .post-thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.post-details h3 {
  font-size: 24px;
  line-height: 32px;
}
.post-details p {
  font-size: 18px;
  letter-spacing: -0.5px;
  line-height: 30px;
  margin-bottom: 40px;
}
.post-details-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
  margin: 40px 0;
}
.author-box {
  background-color: var(--bg-grey);
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 20px;
/*
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  grid-column-gap: 20px;
*/
  line-height: 1;
  margin-bottom: 40px;
}
.author-box .author-thumb > img {
  border-radius: 100%;
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}
.author-info p {
  margin-bottom: 25px;
}
.social-icon li {
  display: inline-block;
}
.social-icon li:not(:last-of-type) {
  margin-right: 10px;
}
.social-icon li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #ddd;
}
.social-icon li a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
  border: 1px solid var(--primary-color);
}
/*/
 * ----------------------------------------
 * tags
 * ----------------------------------------
/*/
.tags {
  
}
.tags li {
  display: inline-block;
}
.tags li a {
  background-color: var(--white-color);
  font-family: var(--primary-font);
  color: var(--grey-color);
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 15px;
  margin: 0 3px 10px 0;
  border-radius: 0;
  border: 1px solid #eee;
}
.tags li a:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.post-details .tags li a {
  background-color: var(--primary-color);
  color: var(--heading-color);
  font-family: var(--secondary-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  margin: 0;
  letter-spacing: 0.5px;
  margin-right: 5px;
}
.post-details .tags li a:hover {
  color: var(--heading-color);
  transform: translateY(-3px);
}
/*/
 * ----------------------------------------
 * posts
 * ----------------------------------------
/*/
.classic-post {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.post-card {
  transition: all .3s cubic-bezier(.165, .85, .45, 1);
}
.post-card .post-thumb {
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.165, .85, .45, 1);
  border-radius: 10px;
}
.classic-post .post-card .post-thumb {
  min-height: 250px;
}
.post-card .post-thumb img {
  transition: all .3s cubic-bezier(.165, .85, .45, 1);
}
.post-card:hover .post-thumb img {
  transform: scale(1.02);
}
.classic-post .post-card .post-thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.post-card .post-thumb.gallery {
  display: inline-flex;
  height: 300px;
}
.post-card .post-thumb.gallery a,
.post-card .post-thumb.gallery img {
  all: unset;
  display: inline-block;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}
.post-category {
  background-color: var(--primary-color);
  position: absolute;
  right: 20px;
  top: 20px;
  font-family: var(--secondary-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--heading-color);
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.post-content-wrap {
  background-color: #fff;
  padding: 30px;
  margin: -50px 20px 0;
  border-radius: 5px;
  z-index: 1;
  position: relative;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10);
}
.blog-section.blog-page .post-content-wrap {
  margin: 0;
}
.post-meta {
  margin-bottom: 10px;
}
.post-meta li {
  font-family: var(--primary-font);
  color: var(--grey-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
}
.post-details .post-meta li {
  color: var(--light-grey-color);
}
.post-meta li:not(:last-of-type) {
  margin-right: 25px;
}
.post-meta li i {
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 5px;
}
.post-card .post-content {

}
.post-card .post-content h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--heading-color);
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}
.post-card .post-content h3 a {
  background: linear-gradient(var(--primary-color) 0%, var(--primary-color) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--heading-color);
}
.post-card .post-content h3 a:hover {
  background-size: 100% 2px;
}
.post-card .post-content .read-more {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--heading-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
}
.post-card .post-content .read-more:hover {
  color: var(--primary-color);
}
/*/
 * ----------------------------------------
 * partners
 * ----------------------------------------
/*/
.partners-section {
  position: relative;
  z-index: 1;
}
.partners-item {
  position: relative;
  padding-left: 50px;
}
.partners-thumb {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.partners-thumb img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0px 0px 20px 0.5px rgb(0 0 0 / 20%);
  z-index: 1;
}
.partners-content {
  background-color: #fff;
  padding: 30px 30px 30px 60px;
  border-radius: 2px;
  box-shadow: 0px 0px 10px 0.5px rgb(0 0 0 / 10%);
  position: relative;
}
.partners-content:before {
  background-color: var(--primary-color);
  content: "";
  width: 4px;
  height: 50%;
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  transition: all .5s cubic-bezier(.160, .85, .45, 1);
}
.partners-item:hover .partners-content:before {
  height: 75%;
}
.partners-content__holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.partners-content .logo {
  max-width: 25%;
  max-height: 100px;
}
.partners-content p {
  font-size: 17px;
  margin: 0;
  padding: 0;
}
.partners-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 15px;
}
.partners-links > a {
  font-size: 20px;
  color: var(--body-color);
}
.partners-links > a:hover {
  color: var(--primary-color);
}
/*/
 * ----------------------------------------
 * testimonial
 * ----------------------------------------
/*/
.testimonial-section {
  position: relative;
  z-index: 1;
}
/*
* ----------------------------------------------------------------------------------------
* NOTIFY BLOCK
* ----------------------------------------------------------------------------------------
*/
.notify-block {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
  background: var(--bg-grey);
  border: 1px solid var(--bs-border-color);
  border-radius: 5px;
  padding: 10px 20px;
}
.notify-block > .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 2px solid;
  width: 30px;
  aspect-ratio: 1;
}
.notify-block > .icon.warning {
  color: var(--primary-color);
}
.notify-block > .content {
  color: var(--heading-color);
}
.notify-block > .content > p {
  padding: 0;
  margin: 0;
  line-height: 25px;
}





/*
* ----------------------------------------------------------------------------------------
* ANIMATIONS
* ----------------------------------------------------------------------------------------
*/




/*
* ----------------------------------------------------------------------------------------
* SCROLLUP
* ----------------------------------------------------------------------------------------
*/
.scroll-to-top {
  background-color: var(--primary-color);
  color: var(--heading-color);
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 25px;
  padding: 0;
  line-height: 40px;
  border-radius: 0;
  outline: none;
  text-decoration: none;
  transform: translateY(150%);
  transition: all 0.3s ease-in-out;
}
.scroll-to-top:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
#scrollup {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  overflow: hidden;
  z-index: 999;
}
#scrollup.show {
  opacity: 1;
}
#scrollup.show .scroll-to-top {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
/*
* ----------------------------------------------------------------------------------------
* SCROLLBAR
* ----------------------------------------------------------------------------------------
*/
::-webkit-scrollbar {
  background-color: var(--bg-dark);
  width: 8px;
  height: 8px
}

::-webkit-scrollbar-thumb {
  cursor: poSyne;
  background-color: var(--primary-color);
}

::selection {
  background-color: var(--primary-color);
  color: #fff
}

-webkit-::selection {
  background-color: var(--primary-color);
  color: #fff
}

::-moz-selection {
  background-color: var(--primary-color);
  color: #fff
}