/*=============================
Mobile Styles Start
=============================*/

@media only screen and (max-width: 1200px) {
  body {
    /* background-color: lightblue; */
  }
}

@media only screen and (max-width: 992px) {
  body {
    /* background-color: green; */
  }
  .hd-text {
    text-align: center;
    font-size: 20px;
  }
  .navbar {
    padding: 10px;
  }
  .navbar-toggler {
    font-size: 2rem;
  }
  .two-col-about-img img {
    position: relative;
    top: 0;
  }
  .four-col-row {
    flex-direction: column;
  }
  .four-col-row li {
    margin: 10px 0;
  }
}

@media only screen and (max-width: 768px) {
  body {
    /* background-color: red; */
  }
  .side-nav {display: none;}
  .col-sm-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .two-col-about {
    align-items: center;
  }
  .three-col-row {
    flex-direction: column;
  }
  .three-col-left, .three-col-centre, .three-col-right {
    min-width: 75%;
    max-width: 75%;
    margin-bottom: 20px;
  }
  .three-col-left,
  .three-col-centre {
    margin-right: 0;
  }
  .two-col-row {
    flex-direction: column;
  }
  .two-col-left,
  .two-col-right {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
}


@media only screen and (max-width: 576px) {
  body {
    /* background-color: yellow; */
  }
}

/*=============================
Mobile Styles End
=============================*/