* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.reshoepartners {
    padding: 0px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.reshoepartners img {
    width: 200px !important;
    aspect-ratio: 3/2;
    margin-inline: 25px;
    object-fit: contain;
}

.reshoemethods {
    padding-inline: 12%;
    padding-bottom: 30px;
    background-color: #34BF8D !important;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.reshoemethods > div > div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.reshoemethods img {
    width: 70px;
    border-radius: 3px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.reshoemethods p {
    position: relative;
    top: 10px;
    color: rgb(255, 255, 255);
}

.reshoe-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 50px 5%;
}

.reshoe-image-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .reshoe-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.firstpagemain {
    width: 100%;
    height: auto; /* Change to auto for better responsiveness */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.firstpage {
    padding: 50px 40px;
    font-weight: 400;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(239, 239, 239);
}

.employeepage{
    width: 95% !important;
}

.buttonfirst {
    text-transform: uppercase;
    background-color: #34BF8D;
    width: 230px;
    height: 50px;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.buttonfirst:hover {
    transition: 0.3s;
    background-color: #49d09f;
}

.buttoncustom {
    text-transform: uppercase;
    background-color: #34BF8D;
    padding: 10px 25px;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.buttoncustom:hover {
    transition: 0.3s;
    background-color: #49d09f;
}

.deletebutton {
    background-color: rgb(205, 56, 56) !important;
}

.deletebutton:hover {
    background-color: rgb(213, 84, 84) !important;
}

.firstpage h2 {
    font-size: 30px;
}

.firstpage a {
    color: #34BF8D;
}

.firstpage td {
    text-align: center;
}

.firstpage input {
    background-color: rgb(247, 247, 247);
    border: 1px solid gray;
    border-radius: 3px;
    height: 42px;
    width: 170px;
    padding: 10px;
}

.firstpage form select {
    background-color: rgb(247, 247, 247);
    border: 1px solid gray;
    border-radius: 3px;
    height: 42px;
    width: 170px;
    padding: 10px;
}

input:focus {
    outline: none;
}

.firstpagemain > a {
    color: #34BF8D !important;
}

/* Flex and grid layout adjustments for input forms */
.firstpage form {
    display: flex;
    flex-wrap: wrap !important;
    gap: 10px;
    justify-content: center;
}

.firstpage form input,
.firstpage form select,
.firstpage form button {
    flex: 1 1 100%; /* Full width on smaller screens */
    max-width: 200px;
}

@media (min-width: 600px) {
    /* Adjust width when screen size allows */
    .firstpage form input,
    .firstpage form select {
        flex: 1 1 calc(50% - 10px); /* Half-width on medium screens */
    }
}

@media (min-width: 900px) {
    /* Larger screen layout */
    .firstpage form {
        justify-content: start;
    }
    .firstpage form input,
    .firstpage form select {
        flex: 1 1 calc(33.333% - 10px); /* Three-column layout */
    }
}

/* Table styling */
.firstpage table {
    width: 100%; /* Full width table */
    border-collapse: collapse; /* Ensures no space between borders */
}

.firstpage td, .firstpage th {
    padding: 10px; /* Add padding for better readability */
    border: 1px solid #ddd; /* Add borders for better visibility */
}

/* Scrollable table */
.table-responsive {
    overflow-x: auto !important; /* Allow horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on touch devices */
    width: 100%;
}

.textareacustom{
    background-color: rgb(247, 247, 247);
    border: 1px solid gray;
    border-radius: 3px;
    height: 170px;
    width: 170px;
    padding: 10px;
    resize: vertical;
}

#dielosung{
    background-color: rgb(0, 0, 0);
    width: 100%;
    padding: 50px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

#dielosung h4{
    color: white;
    font-size: 30px;
}

#dielosung h3{
    color: white;
    font-size: 40px;
    line-height: 1.7ch;
}

#warumdiv{
    margin: 30px 7%;
}

#warumheader{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#warumheader h2{
    font-weight: bold;
    font-size: 40px;
}

#warumdiv span{
    color: #34BF8D;
}

#warumheader>img{
    width: 150px;
    border-radius: 10px;
}

#warumdivs{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
}

#warumdivs>div{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    width: 30%;
}

#warumdivs>div>img{
    width: 100px;
}

#warumdivs b{
    color: black;
    font-size: 18px;
}

#warumdivs p{
    font-size: 13px;
}

#warumdiv h5{
    font-size: 20px;
    text-transform: none;
    width: 90%;
}

#warumcenter{
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1200px){
    #warumdivs{
        gap: 30px;
    }

    #warumdivs>div{
        width: 100%;
    }

    #warumdivs>div>img{
        width: 70px;
    }
}

@media only screen and (max-width: 500px){
    #warumheader h2{
        font-size: 35px;
    }

    #warumheader img{
        display: none;
    }

    #faqimg{
        display: none !important;
    }

    #bekannt{
        text-align: center;
        margin-left: 0 !important;
        margin-bottom: 30px;
    }

    #warumcenter{
        justify-content: flex-start;
    }
}

#whpreshoe{
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#whpreshoe img{
    border-radius: 5px;
    width: 100px;
}

#gotofaq{
    color: black;
    text-decoration: none;
    background-color: rgb(209, 209, 209);
    padding: 10px 15px;
    font-weight: bold;
    transition: 0.3s;
}

#gotofaq:hover{
    background-color: rgb(231, 231, 231);
    transition: 0.3s;
}

@media only screen and (max-width: 991px){
	#header-top{
		display: none !important;
	}

	#kontobutton{
		display: block !important;
	}
}
@media only screen and (min-width: 992px){
	#header-top{
		display: block !important;
	}

	#kontobutton{
		display: none !important;
	}
}

#faqs{
    margin-inline: 3%;
}

.cardfaq{
    background-color: rgb(231, 231, 231) !important;
}

.newblog{
    width: 900px;
    margin-inline: auto;
}

@media only screen and (max-width: 1000px) and (min-width: 650px){
    .newblog{
        width: 600px;
    }
}

@media only screen and (max-width: 650px){
    .newblog{
        width: 95%;
    }

    .blogheader{
        flex-direction: column !important;
        gap: 20px;
    }

    .blogheader img{
        width: 60% !important;
    }

    .blogheader h1{
        width: 100% !important;
        text-align: center;
    }

    .blogwithimg{
        flex-direction: column-reverse;
        gap: 20px;
    }

    .blogwithimg div{
        width: 100% !important;
    }
    
    .blogwithimg img{
        width: 60% !important;
    }
}

.blogheader{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blogheader2{
    flex-direction: row-reverse;
}

.blogheader img{
    border-radius: 50%;
    width: 40%;
}

.blogheader h1{
    font-weight: bold;
    width: 50%;
    font-size: 50px;
}

.blogwithimg{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogwithimg div{
    width: 50%;
}

.blogwithimg img{
    width: 40%;
    border-radius: 50%;
}

@media only screen and (max-width: 992px){
    #otherblogs{
        display: none;
    }
}

.giftcards{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.giftcards>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.giftimg{
    width: 350px;
}

.giftcard {
    border-radius: 10px;
    background-color: #F4F4F4;
    padding: 20px;
    width: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.giftcard:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.giftcard img{
    width: 100px;
}

.giftcard h2{
    font-weight: bold;
    letter-spacing: 0.05ch;
    color: #34BF8D;
}

.giftcard h6{
    font-size: 20px;
    letter-spacing: 0.05ch;
}

.giftcard>div{
    display: flex;
    align-items: center;
    justify-content: center;
}

.giftcard small{
    margin-top: 20px;
}