header {
  width: 100%;
  background-color: #fff;
  padding: 16px 0;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header.no-banner {
  box-shadow: 0px 0px 20px rgba(34, 34, 34, 0.5);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-logo {
  position: relative;
  z-index: 10001;
}
header .header-logo .def-logo {
  width: 171px;
}
header .header-logo .scroll-logo {
  display: none;
  width: 178px;
}
header a {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  color: #222;
}
header a:hover {
  text-decoration: none;
  color: #f42862;
}
header .header-menu {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10001;
}
header .header-menu .btns {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 19px;
  border: none;
  margin: 0 40px;
}
header .header-menu .btns:hover {
  background-color: #000;
  color: #fff;
}
header .header-form {
  display: none;
}
header .header-form form {
  width: 520px;
  position: relative;
}
header .header-form form p {
  margin: 0;
}
header .header-form form .wpcf7-not-valid-tip {
  display: none;
}
header .header-form form .wpcf7-response-output {
  border: none;
  padding: 0;
  margin: 0;
  position: absolute;
  font-size: 14px;
  bottom: -5px;
  left: 0;
  transform: translateY(100%);
  color: #fff;
}
header .header-form form input {
  font-size: 16px;
  line-height: 19px;
  width: 100%;
  height: 54px;
  background-color: white;
  border-radius: 50px;
  transition: all 0.4s;
}
header .header-form form input:not([type="button"]) {
  padding: 18px 139px 17px 27px;
  border: 1px solid transparent;
}
header .header-form form input:not([type="button"]):focus {
  border-color: #000;
}
.header-form_controls {
    display: flex;
    align-items: center;
}
.header-form_controls .sign-in {
    border: 2px solid #fff;
    border-radius: 34px;
    color: #fff;
    padding: 15px 20px;
    margin-right: 25px;
    white-space: nowrap;
}
header .header-form form input[type="button"] {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  width: 112px;
  background-color: #000;
  color: #fff;
}
header .header-form form input[type="button"]:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
header .header-form form input[type="button"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
header nav {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: -100%;
  left: 0;
  opacity: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), top 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
header nav.menu-open {
  top: 0;
  opacity: 1;
}
header nav ul {
  margin: 0;
  padding: 0;
}
header nav ul li {
  margin: 20px 0;
  padding: 0;
  text-align: center;
}
header nav ul li:before {
  display: none;
}
header nav ul li a {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}
header.social {
  padding: 30px 0;
}
header.social .header-logo {
  position: relative;
}
header.social .header-logo .def-logo {
  width: 214px;
}
header.sticky {
  box-shadow: 0px 0px 20px rgba(34, 34, 34, 0.5);
}

ul>li {
  position: relative;
}
li {
  list-style: none;
}

@media (max-width: 1200px) {
  header.social .header-logo .def-logo {
    width: 171px;
  }
}
@media (max-width: 992px) {
  header.social {
    padding: 13.5px 0;
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 0 15px;
  }
  header .header-logo .def-logo {
    width: 140px;
  }
  header .header-logo .scroll-logo {
    width: 140px;
  }
  header.social .header-logo .def-logo {
    width: 110px;
  }
}
@media (min-width: 576px) {
  .show-in-mobile {
    display: none!important;
  }
  header.social {
    background-color: transparent;
  }
  header.sticky {
    background-color: #f42862;
    padding: 23px 0;
  }
  header.sticky:before {
    display: none;
  }
  header.sticky .header-logo .def-logo {
    display: none;
  }
  header.sticky .header-logo .scroll-logo {
    display: inline-block;
  }
  header.sticky .header-menu {
    display: none;
  }
  header.sticky .header-form {
    display: block;
  }
  header.social:not(.sticky) .header-logo {
    width: 35%;
    padding-top: 10%;
    position: fixed;
    top: 0;
    left: 0;
  }
  header.social:not(.sticky) .header-logo:before {
    content: " ";
    background: url(../images/header-mask.png);
    position: absolute;
    display: inline-block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 0;
    padding-top: 31.76%;
  }
  header.social:not(.sticky) .header-logo .def-logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  header.social .header-menu {
      display: none;
  }
}

@media (max-width: 576px) {
  .hide-in-mobile {
    display: none!important;
  }
  header {
    padding: 13.5px 0;
  }
  header .header-logo .def-logo {
    width: 85.5px;
  }
  header .header-logo .scroll-logo {
    width: 85.5px;
  }
  header .header-menu .btns {
    padding: 8px 14px;
    font-size: 14px;
    line-height: 17px;
    margin: 0 14.5px 0 0;
  }
  header nav ul li a {
    font-size: 24px;
    line-height: 32px;
  }
  header.social .header-logo .def-logo {
    width: 85.5px;
  }
  header.social {
    padding: 13.5px 0;
  }
}
