@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500;800&display=swap');

/* App variables */
:root {
  --container-with-desktop: 1500px;
  --text-lg: 3rem;
  --text-sm: 1.25rem;
  --text-xs: 1rem;

  --almost-black: #23254f;
  --white: #fff;
  --yellow: #f6f749;
  --black: #000;
  --blue: #284FD0;
  --grey: #eaeefa;
  --dark-grey: #878fA8;
  --light-grey: #f4f7ff;
  --pink: #f95d7f;

  --box-shadow: 0px 0px .5rem rgba(0, 0, 0, 0.25);

  --transition: all ease .3s;
}

/* Global styles */

* {
  font-family: Archivo, sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-family: Archivo, sans-serif;
  color: var(--almost-black);
  font-size: var(--text-sm);
}

 html[lang='he'] h2 {
   font-family: Rubik, sans-serif;
 }

a {
  text-decoration: none;
  color: inherit;
}

body {
  overflow-x: hidden;
}

/* Global classes */

.container {
  max-width: var(--container-with-desktop);
  padding: 0 70px;
  margin: 0 auto;
}

.text_lg {
  font-size: var(--text-lg);
}

.text_sm {
  font-size: var(--text-sm);
}

.text_xs {
  font-size: var(--text-xs);
}

.white {
  color: var(--white);
}

.blue {
  color: var(--blue);
}

.btn {
  font-size: var(--text-sm);
  padding: 1rem 3.875rem;
  border-radius: 3rem;
  box-shadow: var(--box-shadow);
  border: 1px solid;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  max-width: max-content;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btn-sm {
  padding: 11px 40px;
}

.btn-yellow {
  background-color: var(--yellow);
  border-color: var(--yellow) !important;
  color: var(--almost-black);
}

.btn-yellow:hover {
  background-color: var(--almost-black);
  border-color: var(--yellow);
  color: var(--yellow) !important;
  transition: var(--transition);
}

.btn-pink {
  background-color: var(--pink);
  border-color: var(--pink);
  color: var(--white) !important;
}

.btn-pink:hover {
  background-color: var(--white);
  border-color: var(--pink);
  color: var(--pink) !important;
  transition: var(--transition);
}

.btn-blue {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white) !important;
}

.btn-blue:hover {
  background-color: var(--white);
  border-color: var(--blue);
  color: var(--blue) !important;
  transition: var(--transition);
}

.dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--pink);
}

.icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 0 50%;
  background: var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: center;
}

.with-dot {
  position: relative;
  z-index: 10;
}

.with-dot:before {
  content: "";
  position: absolute;
  background-color: var(--yellow);
  top: -.25rem;
  left: -.5rem;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  z-index: -1;
  animation: scale 5s linear infinite;
}


@keyframes scale {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.3);
  }
  60% {
    transform: scale(1);
  }
}

@keyframes wave {
  0%, 60%, 100% {
    transform: initial;
  }
  30% {
    transform: translateY(-30px);
  }
}

.wave .dot {
  animation: wave 1.3s linear infinite;
}

.wave .dot:nth-child(2) {
  animation-delay: -1.1s;
}

.wave .dot:nth-child(3) {
  animation-delay: -0.9s;
}

.with-border {
  position: relative;
}

.with-border:after {
  content: "";
  position: absolute;
  width: 1360px;
  height: 1px;
  background-color: #e2e2e2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}


/* Header/Banner */

.header {
  background-color: var(--blue);
  position: relative;
}

.navbar {
  padding: 2rem 0;
  width: 100%;
  z-index: 9;
  position: relative;
}

.navbar_fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.logo-pink, .logo-blue {
  display: none;
}

.navbar_blue {
  background-color: var(--blue);
  padding: 0.5rem 0;
}

.navbar_blue .logo-pink {
  display: block;
}

.navbar_pink {
  background-color: var(--pink);
}

.navbar_pink .logo-blue {
  display: block;
}

.navbar_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar_left {
  display: flex;
  align-items: center;
}

.navbar_right {
  display: flex;
  align-items: center;
  gap: 36px
}

.mobile-menu-icon {
  display: none;
}

.mobile-menu-icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  background: var(--white);
  border-radius: 50%;
}

