@charset "UTF-8";

/* Menu */

.header {
  position: relative;
  width: 100%;
  transition: 0.3s all;
  z-index: 10;
  background: transparent;
  height: var(--menu-height);
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid #f0f0f0;
}
.header.sticky{
  background: #fff !important;
}
.header.sticky .header-menu > .menu-list > li > a {
  color: var(--primary-color);
}
.header.sticky .header-menu > .menu-list > li > a:hover {

  color: var(--primary-color);
}
.header .header-logo-link img{
  
}
.header.sticky .header-logo-link img{
 
}




.admin-bar .header.sticky{
  top: 32px;
}

.header>.container{

}


.header-ctn.d-flex{
  align-items: center;
  height: 100%;
}

.header-logo-link{
  display: flex;
  width: fit-content;
  height: 100%;
}

.header-mid.d-flex{
  margin-right: auto;
}

.header-ctn.d-grid{
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
  height: 100%;
}

.header-menu>.menu-list>li{
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

.header-menu>.menu-list>li:not(:first-child) {
  margin-left: 75px;
}

.header-menu .menu-item {
  transition: .3s ease-in-out;
}

.header-menu .menu-item>a {
  color: var(--primary-color);
  display: block;
  white-space: nowrap;
  font-size: 1.8rem;
  font-weight: 600;
}

.header-menu>.menu-list>li>a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 5px;
}
.header-menu>.menu-list>li>a:hover::after,
.header-menu>.menu-list>li>a:hover::before {
  width: 100%;
}

.current-menu-item a::before,
.current_page_item > a::before {
  width: 100% !important;
}
.header-menu>.menu-list>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  border-radius: 50%;
  transition:  width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

.header-menu>.menu-list>li>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  border-radius: 50%;
  transition:  width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

.header-menu .menu-item .menu-dropdown{
  display: flex;
  align-items: center;
  margin-left: 10px;
  transition: all .3s;
  margin-top: 2px;
}

.header-menu>.menu-list>li svg {
  width: 1.6rem;
  height: 1.6rem;
}

.header-menu>.menu-list>li svg  path {
  fill: var(--primary-color);
}

.header-menu .menu-item:hover .menu-dropdown{
  transform: rotate(180deg);
}

.header-menu .menu-item:hover .menu-dropdown svg path,.header-menu .menu-item.current-menu-item .menu-dropdown svg path,.header-menu .menu-item.current-menu-parent .menu-dropdown svg path{
  fill: var(--primary-color);
}

.header-menu .menu-item>ul.sub-menu {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 26rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  background-color: var(--primary-color);
  border-top: none;
  border-radius: var(--radius);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 5px);
}

.header-menu .menu-item>ul.sub-menu>li {
  padding: 1.5rem 2rem;
}

.header-menu .menu-item>ul.sub-menu>li:hover {
  background: #AA3073  ;
}

.header-menu>.menu-list>li>ul.sub-menu {
  top: calc(100%);
  width: 100%;
  display: flex;
  justify-content: center;
}

.header-menu .menu-item:hover>ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.header-menu .menu-item:last-child>ul.sub-menu{
  left: unset;
  right: 0;
}

.header-menu .menu-item:last-child>ul.sub-menu::after{
  left: unset;
  right: 15px;
}

.header-menu .menu-item>ul.sub-menu>li{

}

.header-menu .menu-item>ul.sub-menu>li>a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.header-menu .menu-item>ul.sub-menu>li>ul.sub-menu{
  left: calc(100% + 20px);
  top: -15px;
  border-left: 5px solid #fff;
}

/* Header CTA */

.header-right{
  margin-left: auto;
  align-items: center;
}

/* Header Search */

.header-search .iconSearch{
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  transition: .3s;
  border-radius: 8px;
}

.header-search .iconSearch svg path{
  stroke: var(--primary-color);
}

.header-search .iconSearch:hover,.header-search .iconSearch.active{
  background-color: #f8f0ff;
}

.header-cta.d-flex {
  gap: 2rem;
}

.header-search {
  position: relative;
}

.header-search-box {
  position: absolute;
  top: var(--menu-height);
  transform: translateY(10px);
  right:  0;
  width: 100%;
  z-index: 200;
  color: #8b8b8b;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: .3s linear;
}

.admin-bar .header-search-box{
  top: calc( var(--menu-height) - 20px );
}

.header-search-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  width: 0;
  padding: 0;
}

.hd-search-box-wr{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: end;
  -webkit-justify-content: end;
}

.hd-search-box-wr .search-form{
  pointer-events: auto;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.hd-search-box-wr .search-input{
  position: relative;
}

.hd-search-box-wr .search-submit{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  padding: 0;
  border: none;
  background: transparent;
}

.hd-search-box-wr .search-field{
  padding: 12px 0;
  border-radius: 0;
  border: none;
  width: 100%;
  -webkit-appearance: none; 
    -moz-appearance: none;  
    appearance: none;  
}

.hd-search-box-wr .search-input {
  position: relative;
  border-radius: 30px;
  width: 35rem;
  padding: 0 2rem;
  height: 50px;
  line-height: 50px;
}

/* Mobile menu */

.mobile-toggle{
  display: none;
  cursor: pointer;
  margin-left: 20px;
}

.mobile-toggle.active .line {
  background: var(--primary-color);
} 

.mobile-toggle .line {
  width: 32px;
  height: 2px;
  border-radius: 4px;
  background-color: #222;
  display: block;
  margin: 7px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
}

.mobile-toggle .line:first-child{
  margin-top: 0;
}

.mobile-toggle .line:last-child{
  margin-bottom: 0;
}

.mobile-toggle.active .line:nth-child(1) {
  width: 22px;
  margin-left: auto;
}

.mobile-toggle.active .line:nth-child(2) {
  margin-left: auto;
}

.mobile-toggle.active .line:nth-child(3) {
  width: 28px;
  margin-left: auto;
}

.mobile-nav {
  position: fixed;
  z-index: 140;
  top: var(--menu-height);
  left: 0;
  bottom: 0;
  min-width: 50rem;
  width: 50rem;
  background-color: white;
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.05);
  transition: 0.4s linear;
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -ms-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
  transform: translateX(-110%);
}

