
/*
--------------------------------------------------------------
[Table of Contents]
--------------------------------------------------------------
01. Variables & Mixins
02. Typography
03. Buttons
04. About 
05. Animation 
06. Brand 
07. Contact
08. Cta
09. Faq
10. Feature
11. Footer
11. Header
12. Helping
13. Hero
14. Marquee
15. Meanmenu
16. News
17. Preloader
18. Pricing
19. Project
20. Section
21. Service
22. Team
23. Testimonial

--------------------------------------------------------------
*/
:root {
      --green: green;
    --an: cubic-bezier(0.12, 0.7, 0.74, 0.71);
  --body: #fff;
  --black: #000;
  --white: #fff;
  /* --theme: #F4A046; */
  --theme:#FF7D29;
  --header: #111;
  --text: #222222;
  --border: #E0E0E0;
  --border-2: #D4DCED;
  --bg: #F8F8F8;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.theme-btn {
    background-color: var(--theme);
    color: var(--white);
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 20px;
    text-align: center;
    min-width: 180px;
    border-radius: 0;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    line-height: 1;
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.link-btn {
  text-transform: capitalize;
  font-size: 16px;
  color: var(--header);
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.link-btn i {
  margin-left: 8px;
  color: var(--theme);
}
.link-btn:hover {
  color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  font-weight: 400;
  overflow-x: hidden;
}

*{
  font-family: "Jost", sans-serif;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

b ,strong{
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}


h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 146%;
}
@media (max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 18px;
  font-weight: 500;
}

h6 {
  font-size: 16px;
  font-weight: 300;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer !important;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0 0 10px 0;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.about-wrapper .about-image-items .about-image {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image {
    height: 400px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.about-wrapper .about-image-items .about-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme);
  z-index: -1;
  top: -6%;
  left: -5%;
  right: 0;
  bottom: 0;
  width: 72%;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image::before {
    display: none;
  }
}
.about-wrapper .about-image-items .about-image::after {
  position: absolute;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme);
  z-index: -1;
    top: 6%;
    left: 31%;

  width: 75%;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image::after {
    display: none;
  }
}
.about-wrapper .about-image-items .about-image .about-image-2 {
  position: absolute;
  right: -3%;
  bottom: 14%;
  max-width: 300px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image .about-image-2 {
    right: 5%;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image .about-image-2 {
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image .about-image-2 {
    max-width: 200px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image .about-image-2 img {
    width: 100%;
    height: 100%;
  }
}
.about-wrapper .about-content {
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-area {
  margin-top: 25px;
}
.about-wrapper .about-content .about-area .about-items {
  display: flex;
  align-items: end;
  gap: 15px;
}
.about-wrapper .about-content .about-area p {
  margin-top: 10px;
}
.about-wrapper .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-author {
    flex-wrap: wrap;
  }
}
.about-wrapper .about-content .about-author .author-group-image {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-wrapper .about-content .about-author .author-group-image .content p {
  font-weight: 100;
  font-size: 14px;
}

.about-section {
  position: relative;
  background: #FFEEA9;
  background-image: url(/asset/img/bgicons/flower.png);
  background-size: 195px;
}
.about-section .bottom-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .about-section .bottom-shape {
    display: none;
  }
}


.client-info  h6{
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}



@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.contact-info-area {
  padding: 60px 0px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .contact-info-area {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: initial;
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .contact-info-area {
    padding: 80px 0 0;
  }
}
@media (max-width: 575px) {
  .contact-info-area {
    gap: 30px;
  }
}
.contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--theme);
  z-index: 1;
  padding: 20px;
  width: 410px;
}
@media (max-width: 1399px) {
  .contact-info-area .contact-info-items {
    flex-wrap: wrap;
  }
}
.contact-info-area .contact-info-items .icon {
  width: 70px;
  min-width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--theme);
}
@media (max-width: 1199px) {
  .contact-info-area .contact-info-items .icon {
    width: 70px;
    height: 70px;
    line-height: 80px;
  }
}
.contact-info-area .contact-info-items .icon i {
  font-size: 35px;
  color: var(--white);
}
@media (max-width: 1199px) {
  .contact-info-area .contact-info-items .icon i {
    font-size: 30px;
  }
}
.contact-info-area .contact-info-items .content h6 {
  color: var(--white);
  margin-bottom: 5px;
}
.contact-info-area .contact-info-items .content h4 {
  color: var(--white);
}
.contact-info-area .contact-info-items .content h4 a {
  color: var(--white);
}

.contact-info-wrapper {
  background-color:#FFEEA9;
}
.contact-info-wrapper .google-map {
  margin-bottom: -9px;
}
.contact-info-wrapper .google-map iframe {
  width: 100%;
  height: 560px;
}
@media (max-width: 991px) {
  .contact-info-wrapper .google-map iframe {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .contact-info-wrapper .google-map iframe {
    height: 350px;
  }
}
.contact-info-wrapper .contact-info-content {
  padding: 40px;
}
@media (max-width: 1399px) {
  .contact-info-wrapper .contact-info-content {
    padding: 30px;
  }
}

.contact-info-wrapper .contact-info-content .contact-info {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .contact-info-wrapper .contact-info-content .contact-info {
    margin-top: 30px;
  }
}
.contact-info-wrapper .contact-info-content .contact-info .contact-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-info-wrapper .contact-info-content .contact-info .contact-items:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .contact-info-wrapper .contact-info-content .contact-info .contact-items {
    gap: 20px;
  }
}
.contact-info-wrapper .contact-info-content .contact-info .contact-items .icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  line-height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  background: #8133000f;
}
.contact-info-wrapper .contact-info-content .contact-info .contact-items .icon i {
  font-size: 16px;
}
.contact-info-wrapper .contact-info-content .contact-info .contact-items .content  {
    color: #813300;
    font-weight: 500;
}
.contact-info-wrapper .contact-info-content .contact-info .contact-items .content a {
  color: #813300;
  font-size: 18px;
}
@media (max-width: 575px) {
  .contact-info-wrapper .contact-info-content .contact-info .contact-items .content br {
    display: block;
  }
}
.contact-info-wrapper .contact-info-content .contact-info .social-icon {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .contact-info-wrapper .contact-info-content .contact-info .social-icon {
    margin-top: 20px;
  }
}
.contact-info-wrapper .contact-info-content .contact-info .social-icon a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.contact-info-wrapper .contact-info-content .contact-info .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.contact-wrapper-3 .contact-content {
  background-color: var(--white);
  padding: 40px;

  margin: 40px;
}

@media (max-width: 1399px) {
  .contact-wrapper-3 .contact-content .contact-form-items {
    margin-top: 30px;
  }
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt {
  position: relative;
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt input,
.contact-wrapper-3 .contact-content .contact-form-items .form-clt select,
 .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--text);
  padding: 16px 20px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt input, .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-3 .contact-content .contact-form-items .form-clt input, .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt input::placeholder, .contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-wrapper-3 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 70px;
  resize: none;
}
.contact-wrapper-3 .contact-content .contact-form-items .theme-btn {
  width: 100%;
}

.contact-us-items .content {
  position: relative;
}
.contact-us-items .content h4 {
  position: absolute;
  top: 40%;
}
@media (max-width: 1199px) {
  .contact-us-items .content h4 {
    position: static;
  }
}
.contact-us-items .content h4 a {
  color: var(--header);
}
.contact-us-items .content h2 {
  font-size: 110px;
  line-height: 110%;
}
@media (max-width: 1399px) {
  .contact-us-items .content h2 {
    font-size: 100px;
  }
}
@media (max-width: 1199px) {
  .contact-us-items .content h2 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .contact-us-items .content h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .contact-us-items .content h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .contact-us-items .content h2 {
    font-size: 30px;
  }
}
.contact-us-items .content h2 span {
  display: inline-block;
  margin-left: 440px;
}
@media (max-width: 1199px) {
  .contact-us-items .content h2 span {
    margin-left: 0;
  }
}
.contact-us-items .content .contact-btn {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 200px;
}
@media (max-width: 1199px) {
  .contact-us-items .content .contact-btn {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.contact-us-section {
  position: relative;
}
.contact-us-section .left-shape {
  position: absolute;
  bottom: 0;
  left: 20px;
}
@media (max-width: 1199px) {
  .contact-us-section .left-shape {
    display: none;
  }
}
.contact-us-section .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .contact-us-section .right-shape {
    display: none;
  }
}

.contact-us-section-2 {
  position: relative;
}
.contact-us-section-2 .line-shape {
  position: absolute;
  left: -121px;
  bottom: 122px;
  z-index: 1;
}
@media (max-width: 1399px) {
  .contact-us-section-2 .line-shape {
    display: none;
  }
}

.contact-us-wrapper {
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .contact-us-wrapper {
    margin-bottom: 0;
  }
}
.contact-us-wrapper .contact-us-image {
  margin-left: -275px;
  position: relative;
  margin-top: -58px;
  height: 724px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper .contact-us-image {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .contact-us-wrapper .contact-us-image {
    height: initial;
    margin-top: 0;
  }
}
.contact-us-wrapper .contact-us-image img {
  width: 100%;
  height: 100%;
}
.contact-us-wrapper .contact-us-image .shape {
  position: absolute;
  left: -12%;
  bottom: -18%;
  z-index: 1;
}
@media (max-width: 1399px) {
  .contact-us-wrapper .contact-us-image .shape {
    display: none;
  }
}
.contact-us-wrapper .comment-form-wrap {
  background-color: var(--white);
  padding: 50px 40px 30px;
  margin-left: -200px;
  position: relative;
  margin-top: 15px;
  height: 653px;
  width: 600px;
  z-index: 1;
}
@media (max-width: 1399px) {
  .contact-us-wrapper .comment-form-wrap {
    width: initial;
    height: initial;
    margin-left: 0;
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .contact-us-wrapper .comment-form-wrap .contact-from-item {
    margin-top: 30px;
  }
}
.contact-us-wrapper .comment-form-wrap .contact-from-item .form-clt input, .contact-us-wrapper .comment-form-wrap .contact-from-item .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid var(--border);
  background-color: transparent;
  padding: 16px 20px;
  font-weight: 100;
}
.contact-us-wrapper .comment-form-wrap .contact-from-item .form-clt input::placeholder, .contact-us-wrapper .comment-form-wrap .contact-from-item .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-us-wrapper .comment-form-wrap .contact-from-item .form-clt textarea {
  padding-bottom: 50px;
  resize: none;
}
.contact-us-wrapper .comment-form-wrap .contact-from-item .form-clt .nice-select {
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 16px 20px;
}
.contact-us-wrapper .comment-form-wrap .contact-from-item .form-clt .nice-select span {
  font-size: 16px;
  color: var(--text);
  font-weight: 100;
  text-transform: capitalize;
}
.contact-us-wrapper .comment-form-wrap .contact-from-item .form-clt .nice-select::after {
  border-right: 1px solid var(--header);
  border-bottom: 1px solid var(--header);
  right: 25px;
  top: 28px;
}
.contact-us-wrapper .comment-form-wrap .contact-from-item .form-clt .nice-select .list {
  right: 0;
  background-color: var(--bg);
}
.contact-us-wrapper .comment-form-wrap .contact-from-item .form-clt .nice-select .option {
  border: none;
  padding: 6px 15px;
}
.contact-us-wrapper .contact-us-content {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .contact-us-wrapper .contact-us-content .main-item {
    margin-top: 30px;
  }
}
.contact-us-wrapper .contact-us-content .main-item .contact-us-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-us-wrapper .contact-us-content .main-item .contact-us-items:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .contact-us-wrapper .contact-us-content .main-item .contact-us-items {
    flex-wrap: wrap;
  }
}
.contact-us-wrapper .contact-us-content .main-item .contact-us-items .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--theme);
}
.contact-us-wrapper .contact-us-content .main-item .contact-us-items .icon i {
  font-size: 25px;
  color: var(--white);
}
.contact-us-wrapper .contact-us-content .main-item .contact-us-items .content h3 {
  color: var(--white);
  margin-bottom: 5px;
}
.contact-us-wrapper .contact-us-content .main-item .contact-us-items .content h6 {
  color: var(--white);
}
.contact-us-wrapper .contact-us-content .main-item .contact-us-items .content h6 a {
  color: var(--white);
}
.contact-us-wrapper .contact-us-content .info-items {
  display: flex;
  align-items: center;
  background-color: var(--white);
  padding: 25px 36px;
  margin-top: 30px;
  justify-content: space-between;
  margin-left: -30px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper .contact-us-content .info-items {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .contact-us-wrapper .contact-us-content .info-items {
    padding: 25px;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.contact-us-wrapper .contact-us-content .info-items .info-text {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-us-wrapper .contact-us-content .info-items .info-text .icon i {
  font-size: 50px;
  color: var(--theme);
}
.contact-us-wrapper .contact-us-content .info-items .info-text .content h3 {
  color: var(--theme);
}
.contact-us-wrapper .contact-us-content .info-items .info-text .content h6 a {
  color: var(--text);
}
.contact-us-wrapper .contact-us-content .info-items .info-image img {
  width: 60px;
}
@media (max-width: 575px) {
  .contact-us-wrapper .contact-us-content .info-items .info-image {
    display: none;
  }
}
.contact-us-wrapper .contact-us-image-2 {
  margin-right: -275px;
}
@media (max-width: 1399px) {
  .contact-us-wrapper .contact-us-image-2 {
    margin-right: 0;
  }
}
.contact-us-wrapper .contact-us-image-2 img {
  width: 100%;
  height: 100%;
}

.counter-wrapper {
  padding: 80px 0 80px;
}
.counter-wrapper .counter-items {
  display: flex;
  align-items: center;
  gap: 35px;
  border-right: 1px solid var(--border);
  padding-left: 20px;
}
@media (max-width: 1399px) {
  .counter-wrapper .counter-items {
    border-right: 1px none;
    padding-left: 0;
  }
}
@media (max-width: 470px) {
  .counter-wrapper .counter-items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
.counter-wrapper .counter-items.style-2 {
  border-right: 1px none;
  padding-left: 0;
}
.counter-wrapper .counter-items .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme);
}
.counter-wrapper .counter-items .content h2 {
  font-weight: 663;
  color: var(--header);
}
.counter-wrapper .counter-items .content p {
  font-weight: 100;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  border: 3px solid var(--theme);
  background-color: var(--white);
  padding: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .cta-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.cta-wrapper .cta-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.cta-wrapper .cta-image img {
  width: 100%;
  height: 100%;
}
.cta-wrapper .cta-content h2 {
  font-size: 36px;
  color: var(--black);
  text-transform: none;
}
@media (max-width: 767px) {
  .cta-wrapper .cta-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper .cta-content h2 {
    font-size: 26px;
  }
}

.counter-area.style-2 {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 120px;
}
@media (max-width: 1399px) {
  .counter-area.style-2 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .counter-area.style-2 {
    padding-bottom: 80px;
  }
}
.counter-area .counter-box-items {
  border-bottom: 4px solid #813300;
  background: linear-gradient(349deg, #ffeea9, #ffe67e);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 25px 20px;
  text-align: center;
}
.counter-area .counter-box-items .content h2 {
  font-weight: 663;
  color: var(--header);
}
.counter-area .counter-box-items .content p {
  color: #222222;
  font-weight: 500;
}

.instagram-banner{
  background:url(/asset/img/bgicons/cir-flow.png), linear-gradient(0deg, #ffe57a, #ffe57a);
  clip-path: polygon(0 85%, 0 0, 100% 0, 100% 85%, 50% 100%);
}

.instagram-wrapper {
  margin: 0 -75px;
}

.instagram-wrapper h3{
  font-size: 30px;
}

@media (max-width: 1199px) {
  .instagram-wrapper {
    margin: 0 15px;
  }
}
.instagram-wrapper .instagram-banner-items .banner-image {
  position: relative;
}


.instagram-wrapper .instagram-banner-items .banner-image img {
  width: 100%;
  height: 100%;
}
.instagram-wrapper .instagram-banner-items .banner-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: hsla(0, 0%, 100%, 0.5);
  opacity: 0.6;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: 1;
}
.instagram-wrapper .instagram-banner-items .banner-image .icon {
  position: absolute;
  width: 68px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  font-size: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  color: var(--white);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.instagram-wrapper .instagram-banner-items:hover .banner-image::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.instagram-wrapper .instagram-banner-items:hover .banner-image .icon {
  opacity: 1;
}

.video-wrapper {
  padding: 350px 0;
}
@media (max-width: 1199px) {
  .video-wrapper {
    padding: 150px 0;
  }
}
@media (max-width: 991px) {
  .video-wrapper {
    padding: 120px 0;
  }
}
.video-wrapper .video-content {
  text-align: center;
  margin: 0 auto;
}
.video-wrapper .video-content .video-btn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme);
  font-size: 22px;
  position: relative;
  display: inline-block;
}
.video-wrapper .video-content .video-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--white);
  border-radius: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}
.video-wrapper .video-content .video-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--white);
  border-radius: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .video-wrapper .video-content .video-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
  }
}

