<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  /*line-height: inherit;*/
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}



@media only screen and (max-width: 768px) {
  a,
  button {
    cursor: default !important;
    border: none; 
    outline: none;
  }
}




.brand {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: inherit;
  color: #000;
  border: none;
  outline: none;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

.header {
  display: block;
  top: 0;
  left: 0;
  width: 100%; float: left;
  height: auto;
  margin: 0 auto;
  z-index: 999;
  border: none;
  outline: none;
background: #fff;
box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 10px 0px;
    position: relative; margin-top: 4px; text-align: center;

 
        
}

.header a{ color: #000 !important }

.menu{ width: 90%; margin: auto  }

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
}

.header-item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66%;
          flex: 0 0 66%;
}

.header-item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-item-right .menu-icon {
  font-size: 1.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-left: 1rem;
  border: none;
  outline: none;
  color: #121212;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .menu &gt; ul &gt; li {
  display: inline-block;
line-height: 2.1rem;
 text-align: left;
padding: 8px 45px 9px 0px;
	/*padding: 5px 25px 8px;*/
}

.header .menu &gt; ul &gt; li &gt; a {
  position: relative;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
 line-height: 2.25;
  border: none;
  outline: none;
  color: #000 !important;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  text-transform: uppercase;
}

.header .menu &gt; ul &gt; li .menu-subs {
  position: absolute;
  width: 100%;
  height: auto;
 top: 51px;
  padding: 1rem 2rem;
  border: none;
  outline: none;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  border-top: 1px solid #e91e63;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header .menu &gt; ul &gt; li .menu-subs &gt; ul &gt; li {
  line-height: 1;
}

.header .menu &gt; ul &gt; li .menu-subs &gt; ul &gt; li &gt; a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #121212;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .menu &gt; ul &gt; li .menu-column-1 {
  min-width: 16rem;
  max-width: 20rem; right: auto; left: auto !important;    border-radius: 0px;  margin-left: 100px; 
}
.header .menu &gt; ul &gt; li .menu-subs.menu-column-2 &gt; .list-item {
 -webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
padding: 0px; 
}

.header .menu &gt; ul &gt; li .menu-column-2 {
  
  max-width: 30rem; right: auto; left: auto !important;   
  display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
max-width: 100%;
width: 40%;
padding: 0px 15px;
box-sizing: border-box; border-radius: 0px; margin-left: 150px;
}


.header .menu &gt; ul &gt; li .menu-subs.menu-mega {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header .menu &gt; ul &gt; li .menu-subs.menu-mega &gt; .list-item &gt; ul &gt; li {
  display: block;
  line-height: 3;
}
.header .menu &gt; ul &gt; li .menu-subs.menu-mega &gt; .list-item &gt; ul &gt; li &gt; a {
  display: inline-block;
  font-family: inherit;
font-size: 14px;
  font-weight: 500;
line-height: 9px;
  padding: 0.5rem 0;
  border: none;
  outline: none;
  color: #121212;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}


.header .menu &gt; ul &gt; li .menu-subs.menu-column-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  padding: 0px 15px; box-sizing: border-box
}

.header .menu &gt; ul &gt; li .menu-subs.menu-column-4 &gt; .list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    padding: 17px;
}

.header .menu &gt; ul &gt; li .menu-subs.menu-column-4 &gt; .list-item .title {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #eb5585 !important;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .menu &gt; ul &gt; li .menu-subs.menu-column-4 &gt; .list-item.text-center .title {
  text-align: left;
}

.header .menu &gt; ul &gt; li .menu-subs.menu-column-4 &gt; .list-item img.responsive {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle; margin-bottom: 10px;
}

.header .menu &gt; ul &gt; li .menu-subs.menu-mega &gt; .list-item &gt; ul &gt; li &gt; a:hover,
.header .menu &gt; ul &gt; li .menu-subs &gt; ul &gt; li &gt; a:hover {
  color: #000;
  
}

.header .boxheight{
   height: 300px !important; max-height: 250px !important; overflow-y: hidden; 
  }
.header .boxheight:hover{
   height: 300px !important; max-height: 250px !important; overflow-y: scroll;
  }

.header-item-right a:hover,
.header .menu &gt; ul &gt; li:hover &gt; a {
  color: #000;  
}

@media only screen and (min-width: 993px) {
  .header .menu &gt; ul &gt; li.menu-item-has-children:hover .menu-subs {
    margin-top: 0px;
    opacity: 1;
    visibility: visible;
  }
}

.menu-mobile-header,
.menu-mobile-trigger {
  display: none;
}

.mobtog{ display: none; }
 .header .menu &gt; ul &gt; li &gt; a i.ion { background: url(/images/arrow-dw1.png) no-repeat; width: 36px; height: 25px;display: inline-block; position: absolute; top: 2px;
    }
    


