/* COLORS */
:root {
  --blue1: #001d4a;
  --blue2: #134c6f;
  --blue3: #006992;
  --lightgreen: #eaf8bf;
  --lightorange: #e97132;
}

.grid-body{
    padding: 20px;
}

.img-rounded{
    border-radius: 12px 12px 0px 0px !important;
}

.body-button {
 color: white;
  background-color: var(--blue3);
  font-weight: 600;
}

.body-button:hover {
  color: white;
  background-color: var(--blue2);
}

.contact-buttons{
    display:flex;
    flex-direction: column;
    gap: 20px;
}
.icon-button{
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon{
    margin-right:15px;
}

.whatsapp-color {
	background: #139909 ;
}

.signal-color{
    background: #3A76F0;	
}


.grid-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 36px;
  justify-items: center;
  padding: 36px;

}

.grid-item {
  background-color: white;
  border: 1px solid lightgray;
  text-align: left;
  font-size: 30px;
  width: 400px;
  border-radius: 12px;
}

.grid-image {
    object-fit: cover;
    width: 100%;
    height: 400px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

.grid-body{
    padding: 20px;
    border-radius: 12px;
}

.body-header-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* TEXT */

.header-text{
    font-size: 28px;
    margin: 8px 0px;
}

.body-text{
    font-size: 16px;
    margin: 0;
    color: black !important;
}


.detail-text{
    font-size: 14px;
    color: gray;
}

.title-text{
    margin-right: 5px;
}


/* COMPONENTS */





.body-tag{
    background: #C50204;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    padding: 4px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 36px;
}

/* DETAILS PAGES */



