/* ===============================
    Root Variables
    =============================== */
:root {
  --theme-color: #fd8b21;
  --bg-color: #141414;
  --bg-black: #000000;
  --bg-white: #ffffff;
  --bg-blue: #007aff;
  --bg-grey: #cccccc3d;
  --text-color: #393939;
  --link-color: #686868;
  --para-color: #cccccc;
  --transition: all 0.5s ease-in-out;
  --theme-family: "Unbounded", sans-serif;
}

/* ===============================
    Global Base Styles
    =============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.67;
  color: var(--bg-white) !important;
  background-color: var(--bg-color) !important;
  word-break: break-word;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.form-sec select#subject-field {
  background-color: #141414 !important;
  color: #ccc !important;
}

/* ===============================
    Links
    =============================== */
a {
  color: var(--link-color);
  text-decoration: none;
  white-space: normal;
  transition: var(--transition);
  text-decoration: none !important;
}

a:hover,
a:focus {
  color: var(--theme-color) !important;
  outline: none;
}

/* ===============================
    Images
    =============================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===============================
    Form Elements
    =============================== */
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  appearance: none;
  border: none;
  background: transparent;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  transition: var(--transition);
}

/* ===============================
    Lists & Paragraphs
    =============================== */
ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

p {
  color: var(--para-color);
  margin: 0 0 1em;
  margin-block-start: 0;
  margin-block-end: 0.9rem;
}

.para-main {
  font-size: 16px !important;
  line-height: 25px;
  font-weight: 500 !important;
  font-family: "Inter", sans-serif;
}

.theme-family {
  font-family: var(--theme-family);
}

.top-pd {
  padding-top: 80px;
}

.bottom-pd {
  padding-bottom: 50px;
}

.sec-pd {
  padding: 4% 0 4%;
}

.sec-mg {
  margin: 4% 0 4%;
}

.sec-hd {
  font-size: 3rem;
  color: var(--bg-white);
  font-family: var(--theme-family);
}

/* ===============================
    Utility Classes (Optional)
    =============================== */

.sec-bg-black {
  background-color: var(--bg-black);
}

.theme-bg-color {
  background-color: var(--theme-color);
}

.border-b {
  border-bottom: 2px solid var(--theme-color) !important;
}

.theme-color {
  color: var(--theme-color) !important;
}

.theme-bg {
  background-color: var(--bg-color) !important;
}

.sec-title .line {
  opacity: 1;
  color: var(--theme-color) !important;
}

.sec-title h4 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin: 0;
}

body.no-scroll {
  overflow: hidden;
}

/* ---------slider---------- */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--theme-color) !important;
  width: 3rem !important;
  height: 3rem !important;
  background-position: center !important;
  background-size: 60% 60% !important;
  border-radius: 100%;
}

.carousel-control-prev {
  width: fit-content !important;
  left: -5% !important;
}

.carousel-control-next {
  width: fit-content !important;
  right: -5% !important;
}

.slick-slide {
  margin: 0 10px;
}

/* ------theme button------ */

.theme-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "poppins";
  gap: 10px;
  font-weight: 600;
  color: var(--bg-black);
  padding: 8px 8px 8px 30px;
  border-radius: 40px;
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
}

.theme-btn:focus {
  color: var(--bg-black) !important;
}

.theme-btn:hover {
  color: var(--bg-white);
  background-color: transparent;
}

.theme-btn .icon {
  color: var(--bg-white);
  background-color: var(--bg-black);
  padding: 6px 8px;
  border-radius: 100%;
  transform: rotate(-30deg);
  transition: var(--transition);
}

.theme-btn:hover .icon {
  background-color: var(--theme-color);
  color: var(--bg-black);
  transform: none;
}

/* ------numbox util------ */
.num-box h5 {
  font-family: var(--theme-family);
  font-weight: 400 !important;
}

.num-box p {
  font-family: "Inter", sans-serif;
  font-weight: 500 !important;
  font-size: 16px !important;
}

.num-box svg {
  font-size: 33px;
  color: var(--theme-color);
}

/* -------icon util-------- */
.circle-fill-icon {
  padding: 12px 10px;
  color: var(--bg-black);
  background-color: var(--theme-color);
  border-radius: 100%;
  font-size: 19px;
  transition: var(--transition);
  border: 1px solid var(--theme-color);
}

.arrow-icon {
  transform: rotate(-30deg);
}

.hover-icon:hover {
  transform: none !important;
  background-color: var(--bg-white);
  border: 1px solid var(--theme-color);
}

/* --------card util-------- */

