.hospital-image-container {
    background-color: #f0f0f0;
}

.hospital-image-container img{
    width: 100%;
    border-radius: 30px;
    border-top: 5px solid hsl(180, 92%, 38%);
    border-bottom: 5px solid hsl(180, 92%, 38%);
}

p {
    font-family: Arial, Helvetica, sans-serif; 
    font-weight: 100;
    color: #222;
}main {
    font-family: Arial, sans-serif;
}  

.intro-container {
    margin: 40px 40px;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30vh;
    flex-direction: column;
    margin-left: 250px;
    margin-right: 300px;
}

.hr {
	width: 70px;
    margin-top: 10px;
	margin-bottom: 10px;
	border-bottom: 2px solid hsl(180, 92%, 38%);
}

.specialities {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 20vh;
    margin-left: 250px;
    margin-right: 300px;
}

.specialities-container {
    padding-bottom: 100px;
    background-color: #f0f0f0;
}

.rectangle {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.srow1 {
    display: flex;
    justify-content: space-between;
    margin-left: 250px;
    margin-right: 300px;
}

.srow__content {
    display: flex;
    flex-direction: row;
    width: 400px;
}

.icon i {
    font-size: 25px;
    border-radius: 50%;
    padding: 15px;
    color: hsl(180, 92%, 38%);
    background-color: white;
    border: 1px solid hsl(180, 92%, 38%);
}

.srow__info {
    margin-left: 20px;
}

.srow__info p {
    margin-top: 10px;
    font-size: 15px;
}

.srow2 {
    display: flex;
    justify-content: space-between;
    margin-left: 250px;
    margin-right: 300px;
    margin-top: 30px;
}

.quicklook-container {
    margin-top: 50px;
    margin-bottom: 150px;
}

.quicklook-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 250px;
    margin-right: 300px;
}

.quicklook {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 250px;
    margin-right: 300px;
    margin-top: 50px;
}

.quicklook__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    border: 1px solid hsl(193, 17%, 68%);
    height: 30vh;
    box-shadow: hsl(193, 53%, 44%) 2px 2px 2px 2px;
    border-radius: 5px;
    transition: 0.4s ease;
    text-align: center; 
}

.quicklook__box:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.quicklook__box__title h2{
    color: hsl(0, 0%, 40%);
    padding: 15px;
}

.quicklook__box__title {
    border-bottom: 2px solid hsl(180, 92%, 38%);
}

.quicklook__box__info p{
    color: #222;
    width: 85%;
    padding: 20px;
}