html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E6F0FA 0%, #FFFFFF 100%);
    overflow-x: hidden;
    box-sizing: border-box;
}

.navigation {
    width: 100%;
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    background-color: #ffecdbc5;
    color: #EEEEEE;
    padding: 0 10px;
    flex-wrap: wrap;
}

.navigation span {
    font-size: 18px;
    background-color: #4EA8DE;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 1px 4px 4px #00000040;
    transition: all 0.3s ease-in-out;
}

.navigation span:hover {
    background-color: #5dafe2;
    color: #FFFFFF;
    cursor: pointer;
    transform: scale(1.05);
}

.navigation * {
    margin: 5px;
}

.logo {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222222;
}

.navigation img {
    width: 40px;
    height: 40px;
}

.hero {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px;
}

.hero img {
    margin-top: 20px;
    border-radius: 5px;
    max-width: 90%;
    height: auto;
}

.copy {
    width: 100%;
    color: #222222;
}

.copy p {
    color: #555555;
    font-size: 16px;
}

.button {
    background-color: #4EA8DE;
    border-radius: 6px;
    border: none;
    color: #FFFFFF;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: #5dafe2;
    cursor: pointer;
    transform: scale(1.05);
}

.about-us {
    display: flex;
    margin-top: 100px;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.about-item {
    flex: 1 1 300px;
    margin: 20px;
}

.about-item h2 {
    color: #222222;
}

.about-item p {
    color: #555555;
    font-size: 16px;
}

.items-container {
    position: relative;
    width: 99%;
    margin: 5px;
    margin-top: 250px;
    display: grid;
    grid-template-columns: repeat(3, minmax(400px, 98vw));
    grid-auto-rows: auto;
    grid-row-gap: 10px;
}

.item-card {
    position: relative;
    width: 400px;
    height: 450px;
    background-color: #ff811a7a;
    backdrop-filter: blur(100px);
    border-radius: 16px;
    box-shadow: 1px 4px 4px #00000040;
    transition: all 0.1s ease-in-out;
}

.item-card:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.overlap-group{
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 40%;
    grid-template-rows: 20% 20%;
}

.overlap-header {
    grid-column: 1 / -1;
}

.thumnail {
    grid-column: 1 / 2;
	margin-left:15px;
    grid-row: 2 / 2;
    margin-left: 5px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

#extention{
    position: absolute;
    top: 11px;
    left: 10px;
    width: auto;
    height: auto;
    max-height: 50px;
    max-width: 50px;
    border-radius:8px;
}

.name {
    text-align: right;
    grid-column: 1 / 4;
    color: #222222;
    font-size: 22px;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    width: 100%;
    height: 100%;
}

.name p{
    margin-right: 15px;
}

.description {
    grid-column: 2 / 4;
    grid-row: 2 / 5;
    color: #555555;
    font-size: 16px;
    text-align: right;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    width: 100%;
    height: 100%;
}

.description *{
    margin-right: 15px;
}

.div {
    color: #555555;
    font-size: 16px;
    text-align: center;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    margin-top: 10px;
}

.text-wrapper-2 {
    color: #EEEEEE;
    font-size: 20px;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
}

.element {
    grid-column: 1 / 4;
    grid-row: 4 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 20px;
    text-align: center;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    color: #4CAF50;
}

.span {
    color: #ff7f50d5;
}

.text-wrapper-3 {
    color: #fa7544;
}



/* MEDIA QUERIES */

@media (max-width: 768px) {
    .navigation span {
        font-size: 16px;
        padding: 6px 12px;
    }

    .copy p, .about-item p, .div {
        font-size: 14px;
    }

    .name {
        font-size: 20px;
    }

    .text-wrapper-2, .element {
        font-size: 18px;
    }

    .items-container{
        grid-template-columns: repeat(1, minmax(400px, 98vw));
    }

    .item-card {
        width: 90%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .navigation {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero img {
        margin-top: 20px;
    }

    .about-us {
        flex-direction: column;
        margin-top: 50px;
    }
}