.card {
  background-color: var(--bg-black) !important;
  border-right: 4px solid var(--bg-grey) !important;
  border-left: 4px solid var(--bg-grey) !important;
  transition: var(--transition);
}

.card-border-y {
  border-top: 1px solid var(--bg-grey) !important;
  border-bottom: 1px solid var(--bg-grey) !important;
}

.hover-card:hover {
  background-color: var(--theme-color) !important;
  border-color: var(--bg-white) !important;
}

.hover-card:hover .circle-fill-icon {
  background-color: var(--bg-white);
  transform: none;
}

.card-title {
  font-size: 25px;
  font-weight: 400;
  color: var(--bg-white) !important;
  font-family: var(--theme-family);
}

.card p {
  color: var(--para-color);
  font-family: "Inter", sans-serif;
}

.card-head {
  border-bottom: 1px solid var(--bg-grey);
  padding-bottom: 0.5rem;
  margin: 0.5rem;
}

.booking-card {
  background-color: var(--bg-color) !important;
}

.booking-card .num-box {
  border-right: 1px solid var(--bg-grey);
}

/* -------tabs-------- */
.tabs .nav-link {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: var(--bg-white);
  transition: var(--transition);
}

.tabs .nav-link.active {
  background-color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
}

.tabs .nav-link:hover {
  color: var(--bg-white);
  border-color: var(--theme-color) !important;
}

/* -----------accordion------------ */
.accordion-item {
  border: 1px solid var(--bg-grey) !important;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}

.accordion-button:focus {
  box-shadow: 0 0 10px var(--theme-color) !important;
}

.accordion-button {
  background-color: transparent !important;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  box-shadow: 0 0 10px var(--theme-color) !important;
  background-color: var(--theme-color) !important;
}

.accordion-button::after {
  filter: invert(1);
}

/* ------------popup------------ */
.popup-layout {
  width: 845px;
  height: 549px;
  position: fixed;
  left: 0;
  z-index: 9999999999999999999999;
  background: #b16621;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  top: 40px;
  margin: auto;
  backdrop-filter: calc(0.5);
  display: none;
  background-image: linear-gradient(to right, rgb(0 0 0 / 79%), rgb(0 0 0 / 70%)), url(https://www.ionos.com/digitalguide/fileadmin/DigitalGuide/Teaser/logo-design-t.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.form-popup-overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}

.form-popup-overlay {
  display: none;
}

.popup-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999 !important;
}

.popup-close:hover {
  background-color: #3c4142;
}

.popup-wrapper {
  width: 100%;
  height: 100%;
  padding: 1.5rem 2rem;
  align-items: center;
  border-radius: 15px;
}

.popup-layout .popup-head {
  margin-bottom: 2rem;
}

.popup-layout .popup-head h5 {
  color: #ffffff;
  font-size: 33px;
  font-weight: 200;
}

.popup-layout .popup-head h5 strong {
  font-weight: 600;
}

.popup-layout .popup-head h4 {
  color: #ffffff;
  font-size: 55px;
  font-weight: 300;
}

.popup-layout .popup-head h4 strong {
  font-weight: 600;
}

.popup-layout .contact-info:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.popup-layout .contact-info h6 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.popup-layout .contact-info a {
  color: #fbf7f7;
  font-size: 16px;
  font-weight: 300;
}

.popup-layout .contact-info a:hover {
  color: #fff !important;
}

.form-group {
  margin-bottom: 15px;
  position: relative !important;
}

.form-icon {
  position: relative;
}

.element-24 {
  top: 100px;
  right: 100px;
  animation: rotateElement 6000ms infinite linear
}

.element {
  filter: invert(1);
  position: absolute;
}

.form-popup-overlay.active {
  display: block;
}

.popup-layout .btn-style-2 {
  width: 100%;
  color: var(--bg-white);
  padding: 11px 30px;
  border: 1px solid var(--bg-white);
  font-size: 18px;
  font-weight: 700;
  background-color: #fd8b21;
  transition: var(--transition) !important;
}

.popup-layout .btn-style-2:hover {
  background: var(--bg-white);
  color: var(--bg-black);
}

.popup-layout .contact-info {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--bg-white);
  margin-left: 20px;
}

.form-icon svg {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  left: 11px;
  font-size: 15px;
  color: var(--theme-color);
  z-index: 2;
}

.text-area-box svg {
  top: 16%;
}

.popup-layout .popup-field::placeholder {
  color: var(--bg-black);
}

