

img{max-width: 100%}

.JScenterImg{
    margin:0 auto;
    overflow: hidden;
    max-width: 100%;
}
.JScenterImg img{
    max-width: unset;
    margin:0 auto;
    display: block;
}

body{font-family: 'Mandali', sans-serif;line-height: 26px;font-size: 17px;color:rgba(43,39,64,1);}

h1{font-family: 'Mandali';font-size: 30px;line-height:40px;padding:0 20px;color: rgb(242,145,0);font-weight: 700;}
h2{font-family: 'Mandali';font-size: 25px;line-height:35px;padding:0 15px;color: rgb(242,145,0);}
h3{font-family: 'Mandali';font-size: 20px;line-height:30px;padding:0 10px;color: rgb(242,145,0);}

.textItem{ padding:40px 14px;}
.textItem h1{padding:20px 0 5px 0;}
.textItem h2{padding:5px 0 20px 0;}


.transparant8bgcolorA{
    background-color: rgba(43,39,64,0.8);
    color:#ffffff;
}
.bgcolorA{
    background-color: rgba(43,39,64,1);
    color:#ffffff;
}

.bgcolorA.btn:hover{
    background-color: rgb(242,145,0);
    color: rgb(43,39,64);
}

.colorA{
    color:rgba(43,39,64,1);
}

.colorB{
    color:rgb(242,145,0);
}
.bgcolorA{
    background-color: rgb(242,145,0));
    color:#ffffff;
}


.center{text-align: center}
.pointer{cursor:pointer}

.nopadding{padding:0 !important}

button{
    background-color: rgba(43,39,64,1) !important;
    color:#ffffff  !important;
    line-height: 35px !important;
    margin:30px 0 0 0 !important;
}

.transparant8bgcolorA button,
.bgcolorA button{
    background-color: rgb(242,145,0) !important;

}



  .cssMobile{display:none}
  .cssDesktop{display:none}


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

@media (min-width: 1281px) {
  
  /* CSS */
    .cssMobile{display:none}
  .cssDesktop{display:block !important}

}

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

@media (min-width: 1025px) and (max-width: 1280px) {
  /* CSS */
  .cssMobile{display:none}
  .cssDesktop{display:block !important}
  
}

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

@media (min-width: 768px) and (max-width: 1024px) {
  
  /* CSS */
  .cssMobile{display:none}
  .cssDesktop{display:block !important}

}

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

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  /* CSS */
  .cssMobile{display:block}
  .cssDesktop{display:none }

}

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

@media (max-width: 767px) {
  
  /* CSS */
  .cssMobile{display:block}
  .cssDesktop{display:none}

}

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

@media (min-width: 320px) and (max-width: 480px) {
  
  /* CSS */
  .cssMobile{display:block}
  .cssDesktop{display:none}

}