

.content{
  display: flex;
  align-items: center;
  /* justify-content: center; */
  font-family: verdana;
  font-size: 30px;
  /* height: 100vh; */
  /* text-transform: uppercase; */
  color: #f32525;
  /* background-color: darkslateblue; */
}

.slider{
  margin-left: 1px;
  height: 50px;
  overflow: hidden;
}

.slide{
  display: flex;
  align-items: center;
  padding: 2px 15px;
  text-align: center;
  /* height: 50px; */
  margin-bottom: 20px;
}

.slide-anim{
  animation: slide 7s linear infinite;
}


@keyframes slide {
  0% { transform: translateY(-300px); }
  5% { transform: translateY(-300px); }
  33% { transform: translateY(-200px); }
  38% { transform: translateY(-200px); }
  66% { transform: translateY(-100px); }
  71% { transform: translateY(-100px); }
  100% { transform: translateY(0px); }
}

/* carts  */


.clearfix {
  clear: both;
}

.centerflipcards {
  display: block;
  text-align: center;
  margin: 120px auto;
}

.card-flip {
  width: 100%;
  height: 250px;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -webkit-transform: perspective(1000px);
  -moz-transform: perspective(1000px);
  -ms-transform: perspective(1000px);
  transform: perspective(1000px);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
  float: left;
}

