body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #030343;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: disc;
}

.number-list {
    list-style-type: decimal;
}

main {
    width: 60%;
    margin: auto;
    margin-bottom: 2rem;
    margin-top: 5rem;

    @media (max-width: 768px) {
        width: 80%;
    }
}

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

section {
    margin-bottom: 5rem;
}

section h1 {
    position: relative;
}

section .content {

    color: white;
    color: #030343;
    padding: 1rem;
}

/* Shape */

.shape-parent {
    position: relative;
    display: block;
    text-align: left;
    width: 322px;
    text-decoration: underline;
    margin-bottom: 3rem;
}

.shape-parent::after {
    content: "";
    display: block;
    position: absolute;
    top: -50%;
    left: -5%;
    width: 110%;
    height: 200%;
    background-color: #66b5ee;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    z-index: -1;

}

@media (max-width: 768px) {
    .shape-parent {
        width: auto;
    }

    .shape {
        left: 10%;
        width: 80%;
        height: 120%;
    }
}


@media (max-width: 768px) {

    .welcome-section h1 {
        font-size: 18px;
    }

    .welcome-section h2 {
        font-size: 22px;
        margin-top: 15px;
    }

    .welcome-section p {
        font-size: 12px;
    }
}

/* Description section */

.description-content {
    display: flex;
    flex-direction: row;
    gap: 3rem;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 1rem;

    }
}

.description-content .content {
    width: 300px;
}

.description-content img {
    height: 500px;
}

/* Properties section */

.properties-content {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 2rem;
    overflow: hidden;

    @media (max-width: 768px) {
        flex-direction: column;
    }
}

.properties-content img {
    width: auto;
    height: 80px;
    overflow: hidden;
    object-fit: contain;
}

.properties-icon-title {
    width: 10%;
    display: flex;
    flex-direction: column;

    @media (max-width: 768px) {
        width: auto;
    }
}

/* usage-section */
.usage-section {
    display: flex;
    flex-direction: row;
    gap: 3rem;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 1rem;
    }
}

.usage-section .content {
    width: 300px;
}

.usage-section img {
    height: 300px;
    z-index: -2;
}


/* Technical Section */

.techinal-section .technical-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.techinal-section .technical-content div {
    border: 1px solid black;
    width: 50%;
    height: 100%;
    padding: 1rem;
    text-align: center;
}

/* Application Section */

.application-section {
    display: flex;
    flex-direction: row;
    gap: 3rem;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 1rem;
    }
}

.application-section .content {
    width: 300px;
}

.application-section .img-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.application-section img {
    z-index: -2;

    @media (max-width: 768px) {
        width: 100px;
    }
}


.application-section ul {
    margin-bottom: 2rem;
}

.application-section h3 {

    font-weight: 500;
    text-align: center;
    margin-bottom: 0.5rem;

}