/**********************************/
/***     Fonts                 ****/
/**********************************/
* {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.9rem;
}

h6 {
  font-size: 0.75rem;
}

/**********************************/
/***    Reset to defaults      ****/
/**********************************/
* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  background-color: #fff;
  margin-bottom: 2em;
}

.container {
  margin: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/**********************************/
/***        General section    ****/
/**********************************/
p {
  margin-top: 1ex;
  margin-bottom: 1ex;
}

.content {
  display: flexbox;
}

.section {
  padding: 20px 10px 20px 0px;
  margin-left: 25px;
  margin-right: 25px;
}

.light {
  background-color: #fff;
}

.dark {
  background-color: #c3c3c3;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}

a {
  text-decoration: none;
  font-weight: 600;
  color: #000;
}
a:hover {
  text-decoration: underline;
  color: #ff9900;
}
a:visited {
  color: #000;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.linkbutton {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  background-color: rgb(96, 125, 255);
  padding: 0em 0.8em 0.2em 0.8em;
  border-radius: 0.5em;
  border-width: 1px;
  vertical-align: center;
  font-size: 0.8em;
}
.linkbutton:hover {
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.footer {
  position: fixed;
  overflow: hidden;
  left: 0;
  margin: 0;
  padding-bottom: 0.2em;
  text-align: center;
  align-items: center;
  bottom: 0em;
  z-index: 999;
  background-color: hsl(210, 23%, 17%);
  color: #fff;
  width: 100%;
  text-align: center;
}
.footer a {
  color: #fff;
}
.footer a:visited {
  color: #fff;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.blink {
  animation: blink 2s steps(1, end) infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*header*/
.header {
  position: sticky;
  width: 100%;
  min-width: 350px;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 0px;
}
.header-main {
  background-color: hsl(210, 23%, 17%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  margin: 0px;
  padding: 0;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-top: 0.5rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.header .logo a {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.header .logo a .first {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  color: #ff9900;
}
.header .nav-menu {
  padding: 0 15px;
}
.header .menu > .menu-item {
  display: inline-block;
  margin-left: 15px;
  position: relative;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
}
.header .menu > .menu-item > a .plus:before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #fff;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #fff;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item:hover > a {
  color: #ff9900;
}
.header .menu > .menu-item:hover > a .plus:before {
  background-color: #ff9900;
}
.header .menu > .menu-item:hover > a .plus:after {
  background-color: #ff9900;
}
.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: hsl(210, 23%, 17%);
  padding: 10px 0;
  border-top: 3px solid #ff9900;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: #000;
  background-color: #ff9900;
  text-decoration: none;
}

.two-column {
  display: block;
  gap: 40px;
}

@media (min-width: 992px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .menu > .menu-item-has-children:hover > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #fff;
  position: relative;
}
.header .open-nav-menu span:before, .header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}
.header .open-nav-menu span:after {
  top: 7px;
}
.header .close-nav-menu {
  height: 40px;
  width: 40px;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.header .close-nav-menu img {
  width: 16px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease;
}

/*home section*/
.home-section {
  width: 100%;
  display: block;
  min-height: 50vh;
  background-image: url("../img/banner-scf.jpg");
  background-position: center top;
  background-size: cover;
}

@media (max-width: 991px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .header .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: hsl(210, 23%, 17%);
    z-index: 1000;
    padding: 15px 0;
    transition: all 1s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item > a {
    color: #fff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }
  .header .menu > .menu-item > a .plus:before {
    background-color: #fff;
  }
  .header .menu > .menu-item > a .plus:after {
    background-color: #fff;
  }
  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #555;
  }
  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 45px;
    color: #ffffff;
    border-bottom: 1px solid #555;
  }
  .header .menu > .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item-has-children.active > a.plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
}
/**********************************/
/***        hero section       ****/
/**********************************/
.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)), url("/images/banner-scf.jpg");
  z-index: -1;
  min-height: 25em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -30%);
  color: #fff;
  margin: 0;
  padding: 0;
}

.logo {
  display: block;
  padding-top: 1.3rem;
  width: 8rem;
  margin: auto;
}

.flag {
  padding: 0rem 1.2rem;
  display: table-cell;
  width: 1rem;
}

.flag-size {
  width: 4.5rem;
  height: auto;
}