.popup-layout .popup-field {
  width: 100%;
  background-color: var(--bg-white);
  color: var(--bg-black);
  border: 1px solid #959595;
  height: 43px;
  border-radius: 5px !important;
  padding: 0 15px 0 33px;
  font-size: 14px;
  color: #0c0b0bcc;
}

.popup-layout .text-area {
  height: auto !important;
}


/* --------animation---------- */

.beat {
  animation: beat 3s ease infinite;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes rotateElement {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===============================
    Custom Scrollbar (WebKit Browsers)
    =============================== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  border-radius: 10px;
  border: 2px solid var(--bg-color);
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--bg-brown);
}

/* ===============================
    Firefox Scrollbar
    =============================== */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--theme-color) var(--bg-color);
}

.inline_block li {
  display: inline-block;
}

.inline_block {
  margin: 0;
  padding: 0;
}

.line {
  font-size: 22px;
  position: relative;
  color: var(--color-yellow);
  background-color: #ffffff;
  z-index: 1;
  padding: 0px 10px 0 10px;
}

.line::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 13px;
  top: 2px;
  right: -42px;
  border-bottom: 2px solid var(--color-yellow);
  z-index: -1;
}

.line::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 20px;
  right: -51px;
  top: 14px;
  border-bottom: 2px solid var(--color-yellow);
  z-index: -1;
}

/* --------Navbar--------- */
.navbar {
  position: sticky !important;
  top: 0;
  z-index: 99;
  background-color: var(--bg-black);
}

.navbar-logo {
  width: 108px;
}

.navbar-nav {
  gap: 10px !important;
}

.navbar .nav-link:hover {
  color: var(--theme-color);
}

.dropdown-menu {
  overflow: hidden;
  background-color: var(--bg-color) !important;
  padding: 0 !important;
  width: fit-content !important;
}

.dropdown-item {
  color: var(--bg-white) !important;
  padding: 10px 20px !important;
  font-family: "poppins";
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--bg-grey) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar .nav-link {
  font-family: "poppins";
  font-weight: 500;
  color: var(--bg-white);
}

.navbar .nav-link.active {
  color: var(--bg-white) !important;
}

/* -----------Hero----------- */
.hero {
  padding: 6rem 0;
}

.hero h1 {
  font-size: 4.4rem;
  margin: 0;
  color: var(--bg-white);
  font-family: var(--theme-family);
}

.hero h3 {
  font-size: 17px;
  color: var(--bg-white);
  font-family: var(--theme-family);
}

.hero .auto-typed {
  font-size: 3.5rem;
  color: var(--theme-color);
}

.vertical-line {
  height: 100%;
  border-left: 1px solid var(--bg-grey);
}

/* ------------Banner------------ */
.banner {
  position: relative;
  background-image: linear-gradient(97deg,
      var(--bg-black) 22%,
      transparent 100%);
}

.banner::before {
  content: "";
  position: absolute;
  background: url("../img/Banner-img.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}

.banner .content {
  height: 27rem;
}

.breadcrumb {
  overflow: hidden;
  border-color: var(--theme-color) !important;
  border-top: none !important;
  border-bottom: none !important;
  background-color: var(--bg-white);
  padding: 8px 12px !important;
}

.breadcrumb .icon {
  color: var(--theme-color);
}

.breadcrumb-item a {
  color: var(--bg-white);
}

.breadcrumb-item.active {
  color: var(--bg-white) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bg-white) !important;
}

.breadcrumb li {
  z-index: 3;
}

.breadcrumb::before {
  content: "";
  position: absolute;
  background: var(--bg-white);
  opacity: 0.2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* ////////////////About Page/////////////// */

/* -----------Why Choose Us------------ */
.choose {
  padding-top: 10rem;
}

.choose .card-section {
  width: 30%;
}

.choose .img-section {
  width: 40%;
}

.choose .card:hover .big-icon {
  background-color: var(--bg-white);
}

.choose .card:hover .para-main {
  color: var(--bg-white);
}

/* --------------team section-------------- */
.team-sec .logo-img {
  width: 55px !important;
  height: 55px !important;
}

.profile-card {
  min-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#profile-card1 {
  background-image: url(../img/Team-8.jpg);
}

#profile-card2 {
  background-image: url(../img/Team2.jpg);
}

#profile-card3 {
  background-image: url(../img/Team3.jpg);
}

#profile-card4 {
  background-image: url(../img/Team4.jpg);
}

.profile-card .social-icons {
  transform: translateX(100px);
  transition: var(--transition);
}

.profile-card:hover .social-icons {
  transform: none;
}

