/*media query */


/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  /*body{
    background: pink;
  }*/
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  /*body{
    background: yellow;
  }*/
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 1024px to 1366px
*/

@media (min-width: 1024px) and (max-width: 1366px) {
  
  
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
 

}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
 
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
    
    .LeadingResume{
    height:auto;
}

.LeadingResume h1 {
    font-size: 2rem;
    padding-top: 2rem;
}

.LeadingResume p.RSume {
    font-size: 18px;
    padding-right: 0;
}

.placeOrder{
    width:100%;
    margin-top:2rem;
        margin-bottom: 2rem;
}

.ProCvInfo{
    padding-right:0;
}

.OurFeaturs h3 {
    font-size: 1.6rem;
    color: #000;
    font-weight: 600;
}
.ProCvInfo h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
}

.JabbarBox {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 2px 2px 2px #3333;
    padding: 1rem 0;
}

.HereYouContent h4 {
    font-size: 2rem;
    padding: 0 0rem;
}

.CallBoxes{
        margin: 0.3rem 0;
}
 
.BigImg img {
    transform: scale(1);
    width: 100%;
    margin: 1rem 0;
}

.smallImg img {
    width: 100%;
}

.FaqBox {
    padding-top: 2rem;
}

.TopbarSec .nav-link{
    font-size: 11px;
    padding: 0.5rem 0.2rem;
}

.BreadCrumbInner {
    padding-right: 0;
    color: #fff;
}

.row.CandidateP h5 {
    font-size: 2rem;
    padding: 0 0rem;
}

.WrapBoxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ItemBoxWrap {
    padding: 1rem;
    background: var(--clr1);
    margin: 1rem 0;
    border-radius: 6px;
    text-align: center;
    color: #fff;
    flex: 8rem;
}

.InfoCall {
    padding-left: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 66%;
    align-items: center;
}
  
}




/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
   
  
    .LeadingResume{
    height:auto;
}

.LeadingResume h1 {
    font-size: 2rem;
    padding-top: 2rem;
}

.LeadingResume p.RSume {
    font-size: 18px;
    padding-right: 0;
}

.placeOrder{
    width:100%;
    margin-top:2rem;
        margin-bottom: 2rem;
}
.ProCvInfo{
    padding-right:0;
}
.OurFeaturs h3 {
    font-size: 1.6rem;
    color: #000;
    font-weight: 600;
}
.ProCvInfo h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
}

.JabbarBox {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 2px 2px 2px #3333;
    padding: 1rem 0;
}

.HereYouContent h4 {
    font-size: 2rem;
    padding: 0 0rem;
}

.CallBoxes{
        margin: 0.3rem 0;
}

.BigImg img {
    transform: scale(1);
    width: 100%;
    margin: 1rem 0;
}

.smallImg img {
    width: 100%;
}

.FaqBox {
    padding-top: 2rem;
}

.TopbarSec .nav-link{
    font-size: 11px;
    padding: 0.5rem 0.2rem;
}

.BreadCrumbInner {
    padding-right: 0;
    color: #fff;
}
.row.CandidateP h5 {
    font-size: 2rem;
    padding: 0 0rem;
}

.WrapBoxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ItemBoxWrap {
    padding: 1rem;
    background: var(--clr1);
    margin: 1rem 0;
    border-radius: 6px;
    text-align: center;
    color: #fff;
    flex: 8rem;
}

.InfoCall {
    padding-left: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 66%;
    align-items: center;
}


}