@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/* 
320px — 480px: Mobile devices
481px — 768px: iPads, Tablets
769px — 1024px: Small screens, laptops
1025px — 1200px: Desktops, large screens
1201px and more —  Extra large screens, TV
 */
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* 2. Remove default margin */
* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  direction: rtl;
  font-family: "Rubik", sans-serif;
}
/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}
/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
/*
    9. Create a root stacking context
  */
#root,
#__next {
  isolation: isolate;
}

button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

header,
main,
footer {
  width: 100%;
  max-width: 2000px;
  margin-inline: auto;
}

/* reset end here */

/* header */
header {
  width: 100%;
  display: flex;
  justify-content: center;
  box-shadow: 0px 10px 10px -8px #0000001a;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 2.4375rem;
  padding-bottom: 2.4375rem;
  direction: ltr;
  background-color: #fff;
}

.navbar {
  width: 75%;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  justify-content: space-between;
}
.navbar a {
  color: #5c6266;
  text-decoration: none;
  margin-left: 40px;
}
.navbar a:hover {
  color: #000;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.header_links {
  display: flex;
  transition: max-height 0.3s ease-out;
}
.header_links.open {
  display: flex;
  flex-direction: column;
}
.header_logos a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.first_image {
  max-width: 97.53px;
}
.middle_image {
  position: relative;
}
.middle_image::after {
  content: "";
  position: absolute;
  height: 49px;
  background-color: #5c6266;
  width: 1px;
  right: 0;
  top: 0px;
}
.middle_image::before {
  content: "";
  position: absolute;
  height: 49px;
  background-color: #5c6266;
  width: 1px;
  left: -5px;
  top: 0px;
}
.last_image {
  max-width: 72px;
}
.hamburger_menu {
  display: none;
}
@media screen and (max-width: 1600px) {
  .navbar {
    width: 90%;
  }
}
@media screen and (max-width: 1200px) {
  header {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  header.expanded {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .navbar {
    width: 100%;
  }
  .navbar.expanded {
    display: block;
  }
  .header_links {
    display: none;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
  }
  .header_links a {
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    margin-left: 0px;
    font-size: 16px;
    border-radius: 10px;
  }
  .header_links a:hover {
    background-color: #d0e0b3;
    font-weight: 600;
    text-decoration: none;
  }
  .header_links.open {
    max-height: 300px;
    text-align: center;
    padding-bottom: 10px;
    flex-direction: column-reverse;
    padding-left: 12px;
    padding-right: 12px;
  }
  .header_logos {
    gap: 7px;
  }
  .first_image {
    max-width: 48.77px;
    margin-left: 12px;
  }
  .middle_image {
    max-width: 83px;
  }
  .middle_image::after {
    content: "";
    position: absolute;
    height: 24.5px;
    background-color: #5c6266;
    width: 0.5px;
    right: -1px;
    top: 12px;
  }
  .middle_image::before {
    content: "";
    position: absolute;
    height: 24.5px;
    background-color: #5c6266;
    width: 0.5px;
    left: -3px;
    top: 12px;
  }

  .last_image {
    max-width: 40px;
  }

  .hamburger_menu {
    display: block;
    margin-right: 12px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 15px;
  }
}

/* header ends here */

main {
  margin-top: 130px;
}
@media screen and (max-width: 1200px) {
  main {
    margin-top: 42px;
  }
}

/* hero section start here */
#hero {
  background-image: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/de6365b4-df23-4466-8bf5-64da7ebe6824.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  min-height: 779px;
}

.hero_content {
  padding-top: 58px;
  margin: 0 auto;
  width: 75%;
}

.hero_title {
  margin-bottom: 39px;
}
#hero h1 {
  font-size: clamp(2.188rem, 1.576rem + 2.489vw, 4.688rem);
  font-weight: 800;
  line-height: clamp(2.313rem, 1.502rem + 3.298vw, 5.625rem);
}

#hero p {
  font-size: clamp(1rem, 0.755rem + 0.996vw, 2rem);
  font-weight: 400;
  line-height: clamp(1.185rem, 0.925rem + 1.06vw, 2.25rem);
}

#hero span {
  font-weight: 800;
  font-size: clamp(1rem, 0.755rem + 0.996vw, 2rem);
}
#hero p:last-of-type {
  padding-bottom: 2px;
}
@media screen and (max-width: 1600px) {
  .hero_content {
    width: 90%;
  }
}

