.timeshare-slider-container {
    width: 100%;
    height: 616px;
    background-image: url(../images/mobile-hero-2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* padding: 80px 60px; */
    position: relative;
    overflow: hidden;
}

.timeshare-content-wrapper {
    max-width: 700px;
    z-index: 10;
}

.timeshare-main-title {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
    /* line-height: 1.3; */
    opacity: 0;
    transform: translateY(30px);
    animation: timeshareSlideInText 0.8s ease-out forwards;
    display: block;
    width: fit-content;
}

.timeshare-primary-highlight {
    background-color: #D58147;
    color: white;
    padding: 6px 12px;
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    margin: 2px 0;
    border-radius: 5px;
    opacity: 0;
    transform: translateX(-30px);
    animation: timeshareSlideInBox 0.8s ease-out 0.3s forwards;
    display: block;
    width: fit-content;
    text-shadow: 0px 2px 4px rgb(0 0 0 / 25%);
    text-transform: uppercase;
    
}

.timeshare-secondary-highlight {
    text-transform: uppercase;
    display: block;
    width: fit-content;
    background-color: #D58147;
    color: white;
    padding: 15px 30px;
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    margin-top: 5px;
    border-radius: 5px;
    opacity: 0;
    transform: translateX(-30px);
    animation: timeshareSlideInBox 0.8s ease-out 0.5s forwards;
    text-shadow: 0px 2px 4px rgb(0 0 0 / 25%);
}

.timshare-mobile-botton-section {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.timeshare-pagination-container {
    display: flex;
    gap: 8px;
    z-index: 20;
    justify-content: center;
}

.timeshare-dot-item {
    width: 14px;
    height: 6px;
    background-color: #A9A4A4;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: width 0.3s ease;
}

.timeshare-dot-item.timeshare-active-slide {
    width: 107px;
}

.timeshare-dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: white;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.timeshare-dot-item.timeshare-active-slide .timeshare-dot-progress {
    animation: timeshareFillDot 5.5s linear forwards;
}

@keyframes timeshareFillDot {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@keyframes timeshareSlideInText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes timeshareSlideInBox {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeshare-reset-animation {
    animation: none !important;
    opacity: 0;
}

@media (max-width: 767px) {
    .timeshare-slider-container {
        padding: 30px 0px 20px 0px;
    }

    .timeshare-main-title {
        font-size: 18px;
        line-height: 27px;
    }

    .timeshare-primary-highlight {
        font-size: 24px;
        padding: 6px 12px;
        line-height: 27px;
    }

    .timeshare-secondary-highlight {
        font-size: 24px;
        line-height: 27px;
        padding: 6px 12px;
    }

    .timeshare-dot-item {
        width: 12px;
    }

    .timeshare-dot-item.timeshare-active-slide {
        width: 80px;
    }
}







html {
    scroll-padding-top: 70px;
}
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}



.testimonial-rating-wrapper img:hover, .testimonial-rating-wrapper-mobile img:hover {
    cursor: pointer;
}
 .testimonial-carousel-container, .testimonial-carousel-container-mobile {
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    position: relative;
}

.testimonial-carousel-track, .testimonial-carousel-track-mobile {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-carousel-track.no-transition, .testimonial-carousel-track-mobile.no-transition {
    transition: none;
}

.testimonial-carousel-item, .testimonial-carousel-item-mobile {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.testimonial-quote-text, .testimonial-quote-text-mobile {
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
    width: 90%;
}

.testimonial-read-more, .testimonial-read-more-mobile {
    text-decoration: underline;
    cursor: pointer;
    font-weight: 400;
}

.testimonial-author-section, .testimonial-author-section-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-author-details, .testimonial-author-details-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-author-image, .testimonial-author-image-mobile {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name, .testimonial-author-name-mobile {
    color: white;
    font-size: 16px;
    font-weight: 400;
}

.testimonial-rating-wrapper, .testimonial-rating-wrapper-mobile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-google-badge, .testimonial-google-badge-mobile {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #4285f4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-star-group, .testimonial-star-group-mobile {
    display: flex;
    gap: 8px;
}

.testimonial-star-icon, .testimonial-star-icon-mobile {
    font-size: 42px;
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.testimonial-next-arrow, .testimonial-next-arrow-mobile {
    position: absolute;;
    right: 0px;
    top: 32%;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
}
.testimonial-prev-arrow, .testimonial-prev-arrow-mobile {
    position: absolute;;
    right: 0px;
    top: 32%;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
}

.testimonial-prev-arrow::before, .testimonial-prev-arrow-mobile::before {
    content: '';
    width: 20px;
    height: 20px;
    border-left: 4px solid white;
    border-top: 4px solid white;
    transform: rotate(-45deg);
    margin-right: -4px;
}

.testimonial-next-arrow::before, .testimonial-next-arrow-mobile::before {
    content: '';
    width: 20px;
    height: 20px;
    border-right: 4px solid white;
    border-top: 4px solid white;
    transform: rotate(45deg);
    margin-left: -4px;
}

/* .testimonial-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
} 

.testimonial-pagination-dot.is-active {
    background: white;
    width: 35px;
    border-radius: 6px;
}*/



.main-hero-middle-left p{
  font-size: 16px;
  color: white;
}
.main-hero-middle-left img {
    height: 100px;
}
.main-hero-middle {
    display: flex;
    margin-top: 30px;
    width: 55%;
    justify-content: space-between;
}
.eapps-widget {
    overflow: hidden !important;
}
#contact-us-form .modal-body{
    height: 500px;
}

.blog-featured-img-left
 {
    width: 100%;
    border-radius: 4px 4px 0px 0px;
    height: 354px;
    overflow: hidden;
}
.left-side-blog-a:hover .main-blog-img {
    transform: scale(1.08);
}
.left-side-blog-a:hover h4.blog-image-title {
    text-decoration: underline !important;
    color:#006495 !important;
}
.left-side-blog .main-blog-img {
    border-radius: 4px 4px 0px 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.blog-featured-img-right
 {
    width: 73%;
    border-radius: 4px 0px 0px 4px;
    height: 155px;
    overflow: hidden;
}
.right-side-blog .main-blog-img {
    border-radius: 4px 0px 0px 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.right-side-blog-a:hover .main-blog-img {
    transform: scale(1.08);
}
.right-side-blog-a:hover h4.blog-image-title {
    text-decoration: underline !important;
    color:#006495 !important;
}

/* .blog-bg-main,
.blog-bg-small {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Main Blog */
.blog-bg-main {
    height: 354px;
}

/* Side Blogs */
.blog-bg-small {
    height: 155px;
    width: 100%;
}

/* Overlay */
.blog-image-overlay {
    height: 100%;
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0)
    );
} */


.blog-image-wrapper a{
    text-decoration: none;
}
.footer-text, .footer-bottom-text {
    font-size: 18px;
}
.footer-logo-img{
    height: 90px;
}
.contact-links a{
    color: #292929;
    font-size: 18px;
}
.contact-links a:hover {
    color: #0000FF !important;
}
.footer-vide-prime {
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 1px 0px !important;
}

.second-second-img {
    transition: transform 0.50s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.second-second-img-wrapper {
    overflow: hidden;
    border-radius: 6px;
}
.second-second-img:hover {
    transform: scale(1.08);
}

.cruise-title {
    line-height: 42px;
}
.header-phone:hover, .header-email:hover, .header-rentals:hover{
    text-decoration: underline !important;
    color: #0000FF !important;
}
#contact-us-form button.btn-close {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 1;
}
.scroll-down {
    bottom: 0;
    right: 0;
}
.float-image {
    animation: floatUpDown 1.5s linear infinite;
}

@keyframes floatUpDown {

0% {
    transform: translateY(0px);
}
50% {
    transform: translateY(15px);
}
100% {
    transform: translateY(0px);
}   

}

/* Button hover animation */
.hoveranimationbtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: left 0.75s ease;
    z-index: -1;
}

.hoveranimationbtn {
    overflow: hidden;
    border-radius: 5px;
    background-color: #1A8D3D;
    z-index: 0;
    transition: transform 0.7s ease, color 0.7s ease;
    position: relative;
    border: 2px solid transparent;
    padding: 6px 20px;
}

.hoveranimationbtn:hover {
    color: #1A8D3D !important;
    border-color: #1A8D3D;
}

.hoveranimationbtn:hover::before {
    left: 0;
}
/* Button Hover animation End */

.fade-in-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
    transform: translate(0, 0);
}

.fade-in-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}


.first-section-container {
  min-height: 527px;
}

/* Hero section */

#main-hero-section{
  background-image: url('../images/hero-section-bg.webp');
  background-size: cover;
  background-position: top;
}


.primetax-banner-slider {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    background: transparent;
    margin: auto;
    gap: 30px;
}
section#second-section-container {
    margin-top: 55px;
}
.primetax-banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: -60px;
}