.mobile-menu-icon span {
  background-color: var(--blue);
  height: 2px;
  position: absolute;
  width: 24px;
  left: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-icon span:first-child {
  top: 12px;
}

.mobile-menu-icon span:nth-child(2) {
  top: 19px;
}

.mobile-menu-icon span:last-child {
  top: 26px;
}


.mobile-menu {
  width: 100%;
  position: fixed;
  padding: 4rem 5rem 4rem 1rem;
  left: 200vw;
  top: 0;
  height: 100vh;
  background-color: var(--white);
  z-index: 20;
  transition: all ease .5s;
  border-top-left-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 4.5rem;
  cursor: pointer;
  color: var(--blue);
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all ease .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
}
.loader-wrapper.active {
  visibility: visible;
  opacity: 1;
  z-index: 99999;
}

.lds-default {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
}
.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}
.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}
.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}
.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}
.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}
.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}
.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}
.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}
.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}
.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}
.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}
@keyframes lds-default {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
/* End Loader */


.banner {
  width: 100%;
  height: 100%;
  background-color: var(--blue);
}

.logo {
  display: block;
  margin-right: 7.25rem;
}

.logo-img {
  max-width: 202px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.menu_item {
  /* min-width: 7rem; */
  text-align: left;
}

.menu_item:hover {
  color: var(--pink);
}

.login {
  /* min-width: 7rem; */
  text-align: right;
}

.mobile-menu .menu_item {
  display: block;
  font-size: 20px;
  margin-bottom: 3rem;
  width: 100%;
  text-align: center;
}

.mobile-menu .menu_item:last-child {
  border-top: 1px solid #E2E2E2;
  padding-top: 3rem;
}

.menu_link {
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 1.5rem;
}

.menu_link:hover {
  color: var(--white);
}

.banner_left {
  padding: 10rem 0 6.7rem;
  max-width: 480px;
  width: 100%;
}

.banner-right {
  padding: 3.5rem 0 6.7rem;
  max-width: 788px;
  width: 100%;
  position: relative;
}

.banner-img {
  position: absolute;
  bottom: 0;
  right: -17%;
  width: 100%;
}

.banner-bell {
  position: absolute;
  top: 26%;
  right: 0;
  width: 18%;
}

.banner-stat {
  width: 57%;
  position: absolute;
  bottom: 37%;
  left: 0;
}

.banner-dot-wrapper {
  display: flex;
  gap: 16px;
  position: absolute;
  bottom: 40%;
  left: 45%;
}

.banner-dot-wrapper .dot {
  background-color: var(--white);
  width: 16px;
  height: 16px;
}

.banner_title {
  margin-bottom: 3.375rem;
  margin-right: 2.75rem;
  line-height: 3.25rem;
}

.banner_text {
  margin-bottom: 3.75rem;
  line-height: 1.75rem;
}

.banner_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

@keyframes move-bell-sound {
  20% {
    transform: translate(-30px, -15px);
  }
  50% {
    transform: translate(0, 0);
  }
}

@keyframes rotate-bell-body {
  20% {
    transform: rotate3d(0, 0, 1, 15deg) translate(0, -15px);
  }
  50% {
    transform: rotate3d(0, 0, 0, 0deg) translate(0, 0);
  }
}

@keyframes move-bell-round {
  20% {
    transform: translate(-30px, 8px);
  }
  50% {
    transform: translate(0, 0);
  }
}

.bell-sound {
  animation: move-bell-sound 2s linear infinite;
}

.bell-body {
  animation: rotate-bell-body 2s linear infinite;
}

.bell-middle-round {
  animation: move-bell-round 2s linear infinite;
}

/* Footer section */

.footer-top {
  background-color: var(--blue);
  padding: 50px 0;
  border-top: 6px solid var(--pink);
}

.footer-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .logo {
  margin-right: 0;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social .icon-wrapper {
  background-color: var(--almost-black);
}

.tel {
  text-decoration: underline;
}

.footer-bottom {
  padding: 38px 0 18px;
  background-color: var(--light-grey);
}

.footer-top-wrapper a:hover {
  color: var(--white);
}

.lets-talk {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 20px;
}

.form-text {
  color: var(--blue);
  flex-grow: 1;
  flex-shrink: 0;
}

.footer-bottom-text {
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-bottom-title {
  line-height: 53px;
}

.contact-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-grow: 1;
}

.contact-form .btn {
  flex-shrink: 0;
}


.copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.2);
}

.form-input {
  width: 100%;
  height: 56px;
  padding: 0 25px;
  border-radius: 48px;
  border: 2px solid var(--blue);
  color: var(--almost-black);
  font-size: 20px;
  background-color: var(--light-grey);
}

.form-input-sm {
  height: 40px;
  border: 1px solid var(--blue);
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--blue);
  opacity: 1; /* Firefox */
  font-size: var(--text-sm);
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--blue);
  font-size: var(--text-sm);
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--blue);
  font-size: var(--text-sm);
}


/* Login Modal */

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1050;
}

.modal.opened {
  display: flex;
}

.modal-content {
  max-width: 550px;
  width: 100%;
  background: var(--white);
  position: relative;
  border: none;
  margin: 0 auto;
}


