/* Header */
*{
    box-sizing: border-box;
}
.header{
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%);
    position: fixed;
    width: 100%;
    z-index: 1;
}

.header-main{
    background: white;
}
.header-top{
    background-color: var(--color-one);
    color: var(--color-two);
    font-size: 16px;
    text-align: center;
    padding: 10px;
    /* font-weight: 300; */
}

.header .inner-wrap{
    display: flex;
    justify-content: space-between;
}

.header .inner-logo img{
    height: 48px;
    width: auto;
    margin-right: 10px;
}


.header .inner-logo a{
    display: flex;
    color: var(--color-one);
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    align-items: center;
}

.header .inner-menu ul{
    display: flex;
    list-style-type: none;
}
.header .inner-menu ul li a{
    color: var(--color-one);
    padding: 10px;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
}

.header .inner-contain{
    color: var(--color-text);
    font-size: 18px;
    align-self: center;
}

.inner-social ul{
    display: flex;
    text-decoration: none;
    list-style-type: none;
}

.inner-social ul li{
    margin-left: 15px;
}

.inner-social ul li a{
    color: var(--color-one);
    font-size: 26px;
}

/* EndHeader */

/* Button */
.button{
    background-color: var(--color-two);
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 45px;
    border: 1px solid var(--color-text);
    display: inline-block;
}

.button:hover{
    background: #fff;
    color: var(--color-two);
}

.button-two{
    background-color: var(--color-one);
    color: #fff;
    border-color: var(--color-two);
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 45px;
    border: 1px solid var(--color-text);
       display: inline-block;
}

.button-two:hover{
    background-color: var(--color-two);
    background: #FFF;
    color: var(--color-one);
}

.button-three{
    background-color: green;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 45px;;
    border: 1px solid var(--color-text);
     display: inline-block;
}

.button-three:hover{
    background-color: white;
    color: green;
}
/* EndButton */

/* Selection-One */
.selection-one{
    background: #EFF1F4;
    padding: 100px 0;
}
.inner-wrap{
    display: flex;
}

.selection-one .inner-content{
    width: 50%;
}

.selection-one.inner-image{
    width: 50%;
    position: relative;
}

.selection-one .inner-content{
    color: var(--color-one);
}

.selection-one .inner-content h1{
    font-size: 60px;
    font-weight: 700;
}

.selection-one .inner-content p{
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 300;
}

.selection-one .inner-content .inner-list{
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 40px;
}

.selection-one .inner-content .inner-item{
    width: 50%;
}
.selection-one .inner-content .button{
    text-decoration: none;
  
}

.selection-one.inner-image img{
    width: 100%;
    position: relative;
}

.selection-one .inner-image .inner-sale{
    position: absolute;
    background-color: var(--color-two);
    color: var(--color-one);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    top: 20%;
     right: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.selection-one .inner-image .inner-sale span:nth-child(1){
    font-size: 20px;
    font-weight: 600;
}
.selection-one .inner-image .inner-sale span:nth-child(2){
    font-size: 48px;
    font-weight: 600;
}

/* EndSelection-One */

/* Selection-Two */

.selection-two{
    padding: 80px 0;
}
.selection-two img{
    max-width: 500px;
}

.selection-two .inner-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.selection-two .inner-box{
    width: calc(100% / 3 - 30px);
    height: 100%;
    aspect-ratio: 4/3;
    position: relative;
     overflow: hidden;
}

.selection-two .inner-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.selection-two .inner-box:hover img{
    transform: scale(1.1);
   
}

.selection-two .inner-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;

}

.selection-two .inner-box .inner-tag{
    background-color: #139F5D;
    color: #FFF;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
}

.selection-two .inner-box .inner-title{
    margin-top: 10px;
    font-size: 30px;
    margin-bottom: 20px;
}
.selection-two .inner-box .inner-title:nth-child(2){
    color: #FFF;
}

.selection-two .inner-box .button-two{
    text-decoration: none;
}

