@media only screen and (max-width: 1024px) {
    #domains-mobile {
        display: block;
    }    
    #domains-desktop {
        display: none;
    }    
}

@media only screen and (min-width: 1025px) {
    #domains-mobile {
        display: none;
    }    
    #domains-desktop {
        display: block;
    }    
}

#domains-mobile {
    padding: 5rem 3rem;
    background-image: linear-gradient(to right, var(--color-orange), var(--color-koral));

    h1 {
        color: #000;
        padding: 0;
        margin: 0;
    }

    .domains-description {
        margin-top: 5rem;
    }

    .domain-items {
        position: relative;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        margin-top: 8rem;    
        
        .domain-item-shadow {
            position: absolute;
            height: 16rem;   
            width: 70%;
            background-color: #000;
            margin: 4rem auto;
            z-index: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .domain-item {
            background-color: #fff;
            width: 70%;
            margin: 4rem auto;                
            position: relative;
            height: 16rem;       
            
            &:hover {
                transform: translate(-6px, -6px);
            }            

            .domain-item-icon {           
                position: relative;
                display: flex;                         
                justify-content: center;
                align-items: center;                    

                img {             
                    position: absolute;           
                    width: 10rem;                        
                    top: -5rem;
                }
            }

            .domain-item-title {                    
                padding: 5rem 0;

                h2 {
                    font-size: 3rem;
                    color: #000;                    
                    font-weight: 900;
                }
            }
        }
    }
}

#domains-desktop {
    padding: 5rem 0;
    background-image: linear-gradient(to right, var(--color-orange), var(--color-koral));

    h1 {
        padding: 0;
        margin: 0 auto;
    }

    .domains-description {
        padding: 3rem 0;
    }

    .domain-items {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0 4rem;
        position: relative;

        .domain-item-shadow {
            position: absolute;
            height: 14rem;   
            width: 25rem;
            background-color: #000;
            margin: 4rem auto;
            z-index: 0;
        }

        .domain-item {
            background-color: #fff;
            /* width: 70%; */
            margin: 4rem auto;                
            /* position: relative; */
            height: 14rem;   
            width: 25rem;
            z-index: 1;
            position: relative;
            transition: all 0.25s;
            will-change: top, left;

            &:hover {
                transform: translate(-6px, -6px);
            }

            .domain-item-icon {           
                position: relative;
                display: flex;                         
                justify-content: center;
                align-items: center;                    

                img {             
                    position: absolute;           
                    width: 8rem;                        
                    top: -4rem;
                }
            }

            .domain-item-title {
                color: #000;
                font-size: 2.8rem;
                font-weight: 900;
                padding: 5rem 0;
                text-align: center;
                line-height: 3rem;
            }
        }
    }
}