.header {
    /*position:relative;*/
    /*text-align:center;*/
    /*background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);*/
    /*color:white;*/
    position:relative;
    color: #fff;
    background: linear-gradient(60deg, rgba(84,58,183,1), rgba(0,172,193,1), #23a6d5, rgba(84,58,183,1));
    background-size: 400% 400%;
    animation: gradientBG 120s ease infinite;
	background: url(../images/hot.jpg);
}
.logo {
    width:50px;
    fill:white;
    padding-right:15px;
    display:inline-block;
    vertical-align: middle;
}

.inner-header {
    flex-direction: column;
    height:65vh;
    width:100%;
    margin: 0;
    padding: 0;
}

.flex { /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.waves {
    position:relative;
    width: 100%;
    height:15vh;
    margin-bottom:-7px; /*Fix for safari gap*/
    min-height:100px;
    max-height:150px;
}

.content {
    position:relative;
    height:20vh;
    text-align:center;
    background-color: white;
}

/* Animation */

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% {
        transform: translate3d(85px,0,0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height:40px;
        min-height:40px;
    }
    .content {
        height:30vh;
    }
    h1 {
        font-size:24px;
    }
}
/*@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {*/
/*    .masked{*/
/*        display: block;*/
/*        background-image: -webkit-linear-gradient(left, #ffffff, #888888 25%, #ffffff 50%, #888888 75%, #ffffff);*/
/*        -webkit-text-fill-color: transparent;*/
/*        -webkit-background-clip: text;*/
/*        -webkit-background-size: 200% 100%;*/
/*        -webkit-animation: masked-animation 2s infinite linear;*/
/*    }*/
/*}*/
/*@-webkit-keyframes masked-animation {*/
/*    0%  { background-position: 0 0;}*/
/*    100% { background-position: -100% 0;}*/
/*}*/
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.masked {
    margin-top: 220px;
    position: absolute;
    /*top: 0;*/
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 48px;
    color: #fff;
    background: linear-gradient(to right, #fff 0, #4d4d4d 10%, #fff 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 30px;
    text-decoration: none;
    white-space: nowrap;
}
@-moz-keyframes shine {
    0% {
        background-position: 0;
    }
    60% {
        background-position: 280px;
    }
    100% {
        background-position: 280px;
    }
}
@-webkit-keyframes shine {
    0% {
        background-position: 0;
    }
    60% {
        background-position: 280px;
    }
    100% {
        background-position: 280px;
    }
}
@-o-keyframes shine {
    0% {
        background-position: 0;
    }
    60% {
        background-position: 280px;
    }
    100% {
        background-position: 280px;
    }
}
@keyframes shine {
    0% {
        background-position: 0;
    }
    60% {
        background-position: 280px;
    }
    100% {
        background-position: 280px;
    }
}


.btn {
    outline: 0;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*min-width: 260px;*/
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    /*overflow: hidden;*/
    cursor: pointer;
    outline: none;
}
.btn .material-icons {
    font-size: 22px;
    font-style: normal;
    border-radius: 100%;
    -webkit-animation: ripple 0.6s linear infinite;
    animation: ripple 0.6s linear infinite;
    outline: 0;
}

@-webkit-keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
    }
}
:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}
.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}
.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}


.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}
.main-qq:hover{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}


.subscribe {
    position: relative;
    z-index: 1;
}
.subscribe:after {
    background-image: url(../images/background/Path-4.png);
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.subscribe-bg-c {
    background-color: #ffffff52;
    padding: 42px;
    padding-bottom: 0;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
    border-radius: 5px;
}
.subscribe-bg-c .title {
    margin-bottom: 60px;
}
.title .mdi {
    background-color: #362785;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    color: white;
    font-size: 25px;
    border-radius: 50% 50% 0;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 7px 30px rgba(0, 0, 0, .3);
    box-shadow: 0px 7px 30px rgba(0, 0, 0, .3);
}
.title h4{
    font-size: 20px;
    font-weight: 600;
    color: #001737;
    font-family: 'Poppins', sans-serif;
}
button.button {
    border: none;
    cursor: pointer;
}

.form-area {
    position: relative;
    margin-top: 40px;
}
.form-area .button {
    display: inline-block;
    background-color: #42a5f5;
    padding: 8px 30px;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.form-area button.button {
    position: absolute;
    right: 62px;
    top: 0;
    border-radius: 0 5px 5px 0;
    outline: none;
}

.form-area button.button:after {
    border-radius: 0 5px 5px 0;
}

.form-area input[type="tel"] {
    padding: 7px 20px 7px 45px;
    width: 82%;
    border-radius: 5px;
    border: 1px solid #E5E9F2;
    font-size: 15px;
    outline: none;
}
.form-area .button:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    content: "";
    background-color: #001737;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.form-area .button:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

span.form-icon {
    position: relative;
}

span.form-icon i.mdi.mdi-email-outline {
    position: absolute;
    bottom: -8px;
    left: 18px;
    font-size: 18px;
    color: #8392A5;
}

p.circle-text .mdi {
    font-size: 18px;
    display: inline-block;
}

p.circle-text {
    margin-top: 15px;
    font-size: 14px;
}
.gzh-code{box-shadow: 0 5px 30px rgba(0, 0, 0, .1);}
.footer-btn,
.copyright-section {
    text-align: right;
}

.footer-btn h4 {
    margin-bottom: 25px;
}

.footer-btn .boxed-btn {
    text-align: left;
}

.copyright-section li a {
    padding-left: 15px;
    display: block;
    font-weight: 500;
    color: #576477;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.copyright {
    padding-top: 50px;
}

a.footer-logo {
    margin-bottom: 15px;
    display: block;
}

.copyright-section li a:hover {
    color: #C82C29;
}

.sponsor-area{
    color: #8392A5;
    font-size: 20px;
}
.footer-btn h4 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #001737;
    font-family: 'Poppins', sans-serif;
}
.pt-50 {
    padding-top: 50px;
}
.boxed-btn {
    background-color: #001737;
    display: inline-block;
    padding: 10px 15px;
    padding-bottom: 15px;
    border-radius: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 180px;
}

.btn-icon-img {
    width: 15%;
    margin-right: 10px;
}

.btn-content {
    text-align: center;
}

.btn-content h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.btn-content h6 span {
    display: block;
    font-weight: 300;
    font-size: 12px;
    margin-bottom: 8px;
}

.boxed-btn:hover {
    background-color: #C82C29;
    -webkit-box-shadow: 0 10px 30px -14px #C82C29;
    box-shadow: 0 10px 30px -14px #C82C29;
}

.boxed-btn.right-btn {
    margin-left: 15px;
}
.copyright-section, .copyright p{
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.9;
    color: #576477;
}
.copyright-section ul{list-style: none;}
.copyright-section li {display: inline-block;}
.main-logofix{display: none;}
.stricky-fixed .main-logo{display: none}
.stricky-fixed .main-logofix{display: block}
.kfcode{border-radius: 4px;position: fixed;right: 30px;bottom: 110px;z-index: 9999;box-shadow: 0 2px 10px rgba(0,0,0,.5)}
/*.form-area img{box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);}*/