/*
Theme Name: dudi
author: dudi
version: 2.0
*/
* {
  box-sizing: border-box;
}

html{
  overflow-x: hidden;
  scroll-behavior: smooth;

}

main{
  direction: rtl;

  margin: auto!important;
  position: relative;
  font-family: revert;
}
.header-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 50vh;
}



.header-description {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(222, 226, 230, 0.7);
  text-align: center;
  gap: 0.8em;
  animation: fadeIn 1.2s ease-in-out;
}

@media only screen and (min-width: 992px) {
  .header-description {
    right: 3%;
    width: auto;
    max-width: 420px;
    padding: 0 1.5em;
  }
}

.header-title h1,
.header-title span h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: red !important;
  -webkit-text-stroke: 0.5px white;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-title a,
.header-title a:hover {
  text-decoration: none;
  color: red ;
}

.header-title span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
}

.header-title span i {
  color: red;
  -webkit-text-stroke: 0.5px white;
  font-size: 1.2em;
}

.header-sub-title {
  font-size: clamp(1.5em, 1.4vw, 2em);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}

.header-sub-title i {
  margin: auto;
  padding: 0.5em 0;
}

/* פקודות בסיסיות לכל אלמנטי ה-A בתוך ה-.header-sub-title */
 .header-sub-title a {
    text-decoration: none;
    color: white; /* צבע טקסט לבן */
    font-weight: 900; /* עובי גופן כבד */
    margin: 10px auto 15px auto; /* מרווחים (יש לשים לב שה-auto למרכוז עובד טוב יותר על block/inline-block אלמנטים) */
}

/* פקודות ספציפיות לאלמנט ה-A השני בלבד */
#suggestion {
    background-color: #e02a2a; /* צבע רקע אדום */
	color:#fff!important;
    border-radius: 25px; /* פינות מעוגלות */
	border: 0.1em solid white;
    padding: 0.25em 0.2em; /* ריווח פנימי מסביב לטקסט */
    display: block; /* הופך את האלמנט לאלמנט בלוק */
    width: fit-content; /* גורם לרוחב להתאים לתוכן */
    /* שימו לב שה-margin כבר הוגדר למעלה, אך ניתן לדרוס אותו כאן אם יש צורך */
    /* margin: 10px auto 15px auto; */
    text-align: center; /* ממקם את הטקסט במרכז האלמנט */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */ /* הצללה עדינה - לא פעיל כרגע */
}

.header-sub-title a:hover {
  text-decoration: none;
  color: white;
}

.header-logo img {
  max-height: 100px;
  width: auto;
	padding-top:1em;
}

@media only screen and (max-width: 576px) {
  .header-description {
    padding: 2em 1em;
    background-color: rgba(222, 226, 230, 0.6); /* החלשה נוספת לרקע במובייל */
  }

  .header-sub-title {
    font-size: 1em;
  }



}

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

.vip{
min-height: 250px;
    text-align: center;
position: relative;

    font-size: 2.5em;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: black;
    color: white;
    font-weight: bold;
    border: 4px solid transparent;
     border-radius: 35px;

         font-family: system-ui;

    width: 100%;
}
.vip::after{
position: absolute;
bottom:15%;
right: 50%;
transform: translateX(50%);
width: 180px;
height: 10px;
background: white;
   content: '';
}
.vip span::after{
  font-family: "Font Awesome 5 Free";
   font-weight: 900;
   font-size: 2.5em;
   content: "\f193";
}
@media only screen and (max-width: 992px) {
  .vip{
    font-size: 1.4em;
    max-height: 450px;
  }
}


.info{

  line-height: 2;


margin-top: 25px!important;
    margin: auto;
    text-align: center;
    font-size: 1.2em;
    font-weight: 700;

}
.container-fluid *{
  padding: 0!important;
}
.explain{

    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: space-evenly;

}
.explain h2{
  color:white;
  font-weight: bold;
  font-size: 51px;
  position: relative;
  min-height: 60px;
}

