

.contact-card{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color:rgb(34, 20, 40);
    color: white;
    min-height: 100vh;
    padding-left: 50px;
    padding-right: 50px;
}

.contact-title{
    color: rgb(227, 225, 225);
    font-size: 90px;
    padding-bottom: 50px;
    padding-top: 50px;
}


.left{
    height: 100vh;
    width: 50vw;
    overflow: hidden;

}

.right{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 50vw;

  
}

.contact-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-bottom: 50px;
}



.contact-details{
    height: 30px;
    width: 220px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
    border-radius: 5px;

}

.contact-details:hover{
    background-color: rgb(78, 68, 88);
}

.icon{
    height: 30px;
    width: 30px;
}

.icon-picture{
    height: 30px;
    width: 30px;
}

.link{
    width: 150px;
}

.location-container{
    display: flex;
    flex-direction: column;
    
}

.location-icon{
    height: 82px; 
}

.address{
    display: flex;
    flex-direction: row;

}



@media(max-width: 1000px){
    .contact-card{
        
        flex-direction: column;
        gap: 20px;
        padding-bottom: 50px;
        justify-content: center;
        align-items: center;
    
    }

    .contact-content{
        flex-direction: column;
        
      
    }

    .contact-details{
        width: 220px;
        height: 30px;
        padding: 20px;
    
    }

    .location-container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .address-picture{
        width: 600px;
       
    }

    .contact-title{
        font-size: 100px;
    }

    .contact-paragraph{
        text-align: center;
    }

    .left{
        display: none;
    }
}


@media(max-width: 600px){

  
    .contact-card{
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .contact-content{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact-details{
    height: 30px;
    width: fit-content;
    display: flex;
    

    }
    .location-container{
       width: 90vw;
        
    }

    .address-picture{
        width: 300px;
        margin-right: 10px;
    }

    .contact-title{

        font-size: 100px;
       
    }

    .right{
        display: flex;
        flex-direction: column;
        width: 90vw;
        justify-content: center;

    }
}

@media(max-width:430px){
    .google-maps{
        width: 80vw;
    }

    .contact-title{

        font-size: 50px;
       
    }
}