@media only screen and (max-width: 1024px) {
  .header {
  display: block;
  top: -114px;}
	.menu-mobile-close{  background: url(/images/cross.png) no-repeat;  margin-top: 35px; border-left:none; }
 
  
    
    .header .menu &gt; ul &gt; li &gt; a i.ion { background: url(/images/arrow-dw.png) no-repeat; width: 36px; height: 25px;display: inline-block; position: absolute; top: 5px;
    }
    
    .header .menu-mobile-trigger img{ max-width: 35px;  }
    
	
	.header .menu &gt; ul &gt; li &gt; a i.ion { background: url(/images/arrow-dw.png) no-repeat; width: 19px; height: 25px;display: inline-block; position: absolute; top: 5px; right: -21px; }
	 .menu-mobile-close{  background: url(/images/cross.png) no-repeat;  margin-top: 35px; border-left:none;}
    .ion-ios-arrow-back { background: url(/images/arrow-right.png) no-repeat;}
    .ion-ios-arrow-back{ background: url(/images/arrow-back.png) no-repeat; }
    
  .mobtog{ display: block; cursor: pointer}
  .topnav1{ display: none; }
  .header-item-center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header-item-left, .header-item-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .header .wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .menu-mobile-trigger {
    position: absolute; top: -64px;
left: -1px;
    display: block;
    cursor: pointer;
    border: none;
    outline: none;
    margin-left: 3px;
   background: #c1800b;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
   padding: 5px 10px;
  }
  .header .menu-mobile-trigger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #121212;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header .menu-mobile-trigger span:nth-child(1) {
    top: 0;
  }
  .header .menu-mobile-trigger span:nth-child(2), .header .menu-mobile-trigger span:nth-child(3) {
    top: 0.5rem;
  }
  .header .menu-mobile-trigger span:nth-child(4) {
    top: 1rem;
  }
  .header-item-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 99.8%;
    height: 100%;
    z-index: 1099;
    overflow: hidden;
    background: #ffffff;
    -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
            transform: translate(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .header .menu.active {
    -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
            transform: translate(0%);
  }
  .header .menu &gt; ul &gt; li {
    display: block;
    line-height: 1;
    margin: 0;
	padding: 0px 29px 5px 25px;
  }
	.header .menu &gt; ul &gt; li &gt; a i.ion {
    background: url(/images/arrow-dw1.png) no-repeat;
    width: 19px;
    height: 25px;
    display: inline-block;
    position: absolute;
    top: 16px;
    right: -5px;
}
	
  .header .menu &gt; ul &gt; li &gt; a {
    display: block; color: #000 !important;
    line-height: 3.125rem;
    height: 3.125rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color:#000
  }
  .header .menu &gt; ul &gt; li &gt; a i.ion {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3.125rem;
   top: -19px;
    right: 0;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header .menu .menu-mobile-header {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: 0;
    height: 3.125rem;
    z-index: 501;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
  }
	
	.ion-ios-arrow-back { position: relative; top: 10px; }	
	
  .header .menu .menu-mobile-header .menu-mobile-arrow {
    display: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    color: #121212;
    text-align: center;
  }
	
  .header .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: block;
    /*padding: 10px;*/
    margin-left: 12px;
}
  .header .menu .menu-mobile-header .menu-mobile-title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
  }
  .header .menu .menu-mobile-header .menu-mobile-close {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    border-left: 1px solid #fff ;
    color: #121212;
    text-align: center;
  }
  .header .menu .menu-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .menu &gt; ul &gt; li .menu-subs {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu &gt; ul &gt; li .menu-subs.menu-mega {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
	
  }
	.header .boxheight { height: auto !important; max-height: 100%!important;}
	
  .header .menu &gt; ul &gt; li .menu-subs.active {
    display: block;
  }
  .header .menu &gt; ul &gt; li .menu-subs.menu-column-4 &gt; .list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0rem;
  }
  .header .menu &gt; ul &gt; li .menu-subs.menu-column-4 &gt; .list-item img.responsive {
    margin-top: 0;
  }
  .header .menu &gt; ul &gt; li .menu-subs.menu-column-4 &gt; .list-item.text-center .title {
    margin-bottom: 0px;
  }
  .header .menu &gt; ul &gt; li .menu-subs.menu-column-4 &gt; .list-item.text-center:last-child .title {
    margin-bottom: 0rem;
  }
  .header .menu &gt; ul &gt; li .menu-subs &gt; ul &gt; li &gt; a {
    display: block;
  }
  .header .menu &gt; ul &gt; li .menu-subs.menu-mega &gt; .list-item &gt; ul {
    margin-bottom: 1rem; 
  }
  .header .menu &gt; ul &gt; li .menu-subs.menu-mega &gt; .list-item &gt; ul &gt; li &gt; a {
    display: block;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.55);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
    .header .boxheight {
        height: auto!important;
        max-height: 100%!important;
        overflow-y: hidden;
    }

        .header .boxheight:hover {
            height: auto!important;
            max-height: 100%!important;
            overflow-y: scroll;
        }
}



 @media (max-width:600){ 
	.header .menu .menu-mobile-header .menu-mobile-close { border-left: 1px solid #fff;}
  .header {
  display: block;
  top: -129px;
}
  
.header .menu-mobile-trigger {padding: 5px 8px;}

}

@media only screen and (max-width : 580px) {

.header .menu-mobile-trigger {
  top: -66px;
  left: 0px;
  padding: 5px 8px;
  margin-left: 0px;
}


}

@media only screen and (max-width : 480px) {
.header .menu-mobile-trigger {
  top: -77px;
  left: 0px;
  padding: 5px 5px;
  margin-left: 0px;
}
.header {
  display: block;
 top: -99px;
}
 }
</pre></body></html>