body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
  }body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  @media (max-width: 768px) {
    .example-class {
      margin: 0;
    }
  }
/*--------------------first row ------------------*/

.con-container {
    width: 100%;
    margin: 0 auto;
}
.con-row {
    display: flex; 
    flex-wrap: wrap; 
    gap: 0px;
    flex-direction: row; 
}
.con-col1{
    width: 5%;
    background-color:  #ffb9ce;
    border-radius: 20px;
}
.con-col2{
    display: flex;
    flex-direction: column;
    width: 95%;
}
.con-col-bg{
    background-image: url(../images/contact-col-img.jpeg);
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    width: 100%;
    height: 500px;
    place-items: center;
    padding: 20px;

}
.con-col-bg h3{
    font-size: 2rem;
    color: rgb(218, 229, 235);

}
.con-col2 h1{
    font-size: 4rem;
    color: rgb(252, 254, 255);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.con-col-bg h4{
    font-size: 1.5rem;
    color: rgb(219, 223, 227);

}

/*------------------- Contact us row ------------------*/

.c-container{
    border: 2px solid #c52b6e;
    margin: 30px;
    border-radius: 15px;
    width: 94%;
    padding: 30px;
}
.c-row{
    display: flex; 
    flex-direction: row;

}
.c-col1{
    flex:1;
    place-items: center;
}
.c-col1 h4{
    background-color: #ffb9ce;
    border: 2px solid #c52b6e;
    padding: 8px;
    border-radius: 10px;
    width: fit-content;
}
.c-col1 h3 img{
    height: 28px;
    width: 28px;
}
.c-col1 h3{
    border: 2px solid #c52b6e;
    padding: 3px;
    width: fit-content;
    margin-top: 200px;
    padding: 8px;
    border-radius: 20px;
}
.c-col2{
    flex:1;
}
.w-text{
    place-items: center;
}
.w-text h3{
    gap: 2px;
}
.w-text h1{
    color:#c52b6e;
}
/*------------------MAP -------------------*/
.map {
    display: flex; 
    justify-content: center;
    margin-left: 15px; 
    margin-right: 15px; 
}

.map img {
    width: calc(100% - 150px); 
    height: auto;
    object-fit: cover;
    margin-bottom: 30px; 
}


/*----------------RESPONSIVENESS--------------RESPONSIVENESS------------------RESPONSIVENESS---------------------*/
@media (max-width: 768px) {
    .con-col-bg{
        height: 300px;
    }
    .con-col2 h3{
        font-size: 1rem;
    
    }
    .con-col2 h1{
        font-size: 1.5rem;
    }
    .con-col2 h4{
        font-size: 0.9rem;
    
    }
    .c-row{
        display: flex; 
        flex-direction: column;
    
    }
    .c-container{
        width: 93%;
        margin: 12px;
    }

}