.explain h2::after{
  background:white;
  content: '';
  position: absolute;
  bottom: -20%;
  width: 100%;
  height: 5px;
  right: 0;

}


@media only screen and (max-width: 992px) {
  .explain h2{
    font-size: 36px;
    margin-top: 25px;
  }
}

@media only screen and (min-width: 992px) {
  .explain{
    height: 90%;
  }
}

.explain p{

    width: 90%;

}
.img-explain img{
  max-height: 800px;
  width: 95%;
  margin: auto;
  float: left;
  margin: 5px;
}

@media only screen and (max-width: 992px) {
  .img-explain img{
    width: 99%;
    margin: 0px;
    margin-bottom: 5px;
    float: none;

  }
  .explain p{
  margin-top: 25px;
      width: 90%;

  }
}
.slider {
  padding-top: 25px;
  max-width: 1000px;
  margin: 0 auto;
  direction: initial;
}
.slick-slide {
  margin: 0 5px;
}
.slick-list {
  margin: 0px -5px 0px -5px;
}

.slick-dots li button, .slick-dots li button:hover {
background: white;
}
button.slick-next, button.slick-next:hover {
  position: absolute;
  top: 41%;
  right: 0px;
  width: 47px;
  height: 75px;
  background-image: url("http://maggiesadler.com/wp-content/uploads/2015/10/left-right-arrow.png");
  background-size: 95px;
}
button.slick-prev, button.slick-prev:hover {
  position: absolute;
  top: 41%;
  left: 0px;
  z-index: 1;
  width: 47px;
  height: 75px;
  background-image: url("http://maggiesadler.com/wp-content/uploads/2015/10/left-right-arrow.png");
  background-size: 95px;
      background-position-x: right;
}
.slick-prev:before, .slick-next:before {
  font-size: 70px;
  color: #EA8496;
  line-height: inherit;
  font-weight: bold;
}
.slider img {
  height: 500px;
  object-fit: cover;
}

/* Slick Slider Styles -- Provided by https://kenwheeler.github.io/slick/ */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
  overflow: hidden;
  transition: transform 1s ease;
    display: none;
    float: left;
height: auto!important;
    min-height: 1px;
}

.slick-slide:hover{
  transform: scale(1.5, 1.5);
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('http://maggiesadler.com/wp-content/uploads/2015/10/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('file:///C:/Users/msadler/Desktop/slick-1.5.7/slick/fonts/slick.eot');
    src: url('file:///C:/Users/msadler/Desktop/slick-1.5.7/slick/fonts/slick.eot?#iefix') format('embedded-opentype'), url('file:///C:/Users/msadler/Desktop/slick-1.5.7/slick/fonts/slick.woff') format('woff'), url('file:///C:/Users/msadler/Desktop/slick-1.5.7/slick/fonts/slick.ttf') format('truetype'), url('file:///C:/Users/msadler/Desktop/slick-1.5.7/slick/fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    margin-top: -10px;
    padding: 0;

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '';
}
[dir='rtl'] .slick-prev:before
{
    content: '';
    font-weight: bold;
    font-size: 20px;
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '';
}
[dir='rtl'] .slick-next:before
{
    content: '';
}

/* Dots */
.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -45px;

    display: block;

    width: 100%;
    padding: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.wrapper {
text-align: center;
  margin: 25px 0px 25px 0px;
}
.hero-headline {
    margin: 0;
font-family: "Roboto", Sans-serif;
font-size: 34px;
font-weight: 700;
}
@media only screen and (max-width: 992px) {
  .hero-headline{
    font-size: 2.3rem;
  }
}











.wpcf7-form {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}


.wpcf7-form label {
  color: white;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1rem;
  float: right;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background: #f1f1f1;
}

.wpcf7-form textarea {
  min-height: 100%;
  height: 100%;
  resize: none;
}

.wpcf7-form .submit-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 1rem;
}

.wpcf7-form input[type="submit"] {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 10px 35px;
  font-weight: bold;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1.1rem;
  border: 1px solid white;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #bb2d3b;
}

.form-part {
  background-color: #6c757d;
  padding: 2rem;
  border-radius: 10px;
  color: white;
}

@media only screen and (max-width: 991px) {
  .wpcf7-form {
    flex-direction: column;
  }

  .wpcf7-form > div {
    flex: 0 0 100%;
  }

  .wpcf7-form input[type="submit"] {
    width: 100%;
  }
}

.footer{
  display: flex;
justify-content: space-evenly;
align-items: center;
font-size: 1.9rem;
background-color: brown;
font-weight: 700;
min-height: 90px;
color: white;

    margin-top: 25px;

}

.footer a, .footer a:hover{
  text-decoration: none;
  color: white;
  transition: color 0.5s ease;


}
.footer a:hover{
color: black;
}
.footer-phone::after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f098";
margin-left: 15px;
}
.footer span:first-of-type::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f55e";
margin-left: 15px;
}

