* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.layout {
    height: 100vh;
    display:flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

li, a {
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    color: #1f1f1f;
}

header {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 15px;
    background-color: #f5f5f5;
}

div svg {
    margin-left: 10px;
    vertical-align: middle;
    font-weight: 100;
    cursor: pointer;
}

header .title {
    font-size: 2rem;
    font-weight: 400;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-menu li {
    display: inline-block;
    align-items: center;
    padding: 0px 10px;
}

.top-menu li a {
    transition: 0.5s ease 0s;
}

.top-menu li a:hover {
    color: #F7c903
}

.top-menu .alert-box {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 27, 0.4);
    z-index: 200;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    display: none;
}

.close-alert {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: right;
    right: 5px;
    top: 5px;
    line-height: 2;
    cursor:pointer;
    margin-bottom: 20px;
}

.close-alert svg {
    width: 20px;
}

.alert-message {
    position: relative;
    background-color: #ffffff;
    padding: 20px 10px 50px 10px;
    border-radius: 8px;
    text-align: center;
    width: 280px;
}

.alert-message p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 3;
    font-weight: 300;
}

.alert-message button {
    margin-top: 50px;
    border-radius: 50px;
    background: #F7c903;
    font-size: 16px;
    font-weight: 300;
    padding: 1em 3em;
    border: none;
    cursor: pointer;
}

.alert-message button:hover {
    background-color: #ffffff;
    border: 1px solid #1b1b1b;
} 

.alert-message button a:hover {
    color: #464646;
}

.main-left-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    background-color: #ffffff;
    list-style: none;
    padding-top: 50px;
    box-shadow: 1px 1px 3px #e1e1e1;
    position: relative;
    z-index: 10;
}

.main-left-menu img {
    width: 60%;
    margin-bottom: 10px;
}

.main-left-menu .logo {
    margin-top: 30px;
    margin-bottom: 40px;
}

.main-left-menu li a {
    height: 100%;
    width: 100%;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 30px;
    color: #1f1f1f;
    text-align: center;
    transition: 0.5s ease 0s;
}

.main-left-menu li {
    height: 60px;
    width: 100%;
}

.main-left-menu li:not(.logo) a:hover {
    background-color: #F7c903
}

.submenu {
    top: 0;
    left: 100%;
    width: 200px;
    display: none;
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
}

.products {
    position: relative;
    height: 100%;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 30px;
    color: #1f1f1f;
    text-align: center;  
    cursor: pointer;  
}

.products .dropdown-link i {
    margin-left: 10px;
    font-size: 15px;
}

.products:hover {
    background-color: #F7c903;
}

.products:hover .submenu {
    display: block;
}

.submenu li {
    height: 60px;
    width: 100%;
}

.submenu li a {
    transition: 0.5s ease 0s;
}

.submenu li a:hover {
    background-color: #F7c903;
}

.sidebar {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: #ffffff;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
}

.sidebar li, a {
    width: 100%;
    transition: 0.5s ease 0s;
}

.sidebar li a:hover {
    background-color: #F7c903;
}

.sidebar li {
    height: 60px;
}

.sidebar a {
    height: 100%;
    padding: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    color: #1f1f1f;
}

.main-container {
    display: flex;
    flex: 1;
}

.main-container .content {
    flex: 1;
    min-height: 100%;
}

.main-container .content .banner {
    font-weight: 600px;
    text-align: center;
    margin-top: 100px;
}

.hero-container {
    position: relative;  
    width: 100%;
    min-height: 100vh;           
    display: flex;
    flex-direction: column;
    justify-content: flex-end;    
    align-items: center;          
    overflow: hidden;            
}

.hero-content {
    position: absolute;
    top: 15%;                    
    left: -100%;                   
    font-size: 2.5rem;
    color: #1b1b1b;
    animation: slideText 0.6s 0.5s ease-out forwards;
    transition: opacity 0.8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content .btn {
    width: 200px;
    padding: 12px;
    font-weight:lighter;
    text-align: center;
    display: inline-block;
    margin-bottom: 30px;
    border-radius: 50px;
    cursor: pointer;
    background-color: #F7c903;
    color: #1b1b1b;
    border-style: none;
}

.hero-content h1 {
    font-weight: lighter;
}

.content .hero-content a{
    display: flex;
    align-items: center;
    justify-content: center;
} 

.content .hero-content a img {
    width: 100%;   
    height: auto;   
    object-fit: cover;  
}

.swiper {
    width: 100%;
    height: auto;
    margin-bottom: 10px;    
    z-index: 10;
    padding-bottom: 30px;
}

#slideshow {
    width: 90%;
    height: auto; 
    position: relative;
}

