/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  /* CSS */
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  /* CSS */
   
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 992px){
    
 /*##Device = Laptops  */  
  /* CSS */  
 
    
    
}


/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
 /* CSS */ 
    #hero h2, #hero .btn-solid-lg{margin-left: 50px;}
    
  
}

/* 
  ##Device = Tablets, Ipads (Portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait){
  
  /* CSS */
 
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

 @media (max-width: 991.98px) {
    #hero h2 {width: 100%;font-size: 28px;margin-left: 0px;} 
     #hero .btn-get-started{margin-left: 0px;}
     #header .logo img{max-height: 50px;}   
}

@media (min-width: 481px) and (max-width: 767px) {
    
 /* CSS */
 #hero h2 {width: 100%;font-size: 28px;}  
 #header .logo img{max-height: 50px;}  
 section {padding: 30px 0;}   
 #footer .footer-top .footer-links ul.marginTop2{margin-top: -1rem!important;}    
.job_details_area .descript_wrap .single_wrap ul li {font-size: 16px;}
.about .about-content {padding: 10px;}    
  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
 /* CSS */
#header .logo img{max-height: 50px;}   
section {padding: 30px 0;}    
#footer .footer-top .footer-links ul.marginTop2{margin-top: -1rem!important;} 
.job_details_area .descript_wrap .single_wrap ul li {font-size: 16px;}
.about .about-content {padding: 10px;}   
.contact .card-deck .card{margin: 10px;}  
}