/*
Theme Name: Artic 
Author: pixel-drop

Author URI: https://themeforest.net/user/pixel-drop
/portfolio
Description: "Architecture & interior Html Template
Service Html Template 
Version: 1.0.0
*/
/*CSS Table Of Content Ends Here*/
/*
--------------------------------------------------------------
[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

--------------------------------------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #F4A046;
  --header: #111;
  --text: #687179;
  --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: 22px;
  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-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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);
}

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

h1 {
  font-size: 110px;
  font-weight: 600;
  line-height: 104%;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 48px;
  line-height: 125%;
  font-weight: 600;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 167%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

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;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

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

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

.about-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper {
    margin-bottom: 0;
  }
}
.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: -7%;
  left: 6%;
  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: 9%;
  left: 11%;
  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;
}
.about-section .bottom-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .about-section .bottom-shape {
    display: none;
  }
}

.about-section-2 {
  position: relative;
}
.about-section-2 .flower-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .about-section-2 .flower-shape {
    display: none;
  }
}
.about-section-2::before {
  position: absolute;
  content: "";
  border: 1px solid var(--header);
  opacity: 0.2;
  width: 100px;
  height: 100px;
  right: 13%;
  top: 9%;
}
@media (max-width: 1399px) {
  .about-section-2::before {
    display: none;
  }
}
.about-section-2::after {
  position: absolute;
  content: "";
  border: 1px solid var(--header);
  opacity: 0.2;
  width: 60px;
  height: 60px;
  right: 9%;
  top: 11%;
}
@media (max-width: 1399px) {
  .about-section-2::after {
    display: none;
  }
}

.about-wraper-2 .about-content {
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .about-wraper-2 .about-content {
    margin-bottom: -35px;
  }
}
@media (max-width: 1199px) {
  .about-wraper-2 .about-content {
    margin-bottom: 0;
  }
}
.about-wraper-2 .about-content .client-area {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wraper-2 .about-content .client-area {
    flex-wrap: wrap;
  }
}
.about-wraper-2 .about-content .client-area .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 1px solid var(--border);
  padding-left: 15px;
}
@media (max-width: 1199px) {
  .about-wraper-2 .about-content .client-area .client-info {
    border-left: 1px none;
    padding-left: 0;
  }
}
.about-wraper-2 .about-content .circle-items {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-top: 30px;
  justify-content: end;
}
@media (max-width: 1199px) {
  .about-wraper-2 .about-content .circle-items {
    gap: 30px;
    justify-content: initial;
    flex-wrap: wrap;
  }
}
.about-wraper-2 .about-content .circle-items .circle-image {
  background: var(--theme);
  display: inline-block;
  border-radius: 100px;
  padding: 10px;
  position: relative;
}
.about-wraper-2 .about-content .circle-items .circle-image img {
  animation: cir36 10s linear infinite;
}
.about-wraper-2 .about-content .circle-items .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;
}
.about-wraper-2 .about-content .circle-items .circle-image .icon img {
  animation: none;
}
.about-wraper-2 .about-content .circle-items .about-list li {
  font-weight: 300;
  color: var(--header);
  font-size: 16px;
}
.about-wraper-2 .about-content .circle-items .about-list li:not(:last-child) {
  margin-bottom: 5px;
}
.about-wraper-2 .about-content .circle-items .about-list li i {
  color: var(--theme);
  margin-right: 10px;
}
.about-wraper-2 .about-image-items {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .about-wraper-2 .about-image-items {
    margin-left: 0px;
  }
}
.about-wraper-2 .about-image-items .about-image {
  position: relative;
}
@media (max-width: 991px) {
  .about-wraper-2 .about-image-items .about-image img {
    width: 100%;
    height: 100%;
  }
}
.about-wraper-2 .about-image-items .about-image .about-image-2 {
  position: absolute;
  right: 0;
  bottom: -36%;
}
@media (max-width: 991px) {
  .about-wraper-2 .about-image-items .about-image .about-image-2 {
    bottom: 0;
    left: 0;
    right: initial;
  }
}
@media (max-width: 767px) {
  .about-wraper-2 .about-image-items .about-image .about-image-2 {
    max-width: 200px;
  }
}
.about-wraper-2 .about-image-items .about-image .counter-text {
  background-color: var(--white);
  padding: 20px;
  position: absolute;
  left: 12%;
  bottom: -33%;
}
@media (max-width: 991px) {
  .about-wraper-2 .about-image-items .about-image .counter-text {
    bottom: initial;
    left: 0;
    top: 0;
  }
}
.about-wraper-2 .about-image-items .about-image .counter-text h2 {
  font-weight: 663;
  color: var(--theme);
}

.about-wrapper-3 .about-image {
  margin-left: -12px;
  max-width: 425px;
  position: relative;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-image {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .about-image .about-image-2 {
  position: absolute;
  right: -25%;
  bottom: -7%;
  max-width: 306px;
}
@media (max-width: 1600px) {
  .about-wrapper-3 .about-image .about-image-2 {
    bottom: -35%;
  }
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-image .about-image-2 {
    right: initial;
    left: 0;
    bottom: 0;
    max-width: 250px;
  }
}
.about-wrapper-3 .about-content {
  margin-left: 100px;
  margin-top: 45px;
}
@media (max-width: 1600px) {
  .about-wrapper-3 .about-content {
    margin-top: 0;
  }
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
    margin-top: 0;
  }
}
.about-wrapper-3 .about-content .section-title h2 img {
  border-radius: 100px;
  margin-right: 10px;
}
@media (max-width: 1600px) {
  .about-wrapper-3 .about-content p {
    font-size: 14px;
    line-height: 170%;
  }
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content p {
    font-size: 12px;
  }
}
.about-wrapper-3 .about-content .about-list-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-list-item {
    flex-wrap: wrap;
  }
}
.about-wrapper-3 .about-content .about-list-item .circle-image {
  background: var(--theme);
  display: inline-block;
  border-radius: 100px;
  padding: 10px;
  position: relative;
}
.about-wrapper-3 .about-content .about-list-item .circle-image img {
  animation: cir36 10s linear infinite;
}
.about-wrapper-3 .about-content .about-list-item .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;
}
.about-wrapper-3 .about-content .about-list-item .circle-image .icon img {
  animation: none;
}
.about-wrapper-3 .about-content .about-list-item .about-list li {
  font-weight: 300;
  color: var(--header);
  font-size: 16px;
  font-family: "Roboto Flex", sans-serif;
}
.about-wrapper-3 .about-content .about-list-item .about-list li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-3 .about-content .about-list-item .about-list li i {
  color: var(--theme);
  margin-right: 10px;
}
.about-wrapper-3 .right-image {
  margin-right: 60px;
  max-width: 522px;
  height: 657px;
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .right-image {
    margin-right: 0;
    height: initial;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .right-image {
    height: 300px;
  }
}
.about-wrapper-3 .right-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  margin-top: -45px;
}
.about-wrapper-3 .scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.about-wrapper-3 .scrolling-wrap .comm .cmn-textslide {
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--header);
  font-family: "Roboto Flex", sans-serif;
  display: flex;
  align-items: center;
  gap: 30px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #687179;
  color: transparent;
  transition: all 0.4s ease-in-out;
}
.about-wrapper-3 .scrolling-wrap .comm .cmn-textslide:hover {
  color: var(--header);
}
.about-wrapper-3 .scrolling-wrap:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .scrolling-wrap .comm {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-3 .scrolling-wrap {
    gap: 14px;
  }
  .about-wrapper-3 .scrolling-wrap .comm {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .scrolling-wrap .comm {
    gap: 12px;
  }
}

@-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: 120px 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: 80px;
  height: 80px;
  line-height: 95px;
  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: 40px;
  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-area.style-2 {
  display: block;
  padding: 120px 0 120px;
  border-bottom: 1px solid rgba(230, 230, 230, 0.25);
  position: relative;
}
.contact-info-area.style-2::before {
  position: absolute;
  content: "";
  left: 20%;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 308px;
  background-color: rgba(230, 230, 230, 0.25);
}
@media (max-width: 1199px) {
  .contact-info-area.style-2::before {
    display: none;
  }
}
@media (max-width: 1199px) {
  .contact-info-area.style-2 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .contact-info-area.style-2 {
    padding: 80px 0;
  }
}
.contact-info-area.style-2 .content span {
  font-weight: 600;
  color: var(--white);
}
.contact-info-area.style-2 .content h3 {
  color: var(--white);
}
.contact-info-area.style-2 .contact-call-btn {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1199px) {
  .contact-info-area.style-2 .contact-call-btn {
    flex-wrap: wrap;
  }
}
.contact-info-area.style-2 .contact-call-btn .contact-input input {
  width: 307px;
  border: none;
  background-color: var(--white);
  position: relative;
  padding: 16px 20px;
  color: var(--text);
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}
.contact-info-area.style-2 .contact-call-btn .contact-input input::placeholder {
  color: var(--text);
}
.contact-info-area.style-2 .contact-call-btn .theme-btn {
  width: 168px;
}

.contact-info-wrapper {
  background-color: var(--bg);
}
.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 h3 {
  font-size: 28px;
}
.contact-info-wrapper .contact-info-content .contact-info {
  margin-top: 50px;
}
@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: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--header);
  border: 1px solid #E6E6E6;
}
.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 h6 {
  color: var(--header);
}
.contact-info-wrapper .contact-info-content .contact-info .contact-items .content h6 a {
  color: var(--header);
}
@media (max-width: 575px) {
  .contact-info-wrapper .contact-info-content .contact-info .contact-items .content h6 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;
  padding-left: 0;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .contact-wrapper-3 .contact-content {
    padding-right: 0;
    padding-top: 0;
  }
}
@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 textarea {
  width: 100%;
  outline: none;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--text);
  padding: 16px 20px;
  font-weight: 100;
}
@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: 115px;
  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 {
  margin-top: 30px;
}
.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 {
  background-color: var(--white);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
}
.counter-area .counter-box-items .content h2 {
  font-weight: 663;
  color: var(--header);
}
.counter-area .counter-box-items .content h6 {
  color: #54595F;
}

.instagram-wrapper {
  margin: 0 -75px;
}
@media (max-width: 1199px) {
  .instagram-wrapper {
    margin: 0 15px;
  }
}
.instagram-wrapper .instagram-banner-items .banner-image {
  position: relative;
}
@media (max-width: 767px) {
  .instagram-wrapper .instagram-banner-items .banner-image {
    height: 450px;
  }
  .instagram-wrapper .instagram-banner-items .banner-image img {
    object-fit: cover;
  }
}
@media (max-width: 575px) {
  .instagram-wrapper .instagram-banner-items .banner-image {
    height: 380px;
  }
}
.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(244, 160, 70);
  opacity: 0.25;
  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: var(--theme);
  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: 0;
    bottom: 0;
  }
}
.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: 100;
  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: 100;
}
.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: rgba(255, 255, 255, 0.8);
}
.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;
}
.choose-us-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #111;
  height: 80%;
}
@media (max-width: 1199px) {
  .choose-us-section-2::before {
    height: 100%;
  }
}

.choose-us-wrapper-3 .choose-us-image img {
  width: 100%;
  height: 100%;
}
.choose-us-wrapper-3 .choose-us-content {
  margin-left: 25px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper-3 .choose-us-content .choose-us-list-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content .choose-us-list-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.choose-us-wrapper-3 .choose-us-content .choose-us-list-item .choose-us-list li {
  color: var(--header);
}
.choose-us-wrapper-3 .choose-us-content .choose-us-list-item .choose-us-list li i {
  color: var(--theme);
  margin-right: 10px;
}
.choose-us-wrapper-3 .choose-us-content .choose-us-list-item .choose-us-list li:not(:last-child) {
  margin-bottom: 20px;
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper {
    margin-top: 40px;
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar {
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar {
    gap: 30px;
  }
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar.style-gap {
  gap: 0px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar.style-gap {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar.style-gap {
    gap: 30px;
  }
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .content h3 {
  display: block;
  margin-bottom: 0;
  font-size: 30px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .content h3 {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .content br {
    display: block;
  }
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
  position: relative;
  height: 120px;
  width: 200px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
    width: 120px;
  }
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
  position: absolute;
  height: 120px;
  width: 120px;
  border-radius: 50%;
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
  position: absolute;
  font-size: 28px;
  line-height: 100px;
  height: 100px;
  width: 100px;
  left: 9px;
  top: 9px;
  font-weight: 663;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg);
  color: var(--header);
  font-family: "Roboto Flex", sans-serif;
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
  background-color: var(--bg) !important;
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
  clip: rect(0 187px 50px 0);
  background-color: var(--theme) !important;
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
  clip: rect(0 187px 100px 0);
  opacity: 1;
  background-color: var(--bg) !important;
}
.choose-us-wrapper-3 .choose-us-content .skills-content-items .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
  clip: rect(0 190px 60px 0);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0;
  background-color: var(--theme) !important;
}

.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);
  font-family: "Roboto Flex", sans-serif;
  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: 70px 0 100px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}
.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: rgba(255, 255, 255, 0.8);
  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: 20px;
}
.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: #0D0D0D;
}
.footer-bottom.style-2 {
  background: #010101;
}
.footer-bottom.style-3 {
  background: var(--bg);
}
.footer-bottom.style-3 .footer-wrapper {
  border-top: 1px solid rgba(17, 17, 17, 0.25);
  padding: 30px 0;
}
.footer-bottom.style-3 .footer-wrapper p {
  color: var(--header);
}
.footer-bottom.style-3 .footer-wrapper .bottom-list li {
  color: var(--header);
}
.footer-bottom .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
@media (max-width: 1199px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}
.footer-bottom .footer-wrapper p {
  color: var(--white);
}
.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 .shape-1 {
  position: absolute;
  left: 0;
  bottom: 12%;
}
@media (max-width: 1399px) {
  .footer-section .shape-1 {
    display: none;
  }
}
.footer-section .shape-2 {
  position: absolute;
  right: 0;
  bottom: 15%;
}
@media (max-width: 1399px) {
  .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: 30px 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: 16px;
  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 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: 10px 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;
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .header-right .header-btn {
    display: none;
  }
}
.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-1.header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
  color: var(--white);
}
.header-1.header-2 .mega-menu-wrapper .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-1.header-2 .mega-menu-wrapper .header-main .header-right .search-icon {
  background: var(--white);
}
.header-1.header-2 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
  background-color: var(--white);
  cursor: pointer;
}
.header-1.header-3 {
  background-color: #111;
}
.header-1.header-3 .mega-menu-wrapper .header-main {
  background-color: transparent;
  margin-top: 0;
}
.header-1.header-3 .mega-menu-wrapper .header-main .header-left .logo .header-logo-2 {
  display: none;
}
@media (max-width: 1199px) {
  .header-1.header-3 .mega-menu-wrapper .header-main .header-left .logo .header-logo-2 {
    display: block;
  }
}
@media (max-width: 1399px) {
  .header-1.header-3 .mega-menu-wrapper .header-main .header-left .logo .header-logo-2 {
    display: none;
  }
}
.header-1.header-3 .mega-menu-wrapper .header-main .main-menu ul li a {
  color: var(--white);
}
.header-1.header-3 .mega-menu-wrapper .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-1.header-3 .mega-menu-wrapper .header-main .header-right .search-icon {
  background: rgba(248, 248, 248, 0.05);
  color: var(--white);
}
.header-1.header-3 .mega-menu-wrapper .header-main .header-right .sidebar__toggle {
  background: rgba(248, 248, 248, 0.05);
  cursor: pointer;
}
.header-1.header-3 .mega-menu-wrapper .header-main .header-right .sidebar__toggle img {
  filter: brightness(0) invert(1);
}

.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-1 .header-main .main-menu ul li {
  padding: 20px 0;
}
.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 {
  margin-top: 20px;
}
.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: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(17, 17, 17, 0.6);
}
.breadcrumb-wrapper .page-heading {
  padding: 230px 0px 160px;
  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 0 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;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 35px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  font-weight: 300;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
}
.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;
}

.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-1 {
  position: relative;
  z-index: 1;
  padding: 150px 0 300px;
}
@media (max-width: 1199px) {
  .hero-1 {
    padding: 150px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 120px 0 70px;
  }
}
.hero-1 .hero-content {
  padding: 80px 60px;
  background-color: var(--white);
  position: relative;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content {
    padding: 30px 30px;
  }
}
.hero-1 .hero-content .radius-image {
  position: absolute;
  top: 17%;
  right: 15%;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content .radius-image {
    position: static;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content .radius-image {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content .radius-image {
    margin-bottom: 30px;
  }
}
.hero-1 .hero-content .radius-image img {
  border-radius: 100px;
}
.hero-1 .hero-content .tree-image {
  position: absolute;
  bottom: 9%;
  right: 3%;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content .tree-image {
    display: none;
  }
}
.hero-1 .hero-content h1 {
  color: var(--header);
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 br {
    display: none;
  }
}
.hero-1 .hero-content h1 span {
  font-weight: 600;
  display: inline-block;
}
.hero-1 .hero-content h1 span i {
  height: 3px;
  width: 125px;
  display: inline-block;
  background: var(--header);
  transform: translateY(-38px);
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 span i {
    width: initial;
    transform: initial;
    display: none;
  }
}
.hero-1 .hero-content .hero-btn {
  margin-top: 70px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content .hero-btn {
    margin-top: 30px;
  }
}
.hero-1 .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  max-width: 889px;
  height: 920px;
}
.hero-1 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  top: 7%;
  left: 35%;
  z-index: -1;
}
@media (max-width: 1600px) {
  .hero-1 .hero-image::before {
    top: 5%;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-image::before {
    display: none;
  }
}
.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-1 .container-fluid {
  padding: 0 175px;
}
@media (max-width: 1600px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .hero-1 .container-fluid {
    padding: 0 15px;
  }
}
.hero-1 .text {
  font-size: 200px;
  color: var(--theme);
  font-weight: 300;
  position: absolute;
  bottom: 70px;
  left: 0;
  opacity: 0.1;
}
@media (max-width: 1600px) {
  .hero-1 .text {
    font-size: 140px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .text {
    display: none;
  }
}
.hero-1 .text-2 {
  font-size: 90px;
  font-weight: 100;
  color: var(--theme);
  opacity: 0.5;
  left: 155px;
  bottom: 6px;
  position: absolute;
}
@media (max-width: 1600px) {
  .hero-1 .text-2 {
    font-size: 60px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .text-2 {
    display: none;
  }
}

.hero-2 {
  position: relative;
  z-index: 1;
  padding: 190px 0 130px;
}
@media (max-width: 1399px) {
  .hero-2 {
    padding: 160px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-2 {
    padding: 140px 0 80px;
  }
}
.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;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image.style-2 {
    height: initial;
  }
}
.hero-2 .hero-image.style-2 img {
  object-fit: cover;
}

.hero-3 {
  position: relative;
  padding: 200px 0 120px;
}
@media (max-width: 1399px) {
  .hero-3 {
    padding: 150px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-3 {
    padding: 150px 0 80px;
  }
}
.hero-3 .content .text {
  font-size: 150px;
  font-weight: 800;
  -webkit-text-stroke: 1px rgb(112, 112, 112);
  -webkit-text-fill-color: transparent;
  text-align: center;
}
@media (max-width: 991px) {
  .hero-3 .content .text {
    font-size: 100px;
    text-align: left;
  }
}
@media (max-width: 575px) {
  .hero-3 .content .text {
    font-size: 70px;
  }
}
.hero-3 .hero-content {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content {
    margin-bottom: 30px;
  }
}
.hero-3 .hero-content .title {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content .title {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hero-3 .hero-content .title-2 {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content .title-2 {
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 0;
    margin-top: 30px;
  }
}
.hero-3 .hero-content .title-2 .author-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-3 .hero-content .title-2 .author-info .counter-text p {
  font-size: 14px;
  font-weight: 100;
}
.hero-3 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-3 .slider-box {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 20px;
  background-color: var(--bg);
  position: absolute;
  right: 20%;
  bottom: 120px;
  z-index: 999;
}
@media (max-width: 1600px) {
  .hero-3 .slider-box {
    right: 10%;
    bottom: 120px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .slider-box {
    right: 10%;
    bottom: 100px;
  }
}
@media (max-width: 991px) {
  .hero-3 .slider-box {
    display: none;
  }
}
.hero-3 .slider-box .array-prev {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.hero-3 .slider-box .array-prev:hover {
  background-color: var(--header);
}
.hero-3 .slider-box .swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background: var(--theme);
  opacity: 1;
  border-radius: 10px;
}
.hero-3 .slider-box .swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.hero-3 .slider-box .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}
.hero-3 .slider-box .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--theme);
  content: "";
}
.hero-3 .slider-box .array-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.hero-3 .slider-box .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.hero-3 .star {
  position: absolute;
  top: 300px;
  left: 95px;
}
@media (max-width: 1600px) {
  .hero-3 .star {
    display: none;
  }
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}
.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  cursor: pointer;
}
.scrolling-wrap .comm .cmn-textslide {
  font-size: 48px;
  font-weight: 500;
  font-family: "Roboto Flex", sans-serif;
  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 #141414 !important;
  border: none;
  font-family: "Roboto Flex", sans-serif;
  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);
}

.news-details-wrapper .news-deatils-content .news-details-post .details-image {
  position: relative;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-deatils-content .news-details-post .details-image {
    margin-top: 30px;
  }
}
.news-details-wrapper .news-deatils-content .news-details-post .details-image img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-deatils-content .news-details-post .details-image .post-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--theme);
  padding: 17px 50px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-deatils-content .news-details-post .details-image .post-meta {
    flex-wrap: wrap;
    gap: 10px;
    padding: 17px 25px;
    top: 0;
    right: initial;
    left: 0;
  }
}
@media (max-width: 575px) {
  .news-details-wrapper .news-deatils-content .news-details-post .details-image .post-meta {
    right: 0;
  }
}
.news-details-wrapper .news-deatils-content .news-details-post .details-image .post-meta li {
  font-size: 14px;
  color: var(--white);
}
.news-details-wrapper .news-deatils-content .news-details-post .details-image .post-meta li i {
  margin-right: 8px;
  color: var(--white);
}
.news-details-wrapper .news-deatils-content .news-details-post .news-sidebar {
  display: flex;
  align-items: center;
  gap: 30px;
  border-right: 4px solid var(--theme);
  border-left: 4px solid var(--theme);
  background: #FEF9F4;
  padding: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-deatils-content .news-details-post .news-sidebar {
    margin-bottom: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
.news-details-wrapper .news-deatils-content .news-details-post .news-sidebar .sidebar-content h4 {
  font-size: 20px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.news-details-wrapper .news-deatils-content .news-details-post .news-sidebar .sidebar-content h4::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 78px;
  height: 2px;
  background-color: var(--theme);
}
.news-details-wrapper .news-deatils-content .news-details-post .thumb img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-deatils-content .news-details-post h3 {
  font-size: 28px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-deatils-content .news-details-post h3 {
    font-size: 24px;
  }
}
.news-details-wrapper .news-deatils-content .news-details-post .details-list {
  margin-top: 20px;
}
.news-details-wrapper .news-deatils-content .news-details-post .details-list li {
  font-size: 20px;
  font-weight: 400;
  color: var(--header);
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-deatils-content .news-details-post .details-list li {
    font-size: 16px;
  }
}
.news-details-wrapper .news-deatils-content .news-details-post .details-list li i {
  color: var(--theme);
  margin-right: 15px;
}
.news-details-wrapper .news-deatils-content .news-details-post .details-list li:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-deatils-content .news-details-post .details-list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.news-details-wrapper .news-deatils-content .tagcloud-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  border-top: 1px solid #EFE1E1;
  padding-top: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-deatils-content .tagcloud-items {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-wrapper .news-deatils-content .tagcloud-items .tagcloud span {
  font-weight: 600;
  font-size: 28px;
  color: var(--header);
  margin-right: 8px;
}
.news-details-wrapper .news-deatils-content .tagcloud-items .tagcloud a {
  display: inline-block;
  border-radius: 5px;
  padding: 12px 20px;
  line-height: 1;
  color: var(--header);
  border: 1px solid #E6E6E6;
  margin-right: 8px;
  font-weight: 100;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .news-details-wrapper .news-deatils-content .tagcloud-items .tagcloud a {
    padding: 10px 7px;
    margin-bottom: 10px;
  }
}
.news-details-wrapper .news-deatils-content .tagcloud-items .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid #EFE1E1;
}
.news-details-wrapper .news-deatils-content .tagcloud-items .social-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 9;
}
.news-details-wrapper .news-deatils-content .tagcloud-items .social-icon a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  text-align: center;
  background-color: var(--bg);
  color: var(--header);
}
.news-details-wrapper .news-deatils-content .tagcloud-items .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-details-wrapper .news-deatils-content .previous-button {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #D9D9D9;
  padding-bottom: 20px;
  padding: 30px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .news-details-wrapper .news-deatils-content .previous-button {
    flex-wrap: wrap;
  }
}
.news-details-wrapper .news-deatils-content .previous-button .preview-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}
.news-details-wrapper .news-deatils-content .previous-button .preview-buttons span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--white);
  display: inline-block;
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--theme);
}
.news-details-wrapper .news-deatils-content .previous-button .preview-buttons span i {
  font-size: 18px;
  margin-left: 5px;
  color: var(--theme);
}
.news-details-wrapper .news-deatils-content .previous-button .preview-buttons span:hover {
  background-color: var(--theme);
}
.news-details-wrapper .news-deatils-content .previous-button .preview-buttons span:hover i {
  color: var(--white);
}
.news-details-wrapper .news-deatils-content .previous-button .preview-buttons h4 {
  font-size: 20px;
}
.news-details-wrapper .news-deatils-content .previous-button .preview-buttons h4 a {
  display: inline-block;
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.news-details-wrapper .news-deatils-content .previous-button .preview-buttons h4 a:hover {
  color: var(--theme);
}
.news-details-wrapper .news-deatils-content .previous-button .preview-buttons.style-2 {
  text-align: right;
  position: relative;
}
.news-details-wrapper .news-deatils-content .previous-button .preview-buttons.style-2::before {
  position: absolute;
  content: "";
  background-color: var(--theme);
  width: 1px;
  height: 50px;
  top: 10px;
  left: -100%;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-deatils-content .previous-button .preview-buttons.style-2::before {
    display: none;
  }
}
.news-details-wrapper .news-deatils-content .previous-button .icon {
  font-size: 32px;
  color: var(--theme);
}
.news-details-wrapper .news-deatils-content .comment-area {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .news-details-wrapper .news-deatils-content .comment-area {
    flex-wrap: wrap;
  }
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-deatils-content .comment-area .image {
    flex-basis: 100%;
  }
  .news-details-wrapper .news-deatils-content .comment-area .image img {
    width: 100%;
    height: 100%;
  }
}
.news-details-wrapper .news-deatils-content .comment-area .content {
  background-color: var(--bg);
  padding: 30px;
}
.news-details-wrapper .news-deatils-content .comment-area .content h4 {
  margin-bottom: 10px;
}
.news-details-wrapper .news-deatils-content .comment-area .content .author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-details-wrapper .news-deatils-content .comment-area .content .author span {
  margin-top: 30px;
  display: inline-block;
  margin-top: 20px;
}
.news-details-wrapper .news-deatils-content .comment-area .content .author .reply {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 300;
  background-color: var(--white);
  line-height: 1;
  color: var(--header);
}
.news-details-wrapper .news-deatils-content .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .news-details-wrapper .news-deatils-content .comment-form-wrap h3 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .news-details-wrapper .news-deatils-content .comment-form-wrap h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.news-details-wrapper .news-deatils-content .comment-form-wrap .form-clt input, .news-details-wrapper .news-deatils-content .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--bg);
  padding: 16px 20px;
  font-weight: 100;
}
.news-details-wrapper .news-deatils-content .comment-form-wrap .form-clt input::placeholder, .news-details-wrapper .news-deatils-content .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-wrapper .news-deatils-content .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}
.news-details-wrapper .news-deatils-content .comment-form-wrap .form-clt .nice-select {
  background-color: var(--bg);
  padding: 16px 20px;
}
.news-details-wrapper .news-deatils-content .comment-form-wrap .form-clt .nice-select span {
  font-size: 16px;
  color: var(--text);
  font-weight: 100;
  text-transform: capitalize;
}
.news-details-wrapper .news-deatils-content .comment-form-wrap .form-clt .nice-select::after {
  border-right: 1px solid var(--header);
  border-bottom: 1px solid var(--header);
  right: 25px;
  top: 28px;
}
.news-details-wrapper .news-deatils-content .comment-form-wrap .form-clt .nice-select .list {
  right: 0;
  background-color: var(--bg);
}
.news-details-wrapper .news-deatils-content .comment-form-wrap .form-clt .nice-select .option {
  border: none;
  padding: 6px 15px;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.9);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Roboto Flex", sans-serif, "Plus Jakarta Sans", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--bg);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Roboto Flex", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--black);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.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;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--header);
  border-bottom: 2px solid var(--header);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--header);
}

input.main-search-input::placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.back-to-top {
  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: 30px;
  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);
}

.pricing-card-items {
  border: 1px solid var(--border);
  padding: 40px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .pricing-card-items {
    padding: 30px;
  }
}
.pricing-card-items .pricing-header {
  display: flex;
  justify-content: space-between;
}
.pricing-card-items .pricing-header h2 {
  font-weight: 663;
}
.pricing-card-items .pricing-header h2 span {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}
.pricing-card-items .pricing-header h3 {
  font-size: 28px;
}
@media (max-width: 1399px) {
  .pricing-card-items .pricing-header h3 {
    font-size: 25px;
  }
}
.pricing-card-items .pricing-list {
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 25px;
}
.pricing-card-items .pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing-card-items .pricing-list li i {
  margin-right: 15px;
  color: var(--theme);
}
.pricing-card-items .theme-btn {
  display: inline-block;
  width: 100%;
  margin-top: 40px;
  text-align: center;
  background-color: var(--bg);
  color: var(--header);
}
.pricing-card-items .theme-btn::before {
  background-color: var(--theme);
  color: var(--white);
}
.pricing-card-items .theme-btn::after {
  background-color: var(--theme);
  color: var(--white);
}
.pricing-card-items .theme-btn:hover {
  color: var(--white);
}
.pricing-card-items:hover {
  transform: translateY(-10px);
}

.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(../../assets/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(../../assets/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(../../assets/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%;
}
.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: 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 h3 {
  color: var(--header);
}
.project-card-items .project-image .project-content h3 a {
  color: var(--header);
}
.project-card-items .project-image .project-content h3 a:hover {
  color: var(--theme);
}
.project-card-items .project-image .project-content span {
  font-weight: 300;
}
.project-card-items .project-image .project-content .icon {
  position: absolute;
  right: 15px;
  top: -26px;
  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 .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: 300;
  text-transform: capitalize;
  font-size: 16px;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  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: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 1199px) {
  .service-wrapper {
    margin-top: 30px;
  }
}
.service-wrapper .service-card-items {
  margin-top: 30px;
  padding: 30px 30px;
  background-color: var(--white);
  position: relative;
}
.service-wrapper .service-card-items .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--theme);
  margin-bottom: 30px;
}
.service-wrapper .service-card-items .service-content h3 {
  margin-bottom: 20px;
}
.service-wrapper .service-card-items .service-content h3 a {
  color: var(--header);
  position: relative;
  z-index: 999;
}
.service-wrapper .service-card-items .service-content h3 a:hover {
  color: var(--theme);
}
.service-wrapper .service-card-items .service-content .link-btn {
  display: inline-block;
  margin-top: 20px;
}

.service-section-2 {
  position: relative;
}
.service-section-2 .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .service-section-2 .right-shape {
    display: none;
  }
}
.service-section-2::before {
  position: absolute;
  content: "";
  border: 1px solid var(--header);
  opacity: 0.2;
  width: 100px;
  height: 100px;
  left: 6%;
  top: 9%;
}
@media (max-width: 1399px) {
  .service-section-2::before {
    display: none;
  }
}
.service-section-2::after {
  position: absolute;
  content: "";
  border: 1px solid var(--header);
  opacity: 0.2;
  width: 60px;
  height: 60px;
  left: 2%;
  top: 11%;
}
@media (max-width: 1399px) {
  .service-section-2::after {
    display: none;
  }
}

.service-main-box {
  margin-top: 30px;
}
.service-main-box .service-box-items {
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  padding: 25px;
  height: 100%;
}
.service-main-box .service-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  z-index: 3;
  transition: all 0.3s ease-out;
}
.service-main-box .service-box-items .service-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transition: all 0.1s ease-out;
}
.service-main-box .service-box-items .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.service-main-box .service-box-items .service-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.85);
}
.service-main-box .service-box-items .service-content {
  position: relative;
  z-index: 4;
}
.service-main-box .service-box-items .service-content .icon {
  margin-bottom: 30px;
  position: relative;
}
.service-main-box .service-box-items .service-content .icon::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #E6E6E6;
  width: 8%;
  top: -6px;
  left: -6px;
  z-index: -1;
  height: 52px;
}
.service-main-box .service-box-items .service-content h3 {
  transition: all 0.4s ease-in-out;
}
.service-main-box .service-box-items .service-content h3 a {
  color: var(--header);
}
.service-main-box .service-box-items .service-content p {
  transition: all 0.4s ease-in-out;
  margin-bottom: 0;
}
.service-main-box .service-box-items:hover {
  border: none;
}
.service-main-box .service-box-items:hover::before {
  transform: translate(100%, -100%);
}
.service-main-box .service-box-items:hover .service-image {
  opacity: 1;
}
.service-main-box .service-box-items:hover .service-content .icon {
  color: var(--white);
  filter: grayscale(100%) brightness(300%);
  transition: all 0.4s ease-in-out;
}
.service-main-box .service-box-items:hover .service-content .icon img {
  filter: grayscale(100%) brightness(300%);
}
.service-main-box .service-box-items:hover .service-content h3 a {
  color: var(--white);
}
.service-main-box .service-box-items:hover p {
  color: var(--white);
}
.service-main-box .theme-btn {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}
@media (max-width: 1199px) {
  .service-main-box .theme-btn {
    opacity: 1;
    visibility: visible;
  }
}
.service-main-box:hover .theme-btn {
  opacity: 1;
  visibility: visible;
}
.service-main-box:hover .service-content .icon::before {
  background: var(--theme);
}
.service-main-box.style-2 .service-box-items {
  border: none;
}
.service-main-box.style-2 .service-box-items::before {
  background: none;
}
.service-main-box.style-2 .service-box-items .service-content .icon::before {
  background: var(--theme);
}
.service-main-box.style-2 .service-box-items .service-content h3 a {
  color: var(--white);
}
.service-main-box.style-2 .service-box-items .service-content p {
  color: var(--white);
}
.service-main-box.style-2 .theme-btn {
  opacity: 1;
  visibility: visible;
}

.service-details-wrapper .main-sidebar .single-sidebar-widgett {
  margin-bottom: 40px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li {
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
  gap: 24px;
  padding: 18px 30px;
  background-color: var(--bg);
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li {
    font-size: 16px;
    padding: 18px 22px;
  }
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li i {
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--theme);
  color: var(--white);
  font-size: 12px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li a {
  color: var(--header);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li:hover {
  background-color: var(--theme);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li:hover a {
  color: var(--white);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li:hover i {
  background-color: var(--white);
  color: var(--theme);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li.active {
  background-color: var(--theme);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li.active a {
  color: var(--white);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .widget-categories ul li.active i {
  background-color: var(--white);
  color: var(--theme);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image {
  height: 332px;
  position: relative;
}
@media (max-width: 1399px) {
  .service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image {
    height: initial;
  }
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.7;
  background-color: var(--header);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image .contact-text {
  position: relative;
  text-align: center;
  padding: 98px 100px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image .contact-text {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image .contact-text {
    padding: 40px 0;
  }
}
@media (max-width: 575px) {
  .service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image .contact-text {
    padding: 30px 0;
  }
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image .contact-text .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background-color: var(--theme);
  text-align: center;
  color: var(--white);
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image .contact-text span {
  font-weight: 100;
  margin-top: 30px;
  color: var(--white);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image .contact-text h3 {
  margin-top: 15px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .single-sidebar-image .contact-text h3 a {
  color: var(--white);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .download-service-doc .theme-btn {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 991px) {
  .service-details-wrapper .main-sidebar .single-sidebar-widgett .download-service-doc .theme-btn {
    font-size: 18px;
  }
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .download-service-doc .theme-btn.style-2 {
  text-align: left;
  background-color: var(--bg);
  color: var(--header);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .download-service-doc .theme-btn.style-2 i {
  font-size: 24px;
  margin-right: 15px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .main-sidebar .single-sidebar-widgett .download-service-doc .theme-btn.style-2 i {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .service-details-wrapper .main-sidebar .single-sidebar-widgett .download-service-doc .theme-btn.style-2 i {
    font-size: 18px;
  }
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .download-service-doc .theme-btn.style-2::before, .service-details-wrapper .main-sidebar .single-sidebar-widgett .download-service-doc .theme-btn.style-2::after {
  background-color: var(--theme);
}
.service-details-wrapper .main-sidebar .single-sidebar-widgett .download-service-doc .theme-btn.style-2:hover {
  color: var(--white);
}
.service-details-wrapper .service-details-items .service-image img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .service-details-items .details-content {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-items .details-content {
    margin-top: 30px;
  }
}
.service-details-wrapper .service-details-items .details-content h3 {
  font-size: 28px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-items .details-content h3 {
    font-size: 22px;
  }
}
.service-details-wrapper .service-details-items .details-content .list {
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-items .details-content .list {
    margin-bottom: 30px;
  }
}
.service-details-wrapper .service-details-items .details-content .list li {
  position: relative;
  padding-left: 25px;
}
.service-details-wrapper .service-details-items .details-content .list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  content: "";
  background-color: var(--theme);
}
.service-details-wrapper .service-details-items .details-content .list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-items .details-content h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.service-details-wrapper .service-details-items .details-content .list-items {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.service-details-wrapper .service-details-items .details-content .list-items .d-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.service-details-wrapper .service-details-items .details-content .list-items .d-list li:not(:last-child) {
  margin-bottom: 15px;
}
.service-details-wrapper .service-details-items .details-content .list-items .icon-box {
  padding: 30px 30px;
  text-align: center;
  background-color: var(--bg);
}
.service-details-wrapper .service-details-items .details-content .list-items .icon-box .icon {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-items .details-content .list-items .icon-box h4 {
  font-size: 20px;
  margin-bottom: 2px;
}

.service-wrapper-3 .service-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .service-wrapper-3 .service-items {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .service-wrapper-3 .service-items {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.service-wrapper-3 .service-items .service-image {
  max-width: 60px;
}
@media (max-width: 1199px) {
  .service-wrapper-3 .service-items .service-image {
    max-width: initial;
  }
}
@media (max-width: 991px) {
  .service-wrapper-3 .service-items .service-image {
    flex-basis: 100%;
    max-width: initial;
  }
  .service-wrapper-3 .service-items .service-image img {
    width: 100%;
    height: 100%;
  }
}
.service-wrapper-3 .service-items .service-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .service-wrapper-3 .service-items .service-content {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.service-wrapper-3 .service-items .service-content h2 {
  font-weight: 663;
}
@media (max-width: 1199px) {
  .service-wrapper-3 .service-items .service-content .content h3 {
    font-size: 20px;
  }
}
.service-wrapper-3 .service-items .service-content .content h3 a {
  color: var(--header);
}
.service-wrapper-3 .service-items .service-content .content h3 a:hover {
  color: var(--theme);
}

.team-wrapper {
  margin-top: 50px;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .team-wrapper {
    margin-bottom: 0;
  }
}
.team-wrapper .team-image-items img {
  width: 100%;
  height: 100%;
}
.team-wrapper .skill-feature-items {
  padding: 30px;
  background: var(--white);
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .team-wrapper .skill-feature-items {
    margin-left: 0;
  }
}
.team-wrapper .skill-feature-items h3 {
  margin-bottom: 5px;
}
.team-wrapper .skill-feature-items h6 {
  color: var(--text);
  margin-bottom: 30px;
}
.team-wrapper .skill-feature-items .skill-feature:not(:last-child) {
  margin-bottom: 20px;
}
.team-wrapper .skill-feature-items .skill-feature .box-title {
  font-family: "Roboto Flex", sans-serif;
}
.team-wrapper .skill-feature-items .skill-feature .progress-value {
  margin-bottom: 10px;
  color: var(--header);
  text-transform: capitalize;
}
.team-wrapper .skill-feature-items .skill-feature .progress {
  position: relative;
  height: 7px;
  background-color: var(--bg);
  border-radius: 0;
  overflow: visible;
  margin-top: 15px;
}
.team-wrapper .skill-feature-items .skill-feature .progress-bar {
  background-color: var(--theme);
  height: 7px;
  margin: 0;
  border-radius: inherit;
  overflow: visible;
  position: relative;
  margin-top: 0;
}
.team-wrapper .skill-feature-items .skill-feature .progress-value {
  position: absolute;
  top: -38px;
  right: -8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  font-family: "Roboto Flex", sans-serif;
}
.team-wrapper .skill-feature-items .counter-text {
  margin-top: 30px;
  border: 1px dashed var(--theme);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 322px;
}
.team-wrapper .skill-feature-items .counter-text h2 {
  font-weight: 663;
}
.team-wrapper .skill-feature-items .counter-text h5 {
  font-weight: 300;
}

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

.team-box-items {
  position: relative;
  margin-top: 30px;
}
.team-box-items .team-image {
  position: relative;
  z-index: 9;
}
.team-box-items .team-image img {
  width: 100%;
  height: 100%;
}
.team-box-items .team-image .social-profile {
  position: absolute;
  left: 0;
  bottom: 20px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: flex;
  overflow: hidden;
  align-items: center;
}
.team-box-items .team-image .social-profile ul {
  transform: translateX(-100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: flex;
}
.team-box-items .team-image .social-profile ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid var(--theme);
  margin-left: 10px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  color: var(--theme);
}
.team-box-items .team-image .social-profile ul li a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-box-items .team-image .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  display: inline-block;
  background: var(--white);
  color: var(--theme);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-box-items .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-box-items .team-content {
  text-align: center;
  margin-top: 25px;
}
.team-box-items .team-content h3 a {
  color: var(--header);
}
.team-box-items .team-content p {
  font-weight: 300;
}

.team-section {
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .team-section.style-2 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .team-section.style-2 {
    margin-top: 80px;
  }
}
.team-section .bottom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1600px) {
  .team-section .bottom-shape {
    display: none;
  }
}
.team-section .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .team-section .left-shape {
    display: none;
  }
}
.team-section .left-shape img {
  width: 100%;
  height: 100%;
}
.team-section .swiper-dot {
  margin-top: 50px;
  text-align: center;
}
.team-section .swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background: var(--theme);
  opacity: 1;
  border-radius: 10px;
}
.team-section .swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.team-section .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}
.team-section .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--theme);
  content: "";
}

.team-details-wrapper {
  border: 1px solid var(--border);
  padding: 20px;
}
.team-details-wrapper .team-details-image {
  max-width: 570px;
  height: 692px;
  position: relative;
  z-index: -1;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image {
    height: 550px;
    max-width: initial;
  }
}
@media (max-width: 767px) {
  .team-details-wrapper .team-details-image {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .team-details-wrapper .team-details-image {
    height: 350px;
  }
}
.team-details-wrapper .team-details-content {
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 60px 40px;
  margin-left: -100px;
  z-index: 9;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .team-details-wrapper .team-details-content {
    padding: 40px 30px;
  }
}
.team-details-wrapper .team-details-content .progress-wrap {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .progress-wrap {
    margin-bottom: 30px;
  }
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
  }
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .progress {
  background: #E6E6E6;
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
  border-radius: 5px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 10px;
  width: 0;
  border-radius: 5px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .style-four {
  animation: load4 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}
@keyframes load4 {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}

.team-contact-wrapper .contact-form-items h3 {
  margin-bottom: 20px;
}
.team-contact-wrapper .contact-form-items .form-clt {
  position: relative;
}
.team-contact-wrapper .contact-form-items .form-clt input, .team-contact-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--bg);
  border: none;
  color: var(--text);
  padding: 16px 30px;
  border-radius: 5px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .team-contact-wrapper .contact-form-items .form-clt input, .team-contact-wrapper .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .team-contact-wrapper .contact-form-items .form-clt input, .team-contact-wrapper .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}
.team-contact-wrapper .contact-form-items .form-clt input::placeholder, .team-contact-wrapper .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.team-contact-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 135px;
  resize: none;
}
.team-contact-wrapper .team-biography h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.team-contact-wrapper .team-biography .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.team-contact-wrapper .team-biography .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  text-align: center;
  color: var(--header);
  background-color: var(--bg);
}
.team-contact-wrapper .team-biography .contact-info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
}
.team-contact-wrapper .team-biography .contact-info-items .content h6 a {
  color: var(--text);
}
.team-contact-wrapper .team-biography .social-icon {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .team-contact-wrapper .team-biography .social-icon {
    margin-top: 20px;
  }
}
.team-contact-wrapper .team-biography .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);
}
.team-contact-wrapper .team-biography .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.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;
  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.style-2 {
  background: #F9F9F9;
}
.card-area .testimonial-card-items .client-info .client-image {
  border: 1px solid var(--theme);
  border-radius: 100px;
  padding: 6px;
}
.card-area .testimonial-card-items .client-info .client-image img {
  width: 60px;
}
.card-area .testimonial-card-items .client-info .content p {
  font-weight: 100;
}

.testimonial-section {
  position: relative;
}
.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-wrapper-2 .testimonial-content .testimonial-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-wrapper-2 .testimonial-content .testimonial-info .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--theme);
}
.testimonial-wrapper-2 .testimonial-content .testimonial-info .icon i {
  color: var(--white);
}
.testimonial-wrapper-2 .testimonial-content .testimonial-info .text span {
  color: var(--header);
  display: inline-block;
}
.testimonial-wrapper-2 .testimonial-content .testimonial-info .text h3 a {
  color: var(--header);
}
.testimonial-wrapper-2 .testimonial-box-items {
  text-align: center;
  padding: 40px 40px 0;
  position: relative;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-box-items {
    padding: 30px;
    margin-top: 30px;
  }
}
.testimonial-wrapper-2 .testimonial-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--border);
  height: 92%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-box-items::before {
    height: 100%;
  }
}
.testimonial-wrapper-2 .testimonial-box-items .test-area .icon {
  width: 60px;
  height: 60px;
  line-height: 75px;
  text-align: center;
  background: var(--theme);
  border-radius: 50px;
  position: relative;
  margin: 0 auto;
}
.testimonial-wrapper-2 .testimonial-box-items .test-area .icon i {
  color: var(--white);
  font-size: 35px;
}
.testimonial-wrapper-2 .testimonial-box-items .test-area .icon::before {
  position: absolute;
  top: 30px;
  left: 145%;
  content: "";
  height: 1px;
  width: 200px;
  background-color: var(--border);
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-box-items .test-area .icon::before {
    display: none;
  }
}
.testimonial-wrapper-2 .testimonial-box-items .test-area .icon::after {
  position: absolute;
  top: 30px;
  right: 145%;
  content: "";
  height: 1px;
  width: 200px;
  background-color: var(--border);
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-box-items .test-area .icon::after {
    display: none;
  }
}
.testimonial-wrapper-2 .testimonial-box-items .test-area .content {
  margin-top: 24px;
}
.testimonial-wrapper-2 .testimonial-box-items .test-area .content h6 {
  font-weight: 600;
  margin-top: 20px;
}
.testimonial-wrapper-2 .testimonial-box-items .test-area .content span {
  font-weight: 100;
  display: inline-block;
  margin-bottom: 15px;
}
.testimonial-wrapper-2 .testimonial-box-items .test-area .content .client-image {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-box-items .array-button {
    display: none;
  }
}
.testimonial-wrapper-2 .testimonial-box-items .array-button .array-prev {
  border: 1px solid var(--border);
  color: var(--header);
  position: absolute;
  left: 28%;
  bottom: 5px;
  background: var(--white);
  z-index: 99;
  position: absolute;
  left: 140px;
  bottom: 0px;
}
.testimonial-wrapper-2 .testimonial-box-items .array-button .array-next {
  border: 1px solid var(--border);
  color: var(--theme);
  background: var(--white);
  position: absolute;
  right: 140px;
  bottom: 0px;
  z-index: 99;
}

.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;
  }
}/*# sourceMappingURL=main.css.map */