/**
 * Aljoud Plugin Elementor Widgets CSS
 * 
 * Main CSS file for Aljoud Plugin Elementor Widgets
 */

/* Global Styles */
:root {
  --primary-color: #c9b18c;
  --secondary-color: #8c7a5b;
  --dark-color: #000000;
  --light-color: #f5f5f5;
  --text-color: #d0d0d0;
}

body {
  font-family: "cairo", serif;
  background-color: var(--dark-color);
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "cairo", serif !important;
}

/* Global Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

/* Fade In Section Animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Styles */
.section {
  padding: 80px 0;
  position: relative;
}

.section-dark {
  background-color: #000;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }

  .section {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Aljoud Navbar Styles */
.aljoud-navbar {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  position: relative;
  font-family: "Cairo", Arial, sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

/* Sticky Header Styles */
.aljoud-navbar.sticky-enabled {
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.aljoud-navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.5s forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.aljoud-navbar-placeholder {
  width: 100%;
}

.aljoud-navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Styles */
.aljoud-navbar-logo {
  text-align: center;
  z-index: 2;
}

.aljoud-navbar-logo img {
  max-width: 150px;
  height: auto;
}

.aljoud-navbar-logo-text {
  text-align: center;
}

.logo-main-text {
  font-size: 24px;
  font-weight: 500;
}

.logo-sub-text {
  font-size: 14px;
  font-weight: 300;
}

/* Left Menu Styles */
.aljoud-navbar-left-menu-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
}

.aljoud-navbar-left-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  direction: rtl;
}

.aljoud-navbar-left-menu li {
  margin-left: 0;
}

.aljoud-navbar-left-menu li:not(:first-child) {
  margin-right: 30px; /* Increased spacing to match image */
}

.aljoud-navbar-left-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Right Menu & Language Switcher Styles */
.aljoud-navbar-right-container {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 50px;
}

.aljoud-navbar-right-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 20px;
}

.aljoud-navbar-right-menu li {
  margin-right: 0;
}

.aljoud-navbar-right-menu li:not(:last-child) {
  margin-right: 30px; /* Increased spacing to match image */
}

.aljoud-navbar-right-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Language Switcher */
.aljoud-navbar-language {
  display: flex;
  align-items: center;
}

.language-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.language-link:hover {
  color: #cccccc;
}

.language-separator {
  margin: 0 5px;
  color: #ffffff;
}

/* Hover Effects */
.aljoud-navbar-left-menu a:hover,
.aljoud-navbar-right-menu a:hover {
  color: #cccccc;
}

/* Toggle Button (Mobile) */
.aljoud-navbar-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  z-index: 2;
}

/* Mobile Menu */
.aljoud-navbar-mobile-menu {
  display: none;
  background-color: #000000;
  position: absolute;
  width: 100%;
  z-index: 10;
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  left: 0;
}

.aljoud-navbar-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
  direction: rtl;
}

.aljoud-navbar-mobile-menu li {
  margin-bottom: 15px;
}

.aljoud-navbar-mobile-menu li:last-child {
  margin-bottom: 0;
}

.aljoud-navbar-mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 5px 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .aljoud-navbar-left-menu-container {
    margin-right: 30px;
  }

  .aljoud-navbar-right-container {
    margin-left: 30px;
  }

  .aljoud-navbar-left-menu li:not(:first-child) {
    margin-right: 20px;
  }

  .aljoud-navbar-right-menu li:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .aljoud-navbar-toggle {
    display: block;
  }

  .aljoud-navbar-left-menu-container,
  .aljoud-navbar-right-menu {
    display: none;
  }

  .aljoud-navbar-right-container {
    margin-left: 0;
    justify-content: flex-end;
  }

  .aljoud-navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .aljoud-navbar-logo img {
    max-width: 120px;
  }

  .logo-main-text {
    font-size: 20px;
  }

  .logo-sub-text {
    font-size: 12px;
  }

  /* Ensure mobile menu appears below the header when sticky */
  .aljoud-navbar.is-sticky .aljoud-navbar-mobile-menu {
    top: 100%;
  }
}

@media (max-width: 480px) {
  .aljoud-navbar-logo img {
    max-width: 100px;
  }

  .language-link {
    font-size: 12px;
  }
}

html[lang="en-US"] body,
html[lang="en-US"] h1,
html[lang="en-US"] h2,
html[lang="en-US"] h3,
html[lang="en-US"] h4,
html[lang="en-US"] h5,
html[lang="en-US"] h6,
html[lang="en-US"] p {
  font-family: "Cairo", serif !important;
}

html[lang="en-US"] .hero .hero-content,
html[lang="en-US"] .aljoud-profile-content {
  text-align: left !important;
}

html[lang="en-US"] .hero-content {
  padding-left: 20px !important;
}