.modal-header {
  padding: 20px 32px;
  background: var(--blue);
  color: var(--white);
  border-bottom: 2px solid var(--pink);
  position: relative;
}

.close:hover {
  color: var(--white);
}

.login-spinner {
  margin-left: 8px;
}

.modal-body {
  padding: 60px 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.modal-body .form-group {
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.error-message {
  color: red;
  display: none;
}

.error-message.has-error {
  display: block;
}

.form-group {
  position: relative;
}

.password-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: var(--blue);
  display: none;
  cursor: pointer;
}

#LoginPassword {
  padding-right: 60px;
}

#LoginPassword[type="text"] ~ .eye-slash-icon {
  display: block;
}

#LoginPassword[type="password"] ~ .eye-icon {
  display: block;
}

.newPassword[type="text"] ~ .eye-slash-icon {
  display: block;
}

.newPassword[type="password"] ~ .eye-icon {
  display: block;
}


.language-switcher {
  display: flex;
  align-items: center;
}

.switch {
  position: relative;
  display: flex;
  max-width: max-content;
}

.switch > span {
  position: absolute;
  top: 10px;
  pointer-events: none;
  font-family: 'Helvetica', Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  width: 50%;
  text-align: center;
}

input.check-toggle-round-flat:checked ~ .off {
  color: var(--pink);
}

input.check-toggle-round-flat:checked ~ .on {
  color: #fff;
}

.switch > span.on {
  left: 0;
  padding-left: 2px;
  color: var(--pink);
}

.switch > span.off {
  right: 0;
  padding-right: 4px;
  color: #fff;
}

.check-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}
.check-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none;
  margin: 0;
}

input.check-toggle-round-flat + label {
  padding: 2px;
  width: 100px;
  height: 35px;
  background-color: var(--pink);
  border-radius: 60px;
}
input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}

input.check-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: var(--pink);
  border-radius: 60px;
}
input.check-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 48px;
  background-color: #fff;
  border-radius: 52px;
  transition: margin 0.2s;
}

input.check-toggle-round-flat:checked + label:after {
  margin-left: 44px;
}

.swal2-html-container {
  white-space: pre-wrap;
}

@media (max-width: 1420px) {
  .footer-top-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-top-wrapper > p,
  .footer-top-wrapper > a {
    display: block;
    width: 100%;
    order: 3;
  }
}

@media (max-width: 1200px) {
  .banner-dot-wrapper {
    gap: 10px;
    bottom: 30%;
  }

  .banner-dot-wrapper .dot {
    width: 10px;
    height: 10px;
  }

  .banner-stat {
    bottom: 28%;
  }

  .banner-bell {
    bottom: 43%;
    top: initial;
  }

  .logo {
    display: block;
    margin-right: 4rem;
  }

  .logo-img {
    max-width: 150px;
  }
}

@media (max-width: 992px) {
  .menu_item, .login {
    min-width: auto;
  }

  .logo {
    margin-right: 3rem;
  }

  .banner-dot-wrapper {
    bottom: 25%;
  }

  .banner-stat {
    bottom: 23%;
  }

  .banner-bell {
    bottom: 34%;
    top: initial;
  }

  .banner_left {
    padding: 2rem 0;
  }

  .banner_title {
    margin-bottom: 32px;
  }

  .banner_text {
    margin-bottom: 2rem;
  }

  .banner_left .btn {
    width: 100%;
  }

  .banner-right {
    padding: 2rem 0;
  }

  .footer-top {
    padding: 2rem 0;
  }


  .footer-social {
    order: 2;
  }

  .lets-talk {
    flex-direction: column;
    justify-content: flex-start;
  }

  .form-text, .contact-form {
    width: 100%;
  }

  .mobile-menu-icon {
    display: block;
  }

  .menu, .navbar_right {
    display: none;
  }

  .mobile-menu.opened {
    left: 0;
    transition: all ease .5s;
  }

  .logo-pink {
    max-width: 120px;
  }

  .language-switcher {
    margin-top: auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .btn {
    padding: 1rem 2rem;
  }

  .btn-sm {
    padding: .8rem 1rem;
    font-size: 1rem;
  }

  .text_lg {
    font-size: 36px;
  }

  .text_sm {
    font-size: 16px;
  }

  .banner_wrapper {
    flex-direction: column;
    overflow: hidden;
  }

  .banner-right {
    min-height: 30vh;
  }

  .banner-img {
    width: 90%;
    right: -11%;
    bottom: -11%;
  }

  .banner-bell {
    bottom: 50%;
    top: initial;
  }

  .banner_left {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-form {
    flex-direction: column;
  }
}



