*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: whitesmoke;
}

nav{
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    min-height: 8vh;
    align-items: center;
    background-color: whitesmoke;
    font-family: 'Open Sans', sans-serif;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 70%;
    max-width: 700px;
}

.nav-links li{
    list-style: none;
}


.nav-links a{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
nav li:hover a{
    color: #38c0ff;
    transition: 0.2s;
}
#cnisa-lakohot {
  background-color: #99daf9;
  padding: 5px;
  border-radius: 10px;
}
#cnisa-lakohot:hover a{
  color: black;
}
#cnisa-lakohot:hover{
  background-color: #44bae8;
  transition: 0.6s;
}
.burger {
    display: none;
}

.burger div{
    background-color: black;
    width: 25px;
    height: 3px;
    margin: 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.container-image-1 {
    min-height: 37vh;
    background-image: url('./images/tzur-kesher-o.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.col-1 h1 {
    color: white;
    font-family:'Open Sans', sans-serif;
    font-size: 48px;
    text-align: center;
    padding-top: 80px;
    font-weight:500;
}

  .page-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      
  }

  /* Slideshow container */
.slideshow-container {
    max-width: 300px;
    position: relative;
    margin:auto;
    margin-top: 50px;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 100%;
    border-radius: 3px 0 0 3px;
  }

  .prev {
      left: 100%;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(161, 161, 161, 0.8);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/8) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  /* end of ex*/

  /* Contact-us container*/

  .contact-us{
    display: flex;
    margin-top: 3%;
    margin-bottom: 3%;
    margin-right: 15%;
    margin-left: 15%;
    background-color: #626262;
    border-radius: 7px;
    padding: 20px;
    min-width: 50%;
    
  }

  .fcf-body {
    margin-right: 50%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: rgb(255, 255, 255);
    padding: 30px;
    padding-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    min-width: 50%;
}

.fcf-h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 25px;
  color: #fff;
  align-content: center;
}

.fcf-label {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}

.fcf-form-group {
    margin-bottom: 1rem;
    margin-right: 1;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    min-width: 500px;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #C4C4C4;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: 'Open Sans', sans-serif;
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #212529;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: rgb(71, 71, 71);
    background-color: #99DAF9;
    border-color: #99DAF9;
}

.fcf-btn-primary:hover {
    color: #fff;
    background-color: #3d9bff;
    border-color: #3d9bff;
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.fcf-btn-block {
    display: box;
    width: 15%;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 50%;
}


  .col-2 {
      color: #fff;
      font-family: 'Open Sans', sans-serif;
      width: 25%;
      margin-top: 6%;
      order: 2;
      border-right: 7px solid #99DAF9;
      margin-right: 50px;
      padding-right:50px;
      max-height:335px;
  }

  .col-2 h1 {
      font-size: 22px;
  }

  .col-2 p {
    font-family:monospace ;
    font-size: 15px;
}


@media screen and (max-width: 855px) {
    body{
        overflow-x: hidden;
    }

    .col-2 {
        display: none;
    }

    .footer-content {
        display: block;
    }

    .contact-us {
        margin-right: 0;
        margin-left: 0;  
        padding-right: 70px;  
        padding-left: 70px;
    }

    .facebook-li {
        display: none;
    }

    .fcf-input-group {
        min-width: 50%;
    }

    .fcf-btn {
        min-width: 100%;
    }

    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: whitesmoke;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li {
        opacity: 0;
    }
    .burger {
        display: block;
        position: absolute;
        left: 85%;
        cursor: pointer;
    }
    .contact-us {
      margin-top: 50px;
      margin-bottom: 50px;
    }
@media screen and (max-width: 1230px) {
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}
nav li:hover a{
    color: #99DAF9;
    transition: 0.2s;
}
}

footer{
    bottom: 0;
    left: 0;
    right: 0;
    background: #4d4d4d;
    min-height: auto;
    width: 100%;
    font-family: sans-serif;
    padding-top: 40px;
    color: #fff;
  }
  .footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .footer-content h3{
    font-size: 2.1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3rem;
  }
  .footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
    color: #cacdd2;
  }
  .socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
  }
  
  .socials a i{
    text-decoration: none;
    color: #fff;
    border: 1.1px solid white;
    padding: 2px 5px 0px 5px;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: color .4s ease;
  
  }
  
  li {
    text-align: -webkit-match-parent;
  }
  
  
  .fa-facebook:before {
    content: "\f09a";
  }
  
  .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  ul {
    list-style-type: disc;
  }
  
  .socials a:hover i{
    color: aqua;
  }
  
  .footer-bottom{
    background: #4d4d4d;
    width: 100%;
    padding: 20px;
    padding-bottom: 50px;
    text-align: center;
  }
  .footer-bottom p{
  float: left;
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
  }
  .footer-bottom p a{
  color:#44bae8;
  font-size: 16px;
  text-decoration: none;
  }
  .footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
  }
  .footer-menu{
  float: right;
  
  }
  .footer-menu ul{
  display: flex;
  }
  .footer-menu ul li{
  padding-right: 10px;
  display: block;
  }
  .footer-menu ul li a{
  color: #ffffff;
  text-decoration: none;
  }
  .footer-menu ul li a:hover{
  color: #27bcda;
  }
  
  @media (max-width:500px) {
  .footer-menu ul{
  display: flex;
  margin-top: 10px;
  }
  }
.add-shadow {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px
    }