.admin-bar .mobile-nav{
  top: calc(32px + var(--menu-height));
}

.mobile-nav.show{
  transform: translateX(0);
}

.mobile-nav-ctn {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-wr {
  padding-bottom: 6rem;
  position: relative;
  margin-top: 3rem;
}

.mobile-menu>.menu-list .menu-item>a {
  padding: 12px 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #303030;
  font-size: 1.6rem;
  font-weight: 600;
}

.mobile-menu>.menu-list>.menu-item>a{
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

}

.mobile-menu .menu-item>ul.sub-menu {
  display: none;
  margin-left: 1.6rem;
  position: relative;
}

.mobile-menu .menu-item>ul.sub-menu::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 1px;
  background-color: var(--primary-color);
}

.mobile-menu .menu-item:hover>a,.mobile-menu .menu-item.current-menu-item>a,.mobile-menu .menu-item.current-menu-parent>a{
  color: var(--primary-color);
}

.mobile-menu .menu-item:hover > a .menu-dropdown svg path, .mobile-menu .menu-item.current-menu-item > a .menu-dropdown svg path, .mobile-menu .menu-item.current-menu-parent > a .menu-dropdown svg path{
  fill: var(--primary-color);
}

.mobile-menu .menu-item.active > a .menu-dropdown{
  transform: rotate(180deg);
}

.mobile-menu .menu-item.active > a .menu-dropdown svg path{
  fill: var(--primary-color);
}

.mobile-menu .menu-item .menu-dropdown {
  width: 20px;
  height: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.mobile-mask{
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-110%);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  top: var(--menu-height);
}

.admin-bar .mobile-mask{
  top: calc(32px + var(--menu-height));
}

.mobile-mask.show{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile social */

.mobile-social{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}


/* Social list */

.social-list{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-list svg {
  width: 15px;
}

.social-link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
  cursor: pointer;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid #fff;
  border-radius: 50%;
}

a.social-link:hover {
  background:#B00664 ;
}

/* Responsive */

@media (min-width: 1537px) and (max-width:1770px){
  .header .header-logo-link img {
    width: 65%;
}
}

@media (min-width: 1536px) {
  .mobile-menu>.menu-list .menu-item>a{
    font-size: 1.6rem;
  }
}

@media (min-width: 1441px) and (max-width: 1536px) {
  .header-menu>.menu-list>li:not(:first-child) {
    margin-left: 4rem;
}

.header-menu>.menu-list>li svg {
  width: 1.4rem;
  height: 1.4rem;
}

.header-menu .menu-item>a {
  font-size: 1.6rem;
}

}

@media (min-width: 1200px) and (max-width: 1440px){
  .header-menu>.menu-list>li>a {
    font-size: 1.4rem;
  }

  .header-menu>.menu-list>li:not(:first-child) {
    margin-left: 3.5rem;
}

.header .header-logo-link img {
  width: 55%;
}

.header-menu>.menu-list>li svg {
  width: 1.2rem;
  height: 1.2rem;
}

.header-menu .menu-item>a {
  font-size: 1.4rem;
}

}

@media (min-width: 1025px) and (max-width: 1199px) {
  .header-ctn.d-grid {
    display: flex;

}

.header .header-logo-link img {
  width: 22% !important;
}
.header-menu>.menu-list>li>a::before,
.header-menu>.menu-list>li>a::after  {
  height: 2px;
}
}

@media (min-width: 1025px) and (max-width: 1280px) {

  .header-menu>.menu-list>li>a {
    font-size: 1.4rem;
  }

  .header-menu .menu-item>a {
    font-size: 1.4rem;
  }
  .header-menu>.menu-list>li svg {
    width: 1.2rem;
    height: 1.2rem;
}

.hd-search-box-wr .search-input {
  height: 45px;
  line-height: 45px;
}

.admin-bar .header-search-box {
  top: calc(var(--menu-height) - 10px);
}

.header-menu>.menu-list>li>a::before,
.header-menu>.menu-list>li>a::after  {
  height: 2px;
}



  .header-menu>.menu-list>li:not(:first-child) {
    margin-left: 4rem;
}

.header .header-logo-link img {
  width: 46%;
}
}

@media screen and (max-width: 1199px){
  .header-mid.d-flex {
    display: none !important;
  }
  .mobile-toggle{
    display: block;
  }
}

@media (max-width: 767px) and (min-width: 577px) {
  .mobile-menu>.menu-list .menu-item>a{
    font-size: 1.6rem;
  }

  .header-ctn.d-grid {
    display: flex;
  }

.header-logo {
  width: 20%;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
  .mobile-menu>.menu-list .menu-item>a{
    font-size: 1.6rem;
  }

  .header-ctn.d-grid {
    display: flex;
  }

.header-logo {
  width: 20%;
}
}

@media (max-width: 576px) {
  .mobile-nav{
    min-width: 100%;
    width: 100%;
  }

  .header-logo {
    width: 40%;
}

  .hd-search-box-wr .search-form, .hd-search-box-wr .search-field{
    width: 100%;
  }

  .social-link > img{
    width: 24px;
    height: 24px;
  }

  .header-ctn.d-grid {
    display: flex;
  }

  .header .header-logo-link img {
    width: 90%;
}

.btn-style-2 span {
  display: none;
}
}