.search-nav {
  width: 650px !important;
  /* width: 100% !important; */
  top: 100% !important;
  border: none;
  transition: 0.3s !important;
  border-radius: 12px;
  padding: 33px !important;
  box-shadow: 0px 3px 12px #3e3e3e96;

}
.search_tab{
    display: none;
}
.search-icon-di{
    width: 20px !important;
    height: 20px !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-semibold {
  font-weight: 500 !important;
}
.benefits-navtabs-main.faq-navtab-main {
  counter-reset: section;

  .accordion-button {
    background: #ffffff;
    padding: 25px 20px 20px 20px;
    font-weight: bold;
    font-size: clamp(1rem, 1.1vw, 1.2rem) !important;
    color: #000000 !important;
    gap: 3px;
    align-items: flex-start;

    &::before {
      counter-increment: section;
      content: counter(section) ". ";
    }

    &:focus {
      box-shadow: unset;
    }

    &::after {
      background-image: url(../images/plus-faq.png?744d8c750b804198c601f67f75561b00);
      width: 20px;
      height: 20px;
      background-size: 35px;
    }

    &:not(.collapsed) {
      background-color: #ffffff;
      box-shadow: unset;

      &::after {
        background-image: url(../images/minus-faq.png?e312b78052c4fada575eca44f8566564);
        width: 20px;
        height: 20px;
        background-size: 35px;
      }
    }
  }

  .accordion-item {
    background: #ffffff;
    border: 4px solid #ffffff;
    border-radius: 20px;
    margin-bottom: 10px;
  }

  .accordion-body {
    padding-top: unset;
    color: #000000;
  }
}


/* ================= MAIN TAB ================= */

.main-tab {
  .nav-link {
    border: unset;
    background-color: #ffffff;
    color: #000000;
    font-weight: 500;
    border-radius: 30px;
    font-size: clamp(1rem, 1.1vw, 1.1rem) !important;

    &.active {
      background-color: black;
      color: white;
    }
  }
}


/* ================= INNER SUB NAV ================= */

.inner-sub-nav {
  .nav-pills {
    width: 300px;
    min-width: 300px;
    max-height: calc(80vh - 70px);
    overflow-y: auto;

    @media screen and (max-width: 991px) {
      width: 200px;
      min-width: 200px;
    }

    @media screen and (max-width: 768px) {
      width: 100%;
      min-width: 100%;
      overflow-x: auto;
      align-items: center;
    }

    .nav-link {
      text-align: start;
      font-weight: 500;
      color: #000000;
      padding: 15px 20px 15px 25px;
      border-radius: 0px 10px 10px 0px;
      margin-bottom: 5px;
      font-size: clamp(1rem, 1.1vw, 1.1rem) !important;
      background-color: #ffffff;

      @media screen and (max-width: 768px) {
        width: 100%;
        white-space: nowrap;
        height: -moz-max-content;
        height: max-content;
      }

      &:last-child {
        margin-bottom: unset;
      }

      &.active {
        background: #ffffff 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0px 10px 10px 0px;
        color: #000000;
        background-size: contain;
      }
    }
  }

  .sub-content-img {
    width: 600px;
    height: 400px;
    min-height: 400px;
    background-color: #ffffff;

    @media screen and (max-width: 991px) {
      top: unset;
      width: 100%;
      height: 100%;
    }

    @media screen and (max-width: 768px) {
      margin-top: 35px;
      width: 80%;
      margin: 35px auto 0 auto;
      min-height: 280px;
      height: 280px;
    }

    @media screen and (max-width: 768px) {
      min-height: 220px;
      height: 220px;
    }

    &.mobile {
      width: 35%;

      @media screen and (max-width: 768px) {
        top: 30px;
      }
    }
  }

  .sub-nav-tab-content {
    a {
      display: none;
    }

    @media screen and (max-width: 768px) {
      text-align: center;
    }
  }

  @media screen and (max-width: 768px) {
    .sub-content-img.mobile {
      width: 40%;
    }
  }
}

.bundle-section {
  background: #f3f4f6;
  padding: 20px 0;
}

.bundle-section .bundle-container {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  padding: 19px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bundle-section .bundle-container .bundle-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.bundle-section .bundle-container .bundle-content p {
  font-size: 18px;
  color: #4b5563;
}

.bundle-section .bundle-container .bundle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111827;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.bundle-section .bundle-container .bundle-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

.bundle-section .bundle-container .bundle-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3272db;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;
}

@media (max-width: 768px) {
  .bundle-section .bundle-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .bundle-section .bundle-container .bundle-content h2 {
    font-size: 22px;
  }

  .bundle-section .bundle-container .bundle-content p {
    font-size: 16px;
  }
}

@media (prefers-color-scheme: dark) {
  .bundle-section {
    background: #1f2937;
  }

  .bundle-section .bundle-content h2 {
    color: #ffffff;
  }

  .bundle-section .bundle-content p {
    color: #e5e7eb;
  }

  .bundle-section .bundle-container .bundle-btn {
    background: #ffffff;
    color: #111827;
  }
}
.home-banner-wrap {
    width: 100%;
    height: 75vh !important;
}
.bundle-object-fit{
  -o-object-fit: contain !important;
     object-fit: contain !important;
   background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.h-90vh{
  height: 60vh !important;
}

/* Scroll Animation Styles */
.fade-in-section {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: transform, opacity;
    min-height: 1px;
}

.fade-in-section.animate-in {
    opacity: 1;
    transform: scale(1);
}

.new-swiper-section.fade-in-section {
    transform-origin: center center;
}
/* Hover Animation for Button */
/* button-animation */
.button-animations {
    cursor: pointer;
}

.button-animations i {
    transition: transform 0.3s ease;
}

.button-animations:hover i {
    animation: arrowSlide 1s ease-in-out infinite;
}

@keyframes arrowSlide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}body {
  font-family: "IBM Plex Sans", sans-serif !important;
}

@media screen and (min-width: 991px) {
  .min-h-lg-500 {
    min-height: 500px !important;
  }
}

.according-theme {
  background-color: #f5f5f5;
}

.banner-content-new {
  z-index: 2;
}

@media screen and (min-width: 991px) {
  .banner-content-new {
    width: 72%;
    top: 38px;
    left: 77px;
  }
}

.banner-content-new .main-content {
  font-size: calc(1.325rem + .9vw);
}

@media screen and (min-width: 991px) {
  .banner-content-new .main-content {
    font-size: 50px;
  }
}

.font-size-lg-48px {
  font-size: 48px;
}

@media screen and (max-width: 767px) {
  .font-size-lg-48px {
    font-size: 22px;
  }
}

.h-570x {
  height: 570px !important;
}

.new-dark-green {
  background-color: #4686f0c4;
}

.star-icon-fs-bg {
  font-size: 8px;
  background-color: #3272db;
}

.light-grey {
  background-color: #f5f5f5 !important;
}

.new-home-shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.w-h-50x {
  width: 50px;
  height: 50px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-unset {
  background-color: unset !important;
}

.frequecy-question .according-body.active {
  background-color: #f5f5f5 !important;
}

/* .why-choose-us {
  height: 68vh !important;
} */

@media screen and (min-width: 991px) {
  .why-choose-us {
    max-height: 610px !important;
    height: 100% !important;
  }
}

.why-choose-us::after {
   content: "";
  display: block;
  background:linear-gradient(to bottom, rgb(255 255 255 / 97%) 0%, rgb(255 255 255 / 39%) 36%, rgba(0, 0, 0, 0.6) 100%), url(../images/bro-new-bg.webp);
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: lighten;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.why-choose-us .transparent-box {
  background-color: rgb(255 255 255 / 36%);
    backdrop-filter: blur(5px);
    border: 0 !important;
     margin: 10px;
}

.new-home-custumer-support {
  background-color: #f5f5f5;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.icons-green {
  background-color: #3272db59;
  border: 1px solid #3272db6e;
}

.font-green {
  color: #3272db;
}

.home-new-swiper-slide {
  background-color: unset !important;
  overflow: hidden;
}

.home-new-swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.home-new-swiper-slide:hover img {
  transform: scale(1.1);
  cursor: pointer;
}

.swiper-navigations {
  right: 48px;
  bottom: 13px;
}

.swiper-navigations .home-swiper-navigation-next::after {
  font-size: 15px;
  transform: rotate(-178deg);
  color: black;
}

.swiper-navigations .home-swiper-navigation-prev::after {
  font-size: 15px;
  transform: rotate(-178deg);
  color: black;
}

.find-your-answer .faq-img {
  height: 550px;
}

@media screen and (min-width: 991px) {
  .find-your-answer .find-according {
    max-height: 550px;
    overflow: auto;
  }
}

.find-your-answer .according-color {
  border-bottom: 1px solid #ebebeb !important;
  border-radius: unset !important;
}

.find-your-answer .according-color.active {
  background-color: #f5f5f5;
  border-bottom: unset !important;
  border-radius: 1rem !important;
}

.frequecy-question .according-color {
  border-bottom: 1px solid #ebebeb !important;
  border-radius: unset !important;
}

.frequecy-question .according-color.active {
  background-color: #f5f5f5;
  border-bottom: unset !important;
  border-radius: 2rem !important;
}

.frequecy-question .frequency-image {
  height: 500px;
}

.frequecy-question img {
  transition: transform 0.4s ease;
}

.frequecy-question img:hover {
  transition: transform 0.4s ease;
  transform: scale(1.1);
  cursor: pointer;
}

.frequecy-question .accordion-button::after {
  background-image: url("../images/plus-faq.png") !important;
  filter: invert(55%) sepia(66%) saturate(508%) hue-rotate(540deg) brightness(78%) contrast(167%);
}

.frequecy-question .according-bg-image {
  box-shadow: unset !important;
}

.frequecy-question .according-bg-image:not(.collapsed)::after {
  background-image: url("../images/minus-faq.png") !important;
  filter: invert(0%) sepia(42%) saturate(463%) hue-rotate(96deg) brightness(90%) contrast(90%);
}

.frequecy-question .content-limit {
  max-height: 81px;
  overflow: auto;
}

.frequecy-question .content-limit::-webkit-scrollbar {
  width: 6px;
}

.frequecy-question .content-limit::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.frequecy-question .content-limit::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4686f0c4, #3272db);
  border-radius: 10px;
}

.frequecy-question .content-limit::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #3272db, #2d8a5a);
}

.frequecy-question .frequecy-accordings {
  max-height: 500px;
  overflow: auto;
}

.frequecy-question .frequecy-accordings::-webkit-scrollbar {
  width: 6px;
}

.frequecy-question .frequecy-accordings::-webkit-scrollbar-track {
  background: transparent;
}

.frequecy-question .frequecy-accordings::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.frequecy-question .frequecy-accordings::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Fade + Slide In */
.fade-slide-in {
  animation: fadeSlideIn 0.5s ease forwards;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade + Slide Out */
.fade-slide-out {
  animation: fadeSlideOut 0.4s ease forwards;
}

@keyframes fadeSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-15px);
  }
}