.faq-wrapper .faq-image {
  margin-left: -325px;
  margin-top: -30%;
  position: relative;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image {
    margin-left: 0;
    margin-top: 0;
  }
}
.faq-wrapper .faq-image img {
  width: 100%;
  height: 100%;
}
.faq-wrapper .faq-image .video-btn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme);
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 22px;
}
.faq-wrapper .faq-image .video-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--white);
  border-radius: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}
.faq-wrapper .faq-image .video-btn::after {
  position: absolute;
  content: "";
  border: 1px solid var(--white);
  border-radius: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .faq-wrapper .faq-image .video-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
  }
}
.faq-wrapper .faq-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-content {
    margin-left: 0px;
  }
}
.faq-wrapper .faq-content .accordion-item {
  border: 0;
  background-color: var(--white);
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-content .accordion-item {
    margin-top: 30px;
  }
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: var(--theme);
  padding: 25px 30px 0;
  text-transform: capitalize;
  font-size: 24px;
  border: 1px solid var(--border);
  border: 1px solid transparent;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f324";
  background: transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f322";
  background: transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  transform: rotate(0);
  color: var(--white);
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: #F6F6F6;
  padding: 25px 30px;
  color: var(--header);
}
.faq-wrapper .faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-right: 150px;
  padding-left: 30px;
  padding-top: 15px;
  color: var(--white);
  background-color: var(--theme);
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .faq-wrapper .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 30px;
  }
}

