@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@300&family=Anton&family=Heebo:wght@300&family=Lobster&family=Open+Sans:wght@500&family=PT+Sans+Narrow&family=Poppins:wght@100;200&family=Quicksand:wght@600&family=Ramabhadra&family=Roboto:wght@100&family=Spline+Sans+Mono:wght@500&family=Wix+Madefor+Text&display=swap');
:root{
    --bg-color: #fff;
    --letter-color: #1c1c1c;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --font-wix: 'Wix Madefor Text', sans-serif;
    --font-superKH: AKbalthom SuperheroKH;
    --font-forte: Forte;
}

*{
    margin: 0;
    padding: 0;
}
body{
    background-color: var(--bg-color);
    font-family: var(--font-wix);
}
/* header bar */
.header{
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    background-color: var(--bg-color);
    box-shadow: 20px 0 20px var(--letter-color);
    z-index: 10;
}

.header .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right: 100px; */
}
.logo img{
    width: 50px;
    height: 50px;
}
.logo span{
    margin-left: 10px;
    color: var(--letter-color);
    font-family: var(--font-wix);
    font-weight: bold;
    font-size: 20px;
}
.menu{
    padding: 0 100px;
}
.menu nav ul li{
    display: inline;
    margin: 0 20px;
    list-style: none;
    overflow: hidden;
}
.menu nav ul li a{
    text-decoration: none;
    font-family: var(--font-wix);
    font-weight: bold;
    color: var(--letter-color);
    transition: 0.5s;
}
.menu nav ul li a:hover{
    color: var(--danger);
}
.menu nav ul li a i{
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: var(-mr);
    background: var(--danger);
    opacity: 0;
    transition: 0.5s;
}
.menu nav ul a:hover i{
    margin-top: 40px;
    opacity: 1;
}
.media{
    display: inline-flex;
    margin-right: 20px;
}
.media .circle-madia{
    width: 40px;
    height:40px;
    border-radius: 50%;
    border: 3px solid var(--letter-color);
    text-align: center;
    line-height: 40px;
    transition: 0.5s;
    z-index: 1;
    cursor: pointer;
}
.media .circle-madia i{
    font-size: 20px;
}
.media .hole{
    position: absolute;
    width: 40px;
    height:40px;
    margin-left: 10px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: var(--danger);
    transition: 0.5s;
    opacity: 0.5;
}
.media:hover .circle-madia{
    width: 40px;
    height:40px;
    color: var(--bg-color);
    border: 3px solid transparent;
}
.media:hover .hole{
    margin-top: 0;
    margin-left: 0;
    border: 3px solid var(--danger);
}
.social button{
    width: 120px;
    height: 50px;
    margin-left: 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: var(--info);
    font-family: var(--font-wix);
    color: var(--bg-color);
    cursor: pointer;
}
#show{
    position: absolute;
    width: 400px;
    height: 500px;
    margin-left: 900px;
    margin-top: 50px;
    border-radius: 20px;
    background-color: var(--gray);
    overflow: hidden;
}
.headchat{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-bottom: 2px solid var(--gray-dark);
}
.headchat i{
    margin-right: 20px;
    margin-left: 20px;
    color: var(--bg-color);
    cursor: pointer;
}
.headchat img{
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 50%;
}
.headchat h2{
    margin-left: 10px;
    margin-right: 20px;
}
.headchat button{
    background: none;
}
#show textarea{
    position: absolute;
    bottom: 10px;
    left: 5px;
    width: 80%;
    height: 40px;
    padding-left: 10px;
    border-radius: 50px;
    border: none;
    outline: none;
    line-height: 40px;
    font-family: var(--font-wix);
    resize: none;
}
#show p{
    text-align: center;
    margin-top: 10px;
    font-family: var(--font-wix);
    color: var(--green);
    font-weight: bold;
}
#show .fa-paper-plane{
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--bg-color);
    cursor: pointer;
}

/* drop down menu */
.dropMenu{
    display: block;
    position: absolute;
    margin-top: 20px;
    margin-left: 100px;
    border: none;
    outline: none;
    border-radius: 5px;
    box-shadow: 0 0 20px var(--gray);
    background-color: var(--bg-color);
    cursor: pointer;
    transition: 0.5s;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}
