/* ==========================================================================
   Author's custom styles
   ========================================================================== */

@font-face {
    font-family: 'HONORSans-Regular';
    src: url(../fonts/HONORSans-Regular.eot);
    src: url(../fonts/HONORSans-Regular.eot?#iefix) format('embedded-opentype'),
    url(../fonts/HONORSans-Regular.otf) format('otf'),
    url(../fonts/HONORSans-Regular.ttf) format('truetype'),
    url(../fonts/HONORSans-Regular.woff) format('woff'),
    url(../fonts/HONORSans-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'HONORSans-Demibold';
    src: url(../fonts/HONORSans-Demibold.eot);
    src: url(../fonts/HONORSans-Demibold.eot?#iefix) format('embedded-opentype'),
    url(../fonts/HONORSans-Demibold.otf) format('otf'),
    url(../fonts/HONORSans-Demibold.ttf) format('truetype'),
    url(../fonts/HONORSans-Demibold.woff) format('woff'),
    url(../fonts/HONORSans-Demibold.woff2) format('woff2');
}


::-webkit-scrollbar-button {
    width: 3px;
    height: 0
}

::-webkit-scrollbar-track {
    background-color: #32312e;
    box-shadow: 0 0 3px #fff inset;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #DA7703;
    box-shadow: 0 1px 1px #fff inset;
}

::-webkit-resizer {
    width: 3px;
    height: 0
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px
}

.z-index-9 {
    z-index: 9;
}

img {
    width: 100%;
    max-width: 100%;
    transition: all 500ms ease;
}

.bounce {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}

html {
    font-size: 20px;
    text-wrap: pretty;
    scroll-behavior: smooth;
}

body {
    font-family: 'HONORSans-Regular', sans-serif;
    line-height: 1.5;
    font-weight: normal;
    color: #000000;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.text-bold {
    font-family: 'HONORSans-Demibold', sans-serif;
}

.text-left {
    text-align: left;
}

main {
    overflow: hidden;
}

header, .footer-bottom {
    padding: 24px 0;
    background: #FF7D00;
}

footer {
    color: grey;
}

.footer-text-bottom {
    font-size: .8rem;
    line-height: 1.2;
}

.footer-text-bottom a {
    color: gray;
}

.footer-top {
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
}

.footer-logo-wrap img {
    max-width: 335px;
}

.logo {
    max-width: 285px;
}

h1 {
    font-family: 'HONORSans-Demibold', sans-serif;
    font-size: 1.7rem;
    line-height: 1.4;
    margin: 0 0 20px;
}

h1 span {
    font-family: 'HONORSans-Regular', sans-serif;
}

h2 {
    font-family: 'HONORSans-Demibold', sans-serif;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0;
}

h3 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

h4 {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.text-right {
    text-align: right;
}

.index-9 {
    z-index: 9;
}

.button {
    position: relative;
    z-index: 99;
    min-width: 222px;
    font-size: .7rem;
    text-align: center;
    color: #000000;
    border: 2px solid #000000;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    background: none;
    box-shadow: none;
    transition: all 400ms ease;
}

.button > svg {
    fill: #000000;
}

.button:hover {
    background: #000000;
    color: #ffffff;
}

.button:hover > svg {
    fill: #ffffff;
}

.button-buy {
    min-width: 200px;
    font-size: 1rem;
    text-align: center;
    color: #000000;
    border: 2px solid #000000;
    padding: 8px 32px;
    border-radius: 30px;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    transition: all 400ms ease;
}

.button-buy:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.button-description {
    font-size: .7rem;
}

.degree {
    position: relative;
}

.degree > span {
    position: absolute;
    top: 0;
    left: 100%;
    font-size: .6rem;
}

h2 > .degree > span {
    font-size: 1rem;
}

.list-item {
    font-size: .6rem; 
}

.preview {
    min-height: 700px;
}

.preview-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 700px;
    transform: translateX(-15%) translateY(-50%);
}

.preview-bg img {
    object-fit: cover;
}

.preview h3 {
    font-size: 1rem;
}

.product-prompts {
    font-size: .4rem;
    line-height: 1.2;
    color: #8e8e8e;
}

.magic-os {
    margin: -150px 0 60px;
}

.product-configuration {
    position: relative;
    font-size: .8rem;
    padding: 0 20px;
}

.product-configuration:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 80%;
    background: #000000;
    transform: translateY(-50%);
}

.product-configuration:last-of-type:before {
    display: none;
}

.product {
    padding: 80px 0 40px;
}

.action-image {
    flex: 0 0 140px;
    width: 140px;
}

.action-image .present {
    position: absolute;
    width: 50px;
    right: 0;
    top: 0;
    transform: translate(0, -50%);
}

.action-title {
    flex: 0 0 250px;
    width: 250px;
    font-size: .8rem;
}

.action-present {
    max-width: 120px;
}

.reasons > div img {
    object-fit: cover;
}

.reason {
    position: relative;
}

.reason .degree > span {
    font-size: .5rem;
}

.reason > .title {
    position: absolute;
    top: 15px;
    font-size: .7rem;
    text-align: center;
    padding: 0 20px;
}

.reason1 {
    flex: 0 0 calc(55% - .5rem);
    width: calc(55% - .5rem);
}

.reason2 {
    flex: 0 0 calc(45% - .5rem);
    width: calc(45% - .5rem);
}

.reason3 {
    flex: 0 0 calc(36.5% - .5rem);
    width: calc(36.5% - .5rem);
}

.reason4 {
    flex: 0 0 calc(63% - .5rem);
    width: calc(63% - .5rem);
}

.reason6 {
    flex: 0 0 calc(48% - .5rem);
    width: calc(48% - .5rem);
}

.reason7 {
    flex: 0 0 calc(53% - .5rem);
    width: calc(53% - .5rem);
}

.display-img {
    max-width: 1400px;
}

.display-info--title {
    font-size: 1.1rem;
    line-height: 1;
}

.display-info--title > .degree > span {
    font-size: .8rem;
}

.display-info--value {
    position: relative;
    font-size: 2.2rem;
    line-height: 1;
    background: linear-gradient(to right, #61905F 0%, #37504F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.display-info--value > .degree, .display-info--value > .degree > span {
    background: linear-gradient(to right, #61905F 0%, #37504F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.display-info--value > .degree > span {
    font-size: 1rem;
}

.display-info--description {
    flex: 0 0 calc(20% - .5rem);
    width: calc(20% - .5rem);
    font-size: .6rem;
    text-align: center;
}

.colors .display-info--value {
    background: linear-gradient(to right, #8FF2FF 0%, #2567FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.colors .display-info--value > .degree, .colors .display-info--value > .degree > span {
    background: linear-gradient(to right, #8FF2FF 0%, #2567FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-colors {
    right: 0;
    bottom: 0;
    max-width: 1000px;
    transform: translateX(20%) translateY(10%);
}

.energy {
    min-height: 700px;
    background: url("../img/energy.png")no-repeat center / cover;
}

.energy-box {
    max-width: 580px;
    padding: 40px 32px 42px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.8);
}

.energy-info {
    flex: 0 0 calc(50% - 1rem);
}

.energy .display-info--title {
    font-size: .8rem;
    margin-top: 4px;
}

.energy .display-info--value {
    font-size: 1.7rem;
    background: linear-gradient(to right, #61905F 0%, #37504F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.energy .display-info--value > .degree, .energy .display-info--value > .degree > span {
    background: linear-gradient(to right, #61905F 0%, #37504F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.energy .display-info--value > .degree > span {
    font-size: .8rem;
}

.sound {
    position: relative;
    padding: 140px 0;
}

.sound:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../img/sound.png")no-repeat center / cover;
}

.sound h4 {
    font-size: .8rem;
    padding-right: 60px;
}

.audio-icons {
    width: 189px;
    margin-top: 100px;
}

.frame {
    padding: 100px 0;
    background: url("../img/frame.jpg")no-repeat center / cover;
}

.frame h2 {
    margin-top: 200px;
}

.frame h4 {
    font-size: .8rem;
}

.frame .display-info--value {
    font-size: 1.7rem;
    line-height: 1;
    background: linear-gradient(to right, #02A383 0%, #B4E9D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.snapdragon h4 {
    font-size: .8rem;
}

.snapdragon .display-info--value {
    font-size: 1.5rem;
    line-height: .8;
    background: linear-gradient(to right, #8FF2FF 0%, #2567FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.snapdragon .display-info--title {
    flex: 0 0 150px;
    width: 150px;
    font-size: 1.3rem;
}

.turbo-box--title {
    top: 55%;
    left: 50%;
    max-width: 600px;
    transform: translateX(-50%);
}

.turbo-box--title h4 {
    font-size: .8rem;
    color: #ffffff;
}

.magic-box {
    padding: 60px 0 120px;
}

.magic-box h4 {
    font-size: .8rem;
}

.magic-box--img {
    max-width: 300px;
}

.os .container {
    border-radius: 25px;
    background: #F4F7FC;
}

.os h4 {
    font-size: .8rem;
}

.os-image {
    max-width: 500px;
}

@media screen and (max-width: 1650px)  {
    .magic {
        background-size: 1650px;
        min-height: 1000px;
        padding-bottom: 200px !important; 
    }
}


@media screen and (min-width: 1400px)  {
    .turbo-box--title {
        max-width: 500px;
    }

}


@media screen and (max-width: 1366px)  {
    .preview {
        min-height: 550px;
    }
    .product-colors {
        max-width: 800px;
        transform: translateX(20%) translateY(0%);
    }
    .turbo-box--title {
        max-width: 400px;
    }
}

@media screen and (max-width: 1200px)  {
    .preview-bg {
        width: 600px;
        transform: translateX(0%) translateY(-50%);
    }
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: .8rem;
    }

    h2 > .degree > span {
        font-size: .8rem;
    }

    .product {
        padding: 50px 0 20px;
    }

    .preview-bg {
        width: 500px;
        transform: translateX(0%) translateY(-50%);
    }

    .action {
        flex-wrap: wrap;
        justify-content: center;
    }
    .display-info--description {
        flex: 0 0 calc(35% - .5rem);
        width: calc(35% - .5rem);
    }
    .product-colors {
        max-width: 600px;
        transform: translateX(0%) translateY(-30%);
    }
    .energy .display-info--value {
        font-size: 1.5rem;
    }
    .snapdragon, .magic-box {
        position: relative;
        z-index: 2;
        background: #ffffff;
    }
}

@media screen and (max-width: 992px)  {
    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: .8rem;
    }

    p {
        font-size: .6rem;
    }

    .preview-bg {
        position: relative;
        transform: none;
    }

    .preview .prompt {
        position: relative;
        margin: 24px 0;
    }

    .reason > .title {
        font-size: .6rem;
    }
    .product-colors {
        position: relative!important;
        max-width: 600px;
        transform: none;
    }

    .turbo-box > img {
        transform: scale(1.5);
    }

}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 575px) {

}

@media screen and (max-width: 539px) {
    h1 {
        font-size: 1.4rem;
        text-align: center;
    }

    h2 {
        font-size: 1.2rem;
        text-align: center;
    }

    h3 {
        font-size: .9rem;
        text-align: center;
    }

    h2 > .degree > span, .degree > span {
        font-size: .5rem;
    }

    h4 {
        font-size: .8rem;
    }

} 


@media screen and (max-width: 479px) {
    h1 {
        font-size: 1.2rem;
        text-align: center;
    } 

    h3 {
        font-size: .8rem;
        text-align: center;
    }
    .magic-os {
         margin: 0 0 60px;
    }
    .action {
        margin: 30px 0;
    }
    .action-present {
        max-width: 75px;
    }
    .reason1, .reason2, .reason3, .reason4 {
        flex: 0 0 100%;
        width: 100%;
    }
    .display-info--description {
        flex: 0 0 100%;
        width: 100%;
    }
    .frame {
        padding: 40px 0;
    }
    .frame h2 {
        margin-top: 300px;
    }
    .turbo-box {
        margin-top: 40px;
        overflow: hidden;
    }
    .turbo-box > img {
        transform: scale(1.7);
    }
    .turbo-box--title {
        width: 300px;
    }
    .turbo-box--title h4 {
        font-size: .6rem;
    }
    .magic-box {
        margin-top: 80px;
    }
    .sound:before {
        opacity: .3;
    }

}

@media screen and (max-width: 439px) {
    .product-configuration {
        margin-bottom: 20px;
    }
    .preview-bg {
        width: 100%;
    }
    .energy .display-info--value {
        font-size: 1.2rem;
    }
    .energy .display-info--title {
        font-size: .7rem;
    }
    .turbo-box > img {
        transform: scale(2);
    }
    .snapdragon .display-info--title {
        flex: 0 0 110px;
        width: 110px;
        font-size: 1rem;
    }
    .snapdragon .display-info--value {
        font-size: 1.3rem;
    }

}

@media screen and (max-width: 379px) {
    .energy-info {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 320px) {
    .snapdragon .display-info--value {
        font-size: 1rem;
    }
    .turbo-box > img {
        transform: scale(2.3);
    }
}