/* .primetax-banner-boxes {
    display: flex;
    flex-direction: row;
    margin-top: 170px;
    gap: 10px;
} */
.primetax-banner-boxes {
    margin-top: 135px;
    gap: 8px;
    grid-template-columns: repeat(6, 1fr);
}

.primetax-banner-box {
    background: #73A3BB;
    margin: 0px;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    color: #fff;
    font-size: 18px;
    text-align: center;
    height: 117px;
    width: 202px;
    display: flex;
    align-items: center;
    justify-content: center;
      text-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    color: white;
    margin-bottom: -7px;
}

.primetax-banner-box.active {
    background: #006495;
    font-weight: bold;
}

.primetax-banner-slider h1 {
    font-size: 32px;
    font-weight: 400;
    text-align: start;
    color: #ffffff;
    line-height: 50px;
    padding-bottom: 15px;
}
.primetax-banner-slider h1 span {
    color: white;
    font-size: 35px;
    font-weight: 400;
    background-color: #D58147;
    border-radius: 11px;
    padding: 2px 12px;
    text-transform: uppercase;
    text-shadow: 0px 2px 4px rgb(0 0 0 / 25%);
}

.primetax-banner-slider h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.primetax-banner-slider h1 span b{
    font-weight: 500;
    /* text-shadow: 0px 2px 4px rgb(0 0 0 / 25%); */
}
#banner-subheading {
    font-size: 25px;
    margin: 0px;
    width: 65%;
    color: #fff;
    font-weight: 400;
    text-shadow: 0px 2px 4px rgb(0 0 0 / 25%);
}

        .primetax-banner-progress-bar {
            position: absolute;
            bottom: 1px;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            visibility: hidden; /* Start hidden */
        }

        .primetax-banner-progress {
            height: 100%;
            background: #fff;
            width: 0%;
            transition: width 0.3s ease;
        }
