/*===========================
      01.COMMON css
===========================*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800|Open+Sans:400,600,700&display=swap");
:root {
  --color-primary: #5B6B46;
  --color-primary-light: rgba(113, 129, 109, 0.9);
  --color-secondary: #C9B79C;
  --color-accent: #F1EAD7;
  --social-icon-color: var(--color-primary);
  --social-icon-hover-color: var(--color-text);
  --color-project-info-link: var(--color-primary);
  --color-heading: #293651;
  --color-text: #646f87;
  --color-text-rgb: 100, 111, 135;
  --color-light: #f9f9f9;
  --color-white: #fff;
  --color-border-light: #eceff8;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: var(--color-text);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a {
  color: var(--color-primary);
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn,
.primary-btn,
.secondary-btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 40px;
  font-size: 16px;
  line-height: 55px;
  height: 55px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
@media (max-width: 767px) {
  .main-btn,
  .primary-btn,
  .secondary-btn {
    padding: 0 30px;
    height: 45px;
    line-height: 45px;
  }
}

.main-btn {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.main-btn:hover {
  background-color: var(--color-primary-light);
  color: var(--color-white);
}

.primary-btn {
  color: var(--color-white);
  border: 2px solid transparent;
  background-color: var(--color-primary);
}
.primary-btn:hover {
  background-color: var(--color-primary-light);
  color: var(--color-white);
}

.secondary-btn {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  line-height: 51px;
}
@media (max-width: 767px) {
  .secondary-btn {
    line-height: 41px;
  }
}
.secondary-btn:hover {
  background-color: var(--color-primary-light);
  border: 2px solid transparent;
  color: var(--color-white);
}

/*===== All Section Title Style =====*/
.section_title .sub_title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .section_title .sub_title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section_title .sub_title {
    font-size: 18px;
  }
}
.section_title .main_title {
  font-size: 35px;
  font-weight: 600;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .section_title .main_title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section_title .main_title {
    font-size: 26px;
  }
}
.section_title .line {
  padding-top: 10px;
}
.section_title .line li {
  display: inline-block;
  background-color: var(--color-primary);
  border-radius: 50px;
  height: 3px;
}
.section_title .line li:nth-of-type(1) {
  width: 64px;
}
.section_title .line li:nth-of-type(2) {
  width: 10px;
}
.section_title .line li:nth-of-type(3) {
  width: 7px;
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: var(--color-white);
  z-index: 99999;
}
.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.preloader .loader .ytp-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}
.preloader .loader .ytp-spinner .ytp-spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
  -moz-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
  -o-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
  animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
}
.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  -moz-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  -o-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
}
.preloader
  .loader
  .ytp-spinner
  .ytp-spinner-container
  .ytp-spinner-rotator
  .ytp-spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}
.preloader
  .loader
  .ytp-spinner
  .ytp-spinner-container
  .ytp-spinner-rotator
  .ytp-spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}
.preloader .loader .ytp-spinner-circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: var(--color-primary) var(--color-primary)
    var(--color-border-light);
  border-radius: 50%;
  border-width: 6px;
}
.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: var(--color-border-light);
  -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  -moz-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  -o-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
}
.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: var(--color-border-light);
  -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
  -moz-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
  -o-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}
@keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}
@-webkit-keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}
@keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}
@-webkit-keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}
@keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}
/*===========================
        02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.header_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -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;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -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;
}
.sticky .navbar {
  padding: 10px 0;
}

.navbar {
  padding: 25px 0;
  border-radius: 5px;
  position: relative;
  -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;
}

.navbar-brand {
  padding: 0;
}

.navbar-toggler {
  padding: 0;
}
.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--color-heading);
  display: block;
  margin: 5px 0;
  position: relative;
  -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;
}
.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}
@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

.navbar-nav .nav-item {
  margin-left: 45px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}
.navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  -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;
  padding: 10px 0;
  position: relative;
  font-family: "Open Sans", sans-serif;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    color: var(--color-heading);
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    color: var(--color-heading);
  }
}
.navbar-nav .nav-item a span {
  width: 0;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  -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;
}
.navbar-nav .nav-item a span::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--color-white);
  left: 110%;
}
.navbar-nav .nav-item a span::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--color-white);
  left: 140%;
}
.navbar-nav .nav-item.active > a span,
.navbar-nav .nav-item:hover > a span {
  opacity: 1;
  visibility: visible;
  width: 60%;
}
.navbar-nav .nav-item.active > a span::before,
.navbar-nav .nav-item:hover > a span::before {
  width: 20%;
}
.navbar-nav .nav-item.active > a span::after,
.navbar-nav .nav-item:hover > a span::after {
  width: 15%;
}
.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}
.navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -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;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
.navbar-nav .nav-item .sub-menu li {
  display: block;
}
.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: var(--color-heading);
}
.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: var(--color-primary);
}
.navbar-nav .sub-nav-toggler {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: var(--color-heading);
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: var(--color-heading);
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}
.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid var(--color-heading);
  border-bottom: 1px solid var(--color-heading);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

.sticky .navbar-nav .nav-item a {
  color: var(--color-heading);
}
.sticky .navbar-nav .nav-item.active > a,
.sticky .navbar-nav .nav-item:hover > a {
  color: var(--color-primary);
}

/*===== HEADER HERO =====*/
.header_hero {
  position: relative;
  z-index: 5;
  background-position: bottom center;
  background-color: var(--color-accent);
  overflow: hidden;
  padding-top: 70px;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header_hero > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 70px);
  min-height: 0;
}