.max-h-620x {
  max-height: 620px !important;
  height: 100% !important;
}

.header-carousel {
  background: #f3f4f6;
  min-height: 51px;
  display: flex;
  align-items: center;
  margin-top: 141px;
  font-size: 14px;
  position: relative;
}

/* Media Query */
@media screen and (min-width: 512px) {
  .header-carousel {
    margin-top: 78px;
  }
}


.header-carousel .name-swiper {
  width: 100%;
  padding: 6px 40px;
}

.header-carousel .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-carousel .site-notice {
  color: #1f2937;
}

.header-carousel .site-notice a {
  color: #3272db;
  font-weight: 600;
  text-decoration: none;
}

.header-carousel .site-notice a:hover {
  text-decoration: underline;
}

/* Navigation Arrows */
.header-carousel .header-prev,
.header-carousel .header-next {
  color: #000 !important;
  width: 30px;
  height: 30px;
  z-index: 10;
}

.header-carousel .header-prev::after,
.header-carousel .header-next::after {
  font-size: 18px !important;
  font-weight: bold !important;
  color: #000 !important;
}

.header-carousel .header-prev {
  left: 10px;
  top: 50%;
}

.header-carousel .header-next {
  right: 10px;
  top: 50%;
}

.footer-logo {
  width: 100%;
    height: 240px;
}