#slide-first img, #slide-second img, #slide-third img, 
#slide-fourth img, #slide-fifth img{
    filter: grayscale(100%)
}

#slide-sixth img {
    filter: sepia(100%) grayscale(80%);
}

#slideshow .swiper-button-prev, 
#slideshow .swiper-button-next {
    color: #444343;
    width: 20px;
    height: 20px;
} 

#slideshow .swiper-button-prev {
    left: 5px;      
    right: auto;
}

#slideshow .swiper-button-next {
    right: 15px;
    left: auto;
}

#slideshow .swiper-button-prev::after,
#slideshow .swiper-button-next::after {
    font-size: 7px;
}

#slideshow .swiper-pagination-bullet {
    background-color: #d0cece;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover; 
}

.gravity-shoes {
    width: 100%;
    height: auto;
    transform: translateY(10%);
    animation: dropDown 2s ease-in-out forwards;    
}

@keyframes slideText {
    to {
        left: 22%;
        opacity: 1;
    }
}

@keyframes dropDown {

    0% {
        transform: translateY(-200vh);
        opacity: 0;
    }

    60% {
        opacity: 0;
        transform: translateY(10px);
    }

    70% {
        opacity: 1;
        transform: translateY(-100px);
    }

    80% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Products*/

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    justify-content: center;
    align-items: center;
    padding: 80px 30px 80px 30px;
    gap: 20px;
}

.box-container .detail-content {
    margin-top: 20px;
    color: #1b1b1b;
}

.box-container .detail-content .price {
    margin-bottom: 5px;
    font-weight: 300;
}

.box-container .detail-content .shop a {
    color: #1b1b1b;
    font-weight: 300;
    text-decoration: none;
}

h1 {
    font-size: 2rem;
    font-weight: 400;

}

h2 {
    color: #1b1b1b;
    margin-bottom: 24px;
    font-weight: 300;
}

h3 {
    color: #1b1b1b;
    margin-bottom: 24px;
    margin-top: 24px;
    font-weight: 400;
}

h4 {
    color: #1b1b1b;
    font-weight: 400;
    margin-top: 24px;
    margin-bottom: 24px;
}

h5 {
    color: #1b1b1b;
    font-weight: 400;
    margin-top: 24px;
}

.box-container .box-item {
    background-color: #ffffff;
    border-radius: 8px;
    position: relative;
    border: 1px solid #e1e1e1;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 320px;
    padding: 50px 50px 0px 50px;
    height: 500px;
}

.box-container .box-item .image {
    height: 300px;
}

.box-container .box-item .image img {
    width: 100%;
    object-fit: cover;
}

.box-container .box-item:hover .image img {
    transform: scale(1.1);
}

.ribbon {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    position: fixed;
}

.ribbon {
    --f: .5em;
/* control the folded part */
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1.8;
    padding-inline: 1lh;
    padding-bottom: var(--f);
    border-image: conic-gradient(#0008 0 0) 51%/var(--f);
    clip-path: polygon(100% calc(100% - var(--f)), 100% 100%, calc(100% - var(--f)) calc(100% - var(--f)), var(--f) calc(100% - var(--f)), 0 100%, 0 calc(100% - var(--f)), 999px calc(100% - var(--f) - 999px), calc(100% - 999px) calc(100% - var(--f) - 999px));
    transform: translate(calc((1 - cos(45deg))*100%), -100%) rotate(45deg);
    transform-origin: 0% 100%;
    background-color: #DC143C;
}


.tiptoe-product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;    
    align-items: center;
}

.tiptoe-product-info, .tiptoe-product-image {
    flex: 1 1 50%;
}

.tiptoe-product .tiptoe-product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiptoe-product .tiptoe-product-image img {
    width: 60%;
    height: auto;
}