.primetax-banner-slide img{
            width: 100%;
            border-radius: 9px;
	height: 400px;
	object-fit: cover;
        }

@keyframes kenburns-center {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(0, 0);
  }
}

@keyframes kenburns-top-left {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(-10%, -10%);
  }
}

@keyframes kenburns-top-right {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(10%, -10%);
  }
}

@keyframes kenburns-bottom-left {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(-10%, 10%);
  }
}
.slidermainimg{
	  animation-duration: 20s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: none; /* default, reset on inactive */
}
.slidermainimg {
  transition: opacity 1s ease;
}
        /* Banner Slider Ends */


/* Hero Section - End */



.bullets-heading{
  font-weight: 500;
}
.col-step-two-1{
  width: 63%;
}
.col-step-two-2{
  width: 37%;
}
.second-second-img{
  width: 100%;
}

.col-step-five {
    background: #006495;
    color: white;
}
.col-step-one, .col-step-three, .col-step-five {
    width: 27%;
}
.steps-arrow img {
    width: 122px;
}
.col-step-one img, .col-step-three img, .col-step-five img {
    height: 62px;
    width: 68px;
    margin-top: -40px;
}
.steps-col-main .steps-col-main-box{
    padding: 10px 12px;
    border-radius: 7px;
}
.steps-col-main {
    border-radius: 10px;
}
.steps-col-main {
    border: 3px solid transparent;
    border-radius: 10px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(0deg, #D58147 0%, #006495 100%) border-box;
}
.steps-col-main p {
    font-weight: normal;
    font-size: 18px;
        margin-bottom: 0px;
}
.col-step-five p {
    font-weight: 500;
}
.col-step-five .steps-col-main-box{
  background: #006495;
}

/* Initial hidden state */
.step-animate {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease-out;
}

/* When visible */
.step-animate.step-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Optional stagger effect */
.col-step-one.step-visible { transition-delay: 0.1s; }
.col-step-two.step-visible { transition-delay: 0.2s; }
.col-step-three.step-visible { transition-delay: 0.3s; }
.col-step-fourth.step-visible { transition-delay: 0.4s; }
.col-step-five.step-visible { transition-delay: 0.5s; }



 .investment-scroll-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investment-content-container {
    text-align: center;
    /* padding: 30px 20px;
    max-width: 800px; */
    margin: 0 auto;
}

.money-spending-title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000000;
    transition: color 0.6s ease;
    line-height: 40px;
}

.money-spending-title.title-visible {
    color: #000;
    font-weight: 500;
}

.reposition-description {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #B9B9B9;
    transition: color 0.6s ease;
    line-height: 40px;
}
.wealthy-structure-quote {
    font-size: 30px;
    font-style: italic;
    font-weight: 300;
    color: #B9B9B9;
    transition: color 0.6s ease;
    line-height: 40px;
}

.reposition-description.description-visible {
    color: #000;
    font-weight: 500;
}

.investment-contact-button {
    display: inline-block;
    padding: 3px 14px;
    font-size: 20px;
    background-color: #F2F2F2;
    color: #B9B9B9;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.6s ease;
    margin-bottom: 40px;
    text-decoration: none;
}

.investment-contact-button.button-activated {
    background-color: #1A8D3D;
    color: #fff;
}

.wealthy-structure-quote {
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    color: #B9B9B9;
    transition: color 0.6s ease;
    line-height: 40px;
}

.wealthy-structure-quote.quote-visible {
    color: #000;
    font-weight: 300;
}

.scroll-spacer-top {
    height: 20vh;
}

.scroll-spacer-bottom {
    height: 20vh;
}

.first-section-container{
  margin-top: 16px;
}
.desktop-logo img {
    height: 65px;
}
.header-button-clr, .header-button-clr:hover, .black-clr{
  color: #292929;
}
.font-size-18{
  font-size: 18px;
}
.header-cta-button {
    background-color: #1A8D3D;
    border-radius: 5px;
}
.header-cta-button button, .header-cta-button button:hover {
  color: white;
  font-size: 18px;
  width: 133px;

}
.halfcolor {
    color: white;
    font-size: 30px;
    font-weight: 500;
    background-color: #D58147;
    border-radius: 5px;
    padding: 2px 12px;
}

/* Reviews */
#reviews-section{
  background-color: #EDF4F7;
}


/* FAQs */

/* .video-container {
    position: relative;
    width: 645px;
    height: 354px;
}
.video-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2;
}
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 2px 4px 1px rgb(0 0 0 / 25%) !important;
    border-radius: 7px;

}
.youtube-iframe {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
} */

.video-container {
    position: relative;
    width: 100%;
    height: 354px;
    overflow: hidden; /* keeps zoom inside */
    border-radius: 7px;
}

/* Overlay wrapper */
.video-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2;
}

/* Thumbnail image */
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Black light overlay */
.video-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* black light */
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 7px;
}