/**********************************/
/***      Site specific        ****/
/**********************************/
.card {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  border: 1px rgb(96, 125, 255);
  box-shadow: 0px 2px 5px 5px rgba(0, 0, 0, 0.2);
  color: #000;
  border-radius: 1.3em;
  max-width: 30rem;
  padding-bottom: 1.5rem;
  background-color: rgb(255, 255, 255);
}
.card a {
  color: #000;
}
.card li {
  margin: 0rem 0rem 0rem 2rem;
  padding-top: 0.4rem;
  padding-left: 0.1rem;
}
.card h3 {
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
}
.card p {
  padding-left: 2rem;
  line-height: 1.5rem;
}
.card button {
  background-color: rgb(96, 125, 255);
  color: #fff;
  padding: 0em 0.8em 0.2em 0.8em;
  margin: 0.1em;
  border-radius: 0.5em;
  border-width: 1px;
  vertical-align: center;
  font-size: 1em;
}
.card button:hover {
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.card-header {
  min-height: 4em;
  background: rgb(96, 125, 255);
  color: white;
  padding: 1em 0em 1em 2em;
  margin-bottom: 2rem;
  border-top-left-radius: 0.65em;
  border-top-right-radius: 0.65em;
}

.map-tile {
  width: 350px;
  height: 300px;
  background-image: url(/images/Lavie.png);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
}

.two-column > * {
  width: 100%;
}

img {
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.4));
}

/**********************************/
/***       Contact form        ****/
/**********************************/
.contactform {
  border-radius: 1.3em;
  background-color: rgba(255, 255, 255, 0.5);
  max-width: 37.5em;
  margin-bottom: 0em;
  box-shadow: 0px 2px 5px 5px rgba(0, 0, 0, 0.2);
}
.contactform H1 {
  color: #fff;
}

input[type=text],
select,
textarea {
  width: 90%;
  padding: 0.5em;
  border: 1px solid #555;
  border-radius: 0.25em;
  box-sizing: border-box;
  margin-top: 0.2em;
  margin-left: 1.5rem;
  margin-bottom: 1em;
  resize: vertical;
}

label {
  margin-left: 1.5rem;
  color: #000;
}

input[type=submit] {
  background-color: rgb(96, 125, 255);
  color: #fff;
  padding: 0.8em 1.2em;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 1.3em;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #ff9900;
  margin-left: 1.5rem;
}

.form-header {
  min-height: 2em;
  background: rgb(96, 125, 255);
  color: white;
  padding: 0.5em 0em 0.5em 1em;
  margin-bottom: 1rem;
  border-top-left-radius: 0.65em;
  border-top-right-radius: 0.65em;
}

table {
  border-collapse: collapse;
  border: 1px solid #555;
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

th,
td {
  border: 1px solid #555;
  padding: 8px 10px;
  text-align: left;
  color: #000;
}

tbody > tr:nth-of-type(odd) {
  background-color: #b3ccec;
  color: #fff;
}

.card_table {
  border-collapse: collapse;
  border: 0px;
  width: 98%;
  margin: auto;
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.card_table th,
.card_table td {
  border: 0px solid #555;
  padding: 0.4rem 1rem;
  text-align: left;
  color: #000;
}
.card_table tbody > tr:nth-of-type(odd) {
  background-color: #b3ccec;
  color: #fff;
}

.newsign {
  margin-left: 0.5rem;
  background-color: rgb(96, 125, 255);
  border-radius: 4px;
  color: #fff;
  font-style: none;
  font-weight: 400;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
}

.cancelsign {
  margin-left: 0.5rem;
  background-color: rgb(255, 0, 0);
  border-radius: 4px;
  color: #fff;
  font-style: none;
  font-weight: 400;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
}

.mytabs {
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(255, 255, 255);
  border-radius: 1em;
  max-width: 600px;
  padding: 2em 0px;
}
.mytabs input[type=radio] {
  display: none;
}
.mytabs label {
  margin: 0em 0.3em;
  padding: 10px 10px;
  background: #e2e2e2;
  font-weight: bold;
  border-radius: 10px 10px 0px 0px;
}
.mytabs .tab {
  width: 100%;
  padding: 10px 20px 0px 30px;
  background: #fff;
  border-radius: 1em;
  order: 1;
  display: none;
}
.mytabs .tab h2 {
  font-size: 2em;
}
.mytabs .tab li a {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
  font-style: normal;
}
.mytabs .tab :hover {
  text-decoration: none;
  color: #000;
}
.mytabs input[type=radio]:checked + label + .tab {
  display: block;
}
.mytabs input[type=radio]:checked + label {
  background: rgb(96, 125, 255);
  color: #fff;
}
.mytabs .tab li a.button {
  background-color: rgb(96, 125, 255);
  color: #fff;
  padding: 0em 0.8em 0.2em 0.8em;
  margin: 0.4em;
  border-radius: 0.5em;
  border-width: 1px;
  vertical-align: center;
  font-size: 0.8em;
}
.mytabs .tab li a.button:hover {
  background-color: #ff9900;
  font-weight: bold;
  text-decoration: none;
}

.ticker {
  padding-block: 8px;
  border-block: 1px solid;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  --gap: 8em;
  display: flex;
  gap: var(--gap);
}
.ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  animation: scroll 30s linear infinite;
}

.ticker:hover ul {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}