@media screen and (max-width: 1200px) {
  #hero {
    background-image: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/c35cc741-cb61-47cc-87e5-be1725244b48.png");
    min-height: 614px;
  }

  .hero_content {
    padding-top: 4%;
    padding-right: 0%;
    width: 70%;
    margin: 0 auto;
  }
  .hero_title {
    margin-bottom: 21px;
  }
  #hero br {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  #hero {
    background-image: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/d801a38c-0f3d-4aab-9792-d4c062b0bffb.png");
    min-height: 510px;
  }
  .hero_content {
    padding-top: 29px;
    padding-right: 1%;
    width: 92%;
  }
  .hero_title {
    margin-bottom: 25px;
  }

  #hero p:last-of-type {
    padding-bottom: 10px;
  }
  #hero span {
    font-weight: 600;
  }
}
/* hero section ends here */

/* contact button in the left bottom corner */
#contact_button {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 160px;
  cursor: pointer;
  z-index: 1000;
}
@media screen and (max-width: 1200px) {
  #contact_button {
    max-width: 97px;
    bottom: 12px;
    left: 12px;
    content: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/dbfac337-1202-4c7f-9c74-ff97ba4795c5.png");
  }
}
/* contact button ends here */

/* our products section start here */

#our_products {
  scroll-margin-top: 8.125rem;
  padding-top: 4.75rem;
}
.our_products {
  width: 75%;
  margin: 0 auto;
}
#our_products h1 {
  text-align: center;
  font-size: clamp(1.75rem, 1.23rem + 2.116vw, 3.875rem);
  font-weight: 700;
  margin-bottom: 4.4375rem;
}
#our_products h2 {
  font-size: clamp(1.375rem, 1.222rem + 0.622vw, 2rem);
  font-weight: 700;
  line-height: 32px;
  margin-left: 16%;
}

.products {
  display: flex;
  justify-content: space-between;
}

.product {
  width: 26%;
  display: flex;
  flex-direction: column;
}
.product_image {
  max-width: 214px;
  margin-bottom: 41px;
}
.product_title_and_arrow {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.product_title_and_arrow img {
  max-width: 63px;
}
.product_title_and_arrow img:hover {
  content: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/e6751e92-cb88-432d-925e-0e2fbd4c0426.png");
  max-width: 71px;
  transition: max-width 0.3s ease-in-out;
}
.product p:nth-of-type(1) {
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 9.5px;
}
.product p:nth-of-type(2) {
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
  font-weight: 400;
  color: #5c6266;
  line-height: 21.33px;
}
.product p:nth-of-type(3) {
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
  line-height: 19.5px;
  font-weight: 400;
  margin-top: auto;
  padding-top: 14px;
}

.plus_icon {
  width: 100%;
  margin-bottom: -180px;
  padding-right: 2%;
  position: relative;
  display: flex;
}
@media screen and (max-width: 1600px) {
  .our_products {
    width: 90%;
  }
}
@media screen and (max-width: 1200px) {
  #our_products {
    padding-top: 2.125rem;
    scroll-margin-top: 2.625rem;
  }

  #our_products h1 {
    text-align: right;
    margin-bottom: 0.8125rem;
  }

  .products {
    flex-direction: column;
    margin-bottom: 26px;
  }

  .product {
    width: 100%;
    margin-bottom: 70px;
  }
  .last_product {
    margin-bottom: 0;
  }
  .upper_part_of_product {
    display: flex;
  }

  .product_image {
    max-width: 80px;
    margin-bottom: 13px;
  }

  .product_title_and_arrow {
    margin-right: 11px;
    width: 100%;
    justify-content: space-between;
  }

  .product p:nth-of-type(2) {
    line-height: 18.96px;
  }

  .product_title_and_arrow img {
    max-width: 50px;
  }
  .product_title_and_arrow img:hover {
    content: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/e6751e92-cb88-432d-925e-0e2fbd4c0426.png");
    max-width: 56px;
  }

  .plus_icon {
    margin-bottom: -120px;
    justify-content: flex-end;
    padding-left: 2%;
  }
  .plus_icon img {
    max-width: 170px;
  }
}
/* our products section ends here */

/* who we are section start here */

#who_we_are {
  scroll-margin-top: 8.125rem;
  background-image: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/9b6fb901-4bc0-4ed8-908c-74f3344d4789.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  margin: 0 auto;
  padding-top: 73px;
  padding-bottom: 86px;
}

.who_we_are_upper {
  width: 50%;
  margin: 0 auto;
}