html[lang="en-US"] .elementor-widget-aljoud_feature_slider .slide-title,
html[lang="en-US"] .elementor-widget-aljoud_feature_slider .slide-description {
  text-align: left !important;
}

html[lang="en-US"]
  .elementor-widget-aljoud_feature_slider
  .nav-bottom-right
  .desktop-navigation {
  left: 30px;
}

html[lang="en-US"] .contact-form-fields,
html[lang="en-US"] .form-field,
html[lang="en-US"] input {
  direction: ltr;
  text-align: left;
}

html[lang="en-US"] .aljoud-navbar-menu-items {
  direction: ltr;
}
html[lang="en-US"] .aljoud-navbar-menu-items li:not(:first-child) {
  margin-left: 30px;
  margin-right: 0 !important;
}

/* aljoud Navbar Styles */
.aljoud-navbar {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  font-family: "cairo", Arial, sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.aljoud-navbar-logo {
  display: flex;
  justify-content: center;
}

/* Sticky Header Styles */
.aljoud-navbar.sticky-enabled {
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.aljoud-navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.5s forwards;
}

.hero {
  height: 90vh !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.aljoud-navbar-placeholder {
  width: 100%;
}

.aljoud-navbar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Three-column layout */
.aljoud-navbar-menu {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.aljoud-navbar-logo {
  flex: 0 0 auto;
  text-align: center;
  margin: 0 30px;
}

.aljoud-navbar-language-container {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Logo Styles */
.aljoud-navbar-logo img {
  max-width: 150px;
  height: auto;
}

.aljoud-navbar-logo-text {
  text-align: center;
}

.logo-main-text {
  font-size: 24px;
  font-weight: 500;
}

.logo-sub-text {
  font-size: 14px;
  font-weight: 300;
}

/* Menu Styles */
.aljoud-navbar-menu-items {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  direction: rtl;
}

.aljoud-navbar-menu-items li {
  margin-left: 0;
}

.aljoud-navbar-menu-items li:not(:first-child) {
  margin-right: 30px;
}

.aljoud-navbar-menu-items a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Language Switcher */
.aljoud-navbar-language {
  display: flex;
  align-items: center;
}

.language-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.language-link:hover {
  color: #cccccc;
}

.language-separator {
  margin: 0 5px;
  color: #ffffff;
}

/* Hover Effects */
.aljoud-navbar-menu-items a:hover {
  color: #cccccc;
}

/* Toggle Button (Mobile) */
.aljoud-navbar-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  z-index: 2;
}

/* Mobile Menu */
.aljoud-navbar-mobile-menu {
  display: none;
  background-color: #000000;
  position: absolute;
  width: 100%;
  z-index: 10;
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  left: 0;
}

.aljoud-navbar-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
  direction: rtl;
}

.aljoud-navbar-mobile-menu li {
  margin-bottom: 15px;
}

.aljoud-navbar-mobile-menu li:last-child {
  margin-bottom: 0;
}

.aljoud-navbar-mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 5px 0;
}

.hero-content {
  text-align: right !important;
  padding-right: 20px !important;
}

.landmarks-title {
  text-align: center !important;
}

.rtl .aljoud-profile-button {
  align-self: flex-start !important;
  text-decoration: underline;
}

html[lang="ar"] .slider-images,
html[lang="ar"] .slider-navigation {
  direction: ltr;
}

.aljoud-profile-content {
  justify-content: space-between !important;
}

html[lang="ar"] .social-icons {
  direction: ltr !important;
}

.aljoud-interior-slider .slider-content-area {
  background: none;
}

.rtl .nav-bottom-right .desktop-navigation {
  left: auto !important;
  right: 30px !important;
}

html[lang="ar"] .elementor-widget-aljoud_feature_slider .slider-navigation {
  direction: rtl;
}

.elementor-widget-aljoud_feature_slider img {
  height: 100% !important;
}

.contact-form-fields,
.form-field,
input {
  direction: rtl;
  text-align: right;
}

#aljoud-property-showcase-4185ded .aljoud-property-area {
  align-items: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .aljoud-navbar-menu-items li:not(:first-child) {
    margin-right: 20px;
  }

  .aljoud-navbar-logo {
    margin: 0 20px;
  }
}

@media (max-width: 991px) {
  .aljoud-navbar-menu-items li:not(:first-child) {
    margin-right: 15px;
  }

  .aljoud-navbar-logo {
    margin: 0 15px;
  }
}

