@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@100;200;300;500;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,700;1,800&display=swap');

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #fff;
    color: #757575;
    font-family: 'Poppins',sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}
body.open {
    position: fixed;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,1) inset; /*淡淡的白*/
    transition: background-color 5000s ease-in-out 0s; /*透明*/
}
button {
    background-color: transparent;
}
strong {
    font-weight: bold;
}
.container {
    position: relative;
    margin: 0 auto;
    padding: 0 15px;
    width: 90%;
    max-width: 1400px;
    height: 100%;
}

.row {
    height: 100%;
}
.row::after {
    display: block;
    clear: both;
    content: "";
}
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1{float: left;}
.col-12{width:100%}
.col-11{width:91.66666667%}
.col-10{width:83.33333333%}
.col-9{width:75%}
.col-8{width:66.66666667%}
.col-7{width:58.33333333%}
.col-6{width:50%}
.col-5{width:41.66666667%}
.col-4{width:33.33333333%}
.col-3{width:25%}
.col-2{width:16.66666667%}
.col-1{width:8.33333333%}

.split-2,
.split-3,
.split-4,
.split-5{float: left;}
.split-5 {
    width: calc(100% / 5);
}
.split-4 {
    width: calc(100% / 4);
}
.split-3 {
    width: calc(100% / 3);
}
.split-2 {
    width: calc(100% / 2);
}

.pull-left {
    float: left;
}
.pull-right {
    float: right;
}
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.hollow {
    text-shadow:  0 0 1px #fff,0 0 1px #fff, 0 0 1px #fff;    
    color:#000622;
}

.text-left {
    text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.block {
    float: none;
    margin: 0 auto;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(0,0,0,.15);
    opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(0,0,0,.15);
}
::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(0,0,0,.15);
}

/* --------------
 * header
 ---------------- */
.header {
    padding: 4vh 0;
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 10;
}

.header .dropdown-content a,
.dropdown-content label {
    font-size: 16px;
    padding: 3px 10px;
}
.header .navbar_logo {
    position: absolute;
    left: calc(50% - 40px);
    width: 80px;
}

.header .navbar_logo img {
    width: 100%;
}

.header.scroll-to-fixed {
    padding-top: 0;
    padding-bottom: 5px;
    min-height: 50px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
}

.header.scroll-to-fixed .navbar_logo {
    margin-top: 15px;
    width: 70px;
    left: calc(50% - 35px);
}
.header.scroll-to-fixed .nav-control {
    top: 25px;
}

/* --------------
 * nav
 ---------------- */
.navbar {
    /* float: right; */
    vertical-align: middle;
    /* margin-right: 40px; */
    overflow: hidden;
}
.navbar-left {
    float: left;
    text-align: right;
    padding-right: 10vw;
}
.navbar-right {
    float: right;
    text-align: left;
    padding-left: 10vw;
}
.navbar-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 17px 20px;
    letter-spacing: 2px;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.dropdown {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}
.dropbtn {
    display: inline-block;
    padding: 17px 20px;
}
.navbar-item,
.dropbtn {
    color: #969697;
    cursor: pointer;
}
.navbar a:hover, .dropdown:hover .dropbtn {
   color: #6d93ee;
}

.dropdown-content {
    display: none;
    position: absolute;
    padding: 20px 16px;
    min-width: 200px;
    text-align: left;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
    border: 1px solid #6d93ee;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,.1);
    z-index: 1;
}
  
.dropdown-content a {
    float: none;
    color: #969697;
    padding: 6px 10px;
    display: block;
    -webkit-transition: all linear .3s;
    transition: all linear .3s;
}
  
.dropdown-content a:hover {
    color: #6d93ee;
    transform: translateX(5px);
}
.dropdown-content label {
    padding: 6px 10px;
    color: #6d93ee;
    font-weight: 600;
}  
.dropdown:hover .dropdown-content {
    display: block;
    -webkit-animation: fadeEffect .6s;
    animation: fadeEffect .6s;
}
.dropdown:hover .dropdown-content::before {
    position: absolute;
    top: -10px;
    left: 30px;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 6px 8px;
    border-color: transparent transparent #6d93ee transparent;
}


