@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}
.fixed-body{
padding-top: 53px;
}
*{
    box-sizing: border-box;
}

.flex  {
    display: flex;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.align-start {
    align-items: flex-start;   
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: flex-end;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: end;
}
.home-wrapper{
    width: 100%;
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 15px;
}
.home-header {
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
    background-color: #fff;
}
.home-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.88);
}
.home-header-logo img, .home-header-logo{
    transition: all 0.4s ease-in-out;
}
.home-header-logo img{
    width: 100%;
}
.home-header.fixed-header .home-header-logo img{
    width: 155px;
}
.home-header ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.home-header ul li a{
    color: #333333;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
}
.home-info{
    background-image: url('../images/home-bg.jpg');
    background-position: top right;
    background-repeat: no-repeat;
    text-align: center;
}
.home-info-icon {
    padding-top: 60px;
    margin: 0 auto;
    display: table;
}

.home-info-icon img {
    max-width: 156px;
    max-height: 156px;
}
.home-info a{
    text-decoration: none;
    color: #333333;
}
.home-info h1{
    margin: 0;
    font-size: 32px;
    font-weight: 500;
}
.home-info h2{
    margin: 0;
    font-size: 25px;
    font-weight: 500;
    padding-top: 10px;
}
.home-info h3{
    margin: 0;
    font-size: 38px;
    font-weight: 500;
    padding-top: 10px;
}
.home-info-img{
    max-width: 937px;
    margin: 0 auto;
}
img{
    max-width: 100%;
}
.home-store-icon{
    margin: 50px auto;
}
@media only screen and (max-width: 767px) {
.home-header-logo{
max-width: 200px;
}
.home-info h1{
    font-size: 22px;
}
.home-info h2{
    font-size: 20px;
}
.home-info h3{
    font-size: 28px;
}
.home-store-icon img{
   max-width: 200px;
}
.home-info{
    background-size: 400px;
}
  }