.content-center {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.call-now-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: var(--thm-color);
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
  overflow: hidden;

  &:hover {
    border: 2px solid var(--thm-color);
    color: var(--thm-color) !important;
    background: none;

    span {
      color: var(--thm-color);
    }
  }
}

.call-now-btn::before {
  content: "";
  background: #fff;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 40px;
  transition: 0.5s all cubic-bezier(0.4, 0, 1, 1);
}

.call-now-btn:hover::before {
  width: 100%;
  right: 0;
}

.theme-btn-3 {
  position: relative;
  z-index: 2;
  overflow: hidden;
  align-items: center;
  display: inline-flex;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: var(--header);
  color: var(--white);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1;
  padding: 15px 20px;
  border-radius: 100px;
}
.theme-btn-3 i {
  margin-left: 5px;
}
.theme-btn-3:before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--theme);
  z-index: -1;
  transition: all 0.4s ease-out;
  border-radius: inherit;
}
.theme-btn-3:hover {
  color: var(--white);
  box-shadow: none;
}
.theme-btn-3:hover::before {
  width: 100%;
}

.chat-now-btn::before {
  content: "";
  background: #fff;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 40px;
  transition: 0.5s all cubic-bezier(0.4, 0, 1, 1);
}

.chat-now-btn:hover::before {
  width: 100%;
  right: 0;
}

.hero-btns span {
  margin-right: 10px;
  color: var(--default-color);
  z-index: 2;
}

.hero-btns .call-icon {
  background-color: white;
  color: var(--thm-color);
  border-radius: 50%;
  padding: 0.5rem 0.6rem 0.5rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.hero-btns .call-icon i {
  font-size: 16px;
  z-index: 2;
  -webkit-animation: 1.5s infinite swing;
  animation: 1.5s infinite swing;
  color: #000;
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-animation-name: swing;
  -webkit-transform-origin: top center;
  animation-name: swing;
  transform-origin: top center;
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-name: headShake;
  -webkit-animation-timing-function: ease-in-out;
  animation-name: headShake;
  animation-timing-function: ease-in-out;
}

.label-font,
.list-item li {
  font-family: Poppins, sans-serif;
}

.copyright {
  background: var(--thm-color-b2);
}

textarea.input-control.form-control {
  margin: 7px 0 !important;
  width: 100%;
  height: 40px;
  padding: 7px 15px;
  font-family: Poppins, sans-serif;
  overflow: hidden;
  border-radius: 5px;
  resize: none;
}

.form-wrapper {
  width: 75%;
  margin: auto;

  h2 {
    font-size: 35px;
    text-transform: capitalize;
    color: #868484;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5em;
  }

  input,
  textarea {
    width: 100%;
    border: 0;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #ffffff29;
    height: 55px;
    color: #fff;
  }

  .form-control::placeholder {
    color: var(--default-color);
  }

  .form-control:focus {
    background-color: var(--theme);
    box-shadow: 0 0 5px var(--thm-color);
    color: #fff;
  }

  .call-now-btn {
    border-radius: 50px;
    width: 75%;
    background-color: var(--thm-color);

    &:hover {
      background-color: transparent;
      border: 1px solid var(--thm-color);
      color: var(--theme) !important;
    }
  }
}

.form-wrapper form {
  padding: 40px 30px 30px;
  position: relative;
  background: linear-gradient(#0334486b 100%, #03344885 20%);
  background: var(--theme);
  box-shadow: 0px 0px 10px #000000;
  border-radius: 15px;
  /* border: 1px solid #0F2851; */
}

.label-font {
  font-size: 10px;
  margin: 20px 0;
  color: #000;
  display: block;
  line-height: 15px;
}

.form-wrapper .label-font {
    color: #fff;
}

.form-wrapper .label-font a {
    color: var(--header);
}

.bottom-form input#register {
  margin-top: 30px;
  background: #033448;
}

.label-font a {
  color: var(--theme);
  text-decoration: underline;
}

.label-font input {
  margin: 0 5px 0 0;
  height: auto !important;
  width: auto !important;
}

.banner input.input-control,
select#ser-select {
  width: 16% !important;
  border-radius: 20px;
}

select:focus {
  background: #104b8d87;
  color: #fff;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  padding: 10px 0;
  color: var(--default-color);
  background-color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 56px;
}

