

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap");
:root {
  --main-color: #061c3d;
  --bg-color: #ef53501a;
  --sec-color: #ef5350;
  --hover-color: #b92b27;
}

@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Regular.ttf");
}
@font-face {
  font-family: "Medium";
  src: url("../fonts/IBMPlexSansArabic-Medium.ttf");
}

body {
  direction: rtl;
  text-align: start;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  overflow-x: hidden;
}

button:focus {
  border: none;
  outline: none;
}

input:focus {
  outline: none;
}

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

a,
a:hover {
  text-decoration: none;
}
html {
  scroll-behavior: smooth; /* */
}
header {
  background: #fffffff2;
  border-bottom: 1px solid #f3f4f6;
}
.sticky {
  position: fixed !important;
  width: 100%;
  left: 0;
  right: 0;
  top: 0px;
  z-index: 4;
  transition: all 0.3s ease;
}
.left-header {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.logo img {
  max-height: 64px;
  filter: brightness(0) invert(1);
}
/* nice select */
.nice-select {
  width: 100%;
  margin-bottom: 16px;
  text-align: start !important;
  padding-left: 30px;
  padding-right: 18px;
  border: 1px solid #dadada;
  border-radius: 2px;
}
.nice-select::after {
  left: 12px;
  right: auto;
  border-bottom: 2px solid #01568d;
  border-right: 2px solid #01568d;
}
.nice-select .option {
  text-align: start;
  padding-left: 29px;
  padding-right: 18px;
}
.nice-select .list {
  width: 100%;
}
.nice-select:after {
  width: 10px;
  height: 10px;
  top: 20px;
}
/* Start header */
.sidebar .lang {
  padding-inline-start: 20px;
  padding-top: 10px;
}
.sidebar .lang a {
  color: #222222;
  font-size: 20px;
}
.sidebar-logo {
  padding-inline-start: 20px;
  margin-top: 36px;
}
.sidebar-logo img {
  height: 56px;
}

.navbar-menu li {
  padding: 0 2px;
}

.navbar-menu li a {
  transition: all 0.3s;
  padding: 8px 22px;
  font-size: 15px;
  font-weight: 500;
  color: #364153;
  border-radius: 50px;
}

.navbar-menu li a:hover,
.navbar-menu li.current-menu-item a {
  color: var(--sec-color);
}

.lang a {
  text-transform: capitalize;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.mynav .row {
  align-items: center;
  padding: 16px 0 15px;
}

.search-btn i {
  transition: all 0.7s;
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-menu,
.project-type ul {
  display: flex;
  align-items: center;
}

.navbar {
  padding: 0;
  justify-content: center;
}

.request a {
  color: #fff;
  min-width: 174px;
  padding: 16px 10px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #ff5f47 0%, #ff7a5a 100%);
  box-shadow: 0px 8px 10px -6px #ff5f474d;
  box-shadow: 0px 20px 25px -5px #ff5f474d;
}
.navbar-toggler i {
  color: #fff;
  font-size: 25px;
}

.responsive-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
}
.responsive-menu .left-menu {
  display: flex;
}

.responsive-menu .lang {
  margin-inline-start: 6px;
  color: var(--bg-color);
  text-transform: capitalize;
  font-weight: bold;
}

.navbar-toggler,
.responsive-menu .searchForm .btnSearch {
  padding: 0;
  width: 38px;
  height: 38px;
  background-color: var(--sec-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.responsive-menu .searchForm .btnSearch i {
  color: #fff;
}
/* Sidebar */

.sidebar {
  position: fixed;
  top: 0px;
  /* bottom: 0; */
  right: -350px;
  height: 100%;
  width: 350px;
  background-color: #fff;
  z-index: 999;
  padding: 20px 0;
  z-index: 999999;
  transition: all 0.7s;
  box-shadow: 0px 0px 20px #00000029;
  padding: 20px 0;
  overflow: scroll;
}

.sidebar-width {
  right: 0px;
}

.sidebar .close-side i {
  position: absolute;
  top: 20px;
  left: 20px;
  cursor: pointer;
  width: 38px;
  height: 38px;
  color: #222222;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.sidebar .side-content {
  margin-top: 45px;
}

.close-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  display: none;
}
.close-overlay.open-overlay {
  display: block;
}

.sidebar .side-content ul li {
  position: relative;
  width: 100%;
  transition: all 0.5s;
  border-bottom: 1px solid #00000014;
}

.sidebar .side-content ul li a {
  color: #364153;
  display: inline-block;
  padding: 16px 20px;
  position: relative;
  transition: all 0.4s;
}

.mynav {
  margin-top: 0;
}

/* Start hero section */

section.hero-section {
  background: #f9fafb;
  padding: 68px 0 32px;
}

.section-title h1 {
  color: #101828;
  font-size: 72px;
  font-weight: 700;
  line-height: 100px;
}

.hero-details {
  text-align: center;
}

.hero-details h2 {
  font-size: 72px;
  margin-bottom: 32px;
  color: var(--sec-color);
  font-weight: 700;
  line-height: 100px;
}

.hero-details h2 span {
  color: #101828;
}

.hero-details h5 {
  font-size: 24px;
  color: #4a5565;
}

.hero-details h5 a {
  color: #4a5565;
  text-decoration: underline;
}

.hero-details h5 span {
  color: #00a63e;
}

.hero-btns {
  margin: 93px 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.read-more.call-btn a {
  background: #fff;
  color: var(--sec-color);
  min-width: 254px;
  border: 2px solid #ef5350;
  box-shadow: none;
}
.read-more.call-btn a i {
  color: #000;
}
.hero-list ul,
.hero-list ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-list ul li {
  margin-inline-end: 24px;
}

.hero-list ul li .img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00c9501a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 10px;
}

.hero-list ul li:nth-child(2) .img {
  background: #2b7fff1a;
}

.hero-list ul li:last-of-type .img {
  background: #ad46ff1a;
}

.hero-details p {
  margin: 16px 0 64px;
  color: #8f9297;
}
.hero-details p i {
  transform: scaleX(-1);
}
.hero-list ul li span {
  font-weight: 500;
  color: #364153;
  font-size: 14px;
  font-family: "Medium";
}

.read-more a,
.read-more button {
  display: inline-flex;
  padding: 15px 10px;
  min-width: 176px;
  color: #fff;
  transition: all 0.5s;
  text-align: center;
  border-radius: 16px;
  font-weight: 500;
  border: none;
  outline: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 18px;
  background: linear-gradient(180deg, #ff5f47 0%, #ff7a5a 100%);
  box-shadow: 0px 8px 10px -6px #ff5f474d;
  box-shadow: 0px 20px 25px -5px #ff5f474d;
}

.read-more a i {
  margin-top: 6px;
  font-weight: 700;
}

.section-title {
  text-align: center;
}

/* ---------------------------------------------------    */
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }
}

.section-title h4 {
  color: #101828;
  margin-bottom: 24px;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
}
.section-title h6 {
  font-size: 14px;
  max-width: max-content;
  margin: 0 auto 23px;
  background: var(--bg-color);
  padding: 10px 16px;
  border-radius: 40px;
  color: var(--sec-color);
  font-weight: 500;
}
/* ------------------------------------------------------- */
/* Start feature section */
section {
  padding: 96px 0 80px;
  overflow: hidden;
}

.sticky .navbar-menu li a:hover,
.sticky .navbar-menu li.current-menu-item a {
  color: var(--sec-color);
}

header.sticky .mynav .row {
  padding: 10px 0;
}
.logo a {
  color: #101828;
  font-size: 24px;
  font-weight: 700;
}

.feature-item {
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  padding: 33px;
  border-radius: 16px;
  display: flex;
  transition: all 0.3s;
  margin-bottom: 32px;
  border: 1px solid #f3f4f6;
}

.section-title h5 {
  font-size: 20px;
  color: #4a5565;
  margin-bottom: 63px;
}

.feature-item .img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #ef53501a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 24px;
}
.feature-item .img i {
  color: var(--sec-color);
  font-size: 28px;
}

.feature-item .img img {
  max-width: 100%;
  max-height: 28px;
}
.feature-item .feat-name{
  width: calc(100% - 60px);
}
.feature-item .feat-name h5 {
  font-size: 24px;
  color: #101828;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 12px;
}

.feature-item .feat-name p {
  color: #4a5565;
  font-size: 16px;
  margin-bottom: 0;
}

.hero-list ul li:last-of-type .img i {
  font-size: 22px;
  color: #ad46ff;
  font-weight: 700;
}
.features {
  padding-bottom: 28px;
}

.offer-item {
  padding: 32px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  background: #fff;
  height: 100%;
}

.offer-item .icone {
  text-align: center;
  width: 48px;
  height: 48px;
  margin: auto;
}

.offer-item .icone i {
  font-size: 43px;
  color: var(--sec-color);
}

.offer-item .icone img {
  max-width: 100%;
  max-height: 100%;
}

.offer-item.more-requested {
  background: linear-gradient(
    135deg,
    rgba(239, 83, 80, 0.1) 0%,
    rgba(255, 247, 237, 1) 100%
  );
  background: linear-gradient(to bottom, #ef535075, #FFF7ED);
  border: 2px solid rgba(243, 244, 246, 1);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.more-req {
  background: linear-gradient(90deg, #ef5350 0%, #ff6900 100%);
  max-width: max-content;
  margin: auto;
  padding: 6px 22px;
  border-radius: 50px;
  color: #fff;
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.more-req span {
  font-size: 14px;
  font-weight: 700;
}

.more-req i {
  font-size: 14px;
  background: linear-gradient(190deg, #efef07, #e4dfdf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.item-name h3 {
  font-size: 30px;
  font-weight: 700;
  color: #101828;
  text-align: center;
  margin: 16px 0 23px;
}

.offer-item ul li {
  position: relative;
  padding-inline-start: 22px;
  margin-bottom: 12px;
  color: #364153;
}

.offer-item ul li::before,
.service-list ul li::before {
  position: absolute;
  content: "\f058";
  font-family: "Line Awesome Free";
  color: #00c950;
  top: 0;
  right: 0;
  font-size: 20px;
}

.offer-item .read-more a {
  min-width: 100%;
  background: linear-gradient(180deg, #364153 0%, #1e2939 100%);
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.offer-item.more-requested .read-more a {
  background: linear-gradient(180deg, #ff5f47 0%, #ff7a5a 100%);
  box-shadow: 0px 8px 10px -6px #ff5f474d;
  box-shadow: 0px 20px 25px -5px #ff5f474d;
}

.package-price {
  text-align: center;
  margin-bottom: 30px;
}

.package-price span.p {
  font-size: 60px;
  color: var(--sec-color);
  font-weight: 700;
}

.package-price span.data {
  font-size: 24px;
  color: #4a5565;
  font-weight: 400;
}

.offer-item ul {
  min-height: 210px;
  margin-bottom: 24px;
}

.additional-services {
  margin-top: 48px;
  background: linear-gradient(0deg, #ffffff, #ffffff),
    linear-gradient(135deg, rgba(239, 83, 80, 0.05) 0%, #eff6ff 100%);
  background: linear-gradient(190deg, #ef535061, #eff6ff57);
  padding: 34px;
  border-radius: 16px;
  border: 2px solid #f3f4f6;
}
.additional-services .title h3 {
  font-size: 30px;
  margin-bottom: 23px;
  color: #101828;
  font-weight: 700;
}
.additional-services .title h3 img {
  max-height: 32px;
}
.additional-services .title h6 {
  font-size: 18px;
  color: #364153;
  margin-bottom: 23px;
}
.service-list ul {
  display: flex;
  flex-wrap: wrap;
}

.service-list ul li {
  width: 32%;
  position: relative;
  padding-inline-start: 24px;
  margin-bottom: 16px;
  color: rgba(54, 65, 83, 1);
  font-weight: 500;
}

.send-your-domain-name {
  border: 1px solid rgba(243, 244, 246, 1);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  text-align: center;
  padding: 33px;
  margin-top: 32px;
}
.send-your-domain-name h3 {
  font-size: 30px;
  margin-bottom: 23px;
  font-weight: 400;
  color: #101828;
}

.send-your-domain-name h5 {
  font-size: 20px;
  color: var(--sec-color);
}
.send-your-domain-name .hero-btns {
  margin-top: 24px;
}

.contact-sec {
  background: #f9fafb;
  padding-top: 80px;
}
/* -------------------------  faq section ---------------   */
.faq {
  background: #f9fafb;
}
.faq .row,
.contact-sec .row {
  justify-content: center;
}

.card-header {
  border: none;
  padding: 0;
  border-radius: 16px 16px 0 0 !important;
  border-radius: 16px !important;
  background: #f2f3f4;
  background: linear-gradient(
    90deg,
    rgba(242, 243, 244, 1) 10%,
    rgba(249, 250, 251, 1) 100%
  );
}

.card {
  border: none;
  margin-bottom: 16px;
  padding: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
}

.card-header .btn {
  display: flex;
  padding: 18px 20px;
  width: 100%;
  position: relative;
  font-size: 18px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: none;
  text-align: start;
  color: #101828;
  background: #fff;
  font-weight: 500;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
}

.card-header .btn::after {
  color: var(--sec-color);
  content:"\f107";
  position: absolute;
  left: 20px;
  font-family: "font awesome 5 pro";
  font-weight: 400;
  top: 16px;
  font-size: 18px;
}

.card-header .btn:not(.collapsed)::after {
  color: #fff;
}

.card-body {
  padding: 21px 20px;
  border-radius: 0 0 16px 16px;
  border-top: none;
  border: none;
  background: #fff;
  padding-top: 0px;
}

.card-header .btn:not(.collapsed)::after {
  content:"\f106";
}

.card-header .btn:not(.collapsed) {
  font-size: 18px;
  background: #fff;
  color: #101828;
  padding: 10px 24px;
  border-radius: 16px 16px 0 0;
  font-weight: 500;
  box-shadow: none;
}


.card-header .btn:not(.collapsed)::after {
  color: var(--sec-color);
}

.card-body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #4a5565;
  margin-bottom: 0;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.contact-form {
  background: #fff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0px 4px 6px -4px #0000001a;
  box-shadow: 0px 10px 15px -3px #0000001a;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.nice-select {
  width: 100%;
  border-radius: 14px;
  padding: 4px 14px;
  color: #717182;
  font-size: 14px;
  line-height: 25px;
  border: 2px solid #e5e7eb;
}

section.contact-sec .row {
  align-items: center;
}

.read-more button {
  background: var(--sec-color);
  color: #fff;
  min-width: 100%;
  background: linear-gradient(180deg, #ff5f47 0%, #ff7a5a 100%);
}

.contact-form label {
  color: #1e2939;
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group {
  margin-bottom: 24px;
}
.any-more-qu {
  text-align: center;
  padding-top: 44px;
}

.any-more-qu h5 {
  font-size: 20px;
  margin-bottom: 24px;
  color: #1e2939;
  font-weight: 400;
}

.any-more-qu .read-more a {
  min-width: 160px;
}
.read-more.send-your-request button  {
  background: #fff;
  border: 2px solid #ff5f47;
  color: #ff5f47;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
}
.contact-form .read-more a{
  min-width: 100%;
  background: linear-gradient(180deg, #FF5F47 0%, #FF7A5A 100%);
box-shadow: 0px 8px 10px -6px #FF5F474D;
box-shadow: 0px 20px 25px -5px #FF5F474D;

}
.read-more.send-your-request button i {
  font-size: 22px;
  transform: rotate(-45deg);
  padding: 0 5px;
  color: #ff5f47;
  transition: all 0.3s;

}

.send-or-req {
  text-align: center;
  margin: 10px 0 25px;
  border-bottom: 1px solid #d1d5dc;
}

.send-or-req span {
  background: #fff;
  padding: 0 18px;
  position: relative;
  top: 9px;
}
/* -----------  Start footer section  -------------------- */
.fixed-icone {
  position: fixed;
  bottom: 30px;
  left: 20px;
  z-index: 9;
  animation: updown-i 4s infinite ease-in-out;
}

@keyframes updown-i {

  0%,
  100% {
    transform: translateY(-12px);
  }

  50% {
    transform: translateY(12px);
  }
}

.fixed-icone a {

  width: 53px;

  height: 53px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 9px;

  color: #fff;

  font-size: 25px;

  border-radius:50%;

  background: linear-gradient(180deg, #61FD7D 0%, #2BB826 100%);
}

.fixed-icone a.phone_link {
  background: var(--sec-color);
  color: #fff;
  font-size: 16px;
  box-shadow: none;
}

.fa-brands {
  font-weight: 400;
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
}
footer {
  margin-top: 40px;
  padding-top: 64px;
  border-top: 1px solid #e5e7eb;
}

.footer-logo img {
  height: 84px;
  width: 184px;
}

.bottom-footer {
  padding: 32px 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 48px;
}

.footer-form .form-group {
  margin-bottom: 24px;
}
.footer-form input {
  width: 100%;
  padding: 16px;
  border: none;
  outline: none;
  background: #f6f5fa1a;
  border-radius: 82px;
  color: #fff;
  font-weight: 300;
  height: 74px;
  position: relative;
}

.footer-form button {
  min-width: 92px;
  background: #05558e;
  outline: none;
  border: none;
  padding: 12px 10px;
  font-weight: 500;
  border-radius: 50px;
  color: #fff;
  position: absolute;
  top: 13px;
  left: 26px;
  transition: all 0.3s;
}

.copy-rights p {
  text-align: center;
  color: #4a5565;
  margin-bottom: 0;
  font-size: 14px;
}

.footer-logo p {
  color: #b4bbc5;
  margin-top: 24px;
}

.footer-links li a {
  color: #4a5565;
  font-weight: 400;
  transition: all 0.3s;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-soch-icon {
  margin-top: 16px;
}
.footer-soch-icon a {
  margin-inline-end: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #fff;
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 50%;
  font-size: 18px;
}

/* bottom footer */

.ryad-logo {
  height: 60px;
  margin-top: -32px;
  position: relative;
  top: 5px;
  margin-left: -20px;
}

.copy-right .row {
  align-items: center;
}

.comp-rights {
  text-align: end;
}

.copy-right p {
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
}

/* -------------------------------------------- */
/* Scroll to top */
#mybtn {
  /* display: none; */
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 99;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 45px;
  background: var(--sec-color);
  border-radius: 10px;
}

#mybtn i {
  color: #fff;
  font-size: 22px;
}
.request a i,
.read-more a i {
  padding: 0 5px;
}
.footer-disc p {
  margin-top: 24px;
  max-width: 80%;
  color: #4a5565;
  line-height: 26px;
}

.footer-logo a {
  font-size: 24px;
  color: #101828;
  font-weight: 700;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #101828;
  font-weight: 700;
}

.footer-links.contact-links li a {
  font-size: 14px;
  display: flex;
}

.footer-links.contact-links li a i {
  padding-inline-end: 7px;
  width: 21px;
  position: relative;
  top: 5px;
}

.footer-soch-icon a img {
  transition: all 0.3s;
}
span.mob-num {
  display: inline-block;
  direction: ltr;
}
@media (min-width: 991px) {
  .read-more a:hover {
    box-shadow: 0px 20px 25px -5px #ff5f4782;
  }

  .request a:hover,
  .read-more button:hover {
    box-shadow: 0px 20px 25px -5px #ff5f4782;
  }
  .offer-item .read-more a:hover {
    box-shadow: 0px 10px 15px -3px rgb(0 0 0 / 28%);
}
.offer-item.more-requested .read-more a:hover,
.contact-form .read-more a:hover {
    box-shadow: 0px 20px 25px -5px #ff5f4770;
}
  .read-more.call-btn a:hover {
    box-shadow: none;
    background: var(--sec-color);
    color: #fff;
  }
  .footer-soch-icon a:hover {
    background: var(--sec-color);
    color: var(--sec-color);
  }
  .footer-links li a:hover {
    color: var(--sec-color);
  }
  .footer-soch-icon a:hover img {
    filter: brightness(0) invert(1);
  }
  .feature-item:hover {
    border-color: var(--bg-color);
    box-shadow: 0px 10px 14px 0px #0000001a;
  }
  .read-more.send-your-request button:hover{
    background: #ff5f47;
    color: #fff;
  }
  .read-more.send-your-request button:hover i{
    color: #fff;
  }
}

.nav-link.active {
  background: var(--bg-color);
  color: var(--sec-color);
}

/* ------------------------------------------------------ */

.hero-details-img img {
  animation: moveupdown 4s infinite ease-in-out;
}

@keyframes moveupdown {
  0%,
  100% {
    transform: translateY(14px);
  }

  50% {
    transform: translateY(-14px);
  }
}
