/************************************* newsletter-modal css start *************************************/
/*====================================
    newsletter-modal css
====================================*/
@media (min-width: 768px) {
    .newsletter-modal .newsletter-info .newsletter-content .newsletter-form .news-wrap input {
        border-radius: var(--border-radius) 0px 0px var(--border-radius);
    }
    .newsletter-modal .newsletter-info .newsletter-content .newsletter-form .news-wrap button {
        border-radius: 0px var(--border-radius) var(--border-radius) 0px;
    }
}
/************************************* newsletter-modal css end *************************************/

/************************************* scroll-text css start *************************************/
/*====================================
    scroll-text-marquee css
====================================*/
.scroll-text .scroll-text-marquee .scroll-text-marquee-row {
    -webkit-animation: slide-left 40s linear infinite;
    animation: slide-left 40s linear infinite;
}
.scroll-text:hover .scroll-text-marquee .scroll-text-marquee-row,
.scroll-text:focus .scroll-text-marquee .scroll-text-marquee-row {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

/* slide-left keyframes css */
@-webkit-keyframes slide-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
@keyframes slide-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
/************************************* scroll-text css end *************************************/

/************************************* home-slider css start *************************************/
/*====================================
    home-slider swiper css
====================================*/
.slider-content .home-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}

/*====================================
    slider-overlay css
====================================*/
.slider-content .home-slider.swiper .swiper-slide .slider-image .slider-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0) 80%);
    pointer-events: none;
    z-index: 0;
}

/*====================================
    slider-content css
====================================*/
.slider-content .home-slider.swiper .swiper-slide .slider-image h2,
.slider-content .home-slider.swiper .swiper-slide .slider-image span,
.slider-content .home-slider.swiper .swiper-slide .slider-image a {
    opacity: 0;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image h2,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image span,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image a {
    opacity: 1;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image h2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image span {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image a {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
}

/*====================================
    slider-navigation css
====================================*/
.slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-prev {
    left: 5px;
}
.slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-next {
    right: 5px;
}
@media (min-width: 1400px) {
    .slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-prev {
        left: 10px;
    }
    .slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-next {
        right: 10px;
    }
}
@media (min-width: 1600px) {
    .slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-prev {
        left: 30px;
    }
    .slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-next {
        right: 30px;
    }
}

/*====================================
    slider-dot css
====================================*/
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination {
    width: unset;
    position: unset;
    margin: -5px 0px 0px -5px;
}
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-font-color);
    margin: 5px 0px 0px 5px;
    opacity: 1;
    border: 1px solid var(--secondary-font-color);
}
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span.swiper-pagination-bullet:hover,
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--dominant-font-color);
    border-color: var(--dominant-font-color);
}
/************************************* home-slider css end *************************************/

/************************************* service css start *************************************/
/*====================================
    service-content css
====================================*/
.service-area .service-content span.service-img {
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}
.service-area .service-content:hover span.service-img {
    background-color: var(--dominant-font-color);
}
.service-area .service-content span.service-img img {
    -webkit-transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
.service-area .service-content:hover span.service-img img.service-img1,
.service-area .service-content span.service-img img.service-img2 {
    opacity: 0;
    visibility: hidden;
}
.service-area .service-content:hover span.service-img img.service-img2 {
    opacity: 1;
    visibility: visible;
}
/************************************* service css end *************************************/

/************************************* brand-logo css start *************************************/
/*====================================
    brand-logo swiper css
====================================*/
.brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 50%;
}
@media (min-width: 576px) {
    .brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}
@media (min-width: 992px) {
    .brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 25%;
    }
}
@media (min-width: 1200px) {
    .brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 20%;
    }
}

/*====================================
    brand-content css
====================================*/
@media (min-width: 1200px) {
    .brand-logo .brand-slider .brand-content a span img {
        -webkit-filter: opacity(0.3) grayscale(1);
        filter: opacity(0.3) grayscale(1);
        -webkit-transition: filter 0.3s ease-in-out;
        transition: filter 0.3s ease-in-out;
    }
    .brand-logo .brand-slider .brand-content:hover a span img {
        -webkit-filter: opacity(1) grayscale(0);
        filter: opacity(1) grayscale(0);
    }
}
/************************************* brand-logo css end *************************************/

/************************************* video-banner css start *************************************/
/*====================================
    video-banner css
====================================*/
.video-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(0deg, #000000 8.33%, transparent);
    opacity: 0.8;
}

/* video-banner-text-img css */
.video-banner .video-banner-text-img {
    transform: translateY(33.33%);
}
/************************************* video-banner css end *************************************/

/************************************* home-feature css start *************************************/
/*====================================
    home-feature css
====================================*/
.home-feature .home-feature-row>* {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(var(--border-color), var(--border-opacity));
}
.home-feature .home-feature-row>*:first-child {
    margin-top: 0px;
    padding-top: 0px;
    border-top: none;
}

/*====================================
    hot-spot css
====================================*/
.hot-spot.hot-spot1 {
    top: 8.33%;
    right: 50%;
}
.hot-spot.hot-spot2 {
    bottom: 25%;
    left: 25%;
}