/* Hover effects */
/* .video-container:hover .video-thumbnail {
    transform: scale(1.08);
}

.video-container:hover .video-overlay::after {
    opacity: 1;
} */

/* YouTube iframe */
.youtube-iframe {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 7px;
}



.custom-accordion .accordion-item:hover{
  box-shadow: 0px 2px 4px 1px rgb(0 0 0 / 25%) !important;
}
.custom-accordion .accordion-item:hover .accordion-button{
  font-weight: 500;
 }
.custom-accordion .accordion-item {
    border: 1px solid #006495;
    border-radius: 8px 0px 8px 0px;
    margin-bottom: 9px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-item.active{
    box-shadow: 0px 2px 4px 1px rgb(0 0 0 / 25%) !important;
    border-radius: 8px !important;
    border: 0px solid #006495 !important;
}
.custom-accordion .accordion-button {
    background: #ffffff;
    color: #292929;
    padding: 8px 20px;
    box-shadow: none;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item.active .accordion-button,
.custom-accordion .accordion-button:not(.collapsed) {
    background: #006495;
    color: #ffffff;
    font-weight: 500;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 20px;
    font-weight: 400;
    margin-top: -2px;
    color: #006495;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "–";
}

.custom-accordion .accordion-body {
    background: #f8f9fa;
    color: #292929;
    font-size: 16px;
    line-height: 22px;
    padding: 6px 16px;
}




/* Blog */
section#blog-sect, section#rentals-sect {
    background-color: #EDF4F7;
}
.blog-image-wrapper {
    border-radius: 9px;
}

.blog-image-overlay {
    padding: 8px 13px;
    background: #FFFFFF;
    border-radius: 0px 0px 4px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-image-wrapper {
    border-bottom: 2px solid #006495;
    border-radius: 4px;
}

.left-side-blog .main-blog-img {
    border-radius: 4px 4px 0px 0px;
}

/* .right-side-blog .main-blog-img {
    border-radius: 4px 0px 0px 4px;
} */

.blog-image-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.right-side-blog {
    gap: 5px;
}

.blog-meta span {
    font-size: 14px;
    color: #292929;
}

h4.blog-image-title {
    font-size: 18px;
}
.social-links-head {
    gap: 2px;
}
.social-links-head li {
    width: 30px;
    height: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
    padding: 5px 1px;
}

.social-links-head li:hover a.hovericon {
    transform: translate(0px, 0px);
    opacity: 1;
}
.social-links-head li:hover a.default-icon {
    transform: translate(0px, 50px);
}

/* Social Links */
.social-links li {
    width: 36px;
    height: 38px;
    transition: all 0.4s ease;
    overflow: hidden;
    padding: 5px 1px;
}

.social-links li:hover a.hovericon {
    transform: translate(0px, 0px);
    opacity: 1;
}

a.hovericon {
    position: absolute;
    transform: translate(0px, -35px);
    opacity: 0;
    transition: all 0.4s ease;
}

.social-links li:hover a.default-icon {
    transform: translate(0px, 50px);
}

a.default-icon {
    position: absolute;
    transition: all 0.4s ease;
}

.hovericon img {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}
.footer-separator {
    border: 1px solid #000000;
    width: 80%;
    margin: 0 auto;
}

.ptax-carousel-container {
    margin: 0 auto;
    position: relative;
}

img.ptax-reviewer-verified {
    position: absolute;
    right: 12px;
    bottom: 5px;
}

.ptax-reviewer-avatar-wrapper {
    position: relative;
}

.ptax-review-card {
    background: #fff;
    border: 1px solid #006495;
    border-radius: 15px;
    padding: 30px 30px 20px 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.ptax-review-card:hover {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.ptax-review-card.ptax-side-card {
    background: #fff;
    color: #000000d1;
    transform: scale(0.9);
    border: 1px solid #898484;
}

.ptax-review-card.ptax-side-card .ptax-stars i {
    color: #F4C46F;
}

.ptax-stars {
    margin-bottom: 15px;
}

.ptax-stars i {
    color: #F1AC32;
    font-size: 18px;
    margin-right: 2px;
}

.ptax-review-text {
    font-size: 16px;
    line-height: 24px;
    color: #292929;
    min-height: 150px;
    margin-bottom: 10px;
}

.ptax-side-card .ptax-review-text {
    color: #000000d1;
    margin-bottom: 0px;
    min-height: 170px;
}

.ptax-read-more {
    color: #292929;
    text-decoration: underline;
    font-weight: 400;
    cursor: pointer;
}

.ptax-side-card .ptax-read-more {
    color: #000000d1;
    text-decoration: underline;
    font-weight: 400;
}

.ptax-review-card.ptax-side-card .ptax-reviewer-avatar {
    width: 45px;
    height: 45px;
}

.ptax-reviewer-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    /* background: #006495; */
    background: transparent;
    padding: 6px 15px;
    margin: 0 -30px -30px -30px;
    position: relative;
    clip-path: polygon(100% 0%, 87% 50%, 100% 100%, 0 98%, 0% 50%, 0 1%);
    width: 88%;
}

/* .ptax-side-card .ptax-reviewer-info {
    background: #006495;
} */

.ptax-reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 1px solid #006495;
}

.ptax-reviewer-avatar.ptax-initial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.ptax-reviewer-details {
    flex-grow: 1;
}

.ptax-review-card.ptax-side-card .ptax-reviewer-name {
    color: #000000;
    font-weight: 400;
    margin: 0;
    font-size: 16px;
}

.ptax-review-card .ptax-reviewer-name {
    color: #000000;
    font-weight: 500;
    margin: 0;
    font-size: 18px;
}

.ptax-review-card.ptax-side-card .ptax-reviewer-rating img {
    opacity: 0.7;
}

.ptax-review-card .ptax-reviewer-rating img {
    opacity: 1;
}

.ptax-reviewer-rating {
    display: flex;
    align-items: center;
    margin-top: 0px;
    gap: 2px;
}

.ptax-reviewer-rating img {
    width: 16px;
    height: 16px;
    margin-right: 3px;
}

.ptax-review-card .ptax-reviewer-rating .ptax-rating-stars {
    color: #ffc107;
    font-size: 12px;
}

.ptax-review-card.ptax-side-card .ptax-reviewer-rating .ptax-rating-stars {
    color: #ffc107;
    font-size: 12px;
}

.ptax-reviewer-rating .ptax-rating-value {
    color: #000000;
    font-size: 10px;
    font-weight: 500;
}

.ptax-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.ptax-carousel-nav:hover {
    background: #0078AC;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.ptax-carousel-nav.ptax-prev {
    left: 0px;
    opacity: 0;
    pointer-events: none;
}

.ptax-carousel-nav.ptax-prev.ptax-show {
    opacity: 1;
    pointer-events: all;
}

.ptax-carousel-nav.ptax-next {
    right: 0px;
    opacity: 1;
}

.ptax-carousel-nav i {
    font-size: 20px;
    color: #0078AC;
}

.ptax-carousel-nav:hover i {
    color: white;
}

.ptax-carousel-inner-custom {
    display: flex;
    transition: transform 0.5s ease;
    gap: 10px;
    justify-content: flex-start;
}

.ptax-carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.ptax-review-card.ptax-side-card .ptax-review-card {
    flex: 0 0 350px;
    max-width: 350px;
    min-height: 300px;
}

.ptax-review-card {
    flex: 0 0 425px;
    max-width: 425px;
    min-height: 327px;
}
/* =============Laptop=================== */
@media (min-width: 1025px) and (max-width: 1366px) {
    .main-hero-middle {
        width: 62%;
    }
    .ptax-review-card {
        flex: 0 0 370px;
        max-width: 370px;
    }

    .ptax-review-card.ptax-side-card .ptax-review-card {
        flex: 0 0 290px;
        max-width: 290px;
    }

    #main-hero-section {
        background-position: center;
    }



}

/* Tablet Mode: 769px to 1023px */
@media (max-width: 1024px) {
    .ptax-carousel-nav.ptax-prev.ptax-show {
        opacity: 1;
    }
    .ptax-carousel-nav.ptax-next {
        opacity: 1;
    }
    h4.blog-image-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .blog-featured-img-right {
        width: 78%;
        height: 165px;
    }
    .ptax-review-card {
        flex: 0 0 65%;
        max-width: 65%;
        transform: scale(1);
    }

    .ptax-review-card.ptax-side-card {
        display: flex;
        /* transform: scale(1); */
    }
    .ptax-review-card:hover {
        box-shadow: none;
    }
}

/* Mobile Mode: up to 768px */
@media (max-width: 767px) {

    .step-animate {
        transform: translateY(-40px); /* animate from top */
    }
    .step-animate.step-visible {
        transform: translateY(0);
    }
    .main-hero-middle-left-mobile p {
        font-size: 16px;
        line-height: 19px;
        color: black;
    }
    .main-hero-middle-left-mobile img {
        height: 62px;
    }
    section#second-section-rentals-container {
        margin-top: 16px;
    }
    #contact-us-form .modal-body{
        height: 650px;
    }
    .blog-featured-img-right {
        width: 69%;
        height: 89px;
    }
    .ptax-review-card:hover {
        box-shadow: none;
    }
    .ptax-reviewer-avatar {
        width: 40px;
        height: 40px;
        margin-right: 13px;
    }
    .ptax-review-text {
        min-height: 170px;
    }
    .ptax-reviewer-rating img {
        width: 14px;
        height: 14px;
    }
    .ptax-review-card .ptax-reviewer-name {
        font-size: 16px;
    }
    .ptax-review-card.ptax-side-card {
        display: none;
    }

    .ptax-review-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ptax-carousel-nav {
        width: 40px;
        height: 40px;
    }

    .ptax-carousel-nav.ptax-prev {
        left: -10px;
    }

    .ptax-carousel-nav.ptax-next {
        right: -10px;
    }
}

