
.intro-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 2fr 1fr;
    gap: var(--gap);
    min-height: 100vh;
    color:darkviolet;
}

.intro-text-content {
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.intro-text-content p {
   display: block;
}

.intro-text-content, .intro-img{
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    color: white;
}

.intro-img img {
    height: auto;
    max-width: 100%;
    grid-row: span 2;
}

.home{
    padding-top: 3rem;
}

.emphasis {
    font-style:italic;
    color:chartreuse;
}

.intro-store{
    display: grid;
    grid-template-columns: 0.3fr 1.5fr 1.5fr;
    gap: 2px;
    grid-row: span 4;
}

.button-prof{
    display: block;
    width: auto;
    height: 25px; 
}

.menu-button{
    margin: 3px;
}

.menu-img{
    margin-right: 10px;
    margin-top: 5px;
}

.button {
    background-color: antiquewhite;
    border-color: antiquewhite;
    padding: 2px;
    color:blueviolet;
    text-decoration: none;
}

.button-app{
    display: block;
    width: auto;
    height: 25px;
}

.img-apple img {
    display: block;
    height: 1rem;
    width: 1rem;
    scale: 2.5;
    margin-top: 5px;
    margin-bottom: 10px;
}

.img-google img {
    display: block;
    height: 1rem;
    width: 1rem;
    scale: 2.5;
    margin-top: 5px;
    margin-bottom: 10px;
}

.details-content {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 150vh;
    color: white;
}

.details-text-content{
    position: absolute;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    flex-wrap: nowrap;
    z-index: 0;
}

.details-part {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    align-items: center;
    gap:2rem;

}

.privacy-part {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.details-part-agenda {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
    gap:2rem;
}

.support h2 {
    width: 40%;
    margin: auto;
    margin-bottom: 90px;
    color: darkviolet;
}

.support h3 {
    width: 30%;
    margin: auto;
    margin-bottom: 60px;
    color: darkviolet;
}

.support-content {
    align-items: center;
    width: 50%;
    margin: auto;
    padding-left: 100px;
}

.support-options {
    display: flex;
    width: 50%;
    margin-bottom: 2rem;
}

.support-options img {
    width: 2.3rem;
    height: 2.3rem;
}

.support-phone {
    display: flex;
    width: 50%;
    margin-bottom: 2rem;
    
}

.support-phone img {
    width: 2.3rem;
    height: 2.3rem;

}

.phone {
    margin-left: 1rem ;
}

.support-email {
    display: flex;
    width: 50%;
}

.support-email img {
    width: 2.3rem;
    height: 2.3rem;
}

.zap {
    margin-left: 1rem ;
    padding: 0.2rem 1rem;
    background-color:darkorchid ;
    border-style:groove;
    
}

.email{
    margin-left: 1rem ;
}

.zap:hover{
    background-color:rgb(184, 122, 242);
}

.img-zap {
    margin-top: 0.5rem;
}

.zap a {
    color: white;
}

.details-img img {
    width: 30%;
    height: auto;
}

.chat-img, .support h6 {
    font-size: 0.5rem;
    font-family: 'Open Sans';
    margin-bottom: 2rem;

}

.chat-img, .support-img{

    padding-top: 0.5rem;

}

.details-part-chat {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap:2rem;
}

.chat-img img {
    height: auto;
    width: 27%; 
}

.details-part-posts {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap:2rem;
}

.post-img img {
    height: auto;
    width: 30%; 
}

.details-part-meeting {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap:2rem;
}

.meeting-img img {
    height: auto;
    width: 30%; 
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    
}

.grid-one-content {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    padding-top: 8rem;
    color:darkviolet
}

.grid-main-heading{

    font-size: 2.5rem;
}


.grid-img img{
    width: 90%;
    height: auto;
    max-width: 12rem;
    overflow: hidden;
    transition: all 300ms ease-in-out;
    
}

.grid-img img:hover {
    transform: translate(-3%, 3%) scale(1.3);
}

.contact {
    padding-top: 4rem;
}

.contact h2 {
    font-size: 2rem;
    margin: 2rem 0;
}

.contact-form {
    grid-column: span 2;
}

.contact-form .form-grid {
    border: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--gap);
}

.form-grid {
    color: white;
}

.form-grid legend {
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 1.0rem;
    color: white;
}

.form-group {
    flex: 1 1 280px;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea {
    border: none;
    background: var(--white-color);
    padding: 0.8rem 2rem;
    width: 100%;
    font-size: 1.5rem;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 10px 2px var(--secondary-color);
}

.form-group button {
    border: 0.5rem solid var(--white-color);
    background: none;
    color: var(--white-color);
    padding: 1.0rem 2rem;
    font-size: 2rem;
    transition: all 300ms ease-in-out;
}

.form-group button:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.form-group ::placeholder {
    color: rgb(191, 185, 185);
}

.footer {
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
}

.footer a {
    color: #444;
}

.footer p {
    margin: 0;
    padding: 2rem;
}

.close-menu {
    display: none;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--white-color);
    width: 5rem;
    height: 5rem;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 3rem;
}

@media (max-width: 600px) {

    .home {
        padding-top: -3rem; 
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .grid-img {
        width: 100%;
    }

    .grid-img img{
        width: 100%;
        max-width: 100%;
        max-height: auto;
    }

    .grid-img img:hover {
        transform: translate(1%, 2%) scale(1.1);
    }

    .menu {
        bottom: 0;
        text-align: center;
    }

    .menu-content, .menu-content ul{
        flex-direction: column;
        justify-content: center;
    }

    .menu-content {
        height: 100vh;
    }

    .menu {
        display: none;
    }

    .close-menu {
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
    }

    .close-menu-label::after {
        content: '☰';
        position: fixed;
        z-index: 2;
        top: 2rem;
        right: 2rem;
        background-color: var(--primary-color);
        color: var(--white-color);
        font-size: 3rem;
        line-height: 3rem;
        width: 3rem;
        height: 3rem;
        text-align: center;
        padding: 0.5rem;
        cursor: pointer;
    }
    
    .close-menu:checked~.menu {
        display:block;
    }

    .close-menu:checked~.close-menu-label::after {
        display:block;
        content: '×';
    }

    .menu-spacing {
        display: none;
    }

    .intro-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--gap);
        min-height: 100vh;
    }

    .details-part-agenda {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .details-img img {
        width: 40%;
        height: auto;
    }

    .details-part-chat {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap:2rem;
    }
    .chat-img img{
        width: 40%;
        height: auto;
    }

    .details-part-meeting {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap:2rem;
    }

    .meeting-img img {
        height: auto;
        width: 40%; 
    }

    .details-part-posts {
        display: grid;
        grid-template-columns: 1.0fr;
        align-items: center;
        gap:2rem;
    }

    .support {
        align-items: center;
        padding-top: 40%;
    }

    .support h2 {
        font-size: 2.5rem;
        width: 80%;
        margin: auto;
        margin-bottom: 70px;
    }
    

    .support h3 {
        width: 60%;
        margin: auto;
        margin-bottom: 40px;
    }

    .support-content {
        
        width: 100%;
        margin: auto;
        
    }
    
    .support-options {
        display: flex;
        width: 80%;
    }

    .support-phone {
        display: flex;
        width: 100%;
    }

    .support-email {
        display: flex;
        width: 100%;
    }

    .post-img img {
        padding-top: 2rem;
        height: auto;
        width: 100%; 
    }
}