#who_we_are h1 {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.23rem + 2.116vw, 3.875rem);
  margin-bottom: 36px;
}

#who_we_are p {
  font-weight: 400;
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
  line-height: 21px;
  margin-bottom: 25px;
}

#who_we_are h3 {
  font-weight: 700;
  font-size: 18px;
  font-size: clamp(1rem, 0.862rem + 0.56vw, 1.563rem);
}

.who_we_are_lower {
  margin: 0 auto;
  margin-top: 113px;
  display: flex;
  justify-content: space-around;
  width: 75%;
  gap: 40px;
}
.who_we_are_lower_mobile {
  display: none;
}
.text_and_icon_block {
  display: flex;
  gap: 20px;
}
.who_we_are_lower img {
  width: 100%;
  max-width: 132px;
  max-height: 132px;
}
.text_and_icon_block h2 {
  padding-right: 15px;
  padding-bottom: 20px;
}

.who_we_are_lower li {
  font-weight: 400;
  line-height: 21.33px;
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
}

@media screen and (max-width: 1200px) {
  #who_we_are {
    background-image: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/f2592253-e05f-46e7-ad46-b44dfc1a4146.png");
    padding-top: 89px;
    padding-bottom: 86.5px;
    scroll-margin-top: 2.625rem;
  }
  .who_we_are_upper {
    width: 90%;
  }
  #who_we_are h1 {
    text-align: right;
    margin-bottom: 26px;
  }
  .who_we_are_lower {
    display: none;
  }
  .who_we_are_lower_mobile {
    display: block;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-top: 62px;
    flex-direction: column;
    gap: 68.5px;
    width: 90%;
  }
  .who_we_are_lower img,
  .who_we_are_lower_mobile img {
    max-width: 66.5px;
    max-height: 66.5px;
  }
  .who_we_are_lower li,
  .who_we_are_lower_mobile li {
    line-height: 18.96px;
    text-align: right;
  }

  .who_we_are_lower_mobile h2 {
    padding: 0;
  }
  .text_and_icon_block {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
  }
  ul {
    padding-right: 30px;
  }
}

/* who we are section ends here */

/* carrousel section add here */
#carousel {
  background-color: #031932;
  padding-top: 60px;
  padding-bottom: 60px;
}

.slick-slider {
  width: 75%;
  margin: 0 auto;
}
.slick-slider img {
  margin: 0 auto;
  width: 100%;
}

.slick-arrow::before {
  width: 65px;
  height: 65px;
  background-color: #c4c4c4;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
}

.slick-next {
  right: 39px !important;
}
.slick-next::before {
  content: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/02b49606-9e54-4ee7-ba13-c23052b0eb8f.png") !important;
  padding-left: 8px;
}
.slick-prev {
  left: 85px !important;
  z-index: 1;
}
.slick-prev::before {
  content: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/e7ebc975-ee52-47a1-8a36-03505ba702c8.png") !important;
  padding-right: 8px;
}

ul.slick-dots {
  margin: 65px 0;
}
ul.slick-dots li {
  background-color: black;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 0;
  margin-left: 20px;
  align-items: center;
}

ul.slick-dots li button::before {
  content: "";
  border-radius: 50%;
  opacity: 0;
  background: #fff;
}

ul.slick-dots li.slick-active {
  background: #fff;
}

ul.slick-dots li.slick-active button::before {
  background: #fff;
}

@media screen and (max-width: 900px) {
  #carousel {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #fff;
  }
  .slick-slider {
    width: 100%;
  }

  .slick-slider button::before {
    display: none;
  }
  ul.slick-dots li {
    width: 11.25px;
    height: 11.25px;
    margin-left: 11.25px;
  }
  ul.slick-dots {
    margin: 0 auto;
  }

  ul.slick-dots li button::before {
    width: 11.25x;
    height: 11.25px;
  }

  ul.slick-dots li.slick-active {
    background: #d0e0b3;
  }

  ul.slick-dots li.slick-active button::before {
    background: #d0e0b3;
  }
}
/* carrousel section ends here */

/* our team section start here mobile first*/

#our_team {
  padding-top: 35px;
}
#our_team h1 {
  margin-bottom: 23px;
  text-align: right;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.23rem + 2.116vw, 3.875rem);
}
.our_team {
  width: 90%;
  margin: 0 auto;
}