@media (max-width: 767px) {
  .aljoud-navbar-container {
    flex-wrap: wrap;
  }

  .aljoud-navbar-toggle {
    display: block;
    order: 1;
    flex: 0 0 auto;
  }

  .aljoud-navbar-logo {
    order: 2;
    flex: 1;
    text-align: center;
    margin: 0;
  }

  .aljoud-navbar-language-container {
    order: 3;
    flex: 0 0 auto;
  }

  .aljoud-navbar-menu {
    display: none;
  }

  .aljoud-navbar-logo img {
    max-width: 120px;
  }

  .logo-main-text {
    font-size: 20px;
  }

  .logo-sub-text {
    font-size: 12px;
  }

  /* Ensure mobile menu appears below the header when sticky */
  .aljoud-navbar.is-sticky .aljoud-navbar-mobile-menu {
    top: 100%;
  }

  .elementor-widget-aljoud_feature_slider .image-side,
  .elementor-widget-aljoud_feature_slider .content-side,
  .contact-form-side {
    width: 100% !important;
  }

  .elementor-widget-aljoud_feature_slider .slider-navigation.mobile-navigation {
    position: absolute;
    bottom: -40px;
  }

  .contact-form-side {
    padding: 0 !important;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .footer-logo img {
    height: auto;
    width: 80%;
  }

  .contact-logo-side,
  .property-image-side {
    width: 100% !important;
  }

  .aljoud-profile-content {
    padding: 20px;
  }

  .aljoud-property-landmarks-widget {
    height: 100% !important;
  }

  .aljoud-property-landmarks-widget .landmark-content {
    flex-direction: row !important;
  }

  .aljoud-profile-image {
    height: 100% !important;
    min-height: 100% !important;
  }
  .footer-logo img {
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .aljoud-navbar-logo img {
    max-width: 100px;
  }

  .language-link {
    font-size: 12px;
  }
}

html[lang="en-US"] .landmarks-side {
  padding-left: 20px !important;
}

html[lang="en-US"] .landmark-content {
  direction: rtl;
}

html[lang="en-US"] .landmarks-side .aljoud-profile-content p {
  text-align: center !important;
}

html[lang="en-US"] .footer-logos,
html[lang="en-US"] .logos-container {
  direction: rtl !important;
}

.hero {
  justify-content: center !important;
  align-items: center !important;
}

.phone-box-container {
  width: 100%;
}

.phone-box-container {
  background: none !important;
  border: 0 !important;
}

.phone-icon-top {
  margin-bottom: 0 !important;
}

.aljoud-contact-section-widget.animate .animated-number {
  padding-bottom: 0;
}

.hero-content {
  text-align: center !important;
  align-self: end !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: rgba(0, 0, 0, 0.2) !important;
}

.phone-numbers-list {
  gap: 0 !important;
}

.phone-number-link {
  direction: ltr;
}

.phone-number-link span {
  font-size: 20px !important;
}

.hero-buttons,
.hero-content-wrapper {
  margin: 0 !important;
}

.hero-content-item {
  padding-top: 40px !important;
}

.hero-content-item p {
  margin: 0 !important;
}

.hero h1 {
  padding: 0 !important;
  margin: 0 !important;
}

.aljoud-interior-slider .slider-description {
  font-size: 20px !important;
}

.dual-logo-cta-container {
  min-height: auto !important;
}

.aljoud-property-landmarks-widget .layout-horizontal .desktop-view {
  flex-direction: row-reverse;
}

.aljoud-contact-section-widget.animate .animated-social a {
  background: none;
  margin: 0 !important;
}

.aljoud-contact-section-widget.animate .animated-social .social-icon-container {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-logo {
  margin-bottom: 0 !important;
}

.form-field label {
  color: #986440 !important;
}

.aljoud-profile-content {
  justify-content: initial !important;
  gap: 40px;
}

.left-logo-section img,
.right-logo-section img {
  max-width: 350px !important;
  height: auto;
  object-fit: contain;
}

.centered-button-row {
  margin-bottom: 0 !important;
}

.hashtag-section {
  text-align: center !important;
}

@media (max-width: 767px) {
  .left-logo-section img,
  .right-logo-section img {
    max-width: 300px !important;
    height: auto;
    object-fit: contain;
  }
  #aljoud-profile-a5618ea {
    height: auto !important;
    min-height: auto !important;
  }

  .aljoud-property-landmarks-widget.layout-horizontal .property-media-side {
    width: 100% !important;
  }

  .elementor-widget-aljoud_modal_profile .aljoud-profile-button {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

.aljoud-interior-slider .slider-title:after {
  margin: 0 auto;
  left: 0 !important;
  right: 0 !important;
}

.aljoud-profile-content {
  padding: 25px 15px !important;
}

.rtl .aljoud-profile-button {
  text-decoration: none;
}

.wpcf7-form-control.wpcf7-radio {
  background: none !important;
  border: 0 !important;
  display: flex !important;
  flex-direction: row !important;
}

.form-field p {
  margin: 0 !important;
}

.aljoud-interior-slider.content-side .slider-content-area {
  padding-bottom: 60px !important;
}

.aljoud-navbar-logo {
  position: initial !important;
  transform: none !important;
  flex: 0 !important;
}

.aljoud-interior-slider .glassmorphism,
.aljoud-interior-slider {
  border: 0 !important;
  border-radius: 0 !important;
}

.hero {
  align-items: start !important;
}

.hero-buttons {
  justify-content: initial !important;
  flex-direction: row !important;
}

.aljoud-profile-content {
  padding-right: 60px !important;
}

.no-padding .aljoud-profile-section.image-right .aljoud-profile-content {
  padding-right: 0 !important;
}

.selected-flag {
  direction: ltr;
}

.intl-tel-input .selected-flag .iti-arrow {
  right: 25px;
  color: #fff !important;
}

.intl-tel-input .country-list {
  left: 0;
  z-index: 99999;
  direction: ltr;
  background: #1a1a1a !important;
}

.wpcf7-submit {
  text-align: center !important;
  margin-top: 0 !important;
}

.contact-form-fields {
  gap: 0 !important;
}

.landmarks-content {
  width: 100% !important;
  height: 100% !important;
}

.landmarks-side {
  padding: 0 !important;
}

.landmarks-content .aljoud-profile-content {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  justify-content: initial !important;
  text-align: center !important;
  padding: 10px !important;
}

.landmarks-content {
  align-items: center !important;
}

.landmarks-content .aljoud-profile-content p {
  text-align: center !important;
}

.landmarks-content .aljoud-profile-content p {
  margin-bottom: 0;
}

html[lang="en-US"] .aljoud-profile-content h2,
html[lang="en-US"] .aljoud-profile-content p {
  text-align: left !important;
}

.contact-logo-side {
  justify-content: flex-start !important;
}

.centered-button-row {
  margin-top: 0 !important;
}

.horizontal-layout {
  gap: 20px !important;
}

.aljoud-property-landmarks-widget {
  overflow: initial !important;
}

@media (max-width: 767px) {
  .hero-btn {
    width: auto !important;
  }

  .aljoud-profile-content {
    padding: 25px 15px !important;
    padding-right: 15px !important;
  }

  .desktop-view {
    display: none !important;
  }

  .horizontal-layout,
  .logos-container {
    gap: 0 !important;
  }

  .logos-container .logo-item img {
    max-width: 90% !important;
  }
  html[lang="en-US"] .landmarks-side-mobile .aljoud-profile-content p {
    text-align: center !important;
  }

  .centered-button-row {
    margin-top: 20px !important;
  }
  .landmarks-side .aljoud-profile-content h2,
  html[lang="en-US"] .landmarks-side .aljoud-profile-content h2 {
    font-size: 24px !important;
    text-align: center !important;
  }

  html[lang="en-US"] .landmarks-side .aljoud-profile-content h2 {
    text-align: center !important;
  }

  .contact-form-fields .form-row {
    gap: 0;
  }

  .contact-logo-side {
    padding-bottom: 0 !important;
  }
}

.landmarks-side .aljoud-profile-content h2,
html[lang="en-US"] .landmarks-side .aljoud-profile-content h2 {
  font-size: 24px !important;
  text-align: center !important;
}

.contact-form-fields .form-field {
  margin-bottom: 20px;
}

.first-row {
  padding: 0 170px !important;
}

@media (max-width: 768px) {
  .first-row {
    padding: 0 20px !important;
  }
  .left-logo-section img,
  .right-logo-section img {
    max-width: 100% !important;
    height: auto;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 20px;
  }
  .phone-box-container {
    margin-bottom: 20px;
  }

  .aljoud-profile-content h2 span {
    font-size: 22px !important;
  }

  .aljoud-profile-content,
  .aljoud-profile-image {
    width: 100% !important;
  }
}

.social-text {
  font-size: 16px !important;
}

.contact-form-side {
  display: block !important;
}

.contact-form-side .contact-description {
  font-family: cairo;
}

.social-icon-wrapper {
  flex-direction: row-reverse;
}

.whatsapp-btn {
  background: #25d366 !important;
}

.aljoud-navbar-menu-items li:nth-last-of-type(2) {
  background: #976540;
  padding: 5px 15px;
}

.aljoud-navbar-menu-items li {
  align-content: center;
}

.footer-logo.third-logo img {
  width: 160px !important;
  height: auto;
}

.success-content .cta-button {
  color: #ffffff;
  background-color: var(--e-global-color-secondary);
  padding: 15px 30px 15px 30px;
  border-radius: 0px;
  display: block;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.contact-description span {
  font-weight: bold;
}

.aljoud-contact-section-widget {
  min-height: 100% !important;
}