.top-bar {
  i {
    color: var(--thm-color-b1);
  }
}

body.scrolled #header .top-bar {
  display: none !important;
}

#header.sticky {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: end;
  }

  .navmenu li {
    font-size: 14px;
    font-weight: 500;
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--thm-black);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 2px;
    font-family: var(--font-theme);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--thm-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--thm-color);
  }

  .navmenu .dropdown ul {
    /* column-count: 2; */
    padding: 20px;
    background: var(--default-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    color: var(--thm-black);
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    transform: scale(0);
    transition: 0.5s all;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--thm-black);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--thm-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    z-index: 100 !important;
    transform: scale(1);
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 0%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

.mainnnnn {
  gap: 20px;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;

  p {
    color: #fff;
    width: 90%;
  }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#020202b5 100%, #000000 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-btns {
  gap: 20px;
}

.hero-btns .theme-btn {
  display: flex;
  align-items: center;
}

.primary-color {
  color: var(--thm-color);
}

/*-------services section--------*/
h6 {
  color: var(--thm-color);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1px;
}

.services {
  .ser-box {
    box-shadow: 10px 10px 40px #ccc;
    padding: 20px;
    border-radius: 16px;
    transition: 0.5s;
    position: relative;
  }

  .ser-box:before {
    content: "";
    position: absolute;
    background-color: var(--theme);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    clip-path: circle(0 at 0 0);
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    z-index: -1;
  }

  .ser-box:hover:before {
    clip-path: circle(109% at 100% 60%);
  }

  .services .ser-box:hover {
    cursor: pointer;
    transform: scale(1.07);
    cursor: pointer;
    color: #fff;
  }

  .ser-box:hover h4,
  .ser-box:hover p {
    color: #fff;
  }

  .call-now-btn {
    gap: 20px;
    padding: 0.5rem 1.8rem;

    i {
      font-size: 18px;
      background: #fff;
      color: var(--thm-color);
      border-radius: 20px;
      font-weight: 600;
      padding: 9px;
      position: absolute;
      right: 5px;
      top: 2px;
      -webkit-animation: 1.5s infinite swing;
      animation: 1.5s infinite swing;
    }

    span {
      text-transform: uppercase;
      z-index: 2;
    }
  }

  .ser-box h4 {
    font-size: 24px;
    padding: 20px 0;
    line-height: 30px;
  }

  .ser-box p {
    font-size: 14px;
    padding-bottom: 20px;
  }

  .icon-bg {
    background-color: var(--theme);
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .icon-bg img {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }

  .ser-box img {
    filter: brightness(0) invert(1);
  }
}

.services .ser-box:hover {
  cursor: pointer;
  transform: scale(1.07);
  cursor: pointer;
  color: #fff;
}

.portfolio-slider {
  .swiper-slide {
    width: 100%;
    height: 100%;
    img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }
  }
}

/*-------------cta-----------------------*/
.cta {
  background: url("../img/process-bg.html") 0 0 / cover no-repeat;
  padding: 80px 0;
}

.cta h2 {
  line-height: 45px;
  font-size: 45px;
}

.cta .cta-left {
  position: absolute;
  bottom: -260px;
  left: 0;
}

.cta .cta-right {
  position: absolute;
  right: 0;
  top: -190px;
  max-width: 100%;
}

.cta-signup {
  background: url("../img/cta-signup.webp") no-repeat;
  text-align: center;
  padding: 80px 0;
  background-size: 100% 100%;
  width: 80%;
  margin: auto;
}

.signup-cta {
  background: url("../img/signup-cta.webp") no-repeat;
  background-size: 100% 100%;
}

.cta-signup h2 {
  font-size: 45px;
}

.partner-logo {
  .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
  }

  .swiper-slide {
    width: 180px;
    height: auto;
    display: flex;
    align-items: center;
  }
}

.partner-logo .logo-wrapper {
  width: 180px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.steps {
  .step-p {
    width: 50%;
  }
}

.step-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
}

.step-circle {
  top: -30px;
  position: absolute;
  background-color: var(--thm-color-b1);
  color: white;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
  z-index: -1;
}