.frontCard,
.backCard {
  width: 100%;
  height: 100%;
  padding: 10px;
  -ms-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
  transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
  -webkit-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-flip .frontCard {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  z-index: 1;
}

.card-flip:hover .frontCard {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
}

.card-flip .backCard {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  z-index: 1;
}

.card-flip:hover .backCard {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

.invCard,
.applyCard2,
.directionsCard {
  background: url() center center no-repeat content-box;
  background-size: cover;
}

.invCard2,
.applyCard,
.directionsCard2 {
  /* background: url(http://israel.dcs-cms.com/Dealers/00001_01000/00030_Israel/images/fxslide3.jpg) center center no-repeat content-box; */
  background-size: cover;
}

.frontCard:before,
.backCard:before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  /* background-image: linear-gradient(to bottom right, #f03114, #f03114); */
  opacity: .6
}

.card-flip i {
  color: #fff;
  font-size: 4em;
}

.card-flip h2 {
  color: white;

  /* font-weight: 700;
  font-size: 24px; */
  text-align: center;
}

.card-flip {
  color: white;

  /* font-weight: 500;
  font-size: 15px;
  line-height: 24px; */
}

.centerflipcards {

  /* font-size: 13px;
  margin-top: 10px;
  font-weight: 700; */
}

.flip-button {
  display: block;
  width: 200px;
  padding: 20px;

  font-weight: 300;
  font-size: 1.5em;
  color: #fff;
  margin: 0 auto;
  border-radius: 2px;
  text-decoration: none;
  background: #f03114;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #ff7b4b 0%, #de6249 49%, #ff5c21 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #ff634b 0%, #de4e49 49%, #ff5c21 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #de5f49 0%, #ff6c4b 49%,  100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#4bbcff', endColorstr='#2221ff', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: .7;
}

a.flip-button:hover {
  opacity: 1;
  color: #fff;
  text-decoration: none;
}


/*CARD FLIP ANIMATION*/

.card-container {
  padding: 20px 40px;
  text-align: center;
  position: relative;
  top: 50%;
  -ms-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
  transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
  -webkit-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
  -webkit-transform: translateY(-50%) translateX(0px) scale(1);
  -ms-transform: translateY(-50%) translateX(0px) scale(1);
  transform: translateY(-50%) translateX(0px) scale(1);
  transform-style: preserve-3d;
  z-index: 2;
}

.card-flip:hover .card-container {
  -webkit-transform: translateY(-50%) translateX(-650px) scale(.88);
  -ms-transform: translateY(-50%) translateX(-650px) scale(.88);
  transform: translateY(-50%) translateX(-650px) scale(.88);
  transform-style: preserve-3d;
}

.card-container2 {
  padding: 40px;
  text-align: center;
  position: relative;
  top: 50%;
  -ms-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
  transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
  -webkit-transition: transform 0.60s cubic-bezier(.5, .3, .3, 1);
  -webkit-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
  -ms-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
  transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
  transform-style: preserve-3d;
  z-index: 2;
}

.card-flip:hover .card-container2 {
  -webkit-transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
  -ms-transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
  transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
  transform-style: preserve-3d;
}


/*ADD SHADOWS OPTIONAL*/

.card-flip .frontCard .boxshadow,
.card-flip .frontCard .textshadow,
.card-flip .backCard .boxshadow,
.card-flip .backCard .textshadow {
  -ms-transition: 0.60s;
  transition: 0.60s;
  -webkit-transition: 0.60s;
}

.card-flip .frontCard .boxshadow {
  -webkit-box-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
  box-shadow: 24px 42px 58px -8px rgba(0, 0, 0, 0.3);
}

.card-flip .frontCard .textshadow,
.card-flip i {
  -webkit-text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
  -moz-text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}

.card-flip:hover .frontCard .boxshadow,
.card-flip:hover .frontCard .textshadow {
  -webkit-box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
  -moz-box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
  box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
}

.card-flip .backCard .boxshadow {
  -webkit-box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
  -moz-box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
  box-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
}

.card-flip .backCard .textshadow {
  -webkit-text-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
  -moz-text-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
  text-shadow: 240px 42px 58px -8px rgba(0, 0, 0, 0.0);
}

.card-flip:hover .backCard .boxshadow {
  -webkit-box-shadow: 25px 25px 50px 0px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 25px 25px 50px 0px rgba(0, 0, 0, 0.8);
  box-shadow: 25px 25px 50px 0px rgba(0, 0, 0, 0.8);
}




/* faqs services */
.accordion-wrapper {
  margin: 0 50px;
}

.accordion {
  /* color: #444; */
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin: 10px 0 0;
  /* font-family: "Inconsolata", monospace; */
  font-size: 20px;
}

.main-acc {
  /* border: 3px solid black; */
  box-shadow: 0 5px #162c56;
  border-radius: 6px 6px 6px 6px;
  padding: 2px;
}



.main-acc.active {
  /* border-top: 3px solid #000000; */
  /* border-right: 3px solid #000000;
  border-left: 3px solid #000000; */
  border-bottom: none;
  border-radius: 6px 6px 0px 0px;
}

/* .main-acc:hover {
  background-color: #ccc;
} */

.sub-acc {
  background-color: white;
  text-decoration: underline;
  margin: 0;
  padding: 18px 28px;
}
/* 
.accordion:after {
  content: "\002B";
  color: black;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 28px;
} */


.panel {
  position: relative;
  z-index: 2;
  background-color: white;
  border: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.sub-panel {
  border: none;
  /*   margin: 20px; */
}

.sub-panel p {
  padding: 0 18px;
  margin: 10px 20px;
  font-family: sans-serif;
}

.accordion.active+.main-panel {
  /*  background: red; */
  border: 3px solid #db1010;
  border-radius: 0px 0px 6px 6px;
  box-shadow: 0 5px rgba(227, 61, 61, 0.849);
}

/* .main-panel { */
  /*   margin-top: -20px; */
/* } */



.hamburger {
  display: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links a {
  color: black;
  text-decoration: none;
}

@media (max-width: 767px) {
  header {
    flex-direction: row;
  }

  .hamburger {
    display: block;
  }

  .nav-links a {
    color: white;
  }

  .nav-links a:hover {
    /* color: #f0afe9; */
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* background-color: #333; */
    flex-direction: column;
    align-items: center;
    width: 10%;
    margin-left: 20px;
    padding: 20px;
  }

  .nav-links.show {
    height: 200px;
    display: flex;
    justify-content: space-between;
    background: black;
    padding: 20px;
  }

  .bar {
    background-color: black;
    height: 3px;
    margin: 6px 0;
    width: 26px;
  }
}



/* progass bar */




.container2 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #111116;
  height: 100vh;
  align-items: center
}

.progress {
  width: 200px;
  height: 200px;
  font-size: 30px;
  color: #fff;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: #07070c;
  text-align: center;
  line-height: 200px;
  margin: 20px
}

.progress::after {
  content: "%";
}

.progress .title {
  position: relative;
  z-index: 100;
}

.progress .overlay {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #07070c
}

.progress .left,
.progress .right {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 10px solid #222235;
  border-radius: 100px 0px 0px 100px;
  border-right: 0;
  transform-origin: right;
}

.progress .left {
  animation: load1 1s linear forwards;
}

.progress:nth-of-type(2) .right,
.progress:nth-of-type(3) .right {
  animation: load2 .5s linear forwards 1s;
}

.progress:last-of-type .right,
.progress:first-of-type .right {
  animation: load3 .8s linear forwards 1s;
}

@keyframes load1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

@keyframes load2 {
  0% {
    z-index: 100;
    transform: rotate(180deg);
  }

  100% {
    z-index: 100;
    transform: rotate(270deg);
  }
}

@keyframes load3 {
  0% {
    z-index: 100;
    transform: rotate(180deg);
  }

  100% {
    z-index: 100;
    transform: rotate(315deg);
  }
}





/* services  */




.servicecontainer {
  width: 100%;
  height: 100%;
  padding: 0px 8%;
}

.servicecontainer h1 {
  text-align: center;
  /* padding-top: 10%; */
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.servicecontainer h1::after {
  content: '';
  background: #f03114;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.row3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.service {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
  box-shadow: 0 5px #162c56;
}

.service i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #f03114;
}

.service h2 {
  font-weight: 600;
  margin-bottom: 8px;
}

.service:hover {
  background: #f03114;
  color: #fff;
  transform: scale(1.05);
}

.service:hover i {
  color: #fff;
}


/* services  */




.section_title {
  font-size: 40px;
  font-weight: bold;
  color: inherit;
  margin: 0;
  margin-bottom: 15px;
  text-align: center;
}

.section_details {
  text-align: center;
  font-size: 25px;
}

.our_service_section {
  /* background-color: #1f2429; */
  background-image: url(bg.png);
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #000000;
  position: relative;
  padding: 100px 20px;
}

.our_service_section>* {
  position: relative;
  z-index: 1;
}

.our_service_section::before {
  content: '';
  /* background-image: linear-gradient(150deg, #fdfdfd2e -50%, transparent 70%); */
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.our_service_section>.single_service_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 400px));
  justify-content: center;
  gap: 30px;
  margin-top: 80px;
}