#our_team h2 {
  margin-bottom: 27px;
  line-height: clamp(1.5rem, 1.287rem + 0.866vw, 2.37rem);
  font-weight: 700;
  font-size: clamp(1.375rem, 1.222rem + 0.622vw, 2rem);
}
#our_team p {
  color: #5c6266;
  font-weight: 400;
  line-height: clamp(1.185rem, 1.149rem + 0.147vw, 1.333rem);
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
}
.our_team .second-slider img {
  max-width: 280px;
  margin-top: 27px;
  margin-bottom: 27px;
}
.lower_image img {
  margin-top: 57px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .lower_image img {
    content: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/0581c845-ba9c-43ef-b80d-7ba56f593325.png");
  }
}

@media screen and (min-width: 900px) {
  #our_team {
    padding-top: 107px;
  }
  #our_team h1 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 92px;
  }

  #our_team h2 {
    margin-bottom: 20px;
    text-align: center;
  }

  .second-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .second-slider div {
    max-width: 320px;
    height: 700px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .our_team .second-slider img {
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .lower_image img {
    margin-top: 0px;
  }
}

@media screen and (min-width: 1200px) {
  .second-slider {
    gap: 90px;
  }
}
/* our team section ends here */

/* faq section start here */
#faq {
  scroll-margin-top: 8.125rem;
  margin: 0 auto;
  padding-top: 128px;
  padding-bottom: 95px;
  width: 75%;
}

#faq h1 {
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.23rem + 2.116vw, 3.875rem);
}
#faq h2 {
  margin: 0 auto;
  text-align: center;
  margin: 30px 0;
  font-weight: 400;
  font-size: clamp(1.375rem, 1.023rem + 1.431vw, 2.813rem);
}

@media screen and (max-width: 900px) {
  #faq {
    width: 90%;
    padding-top: 63px;
    padding-bottom: 31px;
    scroll-margin-top: 2.625rem;
  }

  #faq h1 {
    text-align: right;
  }
  #faq h2 {
    text-align: right;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 12px;
  }
}

#faq .card {
  max-width: 722px;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  border-radius: 20px;
  box-shadow: 0px 1px 3px 0px #0000001a, 0px 5px 5px 0px #00000017, 0px 10px 6px 0px #0000000d, 0px 18px 7px 0px #00000003, 0px 29px 8px 0px #00000000;
}
#faq button {
  width: 100%;
  text-align: right;
  padding: 1.5rem;
  cursor: pointer;
  font-size: clamp(1rem, 0.908rem + 0.373vw, 1.375rem);
  border: 0.5px solid hsla(204, 5%, 38%, 0.5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  gap: 0.625rem;
  transition: transform 250ms ease-out;
}

#faq button[aria-expanded="true"] {
  border-bottom: none;
  transition: transform 250ms ease-out;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#faq img {
  width: 40px;
  height: 40px;
  margin-right: 10px; /* Adjust spacing between image and text */
  transition: transform 250ms ease-out;
  transform-origin: center;
}
#faq .question {
  display: block;
  color: #000;
}
#faq .answer {
  color: rgb(92, 98, 102);
  -webkit-text-fill-color: rgb(92, 98, 102);
  font-size: 1.125rem;
  visibility: hidden;
  transition: ease-out 250ms;
  opacity: 0;
  height: 0;
}
#faq .answer p {
  transition: ease-out 10ms;
  opacity: 0;
  height: 0;
  visibility: hidden;
}

#faq .answer[aria-hidden="false"] {
  transition: ease-out 250ms;
  border: 0.5px solid hsla(204, 5%, 38%, 0.5);
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  opacity: 1;
  height: auto;
  visibility: visible;
}
#faq .answer[aria-hidden="false"] p {
  opacity: 0.8;
  height: auto;
  visibility: visible;
  transition: ease-out 150ms;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  width: 92%;
  margin: 0 auto;
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
}
/* faq section ends here */

/* footer start here */
#footer {
  background-image: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/ff88d564-e728-43ec-ab29-30199c3887f9.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 56px;
  padding-bottom: 80px;
  color: #fff;
  scroll-margin-top: 8.125rem;
}
#footer a {
  color: #fff;
  text-decoration: none;
}
.footer_content {
  display: flex;
  flex-direction: column;
  width: 60%;
  margin: 0 auto;
}

.footer_upper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 33px;
}

#footer .footer_upper h1 {
  font-weight: 600;
  font-size: clamp(1.375rem, 1.023rem + 1.431vw, 2.813rem);
}