.step-box {
  background: #ffffff99;
  padding: 25px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  align-items: center;

  p {
    font-size: 13px;
  }

  img {
    position: absolute;
    bottom: -70px;
    right: -70px;
    filter: hue-rotate(-315deg);
    animation: 2.5s linear 0s infinite normal none running swing;
  }
}

.img-two {
  img {
    position: absolute;
    top: -120px;
    right: -15px;
    animation: 2.5s linear 0s infinite normal none running headShake;
  }
}

.step-title {
  font-weight: 700;
  font-size: 1.1rem;
  width: 85%;
}

.step-up {
  margin-top: 0;
  margin-bottom: 100px;
}

.step-down {
  margin-top: 100px;
  margin-bottom: 0;
}

.ebook-publish {
  background-color: black;

  .text-main {
    position: relative;
  }

  .text-main::before {
    content: "";
    width: 120px;
    height: 2px;
    position: absolute;
    top: 33%;
    /* left: -140px; */
    background: var(--theme);
  }

  .text-main-h2 {
    padding-left: 140px;
  }

  img {
    border-radius: 20px;
  }
}

.call-to-section {
  position: relative;
  &:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/gallery/tailor.webp) no-repeat;
    background-size: 50% 100%;
  }

  .box-shade {
    position: relative;
    box-shadow: 0px 0px 10px #ccc;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
  }
}

.blue {
  background-color: var(--thm-color-b2);
}

.img-ser {
  border-radius: 20px;
}

/*----Testimonials
------*/

.review-box {
  box-shadow: 1px 2px 15px #ccc;
  border-radius: 10px;
  padding: 20px;
  transition: 0.2s;
  margin: 20px;
}

.custom-swiper-button {
  color: var(--thm-color);
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--thm-color);
}

.accordion-header {
  width: 100%;

  h5 {
    font-size: 16px;
  }
}

.accordion-button:not(.collapsed) {
  background-color: var(--thm-color-b2);

  h5 {
    color: var(--default-color);
  }
}

.accordion-button:focus {
  box-shadow: 1px 2px 15px #ccc;
}

.accordion-button::after {
  content: "+";
  font-size: 1.3rem;
  background: none;
  border-radius: 50%;
  color: var(--thm-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  background-image: none;
  transform: rotate(180deg);
  background-color: var(--default-color);
}

.bg-form-image {
  background-color: var(--thm-color);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 6px 11px 6px #ccc;

  p {
    color: var(--default-color);
    width: 80%;
    margin-bottom: 20px;
  }

  .form-wrapper {
    width: 100%;

    h3 {
      display: none;
    }

    form {
      background: #fff;
      box-shadow: 0px 0px 10px #ffffff;
    }

    .call-now-btn {
      background-color: var(--theme);

      &:hover {
        background-color: var(--default-color);
        border: 3px solid var(--thm-color-b2);
      }
    }

    .form-row {
      display: flex;
      gap: 20px;
    }

    /* .form-row .form-control {
			width: 50%;
		} */

    input,
    textarea {
      background: transparent;
      border: 1px solid var(--theme);
      color: var(--header);
    }
  }
}

.color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme);
  filter: hue-rotate(356deg);
  z-index: 1;
  border-radius: 20px;
}

.contact-form-text {
  position: relative;
  z-index: 2;
}

img:hover {
  animation: 3s linear infinite pulse;
  -moz-animation: 3s linear infinite pulse;
  -webkit-animation: 3s linear infinite pulse;
  cursor: pointer;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.footer {
  background-color: var(--thm-color-b2);
  padding-top: 80px;

  p {
    color: var(--default-color);
  }

  .social_media_linkss_ft {
    ul {
      gap: 30px;
      padding-left: 0;
    }
  }

  .btm-footer {
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    p {
      font-size: 14px;
    }

    a {
      font-size: 14px;
    }
  }

  ul li {
    margin-bottom: 10px;
  }
}

/*-----page about-----*/

.about-hero {
  background-image: url(../img/gallery/b-mark4.webp);
  color: var(--default-color);
  background-size: cover;
  background-position: center;
  position: relative;

  .container {
    position: relative;
    z-index: 1;
  }

  p {
    color: var(--white);
  }

  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#000000b5 100%, #4e4e4e 100%);
    opacity: 1;
  }
}