/* .ptax-carousel-container {
    margin: 0 auto;
    position: relative;
}

img.ptax-reviewer-verified {
    position: absolute;
    right: 12px;
    bottom: 5px;
}

.ptax-reviewer-avatar-wrapper {
    position: relative;
}

.ptax-review-card {
    background: #fff;
    border: 1px solid #006495;
    border-radius: 15px;
    padding: 30px 30px 20px 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.ptax-review-card:hover {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.ptax-review-card.ptax-side-card {
    background: #fff;
    color: #000000d1;
    transform: scale(0.9);
    border: 1px solid #898484;
}

.ptax-review-card.ptax-side-card .ptax-stars i {
    color: #F4C46F;
}

.ptax-stars {
    margin-bottom: 15px;
}

.ptax-stars i {
    color: #F1AC32;
    font-size: 18px;
    margin-right: 2px;
}

.ptax-review-text {
    font-size: 16px;
    line-height: 24px;
    color: #292929;
    min-height: 150px;
    margin-bottom: 10px;
}

.ptax-side-card .ptax-review-text {
    color: #000000d1;
    margin-bottom: 0px;
    min-height: 170px;
}

.ptax-read-more {
    color: #292929;
    text-decoration: underline;
    font-weight: 400;
    cursor: pointer;
}

.ptax-side-card .ptax-read-more {
    color: #000000d1;
    text-decoration: underline;
    font-weight: 400;
}

.ptax-review-card.ptax-side-card .ptax-reviewer-avatar {
    width: 45px;
    height: 45px;
}

.ptax-reviewer-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    background: #006495;
    padding: 6px 15px;
    margin: 0 -30px -30px -30px;
    position: relative;
    clip-path: polygon(100% 0%, 87% 50%, 100% 100%, 0 98%, 0% 50%, 0 1%);
    width: 88%;
}

.ptax-side-card .ptax-reviewer-info {
    background: #006495;
}

.ptax-reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 1px solid #006495;
}

.ptax-reviewer-avatar.ptax-initial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.ptax-reviewer-details {
    flex-grow: 1;
}

.ptax-review-card.ptax-side-card .ptax-reviewer-name {
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 16px;
}

.ptax-review-card .ptax-reviewer-name {
    color: white;
    font-weight: 500;
    margin: 0;
    font-size: 18px;
}

.ptax-review-card.ptax-side-card .ptax-reviewer-rating img {
    opacity: 0.7;
}

.ptax-review-card .ptax-reviewer-rating img {
    opacity: 1;
}

.ptax-reviewer-rating {
    display: flex;
    align-items: center;
    margin-top: 0px;
    gap: 2px;
}

.ptax-reviewer-rating img {
    width: 16px;
    height: 16px;
    margin-right: 3px;
}

.ptax-review-card .ptax-reviewer-rating .ptax-rating-stars {
    color: #ffc107;
    font-size: 12px;
}

.ptax-review-card.ptax-side-card .ptax-reviewer-rating .ptax-rating-stars {
    color: #ffc107;
    font-size: 12px;
}

.ptax-reviewer-rating .ptax-rating-value {
    color: #fff;
    font-size: 10px;
    font-weight: 500;
}

.ptax-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.ptax-carousel-nav:hover {
    background: #0078AC;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.ptax-carousel-nav.ptax-prev {
    left: 0px;
}

.ptax-carousel-nav.ptax-next {
    right: 0px;
}

.ptax-carousel-nav i {
    font-size: 20px;
    color: #0078AC;
}

.ptax-carousel-nav:hover i {
    color: white;
}

.ptax-carousel-inner-custom {
    display: flex;
    transition: transform 0.5s ease;
    gap: 10px;
    justify-content: flex-start;
}

.ptax-carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.ptax-review-card.ptax-side-card .ptax-review-card {
    flex: 0 0 350px;
    max-width: 350px;
    min-height: 300px;
}

.ptax-review-card {
    flex: 0 0 425px;
    max-width: 425px;
    min-height: 327px;
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .ptax-review-card {
        flex: 0 0 370px;
        max-width: 370px;
    }

    .ptax-review-card.ptax-side-card .ptax-review-card {
        flex: 0 0 290px;
        max-width: 290px;
    }
}

@media (max-width: 1200px) {
    .ptax-review-card {
        flex: 0 0 300px;
        max-width: 300px;
    }

    .ptax-review-card.ptax-side-card .ptax-review-card {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
 
    .ptax-review-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ptax-carousel-nav {
        width: 40px;
        height: 40px;
    }

    .ptax-carousel-nav.ptax-prev {
        left: -10px;
    }

    .ptax-carousel-nav.ptax-next {
        right: -10px;
    }
} */


