* {
  margin: 0;
  padding: 0;
  font-family: "Neue Haas", Sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* BREAKPOINTS */

.cs-container {
  width: 1280px;
}

/* BUTTONS */
.cs-ghost-white-header {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 50px;
  background-color: transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  text-decoration: none;
}

.cs-ghost-white-header:hover {
  background-color: #fff;
  color: #000;
}

.cs-ghost-black-header {
  border: 1px solid #000;
  color: #000;
  padding: 8px 24px;
  border-radius: 50px;
  background-color: transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  text-decoration: none;
}

.cs-ghost-black-header:hover {
  background-color: #000;
  color: #fff;
}

.cs-ghost-white {
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  padding: 8px 25px;
  background-color: transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  text-decoration: none;
}

.cs-ghost-white:hover {
  background-color: #fff;
  color: #000;
}

.cs-filled-black {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background-color: #ffffff;
  padding: 8px 25px;
  border-radius: 50px;
  text-align: center;
  display: block;
  margin-top: 30px;
}

/* FOOTER */

.cs-footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  padding: 48px 10px 48px 10px;
}

.cs-footer-mobile {
  display: none;
}

.cs-footer-container-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 25px 10px 35px 10px;
  border-top: 1px solid #ccc;
}

.cs-footer-grid {
  display: flex;
  flex-direction: row;
}

.cs-footer-left-column {
  width: 26%;
  padding-right: 30px;
}

.cs-footer-right-column {
  width: 74%;
}

.cs-footer-link-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.cs-footer-link-column {
  width: 25%;
  padding: 10px;
}

.cs-footer-link-ul {
  margin-top: 20px;
  list-style-type: none;
}

.cs-footer-link-ul li {
  padding-top: 2px;
  padding-bottom: 2px;
}

.cs-footer-link-ul li a {
  text-decoration: none;
  color: #000000;
  line-height: 23px;
  font-size: 16px;
  font-weight: 400;
}

.cs-footer-input-container {
  display: flex;
  flex-direction: row;
  border: 1px solid #8e8e8e;
  border-radius: 8px;
  padding: 5px;
  max-width: 350px;
}

.cs-footer-input {
  flex-grow: 2;
  border: none !important;
  background-color: transparent;
  color: #8e8e8e;
  padding: 0.5rem 1rem;
}

.cs-footer-input:focus {
  outline: none;
}