.header_hero .row {
  flex: 1;
  display: flex;
  min-height: 0;
}

.header_social {
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid var(--color-primary);
  border-radius: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header_social {
    left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_social {
    left: 20px;
    display: none !important;
  }
}
.header_social li a {
  width: 50px;
  height: 58px;
  font-size: 18px;
  color: var(--social-icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  -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;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header_social li a {
    width: 42px;
    height: 46px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_social li a {
    width: 42px;
    height: 46px;
    font-size: 16px;
  }
}
.header_social li a:hover {
  color: var(--social-icon-hover-color);
}
.social_icon_img {
  width: 22px;
  height: 22px;
  display: block;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.social_icon_freelancer {
  -webkit-mask-image: url("../images/footer-icons/freelancer.webp");
  mask-image: url("../images/footer-icons/freelancer.webp");
}
.social_icon_guru {
  -webkit-mask-image: url("../images/footer-icons/guru.webp");
  mask-image: url("../images/footer-icons/guru.webp");
}
.header_social .social_icon_img,
.footer_content .footer_social .social_icon_img {
  -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;
}
.header_social li a:hover .social_icon_img,
.footer_content .footer_social li a:hover .social_icon_img {
  opacity: 0.7;
}

.header_hero_shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}
.header_hero_shape::before {
  position: absolute;
  content: "";
  width: 1000%;
  height: 100%;
  background: radial-gradient(
    circle 900px at 420px 180px,
    var(--color-primary-light) 0%,
    var(--color-primary) 65%
  );
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  transform: skewX(20deg);
  top: 0;
  left: 0;
}

.header_hero_content {
  margin-top: 0 !important;
  padding: 60px 0;
}

.header_hero_content .header_sub_title {
  font-size: 30px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 4px;
}
@media (max-width: 767px) {
  .header_hero_content .header_sub_title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header_hero_content .header_sub_title {
    font-size: 30px;
  }
}
.header_hero_content .header_title {
  font-size: 50px;
  font-weight: 700;
  color: var(--color-heading);
  margin-top: 20px;
}
@media (max-width: 767px) {
  .header_hero_content .header_title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header_hero_content .header_title {
    font-size: 30px;
  }
}

.header_hero_content .header_role {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-heading);
  margin-top: 15px;
}

.header_hero_content .hero_excerpt {
  margin-top: 18px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.hero_actions .primary-btn {
  min-width: 143px;
}

.hero_actions .secondary-btn {
  min-width: 230px;
}

.header_hero_image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: 0 !important;
}

.header_hero_image img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}

@media (max-width: 991px) {
  .header_hero {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .header_hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 70px);
    min-height: 0;
  }

  .header_hero .row {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    margin-bottom: 0;
  }

  .header_hero .row > div:first-child {
    flex: 0 0 auto;
  }

  .header_hero .row > div:last-child {
    flex: 1 1 auto;
    display: flex;
    min-height: 0;
  }

  .header_hero_content {
    padding: 70px 0 25px;
  }

  .header_hero_image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 0 !important;
  }

  .header_hero_image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    max-width: none;
    display: block;
  }
}

