@charset "utf-8";
/* CSS Document */
@media screen and (min-width: 1025px){
.order-container{
    width: 100%;
    background-color: #b6dff1;
    padding: 100px 0px;
}
.order-container h1{
    font-size: 1.3rem;
    text-align: center;
}
.order-section{
    margin: auto;
    width: 80%;
    max-width: 800px;
}
.order-content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 5%;
    grid-template-areas:
    "order1 order2 order3";
    margin: 50px auto;
}
.order1{
    grid-area: order1;
    display: flex;
    flex-flow: row wrap;
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
    gap: 5%;
}
.order2{
    grid-area: order2;
    display: flex;
    flex-flow: row wrap;
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
    gap: 5%;
}
.order3{
    grid-area: order3;
    display: flex;
    flex-flow: row wrap;
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
    gap: 5%;
}
.order1 img, .order2 img, .order3 img{
    width: 50%;
}
.order1 h1, .order2 h1, .order3 h1{
    font-size: 1.2rem;
}
}
@media screen and (min-width: 481px) and (max-width: 1024px){
.order-container{
    width: 100%;
    background-color: #b6dff1;
    padding: 100px 0px;
}
.order-container h1{
    font-size: 1.3rem;
    text-align: center;
}
.order-section{
    margin: auto;
    width: 80%;
    max-width: 600px;
}
.order-content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 5%;
    grid-template-areas:
    "order1 order2 order3";
    margin: 50px auto;
}
.order1{
    grid-area: order1;
    display: flex;
    flex-flow: column wrap;
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.order2{
    grid-area: order2;
    display: flex;
    flex-flow: column wrap;
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.order3{
    grid-area: order3;
    display: flex;
    flex-flow: column wrap;
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.order1 img, .order2 img, .order3 img{
    width: 60%;
}
.order1 h1, .order2 h1, .order3 h1{
    font-size: 1.2rem;
}
}
@media screen and (max-width: 480px){
.order-container{
    width: 100%;
    background-color: #b6dff1;
    padding: 30px 0px;
}
.order-container h1{
    font-size: 1.2rem;
}
.order-section{
    margin: auto;
    width: 90%;
    max-width: 1000px;
}
.order-content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 5%;
    grid-template-areas:
    "order1 order2 order3";
    margin: 20px auto 50px auto;
    width: 100%;
}
.order1{
    grid-area: order1;
    display: flex;
    flex-flow: column wrap;
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.order2{
    grid-area: order2;
    display: flex;
    flex-flow: column wrap;
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.order3{
    grid-area: order3;
    display: flex;
    flex-flow: column wrap;
    background-color: white;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.order1 img, .order2 img, .order3 img{
    width: 70%;
}
.order1 h1, .order2 h1, .order3 h1{
    font-size: 1.0rem;
}
}