.information {
  font-family: "inter", "Rubik";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.harel_email {
  padding-top: 8px;
}
.footer_lower {
  border-top: 1px solid #d0e0b380;
  padding-top: 47px;
}

#footer .footer_lower p {
  line-height: 21.33px;
  font-weight: 400;
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
}

#footer .footer_lower a {
  color: #fff;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.scroll_up_button {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-top: 47px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .footer_content {
    width: 80%;
  }
}

@media screen and (max-width: 900px) {
  #footer {
    background-image: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/b46a9eec-19ed-4b6a-909d-f0711ccce2d1.png");
    padding-top: 38px;
    padding-bottom: 21px;
  }

  .footer_upper {
    flex-direction: column;
    row-gap: 30px;
    padding-bottom: 27px;
  }

  .footer_lower {
    padding-top: 31px;
  }

  #footer .footer_lower p {
    line-height: 18.96px;
  }

  .scroll_up_button {
    width: 30px;
    height: 30px;
    margin-top: 33px;
  }
}
/* footer ends here */

/* form section starts here */

:root {
  --red-color: rgba(239, 70, 35, 1);
  --blue-gradient: linear-gradient(310.71deg, #031932 9.41%, #51a2ff 125.74%);
  --harel-grey: rgba(92, 98, 102, 1);
  --harel-mid-grey: rgba(153, 153, 153, 1);
  --harel-light-grey: rgba(229, 229, 229, 1);
  --regular-blue-harel: #274874;
}
.flex {
  display: flex;
}
.gap-30 {
  gap: 30px;
}
#form_section {
  background-color: #f6f6f6;
  scroll-margin-top: 8.125rem;
}
#form_section .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 60%;
  margin: 0 auto;
}

.page_and_breadcrumbs {
  display: grid;
  grid-template-areas:
    ". form_title"
    "breadcrumbs form ";
  grid-template-columns: 20% 80%;
  grid-template-rows: 30% 70%;
}

#form {
  grid-area: form;
}

#form_section .form_title {
  text-align: center;
  grid-area: form_title;
}

#form_section h1 {
  font-weight: 700;
  font-size: clamp(1.75rem, 1.23rem + 2.116vw, 3.875rem);
  line-height: 100%;
}

#form_section h2 {
  font-weight: 400;
  font-size: clamp(1.375rem, 0.825rem + 2.24vw, 3.625rem);
  line-height: 100%;
}

#form_section h3 {
  font-weight: 700;
  font-size: clamp(1.375rem, 1.222rem + 0.622vw, 2rem);
  margin-top: 15px;
}

@media screen and (max-width: 600px) {
  #form_section h1 br {
    display: none;
  }
}

#form_section .inputs_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.borrower_details_section,
.agent_details_section,
.loan_details_section,
.loan_purpose_section {
  min-height: 420px;
}
@media screen and (max-width: 1400px) {
  .borrower_details_section,
  .agent_details_section,
  .loan_details_section,
  .loan_purpose_section {
    min-height: 300px;
  }
}
#form_section .borrower_details_section .input_control {
  flex: 1 1 calc(50% - 20px);
  max-width: 47%;
  position: relative;
}
.input_text {
  font-weight: 600;
}
#form_section .input_control input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  display: block;
  padding: 11px 22px;
  width: 100%;
}

#form_section .input_control input:focus {
  border-color: #000;
  box-shadow: 0 0 2px #000;
  outline: none;
}

#form_section .input_control.success input {
  border-color: #2ecc71;
}

#form_section .input_control.error {
  position: relative;
}

#form_section .input_control.error input {
  border-color: var(--red-color);
  border-width: 0 0 1px 0;
}

#form_section .input_control.error::before,
#form_section .input_control.error::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 1px;
  top: 63px;
  background-color: var(--red-color);
  border-radius: 50px;
}

#form_section .input_control.error::before {
  left: 0;
}

#form_section .input_control.error::after {
  right: 0;
}

@media screen and (max-width: 1200px) {
  #form_section .input_control.error::before,
  #form_section .input_control.error::after {
    content: "";
    position: absolute;
    height: 12px;
    width: 1px;
    top: 59px;
    background-color: var(--red-color);
    border-radius: 50px;
  }
}

#form_section .input_control .error {
  color: var(--red-color);
  font-size: 12px;
  height: 13px;
}

.red_color {
  color: var(--red-color);
}

#form_section .input_control input,
#form_section label,
#form .form_button {
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
}

/* breadcrumbs */

.breadcrumbs {
  display: flex;
  gap: 86px;
  flex-direction: column;
  position: relative;
  grid-area: breadcrumbs;
}