@media (max-width: 767px) {
  .header_hero_image img {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .header_hero_image img {
    max-width: none;
  }
}

/*===========================
        03.ABOUT css 
===========================*/
.about_area {
  position: relative;
  overflow: hidden;
}

.about_image {
  position: relative;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.about_content {
  position: relative;
}

.about_content .section_title .sub_title {
  position: relative;
  padding-left: 18px;
}

.about_content .section_title .main_title {
  max-width: 560px;
  font-size: 35px;
  line-height: 1.35;
  font-weight: 600;
}

.about_image img {
  display: block;
  width: 108%;
  height: auto;
  max-width: none;
  margin-left: -4%;
}
.about_image .about_experience {
  position: absolute;
  right: 24px;
  top: 48%;
  z-index: 5;
  width: 150px;
  padding: 30px 18px 26px;
  text-align: center;
  background-color: var(--color-white);
  border: 1px solid rgba(41, 54, 81, 0.08);
  border-radius: 12px;
  -webkit-box-shadow: 0px 18px 36px 0px rgba(41, 54, 81, 0.16);
  -moz-box-shadow: 0px 18px 36px 0px rgba(41, 54, 81, 0.16);
  box-shadow: 0px 18px 36px 0px rgba(41, 54, 81, 0.16);
}
.about_image .about_experience .about_experience_icon {
  width: 58px;
  height: 58px;
  line-height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background-color: rgba(91, 107, 70, 0.12);
  color: var(--color-primary);
  font-size: 25px;
}
.about_image .about_experience h4 {
  font-size: 36px;
  line-height: 1;
  color: var(--color-primary);
}

.about_image .about_experience h4::after,
.about_stat_item h4::after {
  display: block;
  content: "";
  width: 42px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 50px;
  background-color: var(--color-primary);
}

.about_image .about_experience p {
  margin-top: 14px;
  color: var(--color-heading);
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.about_content p {
  max-width: 560px;
  margin-top: 18px;
}

.about_content p strong {
  color: var(--color-primary);
  font-weight: 700;
}

.about_content .about_btn {
  margin-top: 30px;
}

.about_content .about_btn i {
  margin-right: 8px;
}

.about_stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 62px 0;
  padding: 24px 14px;
  max-width: 1040px;
  background-color: var(--color-white);
  border: 1px solid rgba(41, 54, 81, 0.07);
  border-radius: 18px;
  -webkit-box-shadow: 0px 14px 38px 0px rgba(41, 54, 81, 0.1);
  -moz-box-shadow: 0px 14px 38px 0px rgba(41, 54, 81, 0.1);
  box-shadow: 0px 14px 38px 0px rgba(41, 54, 81, 0.1);
}

.about_stat_item {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.about_stat_item + .about_stat_item {
  border-left: 1px solid rgba(41, 54, 81, 0.12);
}

.about_stat_icon {
  width: 58px;
  height: 58px;
  line-height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background-color: rgba(91, 107, 70, 0.12);
  color: var(--color-primary);
  font-size: 23px;
}

.about_stat_item h4 {
  font-size: 34px;
  line-height: 1.1;
  color: var(--color-primary);
}

.about_stat_item p {
  margin-top: 10px;
  color: var(--color-heading);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .about_image {
    max-width: 560px;
  }

  .about_image img {
    width: 106%;
    height: auto;
    max-width: none;
    margin-left: -3%;
  }

  .about_image .about_experience {
    width: 128px;
    right: 18px;
    padding: 22px 14px 20px;
  }

  .about_image .about_experience .about_experience_icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 20px;
  }

  .about_image .about_experience h4 {
    font-size: 30px;
  }

  .about_image .about_experience p {
    font-size: 12px;
    line-height: 19px;
  }

  .about_content {
    padding-left: 28px;
  }

  .about_content .section_title .main_title {
    font-size: 32px;
  }

  .about_content p {
    font-size: 15px;
  }

  .about_stats {
    max-width: 900px;
  }

  .about_stat_item {
    padding: 0 18px;
  }
}

@media (max-width: 767px) {
  .about_image {
    max-width: 500px;
    margin-top: 35px !important;
  }

  .about_image img {
    width: 104%;
    height: auto;
    max-width: none;
    margin-left: -2%;
  }

  .about_image .about_experience {
    width: 118px;
    right: 10px;
  }

  .about_content {
    padding-left: 0;
  }

  .about_content::before,
  .about_content::after {
    display: none;
  }

  .about_content .section_title .main_title {
    font-size: 26px;
    line-height: 1.35;
  }

  .about_content p {
    margin-top: 18px;
  }

  .about_stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 42px;
    padding: 18px 12px;
  }

  .about_stat_item {
    padding: 18px 12px;
  }

  .about_stat_item + .about_stat_item {
    border-left: 0;
  }

  .about_stat_item:nth-child(2n) {
    border-left: 1px solid rgba(41, 54, 81, 0.12);
  }

  .about_stat_item:nth-child(n + 3) {
    border-top: 1px solid rgba(41, 54, 81, 0.12);
  }
}

@media (max-width: 575px) {
  .about_image {
    max-width: 360px;
  }

  .about_image img {
    width: 102%;
    height: auto;
    max-width: none;
    margin-left: -1%;
  }

  .about_image .about_experience {
    width: 100px;
    right: 0;
    padding: 16px 10px 15px;
  }

  .about_image .about_experience .about_experience_icon {
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin-bottom: 12px;
    font-size: 18px;
  }

  .about_image .about_experience h4 {
    font-size: 26px;
  }

  .about_image .about_experience p {
    margin-top: 10px;
    font-size: 11px;
    line-height: 17px;
  }

  .about_stats {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .about_stat_item:nth-child(2n) {
    border-left: 0;
  }

  .about_stat_item + .about_stat_item {
    border-top: 1px solid rgba(41, 54, 81, 0.12);
  }
}

/*===========================
       04.TECHNOLOGIES css 
===========================*/
.technologies_area {
  position: relative;
  overflow: hidden;
  background-color: var(--color-light);
}

.technologies_intro .section_title .main_title {
  margin-top: 22px;
}

.technologies_intro p {
  max-width: 650px;
  margin: 26px auto 0;
  color: var(--color-text);
}

.technologies_marquee {
  --tech-carousel-gap: 20px;
  --tech-item-width: 150px;
  position: relative;
  margin-top: 76px;
  padding: 0 70px;
}

.technologies_carousel {
  padding-bottom: 0;
  overflow: hidden;
}

.technologies_marquee_track {
  display: flex;
  gap: var(--tech-carousel-gap);
  width: max-content;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-animation: technologies-marquee 90s linear infinite;
  animation: technologies-marquee 90s linear infinite;
  will-change: transform;
}

.technologies_marquee.is-reversed .technologies_marquee_track {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

@-webkit-keyframes technologies-marquee {
  to {
    -webkit-transform: translateX(calc(-50% - (var(--tech-carousel-gap) / 2)));
    transform: translateX(calc(-50% - (var(--tech-carousel-gap) / 2)));
  }
}

@keyframes technologies-marquee {
  to {
    -webkit-transform: translateX(calc(-50% - (var(--tech-carousel-gap) / 2)));
    transform: translateX(calc(-50% - (var(--tech-carousel-gap) / 2)));
  }
}

.technology_item {
  position: relative;
  flex: 0 0 var(--tech-item-width);
  min-height: auto;
  text-align: center;
}

.technology_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  padding: 0;
  margin: 0 auto;
  -webkit-transition: transform 0.3s ease-out 0s;
  -moz-transition: transform 0.3s ease-out 0s;
  -ms-transition: transform 0.3s ease-out 0s;
  -o-transition: transform 0.3s ease-out 0s;
  transition: transform 0.3s ease-out 0s;
}

.technology_item:hover .technology_icon {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

.technology_icon .tech_logo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto;
}

.technologies_marquee_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(91, 107, 70, 0.18);
  border-radius: 30px;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 18px;
  line-height: 40px;
  cursor: pointer;
  -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;
}

.technologies_marquee_prev {
  left: 6px;
}

.technologies_marquee_next {
  right: 6px;
}

.technologies_marquee_btn:hover,
.technologies_marquee_btn:focus {
  color: var(--color-white);
  background: var(--color-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .technologies_marquee {
    --tech-item-width: 136px;
    padding-left: 64px;
    padding-right: 64px;
  }

  .technology_icon {
    width: 124px;
    height: 124px;
    padding: 0;
  }

  .technology_item::before {
    top: 65px;
    right: calc(50% + 62px);
    width: calc(100% - 124px + var(--tech-carousel-gap));
  }

  .technology_item::after {
    top: 61px;
  }
}

@media (max-width: 767px) {
  .technologies_area {
    padding-top: 45px;
    padding-bottom: 80px;
  }

  .technologies_intro .section_title .main_title {
    font-size: 30px;
    margin-top: 16px;
  }

  .technologies_intro .section_title .line {
    padding-top: 12px;
  }

  .technologies_intro p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 28px;
  }

  .technologies_marquee {
    margin-top: 46px;
    padding-left: 52px;
    padding-right: 52px;
    --tech-item-width: 136px;
  }

  .technologies_carousel {
    padding-bottom: 0;
  }

  .technology_icon {
    width: 116px;
    height: 116px;
    padding: 0;
  }

  .technology_icon .tech_logo {
    width: 100px;
    height: 100px;
  }

  .technology_item::before {
    top: 61px;
    right: calc(50% + 58px);
    width: calc(100% - 116px + var(--tech-carousel-gap));
  }

  .technology_item::after {
    top: 57px;
  }
}

@media (max-width: 575px) {
  .technologies_marquee {
    --tech-item-width: 126px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .technology_icon {
    width: 108px;
    height: 108px;
    padding: 0;
  }

  .technology_icon .tech_logo {
    width: 90px;
    height: 90px;
  }

  .technology_item::before {
    right: calc(50% + 54px);
    width: calc(100% - 108px + var(--tech-carousel-gap));
  }
}

/*===========================
       05.EXPERIENCE css 
===========================*/
.experience_area {
  position: relative;
  overflow: hidden;
}

.experience_timeline {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 10px 0 20px;
}

.experience_timeline::before {
  position: absolute;
  content: "";
  width: 1px;
  top: 10px;
  bottom: 20px;
  left: 50%;
  background-color: var(--color-primary);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.experience_item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  align-items: center;
  min-height: 250px;
}

.experience_count {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  line-height: 52px;
  margin: 0 auto;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-primary);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  -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;
}

.experience_item:hover .experience_count {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.experience_side {
  width: 100%;
}

.experience_side_left {
  padding-right: 18px;
}

.experience_side_right {
  padding-left: 18px;
}

.experience_side_left .experience_info {
  text-align: right;
  margin-left: auto;
}

.experience_side_left .experience_card {
  margin-left: auto;
}

.experience_side_right .experience_info,
.experience_side_right .experience_card {
  margin-right: auto;
}

.experience_info {
  max-width: 480px;
}

.experience_info h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: var(--color-heading);
}

.experience_info span {
  display: block;
  margin-top: 8px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}

.experience_info p {
  margin-top: 12px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.experience_info i {
  margin-right: 6px;
}

.experience_card {
  max-width: 480px;
  padding: 28px 30px;
  border-radius: 7px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 12px 30px 0px rgba(41, 54, 81, 0.08);
  -moz-box-shadow: 0px 12px 30px 0px rgba(41, 54, 81, 0.08);
  box-shadow: 0px 12px 30px 0px rgba(41, 54, 81, 0.08);
  -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;
}

.experience_card p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  -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;
}

.experience_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(100, 111, 135, 0.14);
}

