@charset "UTF-8";
/*=================Scss Indexing=============
1.variables
2.typography
3.spacing
4.reset
5.forms
6.mixins
7.shortcode
8.animations
9.text-animation
10.sal
11.header
12.mobile-menu
13.button
14.nav
15.banner
16.swiper
17.funfacts
18.cta
19.about
20.common
21.service
22.projects
23.working-process
24.blog
25.blog-details
26.footer
27.search-input
28./side-bar
29.team
30.testimonials
31.faq
32.pricing
33.date-picker
34.time-picker
35.appoinment
36.awesome-feedback
37.contact
38.pre-loader.scss
39.back-to-top



==============================================  */
/* Default  */
@import url("https://fonts.googleapis.com/css2?family=Gantari:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --color-primary: #dd9528;
  --color-secondary: #d4761e;
  --color-body: #582b00;
  --color-heading-1: #ffffff;
  --color-title: #975e08;
  --color-heading-dark: #E8C361;
  --bg-dark-1: #2B2114;
  --color-white: #ffffff;
  --color-border: #A9863B;
  --border-width: 1px;
  --radius: 10px;
  --color-success: #3EB75E;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: 0.3s;
  --font-primary: "Gantari", serif;
  --font-secondary: "Inter", serif;
  --font-3: "fontawesome";
  --font-size-b1: 15px;
  --font-size-b2: 15px;
  --font-size-b3: 22px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

/* --- New class for even larger text --- */
.larger-paragraph {
    font-size: 1.9rem;
    line-height: 1.9;
}

.breadcrumb-area-inner .title {
    padding-left: 40px; /* You can change this value to add more or less space */
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: auto !important;
}

body {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Inter", serif;
  color: var(--color-body);
  font-weight: var(--p-regular);
  position: relative;
  overflow-x: hidden;
  margin: 0;
  background: #EFEBE7;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
  }
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.05;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
  font-family: "Gantari", serif;
  line-height: 1.4074;
  color: var(--color-heading-1);
}

h1 {
  font-size: var(--h1);
  line-height: 1.3;
  font-weight: 700;
}

h2 {
  font-size: var(--h2);
  line-height: 1.1;
}

h3 {
  font-size: var(--h3);
  line-height: 1.2;
}

h4 {
  font-size: var(--h4);
  line-height: 1.2;
}

h5 {
  font-size: var(--h5);
  line-height: 1.2;
}

h6 {
  font-size: var(--h6);
  line-height: 1.2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 20px;
  }
}
h1,
h2,
h3 {
  font-weight: var(--s-bold);
}

h4,
h5 {
  font-weight: var(--s-bold);
}

h6 {
  font-weight: var(--s-bold);
}

p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: var(--p-regular);
  color: var(--color-body);
  margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
p:last-child {
  margin-bottom: 0;
}

/*---------------------------
	List Style 
---------------------------*/
ul {
  padding-left: 18px;
}

ul {
  list-style: square;
  margin-bottom: 30px;
  padding-left: 20px;
}
ul li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--color-body);
}
ul li a {
  text-decoration: none;
  color: var(--color-gray);
}
ul li a:hover {
  color: var(--color-primary);
}

