.invisTag {
    position: absolute;
    width: 50px;
    height: 5px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

#aboutUs {
    margin-bottom: 20px;
}

.about {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-block: 100px;
    background: linear-gradient(45deg,rgb(236, 115, 102) 0%, #EC297B 70%);
    background-size: 150% 150%;
    animation: gradientMove 10s ease infinite;
}


@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.aboutBox {
    position: relative;
    width: 840px;
}

.aboutTop {
    text-align: right;
}

.aboutTop h2 {
    font-size: 2.4em;
    /* font-family: "Assistant", sans-serif; */
    font-family: "vrh";
    color: var(--white);
    margin-bottom: 12px;
}

.aboutTxt {
    /* margin-top: 20px; */
    direction: rtl;
    text-align: right;
}

.aboutTxt .aboutP {
    font-size: 1.5em;
    font-family: "vrh";
    color: var(--white);
}

/* .aboutTxt .aboutP1 {
    font-size: 1.5em;
    font-family: "vrh";
    color: var(--black);
    margin-top: 5px;
}

.aboutTxt .aboutP1 a {
    text-decoration: none;
    font-weight: 900;
    color: #000;
    font-family: 'vrh';
}

.aboutTxt .aboutP1 a:hover {
    text-decoration: underline;
} */

.aboutUsBtnCont {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-top: 18px;
}

.aboutUsTelBtn {
    position: relative;
    display: flex;
    justify-content: center;
    width: 270px;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background-color: #ffffff1f;
    border-radius: 50px;
    border: 3px solid #ffffff59;
    text-shadow: 0px 0px 2px #0000005e;
    padding: 10px 20px;
    font-family: 'vrh';
    transition: 0.3s;
}

.aboutUsWaBtn {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 4px;
    /* width: 360px; */
    font-size: 1.2em;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background-color: #ffffff1f;
    border-radius: 50px;
    border: 3px solid #ffffff59;
    text-shadow: 0px 0px 2px #0000005e;
    padding: 10px 20px;
    font-family: 'vrh';
    transition: 0.3s;
}

@media screen and (max-width: 990px) { /* 860 */
    .aboutBox {
        width: calc(100% - 60px);
    }
    .aboutTxt {
        margin-right: 0px;
        margin-left: 0px;
    }
    .aboutTop {
        margin-right: 0px;
        margin-left: 0px;
    }
}

@media screen and (max-width: 780px) {
    .aboutUsBtnCont {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
}

/* @media screen and (max-width: 430px) {
    .aboutUsMailBtn {
        width: 305px;
        font-size: 1em;
    }
} */

.happyframeSec {
    position: relative;
    width: 100%;
    height: auto;
    padding-block: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #fbfcf6;
}

.happyframeContentBox {
    position: relative;
    width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.happyframeImgBox {
    position: relative;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.happyframeImg {
    width: 400px;
    border-radius: 10px;
}

.happyframeInfoBox {
    position: relative;
    text-align: right;
}

.happyframeTitle {
    font-size: 3.2em;
    font-weight: 700;
    font-family: "vrh";
    color: #000;
    text-align: right;
    margin-bottom: 10px;
    margin-top: -20px;
}

.happyframeTxt {
    font-size: 1.4em;
    font-family: "vrh";
    color: var(--black);
    direction: rtl;
    text-align: right;
}

.happyframeBtnBox {
    display: flex;
    justify-content: end;
}

.happyframeBtn {
    text-decoration: none;
    width: 150px;
}

.buttonArrow {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #000;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    font-family: 'vrh';
    margin-top: 20px;
}

.iconArrow {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.buttonArrow:hover {
    transform: scale(1.05);
}

.buttonArrow:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.buttonArrow::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }
    
    60% {
        left: 100%;
    }
    
    to {
        left: 100%;
    }
}

.learn-more {
 margin-top: 20px;
 width: 10.2rem; /* 9.4 */
 height: auto;
 position: relative;
 display: inline-block;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 background: #28293620;
 border-radius: 1.625rem;
}

.learn-more .circle {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 3rem;
 height: 3rem;
 background: #282936;
 border-radius: 1.625rem;
}
.learn-more .circle .iconArrow {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 background: #fff;
}
.learn-more .circle .iconArrow.arrow1 {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 0.625rem;
 width: 1.125rem;
 height: 0.125rem;
 background: none;
}
.learn-more .circle .iconArrow.arrow1::before {
 position: absolute;
 content: "";
 top: -0.32rem;
 right: 0.0625rem;
 width: 0.625rem;
 height: 0.625rem;
 border-top: 0.125rem solid #fff;
 border-right: 0.125rem solid #fff;
 transform: rotate(45deg);
}
.learn-more .button-text {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 left: 10px;
 right: 0;
 bottom: 0;
 padding: 0.75rem 0;
 margin: 0 0 0 1.85rem;
 color: #282936;
 font-weight: 700;
 line-height: 1.6;
 text-align: center;
 text-transform: uppercase;
 font-family: "vrh";
}

.learn-more:hover .circle {
 width: 100%;
}

.learn-more:hover .circle .iconArrow.arrow1 {
 background: #fff;
 transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
 color: #fff;
}

@media screen and (max-width: 990px) {
    .happyframeContentBox {
        flex-direction: column;
        width: 400px;
    }

    .happyframeInfoBox {
        padding: 10px;
        width: calc(100% - 40px);
    }

    .happyframeImgBox {
        width: 100%;
    }
    
    .happyframeImg {
        width: calc(100% - 40px);
    }
}

.servicesSec {
    position: relative;
    width: 100%;
    height: auto;
    padding-block: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #fbfcf6;
    direction: rtl;
}

.servicesTitle {
    font-size: 3.8em;
    font-weight: 700;
    /* font-family: "Assistant", sans-serif; */
    font-family: "vrh";
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -20px;
    direction: rtl;
}

.servicesSubtitle {
    font-size: 1.8em;
    font-weight: 500;
    /* font-family: "Assistant", sans-serif; */
    font-family: "vrh";
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
    padding-inline: 20px;
    text-align: center;
    direction: rtl;
}

.servicesTypeCont {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.servicesTypeBox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    width: 300px;
    height: 400px;
    background-color: #f0f0f0;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
}

.servicesTypeBox::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 6px;
    background: #EC297B;
    transition: 0.3s;
}

.servicesTypeBox:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.servicesTypeBox:hover::before {
    width: 100%;
}

.servicesTypeIcon {
    font-size: 3.8em;
    background: #EC297B;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.servicesTypeTitle {
    font-size: 2.2em;
    font-weight: 700;
    font-family: "vrh";
}

@media screen and (max-width: 1080px) {
    .servicesTitle {
        font-size: 2.8em;
    }

    .servicesSubtitle {
        font-size: 1.6em;
    }
    
    .servicesTypeCont {
        flex-direction: column;
        width: 100%;
    }

    .servicesTypeBox {
        width: 80%;
        max-width: 450px;
        height: 300px;
    }

    .servicesTypeBox:hover {
        transform: scale(1.02) translateY(0px);
    }
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

.servicesCardsCont {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    gap: 30px;
    flex-wrap: wrap;
    width: 820px;
}

.servicesCard {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px; 
}

.servicesImgBox {
    position: relative;
    width: 250px;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #00000034;
    transition: 0.3s;
}

.servicesImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    cursor: pointer;
    -webkit-user-drag: none;
}

.servicesImgBox:hover {
    transform: translateY(-8px);
}

.servicesCardTitle {
    color: #000000;
    font-family: "Assistant", sans-serif;
    font-size: 1.4em;
    font-weight: 900;
    margin-top: -5px;
    margin-bottom: 5px;
}

/* .servicesCard {
  position: relative;
  display: flex;
  width: 450px;
  padding: 10px;
  border-radius: 6px;
  gap: 10px;
  height: max-content;
}
.servicesCard_form {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  background-color: #838383;
  transition: 0.2s ease-in-out;
  overflow: hidden;
}
.servicesCard_form img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.servicesCard_data {
  display: flex;
  flex-direction: column;
  direction: rtl;
  justify-content: center;
  align-items: center;
  width: 320px;
}
.servicesText {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 0.5em;
  color: rgb(0, 0, 0);
}
.servicesText_m {
  font-size: 1.4em;
  font-weight: 900;
  margin-bottom: 4px;
  font-family: "vrh";
}
.servicesText_d {
  font-size: 0.9em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.2;
  font-family: "vrh";
} */

@media screen and (max-width: 870px) {
    .servicesCardsCont {
        width: 520px;
    }
}

@media screen and (max-width: 580px) {
    .servicesCardsCont {
        width: 250px;
    }
}

.boothsSec {
    position: relative;
    width: 100%;
    height: auto;
    padding-block: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #f0f0f0;
}

.boothsTitle {
    /* font-size: 3em;
    font-weight: 700;
    font-family: "Assistant", sans-serif;
    color: var(--black);
    margin-bottom: 40px;
    margin-top: -20px;
    direction: rtl; */
    font-size: 3.8em;
    font-weight: 700;
    font-family: "vrh";
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    margin-top: -20px;
    direction: rtl;
}

.boothsCardsCont {
    position: relative;
    width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 20px;
    flex-wrap: wrap;
}

.boothsBadge {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 60px;
    transform: rotateZ(15deg);
    animation: pulseBadge 1s infinite;
    z-index: 101;
}

@keyframes pulseBadge {
    0% {
        transform: rotateZ(15deg) scale(1);
    }
    50% {
        transform: rotateZ(15deg) scale(0.9);
    }
    100% {
        transform: rotateZ(15deg) scale(1);
    }
}

/* .boothsNew {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: red;
    color: #fff;
    font-family: 'vrh';
    font-size: 1.2em;
    z-index: 2;
    animation: pulseNew 1s infinite;
}

@keyframes pulseNew {
    0% {
     box-shadow: 0 0 0 0 red;
    }

    70% {
     box-shadow: 0 0 10px 10px rgb(218 103 68 / 0%);
    }

    100% {
     box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
    }
} */

.boothsCard {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boothsCard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(#00000000, #000000);
    opacity: 0.4;
}

.boothsCard:hover::after {
    opacity: 0.8;
}

.boothsCardImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.boothsCard:hover .boothsCardImg {
    transform: scale(1.08);
}

.boothsCardBox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    direction: rtl;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-end;
    z-index: 2;
}

.boothsCardTitle {
    color: #fff;
    /* font-family: "Assistant", sans-serif; */
    font-family: "vrh";
    font-size: 1.4em;
    font-weight: 900;
    text-shadow: 0px 0px 10px #00000080;
}

.boothsCardInfo {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.boothsCard:hover .boothsCardInfo {
    padding-block: 5px;
    height: 86px; /* 67 */
}

.boothsCardTxt {
    color: #fff;
    font-size: 1em;
    font-family: "vrh";
    margin-bottom: 5px;
}

.boothsCardBtn {
    color: #fff;
    text-decoration: none;
    font-family: "vrh";
    cursor: pointer;
}

.fa-caret-left {
    transition: 0.2s;
}

.boothsCardBtn:hover .fa-caret-left {
    /* text-decoration: underline; */
    animation: rMove 1s infinite;
}

@keyframes rMove {
    0% {
        margin-right: 0px;
    }
    50% {
        margin-right: 5px;
    }
    100% {
        margin-right: 0px;
    }
}

@media screen and (max-width: 1050px){
    .boothsCardsCont {
        width: 660px;
    }
}

@media screen and (max-width: 710px){
    .boothsCardsCont {
        width: 320px;
    }

    .boothsTitle {
        font-size: 2.4em;
    }
}

/**/

.stripBoothSec {
    position: relative;
    width: 100%;
    height: auto;
    padding-block: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #f0f0f0;
}

.stripBoothContentBox {
    position: relative;
    width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.stripBoothInfoBox {
    position: relative;
}

.stripBoothTitle {
    font-size: 3em;
    font-weight: 700;
    font-family: "vrh";
    color: var(--black);
    margin-bottom: 10px;
    margin-top: -20px;
    direction: rtl;
}

.stripBoothTxt {
    font-size: 1.4em;
    font-family: "vrh";
    color: var(--black);
    direction: rtl;
}

.stripBoothBtnBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stripBoothBtn {
  position: relative;
  margin: 0;
  padding: 10px 20px;
  width: 130px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #a78329;
  border-radius: 10px;
  color: #a78329;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.stripBoothBtn span {
  color: #a78329;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.7px;
  font-family: 'vrh';
}

.stripBoothBtn:hover {
  animation: rotate624 0.7s ease-in-out both;
}

.stripBoothBtn:hover span {
  animation: storm1261 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

@keyframes rotate624 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(2deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-2deg) translate3d(0, 0, 0);
    background-color: #a78329;
}

75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
    background-color: #a78329;
}

100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
    background-color: #a78329; /* c6a143 */
  }
}

@keyframes storm1261 {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }

  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }

  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
    color: #fff;
  }

  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
    color: #fff;
  }

  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
    color: #fff;
  }
}

