/* ------------------------------------------------
  Project:   Soften - Software & SaaS WordPress Theme
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Transition
  3. Pre Loader
  4. Scroll to Top
  5. Header
  6. Footer
  7. Page Title

 
/* ------------------------
    General
------------------------*/
a, a:focus { text-decoration: none !important; }
a, a:visited { text-decoration: none; color: var(--themeht-text-color);}
a:focus, a:hover { color: var(--themeht-text-color); text-decoration: none !important; }
a, button, input { outline: medium none !important; }
*::-moz-selection { background: var(--themeht-text-color); color: var(--themeht-white-color); text-shadow: none; }
::-moz-selection { background: var(--themeht-text-color); color: var(--themeht-white-color); text-shadow: none; }
::selection { background: var(--themeht-text-color); color: var(--themeht-white-color); text-shadow: none; }


/* ------------------------
    Transition
------------------------*/
a,
.btn,
button,
img,
span,
input,
.dropdown-item,
.main-nav > ul > li > a:before,
.social-icons li:hover a,
.themeht-btn,
.social-icons li:hover a,
.service-item:before,
.service-item:after,
.clients-logo,
.service-item.style-3,
.featured-item,
.featured-icon,
.featured-item .featured-icon i,
.price-table,
.post .post-desc,
.service-menu li a:before,
.team-social-icon,
.swiper-button-next, .swiper-button-prev,
.service-widget li a:before,
.service-widget li a:after{
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

/* ------------------------
    Box Shadow
------------------------*/
.box-shadow,
.header.fixed-header,
.main-nav ul.sub-menu,
.primary-footer,
.themeht-footer-widget-area,
.nav-menu-toggle,
.footer-social li a,
.scroll-top,
.subscribe-form,
.contact-media,
.testimonial,
.testimonial-center .swiper-slide-active .testimonial.style-2,
.clients-logo:hover,
.featured-item,
.themeht-sidebar,
.service-sidebar,
.price-table,
.portfolio-img,
.ht-tab .tab-menu li a,
.blog-tag-link,
.main-timeline .timeline-icon {
    -webkit-box-shadow: 0 10px 35px 0 rgba(92.99999999999996, 72.00000000000001, 223, .08);
    -moz-box-shadow: 0 10px 35px 0 rgba(92.99999999999996, 72.00000000000001, 223, .08);
    box-shadow: 0 10px 35px 0 rgba(92.99999999999996, 72.00000000000001, 223, .08);
}



/* ------------------------
    Pre Loader
------------------------*/
#ht-preloader {background: #fff; bottom: 0; height: 100%; left: 0; overflow: hidden !important; position: fixed; right: 0; text-align: center; top: 0; width: 100%; z-index: 99999;}
.clear-loader { z-index: 999; box-sizing: border-box; display: inline-block; left: 50%; transform: translateX(-50%) translateY(-50%); position: absolute; text-align: center; top: 50%; display: flex; justify-content: center; align-items: center; }
.loader span { width: 200px; height: 200px; border: 12px solid transparent; border-radius: 50%; position: absolute; animation-duration: 5s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.loader span:nth-child(1) { border-bottom-color: var(--themeht-primary-color); animation-name: rotate1; }
.loader span:nth-child(2) { border-right-color: var(--themeht-primary-color2); animation-name: rotate2; }
.loader span:nth-child(3) { border-top-color: var(--themeht-primary-color3); animation-name: rotate3; }
.loader span:nth-child(4) { border-left-color: var(--themeht-bg-dark-color); animation-name: rotate4; }
.loader-text { color: var(--themeht-text-color); font-size: 20px; font-weight: 700; font-family: var(--themeht-typography-secondary-font-family); margin-top: 10px; letter-spacing: 2px; animation-name: fadeInOut; animation-duration: 2s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; opacity: 0; }


/* ------------------------
    Scroll to Top
------------------------*/
.scroll-top { position: fixed; right: 50px; bottom: 50px; height: 60px; width: 60px; cursor: pointer; display: block; border-radius: 50px; box-shadow: inset  0 0 0 2px rgba(255, 255, 255, 0.2); z-index: 10000; opacity: 0; visibility: hidden; transform: translateY(15px); -webkit-transition: all 200ms linear; transition: all 200ms linear; background: var(--themeht-white-color); }
.scroll-top.active-progress { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top::after { position: absolute; font-family: 'bootstrap-icons'; content: '\F145'; text-align: center; line-height: 60px; font-size: 30px; color: var(--themeht-text-color); left: 0; top: 0; height: 60px; width: 60px; cursor: pointer; display: block; z-index: 1; -webkit-transition: all 200ms linear; transition: all 200ms linear; }
.scroll-top:hover::after { opacity: 0; }
.scroll-top::before { position: absolute; font-family: 'bootstrap-icons'; content: '\F145'; text-align: center; line-height: 60px; font-size: 30px; opacity: 0; background-image: linear-gradient(298deg, var(--themeht-text-color), var(--themeht-text-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; left: 0; top: 0; height: 60px; width: 60px; cursor: pointer; display: block; z-index: 2; -webkit-transition: all 200ms linear; transition: all 200ms linear; }
.scroll-top:hover::before { opacity: 1; }
.scroll-top svg path { fill: none; }
.scroll-top svg.scroll-circle path { stroke: var(--themeht-text-color); stroke-width: 2; box-sizing: border-box; -webkit-transition: all 200ms linear; transition: all 200ms linear; }


/* ------------------------
  Header
------------------------*/
.header { position: fixed; width: 100%; left: 0; top: 0; z-index: 999; padding: 20px 0; }
#header-wrap { position: relative; z-index: 999; }
.admin-bar .header, .admin-bar .header.fixed-header { top: 30px; }
.header.fixed-header { position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background-color: var(--themeht-white-color);
    -ms-animation-name: smoothScroll;
    -moz-animation-name: smoothScroll;
    -op-animation-name: smoothScroll;
    -webkit-animation-name: smoothScroll;
    animation-name: smoothScroll;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }

/*--navigation--*/
.navbar-brand.logo { padding: 0; margin: 0; }
.logo img { max-height: var(--logo-desktop-height); }
.ht-navigation { flex-wrap: nowrap; justify-content: flex-start; position: relative; display: flex; align-items: center; }
.navigation-top { margin-left: auto; margin-right: auto; }
@media (min-width:1200px) {
    .main-nav .menu { flex-direction: row; display: flex; margin: 0; padding: 0; }
}
.main-nav li { position: relative; list-style-type: none; }
.main-nav > ul > li { margin: 0 15px; }
.main-nav > ul > li > a { font-weight: 600; color: var(--themeht-text-color); border-radius: 0; position: relative; display: block; font-family: var(--themeht-typography-secondary-font-family); }
.main-nav > ul > li > .sub-menu-toggle { display: none; }
.main-nav ul.sub-menu { opacity: 0; visibility: hidden; position: absolute; top: 120%; left: 0; z-index: 99999; background: var(--themeht-white-color); border: 1px var(--themeht-border-light-color); border-radius: 20px; padding: 20px; margin: 0; -webkit-transition: all 0.5s ease-in-out 0s; -moz-transition: all 0.5s ease-in-out 0s; -ms-transition: all 0.5s ease-in-out 0s; -o-transition: all 0.5s ease-in-out 0s; transition: all 0.5s ease-in-out 0s; }
@media (min-width:1200px) {
    .main-nav ul li:hover > ul.sub-menu { top: 100%; opacity: 1; visibility: visible; }
    .main-nav ul.sub-menu li:hover ul.sub-menu { top: 0; }
    .main-nav > ul > li.menu-item-has-children > a::after { font-family: bootstrap-icons; content: "\f4fe"; border: none; margin-left: 0.1em; font-size: 18px; line-height: 1; vertical-align: middle; display: inline-block; }
}
.main-nav ul.sub-menu li ul { left: 100% !important; top: 0; }
.main-nav .sub-menu li a { font-weight: 400; font-size: 15px; line-height: 1; background-color: inherit; display: block; white-space: nowrap; padding: 10px 0; color: var(--themeht-text-color); position: relative; }
.sub-menu-toggle { display: block; position: absolute; right: 0; top: 7px; cursor: pointer; color: var(--themeht-text-color); font-size: 23px; line-height: 1; font-weight: 600; }
@media (min-width:992px) {
    .main-nav > ul > li > a:hover, .main-nav > ul > li.current-menu-item > a, .main-nav > ul > li.current-menu-parent > a { color: var(--themeht-primary-color); }
    .main-nav > ul > li > a:hover:before, .main-nav > ul > li.current-menu-item > a:before, .main-nav > ul > li.current-menu-parent > a:before { opacity: 1; }
    .main-nav ul.sub-menu { min-width: 12em !important; max-width: 20em !important; }
    .main-nav .sub-menu li a:hover, .main-nav ul li .sub-menu li.current-menu-item > a { color: var(--themeht-primary-color); padding-left: 10px; }
    .main-nav ul li .sub-menu li.current-menu-item .sub-menu-toggle { color: var(--themeht-primary-color); }
    .main-nav .menu { background: var(--themeht-white-color); box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1); padding: 7px 20px; border-radius: 50px; backdrop-filter: brightness(120%) contrast(100%) saturate(102%) blur(10px) hue-rotate(0deg); }
    .header.fixed-header .main-nav .menu{ background: none; box-shadow: none; padding: 0; border-radius: 0; }
}
.ht-mobile-menu-bg { display: none; }
.nav-menu-toggle { border-radius: 10px; background: var(--themeht-white-color); padding: 5px 8px; font-size: 30px; line-height: 1; display: none; color: var(--themeht-primary-color); }
.closepanel { display: none; }
.closepanel i { display: inline-block; font-size: 24px; color: var(--themeht-text-color); line-height: 1; }
@media (max-width:1200px) {
    .sticky-header.fixed-header { display: none !important; }
    .sub-menu-toggle { right: 20px; top: 5px; color: var(--themeht-text-color); }
    .main-nav .menu { padding-left: 0; padding-top: 80px; }
    .admin-bar .main-nav .menu { padding-top: 120px; }
    .closepanel { position: absolute; right: 30px; top: 30px; }
    .admin-bar .closepanel { top: 60px; }
    .nav-menu-toggle, .ht-mobile-menu-bg, .closepanel { display: block; }
    .main-nav > ul > li > .sub-menu-toggle { display: block; }
    .main-nav > ul > li { border-bottom: 1px solid var(--themeht-border-light-color); margin: 0 0 15px; padding-bottom: 15px; }
    .main-nav > ul > li > a { padding: 0 20px; display: inline-block; }
    .main-nav ul.sub-menu { position: relative; display: none !important; }
    .main-nav ul.sub-menu.show { display: block !important; width: 250px; margin: 10px auto; visibility: visible; opacity: 1; }
    .main-nav .sub-menu .sub-menu-toggle { color: var(--themeht-white-color); top: 18px; font-size: 12px; }
    .main-nav ul.sub-menu li ul { left: 0 !important; }
    .main-nav ul.sub-menu li ul li a { font-size: 12px; padding: 6px 10px; }
    .main-nav ul.sub-menu.show li ul { width: 200px; }
    .main-nav { background-color: var(--themeht-white-color); position: fixed; top: 0; right: -400px; z-index: 1000; width: 300px; height: 100%; padding: 0; display: block; transition: all 900ms ease; -moz-transition: all 900ms ease; -webkit-transition: all 900ms ease; -ms-transition: all 900ms ease; -o-transition: all 900ms ease; -webkit-transform: translateX(400px); -ms-transform: translateX(400px); transform: translateX(400px); opacity: 0; }
    .main-nav.menu-active { right: 0px; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); visibility: visible; opacity: 1; overflow-y: scroll; -webkit-transition-delay: 600ms; -moz-transition-delay: 600ms; -ms-transition-delay: 600ms; -o-transition-delay: 600ms; transition-delay: 600ms; opacity: 1; }
    .ht-mobile-menu-bg { display: block; }
    .ht-mobile-menu-bg { position: fixed; right: 0; top: 0; width: 0%; height: 100%; z-index: 99; opacity: 0.8; background: var(--themeht-primary-color); -webkit-transform: translateX(101%); -ms-transform: translateX(101%); transform: translateX(101%); transition: all 900ms ease; -moz-transition: all 900ms ease; -webkit-transition: all 900ms ease; -ms-transition: all 900ms ease; -o-transition: all 900ms ease; -webkit-transition-delay: 300ms; -moz-transition-delay: 300ms; -ms-transition-delay: 300ms; -o-transition-delay: 300ms; transition-delay: 300ms; }
    .menu-active .ht-mobile-menu-bg { width: 100%; visibility: visible; transition: all 900ms ease; -moz-transition: all 900ms ease; -webkit-transition: all 900ms ease; -ms-transition: all 900ms ease; -o-transition: all 900ms ease; -webkit-transform: translateX(0%); -ms-transform: translateX(0%); transform: translateX(0%); }
}


.ht-nav-toggle{margin-left: 40px; cursor: pointer;}
#ht-main-nav { position: fixed; top: 0; bottom: 0; right: 0; padding: 70px 30px 50px; width: 370px; height: 100%; overflow-y: scroll; background: var(--themeht-white-color); z-index: 99999; visibility: hidden; opacity: 0; -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); -moz-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); -ms-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); -o-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); -webkit-transform: scale(0); -moz-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); transform: scale(0); }
#ht-main-nav .ht-nav-toggle { position: absolute; top: 20px; right: 20px; width: auto; height: auto; text-align: right; align-items: center; justify-content: center; background: inherit; box-shadow: none; backdrop-filter: none; visibility: hidden; opacity: 0; -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }
#ht-main-nav .ht-nav-toggle span { top: 18px !important; left: 0 !important; margin: 0 !important; padding: 0 !important; line-height: 0; text-indent: 0; }
#ht-main-nav .ht-nav-toggle.show { visibility: visible; opacity: 1; }
.ht-nav-toggle { cursor: pointer; text-decoration: none; }
.ht-nav-toggle.active.show span::before, .ht-nav-toggle.active.show span::after { background: var(--themeht-bg-dark-color); width: 40px; }
.ht-nav-toggle:hover, .ht-nav-toggle:focus, .ht-nav-toggle:active { outline: none; border-bottom: none !important; }
.ht-nav-toggle span { position: relative; display: -moz-inline-stack; display: inline-block; zoom: 1; margin: 7px 0; display: inline; width: 30px; height: 2px; text-transform: uppercase; text-indent: -55px; background: var(--themeht-primary-color); -webkit-transition: all .2s ease-out; -o-transition: all .2s ease-out; transition: all .2s ease-out; }
.menu-show .ht-nav-toggle span { background: transparent; }
.ht-nav-toggle span::before, .ht-nav-toggle span::after { content: ''; width: 20px; height: 2px; background: var(--themeht-primary-color); position: absolute; left: 0; -webkit-transition: 0.1s; -o-transition: 0.1s; transition: 0.1s; }
.ht-nav-toggle span::before { top: -7px; width: 20px; }
.ht-nav-toggle span::after { bottom: -7px; left: auto; right: 0;}
.ht-nav-toggle.active span { background: transparent; }
.menu-show .ht-nav-toggle span::before, .menu-show .ht-nav-toggle span::after { background: transparent; }
.ht-nav-toggle.active span::before { top: 0; -webkit-transform: rotateZ(45deg); -moz-transform: rotateZ(45deg); -ms-transform: rotateZ(45deg); -o-transform: rotateZ(45deg); transform: rotateZ(45deg); }
.ht-nav-toggle.active span::after { bottom: 0; -webkit-transform: rotateZ(-45deg); -moz-transform: rotateZ(-45deg); -ms-transform: rotateZ(-45deg); -o-transform: rotateZ(-45deg); transform: rotateZ(-45deg); }
.ht-nav-toggle { position: relative; display: flex; cursor: pointer; width: 60px; height: 60px; text-align: right; align-items: center; justify-content: center; background: var(--themeht-white-color); box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1); backdrop-filter: brightness(120%) contrast(100%) saturate(102%) blur(10px) hue-rotate(0deg); border-radius: 50%; }
#ht-main-nav .ht-nav-toggle:hover span::before, #ht-main-nav .ht-nav-toggle:hover span::after { content: ''; width: 40px; height: 2px; background: var(--themeht-primary-color); position: absolute; left: 0; }
.menu-show #ht-main-nav { visibility: visible; opacity: 1; -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); }
#ht-main-nav .ht-nav-toggle span::before { width: 40px; }
#ht-main-nav .ht-nav-toggle span { width: 40px; }    
 
.contact-info li {padding-left: 50px; position: relative; margin-bottom: 20px;}
.contact-info li:last-child { margin-bottom: 0;}
.contact-info li i{position: absolute; left: 0; top: 0; line-height: 24px; font-size: 30px; color: var(--themeht-primary-color); text-align: center;}
.contact-info li span{font-size: 16px; line-height: 1; color: var(--themeht-text-color); font-weight: 600; display: block; margin-bottom: 8px;}
.contact-info li p{margin-bottom: 0; line-height: 24px;}
.contact-info li a{color: var(--themeht-text-color);}
.contact-info li a:hover{color: var(--themeht-primary-color);}
.contact-info.style2 li { padding-left: 0;}


/* ------------------------
    Footer
------------------------*/
.footer { padding: 120px 0 40px; background-color: var(--themeht-bg-light-color); background-image: url(../images/footer-bg.png); background-size: cover; background-position: center center; background-repeat: no-repeat; }
.primary-footer h5 { margin-bottom: 20px; text-transform: uppercase; background: linear-gradient(115deg, var(--themeht-primary-color2), var(--themeht-primary-color), var(--themeht-primary-color3)); background-clip: border-box; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-widget { margin-bottom: 0; }
.footer-widget.widget ul { margin-left: 0; padding-left: 0; margin-bottom: 0; }
.footer-widget.widget ul li { list-style-type: none; margin-bottom: 15px; }
.primary-footer { position: relative; z-index: 99; font-size: 16px; background: var(--themeht-bg-light-color); padding: 50px; border-radius: 50px; }
.secondary-footer { color: var(--themeht-body-color); font-weight: normal; margin-top: 40px; font-family: var(--themeht-typography-secondary-font-family); font-size: 18px; }
.footer-contact { margin-bottom: 60px; }
.media-icon.list-inline li { display: inline-block; }
.media-icon li { font-size: 16px; font-weight: 400; color: var(--themeht-text-color); }
.media-icon li:last-child { margin-bottom: 0; }
.media-icon li a { color: var(--themeht-text-color); font-size: 20px; font-weight: 500; text-decoration: underline; }
.media-icon li a:hover { color: var(--themeht-primary-color); text-decoration: underline !important; }
.footer-widget .menu li { margin-bottom: 15px; text-transform: capitalize; }
.footer-widget .menu li:last-child { margin-bottom: 0; }
.footer-widget .menu li a { color: var(--themeht-text-color); position: relative; padding-left: 0 !important; font-size: 16px; font-weight: 400; }
.footer-widget .menu li a:hover { color: var(--themeht-primary-color); }
.footer-widget .menu li a:before { display: none; }
.social-icons.footer-social { margin-top: 30px; }
.footer-social li a { height: 60px; width: 60px; line-height: 64px; font-size: 26px; color: transparent; background: var(--themeht-white-color); display: inline-block; text-align: center; border-radius: 50%; -webkit-text-stroke: 1px var(--themeht-text-color); }
.footer-subscribe { margin-top: 60px; }
.subscribe-form { display: flex; align-items: center; position: relative; background: var(--themeht-white-color); padding: 5px; border-radius: 10px }
.subscribe-form .themeht-btn { flex-shrink: 0; border-radius: 10px; margin-left: 15px; }
.subscribe-form input[type="email"], .subscribe-form input[type="email"]:focus { border: none; }


/* ------------------------
    Page Title
------------------------*/
.page-title { position: relative; overflow: hidden; display: block; padding: 180px 0 250px; z-index: 1; background-image: radial-gradient(var(--gradient_spot1_w) var(--gradient_spot1_h) at left var(--gradient_spot1_x) top var(--gradient_spot1_y), var(--gradient_spot1_color), transparent), radial-gradient(var(--gradient_spot2_w) var(--gradient_spot2_h) at left var(--gradient_spot2_x) top var(--gradient_spot2_y), var(--gradient_spot2_color), transparent), radial-gradient(var(--gradient_spot3_w) var(--gradient_spot3_h) at left var(--gradient_spot3_x) top var(--gradient_spot3_y), var(--gradient_spot3_color), transparent), radial-gradient(var(--gradient_spot4_w) var(--gradient_spot4_h) at left var(--gradient_spot4_x) top var(--gradient_spot4_y), var(--gradient_spot4_color), transparent); }
.page-title h1 { font-size: 50px; color: var(--themeht-text-color); line-height: 60px; font-weight: 700; margin-bottom: 20px; text-transform: capitalize; word-break: break-word; }
.page-title h1 span { background: linear-gradient(115deg, var(--themeht-primary-color2), var(--themeht-primary-color), var(--themeht-primary-color3)); background-clip: border-box; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-title p { margin-bottom: 0; color: var(--themeht-text-color); }
.breadcrumb { padding: 0; background: none; display: inline-block; border-radius: 0; margin: 0; text-transform: capitalize; color: var(--themeht-text-color); font-weight: 500; }
.breadcrumb-item { display: inline-block; word-break: break-word; }
.breadcrumb-item a { color: var(--themeht-text-color) }
.breadcrumb-item.active, .breadcrumb-item a:hover { color: var(--themeht-primary-color); }
.wave-shape { position: absolute; bottom: 0; left: 0; right: 0; }


:root {
     --gradient_spot1_color: #dbfdfe;
     --gradient_spot1_w: 75vw;
     --gradient_spot1_h: 75vh;
     --gradient_spot1_x: 0;
     --gradient_spot1_y: 0;
     --gradient_spot2_color: #dbfeff;
     --gradient_spot2_w: 75vw;
     --gradient_spot2_h: 75vh;
     --gradient_spot2_x: 100%;
     --gradient_spot2_y: 0;
     --gradient_spot3_color: #ecb0e6;
     --gradient_spot3_w: 75vw;
     --gradient_spot3_h: 75vh;
     --gradient_spot3_x: 100%;
     --gradient_spot3_y: 100%;
     --gradient_spot4_color: #fff0fb;
     --gradient_spot4_w: 75vw;
     --gradient_spot4_h: 75vh;
     --gradient_spot4_x: 0;
     --gradient_spot4_y: 100%;
}