.experience_tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 6px 11px;
  border: 1px solid rgba(91, 107, 70, 0.22);
  border-radius: 6px;
  background-color: rgba(91, 107, 70, 0.04);
  color: var(--color-heading);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  -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;
}

.experience_tags i {
  color: var(--color-primary);
  font-size: 13px;
  -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;
}

.experience_item:hover .experience_card {
  background-color: var(--color-primary);
}

.experience_item:hover .experience_card p {
  color: var(--color-white);
}

.experience_item:hover .experience_tags {
  border-top-color: rgba(255, 255, 255, 0.25);
}

.experience_item:hover .experience_tags span {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}

.experience_item:hover .experience_tags i {
  color: var(--color-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .experience_timeline {
    max-width: 900px;
  }

  .experience_item {
    grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
  }

  .experience_info h4 {
    font-size: 22px;
  }

  .experience_card {
    padding: 24px 26px;
  }
}

@media (max-width: 991px) {
  .experience_timeline {
    max-width: 650px;
  }

  .experience_timeline::before {
    display: block;
    left: 26px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .experience_item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    margin-top: 34px;
    padding-left: 72px;
  }

  .experience_count {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .experience_item:first-child {
    margin-top: 0;
  }

  .experience_side,
  .experience_side_left,
  .experience_side_right {
    padding-left: 0;
    padding-right: 0;
  }

  .experience_side_info {
    order: 1;
  }

  .experience_side_card {
    order: 2;
  }

  .experience_info,
  .experience_card {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .experience_side_left .experience_info,
  .experience_info {
    text-align: left;
  }

  .experience_info {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .experience_area {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .experience_area .section_title {
    padding-bottom: 30px;
  }

  .experience_info h4 {
    font-size: 22px;
  }

  .experience_card {
    padding: 24px;
  }

  .experience_card p {
    font-size: 14px;
    line-height: 24px;
  }

  .experience_tags {
    gap: 7px;
    margin-top: 18px;
    padding-top: 16px;
  }

  .experience_tags span {
    min-height: 29px;
    padding: 6px 9px;
    font-size: 11px;
  }
}

@media (max-width: 575px) {
  .experience_timeline::before {
    left: 22px;
  }

  .experience_item {
    padding-left: 62px;
  }

  .experience_count {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 14px;
  }

  .experience_info h4 {
    font-size: 20px;
  }

  .experience_info p {
    font-size: 13px;
  }
}

/*===========================
       06.SERVICE css 
===========================*/
.services_area {
  background-color: var(--color-light);
}

.services_grid_row {
  align-items: stretch;
}

.services_grid_row [class*="col-"] {
  display: flex;
}

.single_service {
  width: 100%;
  min-height: 278px;
  padding: 28px 28px 30px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 8px 24px 0px rgba(41, 54, 81, 0.06);
  -moz-box-shadow: 0px 8px 24px 0px rgba(41, 54, 81, 0.06);
  box-shadow: 0px 8px 24px 0px rgba(41, 54, 81, 0.06);
  -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;
  background-color: var(--color-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single_service {
    padding: 20px;
  }
}

.single_service .service_image {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  border-radius: 20px;
  border-bottom-right-radius: 0;
}

.single_service .service_image i {
  text-align: center;
  font-size: 32px;
  line-height: 1;
  color: var(--color-white);
  -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;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single_service .service_image {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    border-bottom-right-radius: 0;
  }

  .single_service .service_image i {
    font-size: 28px;
  }
}
.single_service .service_content {
  margin-top: 25px;
}
.single_service .service_content .service_title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color-heading);
  -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;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single_service .service_content .service_title {
    font-size: 18px;
  }
}
.single_service .service_line {
  display: none;
}
.single_service .service_content p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 22px;
  -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;
}
.single_service:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
  background-color: var(--color-primary);
  -webkit-box-shadow: 0px 16px 34px 0px rgba(91, 107, 70, 0.18);
  -moz-box-shadow: 0px 16px 34px 0px rgba(91, 107, 70, 0.18);
  box-shadow: 0px 16px 34px 0px rgba(91, 107, 70, 0.18);
}
.single_service:hover .service_image {
  background-color: var(--color-white);
}
.single_service:hover .service_image i {
  color: var(--color-primary);
}
.single_service:hover .service_content .service_title {
  color: var(--color-white);
}
.single_service:hover .service_content p {
  color: var(--color-white);
}

/*===========================
       07.PROJECTS css 
===========================*/
.projects_area {
  background-color: var(--color-white);
}

.projects_section_title .line {
  justify-content: flex-start;
}

.projects_filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 14px;
  margin-bottom: 18px;
}

.projects_filter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(100, 111, 135, 0.18);
  border-radius: 6px;
  color: var(--color-heading);
  font-size: 12px;
  font-weight: 700;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 10px 24px 0px rgba(41, 54, 81, 0.04);
  -moz-box-shadow: 0px 10px 24px 0px rgba(41, 54, 81, 0.04);
  box-shadow: 0px 10px 24px 0px rgba(41, 54, 81, 0.04);
  -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;
}

