:root {
    --prime: #e7ca1d;
    --secondary-inverse: #777;
}

.header-body{
    background-color: var(--prime) !important;
}

.logoc{
    margin-left: 40px;
}

.logo-sticky{
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

/* The grid: Four equal columns that floats next to each other */
.columnc {
  float: left;
  width: 25%;
  padding: 10px;
}

/* Style the images inside the grid */
.columnc img {
  opacity: 0.8; 
  cursor: pointer; 
}

.columnc img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.crow:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container */
.ctainer {
  position: relative;
  display: none;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
  background-color: #e7ca1d;
  padding: 10px;
  border-radius: 3px;
}

/* Closable button inside the expanded image */
.closebtns {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}