.innovation {
  img {
    transition: 0.5s;
    border-radius: 30px;
  }

  .chat-now-btn {
    background-color: var(--thm-color-b2);
  }
}

.test-2-sec {
  background: url(../img/pattern-2.png) left top #fff;

  ul li {
    position: relative;
    line-height: 2.125em;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--thm-color);
    font-size: 18px;
  }
}

.cont-text {
  ul li {
    position: relative;
    line-height: 2.125em;
    margin-bottom: 12px;
    padding-left: 30px;
  }

  ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--thm-color);
    font-size: 18px;
  }
}

.porfilio-slider {
  .book-mock {
    display: inline-block;
    width: 35%;
    background: #fff;
  }

  .book-des {
    display: inline-block;
    width: 60%;
  }

  .book-mock img {
    max-width: 80%;
    border-radius: 0;
    border: 1px solid #033448;
  }

  .parent-bk-moc {
    padding: 10px;
    transition: 0.4s ease-in;
    display: flex;
    text-align: start;
  }

  .book-des h3 {
    font-size: 22px;
  }

  .parent-bk-moc:hover {
    background: #fff;
    box-shadow: -24px 16px 60px -8px rgba(0, 0, 0, 0.3);
    transition: 0.4s ease-in;
    cursor: pointer;
  }

  .parent-bk-moc:hover .book-des p {
    width: 100%;
    font-size: 14px;
  }

  .call-now-btn {
    background-color: var(--thm-color-b2);
  }
}

.testimonial-section {
  .swiper-button-next,
  .swiper-button-prev {
    width: 50px;

    height: 50px;

    padding: 20px;

    background: #033448;

    border-radius: 50%;

    overflow: hidden;

    top: 55%;

    transform: translate(0, -50%);

    &::after {
      font-size: 20px;

      color: #fff;

      font-weight: 700;
    }
  }

  .swiper-button-next {
    right: 9%;

    @media (max-width: 1600px) and (min-width: 1200px) {
      right: 5%;
    }
  }

  .swiper-button-prev {
    left: 9%;

    @media (max-width: 1600px) and (min-width: 1200px) {
      left: 5%;
    }
  }
  position: relative;

  position: r;
}

.fun-factors {
  background: var(--thm-color-b2);
}

.fun-factors p.py-3 {
  text-align: left;
  width: 50%;
  margin: 0 0 0 auto;
  padding-bottom: 40px;
  position: relative;
}

.fun-factors p.py-3:before,
.empower h2:before {
  content: "";
  width: 120px;
  height: 2px;
  position: absolute;
  top: 33%;
  left: -140px;
  background-color: var(--default-color);
}

.fun-box {
  background: var(--thm-color-b1);
  width: 80%;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  margin: auto;
}

.fun-box span {
  display: block;
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
  font-family: "Poppins";
  letter-spacing: -3px;
}

.before-footer {
  h6 {
    color: var(--thm-color-b2);
  }

  .form-group {
    width: 100%;
  }
}

label.error {
  color: red;
  font-weight: 500;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--thm-color);
  margin-bottom: 1rem;
}

.step-card {
  height: 100%;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.generic-modal {
  display: none;
  padding: 0;
  background-color: #f9f9f9;
  overflow: hidden;
  border-radius: 10px;
  max-width: 50%;

  p {
    font-size: 14px;
  }

  h2 {
    font-size: 30px;
  }

  .right-wrapper {
    padding: 2em;
  }

  .form-control {
    margin-bottom: 1rem;
    padding: 0.5rem 0.5rem 0.5rem 2.5rem;
    border-radius: 8px;
    border: 1px solid #ccc;
  }

  .input-icon {
    position: relative;
  }

  .input-icon i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
  }

  .call-now-btn {
    border: none;

    &:hover {
      border: 1px solid var(--thm-color);

      span {
        z-index: 5;
      }
    }
  }

  .is-close-btn {
    top: 10px !important;
    right: 10px !important;

    svg {
      stroke: #000;
    }
  }

  .modal-img {
    transform: rotate(-4deg);
    width: 80%;
    height: 100%;
    margin: 0px auto;
    object-fit: contain;
  }
}

.fancybox-card {
  img {
    position: relative;
    width: 100%;
  }
}
