/*
*   This code manages card viewer
*
*
*/


* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Float four columns side by side */
.column_s{
  float: left;
  width: 25%;
  padding: 20 10px;
  margin:0px;
}

.column_sub{
  float: left;
  width: 50%;
  padding: 20 10px;
}

/* Remove extra left and right margins, due to padding in columns */
.row_s {margin: 0;
    overflow-x:auto;
    height:53%;
    max-width:100%;
    display: flex;
    flex-direction:row;
    flex-flow: column wrap;
}

/* Clear floats after the columns */
.row_s:after {
  content: "";
  display: inline-block;
  clear: both;
}


/* Style the counter cards */
.card_s {
  box-shadow: 0 0px 0px 0 rgba(0.0, 0, 0, 0.0);
  /* this adds the "card" effect   #f1f1f1     */
  padding: 5px;
  text-align: left;
  background-color: white ;
  width:90%;
  margin:0 2px 0 2px;
}

.card_sub {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
  padding: 5px;
  text-align: left;
  background-color: white;
  width:49%;
  margin:3px;
}
/*********end************************/



/* 
*
*
*special for the end of card viewer */

.column_endCard{
  float: left;
  width: 10%;
  padding: 20 10px;
}
.card_endCard{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  height: 85%;
  background-color: #f1f1f1;
  margin: 18px;
  padding: 0 3px 0 3px;
}
.textCardEnd{
  position: relative;
  text-align: center;
  float: left;
  top: 50%;
  
}
/*********end************************/


/*Font set up
*
*
*/

.fontContentW{
    font-family: "Gill Sans", sans-serif!important;
    font-size: 1.3em;
    font-weight: 400;
}

/*********end************************/


/* this code below describes the footer area
*
*
*
*/

.footer_row{
    max-height:50%;
    display: block;
}
.footer_column{
float: left;
  width: 25%;
  padding: 20 10px;
}
.footer_column_e{
float: left;
  width: 50%;
  padding: 20 10px;
}

/*********end************************/



/*
*this code below describes about image in index
*
*
*/

.img_web{
    object-fit: cover;
}

/*********end************************/


#main{
    display:none;
}

#navIcon{
    display:none;
}

#contentMobile{
    display:none;
}

/*
Margin arrow cardviewer
*/

.arrow{
 padding:125px 25px 125px 25px;
}