.projects_filter button i {
  color: var(--color-primary);
  font-size: 15px;
  -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;
}

.projects_filter button.active,
.projects_filter button:hover {
  border-color: var(--color-primary);
  color: var(--color-white);
  background-color: var(--color-primary);
  -webkit-box-shadow: 0px 16px 32px 0px rgba(91, 107, 70, 0.18);
  -moz-box-shadow: 0px 16px 32px 0px rgba(91, 107, 70, 0.18);
  box-shadow: 0px 16px 32px 0px rgba(91, 107, 70, 0.18);
}

.projects_filter button.active i,
.projects_filter button:hover i {
  color: var(--color-white);
}

.project_item {
  flex: none;
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.projects_slider {
  overflow: hidden;
}

.projects_grid {
  position: relative;
  margin-top: 0;
}

.single_project {
  position: relative;
  width: 100%;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 8px;
  -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;
}

.single_project:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

.project_image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -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;
}

.single_project:hover .project_image img {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
}

.project_content {
  position: relative;
  min-height: auto;
  padding: 20px 0 0;
}

.project_content h4 {
  color: var(--color-heading);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  text-transform: none;
  -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;
}

.project_content h4 a {
  color: var(--color-heading);
}

.single_project:hover .project_content h4 {
  color: var(--color-primary);
}

