@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800;900&family=Barlow:wght@300;400;500;600;700;800&family=Montserrat:wght@700&display=swap"); /* Обнуление */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  font-family: "Roboto", Barlow Condensed, serif;
  height: 100%;
  width: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

/*--------------------*/
.mainContainer {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px 0;
}

.Button {
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  background-color: #DE2441;
  border-radius: 30px;
  padding: 8px 40px 8px;
  color: white;
  transition: background-color 0.3s, transform 0.3s;
}

.Button:hover {
  background-color: #FF4861;
  transform: scale(1.05);
}

.Text {
  padding-left: 15px;
  max-width: 550px;
}

.Subtitle {
  position: relative;
  line-height: 1;
  margin: 0 0 20px 0;
  font-weight: 400;
  font-size: 43px;
}

.Title {
  line-height: 1;
  font-weight: 700;
  font-size: 82px;
  color: #171B2A;
  letter-spacing: -2.1px;
  margin-bottom: 40px;
}

.Description {
  font-family: Barlow;
  line-height: 30px;
  font-size: 18px;
  color: #171B2A;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 70px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px;
  color: #fff;
  z-index: 1000;
  opacity: 0;
  animation: fadeInHeader 0.8s ease forwards;
}

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

@keyframes fadeInHeader {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo {
  height: 68px;
  width: 225px;
}

.mainMenu.active ul {
  margin-top: -80px;
  display: flex;
  padding: 20px;
}

.mainMenu li {
  font-size: 16px;
  font-weight: 600;
}

.mainButton {
  display: block;
}

.headerMenuWrap {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hamburger-icon {
  position: absolute;
  display: none;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 30px;
  background-color: #1a1b2d;
  right: 20px;
  z-index: 2;
}

.hamburger-icon::before,
.hamburger-icon::after,
.hamburger-icon span {
  content: "";
  display: block;
  background-color: white;
  height: 2px;
  width: 28px;
  margin: 7px 0;
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 1240px) {
  .hamburger-icon {
    display: block;
  }
  .mainMenu ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #1a1b2d;
    z-index: 1;
  }
  .mainButtonWrap {
    display: none;
  }
  .mainMenu.active ul {
    display: flex;
  }
  .mainMenu li {
    font-size: 16px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 1024px) {
  .headerMenuWrap {
    justify-content: center;
  }
  header {
    background-color: white;
  }
}
@media only screen and (max-width: 425px) {
  .logo {
    margin-top: 10px;
    width: 160px;
  }
}
.mainMenu {
  display: flex;
}
.mainMenu ul li {
  color: white;
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.mainMenu ul li .activeThis {
  position: relative;
}
.mainMenu ul li .activeThis::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: -2px;
  background-color: #de2441;
}
.mainMenu ul li:hover {
  font-weight: 600;
}
.mainMenu ul li:hover .active {
  position: relative;
}
.mainMenu ul li:hover .active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: -2px;
  background-color: #de2441;
}
.mainMenu ul li:hover:after {
  top: 0;
  left: 0;
  content: "";
  width: 10px;
  height: 2px;
  color: #DE2441;
}

.mainText {
  padding-top: 220px;
  padding-bottom: 35px;
  padding-left: 74px;
}
.mainText p {
  line-height: normal;
}

.mainTitle {
  width: 42rem;
  letter-spacing: 0;
}

.mainSubtitle::after {
  position: absolute;
  content: "";
  top: -20px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 30px;
  background-color: black;
}

.videoAdaptive {
  position: relative;
}

.mainDescription {
  max-width: 400px;
  font-size: 34px;
}

.bgcImage {
  position: relative;
}
.bgcImage img {
  height: 100%;
}
.bgcImage video {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  object-fit: cover;
}

.mainWrapAdaptive {
  display: flex;
  position: relative;
}

@media (max-width: 1200px) {
  .bgcImage {
    position: relative;
  }
  .bgcImage::before {
    width: 1160px;
    height: 586px;
  }
}
.muteButton {
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  padding-bottom: 14px;
  justify-content: center;
  background-image: url("../Images/MainIMG/RectangleRed.png");
  left: 0;
  bottom: 0;
  width: 130px;
  height: 130px;
}
.muteButton img {
  padding: 5px;
  z-index: 2;
  width: 40px;
  height: 40px;
}

.mainItemWrap {
  display: flex;
  justify-content: end;
  padding-right: 0;
}

.mainItem {
  position: relative;
  left: 0;
  top: 0;
  z-index: 13;
  display: flex;
  gap: 40px;
  margin-top: -25px;
  padding: 50px 55px;
  background-image: url("../Images/MainIMG/mainImages/bgcItem.png");
  background-repeat: repeat;
  background-color: #1b4cb8;
  width: 83%;
  height: 190px;
}
.mainItem .items {
  display: flex;
  gap: 20px;
  align-items: center;
}
.mainItem .items:not(:last-child)::after {
  content: "";
  width: 1.2px;
  height: 80px;
  background-color: #a1b5e2;
}
.mainItem .items p {
  font-family: Barlow, serif;
  padding-top: 16px;
  max-width: 220px;
  font-weight: 300;
  font-size: 18px;
  color: white;
}

.mainWrap {
  display: flex;
}

.muteButtonAdaptive {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .items::after {
    display: none;
  }
  .mainItem {
    width: 100%;
    margin-top: 0;
  }
  .muteButtonAdaptive {
    display: block;
    padding-left: 25px;
  }
  .muteButtonAdaptive img {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 1124px) {
  .mainWrapAdaptive {
    padding-top: 100px;
    flex-direction: column;
  }
  .videoAdaptive {
    display: flex;
    order: 1;
    overflow: hidden;
  }
  .videoAdaptive video {
    width: 1300px;
    height: 550px;
    object-fit: cover;
  }
  .mainText {
    order: 2;
    padding-right: 10px;
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .mainText .mainTitle {
    position: relative;
    z-index: 3;
    width: 100%;
  }
  .mainText p {
    max-width: 580px;
  }
  .mainText::before,
  .mainText video {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
  }
  .mainText video {
    z-index: 3;
  }
  .mainItem {
    flex-wrap: wrap;
    height: 100%;
    background-repeat: repeat;
    background-size: cover;
    gap: 20px;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 750px) {
  .videoAdaptive video {
    height: 500px;
    width: 800px;
  }
  .mainText {
    padding-left: 10px;
  }
  .mainText h2 {
    font-size: 30px;
  }
  .mainText h1 {
    max-width: 500px;
    font-size: 54px;
    margin-bottom: 20px;
  }
  .mainText p {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .mainItem {
    padding: 35px 40px;
    font-weight: 500;
    gap: 30px;
    justify-content: start;
  }
}
@media only screen and (max-width: 425px) {
  .videoAdaptive video {
    width: 500px;
  }
  .mainText h1 {
    width: 100%;
    font-size: 50px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 330px) {
  .videoAdaptive video {
    width: 350px;
  }
}
.aboutWrap {
  display: flex;
  justify-content: space-between;
}

.aboutText {
  padding-left: 190px;
}

@media only screen and (max-width: 1300px) {
  .aboutText {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .aboutText {
    padding-left: 70px;
  }
}
.aboutTitle {
  position: relative;
  font-size: 65px;
}
.aboutTitle::after {
  position: absolute;
  content: "";
  top: -20px;
  left: 0;
  width: 45px;
  height: 3px;
  border-radius: 30px;
  background-color: black;
}

.aboutDescription {
  margin-right: -280px;
  padding-right: 10px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1664px) {
  .aboutDescription {
    max-width: 410px;
    margin-right: 0;
  }
}
.aboutImage {
  max-width: 60%;
}

@media only screen and (max-width: 1124px) {
  .aboutWrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .aboutText {
    padding-left: 0;
  }
  .aboutImage {
    padding-top: 30px;
    max-width: 700px;
    padding-left: 0;
  }
  .aboutImage img {
    min-width: 0;
    min-height: 0;
  }
}
@media only screen and (max-width: 640px) {
  .aboutDescription {
    font-size: 16px;
  }
  .aboutText p {
    margin-bottom: 20px;
  }
  .aboutTitle {
    margin-bottom: 20px;
  }
  .aboutImage {
    padding-top: 30px;
    padding-bottom: 0;
  }
}
.itemsColumn {
  display: flex;
}

.item {
  position: relative;
  padding: 70px 80px;
  max-width: 33.3333%;
  transition: background-image 0.3s ease, color 0.3s ease, opacity 0.3s ease, transform 0.5s ease;
  overflow: hidden;
  will-change: opacity, transform;
}
.item:hover {
  color: white;
  background-image: url("../Images/MainIMG/itemImage/bgcItemImage.png");
}
.item:hover p, .item:hover h2, .item:hover h3 {
  color: inherit;
}
.item:hover::after {
  display: none;
}
.item:hover h2:after {
  background-color: white;
}
.item::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 40px;
  height: 40px;
  background-color: #de2441;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.item h3 {
  font-size: 72px;
  font-family: Montserrat, Roboto, serif;
  font-weight: 900;
  line-height: 80px;
  color: #de2441;
  padding-bottom: 40px;
}
.item h2 {
  position: relative;
  padding: 40px 0 10px;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  color: #191919;
}
.item h2:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 55px;
  height: 1px;
  background-color: black;
}
.item p {
  font-weight: 300;
  font-family: Barlow, serif;
  font-size: 18px;
  line-height: 22px;
  color: #282728;
}

.itemText {
  padding: 60px 80px;
  max-width: 33.3333%;
}
.itemText h2 {
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  padding: 40px 0 30px;
}
.itemText h2:after {
  position: absolute;
  content: "";
  left: 0;
  top: 30px;
  width: 55px;
  height: 1px;
  background-color: black;
}
.itemText p {
  font-size: 18px;
  line-height: 22px;
  color: #282728;
}
.itemText::after {
  display: none;
}

.itemBlue h3 {
  color: #1b4cb8;
}
.itemBlue:hover {
  color: white;
  background: #1b4cb8;
  opacity: 0.9;
}
.itemBlue:hover p, .itemBlue:hover h2, .itemBlue:hover h3 {
  color: inherit;
}
.itemBlue:hover::after {
  display: none;
}
.itemBlue:hover h2:after {
  background-color: white;
}
.itemBlue::after {
  background-color: #1b4cb8;
}

@media only screen and (max-width: 1024px) {
  .itemsWrap {
    display: flex;
    flex-wrap: wrap;
  }
  .itemsColumn {
    justify-content: center;
    flex-wrap: wrap;
  }
  .itemsColumn .itemText {
    display: none;
  }
  .itemsColumn .item {
    min-width: 360px;
  }
}
@media only screen and (max-width: 725px) {
  .itemsColumn {
    padding: 0 10px;
  }
  .itemsColumn .item {
    margin-bottom: 10px;
    width: 50%;
  }
}
@media only screen and (max-width: 425px) {
  .itemsColumn {
    padding: 0 3px;
  }
  .itemsColumn .item {
    padding: 55px 60px;
    min-width: 290px;
  }
}
.visionWrap {
  display: flex;
  max-width: 1700px;
  align-items: center;
  justify-content: space-between;
}

.visionImage {
  padding: 0 0 50px 85px;
}
.visionImage img {
  width: 700px;
  min-height: 400px;
  min-width: 480px;
}

.visionText {
  max-width: 700px;
  padding-top: 60px;
  padding-left: 100px;
}
.visionText h2 {
  position: relative;
}
.visionText h2:after {
  position: absolute;
  content: "";
  left: 0;
  top: -25px;
  width: 55px;
  height: 3px;
  background-color: black;
}
.visionText p {
  max-width: 650px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1100px) {
  .visionWrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .visionText {
    padding-left: 0;
  }
  .visionImage {
    max-width: 700px;
    padding-left: 0;
  }
  .visionImage img {
    min-width: 0;
    min-height: 0;
  }
}
@media only screen and (max-width: 640px) {
  .visionDescription {
    font-size: 16px;
  }
  .visionText p {
    margin-bottom: 20px;
  }
  .visionTitle {
    margin-bottom: 20px;
  }
  .visionImage {
    padding-top: 30px;
    padding-bottom: 0;
  }
}
.blogWrap {
  padding: 120px 30px 100px;
}

.blogItemsWrap1, .blogItemsWrap2 {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1400px) {
  .blogItemsWrap1, .blogItemsWrap2 {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 1400px) {
  .blogItemsWrap1 {
    flex-wrap: wrap;
    justify-content: center;
  }
  .blogItemsWrap1 .lastBlogItem:last-child {
    display: none;
  }
}

.blogItemsWrap2 .lastBlogItem {
  display: none;
}
@media screen and (max-width: 1400px) {
  .blogItemsWrap2 {
    flex-wrap: wrap;
    justify-content: center;
  }
  .blogItemsWrap2 .lastBlogItem {
    display: flex;
  }
}

.blogBgcImage {
  width: 100%;
  background-image: url("../Images/MainIMG/blogImages/bgcBlogImage.svg");
}

.blogItem {
  transition: transform 0.3s ease;
}

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

.blogText {
  width: 470px;
}
.blogText h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 67px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}
.blogText h2:after {
  position: absolute;
  content: "";
  left: 0;
  top: -15px;
  width: 50px;
  height: 3px;
  background-color: white;
}
.blogText p {
  color: white;
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 50px;
}

.blogItem {
  display: flex;
}
.blogItem .blogItemText {
  max-width: 235px;
  background-color: #ffffff;
  padding: 30px 35px 35px 30px;
}
.blogItem .blogItemText h3 {
  font-size: 22px;
  font-weight: 500;
  color: black;
  margin-bottom: 60px;
}
.blogItem .blogItemText h3:after {
  position: absolute;
  content: "";
  left: 0;
  top: 80px;
  width: 55px;
  height: 1px;
  background-color: #de2441;
}
.blogItem .blogItemText p {
  font-size: 16px;
  line-height: 1.3rem;
  color: #282728;
  margin-bottom: 35px;
}
.blogItem .blogItemText a {
  padding-right: 30px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
}
.blogItem .blogItemText a:after {
  position: absolute;
  content: url("../Images/MainIMG/blogImages/arrow.svg");
  left: 66px;
  top: -2px;
}

.blogItemImage img {
  display: block;
  width: 235px;
  height: 100%;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .blogWrap {
    padding: 80px 60px 80px;
  }
  .blogItem {
    flex-wrap: wrap;
  }
  .blogItem .blogItemText {
    max-width: 100%;
    padding: 25px 25px 25px 20px;
  }
  .blogItem .blogItemText h3 {
    margin-bottom: 30px;
  }
  .blogItem .blogItemText h3::after {
    display: none;
  }
  .blogItem .blogItemImage img {
    display: flex;
    width: 600px;
    flex: 1 1 auto;
    height: 350px;
  }
}
@media only screen and (max-width: 400px) {
  .blogWrap {
    padding: 80px 30px 80px;
  }
}
.contactForm {
  padding-left: 180px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.contactForm p {
  max-width: 300px;
  line-height: normal;
  margin-bottom: 30px;
}
.contactForm h2 {
  position: relative;
  margin-bottom: 5px;
}
.contactForm h2:after {
  position: absolute;
  content: "";
  left: 0;
  top: -25px;
  width: 55px;
  height: 3px;
  background-color: #191919;
}

.contactInput {
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  gap: 10px;
}
.contactInput label {
  font-size: 18px;
  font-weight: 400;
}
.contactInput input:not(.Button),
.contactInput textarea {
  font-size: 18px;
  color: #c8c8c8;
  display: block;
  border-bottom: #c8c8c8 1px solid;
  margin-bottom: 5px;
  padding: 5px;
  width: 400px;
  box-sizing: border-box;
}
.contactInput button {
  margin-top: 30px;
}

.iconItem {
  position: relative;
}
.iconItem .contactSubtitle {
  font-weight: 600;
  line-height: 25px;
  font-size: 18px;
  margin-bottom: 0;
}
.iconItem p {
  font-size: 14px;
  font-weight: 400;
}

.lineContactIcon:after {
  content: url("../Images/MainIMG/contactImages/contactLineIcon.png");
  position: absolute;
  top: 0;
  right: -17px;
}

.contactImg {
  background-image: url("../Images/MainIMG/contactImages/israel-flag-with-waving-flag.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 57vw;
  height: 100%;
}
@media screen and (max-width: 1300px) {
  .contactImg {
    width: 100%;
  }
}

@media screen and (max-width: 1300px) {
  .contactForm {
    padding-left: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .contactForm {
    padding-left: 50px;
  }
}
input,
textarea {
  width: 100%;
}

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

@media only screen and (max-width: 1024px) {
  .contactForm {
    padding-left: 10px;
    padding-right: 10px;
  }
  .contactWrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .contactImg {
    height: 500px;
    background-position: center;
  }
}
@media only screen and (max-width: 640px) {
  .contactForm .contactInput input, .contactForm textarea {
    width: 300px;
  }
  .contactForm h2 {
    font-size: 67px;
  }
  .iconItems {
    padding: 0 10px;
    flex-wrap: wrap;
  }
  .iconItems .iconItem::after {
    display: none;
  }
  .contactImg {
    height: 230px;
    background-position: center;
  }
}
.powerby {
  padding-right: 150px;
}

@media (max-width: 1300px) {
  .powerby {
    padding-right: 100px;
  }
}
@media (max-width: 1100px) {
  .powerbyWrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .powerby {
    padding-right: 0;
  }
}
@media (max-width: 960px) {
  .powerbyWrap {
    justify-content: center;
  }
  .powerby {
    padding-right: 0;
  }
}
.footerWrap {
  align-items: center;
}

footer {
  color: #787a8d;
  padding: 70px 60px 35px;
  background-color: #1a1b2d;
  width: 100%;
}
footer .footerLine {
  width: 100%;
  height: 2px;
  background-color: #4d4f61;
}
footer .logo p {
  font-size: 16px;
  line-height: normal;
}

.footerLogo {
  padding-right: 18%;
}

.footerCopy {
  color: #787a8d;
  font-size: 18px;
}

.footerEmail input {
  padding: 5px;
  background-color: #1a1b2d;
  width: 100%;
  border-bottom: #9ca3af 1px solid;
}

@media only screen and (max-width: 1024px) {
  .footerNavigate {
    flex-wrap: wrap;
    gap: 0;
  }
  .footerWrap {
    justify-content: space-between;
    align-items: start;
  }
  .footerLogo {
    padding-right: 30px;
  }
  .menuItem {
    flex: 0 0 30%;
    max-width: 30%;
    margin-bottom: 0;
  }
  .footerEmail {
    flex: 1 1 auto;
    max-width: 30%;
  }
}
@media only screen and (max-width: 640px) {
  footer {
    padding: 55px 50px 25px;
  }
  .footerNavigate {
    gap: 0;
  }
  .footerWrap {
    gap: 10px;
    flex-wrap: wrap;
  }
  .footerLogo {
    padding-right: 0;
    padding-bottom: 30px;
  }
}

/*# sourceMappingURL=style.css.map */

.sumbit-btn{
    background: #f6002e !important;
    font-size: 22px;
    border-radius: 30px;
    width: 140px;
    height: 50px;
    color: #fff;
}
.sumbit-btn:hover{
    background: #FF4861 !important;
    transform: scale(1.05);

}