.circle_and_steps {
  display: flex;
  align-items: center;
  gap: 13px;
}

.breadcrumbs .circle_wrapper {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  position: relative;
}

.circle_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  width: 1px;
  background-color: var(--harel-light-grey);
  height: 130px;
  z-index: 0;
}

.circle_wrapper.completed::before {
  background-color: #000;
}

.circle_wrapper.last::before {
  display: none;
}
.breadcrumbs .circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: 1;
  color: var(--harel-light-grey);
  font-size: clamp(0.75rem, 0.658rem + 0.373vw, 1.125rem);
  font-weight: 400;
}

.circle.active {
  width: 30px;
  height: 30px;
  background: var(--blue-gradient);
  font-weight: 600;
}

.circle.done {
  content: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/b3c91d72-db90-4c46-b132-ae63a6aad7f4.png");
}
.breadcrumbs_steps {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.658rem + 0.373vw, 1.125rem);
  color: var(--harel-mid-grey);
  line-height: 100%;
}

.breadcrumbs_steps.active {
  color: #000;
  font-weight: 600;
}

.breadcrumbs::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 125px;
  width: 2px;
  background-color: #000;
  z-index: 0;
  height: 403px;
}
/* breadcrumbs */

@media screen and (max-width: 1200px) {
  #form_section {
    scroll-margin-top: 2.625rem;
  }
}

@media screen and (max-width: 1400px) {
  #form_section .container {
    width: 80%;
  }
}
@media screen and (max-width: 900px) {
  .borrower_details_section,
  .agent_details_section,
  .loan_details_section {
    min-height: unset;
  }

  .breadcrumbs::after {
    display: none;
  }

  #form_section .container {
    padding-top: 1.875rem;
    padding-bottom: 3.125rem;
    width: 90%;
  }
  #form_section .inputs_wrapper {
    display: block;
  }
  #form_section .form_title {
    margin-bottom: 15px;
  }
  #form_section h3 {
    font-weight: 700;
    font-size: clamp(1.375rem, 1.222rem + 0.622vw, 2rem);
    margin-top: 25px;
  }
  #form_section .borrower_details_section .input_control,
  #form_section .borrower_details_section .radio_control {
    width: 100%;
    max-width: 350px;
    align-items: center;
    margin: 0 auto;
  }
  #form_section .borrower_details_section .radio_control {
    display: block;
  }
  .page_and_breadcrumbs {
    display: block;
  }
  .circle_and_steps {
    display: flex;
    flex-direction: column;
    min-width: 70px;
    text-align: center;
    gap: 0;
  }

  .breadcrumbs {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 44px;
  }

  .breadcrumbs .circle {
    width: 16px;
    height: 16px;
  }

  .circle.active {
    width: 21px;
    height: 21px;
  }

  .breadcrumbs .circle_wrapper {
    width: 21px;
    height: 21px;
  }

  .circle_wrapper::before {
    top: 8px;
    right: 16px;
    left: 0;
    width: 315%;
    height: 1px;
  }
}
/* datepicker */

.ui-datepicker {
  padding: 15px !important;
}
.ui-state-default {
  border: 0.75px solid rgba(213, 212, 223, 1) !important;
  background: #fff !important;
  font-weight: normal;
  color: #000 !important;
  text-align: center !important;
  padding: 7px !important;
}

.ui-state-active {
  background: var(--blue-gradient) !important;
  border: 1px solid #4a7bb3 !important;
  color: #ffffff !important;
}

.ui-priority-secondary {
  color: rgba(168, 168, 168, 1) !important;
  font-weight: normal;
  background: rgba(242, 243, 247, 1) !important;
  border: 0.75px solid rgba(213, 212, 223, 1) !important;
}
.ui-datepicker td {
  padding: 0px !important;
}

.ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: right !important;
  display: flex;
  align-items: center;
}

.ui-widget-header {
  border: 0px;
  background: #fff;
  color: #000;
  font-size: 18px;
}
.ui-datepicker .ui-datepicker-header {
  background: #fff !important;
  border: none !important;
}
select.ui-datepicker-year {
  direction: ltr !important;
  width: 32% !important;
  border: none;
  position: absolute !important;
  left: 0px !important;
  color: #000 !important;
  background: #fff !important;
}