/* /////////////services page///////////////// */
.service-slider {
  padding: 9rem 0 3%;
}

.service-slider .slider-section {
  background-color: var(--bg-color);
}

/* /////////////services description///////////////// */
.services-desc .desc-img {
  width: 49%;
}

.desc-img-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* create stacking context */
}

.desc-img-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/service-desc.jpg") center/cover no-repeat;
  z-index: -1;
  /* send background BEHIND everything */
}

.desc-img-card>* {
  position: relative;
  z-index: 2;
  /* bring all direct children above */
}

/* /////////////Contact Page//////////// */
.contact-page {
  background-color: var(--bg-black) !important;
}

.contact-page .work {
  background-color: var(--bg-color);
}

.contact-page .slider {
  background-color: var(--bg-color) !important;
}

.contact-boxes .big-icon {
  background-color: var(--theme-color);
}

.contact-boxes .big-icon:hover {
  background-color: var(--bg-white);
  border-color: var(--bg-white);
}

.contact-page .banner .content {
  height: 31rem;
}

.contact-boxes {
  margin-top: -6rem;
}
.contact-boxes .card-title{
  font-size: 17px !important;

}

.contact-boxes .card {
  height: -webkit-fill-available;
}

.map iframe {
  height: 400px;
  width: 100%;
  position: relative;
  z-index: -1;
}

.map-upper-box {
  margin-bottom: -4rem;
}

/* /////////////Blog Details///////////// */
.blog-logo {
  height: 80px;
  width: 80px;
  border-radius: 100%;
}

/* /////////////Home///////////////// */

