/* header part */
header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  background-color: transparent;
  min-height: 70px;
  min-width: 320px;
  padding: 20px 63px;
  transition: background 0.4s;
}

header>div>div,
header>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* min-height: 70px; */
  width: 100%;
}

header>div {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent;
}

header .menu {
  display: flex;
}

header ul {
  list-style: none;
  overflow: hidden
}

header .menu.contact {
  order: 3;
  margin-left: auto;
  margin-right: 0;
}

header li a {
  display: flex;
  align-items: center;

  padding: 0px 20px;
  justify-content: center;
  height: 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  transition: color 0.4s;
}

header li a.active, header li a:hover {
  color: #EE4367 !important;
  transition: color .2s !important;
  -webkit-transition: color .2s;
  -moz-transition: color .2s;
}

header .darklogo {
  opacity: 0;
  transition: background 0.4s;
  max-width: 0;
  /* animation: mymove .4ss infinite; */
}

header .logo img {
  width: 178px;
  transition: background 0.4s;
  animation: mymove .4ss infinite;
}
@keyframes mymove {
  0% {opacity: 0;}
  50% {opacity: .5;}
    100% {opacity: 1;}
}
header .menu-btn {
  user-select: none;
  padding: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: none;
  position: relative;
  background: transparent;
  border: 0;
}

header .menu-btn span {
  background: #ffff;
  display: block;
  height: 3px;
  position: absolute;
  top: 50%;
  width: 24px;
  transform: translateY(-50%);
}

header .menu-btn span:after, header .menu-btn span:before {
  background: #ffff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%
}

header .menu-btn span:before {
  top: 6px
}

header .menu-btn span:after {
  top: -6px
}


.hidebtnlg {
  display: none;
}
.hover-purple:hover{
  color: #540C6F !important;
  }
header.white-nav:not(.mobile-menu) {
  background: #fff;
  color: #151515 !important;
}

header.white-nav:not(.mobile-menu) .darklogo {opacity: 1;transition: background 0.4s;max-width: 178px;}

header.white-nav:not(.mobile-menu) .whitelogo {
  opacity: 0;
  max-height: 0;
}

header.white-nav:not(.mobile-menu) .menu-btn span {
  background: #151515;
}

header.white-nav:not(.mobile-menu) .menu-btn span:after, header.white-nav:not(.mobile-menu) .menu-btn span:before {
  background: #151515;
}

header.white-nav:not(.mobile-menu) li a {
  color: #151515;
}

header.white-nav:not(.mobile-menu) .contact .purple-btn {
  color: #fff !important;
}


@media(min-width:1300px){
  header .menu:nth-of-type(2){
    margin-left: 33px !important;
  }
  header .menu.contact li a{
    margin-left: 20px !important;
  }
}

@media(max-width:1300px) {
  header.mobile-menu .menu-btn span {
    background: transparent;
    transition: transform 0.4s;
  }

  header.mobile-menu .menu-btn span:before {
    transform: rotate(-45deg);
    transition: all 0.3s;
  }

  header.mobile-menu .menu-btn span:after {
    transform: rotate(45deg);
    transition: all 0.3s;
  }

  header.mobile-menu span:after,
  header.mobile-menu span:before {
    top: 0
  }

  header .menu.main {
    display: block;
    visibility: hidden;
    height: 0;
    opacity: 0;
    transform: translateX(-200%);
    position: absolute;
    top: 0;
    padding-top: 140px;
  }

  header .menu.contact {
    width: calc(100% - 50px);
    max-width: 400px;
    display: block;
    visibility: hidden;
    height: 0;
    opacity: 0;
    transform: translateX(-200%);
    position: absolute;
    bottom: 20px;
    /* padding-top: 140px; */
    left: 50%;
    transform: translate(-50%, -200%);
  }

  header.mobile-menu {
    max-height: 100vh;
    transition: max-height 0.4s;
    animation: headerOpen 0.4s 1 forwards;
  }

  header.mobile-menu .menu.contact {
    animation: buttonup 0.4s 1 forwards;
  }

  @keyframes headerOpen {
    from {
      height: 0;
    }

    to {
      height: 100vh;
    }
  }

  @keyframes buttonup {
    from {
      transform: translate(-50%, 100%);
    }

    to {
      transform: translate(-50%, 0)
    }
  }

  header.mobile-menu::before {
    content: "";
    display: block;
    background: #540C6F;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    transition: all 0.4s;
  }

  header.mobile-menu::after {
    content: "";
    display: block;
    background: #540C6F;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    transition: all 0.4s;
  }

  header.mobile-menu .menu.main {
    visibility: visible !important;
    opacity: 1;
    height: auto;
    padding-top: 140px;
    transform: translateX(0);
    transition: all 0.4s;
    left: 50%;
    transform: translateX(-50%);
  }

  header.mobile-menu .menu.contact {
    height: auto;
    visibility: visible !important;
    opacity: 1;
    transform: translate(-50%, 0);
    transition: all 1s;
  }

  header.mobile-menu .contact li a {
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100% !important;
  }

  header .menu-btn {
    display: block;
  }

  header li a {
    margin-bottom: 20px;
    padding: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    justify-content: center;
  }

  header.mobile-menu .hidebtnsm {
    display: none;
  }

  .hidebtnlg {
    display: flex !important;
  }
  .hover-purple:hover{
    color: #EE4367 !important;
    }
}

@media screen and (max-width:991px) {
  header {
    padding: 10px 20px;
  }

  header .logo img {
    width: 165px;
  }
}

@media screen and (max-width:767px) {
  header {
    padding: 10px 16px;
  }

  header .logo {
    width: 185px !important;
    height: 47px !important;
  }

  header.mobile-menu .menu.main {
    padding-top: 100px;
  }

  header>div>div:before {
    height: 60px;
  }

  header #menu-btn:checked~.menu.main {
    padding-top: 70px;
  }
}

@media(max-width:567px) {}