.stripBoothBtn {
  border: 2px solid;
  overflow: hidden;
  position: relative;
}

.stripBoothBtn span {
  z-index: 20;
}

.stripBoothBtn:after {
  background: #a78329;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.stripBoothBtn:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.stripBoothImgBox {
    position: relative;
    width: 400px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.stripBoothImg {
    width: 400px;
    border-radius: 10px;
}

.stripBoothWood {
    width: 500px;
    position: absolute;
    bottom: -300px;
    right: -300px;
    transform: rotate(-45deg);
}

.greenScreenBoothSec {
    position: relative;
    width: 100%;
    height: 600px;
    padding-block: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
}

.greenScreenBoothContentBox {
    position: relative;
    width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.greenScreenBoothInfoBox {
    position: relative;
    width: 600px;
    height: 280px;
    margin-left: -500px;
    margin-top: -340px;
    background-color: #f0f0f0;
    border: 5px solid #fff;
    border-radius: 10px;
    padding: 20px;
    z-index: 2;
    box-shadow: inset 0px 0px 2px #00000080;
}

.greenScreenBoothTitle {
    font-size: 2em;
    font-weight: 700;
    font-family: "vrh";
    color: var(--black);
    margin-bottom: 10px;
    direction: rtl;
}

.greenScreenBoothTxt {
    font-size: 1.2em;
    font-family: "vrh";
    color: var(--black);
    direction: rtl;
}

.greenScreenBoothImg {
    width: 600px;
    height: 400px;
    border-radius: 10px;
    margin-right: -500px;
}

/* -=- Contact -=- */

.contactusSec {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-block: 100px;
    background: linear-gradient(45deg,rgb(236, 115, 102) 0%, #EC297B 70%);
    background-size: 150% 150%;
    animation: gradientMove 10s ease infinite;
}

.contactusBox {
    position: relative;
    width: calc(100% - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 12px;
}

.contactusTitle {
    position: relative;
    font-size: 2.8em;
    font-weight: 700;
    color: #fff;
    font-family: 'vrh';
}

.contactusSubtitle {
    position: relative;
    font-size: 1.4em;
    font-weight: 500;
    color: #fff;
    font-family: 'vrh';
}

.contactusBtnCont {
    display: flex;
    align-items: center;
    justify-content: start;
    direction: rtl;
    gap: 12px;
    margin-top: 12px;
}

.contactusTelBtn {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background-color: #ffffff1f;
    border-radius: 50px;
    border: 3px solid #ffffff59;
    text-shadow: 0px 0px 2px #0000005e;
    padding: 10px 20px;
    font-family: 'vrh';
    transition: 0.3s;
}

.contactusWaBtn {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 4px;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background-color: #ffffff1f;
    border-radius: 50px;
    border: 3px solid #ffffff59;
    text-shadow: 0px 0px 2px #0000005e;
    padding: 10px 20px;
    font-family: 'vrh';
    transition: 0.3s;
}

@media screen and (max-width: 890px) {
    .contactusBox {
        position: relative;
        direction: rtl;
        width: 390px;
        /* width: calc(100% - 500px); */
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        text-align: right;
        gap: 12px;
    }

    .contactusBtnCont {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    .contactusBox {
        width: calc(100% - 80px);
    }

    .contactusTitle {
        font-size: 2.2em;
    }
}

.contact {
    /*background-color: var(--darkgray);*/
    background-color: #f0f0f0;
    position: relative;
    padding-inline: 100px;
    padding-block: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.containercontact {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containercontact .contactinfo {
    display: flex;
    flex-direction: column;
    margin-right: 50px;
    align-items: end;
}

.containercontact .contactinfo h2 {
    position: relative;
    font-size: 3em;
    width: 200px;
    text-align: right;
    margin-bottom: 40px;
    color: var(--black);
    font-family: 'vrh';
}

.containercontact .contactinfo h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 30%;
    height: 3px;
    border-radius: 50px;
    background-color: var(--darkmain);
}

.contactBox {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.containercontact .contactinfo .box {
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: right;
}

.containercontact .contactinfo .box .icon {
    min-width: 60px;
    height: 60px;
    /*background: #22aeff;*/
    background-color: var(--darkmain);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.containercontact .contactinfo .box .infotext {
    display: flex;
    justify-content: center;
    text-align: right;
    height: auto;
    margin-right: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}

.containercontact .contactinfo .box .infotext h3 {
    font-weight: 500;
    color: var(--darkmain)/*#00bcd4*/;
    font-family: 'vrh';
}

.contacta {
    text-decoration: none;
    color: rgb(110, 110, 110); /* 160 */
    font-family: 'vrh';
}

.contactForm {
    width: 750px;
    min-height: auto;
    padding: 40px;
    background: rgb(255, 255, 255);
    /*border: 2px solid rgba(0, 0, 0, 0.35);*/
    box-shadow: inset 0px 0px 4px #00000080;
    border-radius: 6px;
    direction: rtl;
}

.contactForm h2 {
    font-size: 30px;
    color: var(--darkmain);
    /*color: #000;*/
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'vrh';
}

.rowBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rowBox .inputBox {
    flex-basis: 32%;
}

.contactForm .inputBox {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contactForm .inputBox input,
.contactForm .inputBox select,
.contactForm .inputBox textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid #333;
    border-radius: 2px;
    outline: none;
    resize: none;
    direction: rtl;
    font-family: 'vrh';
}

.contactForm .inputBox input::-webkit-outer-spin-button,
.contactForm .inputBox input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=date]::-webkit-datetime-edit-month-field{
    -webkit-appearance: none;
}
input[type=date]::-webkit-datetime-edit-day-field {
    -webkit-appearance: none;
}
input[type=date]::-webkit-datetime-edit-year-field {
    -webkit-appearance: none;
}

.contactForm .inputBox p {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 0;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    /*font-size: 16px;*/
    color: #676767;
    font-size: 12px;
    transform: translateY(-20px);
    font-family: 'vrh';
}

.requiredSymbol {
    color: #ff0000;
    font-family: 'vrh';
    margin-right: 2px;
}

/*.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span {
    color: #e91e63; //לסמן כהערה
    color: var(--darkmain);
    font-size: 12px;
    transform: translateY(-20px);
}*/

.pulse {
    border: none;
    color: #fff;
    background-image: linear-gradient(30deg, var(--darkmain), var(--lightdarkmain));
    border-radius: 10px;
    background-size: 100% auto;
    font-size: 17px;
    padding: 0.6em 1.5em;
    transition: 0.3s;
    cursor: pointer;
}

.pulse:hover {
    background-position: center center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: pulse512 1s infinite;
}

@keyframes pulse512 {
    0% {
     box-shadow: 0 0 0 0 var(--darkmain);
    }

    70% {
     box-shadow: 0 0 10px 10px rgb(218 103 68 / 0%);
    }

    100% {
     box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
    }
}

/*.contactForm .inputBox input[type="submit"] {
    width: 100px;
    background: var(--darkmain);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.2s;
}

.contactForm .inputBox input[type="submit"]:hover {
    color: #ffffff;
    background: #008cff;
    box-shadow: 0 0 5px #008cff,
                0 0 10px #008cff,
                0 0 20px #008cff,
                0 0 20px #008cff;
    transform: scale(1.05);
}

.contactForm .inputBox input[type="submit"]:active {
    transform: scale(0.95);
}*/

@media screen and (max-width: 1200px){ /* 991 */
    .contact {
        padding: 20px;
    }

    .containercontact {
        flex-direction: column;
        padding-bottom: 50px;
    }

    .containercontact .contactinfo {
        margin-bottom: 20px;
        margin-left: 100px;
        display: flex;
        align-items: center;
    }

    .contactForm {
        width: 80%;
        max-width: 750px;
    }

    .containercontact .contactinfo h2 {
        margin-top: 50px;
        text-align: center;
    }

    .containercontact .contactinfo h2::after {
        right: 20px;
        width: 40%;
        /* transform: translateX(50%); */
    }

    .contactBox {
        flex-direction: row-reverse;
        align-items: center;
        gap: 50px;
    }
    /* .containercontact .contactinfo {
        width: 50%;
    } */

    .containercontact .contactinfo .box .infotext {
        margin-right: 10px;
    }
}

@media screen and (max-width: 750px){ /* 650 */
    .contactForm {
        width: 95%;
    }

    .rowBox {
        display: inline;
        align-items: center;
        justify-content: space-between;
    }
    
    .rowBox .inputBox {
        flex-basis: 100%;
    }

    .containercontact .contactinfo {
        align-items: end;
    }

    .contactBox {
        flex-direction: column;
        align-items: end;
        gap: 0px;
    }
}

#snackbar-cs {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #222; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1000; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
  pointer-events: none;
  border-radius: 10px;
  font-family: 'vrh';
  font-size: 1.2em;
  box-shadow: 0px 0px 5px #333;
}

#snackbar-cs.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
  animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}