/* ≤ 992px */
@media screen and (max-width: 992px) {
  .footer-logo {
    top: 52%;
    left: 10%;
            height: 120px;
  }
}
@media screen and (min-width: 1442px) {
  .footer-logo {
    top: 52%;
    left: 10%;
            height: 310px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-logo {
    top: 52%;
    left: 10%;
    height: 180px;
  }
}
/* ≤ 767px */
@media screen and (max-width: 767px) {
  .footer-logo {
    top: 64%;
    left: 17%;
            height: 70px;
  }
}
/* @media screen and (min-width: 1300px) {
  .footer-logo {
    top: 64%;
    left: 17%;
            height: 190px;
  }
} */
@media screen and (max-width: 320px) {
  .footer-logo {
    top: 64%;
    left: 7%;
            height: 46px;
  }
}
@media screen and (min-width: 321px) and (max-width: 420px) {
  .footer-logo {
    top: 64%;
    left: 7%;
            height: 58px;
  }
}

.footer-logo .site-name-foot {
  font-size: 153px;
  font-weight: 900;
  letter-spacing: 9px;
  color: #00000026;
}

/* ≤ 992px */
@media screen and (max-width: 992px) {
  .footer-logo .site-name-foot {
    font-size: 98px;
  }
}

/* ≤ 767px */
@media screen and (max-width: 767px) {
  .footer-logo .site-name-foot {
    font-size: 36px;
  }
}

.content-limit {
  max-height: 110px;
  overflow: auto !important;
  margin-right: 30px;
}

.para-content-limit {
  max-height: 70px !important;
  overflow: hidden;
}

  @media screen and (min-width:991px) {
    .w-lg-70 {
    width: 70% !important;
  }
}
.content-y-limit{
      overflow-y: unset !important;
    word-break: break-word !important;
}
.home .stay-experience-div .stay-ex {
  background-color: #ffffff;
  border: 0.5px solid #DDDDDD;
  border-radius: 20px;
  padding: 10px;
}

@media screen and (max-width: 440px) {
  .home .stay-experience-div .stay-ex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.home .stay-experience-div .stay-ex .stay-ex-img {
  width: 65px;
  height: 65px;
  min-width: 65px;
}

@media screen and (max-width: 440px) {
  .home .stay-experience-div .stay-ex .stay-ex-img {
    width: 100%;
    height: 100px;
    min-width: 100%;
  }
}

.home .stay-experience-div .stay-ex .stay-ex-img img {
  border-radius: 15px;
}
.stay-ex-img{
      width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}
.hero-suggest-rental-div{
      width: 316px !important;
    padding: 0 20px !important;
    padding-top: 15px !important;
    border: 0px solid #8080800f !important;
    box-shadow: 0px 2px 10px #0000001a;
    border-radius: 20px !important;
    margin-top: 5px !important;

}

.hero-suggest-rental-div .what-type-option {
  cursor: pointer;
  color: #6c757d;
  line-height: 1.8;
}

.hero-suggest-rental-div .what-type-option.active {
  color: #222222;
}
.max-w-lg-500x{
  max-width: 500px !important;
}
.word-break{
   overflow-y: unset !important;
    word-break: break-word !important;
}
.article-img{
      max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: 100%;
    margin: auto;
}
@media screen and (min-width: 991px) {
 .w-lg-80{
  width: 80% !important;
 }
}
.wish-hover:hover {
  color: #222222 !important;
}
.ruca-font{
      font-family: 'Roca', sans-serif !important;
   
}
.fw-400{
   font-weight: 400 !important;
}
.fw-100{
   font-weight: 100 !important;
}
.fw-300{
  font-family: 300 !important;
}
@media (min-width: 992px) {
    .h-lg-450x {
        height: 450px;
    }
}
@media (min-width: 1400px) {
  .h-xxl-610x {
    height: 610px !important;
  }
}
.footer-color{
      background-color: #e5eae6 !important;
}
.footer-img {
    height: 848px !important;
    width: 430px !important;
}
@media screen and (max-width: 320px) {
    .footer-img {
        width: 200px !important;
        height: auto !important;
    }
}

 @media screen and (min-width: 321px) and   (max-width: 767px) {
    .footer-img {
        width: 340px !important;
        height: auto !important;
    }
}
   @media screen and (min-width: 768px) and   (max-width: 1200px) {
    .footer-img {
        width: 300px !important;
        height: auto !important;
    }
}
@media (min-width: 992px) {
  .mt-lg-130x {
            margin-top: 40%;
  }
}
.location-dropdown {
  width: 600px !important;
}

@media (max-width: 991px) {
  .location-dropdown {
    width: 300px !important;
  }
}
.place_search .bi-chevron-right {
  margin-left: auto !important;
}
.w-20{
  width: 20% !important;
}
.mt-20x{
  margin-top: 20px !important;
}
.badge {
    border-radius: 2rem !important;
    position: relative;
    top: -1px;
    color: #fff;
    height: max-content !important;
    padding: 8px 16px !important;
    font-weight: 400 !important;
}
.fs-50x{
  font-size: 50px !important;
}
.connect-pad {
  max-width: 518px;
  width: 100% !important;
}

@media screen and (min-width: 992px) {
  .connect-pad {
    top: -50px !important;
    position: absolute;
    left: 24% !important;
  }
}
.fs-clamp{
  font-size: clamp(28px, 4vw, 50px) !important;
}
.benefits-navtabs-main.faq-navtab-main {
  counter-reset: section;
}

.benefits-navtabs-main.faq-navtab-main .accordion-button {
  background: #ffffff;
  padding: 25px 20px 20px 20px;
  font-weight: bold;
  font-size: clamp(1rem, 1.1vw, 1.2rem) !important;
  color: #000000 !important;
  gap: 3px;
  align-items: flex-start;
}

.benefits-navtabs-main.faq-navtab-main .accordion-button::before {
  counter-increment: section;
  content: counter(section) ". ";
}

.benefits-navtabs-main.faq-navtab-main .accordion-button:focus {
  box-shadow: unset;
}

.benefits-navtabs-main.faq-navtab-main .accordion-button::after {
  background-image: url(../images/plus-faq.png?744d8c750b804198c601f67f75561b00);
  width: 20px;
  height: 20px;
  background-size: 35px;
}

.benefits-navtabs-main.faq-navtab-main .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  box-shadow: unset;
}

.benefits-navtabs-main.faq-navtab-main .accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus-faq.png?e312b78052c4fada575eca44f8566564);
  width: 20px;
  height: 20px;
  background-size: 35px;
}