.our_service_section>.single_service_container>.single_service {
  max-width: 450px;
  /* background-color: #fefefe; */
  /* color: #000000; */
  padding: 25px 30px;
  border-radius: 6px 6px 0px 6px;
  box-shadow: 0 5px #162c56;

  transition: 0.3s ease-in-out;
}

.our_service_section>.single_service_container>.single_service .top {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.our_service_section>.single_service_container>.single_service .top .icon {
  /* background: rgba(255, 255, 255, 0.096); */
  display: inline-block;
  min-width: 100px;
  height: 100px;
  font-size: 50px;
  color: #f3e9e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #ed1717cc;
  box-shadow: 0 5px 10px #0003;
  transition: 0.3s ease-in-out;
}

.our_service_section>.single_service_container>.single_service .top .text {
  width: 100%;
  margin-left: 20px;
}

.our_service_section>.single_service_container>.single_service .top .text .__one,
.our_service_section>.single_service_container>.single_service .top .text .__two {
  margin: 15px 0;
}

.our_service_section>.single_service_container>.single_service .top .text .__one {
  color: rgba(5, 3, 3, 0.6);
}
.our_service_section>.single_service_container>.single_service .top .text .__one:hover {
  color: rgba(208, 21, 21, 0.6);
}

.our_service_section>.single_service_container>.single_service .top .text .__two {
  font-size: 22px;
  color: rgba(2, 2, 2, 0.933);
}
.our_service_section>.single_service_container>.single_service .top .text .__two:hover {
  font-size: 22px;
  color: rgba(255, 252, 252, 0.933);
}

.our_service_section>.single_service_container>.single_service .bottom {
  color: rgba(8, 7, 7, 0.867);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.our_service_section>.single_service_container>.single_service .bottom:hover {
  color: rgba(225, 225, 225, 0.867);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.our_service_section>.single_service_container>.single_service:hover {
  background-color: #f03114;
  color: #f3e9e9;
}

.our_service_section>.single_service_container>.single_service:hover .icon {
  border-color: #fff;
  background-color: #FFC85B;
  color: #fff;
}


/* ---------form and map ------------------- */

.container-form-map {
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  border: 1px solid #396afc;
  background: linear-gradient(to right, #064972, #232463);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.container-form-map form .descr {
  font-size: 20px;
  font-weight: 500;
  color: #e8e8e8;
  margin-bottom: 25px;
  margin-top: 25px;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
}

.input, textarea {
  margin: 1em 0 1em 0;
  width: 300px;
  position: relative;
}

.input input, textarea {
  font-size: 100%;
  padding: 0.7em;
  outline: none;
  color: #e8e8e8;
  border: none;
  border-bottom: 2px solid #e8e8e8;
  background: transparent;
  border-radius: none;
  width: 100%;
  resize: none;
}

.input label {
  font-size: 100%;
  position: absolute;
  left: 0;
  color: #e8e8e8;
  padding: 0.7em;
  margin-left: 0.1em;
  pointer-events: none;
  transition: all 0.5s ease;
  text-transform: uppercase;
}

.input :is(input:focus, input:valid)~label {
  transform: translateY(-50%) scale(.9);
  margin: 0em;
  padding: 0.4em;
  background: transparent;
}

.input textarea:focus ~ label,
.input textarea:valid ~ label {
  transform: translateY(-50%) scale(.9);
  margin: 0em;
  padding: 0.4em;
  background: transparent;
}

.inputGroup :is(input:focus, input:valid) {
  border-color: rgb(37, 37, 211);
}

.form button {
  color: #e8e8e8;
  font-size: 15px;
  align-self: flex-start;
  padding: 0.6em;
  border: none;
  cursor: pointer;
  margin-bottom: 50px;
  background: transparent;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.form button:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e8e8e8;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.form button:hover:before {
  opacity: 0.2;
}

.form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 620px) {
  #banner {
    background-image: url('./images/02.jpg');
    background-size: cover;
    background-position: center; 
    height: 70vh;
  }
}