.project_content span {
  display: block;
  margin-top: 8px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.project_content a:hover {
  color: var(--color-primary);
}

.projects_grid .owl-nav {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  z-index: 5;
  margin-top: 0;
  pointer-events: none;
}

.projects_grid .owl-nav button {
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid rgba(91, 107, 70, 0.18) !important;
  border-radius: 30px;
  color: var(--color-primary) !important;
  background: var(--color-white) !important;
  pointer-events: auto;
  -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;
}

.projects_grid .owl-nav button.owl-prev {
  left: 14px;
}

.projects_grid .owl-nav button.owl-next {
  right: 14px;
}

.projects_grid .owl-nav button:hover {
  color: var(--color-white) !important;
  background: var(--color-primary) !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .projects_filter {
    gap: 10px;
  }

  .projects_filter button {
    min-height: 36px;
    padding: 0 13px;
    font-size: 11px;
  }

  .project_content {
    padding: 17px 54px 21px 18px;
  }

  .project_content h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .project_content p {
    font-size: 12px;
    line-height: 21px;
  }
}

@media (max-width: 767px) {
  .projects_area {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .projects_section_title {
    text-align: center;
  }

  .projects_section_title .line {
    justify-content: center;
  }

  .projects_filter {
    justify-content: left;
    gap: 9px;
    margin-top: 10px;
    margin-bottom: 18px;
  }

  .projects_filter button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
    gap: 8px;
  }

  .projects_filter button i {
    font-size: 14px;
  }

  .project_image {
    aspect-ratio: 16 / 9;
  }

  .project_content {
    min-height: auto;
    padding: 18px 56px 22px 20px;
  }

  .project_content h4 {
    font-size: 15px;
    line-height: 21px;
  }

  .project_content p {
    font-size: 12px;
    line-height: 22px;
  }
}

/*==================================
        TESTIMONIALS
==================================*/
.testimonials_area {
  background: var(--color-light);
  overflow: hidden;
}

.owl-carousel:not(.owl-loaded) {
  display: block;
}
.owl-carousel:not(.owl-loaded) > *:not(:first-child) {
  display: none;
}

.testimonial_slider {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial_slider .owl-stage-outer {
  overflow: hidden;
}

.testimonial_slider .owl-stage {
  display: flex;
}

.testimonial_slider .owl-item {
  display: flex;
}

.testimonial_slider .owl-item:not(.active) {
  visibility: hidden;
}

.single_testimonial {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
}

.testimonial_image {
  width: 170px;
  flex-shrink: 0;
}

.testimonial_image img {
  display: block;
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 42px 42px 0 42px;
}

.testimonial_content {
  flex: 1;
  min-width: 0;
}

.testimonial_top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial_info h4 {
  margin-bottom: 6px;
  color: var(--color-heading);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.testimonial_info span {
  color: #646f87;
  font-size: 14px;
}

.testimonial_rating {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 5px;
  white-space: nowrap;
}

.testimonial_rating i {
  color: #f8b739;
  font-size: 15px;
  line-height: 1;
}

.testimonial_content p {
  margin: 0;
  color: #646f87;
  font-size: 12px;
  line-height: 22px;
}

.testimonial_slider .owl-nav {
  margin-top: 70px;
  text-align: center;
}

.testimonial_slider .owl-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 6px;
  border: 1px solid rgba(91, 107, 70, 0.18) !important;
  border-radius: 30px;
  color: var(--color-primary) !important;
  background: var(--color-white) !important;
  -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;
}

.testimonial_slider .owl-nav button:hover {
  color: var(--color-white) !important;
  background: var(--color-primary) !important;
}

@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .testimonial_slider {
    max-width: 760px;
  }
}

@media (max-width: 991px) {
  .testimonial_slider {
    max-width: 680px;
  }

  .single_testimonial {
    gap: 22px;
  }

  .testimonial_image {
    width: 140px;
    flex-basis: 140px;
  }

  .testimonial_image img {
    width: 140px;
    height: 140px;
    border-radius: 34px 34px 0 34px;
  }

  .testimonial_info h4 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .single_testimonial {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-align: center;
  }

  .testimonial_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .testimonial_image {
    width: 130px;
    flex-basis: auto;
  }

  .testimonial_image img {
    width: 130px;
    height: 130px;
    border-radius: 32px 32px 0 32px;
  }

  .testimonial_info h4 {
    font-size: 22px;
  }

  .testimonial_info span {
    font-size: 15px;
  }
}

/*===========================
      11.FOOTER css 
===========================*/
.footer_area {
  background-color: #f8f8f8;
}

.footer_cta_area {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  background-color: var(--color-white);
}

.footer_cta_area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 100%;
  height: 320px;
  transform: translateX(-50%);
  opacity: 0.08;
  background-image: url("../images/shape.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer_cta {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 190px;
  margin: 0 auto;
  padding: 50px 54px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background-color: var(--color-primary);
}

.footer_cta::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -28px;
  width: 100%;
  height: 122px;
  opacity: 0.12;
  background-image: url("../images/Mask Group 2.webp");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer_cta_content,
.footer_cta_btn {
  position: relative;
  z-index: 1;
}

.footer_cta_content h3 {
  font-size: 35px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-white);
}