.tiptoe-product .tiptoe-product-info {
    color: #1b1b1b;
    font-size: 16px;
    height: auto;
    background-color: #ffffff;
    color: #1b1b1b;
    padding: 50px;
    border-left: 1px solid #e1e1e1;
}

.tiptoe-product-info .product-name {
    font-weight: 400;
    margin-bottom: 5px;
}

.tiptoe-product-info .product-price {
    font-weight: 350;
}

.tiptoe-product-info .thumb img {
    width: 20%;
    height: 20%;
    margin-right: 10px;
}

.dropdown-menu {
    margin-top: 30px;
    width: 70%;
}

.dropdown-menu select {
    padding: 15px;
    font-size: 16px;
    width: 100%;
    border-left: none;
    border-right: none;
    border-top: 0.2px solid #e1e1e1;
    border-bottom: 0.2px solid #e1e1e1;
    outline: none;
    font-weight: 300;
    margin-bottom: 20px;
    margin-top: 20px;
}

.dropdown-menu select:focus {
    border-top: 0.2px solid #e1e1e1;
    border-bottom: 0.2px solid #e1e1e1;
    font-size: 16px;
    font-weight: normal;
}

.tiptoe-product-info .shopping-bag {
    width: 70%;
    height: 50px;
    display:inline-block;
    padding: 10px 0 10px 0;
    border-radius: 50px;
    cursor: pointer;
    background-color: #F7c903;
    color: #464646;
    border-style: none;
    margin-bottom: 30px;
}

.tiptoe-product-info .shopping-bag:hover {
    background-color: #ffffff;
    border: 1px solid #1b1b1b;
}

.tiptoe-product-info .product-information {
    width: 100%;
    margin-top: 20px;
    font-weight: 400;
}

.tiptoe-product-info .product-materials {
    padding-left: 20px;
}

/* Services */