/* -----------About--------- */
.about .outer-card {
  height: -webkit-fill-available;
  background: url(../img/About-1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about .img-card {
  background: url(../img/About-2.jpg);
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 279px;
}

/* ----------Portfolio---------- */

.portfolio .img-link img {
  transition: var(--transition);
}

.portfolio .img-link img:hover {
  transform: scale(1.1);
}

/* ------------Services----------- */

.services .card .number {
  font-size: 3.5rem;
  font-weight: 600;
  font-family: var(--theme-family);
  color: transparent;
  -webkit-text-stroke: 1px var(--theme-color);
}

.services .bg-box {
  background: url(../img/services-2.jpg) no-repeat center/cover;
  min-height: 200px;
}

.services .shape {
  height: 60px;
  margin-bottom: -5px;
}

.services .circle-fill-icon {
  transform: rotate(-40deg);
  padding: 15px 12px;
}

/* -------------Call to action------------- */
.action {
  position: relative;
  padding-top: 5%;
}

.action::before {
  content: "";
  position: absolute;
  background: url(../img/call-to-action.jpg) no-repeat center center / cover;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  opacity: 0.3;
}

.wrapper {
  padding: 2rem 0;
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: #000000;
  z-index: 999;
}

.fa-play:before {
  content: "\f04b";
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(253, 139, 33, 0.3);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -25px;
  bottom: -25px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.action .card {
  position: relative;
  top: 5rem;
}

/* ----------pricing----------- */
.pricing {
  padding: 140px 0 70px;
}

.price-title-sm {
  font-size: 17px;
  color: var(--para-color);
  font-weight: 400;
}

.line-through {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-title {
  font-size: 2rem;
}

.price-box {
  background-color: var(--bg-grey);
  padding: 2% 0 4% 10%;
  border-radius: 50px 10px 10px 50px;
  margin: 5% 0 5%;
}

.pricing .card {
  height: -webkit-fill-available !important;
  padding: 7% 4%;
}

.pricing h5 {
  font-size: 30px;
  font-weight: 500;
}

.pricing .fa-check {
  color: var(--theme-color);
}

.pricing-btn {
  margin-top: 2.5rem;
}

.pricing .scroll-box {
  height: 13rem;
  padding: 10px 0 20px;
  overflow: auto;
  cursor: pointer;
}

/* --------states--------- */

.stats-section {
  position: relative;
  background: url(../img/statsBg.jfif) center/cover no-repeat;
  /* padding: 100px 0; */
  color: #fff;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stat-box {
  text-align: center;
}

.stats-section .big-icon {
  background: var(--theme-color);
  color: var(--bg-black);
  margin: 0 auto 20px;
  padding: 32px;
}

.big-icon {
  width: 28px;
  padding: 25px;
  height: 28px;
  color: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px !important;
  transition: var(--transition);
  border: 1px solid var(--theme-color);
}

/* ----------Testimonials------------ */
.testimonial {
  padding: 11.7% 8%;
  cursor: pointer;
  height: -webkit-fill-available !important;
}

.testi .para-main {
  color: var(--para-color) !important;
}

.testi .icon {
  color: var(--theme-color);
}

.testi .icon.fa-quote-right {
  font-size: 3rem;
}

.testimonial .card-title {
  font-size: 20px;
}

.testimonial img {
  height: 60px;
  width: 60px;
  border-radius: 100% !important;
}

.img-box .logo-img {
  height: 60px;
  width: 60px;
  border-radius: 100% !important;
}

.client-img-card {
  padding: 1rem 3rem;
  margin-top: 2rem;
}

.client-img-card img {
  margin-right: -24px;
  border: 3px solid var(--theme-color);
}

/* -----------Get In Touch----------- */
.touch .img-bg {
  height: 18rem;
  background: url(../img/Project-2.jpg) center/cover no-repeat;
}

.form-sec {
  border: 1px solid var(--bg-grey);
}

form .input {
  border: 1px solid var(--bg-grey);
  padding: 12px;
}

/* ---------Work---------- */
.work .card {
  position: relative;
  top: 7rem;
  background-color: var(--bg-color) !important;
  width: 90%;
  margin: 0 auto;
  padding: 4%;
}

.work #row1 {
  border-bottom: 1px solid var(--bg-grey);
}

.work img {
  margin-top: -8.5rem;
}

/* ------------footer----------- */
.footer-top {
  padding-top: 15rem !important;
}

.footer-logo {
  width: 108px;
  margin-bottom: 2rem;
}

.social-icons {
  margin-right: 5px;
}

.link-box .icon {
  color: var(--theme-color);
}

.link {
  list-style: none;
  color: var(--para-color);
}

.link {
  transition: var(--transition);
}

.link:hover {
  color: var(--theme-color) !important;
}

.footer-bottom {
  border-top: 2px solid var(--bg-grey);
  padding: 2rem 0;
}








/* \\\\\\\\\\\\\\privacy policy\\\\\\\\\\\\ */

/* ===== COMMITMENT BANNER ===== */
.commitment-banner {
  background: #0d0d0d;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 30px 0;
}

.commitment-inner {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-left: 4px solid var(--theme-color);
  border-radius: 12px;
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.commitment-inner i {
  color: var(--theme-color);
  font-size: 26px;
  margin-top: 2px;
  flex-shrink: 0;
}

.commitment-inner p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

.commitment-inner p strong {
  color: var(--theme-color);
  font-style: normal;
}

/* ===== INQUIRY BAR ===== */
.inquiry-bar {
  background: #1a1a1a;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 22px 0;
}

.inquiry-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.inquiry-icon {
  width: 50px;
  height: 51px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inquiry-icon i {
  color: var(--theme-color);
  font-size: 16px;
}

.inquiry-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.inquiry-value {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}

/* ===== MAIN SECTION ===== */
.privacy-section {
  padding: 80px 0;
  background: #111111;
}

/* ===== POLICY CARDS ===== */
.policy-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 38px;
  margin-bottom: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.policy-card:hover {
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-3px);
}

.policy-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.policy-card-icon {
  width: 52px;
  height: 52px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-card-icon i {
  color: var(--theme-color);
  font-size: 20px;
}

.section-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.policy-card ul li {
  line-height: 1.8;
  padding: 7px 0 7px 26px;
  position: relative;
  border-bottom: 1px solid #222;
}

.policy-card ul li:last-child {
  border-bottom: none;
}

.policy-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--theme-color);
  border-radius: 50%;
}

.policy-card ul li strong {
  color: #ffffff;
}

/* ===== SECURITY BADGE ===== */
.security-quote {
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 16px 0;
  font-size: 14px;
  color: #cccccc;
  font-style: italic;
  line-height: 1.7;
}

.security-quote i {
  color: var(--theme-color);
  margin-right: 8px;
}

/* ===== SUB SECTION HEADINGS ===== */
.sub-heading {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 20px 0 8px;
}

/* ===== SIDEBAR ===== */
.toc-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 90px;
}

.toc-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.toc-card a {
  display: block;
  font-size: 13.5px;
  color: #999999;
  text-decoration: none;
  padding: 9px 0;
  border-bottom: 1px solid #222;
  transition: color 0.25s, padding-left 0.25s;
}

.toc-card a:last-of-type {
  border-bottom: none;
}

.toc-card a:hover {
  color: var(--theme-color);
  padding-left: 8px;
}

.toc-card a i {
  color: var(--theme-color);
  margin-right: 8px;
  font-size: 10px;
}

.updated-badge {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
}

.updated-badge .up-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 4px;
}

.updated-badge .up-val {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 600;
}

/* ===== CONTACT BOX ===== */
.contact-box {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
}

.contact-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-item i {
  color: var(--theme-color);
  font-size: 14px;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.contact-item a,
.contact-item span {
  font-size: 13.5px;
  color: #aaaaaa;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--theme-color);
}

/* ===== CTA ===== */
.cta-section {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 50px;
}

.cta-section h3 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 15px;
  color: #aaaaaa;
  margin-bottom: 28px;
  line-height: 1.7;
}


@media (max-width: 768px) {

  .policy-card {
    padding: 24px;
  }

  .cta-section {
    padding: 36px 20px;
  }

  .commitment-inner {
    flex-direction: column;
  }
}



/* ===== TERMS PAGE SPECIFIC STYLES ===== */

/* ===== COMMITMENT BANNER ===== */
.commitment-banner {
  background: #0d0d0d;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 30px 0;
}

.commitment-inner {
      align-items: center !important;
  background: rgba(253, 139, 33, 0.08);
  border: 1px solid rgba(253, 139, 33, 0.3);
  border-left: 4px solid var(--theme-color);
  border-radius: 12px;
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.commitment-inner i {
  color: var(--theme-color);
  font-size: 26px;
  margin-top: 2px;
  flex-shrink: 0;
}

.commitment-inner p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

.commitment-inner p strong {
  color: var(--theme-color);
  font-style: normal;
}

/* ===== INQUIRY BAR ===== */
.inquiry-bar {
  background: #1a1a1a;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 22px 0;
}

.inquiry-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.inquiry-icon {
  width: 50px;
  height: 51px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inquiry-icon i {
  color: #000;
  font-size: 16px;
}

.inquiry-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
  color: #aaa;
}

.inquiry-value {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}

/* ===== TERMS SECTION ===== */
.terms-section {
  padding: 80px 0;
  background: #111111;
}

/* ===== INTRO CARD ===== */
.intro-card {
  align-items: center !important;
  background: rgba(253, 139, 33, 0.06);
  border: 1px solid rgba(253, 139, 33, 0.25);
  border-left: 4px solid var(--theme-color);
  border-radius: 16px;
  padding: 34px 38px;
  margin-bottom: 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.intro-card i {
  color: var(--theme-color);
  font-size: 28px;
  margin-top: 4px;
  flex-shrink: 0;
}

.intro-card p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.85;
  margin: 0;
}

.intro-card p strong {
  color: var(--theme-color);
}

/* ===== POLICY CARDS ===== */
.policy-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 38px;
  margin-bottom: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.policy-card:hover {
  border-color: var(--theme-color);
  transform: translateY(-3px);
}

.policy-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.policy-card-icon {
  width: 52px;
  height: 52px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-card-icon i {
  color: #000;
  font-size: 20px;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.policy-card ul li:last-child {
  border-bottom: none;
}

.policy-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--theme-color);
  border-radius: 50%;
}

.policy-card ul li strong {
  color: #ffffff;
}

/* ===== HIGHLIGHT NOTE ===== */
.note-box {
  background: rgba(253, 139, 33, 0.06);
  border: 1px solid rgba(253, 139, 33, 0.2);
  border-radius: 10px;
  padding: 16px 22px;
  margin: 18px 0 0;
  font-size: 14px;
  color: #cccccc;
  font-style: italic;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.note-box i {
  color: var(--theme-color);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== REFUND TABLE ===== */
.refund-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 0;
}

.refund-table th {
  background: var(--theme-color);
  color: #000;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.refund-table th:first-child {
  border-radius: 8px 0 0 0;
}

.refund-table th:last-child {
  border-radius: 0 8px 0 0;
}

.refund-table td {
  padding: 12px 18px;
  font-size: 14px;
  color: #aaaaaa;
  border-bottom: 1px solid #2a2a2a;
}

.refund-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.refund-table tr:last-child td {
  border-bottom: none;
}

.badge-refund {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.badge-full {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.badge-partial {
  background: rgba(253, 139, 33, 0.15);
  color: var(--theme-color);
}

.badge-none {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* ===== SUB HEADING ===== */
.sub-heading {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 22px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
}

/* ===== SIDEBAR TOC ===== */
.toc-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.toc-card::-webkit-scrollbar {
  width: 4px;
}

.toc-card::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 4px;
}

.toc-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.toc-card a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #999999;
  text-decoration: none;
  padding: 9px 0;
  border-bottom: 1px solid #222;
  transition: color 0.25s, padding-left 0.25s;
  line-height: 1.4;
}

.toc-card a:last-of-type {
  border-bottom: none;
}

.toc-card a i {
  color: var(--theme-color);
  font-size: 10px;
  flex-shrink: 0;
}

.toc-card a:hover {
  color: var(--theme-color);
  padding-left: 6px;
}

.updated-badge {
  background: rgba(253, 139, 33, 0.1);
  border: 1px solid rgba(253, 139, 33, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
}

.updated-badge .up-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 4px;
}

.updated-badge .up-val {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 600;
}

/* ===== CONTACT SIDEBAR BOX ===== */
.contact-box {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
}

.contact-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-item i {
  color: var(--theme-color);
  font-size: 14px;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.contact-item a,
.contact-item span {
  font-size: 13.5px;
  color: #aaaaaa;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--theme-color);
}

/* ===== GUARANTEE BADGES ===== */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.guarantee-item {
  background: #222;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.3s;
}

.guarantee-item:hover {
  border-color: var(--theme-color);
}

.guarantee-item i {
  font-size: 28px;
  color: var(--theme-color);
  margin-bottom: 12px;
  display: block;
}

.guarantee-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-family: var(--theme-family);
  line-height: 1.4;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 50px;
}

.cta-section h3 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  font-family: var(--theme-family);
}

.cta-section p {
  font-size: 15px;
  color: #aaaaaa;
  margin-bottom: 28px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .toc-card {
    position: relative;
    top: 0;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .policy-card {
    padding: 24px;
  }

  .intro-card {
    flex-direction: column;
    padding: 24px;
  }

  .commitment-inner {
    flex-direction: column;
  }

  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section {
    padding: 36px 20px;
  }

  .refund-table {
    font-size: 13px;
  }

  .refund-table th,
  .refund-table td {
    padding: 10px 12px;
  }
}

@media (max-width: 500px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
  }
}





/* -------------Media Queries------------ */

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .popup-layout {
    width: 970px;
    height: 520px;
  }

  .element-22 {
    right: -160px;
  }
}

@media (max-width: 1199px) {
  .element {
    display: none;
  }
}

@media (min-width: 1024px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  /* .dropdown:hover .dropdown-menu {
    display: block;
  } */
}

@media (max-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    margin: 1rem 0;
    border-top: 1px solid var(--bg-grey);
    border-bottom: 1px solid var(--bg-grey);
  }

  /* -----------banner---------- */
  .banner .content {
    height: 25rem;
  }

  /* ----------choose---------- */
  .choose .section {
    width: 100%;
  }

  .choose .img-section {
    order: 2;
  }

  /* ----------contact banner------------ */

  .contact-page .banner .content {
    height: 24rem;
  }

  /* ---------------contact boxes------------ */
  .contact-boxes {
    margin-top: -3rem;
  }

  /* ---------popup----------- */
  .popup-layout {
    width: 100%;
    /* height: 90%; */
    background-size: 100% 100%;
  }

  .popup-head {
    text-align: center;
  }

  .mob-display-none.get_in_touch {
    display: none !important;
  }
}

@media (max-width: 825px) {
  .popup-layout {
    width: 100vw;
  }

  .popup-wrapper {
    padding: 1.5rem 1.5rem !important;
  }

  .popup-layout .popup-head h5 {
    font-size: 14px !important;
  }

  .popup-layout .popup-head h4 {
    font-size: 24px !important;
  }

  .popup-layout .popup-head {
    margin-bottom: 1rem !important;
  }
}

/* /////////////////   Mobile   //////////////// */

@media screen and (max-width: 767px) {

  /* ---------utility-------- */
  .sec-pd {
    padding: 6% 0 6%;
  }

  .sec-hd {
    font-size: 2rem;
    text-align: center;
  }

  .sec-title {
    justify-content: center;
  }

  .sec-title h4 {
    font-size: 17px;
  }

  .para-main {
    text-align: center;
  }

  .num-box {
    justify-content: center;
  }

  .num-box p {
    text-align: start !important;
  }

  .theme-btn {
    margin: 1rem 0;
  }

  /* --------hero-------- */
  .hero h3 {
    text-align: center;
  }

  .hero h1 {
    text-align: center;
  }

  /* -----------choose--------- */
  .choose {
    padding: 8rem 0 0 0;
  }

  /* --------about--------- */
  .about .outer-card {
    height: 330px;
  }

  .contact-box {
    justify-content: center;
  }

  /* ----------book-------- */
  .book .row {
    width: 100% !important;
  }

  .num-box {
    margin: 2rem 0;
    border: none !important;
  }

  /* --------services------ */
  .services .service-para {
    text-align: center !important;
    margin: 1rem 0;
  }

  .services .theme-btn {
    align-self: center;
  }

  .services .card .number {
    font-size: 2rem;
  }

  /* ----------Call to action--------- */
  .wrapper {
    padding-bottom: 0;
  }

  /* -----------pricing----------- */
  .pricing .para-main {
    text-align: start;
  }

  /* -----------work---------- */
  .work img {
    margin-top: 0;
  }

  .work .card {
    top: 3rem;
  }

  /* --------contact--------- */

  /* ----------footer---------- */
  .footer-top {
    padding-top: 8rem !important;
  }

  .footer-bottom .section {
    flex-direction: column;
    align-items: center;
  }

  .footer-top p,
  .footer-top a {
    text-align: start !important;
  }
}

@media screen and (max-width: 500px) {

  /* --------hero-------- */
  .hero {
    padding: 3rem 0;
  }

  .hero h3 {
    font-size: 13px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero .auto-typed {
    font-size: 2rem;
  }

  .num-box {
    margin: 1rem 0;
  }

  /* ----------testimonials---------- */
  .client-img-card {
    padding: 1rem 1rem;
  }

  /* -------------banner--------------- */
  .banner::before {
    background-position: -30rem top;
  }

  /* --------popup--------- */
  .popup-close {
    right: 4px !important;
    font-size: 15px !important;
    height: 30px !important;
    width: 30px !important;
  }
}

@media screen and (min-width: 500px) and (max-width: 767px) {

  /* --------hero-------- */
  .hero {
    padding: 4rem 0;
  }

  .hero h3 {
    font-size: 17px;
    text-align: center;
  }

  .hero h1 {
    font-size: 3.5rem;
    text-align: center;
  }

  .hero .auto-typed {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 16px;
    text-align: center;
  }
}

/* /////////////////  tablat  ///////////////// */

@media screen and (min-width: 767px) and (max-width: 1024px) {

  /* ----------Utility-------- */
  .num-box h5 {
    font-size: 15px;
  }

  .num-box svg {
    font-size: 30px;
  }

  .theme-btn {
    font-size: 15px;
    padding: 6px 6px 6px 20px;
  }

  .card-title {
    font-size: 16px;
  }

  .sec-title h4 {
    font-size: 17px;
  }

  .sec-hd {
    font-size: 2rem;
  }

  /* ------------hero-------------- */
  .hero {
    padding: 5rem 0;
  }

  .hero h3 {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero .auto-typed {
    font-size: 2.2rem;
  }

  /* -----------About Us----------- */
  .about .outer-card {
    height: -webkit-fill-available;
    padding: 3px !important;
  }

  .about .card {
    padding: 0.8rem !important;
  }

  .about .img-card {
    min-height: 235px;
  }

  /* ----------book-------- */
  .book .row {
    width: 100% !important;
  }

  /* --------portfolio------- */
  .portfolio .sec-hd {
    margin: 0 !important;
  }

  /* -----------Services------------ */
  .services .card .number {
    font-size: 2rem;
  }

  .services .bg-box {
    min-height: 150px;
  }

  /* ----------Call to action--------- */
  .wrapper {
    padding-bottom: 0;
  }

  .action .card {
    top: 3rem;
  }

  .action .card .row {
    width: 100% !important;
  }

  /* ---------pricing---------- */
  .pricing .nav-tabs {
    gap: 0.4rem !important;
  }

  .pricing {
    padding: 90px 0 70px;
  }

  .pricing h5 {
    font-size: 24px;
  }

  /* --------testimonail------- */
  .testimonial .card-title {
    font-size: 17px;
  }

  .testi .icon.fa-quote-right {
    font-size: 2rem;
  }

  .slick-slide img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
  }

  .testi .sec-hd {
    font-size: 1.5rem;
  }

  .img-box .logo-img {
    height: 50px;
    width: 50px;
  }

  .static-port {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .client-img-card img {
    margin-right: -10px;
  }

  .client-img-card {
    gap: 10px;
    padding: 1rem 0.5rem;
    margin-top: 1rem;
  }

  /* -----------Choose--------- */
  .choose {
    padding-top: 6rem;
  }

  /* --------work--------- */
  .work .card {
    top: 3rem;
  }

  /* ---------footer---------- */
  .footer-top {
    padding-top: 7rem !important;
  }
}

/* ---------keyframes---------- */

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}