.footer_cta_line {
  width: 66px;
  height: 2px;
  margin-top: 18px;
  background-color: var(--color-white);
}

.footer_cta_content p {
  max-width: 440px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-white);
}

.footer_cta_btn {
  min-width: 108px;
  height: 42px;
  padding: 0 22px;
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  white-space: nowrap;
  -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;
}

.footer_cta_btn:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(41, 54, 81, 0.16);
}

.footer_main {
  padding: 32px 0 36px;
  background-color: #f8f8f8;
}

.footer_content .footer_social {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer_content .footer_social li {
  display: inline-flex;
}
.footer_content .footer_social li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 15px;
  background-color: #eef0f6;
  color: #80899b;
  display: flex;
  align-items: center;
  justify-content: center;
  -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;
}
.footer_content .footer_social li a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.footer_content .footer_menu {
  padding-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_content .footer_menu li {
  margin: 10px 18px 0;
}
.footer_content .footer_menu li a {
  color: var(--color-heading);
  font-size: 16px;
  font-weight: 600;
  -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;
}
.footer_content .footer_menu li a:hover {
  color: var(--color-primary);
}
.footer_content .copyright {
  margin-top: 38px;
  color: var(--color-text);
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.footer_content .copyright span {
  color: var(--color-primary);
}

/*===== FAQ Page Style =====*/
.faq_page .faq_area {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(91, 107, 70, 0.08) 0%,
    rgba(241, 234, 215, 0.45) 36%,
    var(--color-white) 100%
  );
}

.faq_page .faq_area::before,
.faq_page .faq_area::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.faq_page .faq_area::before {
  left: -70px;
  top: 95px;
  width: 330px;
  height: 230px;
  border-top: 1px solid rgba(91, 107, 70, 0.16);
  border-radius: 50%;
}

.faq_page .faq_area::after {
  right: 38px;
  top: 35px;
  width: 130px;
  height: 130px;
  opacity: 0.32;
  background-image: radial-gradient(
    rgba(91, 107, 70, 0.2) 1px,
    transparent 1px
  );
  background-size: 12px 12px;
}

.faq_page .faq_area .container {
  position: relative;
  z-index: 1;
}

.faq_bg_icon {
  position: absolute;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.faq_bg_icon_large {
  left: 8%;
  top: 74px;
  width: 86px;
  height: 86px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    var(--color-primary-light) 0%,
    var(--color-primary) 100%
  );
  color: var(--color-white);
  box-shadow: 0 22px 40px rgba(91, 107, 70, 0.24);
  transform: rotate(-8deg);
}

.faq_bg_icon_large i {
  font-size: 42px;
}

.faq_bg_icon_small {
  right: 10%;
  top: 86px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(91, 107, 70, 0.18);
  color: var(--color-white);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.36);
}