.nav-control {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 100;
}
.nav-control .show {
    display: block;
}
.menu-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    width: 35px;
    height: 35px;
}
.menu-btn:before {
    content: "";
    position: absolute;
    height: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #6d93ee;
    top: 50%;
    left: 50%;
    right: 50%;
    -webkit-transition: all .3s ease .2s;
    transition: all .3s ease .2s;
}
.menu-btn:after {
    content: "";
    position: absolute;
    height: 2px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #6d93ee;
    top: 50%;
    left: 50%;
    right: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.menu-btn > span {
    position: absolute;
    right: 0;
    width: 20px;
    height: 2px;
    background-color: #6d93ee;
}
.menu-btn > span:nth-child(1) {
    width: 28px;
    top: 5px;
    -webkit-transition: width .3s ease .5s,background .7s ease 1s;
    transition: width .3s ease .5s,background .7s ease 1s;
}
.menu-btn > span:nth-child(2) {
    top: 12px;
    -webkit-transition: width .3s ease .4s,background .7s ease 1s;
    transition: width .3s ease .4s,background .7s ease 1s;
}
.menu-btn > span:nth-child(3) {
  width: 12px;
  top: 19px;
  -webkit-transition: width .3s ease .3s,background .7s ease 1s;
  transition: width .3s ease .3s,background .7s ease 1s;
}
.menu-btn.close-btn {
    z-index: 100;
}
.menu-btn.close-btn:before {
    left: 0;
    right: 0;
    -webkit-transition: all .3s ease .3s;
    transition: all .3s ease .3s;
    width: auto;
    background: #fff;
}
.menu-btn.close-btn:after {
    left: 0;
    right: 0;
    -webkit-transition: all .3s ease .4s;
    transition: all .3s ease .4s;
    background: #fff;
}
.menu-btn.close-btn span {
    background: #6d93ee;
    width: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.menu-btn.scroll span {
    background: #6d93ee;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.open {
    top: 0;
    opacity: 1;
    display: table;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 99;
}
nav {
    display: none;
    position: absolute;
    top: 60px;
    opacity: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: rgba(0,0,0,.8);
    height: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
nav > ul {
    margin-top: 10vh;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1200px;
}
.rwdnav .item {
    display: inline-block;
    padding: 3vh 0;
    width: 100%;
    vertical-align: top;
    border-bottom: 1px solid rgba(255,255,255,.1);
    -webkit-transition: all .2s ease .2s;
        transition: all .2s ease .2s;
}
.rwdnav .item:last-of-type {
    border-bottom: none;
}
.rwdnav .item a {
    display: inline-block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 200;
}
.rwdnav .item > a { 
    padding-left: 13px;
    margin-bottom: 10px;
    font-weight: 600;
}
.rwdnav .sub a {
    border-radius: 30px;
    padding: 2px 15px;
}
.rwdnav .sub a:hover {
    text-decoration: underline;
}

/* --------------
 * footer
 ---------------- */
.footer {
    position: relative;
    padding: 5vh 0;
    color: #717071;
    border-top: 1px solid #c0c1c2;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
.footer-logo {
    text-align: center;
    padding-top: 50px;
}
.footer-logo img {
    display: inline-block;
    width: 80px;
}
.footer-link {
    border-left: 1px solid rgba(255,255,255,.4);
    padding-left: 5%;
}
.footer .link-block {
    float: left;
    margin: 10px 0;
    width: 33.3%;
}
.footer .link-block .category {
    margin-bottom: 10px;
    font-weight: 600;
}
.footer .link-block a{
    color: #717071;
}
.footer .link-block a.link {
    margin-bottom: 5px;
    font-weight: 400;
    display: block;
    -webkit-transition: all .2s ease .2s;
        transition: all .2s ease .2s;
}
.footer .link-block a:hover {
    color: #6d93ee;
}
.footer-logo .copyright {
    color: #a9a9aa;
}

/* font-size */
.menu a {
    font-size: 18px;
}
.footer .link-block .category,
.footer .link-block a.link {
    font-size: 16px;
}
.footer-logo .copyright {
    font-size: 12px;
}

/* contact us form */
.contact .form {
    text-align: left;
}
.contact .form .input-group {
    font-family: 'Montserrat', sans-serif;
    float: left;
    width: 50%;
    padding-right: 6%;
    margin-bottom: 3vh;
}
.contact .form .input-group:focus-within label {
    color: #6d97f2;
}
.contact .form .input-group:focus-within input,
.contact .form .input-group:focus-within textarea {
    border-color: #6d97f2;
}
.contact .form .input-group label {
    color: #7b8286;
}
.contact .form .input-group input, 
.contact .form .input-group textarea {
    display: block;
    margin-top: 5px;
    width: 100%;
    background-color: transparent;
    color:#666;
}
.contact .form .input-group input {
    font-weight: 500;
    line-height: 25px;
    padding: 0 8px;
    border: none;
    border-bottom: 1px solid rgba(103, 108, 112, 0.5);
}
.contact .form .input-group textarea {
    padding: 8px;
    border: 1px solid rgba(103, 108, 112, 0.5);
}
.contact .trends-row > div {
   width: calc(100% / 6);
   padding: 10px;
}
.contact .trends-row .icon {
    padding: 0;
    width: 11vw;
    height: 11vw;
    max-width: 170px;
    max-height: 170px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 10px;
}
.contact .trends-row .icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact .trends-row .icon:hover {
    transform: scale(1.05);
}
.contact .form input, 
.contact .form textarea {
    font-size: 16px;
}
.content-step {
    padding-top: 20px;
    text-align: center;
    letter-spacing: 2px;
}
.progress-bar {
    position: relative;
    margin-top: 20px;
    background-color: rgba(147, 147, 148, .5);
    height: 5px;
}
.progress-bar-avtive {
    background-color: #dc76ff;
    height: 5px;
}
.progress-bar-text,
.progress-bar-back {
    position: absolute;
    top: -15px;
    color: rgba(147, 147, 148, .5);
}
.progress-bar-back {
    left: -40px;
    top: -10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.step-form-back {
    display: inline-block;
    margin-top: 20px;
    width: 35px;
    height: 35px;
    cursor: pointer;
}
.step-form-back svg, 
.progress-bar-back svg {
    fill: #dc76ff;
}
.step-form-back:hover svg ,
.progress-bar-back:hover svg {
    fill: #dfa6f7;
}
.progress-bar-text {
    right: -65px;
}
.step-row {
    margin-top: 10vh;
    display: none;
}
.step-row.step-form {
    margin-top: 4vh;
}
.step-row form {
    width: 83%;
}
.step-row.active {
    display: block;
}
.step-row .step-option {
    position: relative;
    margin: 0 10px;
    opacity: .5;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    border: 1px solid #939394;
    border-radius: 15px;
}
.step-row .step-option:hover {
    opacity: 1;
    border-color: #dc76ff;
}
.step-row .step-option:hover .label {
    color: #dc76ff;
}
.step-row .step-option:hover svg {
    fill: #dc76ff;
}
.step-row .icon {
    padding-top: 20px;
    margin-bottom: 10px;
}
.step-row svg {
    display: inline-block;
    margin-bottom: 5px;
    width: 65px;
    fill: #939394;
}
.step-row .label {
    margin: 0 auto;
    color: #939394;
    padding-bottom: 20px;
    height: 50px;
    line-height: 25px;
}
.step-row .option-inner {
    border: 10px solid #fff;
    width: calc(100% - 40px);
    margin: -5px auto;
}
.step-form {
    padding-bottom: 3vh;
}
.step-form input,
.step-form select,
.step-form textarea {
    width: 90%;
    padding: 10px 7px;
    margin-bottom: 15px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(147, 147, 148, .5);
    color: rgba(147, 147, 148, 1);
}
.step-form textarea {
    max-width: 90%;
    min-width: 90%;
    border: 1px solid rgba(147, 147, 148, .5);
}
.content-step .step-after {
    display: none;
}
.content-step.success .step-after {
    display: block;
}
.content-step.success .step-before {
    display: none;
}
.step-row,
.step-form input,
.step-form select,
.step-form textarea {
    font-size: 18px;
}

/* loading */
.loading-frame {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    background-color: rgba(255,255,255,.9);
} 
.loading {
    margin: 50vh 50%;
    width: 25px;
}
.loading img {
    width: 100%;
    display: block;
}

/* btn */
.btn-start {
    padding: 8px 25px;
    font-size: 18px;
}
.btn-send {
    font-size: 18px;
    line-height: 18px;
}
.btn-send {
    margin-top: 1vh;
    padding: 7px 15px;
    color: #dc76ff;
    border: 1px solid #dc76ff;  
    border-radius: 30px;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}
.btn-send:hover {
    opacity: .6;
}
.btn-send.blue {
    color: #6d93ee;
    border-color: #6d93ee;  
}

/* imagePhoto layer */
.imagePhoto {
    position: relative;
    width: 100%;
    max-width: 1000px;
    display: inline-block;
}
.imagePhoto.imagePhotoFull.mobi {
    display: none;
    text-align: center;
}
.imagePhoto.mobi img {
    display: inline-block;
    max-width: 500px;
}
.imagePhoto.imagePhotoFull {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
}
.imagePhoto img {
    width: 100%;
    display: block;
}
.imagePhoto .layer {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

/* --------------
 * toTop
 ---------------- */
#toTop {
  text-decoration: none;
  position: absolute;
  bottom: 20px;
  right: 1%;
  overflow: hidden;
  width: 55px;
  height: 55px;
  border: none;
  text-indent: -9999px;
  background-image: url(../image/top.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  z-index: 9;
  -webkit-transition: all linear .2s;
  transition: all linear .2s;
}
.backtop {
    position: absolute;
    bottom: 160px;
    right: 1%;
    width: 55px;
    height: 55px;
    background-image: url(../image/top.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    z-index: 9;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.backtop:hover {
    background-image: url(../image/top_h.png);
    bottom: 165px;
}
.backtop::after {
    content: "";
    display: none;
}

#toTop:hover {
  bottom: 25px;
  background-image: url(../image/top_h.png);
  -webkit-transition: all linear .2s;
  transition: all linear .2s;
}

#toTop:active, #toTop:focus {
  outline: none;
}

/* content */
.content {
    position: relative;
    z-index: 1;
    padding: 30px 0 50px 0;
}
.content .container {
    width: 80%;
}
.content .container-mid {
    width: 70%;
}
.content .title {
    margin-top: 3vh;
    margin-bottom: 6vh;
    text-align: center;
    color: #002e3d;  /* #3c487a */
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}
.content .title span {
    display: inline-block;
    position: relative;
}
.content .title.thin {
    font-weight: 200;
} 
.content .title > span {
    display: inline-block;
}
/* font-size */
.content .title {
    font-size: 40px;
    line-height: 45px;
}
body,
p {
    font-size: 20px;
    line-height: 1.5;
}
p > strong {
    font-size: 21px;
}
p.smaller {
    font-size: 17px;
}

.smallTitle {
    font-family: 'Prompt', sans-serif;
    letter-spacing: 2px;
    font-weight: 200;
    margin-bottom: 15px;
}
.smallTitle.italic {
    font-style: italic;
}
.smallTitle {
    font-size: 24px;
}

.subTitle {
    margin-bottom: 20px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: #002e3d;
}
.subTitle.number {
    position: relative;
    display: inline-block;
    margin-left: 45px;
    margin-bottom: 40px;
    font-weight: 800;
    border-bottom: 2px solid #002e3d;
}
.subTitle.number::before {
    content: "";
    position: absolute;
    background-image: url(../image/others/title-bg03.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 130px;
    height: 130px;
    background-size: 100% auto;
    top: -30px;
    left: -45px;
}
.subTitle .thin {
    font-weight: 300;
    display: block;
}
.subTitle .space-left {
    margin-left: -5vw;
}
/* font-size */
.subTitle {
    font-size: 48px;
}
.subTitle.bigger {
    font-size: 55px;
}
.subTitle.smaller {
    font-size: 35px;
    font-weight: 500;
}
.subTitle .thin {
    font-size: 36px;
}

@media (max-width: 1600px) {
    body,
    p,
    p > strong {
        font-size: 18px;
    }
}
@media (max-width: 1367px) {
    .content .container {
        width: 85%;
    }
    p.smaller {
        font-size: 15px;
    }
    .header .navbar a {
        font-size: 17px;
    }
    .step-row,
    .step-form input,
    .step-form select,
    .step-form textarea {
        font-size: 17px;
    }
    /* font-size */x
    .subTitle {
        font-size: 44px;
    }
    .subTitle.smaller {
        font-size: 30px;
    }
    .subTitle .thin {
        font-size: 30px;
    }
}
@media (max-width: 1025px){
    .content .container {
        width: 90%;
    }
    .header .container {
        width: 96%;
    }
    .menu {
        margin-left: 4%;
    }
    .menu > .menu-item {
        margin-left: 20px;
        letter-spacing: 1px;
    }

    /* font-size */
    body,
    p,
    p > strong {
        font-size: 16px;
    }
    .content .title {
        font-size: 32px;
    }
    .smallTitle {
        font-size: 18px;
    }
    .subTitle {
        font-size: 32px;
    }
    .subTitle.smaller {
        font-size: 22px;
    }
    .subTitle .thin {
        font-size: 24px;
    }
}
@media (max-width: 980px){
    .content {
        padding: 25px 0;
    }
    .content .container {
        width: 100%;
        padding: 0 4%;
    }
    .content .title {
        margin-bottom: 15px;
    }

    .step-row form {
        width: 100%;
    }
    
    .subTitle {
        margin-bottom: 10px;
    }

    /* font-size */
    .header .navbar a {
        font-size: 15px;
    }
    .content .title {
        font-size: 26px;
        line-height: 28px;
    }
    p.smaller {
        font-size: 14px;
    }
    .step-row,
    .step-form input,
    .step-form select,
    .step-form textarea {
        font-size: 16px;
    }
    .subTitle {
        font-size: 26px;
    }
    .subTitle .thin {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    .header .container {
        padding: 0;
    }
    .menu {
        display: none;
    }

    .header.scroll-to-fixed .navbar_logo {
        height: 40px;
        margin-top: 8px;
    }
    .header.scroll-to-fixed .nav-control {
        top: 15px;
    }
    
    .footer-logo img {
        width: 55px;
    }
    .footer .link-block .category {
        font-size: 15px;
    }

    
    /* contact */
    .contact .form {
        width: 100%;
    }
    .contact .trends-row > div {
        width: 32%;
    }
    .contact .trends-row .icon {
        width: 20vw;
        height: 20vw;
    }    
    .step-row svg {
        width: 55px;
    }
    .step-row {
        letter-spacing: normal;
    }
    .step-row .option-inner {
        width: calc(100% - 10px);
    }

    /* font-size */
    body,
    p,
    p > strong {
        font-size: 15px;
    }
    .step-row,
    .step-form input,
    .step-form select,
    .step-form textarea {
        font-size: 15px;
    }
    .subtitle {
        font-size: 18px;
    }
}
@media (max-width: 569px){
    .navbar {
        display: none;
    }
    .rwdnav .item {
        width: 100%;
        padding: 0;
    }
    .rwdnav .item > a {
        margin-bottom: 10px;
    }
    .footer .link-block {
        width: 100%;
        margin: 0;
    }
    .footer-logo {
        text-align: center;
        padding-top: 50px;
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 0;
    }
    .footer-logo img {
        display: none;
    }
    .footer-link {
        padding-bottom: 50px;
    }  
    .step-row .option-inner {
        width: 100%;
        margin: 0;
        border: none;
    }
    .step-row .step-option {
        margin: 0 2%;
    }
    .step-row svg {
        width: 35px;
    }
    .btn-start img {
        height: 20px;
    }
    .content {
        padding: 15px 0;
    }
    
    /* font-size */
    body,
    p,
    p > strong {
        font-size: 14px;
    }
    .content .title {
        font-size: 20px;
        line-height: 22px;
        letter-spacing: 1px;
    }
    .contact .form input, 
    .contact .form textarea {
        font-size: 14px;
    }  
    .step-form input, .step-form select,
    .step-form textarea {
        font-size: 14px;
    }
    .btn-start,
    .btn-send {
        font-size: 15px;
    }
    .subTitle {
        font-size: 20px;
    }
    .subTitle .thin {
        font-size: 16px;
    }
}


@media (max-width: 480px) {
    .footer .link-block a.link {
        font-size: 13px;
    }
    .footer .link-block .category {
        font-size: 14px;
    }
    .footer .copyright {
        font-size: 12px;
    }

    /* contact */
    .contact .form .input-group {
        width: 90%;
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    .contact .trends-row > div {
        width: 48%;
    }
    .contact .trends-row .icon {
        width: 100px;
        height: 100px;
    }
    .step-row form {
        width: 100%;
    }

    .split-2, .split-3, .split-4, .split-5 {
        width: 50%;
        margin-bottom: 2%;
    }
} 

@media (max-width: 320px) {
    .footer .link-block a.link {
        font-size: 12px;
    }
    .footer .link-block .category {
        font-size: 13px;
    }
}

/* animate */
@-webkit-keyframes pulse {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0); 
    }
    50% {
      -webkit-transform: translate(0, 10px);
              transform: translate(0, 10px); 
    }
    100% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0); 
    } 
}
  
  @keyframes pulse {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0); 
    }
    50% {
      -webkit-transform: translate(0, 10px);
              transform: translate(0, 10px); 
    }
    100% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0); 
    } 
}
  
/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
  
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@-webkit-keyframes move-right {
    0% {
      left: 0;
    }
    50% {
      left: 100%;
    }
    51% {
      left: -100%;
    }
    100% {
      left: 0;
    }
  }
  
  @keyframes move-right {
    0% {
      left: 0;
    }
    50% {
      left: 100%;
    }
    51% {
      left: -100%;
    }
    100% {
      left: 0;
    }
  }

.anim-pluse-2000 {
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}