.dropMenu ul li a{
    display: block;
    margin-left: 20px;
}
.menu ul li:hover .dropMenu{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.menu .dropMenu ul li{
    padding: 10px 60px 10px 20px;
}
.menu .dropMenu ul li a{
    transition: 0.5s;
}
.menu .dropMenu a:hover{
    color: var(--blue-6);
    /* font-size: 20px; */
}
/* section-1 */
.section-1{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-image: url(../image/backgroundWeb.jpg);
    /* filter: blur(1px); */
}
.section-1 button{
    width: 200px;
    height: 60px;
    border-radius: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 20px;
    color: var(--bg-color);
    box-shadow: 2px 2px 2px var(--cyan),
    -2px -2px 2px var(--cyan);
    cursor: pointer;
}
/* section-2 */
.page-2{
    padding: 20px 0;
}
.new-arrival{
    /* display: flex; */
    width: 90%;
    height: 300px;
    margin-left: 5%;
    margin-top: 100px;
    border-radius: 20px;
    background-color: var(--indigo);
}
.new-arrival img{
    width: 400px;
    margin-left: 100px;
    margin-top: -100px;
}
.new-arrival .arrival{
    float: right;
    margin-right: 500px;
}
.arrival h1{
    margin-top: 50px;
    color: var(--bg-color);
    text-transform: uppercase;
    font-weight: bold;
}
.arrival button{
    width: 120px;
    height: 40px;
    margin-top: 50px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--indigo);
    cursor: pointer;
}
.flex-box-product{
    display: flex;
    width: 90%;
    height: 350px;
    margin-left: 5%;
    margin-bottom: 20px;
    /* background-color: #007bff; */
}
.two-small-box{
    width: 350px;
    height: 350px;
    margin: 0 10px;
    border-radius: 20px;
    /* background-color: #1c1c1c; */
}
.two-small-box p{
    margin-top: 150px;
    font-family: var(--font-wix);
    font-weight: bold;
    color: var(--bg-color);
}
.two-small-box h2{
    margin-top: 20px;
    margin-left: 40px;
    color: var(--bg-color);
}
.two-small-box button{
    width: 150px;
    height: 40px;
    margin-top: 20px;
    margin-left: 40px;
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: var(--bg-color);
    cursor: pointer;
    z-index: 1;
}
.two-small-box img{
    /* position: absolute; */
    width: 300px;
    float: left;
    margin-left: 20px;
    margin-top: -260px;
}
.one-big-box{
    width: 600px;
    height: 350px;
    margin: 0 10px;
    border-radius: 20px;
    background-color: var(--danger);
}
.one-big-box p{
    margin-top: 150px;
    font-family: var(--font-wix);
    font-weight: bold;
    color: var(--bg-color);
}
.one-big-box h2{
    margin-top: 20px;
    margin-left: 40px;
    color: var(--bg-color);
}
.one-big-box button{
    width: 150px;
    height: 40px;
    margin-top: 20px;
    margin-left: 40px;
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: var(--bg-color);
    cursor: pointer;
    z-index: 1;
}
.one-big-box img{
    /* position: absolute; */
    width: 800px;
    float: left;
    margin-left: -200px;
    margin-top: -280px;
}
/* section-3 */
.section-3{
    padding: 20px;
}
.saleinstore{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.saleinstore .block-img{
    width: 50%;
    text-align: center;
    cursor: pointer;
}
.saleinstore .block-img img{
    width: 600px;
}
.block-img .stiker-wow dialog{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -200px;
    margin-left: 100px;
    padding: 0 10px;
    width: 400px;
    height: 100px;
    border: none;
    border-radius: 50%;
    background: var(--indigo);
    color: var(--bg-color);
    font-family: var(--font-superKH);
    font-size: 20px;
    transition: 1s;
    opacity: 0;
}
.block-img:hover dialog{
    transform: rotate(315deg);
    opacity: 1;
}
.stiker-wow i{
    position: absolute;
    margin-top: -200px;
    margin-left: 200px;
    font-size: 50px;
    transform: translateX(-200px);
    transition: 1s;
    color: var(--indigo);
    opacity: 0;
}
.block-img:hover i{
    transform: translateX(0);
    opacity: 1;
}
.block-dis{
    width: 50%;
    padding: 10px 40px;
    margin-right: 100px;
    border-radius: 20px;
    background-color: var(--indigo);
}
.block-dis h1{
    font-family: var(--font-superKH);
    color: var(--bg-color);
}
.block-dis p{
    margin-top: 20px;
    color: var(--bg-color);
}
.block-dis button{
    width: 200px;
    height: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 40px;
    border: none;
    outline: none;
    border-radius: 50px;
    font-size: 15px;
    transition: 0.5s;
    cursor: pointer;
}
.block-dis button:hover{
    background-color: var(--purple);
    color: var(--bg-color);
}
/* case-base-price */
.case-base-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.case-1{
    width: 40%;
    height: 400px;
    margin-right: 10px;
    margin-left: 100px;
    border-radius: 10px;
    background-image: url(../image/Use-Case.png);
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
}
.case-1 .load{
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 40px;
    background: linear-gradient(var(--cyan), var(--indigo));
    transform: translateY(100%);
    visibility: hidden;
    /* opacity: 0.5; */
    transition: 0.5s;
}
.case-1 .load h1, p{
    margin: 0 40px;
    font-family: var(--font-superKH);
}
.case-1:hover .load{
    transform: translateY(0);
    visibility: visible;
}
.case-1 button{
    width: 200px;
    height: 40px;
    margin-top: 5px;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
}
.case-2{
    width: 50%;
    height: 400px;
    margin-right: 100px;
    text-align: center;
    border-radius: 10px;
}
.small-case{
    display: inline-block;
    width: 330px;
    height: 199px;
    margin-bottom: 5px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
}
.small-load{
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 10px;
    background: linear-gradient(var(--cyan), var(--indigo));
    visibility: hidden;
    /* opacity: 0.5; */
    transition: 0.5s;
}
.small-load button{
    width: 100px;
    height: 30px;
    margin-top: 5px;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
}
.small-case:nth-child(1) .small-load{
    transform: translateX(-100%);
}
.small-case:nth-child(2) .small-load{
    transform: translateX(100%);
}
.small-case:nth-child(3) .small-load{
    transform: translateX(-100%);
}
.small-case:nth-child(4) .small-load{
    transform: translateX(100%);
}
.small-case:hover .small-load{
    transform: translateX(0);
    visibility: visible;
}

/* about */
.about-page{
    display: block;
    text-align: center;
    align-items: center;
    padding-top: 100px;
    padding-left: 140px;
    padding-right: 100px;
    background-color: var(--cyan)
}
.about-page h1{
    font-size: 60px;
    font-weight: 1000;
    color: var(--indigo);
}
.about-page h1 span{
    color: var(--danger);
}
.about-page .picCircle{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    margin-top: 40px;
}
.picCircle .card{
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.5s;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--dark);
}
.picCircle .card:hover{
    width: 600px;
    border-radius: 20px;
}
.picCircle .card .circle{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    cursor: pointer;
}
.picCircle .card:hover .circle::before{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: var(--main-color);
}
.circle img{
    position: relative;
    width: 200px;
    transition: 0.5s;
}
.card:hover .circle img{
    transition: 0;
    transform: scale(0);
}
.card .picPro{
    position: absolute;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.5s;
}
.picPro img{
    width: 200px;
    left: 40px;
}
.card:hover .picPro{
    left: 20px;
    transform: scale(1);
}
.card .introduct{
    position: absolute;
    right: 50px;
    transform: scale(0) translateX(500px);
    transition: 0.5s;
}
.card:hover .introduct{
    transform: scale(1) translateX(0);
}
.card .introduct h3{
    margin-left: 100px;
    text-align: left;
    color: var(--indigo);
    font-weight: 600;
}
.about-page p{
    margin-top: 40px;
    margin-bottom: 50px;
    margin-left: 100px;
    color: var(--danger);
    font-weight: 600;
}

