@charset "UTF-8";
/*------------- 
[Table of contents]

[ DEFULT INDEX NUMBER ]

1.  GENERAL CSS
2.  NAVBAR
4.  HOME
5.  SERVICE
6.  ABOUT
7.  TESTIMONIAL
8.  FAQ
9.  QUATE
10. SUBSCRIBE
11. PRICING
12. BLOG
13. FOOTER
14. COPYRIGHT


-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[ Color codes ]

    [ Text and Background Color ]
        Main color 1:       #1c93e5     
        Main color 2:       #009688      
        Main color 3:       #9c27b0
        Main color 4:       #ff4081      
        Background 1:       #FFFFFF            
        Background 2:       #F6F6F6           
        Shadow color:       #000000;            

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Typography]

    [ There are using two different font typography ]
        Typography 1: Roboto font;
        Typography 2: Montserrat font;

    [ Other Typography style are same ]
    Body :
        font-style:     normal;
        font-size:      15px;

    h2:
        font-size: 48px;
        line-height: 55px;

    h3:
        font-size: 30px;
        line-height: 40px;

    h4:
        font-size: 20px;
        font-weight: 600;

    p:  
        font-size: 18px;
        line-height: 30px;


-------------------------------------------------------------------*/
/**
 * -------------------
 *  Defult CSS 
 * -------------------
 */
html {
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #25262b;
  overflow-x: hidden;
}

body {
  font-family: "montserrat", "source-han-sans-traditional", -apple-system, "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", "微軟正黑體", "PingFang SC", "Noto Sans CJK TC", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden !important;
  text-align: left;
  position: relative;
  background: #25262b;
  color: #000000;
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "montserrat", "source-han-sans-traditional", -apple-system, "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", "微軟正黑體", "PingFang SC", "Noto Sans CJK TC", sans-serif;
}

p {
  opacity: 0.9;
}

.nav li a {
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  padding: 0rem;
  background-color: transparent;
  transition: color 0.3s ease;
}
.nav li a:hover {
  background-color: transparent;
}
.nav li a:focus {
  background-color: transparent;
  outline: 0 !important;
}

a {
  text-decoration: none !important;
  cursor: pointer;
  padding: 0rem;
  background-color: transparent;
  transition: color 0.3s ease;
  color: #000000;
  opacity: 0.9;
}
a:hover {
  background-color: transparent;
}
a:focus {
  background-color: transparent;
  outline: 0 !important;
}

.center {
  float: none;
  margin: 0 auto;
  text-align: center;
}

/**
 * ---------------------
 *  Defult Halping Class
 * ---------------------
 */
.overflow {
  overflow: hidden;
}

.relative {
  position: relative;
}

.display-table {
  display: table;
  width: 100%;
  height: 100%;
}

.display-flex {
  display: flex;
  flex: 1;
}

.vertical-middle {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

/**
 * --------------------------------------
 *  Video Section Background Defult Style
 * --------------------------------------
 */
.section-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  z-index: -1;
}
.section-video .bgvid {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
}

.body-video-bg > .section-video {
  position: fixed;
  top: 0;
  left: 0;
}

.section-title {
  text-align: center;
}
.section-title h3 {
  font-size: 1.875rem;
  line-height: 2.5rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 3.75rem;
}

/**
 * ------------------------------------
 *  Every Section Headline Defult Class
 * ------------------------------------
 */
.section-heading {
  display: block;
  margin: 0;
}

.section-header {
  margin-bottom: 6.25rem;
  text-align: center;
}
.section-header .sub-heading {
  font-size: 1.375rem;
  line-height: 1.875rem;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 0 0.625rem 0;
}
.section-header.text-left,
.section-header.text-left * {
  text-align: left;
}
.section-header.text-right,
.section-header.text-right * {
  text-align: right;
}

.section-header-separator {
  position: relative;
  width: 9.0625rem;
  margin: 0.3125rem auto;
  display: inline-block;
}
.section-header-separator .icon {
  font-size: 3rem;
  text-align: center !important;
}
.section-header-separator::before, .section-header-separator::after {
  content: "";
  position: absolute;
  width: 3.5625rem;
  height: 0.125rem;
  top: 1.5625rem;
}
.section-header-separator::before {
  left: 0;
}
.section-header-separator::after {
  right: 0;
}

