@import url("https://fonts.googleapis.com/css?family=Montserrat");
/* $primary-color: rgb(245, 153, 40);
$primary-color-light: rgb(247, 177, 73);
$primary-color-dark: rgb(202, 102, 19);

$secondary-color: saddleBrown;
$success-color: mediumpurple ;
$error-color: orangered;
$link-color: darkorange;

$background: linen; */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat';
}

*:focus {
  outline: 0;
}

.sshow {
  display: block;
}

.shide {
  display: none;
}

.active {
  display: block;
}

.fade {
  display: none;
}

.nointeract {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.devider {
  width: 100%;
  height: 1rem;
  display: block;
  clear: both;
}

.head {
  background-color: #f7a139;
  color: white;
  text-align: center;
  display: block;
  padding: .5rem .25rem;
  text-transform: uppercase;
}

.container {
  width: 100%;
}

.containermain {
  width: 100%;
  height: auto;
  margin: auto;
  display: block;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {
    width: 8.33%;
  }
  .col-s-2 {
    width: 16.66%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.33%;
  }
  .col-s-5 {
    width: 41.66%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.33%;
  }
  .col-s-8 {
    width: 66.66%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.33%;
  }
  .col-s-11 {
    width: 91.66%;
  }
  .col-s-12 {
    width: 100%;
  }
  .sshow {
    display: none;
  }
  .shide {
    display: block;
  }
  .containermain {
    width: 95%;
  }
}

@media only screen and (min-width: 992px) {
  /* For desktop: */
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

html, body {
  background-color: linen;
}

header {
  background-color: #be5e10;
  height: 100px;
}

header img {
  -o-object-fit: fill;
     object-fit: fill;
  height: 100%;
}

nav {
  display: block;
  z-index: 1;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  background-color: #f7a139;
  height: 2rem;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.205);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.205);
}

nav .search {
  float: right;
  position: relative;
  height: 2rem;
}

nav .search input {
  width: 100%;
  height: 2rem;
  text-indent: 2.5rem;
}

nav .search i {
  position: absolute;
  background-color: #be5e10;
  color: white;
  width: 2rem;
  height: 2rem;
  text-align: center;
  padding: .5rem;
  left: 0;
  top: 0;
}

nav ul {
  float: left;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2rem;
}

nav ul li {
  width: 20%;
  text-align: center;
  cursor: pointer;
}

nav ul li a {
  padding: .5rem;
  color: white;
  text-decoration: none;
}

nav ul li:hover {
  background-color: #ffae52;
}

nav ul li:hover a {
  color: #be5e10;
}

.asideleft, .asideright {
  float: left;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.205);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.205);
}

.asideleft .asidecontainer, .asideright .asidecontainer {
  padding: .5rem;
  margin: .5rem;
  background-color: white;
  border-radius: 5px;
  word-wrap: break-word;
}

.asideleft .asidecontainer a, .asideright .asidecontainer a {
  color: black;
  text-decoration: none;
}

.asideleft .asidecontainer a:hover, .asideright .asidecontainer a:hover {
  color: #f7a139;
}

.asideleft .asidecontainer img, .asideright .asidecontainer img {
  width: 100%;
}

.asideleft .showcase, .asideright .showcase {
  height: 350px;
  margin: .5rem;
  background-color: white;
  border-radius: 5px;
}

.asideleft .showcase img, .asideright .showcase img {
  width: 95%;
  height: 100%;
  display: block;
  margin: auto;
  padding: 2.5% 0;
  -o-object-fit: cover;
     object-fit: cover;
}

main {
  float: left;
  padding: 0 1.5rem;
  min-height: 100vh;
}

@media only screen and (min-width: 600px) {
  main {
    float: right;
  }
}

@media only screen and (min-width: 992px) {
  main {
    float: left;
  }
}

.content {
  width: 100%;
}

.content iframe {
  width: 100%;
  height: 100vh;
  outline: none;
  border: none;
  overflow-y: scroll;
  overflow-x: hidden;
}

footer {
  background-color: #f7a139;
  margin-top: 2rem;
  padding: .5rem .25rem;
}

footer ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer ul li {
  padding: .25rem 0;
}

footer ul a {
  color: white;
  text-decoration: none;
  padding: .5rem .5rem;
  font-size: .8rem;
}

footer ul i {
  font-size: 1.5rem;
}

.newcontent a {
  text-decoration: none;
}

.btn {
  border: none;
  -webkit-box-shadow: 1px 1px 1px rgba(53, 30, 25, 0.205);
          box-shadow: 1px 1px 1px rgba(53, 30, 25, 0.205);
  font-weight: 600;
  cursor: pointer;
}

.btn:active {
  outline: none;
}

.btn:hover {
  background-color: #ffae52;
  color: #be5e10;
}

.scroll::-webkit-scrollbar-track {
  background-color: transparent;
}

.scroll::-webkit-scrollbar {
  width: 12px;
  background-color: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #f7a139;
}

.adminbutton {
  z-index: 2;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #f7a139;
  color: white;
  border-radius: 10px;
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 900;
}

.clearimgbtn {
  float: right;
  position: relative;
  bottom: 1.5rem;
  background-color: orangered;
  color: white;
  padding: .25rem;
  outline: none;
  border: none;
  text-decoration: none;
}

#popupbg {
  width: 100%;
  height: 100%;
  background-color: saddleBrown;
  opacity: .7;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

#popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 4rem auto;
  padding: 3rem;
  background-color: linen;
  border-radius: 5px;
  z-index: 3;
  width: 80vw;
  height: 88vh;
  display: none;
}

#popup .popupcontent {
  height: 95%;
  width: 100%;
  display: block;
}

#popup h2, #popup p {
  color: black;
  padding-left: 3rem;
}

#popup .popuptext {
  width: 100%;
  height: 90%;
  margin-top: 1em;
  outline: none;
  border: none;
  overflow-y: scroll;
  overflow-x: hidden;
}

#popup #closepopup {
  margin: auto;
  display: block;
}
/*# sourceMappingURL=main.css.map */