.footer-mail::after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
margin-left: 15px;
}
@media only screen and (max-width: 992px) {
  .footer{
    flex-direction: column;
    font-size: 1.4rem;
  }
}





/* Stacked Cards */


.stack__card {
	color: black;
	border: solid 5px rgba(132,129,129,0.10);
	background-color: #FFF;
	box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
	margin-bottom: 25px;
	width:auto;
}
.stack__card figure {
	position: relative;
	overflow: hidden;
	margin: 0;
}
.stack__card figure img {
	width: 100%;

	/* Fit image within parent container  */
	object-fit: cover;
}
.stack__card figcaption {
	position: absolute;
	margin: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	color: white;
	background: rgba(0, 0, 0, 0.4);
	padding: 0.5em;
	box-sizing: border-box;
}
.stack__card .stack__card__content {
	padding: 1.5rem;
	display: flex;
	justify-content: center;
	flex-direction: column;

    background-color: brown;

}
.stack__card__title {
  text-align: center;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: .25rem 0 .5rem 0;
}
.stack__card__right .stack__card__content {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}

.stack__card__content p {
  text-align: center;
    font-size: 0.90em ;
	line-height: 2.25em;
  color: white;
  font-weight: bold;
  }
/* Reset width to 100% for small screens */
.span__30, .span__33, .span__40, .span__50, span__60, .span__70 {
	width: 100%;
}


@media (min-width: 960px) {


.stack__card {
	display: table;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.stack__card figure {
	position: relative;
	vertical-align: middle;
	text-align: center;
  max-height: 700px;

}

  .stack__card__content p {
    font-size: 1.25em ;
	line-height: 1.5em;
  }

/* Set width for large screens */

.span__30 {
	min-width: 30%
}


.span__40 {
	min-width: 40%
}
.span__50 {
	min-width: 50%
}
.span__60 {
	min-width: 60%
}
.span__70 {
	min-width: 70%
}
.stack__card figure img {
	/*  */
	positionx: absolute;
	top: 0;
	left: 0;
	height: 100%;
}


  .mh-500 {max-height:500px;}
}
.card-container {
	margin: 0 auto;
	padding-top: 20px;

}

.card-container img {
	height: auto;
	max-width: 100%;

}

.card-container h2 {
  font-size: 3.3rem;
  margin-bottom:30px;
  text-align: center;
  background: white;
  background-size: 100% 200%;
  background-position: 50% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* כפתור פסאודו מעל תמונת רקע */
.full-image-link-wrapper {
  position: relative;
}

.full-image-link-wrapper a.btn-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #dc3545;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
  transition: background 0.3s ease;
}

.full-image-link-wrapper a.btn-overlay:hover {
  background: #bb2d3b;
  color: #fff;
}

@media (max-width: 768px) {
  .full-image-link-wrapper a.btn-overlay {
    bottom: 15px;
    right: 15px;
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}
.submit-wrap p{
	direction:ltr;
}
