header {
  width: 100%;
  background-color: #633C8E;
}
header .header-wrapper {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-wrapper .logo {
  width: 88px;
  min-width: 88px;
  height: 45px;
  display: block;
}
@media screen and (max-width: 992px) {
  header .header-wrapper .logo {
    width: 64px;
    min-width: 64px;
    height: 33px;
  }
}
@media screen and (max-width: 768px) {
  header .header-wrapper .logo {
    width: 53px;
    min-width: 53px;
    height: 27px;
  }
}
@media screen and (max-width: 768px) {
  header .header-wrapper .top-menu-wrapper {
    display: none;
    padding-top: 137px;
  }
}
header .header-wrapper .top-menu-wrapper .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
header .header-wrapper .top-menu-wrapper .menu li {
  position: relative;
  padding: 0 10px;
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  header .header-wrapper .top-menu-wrapper .menu li {
    padding: 0 7px;
  }
}
header .header-wrapper .top-menu-wrapper .menu li.active:after, header .header-wrapper .top-menu-wrapper .menu li.current-menu-item:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -33px;
  left: 0;
  background-color: #66DD99;
}
@media screen and (max-width: 992px) {
  header .header-wrapper .top-menu-wrapper .menu li.active:after, header .header-wrapper .top-menu-wrapper .menu li.current-menu-item:after {
    bottom: -29px;
  }
}
@media screen and (max-width: 768px) {
  header .header-wrapper .top-menu-wrapper .menu li.active:after, header .header-wrapper .top-menu-wrapper .menu li.current-menu-item:after {
    display: none;
  }
}
header .header-wrapper .top-menu-wrapper .menu li.active.current-menu-item-wo-line:after, header .header-wrapper .top-menu-wrapper .menu li.current-menu-item.current-menu-item-wo-line:after {
  display: none;
}
header .header-wrapper .top-menu-wrapper .menu li a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  font-family: "Gotham", sans-serif;
  font-weight: normal;
}
@media screen and (max-width: 992px) {
  header .header-wrapper .top-menu-wrapper .menu li a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
header .header-wrapper .top-menu-wrapper .menu li a:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -33px;
  left: 0;
  background-color: #66DD99;
}
@media screen and (max-width: 992px) {
  header .header-wrapper .top-menu-wrapper .menu li a:hover:after {
    bottom: -29px;
  }
}
@media screen and (max-width: 768px) {
  header .header-wrapper .top-menu-wrapper .menu li a:hover:after {
    display: none;
  }
}
header .header-wrapper .top-menu-wrapper .close {
  display: none;
  width: 22px;
  height: 25px;
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
}
header .header-wrapper .top-menu-wrapper .close:before {
  content: "";
  display: block;
  height: 22px;
  width: 2px;
  position: absolute;
  top: 0;
  right: 10px;
  background-color: #ffffff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .header-wrapper .top-menu-wrapper .close:after {
  content: "";
  display: block;
  height: 22px;
  width: 2px;
  position: absolute;
  top: 0;
  right: 10px;
  background-color: #ffffff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  header .header-wrapper .top-menu-wrapper .close {
    display: block;
  }
}
header .header-wrapper .top-menu-wrapper .mobile-menu-controls {
  justify-content: space-between;
  align-items: center;
  display: none;
  padding: 50px 28px 0 28px;
}
@media screen and (max-width: 768px) {
  header .header-wrapper .top-menu-wrapper .mobile-menu-controls {
    display: flex;
  }
}
header .header-wrapper .top-menu-wrapper .mobile-menu-controls .button {
  display: inline-block;
  background-color: #66DD99;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  color: #333333;
  text-align: center;
  font-weight: normal;
  padding: 8px 17px;
  -webkit-transition: all ease-in-out 0.6s;
  -moz-transition: all ease-in-out 0.6s;
  -ms-transition: all ease-in-out 0.6s;
  -o-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
  font-family: "Gotham", sans-serif;
}
header .header-wrapper .top-menu-wrapper .mobile-menu-controls .button:hover {
  background-color: #39a768;
}
header .header-wrapper .top-menu-wrapper.active {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  background-color: #181433;
  z-index: 1000;
}
header .header-wrapper .top-menu-wrapper.active .menu {
  flex-direction: column;
  padding: 0 28px;
}
header .header-wrapper .top-menu-wrapper.active .menu li {
  margin-bottom: 34px;
}
header .header-wrapper .top-menu-wrapper.active .menu li:last-child {
  margin-bottom: 0;
}
header .header-wrapper .top-menu-wrapper.active .menu li a {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 21px;
}
header .header-wrapper .profile {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .header-wrapper .profile {
    display: none;
  }
  header .header-wrapper .profile.active {
    display: block;
  }
}
header .header-wrapper .profile .login {
  color: #ffffff;
  font-family: "Gotham", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19px;
  display: block;
  margin-left: 12px;
  white-space: nowrap;
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  header .header-wrapper .profile .login {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
header .header-wrapper .profile img {
  width: 25px;
  min-width: 25px;
  height: 25px;
  border-radius: 100%;
}
header .header-wrapper .profile.mobile-profile {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header-wrapper .profile.mobile-profile {
    display: block;
  }
}
header .header-wrapper .profile .profile-dropdown {
  display: none;
  width: 400px;
  position: absolute;
  right: 0;
  top: 130%;
  background-color: #ffffff;
  padding: 33px 40px 16px;
  cursor: initial;
  overflow: auto;
  z-index: 1;
  box-shadow: 0px 5px 35px rgba(0, 0, 0, 0.35);
}
header .header-wrapper .profile .profile-dropdown.active {
  display: block;
}
header .header-wrapper .profile .profile-dropdown .close {
  width: 22px;
  height: 25px;
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
}
header .header-wrapper .profile .profile-dropdown .close:before {
  content: "";
  display: block;
  height: 22px;
  width: 2px;
  position: absolute;
  top: 0;
  right: 10px;
  background-color: #cccccc;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .header-wrapper .profile .profile-dropdown .close:after {
  content: "";
  display: block;
  height: 22px;
  width: 2px;
  position: absolute;
  top: 0;
  right: 10px;
  background-color: #cccccc;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .header-wrapper .profile .profile-dropdown h4 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  font-weight: 500;
  font-family: "Gotham", sans-serif;
  color: #333333;
  margin-bottom: 6px;
}
header .header-wrapper .profile .profile-dropdown p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  font-weight: normal;
  font-family: "Gotham", sans-serif;
  color: #333333;
  margin-bottom: 12px;
}
header .header-wrapper .profile .profile-dropdown .btn {
  display: inline-block;
  background-color: #66DD99;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  color: #333333;
  text-align: center;
  font-weight: normal;
  padding: 8px 17px;
  -webkit-transition: all ease-in-out 0.6s;
  -moz-transition: all ease-in-out 0.6s;
  -ms-transition: all ease-in-out 0.6s;
  -o-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
  font-family: "Gotham", sans-serif;
  padding: 7px 16px;
  margin-bottom: 24px;
  font-family: "Gotham", sans-serif;
  font-weight: 500;
}
header .header-wrapper .profile .profile-dropdown .btn:hover {
  background-color: #39a768;
}
header .header-wrapper .profile .profile-dropdown ul {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
header .header-wrapper .profile .profile-dropdown ul li {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  font-weight: normal;
  font-family: "Gotham", sans-serif;
  color: #333333;
  margin-bottom: 0;
}
header .header-wrapper .profile .profile-dropdown .bordered-btn {
  display: inline-block;
  background-color: #66DD99;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  color: #333333;
  text-align: center;
  font-weight: normal;
  padding: 8px 17px;
  -webkit-transition: all ease-in-out 0.6s;
  -moz-transition: all ease-in-out 0.6s;
  -ms-transition: all ease-in-out 0.6s;
  -o-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
  font-family: "Gotham", sans-serif;
  padding: 7px 16px;
  margin-bottom: 24px;
  background-color: #ffffff;
  font-family: "Gotham", sans-serif;
  border: 1px solid #66DD99;
}
header .header-wrapper .profile .profile-dropdown .bordered-btn:hover {
  background-color: #39a768;
}
header .header-wrapper .profile .profile-dropdown .bordered-btn:hover {
  background-color: #66DD99;
}
@media screen and (max-width: 768px) {
  header .header-wrapper .profile .profile-dropdown {
    position: fixed;
    z-index: 2000;
    right: auto;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
header .header-wrapper .hamburger {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .header-wrapper .hamburger {
    width: 19px;
    display: block;
  }
}
header .header-wrapper .hamburger div {
  width: 100%;
  background-color: #ffffff;
  height: 2px;
  margin-bottom: 4px;
}
header .header-wrapper .hamburger div:last-child {
  margin-bottom: 0;
}

.account-settings-block {
  padding: 32px;
  width: 100%;
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .account-settings-block {
    padding: 50px 15px 15px 15px;
  }
}
.account-settings-block .fancybox-close-small {
  width: 38px;
  height: 38px;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  background-color: rgba(0, 0, 0, 0.3);
  right: 5px;
  top: 5px;
  padding: 4px;
}
.account-settings-block .fancybox-close-small svg {
  color: #ffffff;
}
.account-settings-block h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.account-settings-block h2 span {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 28px;
  font-weight: 500;
  color: #333333;
  font-family: "Libertinus", sans-serif;
}
.account-settings-block h2 .logout {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  font-weight: 500;
  color: #66DD99;
  font-family: "Gotham", sans-serif;
  cursor: pointer;
  text-decoration: none;
}
.account-settings-block form {
  width: 100%;
}
.account-settings-block form .fieldset {
  width: 100%;
  position: relative;
}
.account-settings-block form .fieldset input {
  width: 100%;
  border: 1px solid #E0E0E0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 27px;
  font-family: "Gotham", sans-serif;
  font-weight: normal;
  background-color: #ffffff;
  outline: none;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.account-settings-block form .fieldset input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #BDBDBD;
  opacity: 1;
}
.account-settings-block form .fieldset input::-moz-placeholder {
  /* Firefox 19+ */
  color: #BDBDBD;
  opacity: 1;
}
.account-settings-block form .fieldset input:-ms-input-placeholder {
  /* IE 10+ */
  color: #BDBDBD;
  opacity: 1;
}
.account-settings-block form .fieldset input:-moz-placeholder {
  /* Firefox 18- */
  color: #BDBDBD;
  opacity: 1;
}
.account-settings-block form .fieldset input[type=submit] {
  display: inline-block;
  background-color: #66DD99;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  color: #333333;
  text-align: center;
  font-weight: normal;
  padding: 8px 17px;
  -webkit-transition: all ease-in-out 0.6s;
  -moz-transition: all ease-in-out 0.6s;
  -ms-transition: all ease-in-out 0.6s;
  -o-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
  font-family: "Gotham", sans-serif;
  border: none;
  cursor: pointer;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-weight: 500;
  max-width: 198px;
}
.account-settings-block form .fieldset input[type=submit]:hover {
  background-color: #39a768;
}
@media screen and (max-width: 768px) {
  .account-settings-block form .fieldset input[type=submit] {
    max-width: 168px;
  }
}
.account-settings-block form .fieldset .change {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  font-weight: 500;
  color: #66DD99;
  font-family: "Gotham", sans-serif;
  cursor: pointer;
  text-decoration: none;
}
.account-settings-block form .fieldset select {
  width: 100%;
  border: 1px solid #E0E0E0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 27px;
  font-family: "Gotham", sans-serif;
  font-weight: normal;
  background-color: #ffffff;
  outline: none;
  padding: 12px;
  margin-bottom: 24px;
}
.account-settings-block form .fieldset .error {
  position: absolute;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  font-family: "Gotham", sans-serif;
  font-weight: normal;
  left: 0;
  bottom: 6px;
  color: red;
}
.account-settings-block form .fieldset.double {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.account-settings-block .account-info {
  padding-top: 36px;
}
.account-settings-block .account-info .info-section {
  padding: 10px 0;
  border-top: 2px solid #E0E0E0;
}
.account-settings-block .account-info .info-section .title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 28px;
  font-weight: 500;
  color: #333333;
  font-family: "Libertinus", sans-serif;
}
.account-settings-block .account-info .info-section p {
  color: #828282;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  font-weight: normal;
  font-family: "Gotham", sans-serif;
  margin: 0;
}
.account-settings-block .account-info .info-section .properties {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.account-settings-block .account-info .info-section .properties .name {
  color: #828282;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  font-weight: normal;
  font-family: "Gotham", sans-serif;
  margin: 0;
}
.account-settings-block .account-info .info-section .properties .value {
  color: #333333;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  font-weight: 500;
  font-family: "Gotham", sans-serif;
  margin: 0;
}

/*# sourceMappingURL=header.min.css.map*/