.v-middle {
  display: -moz-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: row;
}

.mini-separator {
  padding: 1.25rem 0;
}

.vertical-middle {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

/**
 * ------------------
 * list
 * ------------------
 */
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}

/**
 * =================
 * CONTAINER HALF CONTENT
 * =================
 */
.content-half {
  position: relative;
}

.container-half-left {
  left: 0;
  background-position: center right;
}

.container-half-right {
  right: 0;
  background-position: center left;
}

.vertical-middle-content {
  display: -moz-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: row;
}

/**
 * ---------------------------------
 *  Section Background Size Property
 * ---------------------------------
 */
.bg-cover {
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: initial;
  background-repeat: no-repeat;
}

.dark-bg {
  background-color: #202026;
}

.image-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mini-section-separator {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.section-separator {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.home-section-separator {
  padding-top: 6.25rem;
  padding-bottom: 12.5rem;
}

.bg-black {
  background-color: #000000;
}

.main-color {
  color: #37C2CC;
}

.p-200 {
  padding: 0 12.5rem;
}

.img-overlay {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
}

.image-bg {
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
}

.home-2-img {
  background-image: url(../images/home-bg-img.jpg);
}

.featured-img-one {
  background-image: url(../images/home-bg-img.jpg);
}

.featured-img-two {
  background-image: url(../images/extra-feature-bg.jpg);
}

.map-image {
  background-image: url(../images/map-color-overlay.png);
}

.mt-30 {
  margin-top: 1.875rem;
}

button {
  outline: 0;
}
button:hover {
  outline: 0;
}
button:focus {
  outline: 0;
}

.btn {
  outline: 0;
}
.btn:hover {
  outline: 0;
}
.btn:focus {
  outline: 0;
}

.round-image {
  border-radius: 50%;
}

.header-bg {
  background-color: #FFEFE9;
}

.purple-bg {
  background-color: #643BDF;
}

.blue-bg {
  background-color: #007C88;
}

.yellow-color {
  color: #F5DF4D;
}

.main-color {
  color: #37C2CC;
}

.purple-color {
  color: #643BDF;
}

.blue-color {
  color: #007C88;
}

.bg-3 {
  color: #FAF9F7;
}

.bg-4 {
  color: #FAF9F7;
}

.white-bg {
  background-color: #ffffff;
}

.shadow-1 {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

p {
  color: #071634;
}

.contact-shadow {
  box-shadow: 0.125rem 1.75rem 3.375rem 0rem rgba(85, 85, 93, 0.03);
}

.body-2 .btn {
  border-radius: 3.125rem;
}
.body-2 .btn.btn-stroke {
  color: #ffffff;
}

.color-1 {
  color: #37C2CC;
}

.color-2 {
  color: #F35D22;
}

.color-3 {
  color: #FEC468;
}

.color-4 {
  color: #1785C3;
}

.color-5 {
  color: #53CB94;
}

.color-6 {
  color: #761DE2;
}

.overlay-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

section {
  overflow: hidden;
}

a {
  color: #F5DF4D;
}
a:hover {
  color: #ffffff;
}

.h1, .h2, .h3, h1, h2, h3 {
  font-weight: 900;
}

.h4, .h5, .h6, h4, h5, h6 {
  font-weight: 700;
}

span {
  font-size: 1.2rem;
}

p {
  font-size: 1.44rem;
}

h6 {
  font-size: 1.728rem;
}

h5 {
  font-size: 2.0736rem;
}

h4 {
  font-size: 2.48832rem;
}

h3 {
  font-size: 2.985984rem;
}

h2 {
  font-size: 3.5831808rem;
}

h1 {
  font-size: 4.29981696rem;
}

.black-bg {
  background: url("https://one-fix.tw/assets/images/lines.svg") no-repeat scroll center top;
}

.img-fluid {
  aspect-ratio: attr(width)/attr(height);
}

/*
    ==============
       Navigation
    ============== 
*/
.mh-nav {
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s;
}

.mh-header {
  padding: 0;
  transition: 0.3s;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}
.mh-header.nav-strict {
  padding: 0;
  transition: 0.3s;
  z-index: 9999;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to right, #090c08 44%, rgba(9, 12, 8, 0.48));
}
.mh-header.nav-strict .mh-nav {
  padding: 0rem 0rem;
}
.mh-header.nav-strict .navbar-nav li a {
  color: #ffffff;
}
.mh-header .navbar-nav li {
  margin: 1rem 0.5rem;
}
.mh-header .navbar-nav li.active a {
  font-size: 1.125rem;
  font-weight: 500;
}
.mh-header .navbar-nav li.active a::after {
  transform: scaleX(1);
  transform-origin: 0% 100%;
}
.mh-header .navbar-nav li a {
  font-family: "montserrat", "source-han-sans-traditional", -apple-system, "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", "微軟正黑體", "PingFang SC", "Noto Sans CJK TC", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  color: #ffffff;
  padding: 0rem 0.625rem;
}
.mh-header .navbar-nav li a::after {
  content: "";
  display: block;
  border-bottom: solid 0.125rem #F5DF4D;
  transform: scaleX(0);
  height: 0.125rem;
  opacity: 1;
  transform-origin: 100% 0%;
  transition: transform 300ms ease-in-out;
}
.mh-header .navbar-nav li a:hover::after {
  transform: scaleX(1);
  transform-origin: 0% 100%;
}

.dropdown-toggle::after {
  position: relative;
  top: 0.0625rem;
  left: 0.3125rem;
}

/*
    ==============
       home
    ==============
*/
@keyframes pulse-phone {
  0% {
    transform: rotate3d(0, 0, 1, 45deg) scale(1.125);
    opacity: 0.66;
  }
  100% {
    transform: rotate3d(0, 0, 1, 60deg) scale(1);
    opacity: 0.38;
  }
}
@keyframes pulse-pad {
  0% {
    transform: rotate3d(0, 0, 1, 15deg) scale(1.125);
    opacity: 0.66;
  }
  100% {
    transform: rotate3d(0, 0, 1, -15deg) scale(1);
    opacity: 0.38;
  }
}
.onefix-home {
  padding: 8.75rem 0rem;
}
.onefix-home .iphone {
  width: 10rem;
  position: absolute;
  left: -7.5rem;
  top: -5rem;
  z-index: -1;
  animation: pulse-phone 2.5s forwards 0.5s infinite;
  animation-direction: alternate;
}
.onefix-home .ipad {
  width: 20rem;
  position: absolute;
  right: -15rem;
  top: 10rem;
  z-index: -1;
  animation: pulse-pad 2.5s forwards 0s infinite;
  animation-direction: alternate;
}
.onefix-home .onefix-home-inner {
  padding-right: 1.5rem;
}
.onefix-home .onefix-home-inner .span {
  width: 3.4375rem;
  height: 0.4375rem;
  background-color: #F5DF4D;
  display: block;
}
.onefix-home .onefix-home-inner h1 {
  letter-spacing: -0.0938rem;
  color: #ffffff;
  margin-top: 1.5625rem;
  margin-bottom: 1.875rem;
}
.onefix-home .onefix-home-inner p {
  letter-spacing: -0.0469rem;
  line-height: 1.375;
  color: #ffffff;
  opacity: 0.88;
}
.onefix-home .onefix-home-inner p span {
  color: #FA7A35;
}
.onefix-home .onefix-social {
  margin-top: 2.5rem;
}
.onefix-home .onefix-social h6 {
  color: #ffffff;
  margin-bottom: 1.5625rem;
}
.onefix-home .onefix-social ul li {
  display: inline-grid;
  place-items: center;
  width: 2.8125rem;
  height: 2.8125rem;
  border-radius: 0.1875rem;
  border: solid 0.0625rem #4a4a4a;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.25rem;
  margin-right: 0.3125rem;
  font-family: "montserrat", "source-han-sans-traditional", -apple-system, "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", "微軟正黑體", "PingFang SC", "Noto Sans CJK TC", sans-serif;
  color: #ffffff;
}
@media only screen and (max-width: 1200px) {
  .onefix-home .onefix-social ul li {
    margin-bottom: 0.625rem;
  }
}
.onefix-home .onefix-social ul li:hover {
  box-shadow: 0 1rem 0.875rem 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border: solid 0.0625rem transparent;
  color: #ffffff;
}
.onefix-home .onefix-social ul li img {
  width: 100%;
  border-radius: 0.1875rem;
}
.onefix-home .bg-title h2 {
  margin-top: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.125rem;
  color: rgba(255, 255, 255, 0.36);
}
.onefix-home .onefix-main {
  padding: 10.625rem 0rem;
  padding-bottom: 0rem;
}
.onefix-home .onefix-main .main-inner .img-cover img {
  margin-left: 4.6875rem;
  position: relative;
  z-index: 1;
}
.onefix-home .onefix-main .main-inner .bg-img {
  position: absolute;
  top: 6.875rem;
  z-index: 0;
}
.onefix-home .onefix-main .main-inner .circle-bg {
  position: absolute;
  z-index: -2;
  top: -15%;
  left: -20%;
}
.onefix-home .onefix-main .onefix-details {
  padding: 10rem 0rem;
}
.onefix-home .onefix-main .onefix-details p {
  opacity: 0.72;
  font-size: 1rem;
  line-height: 1.88;
  color: #ffffff;
  margin-bottom: 3.125rem;
}
.onefix-home .shape-image {
  position: absolute;
  top: 9%;
  left: -22%;
}

/*
    ==============
       What we do
    ==============
*/
.onefix-do .onefix-do-inner {
  padding-bottom: 3.125rem;
}
.onefix-do .onefix-do-inner p {
  opacity: 0.72;
  font-size: 1rem;
  line-height: 1.88;
  color: #ffffff;
  margin-bottom: 3.4375rem;
  max-width: 85%;
}
.onefix-do .onefix-do-inner .onefix-do-icon h5 {
  margin-top: 1.25rem;
  font-size: 1.5625rem;
  letter-spacing: -0.0394rem;
  color: #ffffff;
}
.onefix-do .main-inner .img-cover img {
  margin-right: 4.6875rem;
  position: relative;
  z-index: 1;
}
.onefix-do .main-inner .bg-img {
  position: absolute;
  top: 0;
  right: -1.875rem;
  z-index: 0;
}
.onefix-do .main-inner .circle-bg {
  position: absolute;
  z-index: -2;
  bottom: -15%;
  right: -20%;
}

/*
    ==============
       Portfolio area
    ==============
*/
.onefix-services {
  padding: 6.25rem 0rem;
}
.onefix-services .onefix-services-inner {
  padding: 5rem 0rem;
  padding-bottom: 0rem;
}
.onefix-services .onefix-services-inner .onefix-img .reveal-image {
  opacity: 0;
  transition: all 1s;
}
.onefix-services .onefix-services-inner .onefix-img h5 {
  font-size: 1.5625rem;
  letter-spacing: -0.0394rem;
  color: #ffffff;
  margin-bottom: 0.625rem;
}
.onefix-services .onefix-services-inner .onefix-img h6 {
  opacity: 0.66;
  font-size: 1.125rem;
  line-height: 1.11;
  letter-spacing: -0.0156rem;
  color: #ffffff;
  margin-bottom: 2.1875rem;
}
.onefix-services .onefix-services-inner .onefix-img .onefix-btn-details {
  transition: all 0.4s;
  position: absolute;
  height: 100%;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(1.875rem);
}
.onefix-services .onefix-services-inner .onefix-img .onefix-btn-details .onefix-btn {
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.onefix-services .onefix-services-inner .onefix-img .onefix-btn-details .onefix-btn .btn-default a.cta::before {
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-right: 0.0625rem solid transparent;
}
.onefix-services .onefix-services-inner .onefix-img .onefix-btn-details .onefix-btn .btn-default a.cta:hover::before {
  border: 0.0625rem solid rgba(255, 73, 82, 0.6);
}
.onefix-services .onefix-services-inner .onefix-img .onefix-image-inner {
  transition: all 0.4s;
  position: absolute;
  height: 100%;
  width: 98%;
  top: 0;
  opacity: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.onefix-services .onefix-services-inner .onefix-img .onefix-image-inner::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0rem;
  bottom: 0;
  right: 0;
  left: 0rem;
  border-radius: 0rem;
  transition: all 0.4s;
  pointer-events: none;
}
.onefix-services .onefix-services-inner .onefix-img .image-one {
  cursor: pointer;
}
.onefix-services .onefix-services-inner .onefix-img .image-one:hover .onefix-image-inner {
  opacity: 1;
}
.onefix-services .onefix-services-inner .onefix-img .image-one:hover .onefix-btn-details {
  opacity: 1;
  transform: translateY(0rem);
}
.onefix-services .onefix-services-inner .onefix-img .image-two {
  cursor: pointer;
}
.onefix-services .onefix-services-inner .onefix-img .image-two:hover .onefix-image-inner {
  opacity: 1;
}
.onefix-services .onefix-services-inner .onefix-img .image-two:hover .onefix-btn-details {
  opacity: 1;
  transform: translateY(0rem);
}
.onefix-services .onefix-services-inner.inner-2 {
  padding: 5rem 0rem;
  padding-top: 0rem;
  padding-bottom: 5rem;
}

.mt_120 {
  margin-top: 7.5rem;
}

/*
    =====================
       RESUME FEEDBACK AREA
    =====================
*/
.onefix-feedback {
  padding: 5rem 0rem;
  padding-top: 0rem;
}
.onefix-feedback .pd_10 {
  margin-bottom: 3.125rem;
}
.onefix-feedback .advice_slider .advice_c {
  width: 33.125rem;
  border-radius: 0.5rem;
  box-shadow: 0 4.125rem 3.625rem 0 rgba(99, 99, 99, 0.1);
  background-color: #373E4B;
  margin-bottom: 6.25rem;
  margin-left: 0.3125rem;
  border: 0rem;
}
.onefix-feedback .advice_slider .advice_c .card-body {
  padding: 2.5rem 2.1875rem 2.5rem 2.1875rem;
}
.onefix-feedback .advice_slider .advice_c .card-body .img {
  margin-bottom: 0.9375rem;
}
.onefix-feedback .advice_slider .advice_c p {
  font-family: "montserrat", "source-han-sans-traditional", -apple-system, "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", "微軟正黑體", "PingFang SC", "Noto Sans CJK TC", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 2.1875rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.onefix-feedback .advice_slider .advice_c h5 {
  font-family: "montserrat", "source-han-sans-traditional", -apple-system, "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", "微軟正黑體", "PingFang SC", "Noto Sans CJK TC", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.0138rem;
  color: #ffffff;
  margin-bottom: 0.375rem;
}
.onefix-feedback .advice_slider .advice_c h6 {
  opacity: 0.66;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.0138rem;
  color: #ffffff;
}
.onefix-feedback .advice_slider .card_icon {
  display: flex;
  margin-bottom: 1.25rem;
}
.onefix-feedback .advice_slider .card_icon .card_icon_img {
  width: 4.25rem;
  height: 4.25rem;
}
.onefix-feedback .advice_slider .card_icon .card-icon-details {
  margin-left: 0.9375rem;
  width: calc(100% - 4.25rem);
}
.onefix-feedback .advice_slider .card_icon .card-icon-details ul {
  text-align: left;
}
.onefix-feedback .advice_slider .card_icon .card-icon-details ul li {
  font-size: 1.25rem;
  padding: 1.1875rem 0rem;
  display: inline-block;
  color: #ffbb00;
}
.onefix-feedback .advice_slider .owl-next {
  width: 3.4375rem;
  height: 3.4375rem;
  position: absolute;
  top: -25%;
  right: 1.875rem;
  border: solid 0.125rem transparent;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  background: transparent;
  color: #ffffff;
  transition: all 0.4s;
}
.onefix-feedback .advice_slider .owl-next:hover {
  background: rgba(0, 0, 0, 0);
  color: #ffffff;
}
.onefix-feedback .advice_slider .owl-prev {
  opacity: 0;
  width: 3.4375rem;
  height: 3.4375rem;
  position: absolute;
  top: -25%;
  right: 5.625rem;
  border: solid 0.125rem transparent;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  background: transparent;
  color: #ffffff;
  transition: all 0.4s;
}
.onefix-feedback .advice_slider .owl-prev:hover {
  background: rgba(0, 0, 0, 0);
  color: #ffffff;
}
.onefix-feedback .advice_slider .op_1 {
  opacity: 1 !important;
}

/*
    =====================
       CONTACT US AREA
    =====================
*/
.onefix-contact {
  padding: 5rem 0rem;
}
.onefix-contact .contact-details {
  padding: 3.75rem 0rem;
}
.onefix-contact .contact-details h2 {
  font-size: 3.75rem;
  letter-spacing: -0.0938rem;
  color: #ffffff;
}
.onefix-contact .contact-details .contact-name {
  padding-top: 2.5rem;
}
.onefix-contact .contact-details .contact-name h5 {
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: -0.0394rem;
  color: #ffffff;
  margin-bottom: 0.9375rem;
}
.onefix-contact .contact-details .contact-name h5 i {
  margin-right: 0.9375rem;
  color: #F5DF4D;
  font-size: 1.25rem;
}
.onefix-contact .contact-details .contact-name p {
  font-family: "montserrat", "source-han-sans-traditional", -apple-system, "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", "微軟正黑體", "PingFang SC", "Noto Sans CJK TC", sans-serif;
  opacity: 0.66;
  font-size: 1.125rem;
  line-height: 1.41;
  letter-spacing: 0.0156rem;
  color: #ffffff;
  margin-bottom: 0rem;
}
.onefix-contact .contact-map {
  padding: 3.75rem 0rem;
}

.onefix-title h5 {
  font-size: 1.25rem;
  line-height: 2.25;
  color: #FA7A35;
  margin-bottom: 0.625rem;
}
.onefix-title h1 {
  font-size: 3.75rem;
  letter-spacing: -0.0938rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.btn-default a {
  text-decoration: none;
  color: inherit;
  font-family: "montserrat", "source-han-sans-traditional", -apple-system, "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", "微軟正黑體", "PingFang SC", "Noto Sans CJK TC", sans-serif;
}
.btn-default a.cta {
  position: relative;
  margin: auto;
  padding: 1.1875rem 1.375rem;
  transition: all 0.2s ease;
}
.btn-default a.cta:hover::before {
  width: 108%;
  background: #FA7A35;
}
.btn-default a.cta:hover svg {
  transform: translateX(0);
}
.btn-default a.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.625rem;
  display: block;
  border-radius: 1.875rem;
  background: rgba(255, 73, 82, 0);
  border: 0.0625rem solid rgba(255, 73, 82, 0.6);
  border-right: 0.0625rem solid transparent;
  width: 3.75rem;
  height: 3.75rem;
  transition: all 0.3s ease;
}
.btn-default a.cta span {
  position: relative;
  font-size: 1.125rem;
  line-height: 0.56;
  font-weight: 900;
  vertical-align: middle;
  color: #ffffff;
}
.btn-default a.cta svg {
  position: relative;
  top: 0.25rem;
  margin-left: 0.625rem;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #ffffff;
  stroke-width: 2;
  transform: translateX(-0.3125rem);
  transition: all 0.3s ease;
}
.btn-default a.cta:active {
  transform: scale(0.96);
}

/*
    ==============
       Slider area
    ==============
*/
.res-slider {
  margin-top: 5rem;
}
.res-slider .slider-inner img {
  padding-right: 1.5rem;
}

/*
    =================
       Footer
    =================
*/
.one-footer {
  background-color: rgba(255, 255, 255, 0.12);
  padding: 1rem;
  color: #ffffff;
  text-align: center;
}

.h1-heading {
  color: #ffffff;
  position: relative;
  margin: 0 auto;
  font-family: "montserrat", "source-han-sans-traditional", -apple-system, "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", "微軟正黑體", "PingFang SC", "Noto Sans CJK TC", sans-serif;
}
.h1-heading::after {
  content: attr(data-text);
  position: absolute;
  left: 0.125rem;
  text-shadow: -0.0625rem 0 #CD212A;
  top: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0);
  overflow: hidden;
  clip: rect(0, 56.25rem, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
}
.h1-heading::before {
  content: attr(data-text);
  position: absolute;
  left: 0.125rem;
  text-shadow: -0.0625rem 0 #F5DF4D;
  top: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0);
  overflow: hidden;
  clip: rect(0, 56.25rem, 0, 0);
  animation: noise-anim-2 3s infinite linear alternate-reverse;
}

@keyframes noise-anim {
  0% {
    clip: rect(31px, 624.9375rem, 5px, 0);
  }
  5% {
    clip: rect(3px, 624.9375rem, 57px, 0);
  }
  10% {
    clip: rect(76px, 624.9375rem, 81px, 0);
  }
  15% {
    clip: rect(19px, 624.9375rem, 72px, 0);
  }
  20% {
    clip: rect(13px, 624.9375rem, 75px, 0);
  }
  25% {
    clip: rect(20px, 624.9375rem, 56px, 0);
  }
  30% {
    clip: rect(30px, 624.9375rem, 37px, 0);
  }
  35% {
    clip: rect(53px, 624.9375rem, 85px, 0);
  }
  40% {
    clip: rect(73px, 624.9375rem, 42px, 0);
  }
  45% {
    clip: rect(47px, 624.9375rem, 25px, 0);
  }
  50% {
    clip: rect(51px, 624.9375rem, 22px, 0);
  }
  55% {
    clip: rect(80px, 624.9375rem, 69px, 0);
  }
  60% {
    clip: rect(27px, 624.9375rem, 76px, 0);
  }
  65% {
    clip: rect(24px, 624.9375rem, 58px, 0);
  }
  70% {
    clip: rect(57px, 624.9375rem, 68px, 0);
  }
  75% {
    clip: rect(55px, 624.9375rem, 72px, 0);
  }
  80% {
    clip: rect(88px, 624.9375rem, 5px, 0);
  }
  85% {
    clip: rect(33px, 624.9375rem, 10px, 0);
  }
  90% {
    clip: rect(6px, 624.9375rem, 57px, 0);
  }
  95% {
    clip: rect(15px, 624.9375rem, 49px, 0);
  }
  100% {
    clip: rect(50px, 624.9375rem, 79px, 0);
  }
}
@keyframes noise-anim-2 {
  0% {
    clip: rect(90px, 624.9375rem, 56px, 0);
  }
  5% {
    clip: rect(67px, 624.9375rem, 94px, 0);
  }
  10% {
    clip: rect(29px, 624.9375rem, 78px, 0);
  }
  15% {
    clip: rect(22px, 624.9375rem, 80px, 0);
  }
  20% {
    clip: rect(14px, 624.9375rem, 84px, 0);
  }
  25% {
    clip: rect(38px, 624.9375rem, 28px, 0);
  }
  30% {
    clip: rect(70px, 624.9375rem, 7px, 0);
  }
  35% {
    clip: rect(62px, 624.9375rem, 67px, 0);
  }
  40% {
    clip: rect(73px, 624.9375rem, 37px, 0);
  }
  45% {
    clip: rect(90px, 624.9375rem, 81px, 0);
  }
  50% {
    clip: rect(72px, 624.9375rem, 85px, 0);
  }
  55% {
    clip: rect(81px, 624.9375rem, 86px, 0);
  }
  60% {
    clip: rect(4px, 624.9375rem, 91px, 0);
  }
  65% {
    clip: rect(39px, 624.9375rem, 22px, 0);
  }
  70% {
    clip: rect(2px, 624.9375rem, 81px, 0);
  }
  75% {
    clip: rect(18px, 624.9375rem, 16px, 0);
  }
  80% {
    clip: rect(47px, 624.9375rem, 29px, 0);
  }
  85% {
    clip: rect(3px, 624.9375rem, 19px, 0);
  }
  90% {
    clip: rect(100px, 624.9375rem, 46px, 0);
  }
  95% {
    clip: rect(69px, 624.9375rem, 40px, 0);
  }
  100% {
    clip: rect(80px, 624.9375rem, 58px, 0);
  }
}
.reveal {
  position: relative;
  width: 98%;
  opacity: 1 !important;
  transition: opacity 1s;
}
.reveal::before {
  content: "";
  background: #07011e;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 0% 0% 0rem;
  animation: reveal 1s 0s ease-in-out forwards;
  z-index: 99;
}
.reveal::after {
  content: "";
  background: #FA7A35;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 0% 0% 0rem;
  animation: reveal 1s 0.5s ease-in-out forwards;
  z-index: 99;
}

@keyframes reveal {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
    transform-origin: 0% 0% 0rem;
  }
  51% {
    transform-origin: 100% 50% 0rem;
  }
  100% {
    transform: scaleX(0);
    transform-origin: 100% 50% 0rem;
  }
}
/*
===========================
        ABOUT US PAGE
===========================
*/
.heading-title {
  color: transparent;
  background-image: url("https://one-fix.tw/assets/images/logo_line.svg");
  background-repeat-y: no-repeat;
  background-size: contain;
  margin-bottom: 3rem;
  margin-top: 3rem;
  opacity: 0.24;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#one_loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.36);
  transition: all 0.25s ease-in-out;
  z-index: 9999;
}

.loader-cnt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.loader {
  --path: #2F3545;
  --dot: $primary;
  --duration: 3s;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-block;
  position: relative;
}
.loader:before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  position: absolute;
  display: block;
  background: var(--dot);
  top: 2.3125rem;
  left: 1.1875rem;
  transform: translate(-1.125rem, -1.125rem);
  animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.loader svg {
  display: block;
  width: 100%;
  height: 100%;
}
.loader svg rect,
.loader svg polygon,
.loader svg circle {
  fill: none;
  stroke: var(--path);
  stroke-width: 0.625rem;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.loader svg polygon {
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
  animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.loader svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.loader svg circle {
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
  animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.loader.triangle {
  width: 3rem;
}
.loader.triangle:before {
  left: 1.3125rem;
  transform: translate(-0.625rem, -1.125rem);
  animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}
@keyframes dotTriangle {
  33% {
    transform: translate(0, 0);
  }
  66% {
    transform: translate(0.625rem, -1.125rem);
  }
  100% {
    transform: translate(-0.625rem, -1.125rem);
  }
}
@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}
@keyframes dotRect {
  25% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(1.125rem, -1.125rem);
  }
  75% {
    transform: translate(0, -2.25rem);
  }
  100% {
    transform: translate(-1.125rem, -1.125rem);
  }
}
@keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}
.go-to-top {
  display: none;
  opacity: 0.66;
  background-color: transparent;
  outline: none;
  border: none;
  transition: 0.25s ease-in-out all;
  z-index: 99;
}
.go-to-top:hover, .go-to-top:focus:hover {
  color: #FA7A35;
  opacity: 1;
}
.go-to-top:focus {
  outline: none;
  opacity: 1;
}

.thruster {
  position: relative;
  z-index: -1;
  animation: 500ms thfadein 0.25s forwards;
}
.thruster.thruster-animation {
  padding-top: 0.875rem;
  margin-bottom: 0.5rem;
}
.thruster .flame-wrapper {
  position: relative;
}
.thruster .flame-wrapper.flame-animation {
  animation: flicker 800ms ease-in infinite;
  display: inline-block;
  vertical-align: inherit;
  width: 100%;
}
.thruster .flame-wrapper.flame-animation .flame_1 {
  width: 1.875rem;
  height: 1.875rem;
  background: #dc3545;
  left: calc(50% - 0.25rem);
}
.thruster .flame-wrapper.flame-animation .flame_2 {
  left: calc(50% - 0.1875rem);
  width: 1.375rem;
  height: 1.375rem;
  background: #ffc107;
}
.thruster .flame-wrapper.flame-animation .flame_3 {
  left: calc(50% - 0.0625rem);
  width: 1rem;
  height: 1rem;
  background: #FA7A35;
}
.thruster .flame-wrapper.flame-animation .flame_4 {
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  background: #F5DF4D;
}
.thruster .flame-wrapper .flame {
  top: -3rem;
  position: absolute;
  border-radius: 50% 50% 50% 0%;
  transform: rotate(-45deg) translateX(-50%);
  width: 0;
  height: 0;
}

.zoomIn {
  animation: rt-zoomIn 3s both;
}

@keyframes rt-zoomIn {
  0% {
    transform: scale(0.5, 0.5);
  }
  40% {
    transform: scale(1, 1);
  }
}
@keyframes thfadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
@keyframes flicker {
  0% {
    transform: rotate(-1deg);
  }
  20% {
    transform: rotate(2deg) scaleY(1.2);
  }
  40% {
    transform: rotate(-1deg);
  }
  60% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg) scaleY(0.9);
  }
  100% {
    transform: rotate(1deg);
  }
}
/*# sourceMappingURL=styles.css.map */