.faq_bg_icon_small i {
  font-size: 26px;
}

.faq_intro {
  margin-top: 18px;
  color: var(--color-text);
}

.faq_item {
  margin-top: 14px;
  border: 1px solid var(--color-border-light);
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(41, 54, 81, 0.06);
}

.faq_item:first-child {
  margin-top: 0;
}

.faq_item summary {
  min-height: 64px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.faq_item summary::-webkit-details-marker {
  display: none;
}

.faq_item summary span {
  color: var(--color-heading);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.faq_item[open] summary span:not(.faq_toggle_icon) {
  color: var(--color-primary);
}

.faq_toggle_icon {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(91, 107, 70, 0.08);
  color: var(--color-primary);
}

.faq_toggle_icon::before,
.faq_toggle_icon::after {
  position: absolute;
  content: "";
  left: 7px;
  top: 11px;
  width: 10px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

.faq_toggle_icon::after {
  transform: rotate(90deg);
}

.faq_item[open] .faq_toggle_icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.faq_item[open] .faq_toggle_icon::after {
  display: none;
}

.faq_item summary i {
  justify-self: end;
  color: var(--color-primary);
  font-size: 14px;
  transition: transform 0.3s ease-out 0s;
}

.faq_item[open] summary i {
  transform: rotate(180deg);
}

.faq_item p {
  padding: 0 24px 24px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 26px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_cta {
    padding: 38px 34px;
  }
}

@media (max-width: 767px) {
  .faq_page .faq_area::before {
    left: -170px;
    top: 120px;
  }

  .faq_page .faq_area::after {
    right: -20px;
    top: 20px;
    width: 90px;
    height: 90px;
  }

  .faq_bg_icon {
    display: none;
  }

  .faq_item summary {
    min-height: 58px;
    padding: 16px 18px;
    grid-template-columns: 24px minmax(0, 1fr) 14px;
    gap: 14px;
  }

  .faq_item summary span {
    font-size: 14px;
    line-height: 22px;
  }

  .faq_item p {
    padding: 0 18px 20px;
    font-size: 14px;
    line-height: 24px;
  }

  .footer_cta_area {
    padding: 70px 0 88px;
  }

  .footer_cta_area::before {
    width: 520px;
    height: 340px;
    opacity: 0.08;
    background-size: 520px auto;
  }

  .footer_cta {
    width: 100%;
    min-height: auto;
    padding: 18px 16px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .footer_cta::after {
    bottom: -12px;
    height: 92px;
  }

  .footer_cta_content h3 {
    font-size: 21px;
  }

  .footer_cta_content p {
    font-size: 12px;
    max-width: 100%;
  }

  .footer_cta_btn {
    width: auto;
    min-width: 94px;
    height: 35px;
    line-height: 35px;
  }

  .footer_main {
    padding: 24px 0 28px;
  }
  .footer_content .footer_menu li {
    margin: 10px 12px 0;
  }
}

@media (max-width: 380px) {
  .footer_cta {
    width: 100%;
    padding: 18px 16px 14px;
  }

  .footer_cta_content h3 {
    font-size: 20px;
  }
}
