/* -----------------------------------------------------------------------------
    Mobile Devices (Portrait) 📱
    Up to 480px width
----------------------------------------------------------------------------- */

@media only screen and (max-width: 480px) {
    /* Add your mobile portrait styles here */
	.surgeon_title h1{
		line-height:50px;
		font-size:32px;
		padding-top:8px;
	}
}

/* -----------------------------------------------------------------------------
    Mobile Devices (Landscape)
    From 481px to 767px width
----------------------------------------------------------------------------- */

@media only screen and (min-width: 481px) and (max-width: 767px) {
    /* Add your mobile landscape and small tablet styles here */
    
}


/* -----------------------------------------------------------------------------
    Tablet Devices 
    From 768px to 1024px width
----------------------------------------------------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Add your tablet styles here */
    
}


/* -----------------------------------------------------------------------------
    Desktop Devices 💻
    From 1025px and up
----------------------------------------------------------------------------- */

@media only screen and (min-width: 1025px) {
    /* Add your desktop styles here */
    
}