/* Rentals */

.gallery-container {
    display: flex;
    gap: 10px;
    height: 361px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-panel {
    position: relative;
    flex: 1;
    border-radius: 7px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-panel.active {
    flex: 3.5;
    cursor: default;
}

/* .gallery-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */
 .gallery-panel .main-dest-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 40px 20px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-panel.active .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
}
.gallery-panel.active .gallery-title {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.1s;
}

.gallery-description {
    color: white;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-panel.active .gallery-description {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-panel:not(.active) .gallery-overlay {
    opacity: 1;
    pointer-events: none;
    background: none;
}

.gallery-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-panel:not(.active):hover::before {
    opacity: 1;
}

@media (max-width: 1024px) {
    .testimonial-quote-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .main-hero-middle {
        display: block !important;
        margin-top: 250px;
    }
    .gallery-container {
        flex-direction: row;
        height: 272px;
    }

    .gallery-panel {
        flex: 1;
        height: 272px;
    }

    .gallery-panel.active {
        flex: 3.5;
        height: 272px;
    }

    .gallery-title {
        font-size: 20px;
    }

    .gallery-description {
        font-size: 1rem;
        display: none;
    }
}

@media (max-width: 767px) {
    .gallery-panel:not(.active) .gallery-overlay {
        opacity: 1;
        pointer-events: none;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    }
    #main-hero-section .container{
        padding: 0px;
    }
    .gallery-title img {
        margin-right: 7px;
    }
    .gallery-container {
        flex-direction: column;
        height: auto;
    }
    .gallery-panel .gallery-title img{
        display: none;
    }
    .gallery-panel.active .gallery-title img{
        display: inline-block;
    }
    .gallery-panel.active .gallery-title{
        font-size: 18px;
        margin: 0 0 5px 0;
    }
    .gallery-title {
        font-size: 16px;
        opacity: 1;
        margin: 0 0 20px 0;
    }

    .gallery-description {
        font-size: 0.9rem;
        display: none;
    }

    .gallery-overlay {
        padding: 20px 20px 20px;
    }
    .gallery-panel {
        flex: auto;
        height: 46px;
    }

    .gallery-panel.active {
        flex: auto;
        height: 204px;
    }
}


.iframe-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 25px;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 7px;
}

/* Loader Style */
.iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 10;
}
.iframe-loader::after {
    content: "";
    width: 24px;
    height: 24px;
    border: 3px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



/* .iframe-wrapper{
    position: relative;
    width: 100%;
    height: 600px;
}
 
.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 7px;
} */
 
/* overlay to hide branding area */
.hide-poweredby{
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 30px;   /* increase if needed */
    background: white;
    border-radius: 0px 0px 7px 7px;
}
.ssc-p{
    margin-bottom: 24px;
    margin-bottom: 24px;
}
.ssc-p-list img {
    margin-right: 5px;
}
.ssc-p-list-main li{
    margin-bottom: 16px;
}
/* Tablet */
@media (max-width: 1024px) {

    .right-side-blog {
        gap: 11px;
    }
    .desktop-logo img {
        height: 55px;
    }
    .hoveranimationbtn {
        font-size: 18px;
        padding: 6px 16px;
    }
    .footer-logo-img{
        height: 79px;
    }
    .social-links li {
        width: 40px;
        height: 40px;
        padding: 5px 1px;
    }
    .primetax-banner-box {
        font-size: 15px;
        height: 117px;
        width: 165px;
        padding: 10px 8px;
    }
    .first-section-container {
        min-height: 923px;
    }
    .primetax-banner-slider h1 {
        font-size: 28px;
    }
    .primetax-banner-slider h1 span {
        font-size: 30px;
    }
    #banner-subheading {
        font-size: 21px;
        width: 100%;
    }
    #main-hero-section {
        background-image: url(../images/tablet-hero-2.webp);
        background-size: cover;
        background-position: center;
    }
    .primetax-banner-boxes {
        margin-top: 80px;
    }
    .primetax-banner-slider {
        height: 923px;
    }
    .col-step-two-1, .col-step-two-2 {
        width: 100%;
    }
    section#second-section-container {
        margin-top: 75px;
    }
    .ssc-p{
        margin-bottom: 24px;
        margin-top: 24px;
    }
    .font-size-18 {
        font-size: 18px;
        line-height: 30px;
    }
    .ssc-p-list{
        font-size: 18px;
    }
    .steps-col-main p {
        font-size: 15px;
    }
    .col-step-one img, .col-step-three img, .col-step-five img {
        height: 38px;
        width: 40px;
        margin-top: -68px;
    }
    .steps-arrow img {
        width: auto;
    }
    .col-step-one, .col-step-three, .col-step-five {
        width: 37%;
    }
    .steps-col-main .steps-col-main-box {
        padding: 10px 4px;
        border-radius: 7px;
    }
    .money-spending-title {
        margin-top: 20px;
        font-size: 28px;
        margin-bottom: 30px;
        line-height: 38px;
    }
    .reposition-description {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 38px;
    }
    .investment-contact-button {
        margin-bottom: 30px;
    }
    .wealthy-structure-quote {
        font-size: 26px;
        line-height: 38px;
    }
    .custom-accordion .accordion-button {
        padding: 10px 20px;
        font-size: 20px;
    }
    .custom-accordion .accordion-body {
        font-size: 18px;
        line-height: 27px;
        padding: 9px 16px;
    }
    .video-container{
        margin-top: 25px;
        width: 100%;
    }


    
}

