* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
*:focus {
  outline: none !important;
}

:root {
  --primaryColor: #AA835E;
  --SecondaryColor: #F6F2EE;
  --ThirdColor: #d9b95f;
  --linear-gradient: linear-gradient(to right, #AA835E, #443426);
  --mainColor1: #F6DFA2;
  --mainColor2: rgb(0, 0, 0);
  --mainColor3: #31ba44;
  --mainColor4: #ffffff;
  --mainColor5: #f2e7d8;
}

.loading-screen {
  z-index: 99999;
  display: flex;
}
.loading-screen img {
  width: 250px;
}

.border-color {
  border-color: var(--primaryColor) !important;
}

body {
  font-size: 16px;
  color: rgb(27, 27, 27);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

html[lang=ar] body {
  font-family: "Cairo", sans-serif;
}

.bg-primary-color {
  background-color: var(--primaryColor) !important;
}

.primary-color {
  color: var(--primaryColor) !important;
}

.bg-Secondary-color {
  background-color: var(--SecondaryColor) !important;
}

.Secondary-color {
  color: var(--SecondaryColor) !important;
}

.third-color {
  color: var(--ThirdColor) !important;
}

.bg-gradint-card {
  background: var(--linear-gradient);
}

p {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

h3 {
  font-size: 32px;
  line-height: 100%;
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

footer {
  background-color: var(--primaryColor);
  color: var(--mainColor4) !important;
  overflow: hidden;
}
footer h4 {
  font-size: 20px;
  line-height: 36px;
}
footer p, footer span, footer a {
  color: var(--mainColor4);
}
footer img {
  width: 170px;
}

.layer {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}

.floatwhatsapp,
.back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  text-align: center;
  color: var(--mainColor4);
  position: fixed;
  right: 4%;
  text-decoration: none;
  margin-bottom: 20px;
  z-index: 100;
}

.floatwhatsapp {
  background-color: var(--mainColor3);
  bottom: 10px;
  display: flex;
  transition: transform 0.2s ease-in-out;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}
.floatwhatsapp:hover {
  transform: translateY(-3px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 5px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 20px;
    opacity: 0.75;
  }
  75% {
    padding: 30px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.back-to-top {
  background-color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
  display: none;
  bottom: 100px;
  color: var(--mainColor4);
  z-index: 111;
  transition: transform 0.2s ease-in-out;
  box-shadow: 1px 1px 2px #686868;
}
.back-to-top:hover {
  transform: translateY(-3px);
}

.container-reverse-store .row:nth-child(even) {
  flex-direction: row-reverse;
}

.img-container img {
  transition: all 0.8s ease;
  width: 100%;
}
.img-container img:hover {
  transform: scale(1.07);
  transform-origin: 50% 50%;
  cursor: pointer;
}

.first-img {
  width: 90%;
  height: 100%;
}

.second-img {
  width: 70%;
  height: 40%;
  transform: translate(50%, -50%);
  overflow: hidden;
  border: 10px solid white;
}

.slick-slide {
  padding-inline: 1rem;
}

.first-img img,
.second-img {
  border-radius: 200px 200px 0px 0px;
}

.img-card {
  height: 190px;
  overflow: hidden;
}
.img-card img {
  transition: all 0.8s ease;
}
.img-card:hover {
  cursor: pointer;
}
.img-card:hover img {
  transform: scale(1.1);
  transform-origin: 50% 50%;
}

.accordion-home .accordion-button::after {
  width: 1rem !important;
  height: 1rem !important;
  background-image: url("data:image/svg+xml;utf8,<svg width='8' height='8' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'><path d='M9 1V17M17 9H1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 1rem !important;
}

.accordion-home .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml;utf8,<svg width='8' height='2' viewBox='0 0 18 2' xmlns='http://www.w3.org/2000/svg'><path d='M17 1H1' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-color: transparent;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: unset;
}

html[lang=ar] .accordion-button::after {
  margin-right: auto;
  margin-left: 0px;
}
html[lang=ar] .intl-tel-input.allow-dropdown .selected-flag {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
html[lang=ar] .iti__country-container,
html[lang=ar] .intl-tel-input.allow-dropdown .flag-container {
  left: auto !important;
  right: 0 !important;
}
html[lang=ar] input[type=tel] {
  padding-left: 10px;
  padding-right: 47px;
  direction: rtl !important;
}
html[lang=ar] .intl-tel-input.allow-dropdown .selected-flag {
  border-left: solid 1px rgba(221, 221, 221, 0.637);
  border-right: solid 0px rgba(221, 221, 221, 0.637);
}
html[lang=ar] .iti {
  direction: rtl;
}
html[lang=ar] .iti__dropdown-content {
  right: 0px;
  left: auto;
  width: auto !important;
}
html[lang=ar] .iti {
  position: relative;
  width: 100% !important;
}
html[lang=ar] .iti__dropdown-content {
  width: auto !important;
}

.iti {
  width: 100% !important;
}

.form-bg {
  background-image: url("../imgs/home/form-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-control {
  font-size: 14px;
}
.form-control::-moz-placeholder {
  color: var(--mainColor2);
  font-size: 14px;
}
.form-control::placeholder {
  color: var(--mainColor2);
  font-size: 14px;
}
.form-control:focus {
  border-color: var(--SecondaryColor) !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(248, 71, 1, 0.034) !important;
  background-color: rgba(248, 71, 1, 0.034);
}

.btn {
  transition: 0.7s !important;
  border-radius: 8px;
}

button.btn {
  transition: 0.8s !important;
}
button.btn:hover {
  opacity: 70%;
  cursor: pointer;
  color: var(--mainColor2) !important;
}

button.bg-primary-color border border-color:hover {
  background-color: var(--SecondaryColor) !important;
  cursor: pointer;
  color: var(--mainColor2) !important;
}

.header-div {
  height: 380px;
}

.welcome-text {
  display: none;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 1rem;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-28 {
  font-size: 28px;
}

.fs-32 {
  font-size: 32px;
}

.fs-40 {
  font-size: 40px;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-white {
  background-color: white;
}

.bg-light {
  background-color: #f8f9fa;
}

.text-muted {
  color: #6c757d !important;
}

.text-secondary {
  color: var(--ThirdColor) !important;
  font-weight: 400;
}

.text-decoration-underline {
  text-decoration: underline;
}

ul {
  list-style: none;
  list-style-position: inside;
}

html[lang=ar] .text-md-start {
  text-align: right !important;
}
html[lang=ar] .text-md-end {
  text-align: left !important;
}

.object-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.img-container {
  height: 500px;
}

.social li {
  list-style: none;
}

.social li a {
  opacity: 100% !important;
  width: 40px;
  height: 40px;
  background-color: var(--mainColor2);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  margin: 0 7px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.377);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primaryColor);
}

.social li a::before {
  content: "";
  position: absolute;
  top: 101%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}

.social li a .icon {
  position: relative;
  transition: 0.5s;
  z-index: 3;
  color: var(--mainColor4);
  opacity: 1;
}

.social li a:hover .icon {
  color: var(--mainColor4);
  transform: rotateY(360deg);
  font-size: 20px;
}

.social li a:hover::before {
  top: 0;
}

.social li a:before {
  background: var(--primaryColor);
}

.btn-close {
  background: unset;
}

.lan {
  color: white;
}

.carousel {
  position: relative;
}
.carousel::after {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 200px;
  /* Adjust height as needed */
}

.carousel-caption {
  z-index: 1;
  color: var(--mainColor4);
  right: 10%;
  top: 22%;
  left: 10%;
}

.carousel-indicators .active {
  background-color: var(--primaryColor) !important;
}

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: var(--mainColor4);
  width: 15px;
  height: 15px;
  border-radius: 11px;
  opacity: 1 !important;
  border-radius: 50% !important;
  transition: 0.7s !important;
}

.nav-link.active span {
  font-weight: 700 !important;
  color: var(--primaryColor) !important;
}

.carousel-item {
  height: 800px;
}
.carousel-item .img-slider {
  height: 100%;
}
.carousel-item .img-slider img {
  min-height: 100% !important;
}

.slider-works div .img-card {
  background: url("../imgs/home/bg-sec.png");
  background-size: auto 125%;
  color: var(--mainColor2);
  height: 350px;
}
.slider-works div .img-card p {
  color: #6c757d;
}

.slider-works div:nth-child(1) .img-card {
  border-radius: 50px 50px 0px 50px;
  background-image: url("../imgs/home/bg-first.png");
  background-size: cover;
}

.slider-works div:nth-child(2) .img-card {
  border-radius: 50px 50px 50px 0px;
}

.slider-works div:nth-child(3) .img-card {
  border-radius: 50px 0px 50px 50px;
}

.slider-works div:nth-child(4) .img-card {
  border-radius: 0px 50px 50px 50px;
  background: var(--primaryColor);
  color: var(--mainColor4);
}
.slider-works div:nth-child(4) .img-card p {
  color: var(--mainColor4);
}

.slick-dots {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: auto;
  gap: 4px;
  right: 0;
  margin: 0;
  transform: translate(10%, 50%);
  top: 50%;
  padding-inline: 3rem !important;
  list-style-type: none;
}
.slick-dots li {
  width: auto;
  display: flex;
  justify-content: end;
}

.slick-slider {
  position: unset;
}

.slick-dots button {
  display: block;
  width: 15px;
  height: 15px;
  text-align: center;
  border-radius: 50%;
  border: none;
  background-color: var(--primaryColor);
  opacity: 0.5;
  text-indent: -9999px;
  transition: 0.7s !important;
}

.slick-active button {
  opacity: 1;
}

footer li, .dropdown-menu li:has(.dropdown-item) {
  transition: transform 0.3s ease-in-out !important;
}
footer li:hover, .dropdown-menu li:has(.dropdown-item):hover {
  cursor: pointer;
  transform: translateX(5px) !important;
}
footer li:hover a, .dropdown-menu li:has(.dropdown-item):hover a {
  color: var(--SecondaryColor) !important;
}

.nav-link span {
  position: relative;
  font-size: 16px !important;
  font-weight: 500;
}

.nav-link span::after {
  content: "";
  width: 0%;
  height: 2px;
  bottom: -5px;
  border-radius: 12px !important;
  background-color: var(--primaryColor);
  transition: all 0.25s ease-out;
  z-index: 111;
  display: flex;
  margin: auto;
}

.nav-link span {
  transition: color 0.5s ease, font-weight 0.5s ease;
}

.nav-link:hover span {
  font-weight: 700 !important;
  color: var(--primaryColor) !important;
}

.nav-link:hover span::after {
  width: 100%;
}

.property-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background: var(--mainColor4);
}
.property-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #FACC15 !important;
}
.property-card:hover img {
  transition: transform 0.3s ease;
  transform: scale(1.05);
}

.pagination li a {
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 0px;
  color: var(--mainColor2);
}

.active > .page-link,
.page-link.active {
  background-color: var(--primaryColor);
  color: var(--mainColor4);
}

.form-check .form-check-input {
  margin-left: 0em;
  margin-inline: 3px;
}

.form-check-input:checked {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.dropdown-toggle::after {
  display: none;
}

input::-ms-reveal {
  display: none;
}

html[lang=ar] .toggle-password {
  left: 20px;
  right: auto;
}

.password-container {
  position: relative;
  display: flex;
}

.toggle-password {
  position: absolute;
  right: 20px;
  left: auto;
  top: 33%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  font-family: "ar";
}

.tab {
  display: none;
}

.step h6 {
  text-align: center;
  font-size: 18px;
}
.step .numder {
  justify-content: center;
}
.step .numder .dots {
  height: 40px;
  width: 40px;
  background-color: var(--mainColor4);
  color: var(--SecondaryColor);
}
.step .numder .dots .fa-check {
  display: none;
}
.step .numder::after {
  content: "";
}
.step:last-child .numder::after {
  content: unset;
}

.step.finish .numder .dots {
  background-color: var(--primaryColor);
  color: var(--mainColor4);
}
.step.finish .numder .dots .fa-circle {
  display: none;
}
.step.finish .numder .dots .fa-check {
  display: block;
}
.step.finish .numder::after {
  border-top: 1px solid var(--mainColor3);
}

.step.active .numder .dots {
  background-color: var(--primaryColor);
  font-size: 12px;
}
.step.active .numder .dots .fa-circle {
  display: block;
}
.step.active .numder .dots .fa-check {
  display: none;
}

label {
  cursor: pointer;
}

label.img:has(input:checked) {
  border: 1px solid var(--primaryColor) !important;
}

.subscribed {
  background: var(--linear-gradient);
}

.subscribe-now {
  background: linear-gradient(to bottom, #BB5C01, #2D2319);
}

.text-red {
  color: #FF3B30 !important;
}

a.btn, button.btn {
  font-weight: 500;
}
a.btn:hover, button.btn:hover {
  cursor: pointer;
  transform: translateY(-2px) !important;
}
a.btn.primary-color:hover, button.btn.primary-color:hover {
  background-color: var(--SecondaryColor) !important;
  color: var(--primaryColor) !important;
}

.connection:hover svg {
  transform: translateY(-4px);
}

.connection svg {
  transition: all 0.8s ease;
}

.add-img {
  width: 82px;
  height: 82px;
  background-color: var(--SecondaryColor);
  color: var(--primaryColor) !important;
}

.img-picture, .profile-picture {
  background: url("data:image/svg+xml,%3Csvg%20width='25'%20height='26'%20viewBox='0%200%2025%2026'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M12.6537%2011.6541C12.6355%2011.6298%2012.6121%2011.6102%2012.5855%2011.5967C12.5588%2011.5832%2012.5296%2011.5762%2012.4999%2011.5762C12.4703%2011.5762%2012.441%2011.5832%2012.4144%2011.5967C12.3877%2011.6102%2012.3644%2011.6298%2012.3461%2011.6541L9.61175%2015.252C9.58921%2015.2819%209.57522%2015.3178%209.57139%2015.3556C9.56755%2015.3935%209.57403%2015.4316%209.59007%2015.4658C9.60612%2015.5%209.63108%2015.5287%209.66212%2015.5489C9.69315%2015.569%209.72899%2015.5796%209.76556%2015.5795H11.5698V21.7342C11.5698%2021.8459%2011.6576%2021.9373%2011.7651%2021.9373H13.2299C13.3373%2021.9373%2013.4252%2021.8459%2013.4252%2021.7342V15.582H15.2343C15.3979%2015.582%2015.4882%2015.3865%2015.3881%2015.2545L12.6537%2011.6541Z'%20fill='%23AA835E'/%3E%3Cpath%20d='M19.8096%209.31074C18.6914%206.24355%2015.8423%204.0625%2012.5049%204.0625C9.16748%204.0625%206.31836%206.24102%205.2002%209.3082C3.10791%209.87949%201.5625%2011.8625%201.5625%2014.2188C1.5625%2017.0244%203.74756%2019.2969%206.44287%2019.2969H7.42188C7.5293%2019.2969%207.61719%2019.2055%207.61719%2019.0938V17.5703C7.61719%2017.4586%207.5293%2017.3672%207.42188%2017.3672H6.44287C5.62012%2017.3672%204.84619%2017.027%204.27002%2016.41C3.69629%2015.7955%203.39111%2014.9678%203.41797%2014.1096C3.43994%2013.4393%203.65967%2012.8096%204.05762%2012.2789C4.46533%2011.7381%205.03662%2011.3445%205.67139%2011.1693L6.59668%2010.918L6.93604%209.98867C7.146%209.40977%207.43896%208.86895%207.80762%208.37891C8.17156%207.8932%208.60267%207.46624%209.08691%207.11191C10.0903%206.37813%2011.272%205.98965%2012.5049%205.98965C13.7378%205.98965%2014.9194%206.37813%2015.9229%207.11191C16.4087%207.46738%2016.8384%207.89395%2017.2021%208.37891C17.5708%208.86895%2017.8638%209.4123%2018.0737%209.98867L18.4106%2010.9154L19.3335%2011.1693C20.6567%2011.54%2021.582%2012.7918%2021.582%2014.2188C21.582%2015.0592%2021.2671%2015.8514%2020.6958%2016.4455C20.4156%2016.7386%2020.0823%2016.971%2019.7152%2017.1292C19.3481%2017.2874%2018.9545%2017.3683%2018.5571%2017.3672H17.5781C17.4707%2017.3672%2017.3828%2017.4586%2017.3828%2017.5703V19.0938C17.3828%2019.2055%2017.4707%2019.2969%2017.5781%2019.2969H18.5571C21.2524%2019.2969%2023.4375%2017.0244%2023.4375%2014.2188C23.4375%2011.865%2021.897%209.88457%2019.8096%209.31074Z'%20fill='%23AA835E'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  cursor: pointer;
  width: 82px;
  height: 82px;
}

.apnd-img {
  display: flex;
  position: relative;
  text-align: center;
  overflow: hidden;
  width: 82px;
  height: 82px;
}

.apnd-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.apnd-img i {
  position: absolute;
  right: 0px;
  top: 4px;
  color: var(--primaryColor);
  cursor: pointer;
}

.border-off::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='71' height='69' viewBox='0 0 71 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M60.0844 36.1985C60.8338 31.2983 62.278 26.4659 63.712 21.7931C64.0241 20.7881 65.0805 20.2013 66.0373 20.5516C67.0255 20.8342 67.5657 21.8972 67.2844 22.8342C65.8907 27.3616 64.4738 32.0416 63.7712 36.7174C63.6258 37.7158 62.6732 38.432 61.6514 38.2979C60.6303 38.1641 59.9398 37.1973 60.0844 36.1985Z' fill='%23AA835E'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M36.8903 41.6018C32.9377 31.3857 30.3002 20.6993 26.0952 10.5329C25.6892 9.61282 26.144 8.50854 27.088 8.11639C28.0328 7.72455 29.1356 8.14114 29.5109 9.12918C33.7369 19.3051 36.3947 30.0006 40.3683 40.2263C40.7274 41.207 40.2457 42.2988 39.2833 42.6827C38.3524 42.9989 37.2494 42.5826 36.8903 41.6018Z' fill='%23AA835E'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.59579 42.3629C7.57617 44.4062 11.5567 46.4492 15.5378 48.4928C16.4706 48.9141 16.8222 50.0557 16.347 50.987C15.871 51.918 14.7701 52.2388 13.8366 51.8172C9.84947 49.7708 5.86282 47.7251 1.87636 45.679C0.974236 45.1897 0.62724 44.0506 1.1079 43.1217C1.55785 42.2608 2.69435 41.8739 3.59579 42.3629Z' fill='%23AA835E'/%3E%3C/svg%3E");
  right: 0px;
  left: -40px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  height: 50px;
  top: -60px;
}

.nav-pills .nav-link, .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: var(--mainColor4);
  background-color: var(--primaryColor);
  opacity: 0.6;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  opacity: 1;
}

.slick-slider .slick-track {
  margin-left: initial;
  margin-right: initial;
}

.step {
  width: 33%;
  position: relative;
}
.step::after {
  position: absolute;
  content: "";
  border: 2px var(--SecondaryColor) dashed;
  bottom: 50%;
  top: 30%;
  z-index: -1;
  width: 80%;
  right: 0px;
  left: auto;
  transform: translate(50%, -50%);
  height: 2px;
}
.step:last-child:after {
  content: unset;
}

.second-navbar .nav-pills .nav-link {
  background-color: transparent;
  opacity: 1;
  color: var(--mainColor2);
}
.second-navbar .nav-pills .nav-link i, .second-navbar .nav-pills .nav-link path {
  stroke: var(--primaryColor);
  color: var(--primaryColor);
}
.second-navbar .nav-pills .nav-link.active, .second-navbar .nav-pills .show > .nav-link {
  background: var(--linear-gradient);
  color: var(--mainColor4);
}
.second-navbar .nav-pills .nav-link.active i, .second-navbar .nav-pills .nav-link.active path, .second-navbar .nav-pills .show > .nav-link i, .second-navbar .nav-pills .show > .nav-link path {
  stroke: var(--mainColor4);
  color: var(--mainColor4);
}

body:has(.form-scroll) {
  /* background: url('../assets/imgs/home/Signup.png'); */
  /* background: url('assets/imgs/home/Signup.png'); */
    background: url('../imgs/home/Signup.png');
    background-position: center;
    background-size: contain;

}
body:has(.form-scroll) .navContainer, body:has(.form-scroll) footer {
  display: none;
}

.btn {
  font-weight: 600;
}

.dropdown-menu li {
  transform-origin: left center;
}

.dropdown-menu li:hover {
  animation: dropdown-item-hover 0.35s ease forwards;
}

html[lang=ar] .dropdown-menu li {
  transform-origin: right center;
}

html[lang=ar] .dropdown-menu li:hover {
  animation-name: dropdown-item-hover-rtl;
}

@keyframes dropdown-item-hover {
  0% {
    transform: translateX(0) scale(1);
  }
  60% {
    transform: translateX(7px) scale(1.02);
  }
  100% {
    transform: translateX(5px) scale(1);
  }
}
@keyframes dropdown-item-hover-rtl {
  0% {
    transform: translateX(0) scale(1);
  }
  60% {
    transform: translateX(-7px) scale(1.02);
  }
  100% {
    transform: translateX(-5px) scale(1);
  }
}/*# sourceMappingURL=style.css.map */
.nav-link span ,.dropdown-toggle{
  color: var(--mainColor2);
  font-weight: 500;
}

.dropdown-toggle:hover span {
    color: var(--primaryColor);
      font-weight: 700;

}  
.offcanvas .dropdown-menu.show {
  display: block;                
  animation: fadeInUp .3s ease;  
  animation-fill-mode: both;     
  transform-origin: top center;
  will-change: opacity, transform;
  li a{
    color: var(--mainColor2);
  }
}


.dropdown-item.active, .dropdown-item:active {
  background-color: #e9ecef;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: #E6EEF5;
    a{
  color: var(--primaryColor) !important;

    }
}
 @keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
} 
.dropdown-toggle path {
    stroke: var(--mainColor2);
}

.navbar-brand1 {
    display: none;
}