.ui-icon .ui-icon-circle-triangle-w {
  position: absolute !important;
  right: 0 !important;
}
.input_with_icon {
  position: relative;
}
.calendar_image {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.calendar_image img {
  height: 21px;
  width: 21px;
}
.calendar_image:hover,
.calendar_image:active {
  transform: scale(0.9);
  transition: transform 0.1s ease;
  background-color: #e7efd8;
}

.ui-icon .ui-icon-circle-triangle-w {
  position: absolute !important;
  right: 50px !important;
  margin-left: 180px !important;
}

.ui-datepicker-prev {
  position: absolute !important;
  left: 135px !important;
  cursor: pointer !important;
}
.ui-datepicker-next {
  position: absolute !important;
  left: 100px !important;
  cursor: pointer !important;
}

.ui-icon-circle-triangle-w {
  background-position: -95px 0px !important;
}
.ui-icon-circle-triangle-e {
  background-position: -32px 0px !important;
}

.borrower_details_section .ui-widget.ui-widget-content {
  border: none;
  background: #fff !important;
}
/* datepicker */

input[type="radio"] {
  display: none;
}
input[type="radio"] + label {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  cursor: pointer;
}

input[type="radio"] + label::before {
  content: "";
  position: absolute;
  left: 91px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--regular-blue-harel);
}

input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-gradient);
}

#form_section label {
  color: var(--harel-grey);
}

#form_section .radio_control {
  max-width: 100%;
  padding-top: 18px;
  display: flex;
}

.radio_label_wrapper {
  min-width: 200px;
}

#form_section .radio_label {
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}
.text_before_radio p {
  width: 70px;
  margin-right: 20px;
  padding-right: 7px;
  color: var(--harel-grey);
}
.buttons_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.form_button {
  padding: 11px 0;
  width: 100%;
  max-width: 298px;
  background: var(--blue-gradient);
  border-radius: 50px;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  align-self: center;
}

.hidden {
  display: none !important;
}
.prev_button_desktop {
  padding: 12px 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  margin-left: 35px;
}

.prev_button_mobile {
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 900px) {
  .prev_button_desktop {
    display: none;
  }
  .buttons_wrapper {
    margin-top: 50px;
  }
  .form_button {
    max-width: 322px;
  }

  .prev_button_mobile {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
  }
}

/* agent details section */
.agent_inputs_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

#form_section .agent_inputs_wrapper .input_control {
  width: 47%;
  margin: 0 auto;
}
#form_section .input_control.short_background input {
  padding-bottom: 80px;
}

@media screen and (max-width: 1200px) {
  #form_section .agent_inputs_wrapper .input_control {
    width: 100%;
    max-width: 350px;
  }
}
/* agent details section */

/* loan details section */
.slider_wrapper {
  width: 90%;
  margin: 0 auto;
}
.loan_details_section {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding-top: 130px;
}
#slider-range-min .ui-widget-header {
  background: var(--blue-gradient);
}

#slider-range-min .ui-state-default {
  border: 3px solid var(--regular-blue-harel) !important;
  border-radius: 50%;
  height: 24px;
  width: 24px;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.4em;
}
.ui-slider-horizontal .ui-slider-handle:active {
  background: #fff !important;
}

.loan_details_section .ui-widget.ui-widget-content {
  border: none;
  background: var(--harel-light-grey) !important;
}
.slider_labels {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
}
.slider-container {
  position: relative;
  width: 100%;
}

#amount-display {
  width: 140px;
  text-align: center;
  top: -90px;
  left: 0;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.783rem + 0.373vw, 1.25rem);
  transform: translateX(7%);
  padding: 13px 0px;
  border-radius: 10px;
  color: var(--regular-blue-harel);
  background: rgba(208, 224, 179, 0.5);
  position: absolute;
  transition: all 0.2s ease-in-out;
}

#amount-display::after {
  content: "";
  position: absolute;
  bottom: -9.8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(208, 224, 179, 0.5);
}

@media screen and (max-width: 900px) {
  .loan_details_section {
    padding-top: 60px;
  }
  .slider_wrapper {
    width: 74%;
  }
  #amount-display {
    width: 100px;
    padding: 10px 0px;
    top: -70px;
  }
}
/* loan details section */

/* loan purpose section */
.loan_purpose_section {
  text-align: center;
}
#form_section h4 {
  color: #999999;
  font-weight: 400;
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
}

.service_types {
  display: flex;
  justify-content: space-between;
}