.content .services {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.flex-item {
    display: block;
    flex-direction: column;
    width: 80%;
    padding: 50px;
    background-color: #f5f5f5;
    color: #1b1b1b;
    text-align: left;
    border-radius:10px;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 80px 0px;

}

.services .flex-item li {
    list-style: none;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.5;
}

.content .services {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

/*About Us*/

.about {
    text-align: center;
    line-height: 3;
    padding: 50px;
    font-size: 1.2rem;
    margin-top: 30px;
}

.about .highlight {
    font-weight: 700;
}

/*Contact Us*/

.contact {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    padding: 3em;
    font-size: 1rem;
    margin-top: 10px;
}

.contact .contact-left a {
    list-style: none;
    font-weight: 400;
}

.contact .contact-left {
    background:linear-gradient(to bottom, #F7c903,#ffffff 90%);
    border-radius: 3px;
    /* border-start-start-radius: 5px;
    border-bottom-left-radius: 5px; */
    padding: 0 50px 50px 50px;
}

.contact .contact-right {
    border: 1px solid #F7c903;
    border-radius: 3px;
    color: #222;
    padding: 50px;
}

fieldset {
    border: none;
    text-align: left;
}

.box-width {
    width: 100%;
}

fieldset label {
    margin-bottom: 0.2em;
}

#form-submit-btn:hover {
    background-color: #ffffff;
    border: 1px solid #1b1b1b;
}

#form-submit-btn {
    background-color: #F7c903;
    border-radius: 50px;
    width: 100%;
    padding: 1em 3em;
    margin-top: 20px;
}

input,
textarea,
select {
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    padding: 10px;
    border-radius: 2px;
    margin-bottom: 8px;
    border: transparent;
    background-color: #f5f5f5;
    resize: none;
    color: #767676;
}

.checkbox-input {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

#consent {
width: 5%;
margin: 0 5px 0 0;
font-size: 1rem;
}

.error {
color: #DC143C;
font-size: 12px;
height: 15px;
margin-bottom: 5px;
}

button {
    padding: 0.4em 0.8em;
    border: 1px solid #666;
    border-radius: 5px;
    cursor: pointer;
}

button[type=submit] {
    border-color: transparent;
    background-color: #F7c903;
    color: white;
}

button[type=submit]:hover {
    background-color:#666;
}

.checkbox-list {
    list-style-type: none;
    margin: 0 0 0 0.5em;
    padding: 0;
}

button[type=submit] {
    border-color: transparent;
    background-color: #ffffff;
    color: #585858
}

button[type=submit]:hover {
    background-color: #F7c903;
}


/*login */

form {
    width: 300px;    
}

.login {
    display:flex;
    justify-content: center;
    margin-top: 80px;
    width: 100%;
}

.input-form {
    border-radius: 2px;
    margin-bottom: 8px;
    width: 100%;
}

.input-form-email {
    border-radius: 2px;
    margin-bottom: 30px;
    width: 100%;
}

label {
    display: block;
    font-size: .8rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.form-top-p {
    display: flex;
    justify-content: right;
    font-size: .8rem;
    font-weight: 400;
}

.form-bottom-p {
    display: flex;
    justify-content: left;
    font-size: .8rem;
    font-weight: 400;
    text-decoration: underline;
}

.input {
    width: 100%;
    height: 50px;
    padding-left: 15px;
    border: 1px solid #555555;
}

#login-button {
    margin-top: 30px;
    width: 100%;
    height: 50px;
    display: inline-block;
    padding: 10px 0 10px 0;
    border-radius: 50px;
    cursor: pointer;
    background-color: #F7c903;
    color: #464646;
    border-style: none;
}

.login-button:hover {
    background-color: #ffffff;
    border: 1px solid #1b1b1b;
}
/* Footer */

.footer {
    background-color: #e1e1e1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    color: #1b1b1b;
    padding: 30px;
}

.footer-menu-item {
    flex: 1;
    line-height: 2;
    color: #1b1b1b;
    text-align: center;
}

.footer-menu-item-2 p{
    font-size: 11px;
    color: #828282;
    text-align: left;
}

.footer-menu-item-2 {
    padding-top: 30px;
}

span:hover {
  color: #E5A93C;
}

.footer-menu-item a{
    font-weight: 400;
}

.footer-menu-item .underline-link {
    text-decoration: underline;
    color: #1b1b1b;
}

@media screen and (max-width: 1024px){

    .main-left-menu {
        display: none;
    }

.hero-container {
        min-height: auto !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        position: relative; 
        top: 0 !important;          
        left: 0 !important;            
        width: 70% !important;
        padding: 40px 20px !important; 
        display: flex;
        flex-direction: column-reverse; 
        justify-content: center;
        align-items: center !important;
    }

    .hero-content h1 {
        text-align: center;
        margin-bottom: 15px; 
        font-size: 1.4rem; 
    }

    .content .hero-content a {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .content .hero-content a img {
        width: 100% !important;   
        max-width: 100% !important;    
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    .hero-slider-wrap {
        width: 100%;
        margin-top: auto;
    }

    #slideshow {
        width: 100%;
        height: auto;
    }

    .swiper-slide {
        height: auto;
    }

    .swiper-slide img {
        width: 100%;
        height: auto; 
        object-fit: contain;    
    }

    .gravity-shoes {
        padding-top: 10px;
        padding-bottom: 50px;
        width: 90%;
    }

    @keyframes slideText {

        to {
            left: 10%;
            opacity: 1;
        }
    }

    .tiptoe-product-image,
    .tiptoe-product-info {
        flex: 1 1 100%;
    }

    .tiptoe-product {
        margin-top: 100px;
    }
    
    .about-tiptoe, 
    .contact-tiptoe {
        flex: 1 1 100%;
    }

    .about .about-tiptoe {
        border-right: none;
    }
    
    .about .about-tiptoe {
        display: inline-block;
        border-bottom: 2px solid #F7c903;
        width: 30%;
    }

    .content .services {
            padding: 0px;
        }
    
    .flex-item {
            padding: 10px;
        }

    .footer {
        display: flex;
        flex-direction: column;

    }

    .footer-menu-item {
        flex: 1;
        padding: 10px;

    }
}


@media(max-width: 480px) {

    html {
        font-size: 80%;
    }
    
    .content .hero-container {
        align-items: flex-start;
        padding-top: 10px;
        min-height: auto;
    }

    .hero-content {
        font-size: 2rem;
        top: 22%;
    }
}