.benefits-navtabs-main.faq-navtab-main .accordion-item {
  background: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 20px;
  margin-bottom: 10px;
}

.benefits-navtabs-main.faq-navtab-main .accordion-body {
  padding-top: unset;
  color: #000000;
}
.bg-help-cont{
  background-color: #E4EDF2 !important;
}
.padd-icon{
  padding: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
}
.social-links ul li {
  margin-right: 10px;
}
.social-links ul li:last-child {
  margin-right: 0;
}
.footer-icon-container i {
  font-size: 18px;
  line-height: 1;
}
.app-download {
    display: flex;
    flex-direction: column;
    gap: 15px;
    top: 198px;
    left: 85px;
    width: 164px;
}
@media  screen and (max-width:320px) {
  .app-download {
  top: 112px;
    left: 42px;
    width: 115px;
    gap: 4px !important;
  }
  
}
@media  screen and (min-width:1201px) {
  .app-download {
      top: 233px;
    left: 121px;
    width: 184px;
    gap: 10px !important;
  }
  
}
@media  screen and (min-width: 450px) and (max-width: 1200px) {
  .app-download {
 top: 165px;
    left: 82px;
    width: 131px;
    gap: 10px !important;
  }
  
}

.download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f3f3f3;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all .3s ease;
    cursor: pointer;
    width: 100%;
}
@media  screen and (min-width: 450px) and (max-width: 1200px) {
  .download-card {
  padding: 10px 8px;
  }
  
}
@media  screen and (max-width:320px) {
  .download-card {
  padding: 5px 9px;
  }
  
}
@media  screen and (min-width:1201px) {
  .download-card {
      padding: 15px 15px;
  }
  
}

.download-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.download-text span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 2px;
}
@media  screen and (max-width:320px) {
  .download-text span {
  font-size: 10px;
  }
  
}
@media  screen and (min-width:1201px) {
  .download-text span {
  font-size: 11px;
  }
  
}

@media  screen and (min-width: 450px) and (max-width: 1200px) {
  .download-text span {
  font-size: 10px;
  }
  
}

.download-text strong {
    font-size: 11px;
    color: #333;
    font-weight: 600;
}
@media  screen and (max-width:320px) {
  .download-text strong {
  font-size: 10px;
  }
  
}
@media  screen and (min-width:1201px) {
  .download-text strong {
  font-size: 14px;
  }
  
}

.icon-box {
      width: 33px;
    height: 33px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
@media  screen and (min-width: 450px) and (max-width: 1200px) {
  .icon-box {
    width: 41px;
    height: 41px;
  }
}
@media screen and (min-width:1201px) {
  .icon-box {
    width: 50px;
    height: 50px;
  }
  
}
.icon-box i {
    font-size: 20px;
    color: #000;
}