<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*================
 Template Name: Noa - Css3 Creative Hover Button Styles
 Description: Noa - Css3 Creative Hover Button Styles
 Version: 1.0
 Author: https://themeforest.net/user/epic_theme
=======================*/

/*TABLE OF CONTENTS FOR DEMO PURPOSE ONLY*/
/*=====================
01. RESET CSS
02. BASE TYPOGRAPHY
03. PRE DEFINE CLASSES CSS
04. PRELOADER CSS
05. BACK TO TOP CSS
06. DEMO SECTION CSS
=======================*/

/* -----------------------------------------
			   01. RESET CSS
-------------------------------------------- */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    overflow-y: scroll;
    font-size: 15px;
}

/* -----------------------------------------
           02. BASE TYPOGRAPHY
-------------------------------------------- */

body, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, a {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #707070;
    font-weight: 400;
    line-height: 1.85;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    margin: 0 0 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.35;
    color: #111111;
}

h1 {
    margin-top: 0;
    font-size: 2.852em;
}

h2 {
    font-size: 2.125em;
}

h3 {
    font-size: 1.853em;
}

h4 {
    font-size: 1.563em;
}

h5 {
    font-size: 1.126em;
}


/*========================================
        03. PRE DEFINE CLASS CSS
==========================================*/
.ptb-100 {
    padding: 100px 0;
}

.gray-light-bg {
    background: #f7f7f7;
    position: relative;
    z-index: 0;
}

.primary-bg {
    background: #8373e6;
}

.secondary-bg {
    background: #2FF2DF;
}

.color-primary {
    color: #3264f5;
}

.color-secondary {
    color: #7202bb
}

.white-bg {
    background: #ffffff;
}

.badge::before {
  display: none;
}


/*=========================================
            04. PRELOADER CSS
============================================*/

.preloader-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4444;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #8373e6;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.preloader-wrap .preloader-inner {
    width: 70px;
    height: 35px;
    overflow: hidden;
    position: absolute;
    top: calc(50% - 17px);
    left: calc(50% - 35px);
}
.preloader-wrap .preloader-inner #loader {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border-style: solid;
    border-top-color: #fff;
    border-right-color: #fff;
    border-left-color: transparent;
    border-bottom-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: preLoader 3s ease-in-out infinite;
    animation: preLoader 3s ease-in-out infinite;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
}
@keyframes preLoader {
  0% { 
    border-width: 10px; 
  }
  25% { 
    border-width: 3px; 
  }
  50% { 
    border-width: 10px;
      transform: rotate(115deg); 
  }
  75% { 
    border-width: 3px;
  }
  100% { 
    border-width: 10px;
  }
}

/*=========================================
            05. BACK TO TOP CSS
============================================*/

.go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  color: #ffffff;
  background: #8373e6;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
          transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover, .go-top:focus {
  color: #ffffff;
}

.go-top:hover::before, .go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}


/*=========================================
            06. DEMO SECTION CSS
============================================*/

.demo-item {
    border-radius: 5px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 23px 49px 0 rgba(59, 59, 152, 0.15);
    box-shadow: 0 23px 49px 0 rgba(59, 59, 152, 0.15);
}

.demo-item-link {
    padding: 30px;
    display: block;
    font-weight: 600;
    font-size: 1.125rem;
    background: #fff;
    border-radius: 0 0 5px 5px;
    color: #8373e6 !important;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.demo-item-link:hover {
  color: #fff !important;
  background: #8373e6;
}
</pre></body></html>