@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 1.3;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 479px) {
  h1 {
    font-size: 26px;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 36px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 479px) {
  h2 {
    font-size: 26px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 1199px) {
  h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 30px;
    line-height: 56px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 479px) {
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
}

/*=========================
    Section Separation 
==========================*/

.rts-section-gap {
  padding: 90px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap {
    padding: 60px 0;
  }
}

.rts-section-gapBottom {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapBottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapBottom {
    padding-bottom: 60px;
  }
}

.rts-section-gapTop {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapTop {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapTop {
    padding-top: 60px;
  }
}

.rts-section-gap2 {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap2 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap2 {
    padding: 60px 0;
  }
}

.rts-section-gap2Bottom {
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap2Bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap2Bottom {
    padding-bottom: 60px;
  }
}

.rts-section-gap2Top {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap2Top {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap2Top {
    padding-top: 60px;
  }
}

.rts-section-gap3 {
  padding: 150px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap3 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap3 {
    padding: 60px 0;
  }
}

.rts-section-gap3Bottom {
  padding-bottom: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap3Bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap3Bottom {
    padding-bottom: 60px;
  }
}

.rts-section-gap3Top {
  padding-top: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap3Top {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap3Top {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-finished-area-start.rts-section-gap.portfolio-bg_iamge.bg_image {
    background-position: left;
  }
}

.rts-section-gap {
  padding: 90px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap {
    padding: 60px 0;
  }
}

.rts-section-gapBottom {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapBottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapBottom {
    padding-bottom: 60px;
  }
}

.rts-section-gapTop {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapTop {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapTop {
    padding-top: 60px;
  }
}

.mt--30 {
  margin-top: 30px !important;
}

.pr--60 {
  padding-right: 60px !important;
}

.pl--80 {
  padding-left: 80px !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pr_md--10 {
    padding-right: 10px !important;
  }
  .pl_md--15 {
    padding-left: 15px !important;
  }
  .pt_md--25 {
    padding-top: 25px !important;
  }
  .pb_md--25 {
    padding-bottom: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .pr_sm--0 {
    padding-right: 0 !important;
  }
  .pl_sm--10 {
    padding-left: 10px !important;
  }
  .pb_sm--25 {
    padding-bottom: 25px !important;
  }
  .mt_sm--25 {
    margin-top: 25px !important;
  }
  .mb_sm--30 {
    margin-bottom: 30px !important;
  }
  .pr_sm--0 {
    padding-right: 0;
  }
}

.g-24 {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

header,
nav,
section {
  display: block;
}

video {
  display: inline-block;
}

a {
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: var(--color-primary);
}

a:focus {
  outline: none;
}

ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

nav ul {
  list-style: none;
  list-style-image: none;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

form {
  margin: 0;
}

button,
input,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

/* BlockQuote  */

/* ========= Forms Styles ========= */
input,
button,
textarea {
  background: transparent;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
}
input:focus, input:active, button:focus, button:active, textarea:focus, textarea:active {
  outline: none;
  border-color: var(--color-primary);
}

button,
[type=submit] {
  -webkit-appearance: button;
}

input {
  height: 40px;
  padding: 0 15px;
}

input[type=text],
textarea {
  font-size: var(--font-size-b2);
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 15px;
  outline: none;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius);
  /* -- Placeholder -- */
}
input[type=text]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--body-color);
}
input[type=text]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--body-color);
}
input[type=text]:focus,
textarea:focus {
  border-color: var(--color-primary);
}

/*==============================
 *  Utilities
=================================*/

iframe {
  width: 100%;
}

/*===========================
Background Image 
=============================*/
.bg_image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/*===================
Custom Row
======================*/

/*===========================
    Input Placeholder
=============================*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*=============================
	Overlay styles 
==============================*/

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

/*jump animation */

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
.reveal-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.reveal-item .reveal-animation {
  position: absolute;
  top: 0;
  width: 100%;
  height: 101%;
  background: var(--color-primary);
}

.reveal-item .reveal-animation::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-gray-400);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.reveal-animation.reveal-primary::before {
  background: #0c0c0a;
}

.reveal-animation.reveal-end::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

[data-aos=reveal-end] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

[data-aos=reveal-end] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* header  */

.header-custom {
  position: fixed !important;
  top: 0px;
  width: 100%;
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
  z-index: 999;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
}



header.header-three {
  position: absolute;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 17, 17, 0.01);
  backdrop-filter: blur(50px);
  padding-right: 95px;
}
@media only screen and (max-width: 767px) {
  header.header-three {
    padding-right: 15px;
  }
}
header.header-three .logo-area {
  width: 300px;

  padding: 46px 50px;
  border-radius: 0 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}



@media only screen and (max-width: 767px) {
  header.header-three .logo-area {
    width: 175px;
    padding: 23px;
    border-radius: 0 0 30px 0;
  }
}
header.header-three .nav-area {
  padding: 0;
  background: rgba(16, 16, 16, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 0 20px;
  border-radius: 5px;
}
header.header-three .nav-area ul .main-nav {
  padding: 12px 5px;
}
header.header-three .header-end {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 575px) {
  header.header-three .header-end {
    gap: 10px;
  }
}
header.header-three .header-end .rts-btn {
  height: 50px;
}
@media only screen and (max-width: 767px) {
  header.header-three .header-end .rts-btn {
    display: none;
  }
}
header.header-three .header-end .button-wrapper .action-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 575px) {
  header.header-three .header-end .button-wrapper .action-btn {
    gap: 10px;
  }
}
header.header-three .header-end .button-wrapper .action-btn > div {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(60px);
  border-radius: 5px;
  cursor: pointer;
}

@media only screen and (max-width: 1199px) {
  .nav-area {
    display: none;
  }
}
.nav-area ul {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .nav-area ul {
    gap: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .nav-area ul {
    gap: 10px;
  }
}
@media screen and (max-width: 1300px) {
  .nav-area ul {
    gap: 5px;
  }
}
.nav-area ul li {
  margin: 0;
  padding: 0;
}
.nav-area ul li a {
  color: #111032;
  font-weight: 600 !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  header.header-three .nav-area ul {
    gap: 25px !important;
  }
}

.nav-area ul li.main-nav {
  padding: 21px 0;
  cursor: pointer;
}

header .main-nav > a {
  color: #fff !important;
}

header .nav-area ul li.main-nav:hover > a {
  transition: 0.3s;
  color: var(--color-primary) !important;
}
header .nav-area ul li.main-nav:hover::after {
  color: var(--color-primary) !important;
}

.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 465px;
  padding: 40px 30px;
  padding-top: 50px;
  height: 100%;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow: visible;
}
@media only screen and (max-width: 575px) {
  .side-bar {
    width: 320px;
  }
}

.side-bar button {
  /* max-width: max-content; */
  margin-right: auto;
  margin-left: -31px;
  margin-top: -51px;
  position: absolute;
  display: flex;
  min-height: 45px;
  width: 45px;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-primary);
}
.side-bar button i {
  color: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}

.header-three .nav-btn {
  height: 50px;
  width: 50px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 1199px) {
  .header-three .nav-btn {
    display: flex;
  }
}
.header-three .nav-btn img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(42%) saturate(0%) hue-rotate(345deg) brightness(106%) contrast(106%);
}

.mobile-menu nav ul {
  padding: 0 20px;
}
.mobile-menu nav ul li {
  margin: 0;
  padding: 0;
}
.mobile-menu nav ul li a.main {
  padding: 12px 0 17px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
}
.mobile-menu nav ul li a {
  display: block;
}
@media screen and (min-width: 1199px) {
  .side-bar.header-two .mobile-menu {
    display: none !important;
  }
}

.mobile-menu nav ul li a {
  display: block;
  padding: 2px 0;
  border-bottom: 1px solid #f1f1f1;
}

/* elements  */

.rts-banner-three {
  height: 788px;
  background-image: url(../images/banner/06.webp);
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .rts-banner-three {
    height: auto;
  }
}

.banner-three-content {
  margin-top: 140px;
}
.banner-three-content span {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 12px;
  display: block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(60px);
  border-radius: 3px;
  max-width: max-content;
  margin-bottom: 25px;
  font-weight: 500;
}
.banner-three-content .title {
  font-size: 66px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 45px;
}
@media only screen and (max-width: 991px) {
  .banner-three-content .title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-three-content .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 479px) {
  .banner-three-content .title {
    font-size: 26px;
  }
}

.reveal-item.overflow-hidden.aos-init img {
  width: 100%;
}

.rts-breadcrumb-area.contact-bd {
  background-image: url(../images/banner/projektet-tona.png);
}

.rts-banner-three.with-video {
  position: relative;
  z-index: 1;
}
.rts-banner-three.with-video::after {
  position: absolute;
  content: "";
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.836) 0%, rgba(0, 0, 0, 0.596) 35%, rgba(0, 212, 255, 0) 100%);
  top: 0;
  bottom: 0;
  z-index: -1;
}
.rts-banner-three.with-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.rts-banner-three.with-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rts-btn {
  font-size: 16px;
  font-weight: 700;
  background-color: transparent;
  max-width: max-content;
  padding: 12px 28px;
  min-width: max-content;
}
.rts-btn.btn-primary {
  color: #fff;
  font-weight: 700;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.rts-btn.btn-primary::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--color-secondary);
  transform: translateY(110%);
  transition: 0.3s;
  transition-delay: 0.1s;
  z-index: -1;
}
.rts-btn.btn-primary:hover::after {
  transform: translateY(0);
}
.rts-btn.btn-white {
  color: var(--color-primary);
  font-weight: 700;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s;
  transition-delay: 0.1s;
}
.rts-btn.btn-white img {
  transition: 0.3s;
  transition-delay: 0.1s;
}
.rts-btn.btn-white::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--color-primary);
  transform: translateY(110%);
  transition: 0.3s;
  transition-delay: 0.1s;
  z-index: -1;
}
.rts-btn.btn-white:hover {
  color: #fff;
}
.rts-btn.btn-white:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(197deg) brightness(106%) contrast(106%);
}
.rts-btn.btn-white:hover::after {
  transform: translateY(0);
}
.rts-btn.border {
  border: 2px solid var(--color-primary) !important;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.rts-btn.border::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--color-primary);
  transform: translateY(110%);
  transition: 0.3s;
  transition-delay: 0.1s;
  z-index: -1;
}
.rts-btn.border img {
  transition: 0.3s;
  transition-delay: 0.1s;
}
.rts-btn.border:hover {
  color: #fff;
}
.rts-btn.border:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(197deg) brightness(106%) contrast(106%);
}
.rts-btn.border:hover::after {
  transform: translateY(0);
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.single-fun-facts-area {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 1;
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .single-fun-facts-area {
    padding: 30px;
  }
}
.single-fun-facts-area::after {
  content: "";
  position: absolute;
  left: -20%;
  top: -30%;
  width: 255px;
  height: 252.06px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(255, 102, 0, 0) 0%, #FF6600 100%);
  opacity: 0.23;
  filter: blur(125px);
  z-index: -1;
}
.single-fun-facts-area .icons {
  margin-bottom: 45px;
}
.single-fun-facts-area .title {
  color: var(--color-primary);
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 72px;
}
@media only screen and (max-width: 1199px) {
  .single-fun-facts-area .title {
    font-size: 42px;
  }
}
.single-fun-facts-area .title span {
  color: #141416;
  font-weight: 800;
}

.g-24 {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}

.rts-about-company-area {
  background-color: linear-gradient(180deg, rgba(20, 20, 22, 0) 26.96%, #141416 30.75%);
  background-image: url(../images/about/about-1-bg.webp);
  height: auto;
  position: relative;
}

.about-inner-area-content-one {
  padding-right: 70px;
}
@media only screen and (max-width: 767px) {
  .about-inner-area-content-one {
    padding-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .about-inner-area-content-one {
    padding-right: 0;
  }
}
.about-inner-area-content-one span {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
}
.about-inner-area-content-one .title {
  font-size: 44px;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-inner-area-content-one .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-inner-area-content-one .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .about-inner-area-content-one .title {
    font-size: 28px;
  }
}
.about-inner-area-content-one p {
  color: #dcdce0;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-inner-area-content-one p {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-inner-area-content-one p {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.about-thumbnail-inner-one {
  position: relative;
}

.rts-breadcrumb-area {
  background-image: url(../images/banner/breadcrumb.webp);
  margin: auto;
  height: 500px;
  max-width: 1820px;
  margin: auto;
  margin-top: 17px;
  border-radius: 10px;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .rts-breadcrumb-area {
    margin-right: 50px;
    margin-left: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-breadcrumb-area {
    height: 375px;
  }
}

.breadcrumb-area-inner {
  z-index: 1;
}
.breadcrumb-area-inner .title {
  font-size: 60px;
  max-width: 65%;
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-area-inner .title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcrumb-area-inner .title {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-area-inner .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .breadcrumb-area-inner .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 479px) {
  .breadcrumb-area-inner .title {
    font-size: 24px;
  }
}
.breadcrumb-area-inner .nav-area-navigation {
  position: absolute;
  bottom: 0;
  background: #fff;
  padding: 15px 31px;
  border-radius: 10px 10px 0 0;
  gap: 33px;
  display: flex;
}
.breadcrumb-area-inner .nav-area-navigation a {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-title);
}
.breadcrumb-area-inner .nav-area-navigation a.current {
  color: var(--color-primary);
  position: relative;
}
.breadcrumb-area-inner .nav-area-navigation a.current::after {
  position: absolute;
  content: "";
  left: -20px;
  height: 4px;
  width: 4px;
  background: #D9D9D9;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumb-area-inner .water-text {
  font-size: 180px;
  text-transform: uppercase;
  position: absolute;
  z-index: 0;
  font-weight: 700;
  left: 320px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.08);
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .breadcrumb-area-inner .water-text {
    font-size: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-area-inner .water-text {
    font-size: 80px;
    left: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-area-inner .water-text {
    font-size: 60px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  .breadcrumb-area-inner .water-text {
    display: none;
  }
}

.reveal-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.reveal-item .reveal-animation {
  position: absolute;
  top: 0;
  width: 100%;
  height: 101%;
  background: var(--color-primary);
  border-radius: 10px;
  overflow: hidden;
}

.reveal-item .reveal-animation::before {
  position: absolute;
  content: "";
  top: 0;
  border-radius: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-gray-400);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.reveal-animation.reveal-primary::before {
  background: #0c0c0a;
}

.reveal-animation.reveal-end::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

[data-aos=reveal-end] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

[data-aos=reveal-end] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.title-style-two-center {
  text-align: center;
}
.title-style-two-center .title {
  color: #141416;
  font-size: 44px;
}

.custom-disc-color-primary {
  color: rgb(37, 37, 37) !important;
}

.custom-disc-color-body {
  color: var(--color-body) !important;
  padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .title-style-two-center .title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .title-style-two-center .title {
    font-size: 24px;
  }
}

.button-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 575px) {
  .button-wrapper {
    flex-wrap: wrap;
  }
}

.search-input-area {
  transition: all 500ms ease;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 57px 0;
  background: white;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .search-input-area {
    padding: 70px 0 30px 0;
  }
}

.search-input-area .search-input-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input-area .search-input-inner .input-div {
  width: 80%;
  display: flex;
  align-items: center;
  margin: auto;
}
@media only screen and (max-width: 575px) {
  .search-input-area .search-input-inner .input-div {
    width: 100%;
  }
}

.search-input-area .search-input-inner .input-div input {
  background: #F7F7F7;
  border-radius: 5px;
  height: 55px;
  border: 1px solid transparent;
}
.search-input-area .search-input-inner .input-div input:focus {
  border: 1px solid var(--color-primary);
}

.search-input-area .search-input-inner .input-div button {
  max-width: max-content;
  padding: 18px 21px;
  background: var(--color-primary);
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: block;
  margin-left: -9px;
  border-radius: 0 5px 5px 0;
}

.search-input-area .search-close-icon {
  cursor: pointer;
  position: absolute;
  right: 38px;
  top: 22px;
}
@media only screen and (max-width: 575px) {
  .search-input-area .search-close-icon {
    right: 20px;
    top: 15px;
  }
}

.search-input-area .search-close-icon i {
  position: relative;
  z-index: 1;
  color: var(--color-primary);
  transition: 0.3s;
  font-size: 18px;
}
.search-input-area .search-close-icon i:hover {
  color: #F7F7F7;
}
.search-input-area .search-close-icon i:hover::after {
  background: var(--color-primary);
}

.search-input-area .search-close-icon i::after {
  position: absolute;
  height: 45px;
  width: 45px;
  content: "";
  border-radius: 5px;
  background: rgba(85, 60, 223, 0.0784313725);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}

#anywhere-home {
  cursor: url(../images/banner/shape/close.png), auto;
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 999;
  opacity: 1;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: 1px solid var(--color-primary);
  border: none !important;
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
}

.progress-wrap:hover::after {
  opacity: 1;
  content: "\f077";
}

.progress-wrap::before {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 0;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg {
  color: var(--color-primary);
  border-radius: 50%;
  background: transparent;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 4px;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.bg_footer-1 {
  background-image: url(../images/footer/01.webp);
}

.contact-area-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .contact-area-footer-top {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.single-contact-area-box .icon {
  width: 70px;
  height: 70px;
  background: #141416;
  border: 1px solid #2B2B30;
  border-radius: 100px;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.single-contact-area-box .icon i {
  color: #fff;
  font-size: 18px;
}
.single-contact-area-box .title {
  font-size: 18px;
  margin-bottom: 9px;
}
.single-contact-area-box a {
  display: block;
  color: #7C7C84;
  margin-bottom: 5px;
  transition: 0.3s;
}
.single-contact-area-box a:hover {
  color: var(--color-primary);
}
.single-contact-area-box a:last-child {
  margin-bottom: 0;
}

.nav-footer-wrapper-one {
  border-top: 1px solid #333338;
  border-bottom: 1px solid #333338;
  margin-top: 100px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 575px) {
  .nav-footer-wrapper-one {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 15px 0;
  }
}

.social-area-wrapper-one ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
}
.social-area-wrapper-one ul li a {
  width: 40px;
  height: 40px;
  background: #171717;
  border: 1px solid #2F3336;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-area-wrapper-one ul li a i {
  color: #fff;
}
.social-area-wrapper-one ul li a:hover {
  background: var(--color-primary);
  border: 1px solid transparent;
}

.footer-wrapper-left-one {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 75px) {
  .footer-wrapper-left-one {
    padding-right: 0;
  }
}
.footer-wrapper-left-one .logo {
  margin-bottom: 30px;
  display: block;
}
.footer-wrapper-left-one p.disc {
  color: #7C7C84;
  margin-bottom: 30px;
}

.footer-wrapper-right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer-wrapper-right {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.single-nav-area-footer {
  flex-basis: 34%;
}
@media only screen and (max-width: 767px) {
  .single-nav-area-footer {
    flex-basis: 44%;
  }
}
@media only screen and (max-width: 575px) {
  .single-nav-area-footer {
    flex-basis: 100%;
  }
}
.single-nav-area-footer.use-link {
  flex-basis: 33%;
}
@media only screen and (max-width: 767px) {
  .single-nav-area-footer.use-link {
    flex-basis: 44%;
  }
}
@media only screen and (max-width: 575px) {
  .single-nav-area-footer.use-link {
    flex-basis: 100%;
  }
}
.single-nav-area-footer.use-link a {
  color: #7C7C84;
}
.single-nav-area-footer .title {
  font-size: 22px;
  font-weight: 700;
}
.single-nav-area-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.single-nav-area-footer ul li {
  margin: 0;
  padding: 0;
}
.single-nav-area-footer ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #77787A;
  font-size: 15px;
  transition: 0.3s;
}
.single-nav-area-footer ul li a i {
  font-weight: 700;
  transition: 0.3s;
}
.single-nav-area-footer ul li a:hover {
  color: var(--color-primary);
}
.single-nav-area-footer ul li a:hover i {
  margin-right: 5px;
}

.single-contact-area-box {
  position: relative;
}
.single-contact-area-box:last-child::after {
  display: none;
}
.single-contact-area-box::after {
  position: absolute;
  content: "";
  right: -80px;
  top: 0;
  height: 100%;
  width: 1px;
  background: #333338;
}
@media only screen and (max-width: 1199px) {
  .single-contact-area-box::after {
    display: none;
  }
}

.quick-contact-page-1 {
  padding: 38px 30px;
  border-radius: 10px;
  background: #fff;
}
.quick-contact-page-1 .title {
  font-size: 22px;
  margin-top: 22px;
  margin-bottom: 18px;
  color: var(--color-title);
}

.contact-main-wrapper-left span {
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 500;
}
.contact-main-wrapper-left .title-main {
  font-size: 44px;
  font-weight: 700;
  color: var(--color-title);
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .contact-main-wrapper-left .title-main {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 575px) {
  .contact-main-wrapper-left .title-main {
    font-size: 26px;
    line-height: 1.3;
  }
}
.contact-main-wrapper-left p.disc {
  max-width: 90%;
}

.contact-form-area-wrapper {
  padding: 60px;
  background: #FFFFFF;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .contact-form-area-wrapper {
    padding: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-form-area-wrapper {
    padding: 15px;
  }
}
.contact-form-area-wrapper .title {
  font-size: 36px;
  color: var(--color-title);
  margin-bottom: 30px;
}
@media only screen and (max-width: 575px) {
  .contact-form-area-wrapper .title {
    font-size: 26px;
  }
}
.contact-form-area-wrapper input {
  height: 50px;
  background: #F6F6F6;
  border-radius: 5px;
  border: none;
  box-shadow: none;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid transparent;
  padding: 15px;
}
.contact-form-area-wrapper input:focus {
  border: 1px solid var(--color-primary);
}
.contact-form-area-wrapper .half-inpur-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.contact-form-area-wrapper .half-inpur-wrapper .single {
  width: 100%;
}
.contact-form-area-wrapper textarea {
  height: 150px;
  background: #F6F6F6;
  border-radius: 5px;
  border: none;
  box-shadow: none;
  margin-bottom: 20px;
  border: 1px solid transparent;
  padding: 15px;
}
.contact-form-area-wrapper textarea:focus {
  border: 1px solid var(--color-primary);
}
.contact-form-area-wrapper button {
  border: none;
  box-shadow: none;
}

.rts-map-main-wrapper {
  border-radius: 10px;
  overflow: hidden;
}

.header-area-custom {
  max-height: 80px;
}

.pd-top {
  margin-top: 120px;
}

.pd-top-projects {
  margin-top: 80px;
}
/*# sourceMappingURL=../maps/style.css.map */


    .card-container {
      display: flex;
      width: 100%;
      flex-direction: row;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .card {
      position: relative;
      flex: 1 1 30%;
      min-width: 300px;
      height: 400px;
      border-radius: 12px;
      overflow: hidden;
      text-decoration: none;
      color: white;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: scale(1.03);
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: 1;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.4);
      z-index: 2;
    }

    .card-content {
      position: relative;
      z-index: 3;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
    }

    .card h3 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 18px;
      max-width: 90%;
      color: white;
    }

    /* Background images per card */
    .card1::before { background-image: url('../images/home-cards/01.png'); }
    .card2::before { background-image: url('../images/home-cards/02.png'); }
    .card3::before { background-image: url('../images/home-cards/03.png'); }

    @media (max-width: 980px) {
      .card-container {
        flex-direction: column;
        gap: 30px;
      }
    }


/*  */

.reveal-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.reveal-item .reveal-animation {
  position: absolute;
  top: 0;
  width: 100%;
  height: 101%;
  background: var(--color-primary);
}

.reveal-item .reveal-animation::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-gray-400);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}
[data-aos=reveal-item] {
  visibility: hidden;
  -webkit-transition-property: visibility;
  transition-property: visibility;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
[data-aos=reveal-item].aos-animate {
  visibility: visible;
}

.reveal-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.reveal-item .reveal-animation {
  position: absolute;
  top: 0;
  width: 100%;
  height: 101%;
  background: var(--color-primary);
  border-radius: 10px;
  overflow: hidden;
}

.reveal-item .reveal-animation::before {
  position: absolute;
  content: "";
  top: 0;
  border-radius: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-gray-400);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.reveal-item.overflow-hidden.aos-init img {
  width: 100%;
}

[data-aos=reveal-item] {
  visibility: hidden;
  -webkit-transition-property: visibility;
  transition-property: visibility;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
[data-aos=reveal-item].aos-animate {
  visibility: visible;
}

.reveal-item .reveal-animation {
  position: absolute;
  top: 0;
  width: 100%;
  height: 101%;
  background: var(--color-primary);
}

.reveal-item .reveal-animation::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-gray-400);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.reveal-animation.reveal-primary::before {
  background: #0c0c0a;
}

.reveal-animation.reveal-dark::before {
  background: #000;
}

.reveal-animation.reveal-white::before {
  background: #000;
}

.reveal-animation.reveal-top.aos-animate::before,
.reveal-animation.reveal-bottom.aos-animate::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.reveal-animation.reveal-start.aos-animate::before,
.reveal-animation.reveal-end.aos-animate::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.reveal-animation.reveal-top::before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

.reveal-animation.reveal-start::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

.reveal-animation.reveal-end::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

.reveal-animation.reveal-bottom::before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}
.reveal-item .reveal-animation {
  position: absolute;
  top: 0;
  width: 100%;
  height: 101%;
  background: var(--color-primary);
  border-radius: 10px;
  overflow: hidden;
}

.reveal-item .reveal-animation::before {
  position: absolute;
  content: "";
  top: 0;
  border-radius: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-gray-400);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.reveal-animation.reveal-primary::before {
  background: #0c0c0a;
}

.reveal-animation.reveal-dark::before {
  background: #000;
}

.reveal-animation.reveal-white::before {
  background: #000;
}

.reveal-animation.reveal-top.aos-animate::before,
.reveal-animation.reveal-bottom.aos-animate::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.reveal-animation.reveal-start.aos-animate::before,
.reveal-animation.reveal-end.aos-animate::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.reveal-animation.reveal-top::before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

.reveal-animation.reveal-start::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

.reveal-animation.reveal-end::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

.reveal-animation.reveal-bottom::before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

[data-aos=reveal-top],
[data-aos=reveal-start],
[data-aos=reveal-end],
[data-aos=reveal-bottom] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

[data-aos=reveal-top] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

[data-aos=reveal-top].aos-animate {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

[data-aos=reveal-start] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[data-aos=reveal-start].aos-animate {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

[data-aos=reveal-end] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[data-aos=reveal-end].aos-animate {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

[data-aos=reveal-bottom] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

[data-aos=reveal-bottom].aos-animate {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

[data-aos=reveal-item] {
  visibility: hidden;
  -webkit-transition-property: visibility;
  transition-property: visibility;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

[data-aos=reveal-item].aos-animate {
  visibility: visible;
}


.reveal-item.overflow-hidden.aos-init img {
  width: 100%;
}

.reveal-animation.reveal-top.aos-animate::before,
.reveal-animation.reveal-bottom.aos-animate::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.reveal-animation.reveal-start.aos-animate::before,
.reveal-animation.reveal-end.aos-animate::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[data-aos=reveal-top],
[data-aos=reveal-start],
[data-aos=reveal-end],
[data-aos=reveal-bottom] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

[data-aos=reveal-top] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

[data-aos=reveal-top].aos-animate {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

[data-aos=reveal-start] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[data-aos=reveal-start].aos-animate {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

[data-aos=reveal-end] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[data-aos=reveal-end].aos-animate {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

[data-aos=reveal-bottom] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

[data-aos=reveal-bottom].aos-animate {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

[data-aos=reveal-item] {
  visibility: hidden;
  -webkit-transition-property: visibility;
  transition-property: visibility;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

[data-aos=reveal-item].aos-animate {
  visibility: visible;
}

.side-bar .inner-main-wrapper-desk .thumbnail {
  display: flex;
  justify-content: center;
}
.side-bar .inner-main-wrapper-desk .thumbnail img {
  width: 85%;
  margin: auto;
}
.side-bar .inner-main-wrapper-desk .inner-content {
  text-align: center;
  margin-top: 30px;
}
.side-bar .inner-main-wrapper-desk .inner-content p {
  max-width: 95%;
  text-align: center;
  margin: auto;
}
.side-bar .inner-main-wrapper-desk .inner-content .title {
  font-weight: 600;
  color: var(--color-title);
}
.side-bar .inner-main-wrapper-desk .inner-content .footer {
  padding-top: 50px;
  margin-top: 80px;
  border-top: 1px solid #c2c2c2;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .title {
  font-weight: 500;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer a.rts-btn {
  margin: auto;
}

.side-bar.show {
  right: 0;
  overflow-y: auto;
}

.side-bar button {
  /* max-width: max-content; */
  margin-right: auto;
  margin-left: -31px;
  margin-top: -51px;
  position: absolute;
  display: flex;
  min-height: 45px;
  width: 45px;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-primary);
}
.side-bar button i {
  color: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}

@media screen and (max-width: 1199px) {
  .side-bar.header-two .inner-main-wrapper-desk, .side-bar.header-three .inner-main-wrapper-desk {
    display: none;
  }
}
@media screen and (min-width: 1199px) {
  .side-bar.header-two .mobile-menu, .side-bar.header-three .mobile-menu {
    display: none !important;
  }
}

.side-bar .social-wrapper-one ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding-left: 0;
  margin: 0;
}
.side-bar .social-wrapper-one li {
  margin-right: 10px;
  margin-top: 0;
  margin-bottom: 0;
}
.side-bar .social-wrapper-one li a {
  width: 40px;
  height: 40px;
  display: block;
  background: #171717;
  border: 1px solid #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.side-bar .social-wrapper-one li a i {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #FFFFFF;
}
.side-bar .social-wrapper-one li a:hover {
  background: var(--color-primary);
}

body[dir=rtl] .side-bar {
  left: -100%;
  right: auto;
}
body[dir=rtl] .side-bar.show {
  left: 0;
  overflow-y: auto;
}
body[dir=rtl] .side-bar button {
  margin-right: -31px;
  margin-left: auto;
}

.heder-one .header-two-container {
  margin: auto;
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 1919px) {
  .heder-one .header-two-container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .heder-one .header-two-container {
    padding-left: 0;
  }
}
.heder-one .header-two-container .header-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  .heder-one .header-two-container .header-main-wrapper {
    padding: 22px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .heder-one .header-two-container .header-main-wrapper {
    padding: 6px 0;
  }
}
.heder-one .header-two-container .header-main-wrapper .logo-area a {
  padding: 20px 35px 20px 0;
  display: block;
}
@media screen and (max-width: 1420px) {
  .heder-one .header-two-container .header-main-wrapper .logo-area a {
    padding: 0;
    padding-right: 15px;
  }
}
@media screen and (max-width: 1250px) {
  .heder-one .header-two-container .header-main-wrapper .logo-area a {
    padding-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .heder-one .header-two-container .header-main-wrapper .logo-area a {
    margin-left: 30px;
  }
}
@media (max-width: 400px) {
  .heder-one .header-two-container .header-main-wrapper .logo-area a {
    max-width: 180px;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right {
  border-left: 1px solid #2C2C31;
  position: relative;
  flex-basis: 87%;
}
@media screen and (max-width: 1300px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right {
    margin: auto;
    border: none;
  }
}
@media screen and (max-width: 1200px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right {
    border-left: 0px solid #2C2C31 !important;
    border-right: 0px solid #2C2C31 !important;
  }
}
@media screen and (max-width: 1024px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right {
    margin: unset;
    border: none;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .menu-area {
  position: absolute;
  cursor: pointer;
  right: -29px;
  top: 47%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2C2C31;
  height: 55px;
  width: 55px;
  background: #fff;
}
@media only screen and (max-width: 1199px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .menu-area {
    right: 0;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 444px;
  border-bottom: 1px solid #2C2C31;
}
@media screen and (max-width: 1820px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .top {
    gap: inherit;
  }
}
@media screen and (max-width: 1300px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .top {
    display: none;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top .start-top {
  display: flex;
  align-items: center;
  padding: 0 30px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top .start-top p {
  color: #6E777D;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-primary);
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top .start-top .icon {
  margin-right: 10px;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top .start-top .icon i {
  color: var(--color-primary);
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top .end-top {
  display: flex;
  align-items: center;
  gap: 50px;
  border-left: 1px solid #2C2C31;
  padding-left: 50px;
  padding: 18px 0;
  padding-right: 110px;
  padding-left: 30px;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top .end-top .single-info {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top .end-top .single-info:first-child::after {
  position: absolute;
  content: "";
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  width: 5px;
  background: #fff;
  border-radius: 50%;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top .end-top .single-info p,
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top .end-top .single-info a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-primary);
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .top .end-top .single-info i {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom {
    justify-content: flex-end;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area {
  padding: 0 30px;
}
@media (max-width: 1024px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area {
    display: none;
  }
}
@media (max-width: 1250px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area {
    padding: 0 0px 0 17px;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul li {
  margin-left: 0;
  margin-right: 35px;
  margin-right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul li {
    margin-right: 45px;
  }
}
@media (max-width: 1230px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul li {
    margin-right: 35px;
  }
}
@media (max-width: 1200px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul li {
    margin-right: 35px;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul li a {
  padding: 0;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul .has-droupdown:hover .nav-link {
  color: var(--color-primary);
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul .has-droupdown:hover .nav-link::before {
  color: var(--color-primary);
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul .has-droupdown .nav-link {
  transition: all 0.3s;
  padding: 22px 0;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul .has-droupdown .nav-link::before {
  transition: all 0.4s;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul li a {
  display: block;
  transition: 0.3s;
  font-weight: 600;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul li a.nav-link {
  color: #0C0A0A;
}
@media (max-width: 1599px) and (min-width: 1024px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul li a {
    font-size: 14px;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul li a:hover {
  color: var(--color-primary);
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area {
    padding-right: 0;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .rts-btn.btn-header {
  border-radius: 0 0 10px 0;
}
@media screen and (max-width: 1300px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .rts-btn.btn-header {
    border-radius: 10px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .rts-btn.btn-header {
    padding: 12px;
  }
}
@media only screen and (max-width: 479px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .rts-btn.btn-header {
    display: none;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .rts-btn.btn-seconday {
  background: transparent;
  color: var(--color-primary);
  display: flex;
  align-items: center;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .rts-btn.btn-seconday::after {
  display: none;
}
@media screen and (max-width: 1300px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .rts-btn.btn-seconday {
    display: none;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .rts-btn.btn-seconday i {
  margin-left: 10px;
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .icon-area {
  display: flex;
  align-items: center;
  padding-right: 34px;
  border-right: 1px solid #2C2C31;
  margin-right: 0;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 30px;
  border-left: 1px solid #2C2C31;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .icon-area {
    margin-right: 0;
  }
}
@media screen and (max-width: 1300px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .icon-area {
    border: none;
  }
}
@media (max-width: 1200px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .icon-area {
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .icon-area {
    padding-right: 0;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .icon-area i {
  cursor: pointer;
  color: #fff;
  position: relative;
  font-size: 22px;
}
@media (max-width: 576px) {
  .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .icon-area .cart {
    display: none;
  }
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .icon-area .cart i {
  position: relative;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .icon-area .cart i::after {
  position: absolute;
  content: "2";
  right: -8px;
  bottom: -5px;
  height: 20px;
  width: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .icon-area .search {
  margin-right: 0;
  color: #0C0A0A;
}


@media only screen and (max-width: 767px) {
  .header-two .header-top {
    display: none;
  }
}

.header-two-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: static;
}
@media only screen and (max-width: 1199px) {
  .header-two-wrapper {
    padding: 15px 0;
  }
}
.header-two-wrapper .header-end {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-two-wrapper .header-end .nav-btn {
  height: 50px;
  width: 50px;
  border: 1px solid #141416;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}

.header-two-main-wrapper {
  background: #fff;
  position: relative;
}
.header-two-main-wrapper .nav-area ul li.main-nav {
  padding: 31px 0;
}
.header-two-main-wrapper .has-dropdown::after {
  color: #141416;
}
.header-two-main-wrapper .has-dropdown.mega-menu > a::after {
  color: #141416;
}
.header-two-main-wrapper .rts-btn.btn-primary {
  padding: 13px 28px;
}
@media only screen and (max-width: 479px) {
  .header-two-main-wrapper .rts-btn.btn-primary {
    display: none;
  }
}

header.header-two .main-nav > a {
  color: #0C0A0A !important;
  font-weight: 600;
}

header.header-two.sticky .header-top {
  display: none;
}


@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  header.header-two .nav-area ul {
    gap: 40px !important;
  }
}


header.header-two .menu-item-open > a {
  color: var(--color-primary) !important;
}


@media screen and (max-width: 1199px) {
  .side-bar.header-two .inner-main-wrapper-desk, .side-bar.header-three .inner-main-wrapper-desk {
    display: none;
  }
}
@media screen and (min-width: 1199px) {
  .side-bar.header-two .mobile-menu, .side-bar.header-three .mobile-menu {
    display: none !important;
  }
}


.header-two .header-main-wrapper .sub-dropdown:hover .submenu.third-lvl.base {
  margin-left: 90px !important;
}

body[dir=rtl] .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .nav-area ul li a {
  flex-direction: row-reverse;
  justify-content: flex-end;
  text-align: right;
}

body[dir=rtl] .heder-one .header-two-container .header-main-wrapper .rts-header-right .top .end-top {
  border-right: 1px solid #2C2C31;
  padding-right: 30px;
  padding-left: 110px;
}
body[dir=rtl] .heder-one .header-two-container .header-main-wrapper .rts-header-right .top .end-top .single-info:first-child::after {
  right: auto;
  left: -26px;
}
body[dir=rtl] .heder-one .header-two-container .header-main-wrapper .rts-header-right {
  border-right: 1px solid #2C2C31;
  border-left: none;
}
body[dir=rtl] .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .rts-btn.btn-header {
  border-radius: 0 0 0 10px;
}
body[dir=rtl] .heder-one .header-two-container .header-main-wrapper .rts-header-right .bottom .right-area .rts-btn.btn-header img {
  transform: scaleX(-1);
}
body[dir=rtl] .heder-one .header-two-container {
  padding-left: 0;
  padding-right: 50px;
}
@media only screen and (max-width: 991px) {
  body[dir=rtl] .heder-one .header-two-container {
    margin-left: 20px;
  }
}
body[dir=rtl] .heder-one .header-two-container .header-main-wrapper .rts-header-right .top .end-top .single-info {
  flex-direction: row-reverse;
}

.mobile-menu nav ul {
  padding: 0 20px;
}
.mobile-menu nav ul li {
  margin: 0;
  padding: 0;
}
.mobile-menu nav ul li a.main {
  padding: 12px 0 17px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
}
.mobile-menu nav ul li.has-droupdown {
  position: relative;
}
.mobile-menu nav ul li.has-droupdown ul a.tag {
  font-weight: 700;
  margin-top: 15px;
  font-size: 18px;
}
.mobile-menu nav ul li.has-droupdown ul li {
  margin: 10px 0 !important;
}
.mobile-menu nav ul li.has-droupdown::after {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 6 pro" !important;
  font-size: 16px;
  right: 0;
  font-weight: 400;
  top: 5px;
  padding: 8px 13px;
  color: #fff;
  background: var(--color-primary) !important;
  pointer-events: none;
  cursor: pointer;
}
.mobile-menu nav ul li.has-droupdown.mm-active::after {
  content: "\f077";
}
.mobile-menu nav ul li.has-droupdown.third-lvl::after {
  font-size: 10px;
  padding: 3px 10px;
}
.mobile-menu nav ul li.has-droupdown.third-lvl ul {
  padding: 0 20px;
}
.mobile-menu nav ul li.has-droupdown.third-lvl ul li {
  margin: 10px 0 !important;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.mobile-menu nav ul li.has-droupdown.third-lvl ul li:hover {
  color: var(--color-primary);
}
.mobile-menu nav ul li.has-droupdown.third-lvl ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.mobile-menu nav ul li a {
  display: block;
}
.mobile-menu .social-wrapper-one {
  margin-top: 50px;
}

@media screen and (min-width: 1199px) {
  .side-bar.header-two .mobile-menu, .side-bar.header-three .mobile-menu {
    display: none !important;
  }
}

/* --- FINAL CUSTOM FOOTER STYLES --- */

/* Make sure the old logo sizing rule is removed so the logo is large.
*/
/* .footer-wrapper-left-one .logo img {
    max-width: 200px; 
}
*/

/* Links Section */
.single-nav-area-footer .footer-links-horizontal {
    list-style: none;
    /* This is the key change: inline-flex allows the text-center
       on the parent column to perfectly center the block of links. */
    display: inline-flex; 
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 25px; /* Vertical | Horizontal */
}

.footer-links-horizontal li a {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-horizontal li a i {
    transition: transform 0.3s ease;
}

.footer-links-horizontal li a:hover i {
    transform: translateX(4px);
}

/* Map Section */
.footer-map-wrapper {
    width: 100%;
    max-width: 220px;
    display: inline-block; /* This helps with the text-center alignment */
}

.footer-map-wrapper iframe {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
}

/* --- Contact Form Success/Error Message Styles --- */
#form-messages {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    display: none; /* Hidden by default */
}

#form-messages.success {
    background-color: #d4edda; /* Light green */
    color: #155724; /* Dark green */
    border: 1px solid #c3e6cb;
    display: block; /* Becomes visible */
}

#form-messages.error {
    background-color: #f8d7da; /* Light red */
    color: #721c24; /* Dark red */
    border: 1px solid #f5c6cb;
    display: block; /* Becomes visible */
}

/* ===================================================================
// 20. Project Card Section Enhancements (Add this to your style.css)
// ===================================================================*/

/* This creates a dark overlay to make the white text more readable */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.5s ease;
}

/* Ensure the card content appears above the overlay */
.card .card-content {
    position: relative;
    z-index: 2;
}

/* On hover, make the overlay slightly more transparent */
.card:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

/* This is the core of the Ken Burns effect.
  We are targeting the background images you already have set on .card1, .card2, .card3.
*/
.card {
    background-size: 110%; /* Start image slightly zoomed in */
    background-position: center;
    transition: background-size 5s ease-out, background-position 5s ease-out; /* Slow transition for the zoom */
}

.card:hover {
    background-size: 100%; /* Zoom out slightly on hover */
    background-position: center center;
}

a {
  text-decoration: none !important
}