/* Desktop default */
.desktop-only { display: block; }
.mobile-only { display: none; }

/* Mobile */
@media (max-width: 767px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
}


/* Mobile */

@media (max-width: 767px) {

    .blog-image-wrapper {
        border-bottom: 1px solid #006495;
        border-radius: 6px;
        border-top: 1px solid #006495;
        border-left: 1px solid #006495;
        border-right: 1px solid #006495;
    }
    .blog-image-overlay {
        border-radius: 0px 7px 7px 0px;
    }
    h4.blog-image-title {
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .custom-accordion .accordion-body {
        font-size: 16px;
        line-height: 27px;
        padding: 8px 16px;
    }
    .custom-accordion .accordion-button {
        padding: 8px 20px;
        font-size: 18px;
    }
    .desktop-logo img {
        height: 37px;
    }
    .phone-icon-mobile img{
        height: 36px;
    }
    .desktop-google-rating img {
        height: 23px;
    }
    .footer-logo-img{
        height: 73px;
    }
    .footer-text, .footer-bottom-text {
        font-size: 16px;
    }
    .footer-separator {
        width: 100%;
    }
    .social-links li {
        width: 40px;
        height: 40px;
        padding: 5px 1px;
    }
    .primetax-banner-slider h1 {
        font-size: 18px;
        /* text-align: center; */
        padding-bottom: 2px;
        font-weight: 500;
        line-height: 30px;
    }
    .primetax-banner-slider h1 span {
        font-size: 24px;
        border-radius: 5px;
        margin-top: 7px;
        
        padding: 6px 12px;
    
    }
    /* #banner-subheading-mobile{
        text-align: center;
    } */
    #banner-subheading-mobile span {
        color: white;
        font-size: 22px;
        background-color: #D58147;
        border-radius: 5px;
        padding: 6px 12px;
        text-transform: uppercase;
        text-shadow: 0px 2px 4px rgb(0 0 0 / 25%);
        /* text-align: center; */
    }
    #banner-subheading-mobile span b{
        font-weight: 500;
    }
    .social-links-head li {
        width: 34px;
        height: 36px;
    }
    .primetax-banner-boxes {
        gap: 8px;
        grid-template-columns: repeat(2, 2fr);
        margin-top: 120px;
    }
    #main-hero-section {
        background-image: url(../images/mobile-hero.webp);
        background-size: cover;
        background-position: center;
    }
    .first-section-container {
        min-height: 616px;
    }
    .primetax-banner-box {
        font-size: 16px;
        height: 100%;
        width: 100%;
        padding: 14px 8px;
    }
    .primetax-banner-slider {
        height: 616px;
    }
    .primetax-banner-content {
        margin-bottom: 20px;
    }
    .col-step-two-1, .col-step-two-2 {
        width: 100%;
    }
    section#second-section-container {
        margin-top: 0px;
    }
    .halfcolor {
        font-size: 22px;
        font-weight: 500;
        background-color: #D58147;
        border-radius: 5px;
        padding: 2px 12px;
    }
    .cruise-title {
        line-height: 38px;
        font-size: 22px;
    }
    .font-size-18 {
        font-size: 16px;
        line-height: 26px;
    }
    .ssc-p, .ssc-p-mobile{
        margin-top: 14px;
        margin-bottom: 18px;
    }
    .ssc-p-list {
        font-size: 16px;
    }
    .ssc-p-list-main li, .ssc-p-list-main-mobile li{
        margin-bottom: 10px;
    }
    .col-step-one, .col-step-three, .col-step-five {
        width: 100%;
    }
    .steps-arrow img {
        width: auto;
    }
    .steps-col-main p {
        font-size: 16px;
    }
    .col-step-one img, .col-step-three img, .col-step-five img {
        margin-top: -32px;
        height: 62px;
        width: 68px;
    }
        .money-spending-title {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 25px;
        margin-top: 15px;
    }
    
    .reposition-description {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    
    .wealthy-structure-quote {
        font-size: 18px;
        line-height: 30px;
    }
    .investment-contact-button.button-activated {
        margin-bottom: 25px;
    }


}