.cs-footer-submit {
  color: #8e8e8e;
  border: none;
  background-color: transparent !important;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.cs-footer-submit:hover {
  background-color: transparent !important;
}

.cs-footer-input-error {
  font-size: 12px !important;
  font-weight: bold;
  color: #d52b1d !important;
  margin-top: 4px;
}

.cs-footer-input-error-mobile {
  font-size: 12px !important;
  font-weight: bold;
  color: #d52b1d !important;
  margin-top: 4px;
}

.cs-footer-socials {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin-bottom: 47px;
}

.cs-footer-gesh {
  width: 170px;
  margin-bottom: 20px;
}

.cs-footer-mobile-dropdown summary {
  font-size: 16px;
  line-height: 12px;
  padding: 18px 12px 18px 4px;
  border-bottom: 1px solid #666;
  font-weight: 700;
}

.cs-footer-mobile-dropdown summary::-webkit-details-marker {
  display: none;
}
.cs-footer-mobile-dropdown summary::marker {
  color: #fff;
}
.cs-footer-mobile-dropdown summary::after {
  content: "+";
  float: right;
  color: #666;
  font-size: 28px;
  margin-top: -8px;
}
.cs-footer-mobile-dropdown details[open] summary::after {
  content: "-";
  font-size: 32px;
}

.cs-footer-accordion-content {
  padding: 6px 24px 12px 24px;
}

@media screen and (max-width: 1024px) {
  .cs-footer-grid {
    flex-direction: column;
  }

  .cs-footer-left-column {
    width: 60% !important;
  }

  .cs-footer-right-column {
    width: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .cs-footer-container {
    padding: 48px 10px 12px 10px;
  }
  .cs-footer-grid {
    width: 100%;
  }
  .cs-footer-left-column {
    width: 100% !important;
    padding-right: 0px;
  }

  .cs-footer-gesh {
    width: 140px;
    margin-bottom: 20px;
  }

  .cs-footer-desktop {
    display: none;
  }

  .cs-footer-mobile {
    display: block;
  }

  .cs-footer-input-container {
    max-width: 100%;
  }

  .cs-footer-container-bottom {
    text-align: center;
  }

  .cs-footer-socials {
    width: 200px;
    margin-bottom: 0px;
  }
}

/* FONTS */

h5 {
  font-size: 20px;
}

/* HEADER */

.cs-header-one {
  background-color: #f3ede0;
  color: #000000;
  font-size: 13px;
  line-height: 14px;
  font-weight: 400;
  text-align: center;
  padding: 10px;
}

.cs-header-two {
  background-color: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-header-two-mobile {
  background-color: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  font-size: 14px;
}

.cs-header-three {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  padding: 12px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid #d9dada;
  border-bottom: 1px solid #d9dada;
}

.cs-header-three-mobile {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  padding: 10px;
}

.cs-header-search-icon {
  color: #000000;
  font-weight: 900;
  margin-right: 30px;
}

ul {
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.cs-nav-items {
  display: flex;
  z-index: 1;
  padding: 10px;
}

.cs-dropdown {
  padding-left: 10px;
  padding-right: 10px;
}

.cs-dropdown-toggle {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.cs-dropdown:hover .cs-dropdown-toggle {
  border-bottom: 3px solid #d52b1c;
}

.cs-dropdown-menu {
  display: none;
  position: absolute;
  margin-top: 2px;
  z-index: 99;
  background-color: #fff;
}

.cs-submenu,
.cs-subsubmenu {
  display: none;
  background-color: #fff;
  position: absolute;
  left: 100%;
  margin-top: -30px;
  width: 100%;
}

.cs-dropdown:hover .cs-dropdown-menu,
.cs-dropdown-item:hover .cs-submenu,
.cs-submenu-item:hover .cs-subsubmenu {
  display: block;
}

.cs-dropdown-item,
.cs-submenu-item,
.cs-subsubmenu-item {
  padding: 13px 26px;
  color: #000;
}

.cs-dropdown-link,
.cs-submenu-link,
.cs-subsubmenu-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.cs-dropdown-item a {
  color: inherit;
  text-decoration: none;
}

.cs-dropdown-link:hover,
.cs-dropdown-item:hover {
  color: #ffffff !important;
  background-color: #000;
}
.cs-submenu-link:hover,
.cs-submenu-item:hover,
.cs-subsubmenu-link:hover {
  color: #ffffff !important;
  background-color: #000;
}

.cs-header-mobile {
  display: none;
}

.cs-header-desktop {
  display: block;
}

@media screen and (max-width: 1040px) {
  .cs-header-mobile {
    display: block;
  }

  .cs-header-desktop {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .cs-header-one {
    font-size: 9px;
  }
}

/* MOBILE NAV */

.cs-modal-overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
  &.light {
    background: #fff;
  }
  .cancel {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: default;
  }
  &:target {
    visibility: visible;
    opacity: 1;
  }
}

.cs-modal-nav {
  padding: 14px;
  position: relative;
  color: #000;
  background-color: #fff;
  .close {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 24px;
    font-weight: 200;
    text-decoration: none;
    color: #000;
    &:hover {
      opacity: 1;
    }
  }
}

.cs-header-mobile-dropdown summary {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 10px 20px 10px 20px;
  border-bottom: 1px solid #000;
}

.cs-header-mobile-dropdown summary::-webkit-details-marker {
  display: none;
}
.cs-header-mobile-dropdown summary::marker {
  content: "";
}
.cs-header-mobile-dropdown summary::after {
  content: "";
}

.cs-header-mobile-dropdown details[open] summary::after {
  content: "";
}

.cs-header-mobile-dropdown details[open] summary {
  background-color: #fff;
}

.cs-header-link-ul {
  padding-top: 20px;
  padding-bottom: 20px;
}

.cs-header-link-ul li {
  padding-left: 20px;
  padding-bottom: 5px;
  padding-top: 5px;
}

.cs-header-link-ul li a {
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 10px;
  text-decoration: none;
}