.faq-section {
  position: relative;
  z-index: 9;
}
@media (max-width: 1600px) {
  .faq-section {
    overflow: hidden;
  }
}
.faq-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  left: 40%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .faq-section::before {
    left: 0;
  }
}
.faq-section .shape {
  position: absolute;
  left: 4%;
  bottom: -65px;
}
@media (max-width: 1399px) {
  .faq-section .shape {
    display: none;
  }
}


@media (max-width: 1399px) {
  .choose-us-wrapper .choose-us-content p br {
    display: none;
  }
}
.choose-us-wrapper .choose-us-content .choose-us-items {
  position: relative;
  margin-top: 40px;
}
.choose-us-wrapper .choose-us-content .choose-us-items .line-shape {
  position: absolute;
  left: 4%;
  top: 10px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-content .choose-us-items .line-shape {
    display: none;
  }
}
.choose-us-wrapper .choose-us-content .choose-us-items .content {
  margin-bottom: 30px;
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-content .choose-us-items .content {
    margin-bottom: 20px;
    margin-left: 0;
  }
}
.choose-us-wrapper .choose-us-content .choose-us-items .content h4 {
  margin-bottom: 5px;
}
.choose-us-wrapper .choose-us-image-items {
  position: relative;
  margin-top: 50px;
}
.choose-us-wrapper .choose-us-image-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
    background-color: rgb(255 238 169);
    opacity: 1;
  top: 57%;
  left: 11%;
  right: 0px;
  bottom: 0px;
  width: 89%;
  height: 43%;
}
@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-image-items::before {
    display: none;
  }
}
.choose-us-wrapper .choose-us-image-items .choose-us-image {
  position: relative;
}
.choose-us-wrapper .choose-us-image-items .choose-us-image img {
  width: 100%;
  height: 100%;
}
.choose-us-wrapper .choose-us-image-items .choose-us-image.style-2 {
  margin-top: -50px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-image-items .choose-us-image.style-2 {
    margin-top: 0;
  }
}
.choose-us-wrapper .choose-us-image-items .choose-us-image .counter-text {
  background-color: #813300;
  padding: 20px;
  width: 203px;
  height: 115px;
  position: absolute;
  left: 32%;
  bottom: -132px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-image-items .choose-us-image .counter-text {
    left: 0;
  }
}
@media (max-width: 991px) {
  .choose-us-wrapper .choose-us-image-items .choose-us-image .counter-text {
left: -50px;
        bottom: -60px;
  }
}
.choose-us-wrapper .choose-us-image-items .choose-us-image .counter-text h2 {
  color: var(--white);
}
.choose-us-wrapper .choose-us-image-items .choose-us-image .counter-text p {
  font-weight: 600;
  color: var(--white);
}

.choose-us-section {
  position: relative;
}
@media (max-width: 1199px) {
  .choose-us-section {
    overflow: hidden;
  }
}
.choose-us-section .flower-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .choose-us-section .flower-shape {
    display: none;
  }
}