/* hot-spot-content css */
.hot-spot .hot-spot-content {
    display: none;
    width: 240px;
}
.hot-spot.hot-spot1 .hot-spot-content {
    transform: translate(-50%, calc(0% + 32px));
}
.hot-spot.hot-spot2 .hot-spot-content {
    transform: translate(-25%, calc(0% + 32px));
}
.hot-spot .hot-spot-content::after {
    content: "";
    position: absolute;
    top: -15px;
    transform: translateX(-50%);
    border: 8px solid;
    border-color: transparent transparent var(--body-bgcolor) transparent;
}
.hot-spot.hot-spot1 .hot-spot-content::after {
    left: 50%;
}
.hot-spot.hot-spot2 .hot-spot-content::after {
    left: 25%;
}
/************************************* home-feature css end *************************************/

/************************************* testimonial css start *************************************/
/*====================================
    testimonial slider-swiper css
====================================*/
.testimonial .testi-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}
@media (min-width: 1200px) {
    .testimonial .testi-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 50%;
    }
}

/*====================================
    testi-content css
====================================*/
.testimonial .testi-slider .testi-content .testi-img img {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}
/************************************* testimonial css end *************************************/


/*dolan css  start*/

.header-theme-logo  img{
    width: 150px;
    height: 20px;
}
.ribbon-header-links ul {
  display: flex;
  gap:30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  margin-bottom: 0;
}

.ribbon-header-links li {
    display:flex;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--body-font);
    line-height: 160%;
    transition: all 0.5s ease;
}

.top-part {
  background-color: #eff6ed;
  padding: 10px;
}

.ribbon-header-links li a:hover {
  color: #42872c;
}


 .single-product .single-product-wrap .product-image .product-action {
    position: absolute;
    top: 50%;
    right: 50%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}

.btn-max-175 {
    max-width: 175px;
    width: 100%; 
    display: inline-block; 
}


.content-list {
    width: 100%;
}

.content-text {
    position: relative;
    padding-left: 20px; 
    line-height: 1.5;
}


.content-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: currentColor; 
    border-radius: 50%;
}



/*Table */
.yardage-table-wrapper {
  width: 100%;
  margin: 25px 0px 0px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.yardage-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #ffffff;
}

.yardage-table th,
.yardage-table td {
  padding: 18px 14px;
  border: 1px solid #cfcfcf;
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.yardage-table th {
  background-color: #f5f5f5;
  font-weight: 700;
  color: #111111;
}

.yardage-table td {
  color: #222222;
}

.yardage-table th:nth-child(1),
.yardage-table td:nth-child(1) {
  width: 33%;
}

.yardage-table th:nth-child(2),
.yardage-table td:nth-child(2) {
  width: 29%;
}

.yardage-table th:nth-child(3),
.yardage-table td:nth-child(3) {
  width: 38%;
}

.yardage-table tbody tr:hover {
  background-color: #fafafa;
}



.link-policy {
    color: #111111;
}
.link-policy:hover {
    color:#ffa500; 
}

.privacy-policy2 strong{
color: #111111;
}

.bg-shade {
    background-color: #ecf0f1 !important;
}
.submit-btn:hover{
   color: var(--extra-font-color);
    background-color: var(--dominant-font-color);
    border: 1px solid var(--dominant-font-color);
}

.max-para{
    max-width: 350px;
}


@media (max-width: 768px) {
    .height-80 {
    height: 60px;
}
.width-80 {
    width: 60px;
}

.btn-max-175 {
    margin: 0 auto;
    
}


.ribbon-header-links ul {
  justify-content: center;
   gap: 10px;
}
.ribbon-header-links li {
    font-size: 14px;
    
}
}
/*dolan css  end*/

/* //// popup style /// */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(4px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
}
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 480px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    z-index: 9999999;
    transform: translate(-50%, -50%) scale(.8);
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
    box-shadow: 0 25px 70px rgba(0,0,0,.15);
}
.success-popup.active,
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.success-popup.active {
    transform: translate(-50%, -50%) scale(1);
}
.popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
    border: none;
    background: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #999;
    transition: .3s;
}
.popup-close:hover {
    color: #000;
    transform: rotate(90deg);
}
.popup-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: #42872c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-icon i {
    color: #fff;
    font-size: 40px;
}
.success-popup h3 {
    margin: 0 0 15px;
    font-size: 32px;
    color: #222;
}
.success-popup p {
    margin: 0 0 25px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}
.popup-btn {
    border: none;
    background: #42872c;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}
.popup-btn:hover {
    transform: translateY(-2px);
}
 
@media (max-width: 576px) {
 
    .success-popup {
        padding: 35px 20px;
    }
 
    .popup-icon {
        width: 75px;
        height: 75px;
    }
 
    .popup-icon i {
        font-size: 32px;
    }
 
    .success-popup h3 {
        font-size: 26px;
    }
 
    .success-popup p {
        font-size: 15px;
    }
}
/* //// popup style /// */
.article-img img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}
.bolg3 img{
    object-position: bottom !important;
}


.error-content {
    max-width: 550px;
    margin: 0 auto !important;
    text-align: center;
}


.product-title{
    font-size: 28px;
    font-weight: 600;
}

.quick-view .product-icon{
    background-color: var(--dominant-font-color);
}
.error-msg{
    color: red;
}
.blog-listing-page .blog-post,
.blog-area .blog-post {
    background-color: #c5c5c552;
    padding: 12px;
    border-radius: 8px;
    height: 100%;
    min-height: 570px;
}

.why-golvirezon .about-team-img img{
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.article-desc p > a{
    color: var(--dominant-font-color);
    text-decoration: underline;
}



@media only screen and (max-width: 575px) {
    .font-26 {
        font-size: 22px;
    }
    .btn-style {
        height: 40px;
        padding: 6px 15px;
        font-size: 12px;
    }
    .product-title {
        font-size: 15px;
        font-weight: 600;
    }
}