.service_type {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 159px;
  margin-top: 32px;
  cursor: pointer;
}
.image_wrapper {
  width: 107px;
  height: 107px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--harel-light-grey);
  margin-bottom: 10px;
}
.image_wrapper:hover {
  border: 2px solid var(--regular-blue-harel);
}
.image_wrapper.error {
  border: 1.5px solid var(--red-color);
}
.service_type input[type="radio"]:checked ~ .image_wrapper {
  background: var(--blue-gradient);
  border: none;
}
.service_type p {
  color: #000;
  font-size: clamp(1rem, 0.969rem + 0.124vw, 1.125rem);
  font-weight: 400;
}

@media screen and (max-width: 900px) {
  .service_types {
    flex-wrap: wrap;
    width: 82%;
    margin: 0 auto;
  }
  .image_wrapper {
    width: 81px;
    height: 81px;
  }

  .service_type {
    width: 120px;
  }

  .image_wrapper img {
    width: 51px;
    height: 51px;
  }

  .image_wrapper .target {
    width: 67px;
    height: 67px;
  }
}

.custom-select {
  position: relative;
  text-align: right;
  padding-bottom: 7px;
  margin-top: 15px;
}

.custom-select select {
  display: none;
}

.custom-select .grey {
  color: var(--harel-mid-grey);
}

.select-selected {
  background-color: #fff;
  font-weight: 400;
  font-size: 18px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  border: 0.5px solid rgba(92, 98, 102, 0.5);
  display: flex;
  gap: 7%;
  position: relative;
  padding: 20px 24px;
}
.select-selected.error {
  border: 1.5px solid var(--red-color);
}
.select-selected::before {
  content: url("https://image.email.harel-group.co.il/lib/fe3911717564047d761376/m/1/108e6593-8e6b-412e-9920-3490b11b1784.png");
  position: absolute;
  top: 15px;
  left: 24px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.select-selected.rotate::before {
  top: 21px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

.select-items div,
.select-selected {
  cursor: pointer;
  border-radius: 16px;
  max-width: 462px;
  margin: 0 auto;
  align-items: center;
}

.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 233px;
  overflow-y: auto;
  background-color: #fff;
  border: 0.5px solid rgba(92, 98, 102, 0.5);
  border-radius: 16px;
  margin: 0 auto;
  max-width: 462px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  font-size: 18px;
}
.select-items div {
  width: 80%;
  display: flex;
  gap: 7%;
  margin: 12px 20px;

  padding: 18px 20px;
}
.select-items img {
  width: 30px;
}
.select-hide {
  display: none;
}

.dropdown_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select-items div:hover {
  border: 2px solid var(--regular-blue-harel);
}
.same-as-selected {
  background: var(--blue-gradient);
  color: #fff;
  font-weight: 600;
}

.select-items::-webkit-scrollbar {
  width: 10px;
}

.select-items::-webkit-scrollbar-thumb {
  background: var(--blue-gradient);
  border-radius: 20px;
}

.select-items::-webkit-scrollbar-track {
  background-color: var(--harel-light-grey);
  border-radius: 30px;
  margin: 16px 0;
}

.mobile_only_title {
  display: none;
}
@media screen and (max-width: 900px) {
  .select-items div,
  .select-selected {
    max-width: 322px;
  }
  .select-items div {
    padding: 10px 20px;
  }
  .select-items {
    max-height: 535px;
    margin: 0 auto;
    max-width: 322px;
    font-size: 16px;
    position: unset;
  }

  .select-hide {
    display: block;
  }
  .select-selected {
    display: none;
  }

  .mobile_only_title {
    display: block;
  }
}

/* loan purpose section */

/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 50px 55px;
  border: 1px solid var(--harel-grey);
  width: 100%;
  max-width: 600px;
  text-align: center;
  border-radius: 40px;
  position: relative;
}

.modal-content h2 {
  margin-bottom: 20px;
}

.modal-content p {
  margin: 30px 0;
  font-weight: 700;
  font-size: clamp(1.375rem, 1.222rem + 0.622vw, 2rem);
  line-height: 34px;
}
.gif_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gif_wrapper img {
  width: 80px;
  height: 80px;
}
.close_modal_upper {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 25px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_button {
  color: #fff;
  background: var(--blue-gradient);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 11px 0;
  width: 100%;
  max-width: 193px;
  border-radius: 50px;
  width: 100%;
  border-radius: 50px;
}

.close_modal_upper:hover,
.modal_button:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

@media screen and (max-width: 900px) {
  .modal-content {
    margin: 40% auto;
    padding: 45px 38px;
    max-width: 322px;
  }
  .close_modal_upper {
    display: none;
  }
}
/* modal */

/* form section ends here */