/* contact */
.contact{
    position: relative;
    align-items: center;
    text-align: center;
}
.contact h1{
    font-size: 60px;
    font-weight: 600;
    color: var(--indigo);
}
.contact h1 span{
    color: var(--danger);
}
.formContact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 200px;
}
.formContact .inputBox{
    position: relative;
}
.formContact .inputBox{
    inset: 4px;
    border-radius: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.formContact .inputBox input{
    width: 100%;
    padding-top: 40px;
    padding-left: 20px;
    background: transparent;
    margin-bottom: 20px;
    border: none;
    outline: none;
    font-size: 16px;
    z-index: 1;
}
.formContact .inputBox span{
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--indigo);
    line-height: 60px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    z-index: 1;
}
.formContact .inputBox input{
    color: var(--bg-color);
}
.formContact .inputBox input:valid ~ span,
.formContact .inputBox input:focus ~ span{
    color: var(--cyan);
    font-size: 0.75em;
    transform: translateY(-35px);
}
.formContact .inputBox i{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--indigo);
    border: none;
    outline: none;
    border-radius: 10px;
    transition: 0.5s;
    pointer-events: none;
}
.formContact .inputBox input:valid ~ i,
.formContact .inputBox input:focus ~ i{
    height: 60px;
    transition: 0.5s;
}
.inputBox textarea{
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
    padding-left: 20px;
    background: var(--indigo);
    color: var(--bg-color);
    margin-bottom: 20px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 16px;
    z-index: 1;
    resize: none;
}
.formContact input[type="submit"]{
    width: 200px;
    height: 50px;
    border-radius: 50px;
    border: none;
    outline: none;
    background: var(--indigo);
    color: var(--bg-color);
    font-size: 16px;
    cursor: pointer;
    transition: 0.5s;
}
.formContact input[type="submit"]:hover{
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--main-color);
}
.newContact{
    display: flex;
    justify-content: baseline;
    width: 100%;
    height: 200px;
    margin-top: 100px;
}
.newContact .socail{
    margin-left: 100px;
    /* background-color: #007bff; */
}
.socail a{
    display: block;
    text-decoration: none;
    margin-right: 100px;
    margin-top: 10px;
    color: var(--indigo);
}
.socail i{
    width: 30px;
}
.link{

    margin: 0 100px;
}
.link a{
    display: block;
    text-decoration: none;
    margin-right: 100px;
    margin-top: 10px;
    color: var(--indigo);
}
.payment{
    margin: 0 100px;
}
.payment img{
    width: 200px;
    margin-top: 20px;
}
.help-you{
    margin: 0 100px;
}
.help-you h4{
    margin-top: 20px;
}
footer{
    width: 100%;
    height: 100px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark);
}
footer p{
    font-family: var(--font-wix);
    color: var(--bg-color);
}