@media (max-width: 767px) {
    .main-hero-middle-left-mobile {
        margin-top: 30px;
    }
    .testimonial-carousel-item, .testimonial-carousel-item-mobile {
        padding: 30px 0px;
        text-align: center;
    }

    .testimonial-quote-text, .testimonial-quote-text-mobile {
        font-size: 16px;
        margin-bottom: 12px;
        width: 100%;
        font-style: italic;
        line-height: 21px;
    }
    .testimonial-author-image, .testimonial-author-image-mobile {
        width: 25px;
        height: 25px;
    }
    .testimonial-carousel-container, .testimonial-carousel-container-mobile {
        max-width: 330px;
            margin: auto;
    }
    .timshare-mobile-botton-section {
        width: 100%;
    }
    .testimonial-rating-wrapper img, .testimonial-rating-wrapper-mobile img {
        height: 15px;
    }

    .testimonial-author-name, .testimonial-author-name-mobile {
        font-size: 14px;
    }

    .testimonial-star-icon, .testimonial-star-icon-mobile {
        font-size: 28px;
    }

    .testimonial-next-arrow, .testimonial-next-arrow-mobile {
        width: 30px;
        height: 30px;
        right: 10px;
    }
    .testimonial-prev-arrow, .testimonial-prev-arrow-mobile {
        left: 10px;
        width: 30px;
        height: 30px;
    }

    .testimonial-author-section, .testimonial-author-section-mobile {
        flex-direction: row;
        align-items: center;
    }
    .testimonial-next-arrow::before, .testimonial-next-arrow-mobile::before {
        width: 15px;
        height: 15px;
        border-right: 2px solid white;
        border-top: 2px solid white;
    }
    .testimonial-prev-arrow::before, .testimonial-prev-arrow-mobile::before {
        width: 15px;
        height: 15px;
        border-left: 2px solid white;
        border-top: 2px solid white;
    }


}



.audio-block {
    display: none !important;
}