.selection-two .inner-box .inner-sale{
    color: var(--color-two);
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.selection-two .inner-box .inner-price-old{
    color: var(--color-text);
    font-size: 20px;
    text-decoration: line-through;
    margin-bottom: 20px;
}
/* EndSelection-Two */


/* Selection-Three */
.selection-Three{
    background: #EFF1F4;
}

.selection-Three .inner-wrap{
    display: flex;
    flex-direction: column;
}

.selection-Three .inner-wrap .content{
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.selection-Three .content .top-content{
    color: var(--color-one);
    font-size: 45px;
    margin-left: 100px;
} 

.selection-Three .content .bottom-content{
    color: var(--color-text);
    font-size: 25px;
}

.selection-Three .list{
    display: flex;
    justify-content: space-between;
    margin-left: 15px;
    margin-bottom: 20px;
}

.selection-Three .list .item{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.selection-Three .list .inner-icon{
    margin-bottom: 20px;
}

.selection-Three .list .inner-icon i{
    color: var(--color-text);
    font-size: 50px;
}

.selection-Three .list .inner-title{
    color: var(--color-one);
}
.selection-Three .list .contain{
    color: var(--color-text);
    font-size: 18px;
}
/* EndSelection-Three */

/* Selection-Four */
.selection-Four{
    padding: 80px 0;
}

.selection-Four .inner-wrap{
    display: flex;
    justify-content: center;
}

.selection-Four .inner-wrap .content{
    width: 50%;
    padding: 30px;
}

.selection-Four .inner-wrap .content .title{
    color: var(--color-one);
    font-size: 60px;
}

.selection-Four .inner-wrap .contain{
    flex-wrap: wrap;
    font-size: 20px;
    color: var(--color-one);
    margin-bottom: 40px;
}
.selection-Four .inner-wrap .inner-image{
    width: 50%;
    padding: 15px 30px;
}

.selection-Four .inner-wrap .inner-image img{
    width: 100%;
    height: 100%;
}

/* EndSelection-Four */

/*Selection-Five */
.selection-Five{
    padding: 20px;
    background-color: #EFF1F4;
}

.selection-Five .inner-wrap{
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-image: url("../image/features2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15px 30px;
}

.selection-Five .content{
    display: flex;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}
.selection-Five .content i{
      margin-right: 15px;   
}

.selection-Five .button-three{
    margin-right: 30px;
}
/* EndSelection-Five */

/* EndSelection-Six */
.selection-Six{
    padding: 80px;
}

.selection-Six .inner-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
      align-items: center;
}
.selection-Six .top-title{
    color: var(--color-one);
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 700;
}

.selection-Six .list
{
    display: flex;
    padding: 80px;
}

.selection-Six .list .item {
    width: 20%;
    height:150px;
    border: 1px solid #EFF1F4;
}


.selection-Six .list .item .inner-image img{
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: all 0,6s;
}

.selection-Six .inner-image:hover img{
    transform: scale(1.1);
   
}
.selection-Six .item .title{
    color: var(--color-one);
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 20px;
}

.selection-Six .item .inner-sale{
    color: var(--color-one);
    font-size: 25px;
}

.selection-Six .item .ratting {
   display: flex;
}

.selection-Six .item .ratting ul{
    display: flex;
    text-decoration: none;
    list-style-type: none;
    margin-left: 0;
    padding-inline-start: 0;
}

.selection-Six .item .ratting ul li{
    color: red;
}
/* Selection-Six */

/* Selection-Seven */
.selection-Seven{
    padding: 80px 0;
    background-color: #EFF1F4;
}

.selection-Seven .inner-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.selection-Seven .inner-wrap .content{
    margin: auto;
    align-items: center;
    color: var(--color-one);
    font-size: 30px;
    font-weight: 700;
}

.selection-Seven .box{
    display: flex;
    justify-content: center;
    align-items: center;
}

.selection-Seven .box .inner-input input{
    border-radius: 
    24px; width: 400px; 
    height: 50px; 
    margin-right: 20px;
}
/* End Selection-Seven */

/* Selection-Eight */
.selection-Eight{
    padding: 80px 0;
}

.selection-Eight .title{
    color: var(--color-one);
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}
.selection-Eight .inner-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* End Selection-Eight */

/* Selection-Nine */
.selection-Nine{
    padding: 80px 0;
    background-color:#EFF1F4;
}
 .selection-Nine .inner-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }

 .selection-Nine .title{
    color: var(--color-one);
    font-size: 50px;
    font-weight: 600;
 }

 .selection-Nine .list{
    display: flex;
    justify-content: space-between;
 }

 .selection-Nine .list .item{
    background: white;
    margin-left: 20px;
 }
 
 .selection-Nine .tag{
    color: var(--color-one);
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
 }
.selection-Nine .item .ratting {
   display: flex;
   color: orange;
}

.selection-Nine .item .ratting ul{
    display: flex;
    text-decoration: none;
    list-style-type: none;
    margin-left: 0;
    padding-inline-start: 0;
}

/* End Selection-Nine */

/*Selection-Ten */
.selection-Ten{
    padding: 80px 0;
}

.selection-Ten .inner-wrap{
    display: flex;
}

.selection-Ten .content{
    width: 50%;
    color: var(--color-one);
}
.selection-Ten .content .title{
    font-weight: 700;
    font-size: 50px;
}

.selection-Ten .content .contain{
    color: var(--color-text);
    margin-bottom: 40px;
    font-size: 18px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%);
}

.selection-Ten .content .number{
    font-weight: 700;
    font-size: 50px;
}

.selection-Ten .content .time{
    color: var(--color-text);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.selection-Ten .content .button {
   background-color: white;
   color: var(--color-one);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%);
}

.selection-Ten .social ul{
    display: flex;
    text-decoration: none;
    list-style-type: none;
}

.selection-Ten .social ul li{
    margin-left: 15px;
    font-size: 20px;
}

.selection-Ten .social ul li a{
    color: var(--color-one);
    font-size: 26px;
}
/* End Selection-Ten */

/* Footer */
.footer{
    padding: 40px;
    background: var(--color-one);
    color: white;
}

.footer .inner-wrap .list{
    display: flex;
}

.footer .list .item{
    font-size: 18px;
    margin-right: 30px;

}
.footer .list .item ul{
    list-style-type: none;
}
.footer .list .item ul li{
    margin-top: 10px;
}
/* End Selection-Ten */