html,
body {
  margin: 0;
  height: 100%;
  font-family: 'Work Sans', sans-serif;
}

body {
  display: grid;
  grid-gap: 0px;
  grid-template-columns: 1fr;
  grid-template-areas: "nav" "main" "footer";
  grid-template-rows: 150px 1fr 80px;
}

nav {
  background: #214B73;
  background-image: linear-gradient(45deg, #214b73 47.62%, #ffffe044 47.62%, #ffffe044 50%, #214b73 50%, #214b73 97.62%, #ffffe044 97.62%, #ffffe044 100%);
  background-size: 21.00px 21.00px;
  grid-area: nav;
  border-bottom: 3px #e9c422 solid;
  ;
}

nav .logo-wrap {}


nav .logo {


  background-size: cover;
  margin-left: 10px;
  margin-top: 15px;
  height: 115px;
}

nav h1 {

  font-size: 2.15rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #f2db6a;
  font-weight: 300;
}

.mobile-tag {
  font-weight: 800;
  color: #43656b;
  border-bottom: 5px #ddd solid;
  margin-bottom: 20px;
  text-align: center;
}

main {
  position: relative;

  color: #fff;
  grid-area: main;
}

main .content {
  position: relative;
  z-index: 2;
  color: #000;
  background: #ffffffff;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;

  height: calc(100% - 30px);
  padding: 30px;
}

#c {
  z-index: -1;
  background: #000 url("bg.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;

}

footer {
  background-color: #000000a0;
  grid-area: footer;
}

.rotator {
  border: 10px #ddd solid;
  border-radius: 5px;

  margin: 15px 20px 20px 20px;
}

.rotator .row img {
  width: 100%;
}

.rotator .image {
  width: 23%;
  display: inline-block;
}

.rotator .image img {
  width: 100%;
  margin-bottom: 5px;
}

.topic {
  font-size: 1.5rem;
  height: 100%;
  font-family: "Open Sans", Arial, sans-serif;
  border-radius: 2px;
  padding: 10px;
  padding-top: 50px;
  margin-top: 0;

  background: #fff;
  margin-bottom: 33px;
}

@media screen and (max-width: 800px) {
  .topic {
    font-size: 1.15rem;
  }
}

.equipment {
  display: flex;
  padding: 30px;
  margin-top: 50px;
  margin-bottom: 150px;
  padding-bottom: 10px !important;
  border-radius: 2px;
  background: #fff;
}

.equipment>div {
  flex: 1;
}

.equipment h3 {
  margin-bottom: 20px;
  margin-top: 10px;
}

.equipment .col-content {
  font-size: .8rem;
  height: 100%;
  background: #f1f3ff;
  border: 1px #3367AF55 solid;
  border-radius: 2px;
  padding: 10px;
}

.col-content li {
  line-height: 1.5rem;
}

.contact a {
  text-decoration: none;
  color: #555;
  font-size: 1.15rem;
}

.contact a img {
  width: 35px;
  margin-right: 10px;
}

.team h4 {
  font-size: 1.25rem;
}

.team h3 {
  color: #214b73;
  font-size: 3rem;
  margin-bottom: 10px;
  margin-top: 20px;
  border-bottom: 5px #ddd solid;
}

.awards.row {
  background: #f1f3ff;
  border-radius: 5px;
  border: 2px #ddd solid;
  padding: 10px;

}

.awards .trophy {
  display: inline-block;
  min-width: 50px;
  min-height: 50px;
  width: 100%;
  top: 2px;
  position: relative;
}

.awards .icon {
  width: 100%;
}

.awards .uline {
  font-size: .8em;
}

.awards .trophy.t-1 {
  background: url();
  background-size: calc(100%);
}
.card .card-body{
  background:#f7f7f7;
}

/******************************V change it***/

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}