.choose-us-wrapper-2 {
  position: relative;
}
.choose-us-wrapper-2 .choose-us-image {
  padding: 20px;
  position: relative;
  border: 1px solid var(--theme);
  /* height: 800px; */
}
@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-image {
    height: initial;
  }
}
.choose-us-wrapper-2 .choose-us-image img {
  width: 100%;
  height: 100%;
}
.choose-us-wrapper-2 .choose-us-image .counter-text {
  padding: 25px;
  background: var(--white);
  border-radius: 5px;
  border: 0.5px solid var(--theme);
  position: absolute;
  bottom: 7%;
  right: 7%;
}
.choose-us-wrapper-2 .choose-us-image .counter-text h3 {
  font-size: 28px;
  line-height: 1;
}
.choose-us-wrapper-2 .choose-us-image .counter-text p {
      font-weight: 600;
      margin: 0;
}
.choose-us-wrapper-2 .choose-us-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper-2 .choose-us-content p {
  color: #fff;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-area {
  margin-top: 30px;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-area .choose-us-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .choose-us-area .choose-us-items {
    flex-wrap: wrap;
  }
}
.choose-us-wrapper-2 .choose-us-content .choose-us-area .choose-us-items .icon {
  width: 72px;
  height: 72px;
  line-height: 72px;
  background: var(--theme);
  text-align: center;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-area .choose-us-items .content {
  font-weight: 500;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-area .choose-us-items .content h5 {
  font-weight: 500;
  color: var(--white);
}
.choose-us-wrapper-2 .choose-us-content .choose-us-area .choose-us-items .content p {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-content .choose-us-area .choose-us-items .content p {
    font-size: 14px;
  }
}

.choose-us-section-2 {
  position: relative;
  background: linear-gradient(45deg, #000000ab, #000000ab), url(/asset/img/sofabg.jpg);
    background-size: 100% 90%;
    background-repeat: no-repeat;
}


.tab-wrapper {
  border-bottom: 1px solid var(--border);
  padding-bottom: 120px;
}
@media (max-width: 1199px) {
  .tab-wrapper {
    padding-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .tab-wrapper {
    padding-bottom: 0px;
  }
}
.tab-wrapper .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .tab-wrapper .nav {
    gap: 15px;
  }
}
.tab-wrapper .nav .nav-item .nav-link {
  border: 1px solid var(--border);
  font-size: 24px;
  font-weight: 600;
  color: var(--header);
  
  padding: 20px 50px;
  width: 300px;
  line-height: 1;
}
.tab-wrapper .nav .nav-item .nav-link.active {
  background-color: var(--white);
  color: var(--header);
  box-shadow: 0px 4px 30px 0px rgba(52, 55, 170, 0.1);
  border-bottom: 2px solid var(--theme);
}
.tab-wrapper .tab-content {
  margin-top: 60px;
}
.tab-wrapper .tab-content .tab-box-items {
  background-color: var(--white);
  padding: 30px;
  transition: all 0.4s ease-in-out;
}
.tab-wrapper .tab-content .tab-box-items .icon {
  margin-bottom: 20px;
}
.tab-wrapper .tab-content .tab-box-items .content .link-btn {
  margin-top: 10px;
}
.tab-wrapper .tab-content .tab-box-items:hover {
  box-shadow: 0px 4px 30px 0px rgba(52, 55, 170, 0.1);
}

.footer-widget-wrapper {
  padding: 60px 0 60px;
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}

.widget-head img{
  width: 200px;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .widget-head h3 {
  color: var(--white);
  font-size: 24px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .widget-head h3 {
    font-size: 20px;
  }
}
.footer-widget-wrapper .single-footer-widget .wid-title {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .wid-title h4 {
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .wid-title h4 {
    font-size: 20px;
  }
}
.footer-widget-wrapper .single-footer-widget .wid-title h4::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 55px;
  height: 2px;
  background-color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .wid-title h4::after {
  position: absolute;
  bottom: 0;
  left: 60px;
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: #fff;
  max-width: 373px;
}
.footer-widget-wrapper .single-footer-widget .list-items li {
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper .single-footer-widget .list-items li a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .list-items li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper .single-footer-widget .list-items li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .footer-input {
  margin-top: 30px;
  position: relative;
}
.footer-widget-wrapper .single-footer-widget .footer-input input {
  width: 100%;
  border: none;
  background-color: var(--white);
  position: relative;
  padding: 16px 20px;
  color: var(--text);
  font-weight: 100;
  text-transform: capitalize;
}
.footer-widget-wrapper .single-footer-widget .footer-input input::placeholder {
  color: var(--text);
}
.footer-widget-wrapper .single-footer-widget .footer-input button {
  position: absolute;
  right: -8px;
  top: 0px;
  width: 60px;
  height: 60px;
  background-color: var(--theme);
  text-align: center;
  line-height: 60px;
}
.footer-widget-wrapper .single-footer-widget .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.footer-widget-wrapper .single-footer-widget .social-icon a {
  color: var(--white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #0D0D0D;
  transition: all 0.4s ease-in-out;
  display: block;
}
.footer-widget-wrapper .single-footer-widget .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .contact-info-items .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
}
.footer-widget-wrapper .single-footer-widget .contact-info-items .contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  border: 1px solid var(--theme);
}
.footer-widget-wrapper .single-footer-widget .contact-info-items .contact-info .icon i {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .contact-info-items .contact-info .content span {
  font-weight: 100;
  color: var(--white);
  margin-bottom: 5px;
}
.footer-widget-wrapper .single-footer-widget .contact-info-items .contact-info .content h5 {
  font-weight: 600;
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .contact-info-items .contact-info .content h5 a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
  position: relative;
}
@media (max-width: 575px) {
  .footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
    width: 100px;
  }
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb img {
  width: 100%;
  height: 100%;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 91, 31, 0.7);
  transition: 0.4s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
  color: var(--white);
  font-size: 22px;
  z-index: 99;
  position: relative;
  margin-top: 30px;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
  opacity: 1;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
  opacity: 1;
}
.footer-widget-wrapper .single-footer-widget.style-2 .wid-title h4 {
  color: var(--header);
}
.footer-widget-wrapper .single-footer-widget.style-2 .wid-title h4::before {
  background-color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget.style-2 .wid-title h4::after {
  background-color: var(--header);
}
.footer-widget-wrapper .single-footer-widget.style-2 .list-items li a {
  color: var(--header);
}
.footer-widget-wrapper .single-footer-widget.style-2 .contact-info-items .contact-info .icon i {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget.style-2 .contact-info-items .contact-info .content span {
  color: var(--header);
}
.footer-widget-wrapper .single-footer-widget.style-2 .contact-info-items .contact-info .content h5 {
  color: var(--header);
}
.footer-widget-wrapper .single-footer-widget.style-2 .contact-info-items .contact-info .content h5 a {
  color: var(--header);
}

.footer-bottom {
  background: #ffe785;
}

.footer-bottom a{
  color: #813300;
  font-weight: 600;
  border-bottom: 1px solid;
}

.footer-bottom .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:5px 0 60px;
}
@media (max-width: 1199px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}
.footer-bottom .footer-wrapper p {
  color:#000;
      margin: 0;
    font-size: 17px;
}
.footer-bottom .footer-wrapper .bottom-list {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .footer-bottom .footer-wrapper .bottom-list {
    flex-wrap: wrap;
  }
}
.footer-bottom .footer-wrapper .bottom-list li {
  font-weight: 300;
  color: var(--white);
}

.footer-section {
  position: relative;
}

.footer-section .linked,
.footer-section .linked a{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.footer-section .time {
    color: #fff !important; 
font-size: 16px;
}

.hero-section .shape-1, 
.footer-section .shape-1 {
  position: absolute;
  left: 0;
  bottom: 12%;
}
@media (max-width: 1399px) {
  .hero-section .shape-1,
  .footer-section .shape-1 {
    display: none;
  }
}
.hero-section .shape-2,
.footer-section .shape-2 {
  position: absolute;
  right: 0;
  bottom: 15%;
}
@media (max-width: 1399px) {
  .hero-section .shape-2,
  .footer-section .shape-2 {
    display: none;
  }
}

.footer-section-2 {
  position: relative;
}
.footer-section-2 .bottom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .footer-section-2 .bottom-shape {
    display: none;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
@media (max-width: 1199px) {
  .header-main {
    padding: 15px 0px;
  }
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 30px;
  padding: 20px 0;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  color: var(--header);
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu.meet-expand li:last-child a {
  border-bottom: 1px solid #eeeeee;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--theme);
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 15px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media (max-width: 1199px) {
  .header-1 {
    background-color: var(--white);
  }
}
.header-1 .mega-menu-wrapper .header-main {
  padding: 5px 40px;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  position: relative;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main {
    box-shadow: none;
    margin-top: 0;
    padding: 10px 0;
  }
}
.header-1 .mega-menu-wrapper .header-main .shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .shape {
    display: none;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 150px;
}
@media (max-width: 1600px) {
  .header-1 .mega-menu-wrapper .header-main .header-left {
    gap: 100px;
  }
}
@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main .header-left {
    gap: 50px;
  }
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .header-left {
    gap: 10px;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-right {
  gap: 20px;
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .header-right {
    gap: 20px;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
  padding: 0 20px;
  color: #2B1E16;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: rgba(218, 161, 76, 0.15);
}
@media (max-width: 575px) {
  .header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
    display: none;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.header-1 .container-fluid {
  padding: 0px 175px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
/* .header-1.header-2 {
  background-color: var(--header);
}
.header-1.header-2 .mega-menu-wrapper .header-main {
  background-color: transparent;
  margin-top: 0;
  box-shadow: none;
}
.header-1.header-2 .mega-menu-wrapper .header-main .header-left .logo .header-logo-2 {
  display: none;
} */

 .header-left .logo .header-logo-2 img{
  width: 130px;
  clip-path: polygon(5% 0, 95% 0, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0 90%, 0 10%);
}


.sidebar__toggle {
  cursor: pointer;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: rgba(218, 161, 76, 0.15);
  cursor: pointer;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-1 .header-main {
  margin-top: 0;
  box-shadow: none;
}

.sticky.header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
  color: var(--white);
}
.sticky.header-3 {
  background-color: var(--white);
}
.sticky.header-3 .mega-menu-wrapper .header-main .header-left .logo .header-logo {
  display: none;
}
.sticky.header-3 .mega-menu-wrapper .header-main .header-left .logo .header-logo-2 {
  display: block;
}
.sticky.header-3 .mega-menu-wrapper .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-3 .mega-menu-wrapper .header-main .header-right .search-icon {
  background: var(--header);
  color: var(--white);
}
.sticky.header-3 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
  background: var(--header);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}


@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 80% 100%, 70% 90%, 29% 90%, 20% 100%, 0 100%);
}

.breadcrumb-wrapper h1{
  color: #fff;
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background:linear-gradient(82deg, transparent, #00000066, #00000026);
}
.breadcrumb-wrapper .page-heading {
  padding: 230px 0px 460px;
  text-align: center;
  position: relative;
}
/*@media (max-width: 1199px) {*/
/*  .breadcrumb-wrapper .page-heading {*/
/*    padding: 180px 0 100px;*/
/*  }*/
/*}*/
/*@media (max-width: 991px) {*/
/*  .breadcrumb-wrapper .page-heading {*/
/*    padding:140px 40px 80px;*/
/*  }*/
/*}*/
.breadcrumb-wrapper .page-heading h2 {
  font-size: 64px;
  font-weight: 600;
  color: var(--white);
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 50px;
  }
    .breadcrumb-wrapper .page-heading{
      padding: 230px 0px 230px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 35px;
  }
  .breadcrumb-wrapper .page-heading{
      padding: 160px 0px 120px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  font-weight: 500;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  font-weight: 500;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li.color {
  color: var(--theme);
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.pt-80 {
  padding-top: 80px;
}

.ml-50 {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.array-button {
  display: flex;
  align-items: center;
  gap: 20px;
}
.array-button .array-prev {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: transparent;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--border);
}
.array-button .array-prev:hover {
  background-color: var(--white);
  color: var(--header);
}
.array-button .array-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: transparent;
  color: var(--theme);
  border: 1px solid var(--theme);
  transition: all 0.4s ease-in-out;
}
.array-button .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}

pagination default .mt-10 {
  margin-top: 10px;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

.mt-60 {
  margin-top: 55px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center 60%;
}

.nice-select {
  background-color: transparent;
  border: transparent;
  float: initial;
  overflow: initial;
  height: initial;
  padding: 0;
  display: inline-flex;
  align-items: center;
  line-height: 150%;
  width: 100%;
  border: none;
}
.nice-select:focus, .nice-select:hover {
  border-color: transparent;
}
.nice-select::after {
  height: 8px;
  width: 8px;
  right: -25px;
  top: 15px;
  border-color: var(--header);
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
}
.nice-select .list {
  width: initial;
  background-color: var(--theme);
  box-shadow: none;
  overflow: initial;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  width: 100%;
  top: 100%;
  padding: 0;
  max-height: 50vh;
  overflow-x: auto;
  right: -50px;
}
.nice-select .list::-webkit-scrollbar {
  width: 2px;
  opacity: 1;
  display: block;
}
.nice-select .list::-webkit-scrollbar-button, .nice-select .list::-webkit-scrollbar-thumb {
  background: var(--header);
}
.nice-select .option {
  background-color: transparent;
  font-size: 16px;
  line-height: 150%;
  padding: 4px 5px;
  min-height: initial;
  font-weight: 500;
}
.nice-select .option:hover, .nice-select .option:focus, .nice-select .option.selected.focus {
  background-color: transparent;
}
.nice-select .current {
  font-weight: 500;
  color: var(--header);
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--border);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 6 free";
  content: "\f062";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--theme);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--bg);
  color: var(--theme);
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}

.bor-bottom {
  border-bottom: 1px solid var(--border-2);
}

.pt-100 {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.margin-top-10 {
  margin-top: -10px;
}

.margin-top-7 {
  margin-top: -7px;
}

.margin-top-60 {
  margin-top: -65px;
}
@media (max-width: 1399px) {
  .margin-top-60 {
    margin-top: -25px;
  }
}
@media (max-width: 1199px) {
  .margin-top-60 {
    margin-top: -27px;
  }
}
@media (max-width: 991px) {
  .margin-top-60 {
    margin-top: -75px;
  }
}
@media (max-width: 767px) {
  .margin-top-60 {
    margin-top: -65px;
  }
}

.margin-bottom-18 {
  margin-bottom: -18px;
}
@media (max-width: 1199px) {
  .margin-bottom-18 {
    margin-bottom: -13px;
  }
}
@media (max-width: 991px) {
  .margin-bottom-18 {
    margin-bottom: -5px;
  }
}

.margin-bottom-8 {
  margin-bottom: -8px;
}
@media (max-width: 991px) {
  .margin-bottom-8 {
    margin-bottom: 0;
  }
}

.fz-24 {
  font-size: 24px !important;
}


.hero-2 {
  position: relative;
  z-index: 1;
  padding: 70px 0 80px;
  clip-path: polygon(0 90%, 0 0, 100% 0, 100% 90%, 50% 100%);
  background: url(/asset/img/bgicons/cir-flow.png), linear-gradient(0deg, #ffe57a, transparent);
  background-size: 460px;
}

.hero-2 .hero-top {
  display: flex;
  align-items: center;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-top {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.hero-2 .hero-top .circle-image {
  background: var(--theme);
  display: inline-block;
  border-radius: 100px;
  padding: 10px;
  position: relative;
}
.hero-2 .hero-top .circle-image img {
  animation: cir36 10s linear infinite;
}
.hero-2 .hero-top .circle-image .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: var(--theme);
  border-radius: 100px;
  font-size: 18px;
}
.hero-2 .hero-top .circle-image .icon img {
  animation: none;
}
.hero-2 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-2 .hero-image.style-2 {
  height: 518px;
  background-color: #fff;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-image.style-2 {
    height: initial;
  }
}
.hero-2 .hero-image.style-2 img {
  object-fit: cover;
  box-shadow: none !important ;
}



.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}
.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scroll 150s linear infinite;
  cursor: pointer;
}
.scrolling-wrap .comm .cmn-textslide {
  font-size: 35px;
    margin: 0 20px;
  font-weight: 500;
      text-transform: uppercase;

  /*  */
  line-height: normal;
}
.scrolling-wrap .comm .text-custom-storke {
  -webkit-text-stroke: 1px var(--text);
  -webkit-text-fill-color: transparent;
}
.scrolling-wrap:hover .comm {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  color: var(--header);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid #14141429 !important;
  border: none;
  
  text-transform: uppercase;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: theme-color-2;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.news-box-items {
  background-color: var(--white);
  margin-top: 30px;
}
.news-box-items .news-image {
  position: relative;
  overflow: hidden;
}
.news-box-items .news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}
.news-box-items .news-image .date {
  background-color: var(--theme);
  padding: 12px 20px;
  position: absolute;
  top: 11%;
  left: 7%;
}
.news-box-items .news-image .date li {
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
}
.news-box-items .news-image .date li i {
  color: var(--white);
  margin-right: 5px;
}
.news-box-items .news-content {
  padding: 20px 20px;
}
.news-box-items .news-content .post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.news-box-items .news-content .post-meta li {
  font-size: 14px;
}
.news-box-items .news-content .post-meta li i {
  margin-right: 8px;
  color: var(--theme);
}
.news-box-items .news-content .post-meta li.rotate i {
  transform: rotate(90deg);
}
.news-box-items .news-content h4 a {
  color: var(--header);
}
.news-box-items .news-content h4 a:hover {
  color: var(--theme);
}
.news-box-items .news-content .link-btn {
  display: inline-block;
  margin-top: 10px;
}
.news-box-items:hover .news-image img {
  transform: scale(1.4);
}

.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-image {
  overflow: hidden;
  position: relative;
}
.news-card-items .news-image::after {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.news-card-items .news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}
.news-card-items .news-content {
  margin-top: 20px;
}
.news-card-items .news-content h6 {
  color: var(--theme);
  margin-bottom: 15px;
}
.news-card-items .news-content h4 a {
  color: var(--header);
}
.news-card-items .news-content h4 a:hover {
  color: var(--theme);
}
.news-card-items:hover .news-image img {
  transform: scale(1.4);
}
.news-card-items:hover .news-image::after {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}

.news-card-items-2 {
  margin-top: 30px;
}
.news-card-items-2 .news-image {
  position: relative;
  overflow: hidden;
}
.news-card-items-2 .news-image img {
  width: 100%;
  height: 100%;
}
.news-card-items-2 .news-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.news-card-items-2 .news-content-meta-bar {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
.news-card-items-2 .news-content-meta-bar .news-content-meta {
  width: 38px;
  height: 134px;
  position: relative;
  border: 1px solid var(--border);
}
.news-card-items-2 .news-content-meta-bar .news-content-meta span cite {
  position: absolute;
  width: 128px;
  left: -48px;
  bottom: 68px;
  transform: rotate(-90deg);
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
}
.news-card-items-2 .news-content-meta-bar .news-content .news-post {
  margin-bottom: 10px;
}
.news-card-items-2 .news-content-meta-bar .news-content .news-post li {
  font-weight: 300;
  color: var(--text);
}
.news-card-items-2 .news-content-meta-bar .news-content .news-post li i {
  color: var(--theme);
  margin-right: 12px;
}
.news-card-items-2 .news-content-meta-bar .news-content h4 {
  margin-bottom: 20px;
}
.news-card-items-2 .news-content-meta-bar .news-content h4 a {
  color: var(--header);
}
.news-card-items-2 .news-content-meta-bar .news-content h4 a:hover {
  color: var(--theme);
}
.news-card-items-2:hover .news-image::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.news-classic-wrapper .news-classic-items {
  position: relative;
}
.news-classic-wrapper .news-classic-items .classic-image {
  position: relative;
  margin-bottom: 20px;
}
.news-classic-wrapper .news-classic-items .classic-image img {
  width: 100%;
  height: 100%;
}
.news-classic-wrapper .news-classic-items .classic-image .video-btn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme);
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 22px;
}
.news-classic-wrapper .news-classic-items .classic-image .video-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--white);
  border-radius: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}
.news-classic-wrapper .news-classic-items .classic-image .video-btn::after {
  position: absolute;
  content: "";
  border: 1px solid var(--white);
  border-radius: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .news-classic-wrapper .news-classic-items .classic-image .video-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .news-classic-wrapper .news-classic-items .array-button {
    display: none;
  }
}
.news-classic-wrapper .news-classic-items .array-button .array-prev {
  background-color: var(--theme);
  color: var(--white);
  position: absolute;
  left: 7%;
  top: 28%;
  border: 1px solid transparent;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.news-classic-wrapper .news-classic-items .array-button .array-prev:hover {
  background-color: var(--header);
  color: var(--white);
  border: 1px solid transparent;
}
.news-classic-wrapper .news-classic-items .array-button .array-next {
  background-color: var(--white);
  color: var(--theme);
  position: absolute;
  right: 1%;
  top: 28%;
  border: 1px solid transparent;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.news-classic-wrapper .news-classic-items .array-button .array-next:hover {
  background-color: var(--header);
  color: var(--white);
  border: 1px solid transparent;
}
.news-classic-wrapper .news-classic-items .classic-content .post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.news-classic-wrapper .news-classic-items .classic-content .post-meta li {
  font-size: 14px;
}
.news-classic-wrapper .news-classic-items .classic-content .post-meta li i {
  margin-right: 8px;
  color: var(--theme);
}
.news-classic-wrapper .news-classic-items .classic-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .news-classic-wrapper .news-classic-items .classic-content h3 {
    font-size: 20px;
  }
}
.news-classic-wrapper .news-classic-items .classic-content p {
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.main-sidebar .single-sidebar-widget {
  padding: 30px 40px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
}
@media (max-width: 1399px) {
  .main-sidebar .single-sidebar-widget {
    padding: 30px;
  }
}
.main-sidebar .single-sidebar-widget h3 {
  padding-bottom: 15px;
}
.main-sidebar .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sidebar .single-sidebar-widget .search-widget form input {
  background-color: var(--bg);
  font-size: 16px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
}
.main-sidebar .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--bg);
  color: var(--header);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  font-size: 16px;
  line-height: 1;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
  color: var(--theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
  color: var(--theme);
}
.main-sidebar .single-sidebar-widget.style-2 {
  border: none;
  background-color: var(--bg);
}
.main-sidebar .single-sidebar-widget .recent-content ul {
  margin-bottom: 8px;
}
.main-sidebar .single-sidebar-widget .recent-content ul li i {
  color: var(--theme);
  margin-right: 10px;
}
.main-sidebar .single-sidebar-widget .recent-content:not(:last-child) {
  margin-bottom: 10px;
}
.main-sidebar .single-sidebar-widget .recent-content h4 {
  font-size: 20px;
}
@media (max-width: 1399px) {
  .main-sidebar .single-sidebar-widget .recent-content h4 {
    font-size: 16px;
  }
}
.main-sidebar .single-sidebar-widget .recent-content h4 a {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .recent-content h4 a:hover {
  color: var(--theme);
}
.main-sidebar .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 12px 14px;
  line-height: 1;
  font-size: 16px;
  font-weight: 100;
  background: transparent;
  margin-right: 12px;
  text-transform: capitalize;
  margin-bottom: 20px;
  border-radius: 0;
  border: 1px solid var(--border);
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
@media (max-width: 1399px) {
  .main-sidebar .single-sidebar-widget .tagcloud a {
    margin-right: 8px;
    padding: 12px 10px;
  }
}
.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sidebar .single-sidebar-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.back-to-top {
  border: 2px solid #813300;
  border-radius: 0px;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 90px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--header);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}



.portfolio-wrapper {
  margin-top: 60px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .portfolio-wrapper {
    margin-bottom: 0;
  }
}
.portfolio-wrapper .portfolio-content {
  display: flex;
  align-items: center;
  gap: 125px;
  border-top: 1px solid var(--border);
  padding: 30px 0;
}
@media (max-width: 1399px) {
  .portfolio-wrapper .portfolio-content {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .portfolio-wrapper .portfolio-content {
    gap: 30px;
    padding: 25px 0;
    flex-wrap: wrap;
  }
}
.portfolio-wrapper .portfolio-content:last-child {
  border-bottom: 1px solid var(--border);
}
.portfolio-wrapper .portfolio-content .content {
  position: relative;
  overflow: hidden;
}
.portfolio-wrapper .portfolio-content .content::before {
  position: absolute;
  top: 6px;
  left: 0px;
  content: "";
  width: 90px;
  height: 16px;
  background-size: cover;
  background-image: url(../img/arrow.svg);
  left: -100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.portfolio-wrapper .portfolio-content .content p {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.portfolio-wrapper .portfolio-content h3 a {
  color: var(--header);
}
.portfolio-wrapper .portfolio-content h3 a:hover {
  color: var(--theme);
}
.portfolio-wrapper .portfolio-content:hover .content::before {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.portfolio-wrapper .portfolio-content:hover .content p {
  padding-left: 110px;
}
.portfolio-wrapper .portfolio-image {
  position: relative;
  z-index: 1;
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .portfolio-wrapper .portfolio-image {
    margin-left: 25px;
  }
}
@media (max-width: 1199px) {
  .portfolio-wrapper .portfolio-image {
    margin-left: 0;
  }
}
.portfolio-wrapper .portfolio-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  opacity: 0.25;
  z-index: -1;
  top: 5%;
  left: 17%;
  right: 0px;
  width: 87%;
}
@media (max-width: 1199px) {
  .portfolio-wrapper .portfolio-image::before {
    width: 100%;
    left: 0;
  }
}
.portfolio-wrapper .portfolio-image img {
  width: 100%;
  height: 100%;
}

.project-wrapper .main-box {
  padding: 0;
  gap: 30px;
  display: flex;
  align-items: center;
  margin-left: -44%;
}
@media (max-width: 1600px) {
  .project-wrapper .main-box {
    margin-left: -10%;
  }
}
@media (max-width: 1399px) {
  .project-wrapper .main-box {
    margin-left: 0;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .project-wrapper .main-box {
    flex-wrap: wrap;
  }
}
.project-wrapper .main-box .box {
  background-image: url(../img/project/01.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  width: 370px !important;
  height: 590px;
  position: relative;
  overflow: hidden;
  list-style: none;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .project-wrapper .main-box .box {
    width: 546px !important;
    height: 350px;
  }
}
@media (max-width: 767px) {
  .project-wrapper .main-box .box {
    width: 450px !important;
    height: 300px;
  }
}
.project-wrapper .main-box .box .project-content {
  position: absolute;
  bottom: -100px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 20px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .project-wrapper .main-box .box .project-content {
    flex-wrap: wrap;
    gap: 20px;
    left: 20px;
  }
}
.project-wrapper .main-box .box .project-content .text span {
  font-weight: 200;
  color: var(--white);
  background-color: var(--theme);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.project-wrapper .main-box .box .project-content .text h5 {
  font-weight: 600;
}
.project-wrapper .main-box .box .project-content .text h5 a {
  color: var(--header);
}
.project-wrapper .main-box .box .project-content .text h5 a:hover {
  color: var(--theme);
}
.project-wrapper .main-box .box .project-content .border {
  width: 60px;
  height: 60px;
  border: 2px solid var(--theme);
  position: relative;
  line-height: 60px;
  text-align: center;
}
.project-wrapper .main-box .box .project-content .border .icon {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  transform: translate(-50%, 10px);
  position: absolute;
}
.project-wrapper .main-box .box.bg-1 {
  background-image: url(../img/project/02.jpg);
}
.project-wrapper .main-box .box.active {
  width: 546px !important;
}
@media (max-width: 991px) {
  .project-wrapper .main-box .box.active {
    width: 450px !important;
  }
}
.project-wrapper .main-box .box.active .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
@media (max-width: 1399px) {
  .project-wrapper .main-box .box.active .project-content {
    bottom: 20px;
  }
}
.project-wrapper .project-slide-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .project-wrapper .project-slide-content {
    margin-left: 0px;
  }
}
.project-wrapper .project-slide-content .content p {
  color: var(--white);
}
.project-wrapper .project-slide-content .arrow-item {
  margin-bottom: 48px;
  margin-top: 40px;
}
.project-wrapper .project-slide-content .arrow-item .array-button {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1399px) {
  .project-wrapper .project-slide-content .arrow-item .array-button {
    display: none;
  }
}
.project-wrapper .project-slide-content .arrow-item .array-button .array-prev, .project-wrapper .project-slide-content .arrow-item .array-button .array-next {
  background-color: transparent;
  box-shadow: none;
  border: none;
  border: none;
  border-radius: 0;
  font-size: 18px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--theme);
  text-align: center;
}
.project-wrapper .project-slide-content .arrow-item .array-button .array-prev {
  color: var(--white);
}
.project-wrapper .project-slide-content .arrow-item .array-button .array-prev:hover {
  color: var(--white);
}
.project-wrapper .project-slide-content .arrow-item .array-button .array-next {
  color: var(--theme);
  background-color: var(--white);
}

.project-card-items .project-image {
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  display: block;
}
.project-card-items .project-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/3;
  object-fit: cover;
}
.project-card-items .project-image::after {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.project-card-items .project-image .project-content {
  padding: 10px 20px  ;
  background: var(--white);
  position: absolute;
  bottom: -30px;
  left: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.project-card-items .project-image .project-content h4 {
  
    font-size: 20px;
  color: var(--header);
}
.project-card-items .project-image .project-content h4 a {
  color: var(--header);
}
.project-card-items .project-image .project-content h4 a:hover {
  color: var(--theme);
}

.project-card-items{
  position: relative;
}

.project-card-items .icon {
      border: 2px solid #fff;
    position: absolute;
    transform: rotate(-45deg);
right: 20px;
    top: 20px;
    width: 45px;
    height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  text-align: center;
  font-size: 18px;
}
.project-card-items:hover .project-image::after {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}
.project-card-items:hover .project-image .project-content {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

/* .project-section{
  padding:50px 0 80px;
} */

/* .project-section .container-fluid {
  padding: 0 90px;
}
@media (max-width: 1899px) {
  .project-section .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1600px) {
  .project-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .project-section .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .project-section .container-fluid {
    padding: 0 15px;
  }
} */

.project-wrap .left-content .project-image {
  margin-top: 40px;
}
.project-wrap .left-content .project-image img {
  width: 100%;
  height: 100%;
}
.project-wrap .project-content .project-image {
  margin-top: 30px;
}
.project-wrap .project-content .project-image img {
  width: 100%;
  height: 100%;
}

.project-details-wrapper .details-image {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .details-image {
    margin-bottom: 30px;
  }
}
.project-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .project-details-content .main-sidebars {
  margin-top: -135px;
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-details-content .main-sidebars {
    margin-top: 0;
    margin-left: 0;
  }
}
.project-details-wrapper .project-details-content .main-sidebars .single-sidebar-widget .project-catagory {
  background-color: var(--bg);
  padding: 30px;
  border-radius: 5px;
}
.project-details-wrapper .project-details-content .main-sidebars .single-sidebar-widget .project-catagory h3 {
  margin-bottom: 5px;
}
.project-details-wrapper .project-details-content .main-sidebars .single-sidebar-widget .project-catagory ul {
  margin-top: 20px;
}
.project-details-wrapper .project-details-content .main-sidebars .single-sidebar-widget .project-catagory ul li {
  font-weight: 600;
  color: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 14px 20px;
  font-size: 20px;
}
.project-details-wrapper .project-details-content .main-sidebars .single-sidebar-widget .project-catagory ul li:not(:last-child) {
  margin-bottom: 15px;
}
.project-details-wrapper .project-details-content .main-sidebars .single-sidebar-widget .project-catagory ul li span {
  font-weight: 100;
  font-size: 16px;
  color: #54595F;
}
.project-details-wrapper .project-details-content .main-sidebars .single-sidebar-widget .project-catagory .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.project-details-wrapper .project-details-content .main-sidebars .single-sidebar-widget .project-catagory .social-icon a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: var(--black);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.project-details-wrapper .project-details-content .main-sidebars .single-sidebar-widget .project-catagory .social-icon a:hover {
  background-color: var(--theme);
}
.project-details-wrapper .project-details-content .sidebar-content {
  margin-left: 15px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-details-content .sidebar-content {
    margin-left: 0;
  }
}
.project-details-wrapper .project-details-content .sidebar-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-content .sidebar-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.project-details-wrapper .project-details-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.project-details-wrapper .project-details-content .list-items {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-content .list-items {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.project-details-wrapper .project-details-content .list-items .details-list li i {
  color: var(--theme);
  margin-right: 15px;
}
.project-details-wrapper .project-details-content .list-items .details-list li:not(:last-child) {
  margin-bottom: 30px;
}

.porfolio-wrapper-2 {
  margin-top: 30px;
}
.porfolio-wrapper-2 .portfolio-image {
  margin-left: -277px;
}
@media (max-width: 1199px) {
  .porfolio-wrapper-2 .portfolio-image {
    margin-left: 0;
  }
}
.porfolio-wrapper-2 .portfolio-image img {
  width: 100%;
  height: 100%;
}
.porfolio-wrapper-2 .content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .porfolio-wrapper-2 .content {
    margin-left: 0;
  }
}
.porfolio-wrapper-2 .content p {
  margin-bottom: 30px;
}
.porfolio-wrapper-2 .portfolio-image-2 {
  margin-right: -280px;
}
@media (max-width: 1199px) {
  .porfolio-wrapper-2 .portfolio-image-2 {
    margin-right: 0;
  }
}
.porfolio-wrapper-2 .portfolio-image-2 img {
  width: 100%;
  height: 100%;
}

.portfolio-section {
  position: relative;
}
.portfolio-section .star-shape {
  position: absolute;
  bottom: 26%;
  left: 50%;
}
@media (max-width: 1199px) {
  .portfolio-section .star-shape {
    display: none;
  }
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -7px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title h6 {
  color: var(--header);
  display: inline-block;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 18px;
  position: relative;
  line-height: 1;
  margin-bottom: 20px;
}
.section-title h6 span {
  height: 1px;
  width: 30px;
  display: inline-block;
  background: var(--header);
  transform: translateY(-5px);
}
.section-title h6 span.style-2 {
  background-color: var(--white);
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background: var(--bg);
}

.footer-bg {
  background: var(--header);
}

.body-bg {
  background-color: var(--white);
}

.section-padding-1 {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media (max-width: 1199px) {
  .section-padding-1 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .section-padding-1 {
    padding-bottom: 80px;
  }
}

.section-padding {
  padding:80px 0;
}


.card-area {
  padding: 15px;
  position: relative;
  width: 630px;
  margin-bottom: -40px;
}
@media (max-width: 1399px) {
  .card-area {
    width: initial;
  }
}
.card-area .testimonial-card-items {
  position: relative;
  background: #fff;
  border: 1px solid var(--theme);
  padding: 40px 40px 80px;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .card-area .testimonial-card-items {
    border: 1px solid var(--theme);
    padding: 30px 30px 80px;
  }
}
.card-area .testimonial-card-items::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--theme);
  right: -29px;
  bottom: -25px;
  width: 90px;
  height: 1px;
}
@media (max-width: 1399px) {
  .card-area .testimonial-card-items::before {
    display: none;
  }
}
.card-area .testimonial-card-items::after {
  position: absolute;
  content: "";
  right: -28px;
  bottom: -24px;
  background: var(--theme);
  width: 1px;
  height: 100px;
}
@media (max-width: 1399px) {
  .card-area .testimonial-card-items::after {
    display: none;
  }
}
.card-area .testimonial-card-items.style-2::before {
  display: none;
}
.card-area .testimonial-card-items.style-2::after {
  display: none;
}
.card-area .testimonial-card-items .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--white);
  border-radius: 100px;
  position: absolute;
  top: -20%;
}
@media (max-width: 575px) {
  .card-area .testimonial-card-items .icon {
    top: -12%;
  }
}
.card-area .testimonial-card-items .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 17%;
  bottom: -11%;
  padding: 0 24px;
  background: var(--white);
}
@media (max-width: 1199px) {
  .card-area .testimonial-card-items .client-info {
    bottom: -6%;
  }
}

.card-area .testimonial-card-items .client-info .client-image {
  border: 1px solid var(--theme);
  border-radius: 100px;
  
  overflow: hidden;
}
.card-area .testimonial-card-items .client-info .client-image img {
  width: 75px;
}
.card-area .testimonial-card-items .client-info .content p {
    font-weight: 400;
} 

.testimonial-section {
  position: relative;
  background: linear-gradient(0deg, #ffffff00, #ffffffc4), url(/asset/img/bgicons/flower.png);
  background-size: 195px;
}
.testimonial-section .mask-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .testimonial-section .mask-shape {
    display: none;
  }
}

.testimonial-wrapper {
  border-bottom: 1px solid var(--border);
}
.testimonial-wrapper .testimonial-content .flowe-shape {
  margin-top: 70px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-content .flowe-shape {
    margin-top: 40px;
  }
}
.testimonial-wrapper .testimonial-card-items {
  padding: 40px 40px 60px 85px;
  background-color: var(--bg);
  position: relative;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-card-items {
    padding: 30px;
    margin-bottom: 30px;
  }
}
.testimonial-wrapper .testimonial-card-items .client-image {
  position: absolute;
  left: -29px;
  top: -28px;
  border: 1px solid var(--theme);
  border-radius: 50px;
  padding: 8px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-card-items .client-image {
    display: none;
  }
}
.testimonial-wrapper .testimonial-card-items.style-2 {
  left: 100px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-card-items.style-2 {
    left: 0;
  }
}
.testimonial-wrapper .testimonial-card-items .test-content .info-items {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-wrapper .testimonial-card-items .test-content .info-items .text span {
  font-weight: 300;
}

.testimonial-section .section-title-area .array-button {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .testimonial-section .section-title-area .array-button {
    display: none;
  }
}
.testimonial-section .array-button {
  display: none;
}
@media (max-width: 1399px) {
  .testimonial-section .array-button {
    margin-top: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

h1 , h2 , h3 {
    font-size: 45px;
    font-weight: 600;
    line-height: 50px;
    font-family: "Alkatra", system-ui;
    color: #813300;
}

.fixed-foot{
  position: fixed;
  width: 100%;
  /* background-color: #4F200D; */
  background:#813300;
  bottom: 0;
  z-index: 999;
}

.contfoot >*{
  padding: 8px 5px;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-cont{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.leftside , .rightside , .socialfollow{
  display: flex;
  gap: 12px;
  align-items: center;
}

.socialfollow li a img{
  width: 40px;
  background-color: #fff;
  padding: 2px;
  border-radius: 100px;
}

.single-footer-widget .socialfollow li a img{
  width: 50px;
}

.marquee-section{
  background: #fbf58d;  
  padding: 5px;
}
.nameo a{
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    display: block;
    text-align: center;
}

.project-image,
.hero-section .hero-image img{
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.butns{
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
      flex-wrap: wrap;
}

.meet-business{
  display: block;
}

.child .meet-business{
  background-color: #fbf58d;
  color: #000;
}

.child .meet-business:hover{
  color: #fff;
}

.parent .meet-business{
  background-color: #813300;
}

.page-content{
  float: left;
  width:40%;
  margin: 0 20px 20px 0;
  position: relative;
  z-index: 1;
}

.page-content img{
  width: 100%;
}

.wtsp-btn {
    background: linear-gradient(115deg, #25d366 80%, #009b3a 20%);
    width: 100%;
    display: block;
    margin:1rem auto 0;
    padding: .6rem 1rem;
    font-weight: 600;
    font-size: 22px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: 2s bomp infinite ease;
    transition:0.9s;
}

@keyframes bomp{
    0% {
    transform: scale(0.9);
}
50% {
    transform: scale(1);
}

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

.wtsp-btn:active,
.wtsp-btn:hover{
    margin: 1rem auto 0;
    width: 65%;
    background:linear-gradient(115deg, #25d366 80%, #25d366 20%);
    border-radius: 50px;
    color: #ffffff;
    transition:0.9s;
}

/* founder-section */
.founder-section .container{
	padding:0;
  background:linear-gradient(-90deg, #813300 80%, #fde998 30%)
}

.founder-image{
position: relative;
    z-index: 1;
    float: left;
    width: 32%;
    margin: -100px 30px 0 0;
    padding: 10px;
    outline: 2px solid #fde998;
}

.founder-image .content .text p:last-child {
	margin: 0;
}

.inner-fs p{
  color: #fff;
  font-weight: 400;
}
.inner-fs{
	position: relative;
	padding: 3rem;
	border-bottom: 3px solid #fff;
}

.inner-fs h4{
	font-size: 26px;
    font-weight: 600;
    color: #fde998;
}

.inner-fs h6{
	font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.submenu.meet-expand{
    width: 1200px;
    left: 50%;
    padding: 20px;
    transform: translateX(-35%) !important;
}

.submenu.meet-expand .subsub{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding:15px 0 25px;
  column-gap: 20px;
  row-gap: normal;
}

.submenu.meet-expand li a{
  font-size: 15px !important;
  font-weight: 400 !important;
  padding: 5px !important;
}

.submenu.meet-expand .heasname  a{
  font-size: 20px;
  font-weight: 500;
  color: #813300;
}

.p-specification {
    font-size: 20px;
    padding: 10px;
    font-weight: 600;
    background-color: #813300;
    color: #fff;
}

.brdr i{
  font-size: 25px;
  margin-top: -5px;
  margin-bottom: 5px;
  color: #813300;
}

.compimage img{
  padding: 0 0 2rem 0;
  margin: auto;
}
.header-btn-call,
.formobile{
  display: none !important;
}

.header-btn .theme-btn{
  font-size: 17px;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -22px;
}


.phone {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: fixed;
  bottom:90px;
  left:40px;
  z-index:17;
  border:none !important;
}

.img-fluid{
  max-width: 100%;
    height: auto;
}


.circle1,.circle2 {
height: 50px;
    width: 50px;
  border-radius: 50%;
  position: fixed;
  animation: scaling 2s var(--an) infinite;
 bottom:90px;
  left:40px;
  z-index: 16;
}
@keyframes scaling {
  0% {
    transform: scale(1);
    background-color:var(--green);
  }
  100% {
    transform: scale(2);
    background-color: rgba(245, 0, 182, 0);
  }
}

@keyframes phone {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
.circle1 {
  animation-delay: 0s;
}
.circle2 {
  animation-delay: 1s;
}

.footerpay img{
  height: 45px;
}

.footerpay b{
  font-size: 17px;
}

.innertwo-image{
  overflow: hidden;
  position: relative;
  transition: .5s;
  padding: 10px;
  background-color: #fff7;
  border: 1px dashed #ddd;
}

.innertwo-image img{
  transition: .5s;
}


.innertwo-image:hover img{
  transform: scale(1.1);
  transition: .5s;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #813300;
    border: 2px solid #fff;
    padding: 22px;
    background-size: 70% 70%;
}


@media(max-width:1399px){
  .rightside div{
    display: none;
  }
}

@media (max-width: 1299px) {
  .header-1 .mega-menu-wrapper .header-main .header-right .header-btn {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header-btn-call,.formobile{
    display: block  !important;
  }
  .forscreen{
  display: none;
}
}

@media(max-width:991px){
  .main-menu{
    display: none;
  }
.rightside {
  display: none;
}
#carouselExampleIndicators{
  margin-top: 4rem;
}
.founder-image{
  width: 100%;
  float: none;
  margin: -100px 0 30px 0;
}

.page-content{
      float: none;
    width: 100%;
    margin: 0 0 20px 0;
}

.founder-section .container{
  background: linear-gradient(0deg, #813300 80%, #fde998 30%);
}
.contact-wrapper-3 .contact-content{
  margin: 20px;
}
}


@media(max-width:767px){
.leftside div:last-child,
.leftside div:nth-last-child(2){
  display: none;
}
h1, h2, h3 {
  line-height: 40px;
  font-size: 30px;
}
.scrolling-wrap .comm .cmn-textslide {
    font-size: 25px;
}
.scrolling-wrap .comm{
  animation: scroll 150s linear infinite;
}
.hero-2{
          margin-bottom: 70px;
  clip-path: none
}
.offcanvas__info {
        width: 100%;
  }

  .leftside, .rightside, .socialfollow {
    gap: 5px;
  }
  .contfoot >*{ font-size: 15px; }
  .foot-cont{justify-content: center;}
  .back-to-top{
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
    .header-btn-call .theme-btn {
      padding: 14px 15px;
    }
  .sidebar__toggle{
        width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .header-left .logo .header-logo-2 img{
        width: 110px;

  }
  .phone,.circle1,.circle2,.back-to-top{
    bottom: 210px;
  }
  .instagram-banner{clip-path: none;}
  .choose-us-section-2{
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;

    
  }
    .carousel-control-next, .carousel-control-prev {
    width: 12% !important;
}

.carousel-control-prev-icon, .carousel-control-next-icon {

    padding: 17px;
    background-size: 60% 50%;
}
}

@media(max-width:576px){
      h1, h2, h3 {
        line-height: 40px;
        font-size: 25px;
    }
    .choose-us-image .counter-text{
      display: none;
    }
}


