@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto+Slab:wght@400;700&display=swap");
body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  padding: 2rem;
  background-color: #2D292A;
}

@media (max-width: 460px) {
  body {
    padding: 0;
  }
}

#contents {
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  opacity: 1;
}

/*Loader Css*/
.preloader {
  background-color: #fff;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.lds-ellipsis {
  margin: 0 auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 64px;
  text-align: center;
  z-index: 9999;
}

.lds-ellipsis span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #26408A;
  -webkit-animation: ball-pulse-sync 1s 0s infinite ease-in-out;
  animation: ball-pulse-sync 1s 0s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(1) {
  -webkit-animation: ball-pulse-sync 1s -0.14s infinite ease-in-out;
  animation: ball-pulse-sync 1s -0.14s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(2) {
  -webkit-animation: ball-pulse-sync 1s -70ms infinite ease-in-out;
  animation: ball-pulse-sync 1s -70ms infinite ease-in-out;
}

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animated {
  animation-duration: 10s;
  animation-fill-mode: both;
  -webkit-animation-duration: 10s;
  -webkit-animation-fill-mode: both;
}

.animatedFadeInUp {
  opacity: 0;
}

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

.home {
  background-image: url(../img/bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  height: calc(100vh - 4rem);
  width: calc(100vw - 4rem);
  background-color: #000;
}

@media (max-width: 460px) {
  .home {
    background-image: url(../img/bgsm.png);
    background-attachment: fixed;
    padding: 0;
    width: 100vw;
    height: 100vh;
  }
}

@media (max-width: 460px) {
  .navbar-brand {
    padding: 2rem;
  }
}

.navbar {
  padding-top: 5vh;
}

@media (max-width: 460px) {
  .navbar {
    padding-top: 0;
  }
}

.navbar .navbar-brand {
  font-size: 31px;
  font-weight: 700;
  color: #FFD49E;
}

@media (max-width: 460px) {
  .navbar .navbar-brand {
    padding: 2rem 0 1rem 1rem;
  }
}

@media (max-width: 460px) {
  .navbar .navbar-toggler {
    display: none;
  }
}

.navbar ul li a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  margin-left: 20px;
}

.navbar ul li a:hover {
  color: #FFD49E;
}

.nopadding {
  padding: 0;
}

.brownbg {
  background-color: #FFD49E;
  height: 70%;
  margin-top: 15%;
  width: 100%;
  padding: 12%;
  min-height: 400px;
  font-size: 12px;
}

@media (max-width: 460px) {
  .brownbg {
    margin: 0;
  }
}

.brownbg .content {
  font-size: 24px;
  color: #2D292A;
  line-height: 28px;
  font-weight: 600;
}

.sidenav {
  margin-top: 42.5%;
  padding-right: 15%;
  padding-left: 0;
  list-style: none;
}

@media (max-width: 460px) {
  .sidenav {
    margin-top: 5%;
    margin: 0;
    padding: 0;
  }
}

.sidenav li {
  text-align: right;
}

@media (max-width: 460px) {
  .sidenav li {
    text-align: left;
    padding-left: 40px;
  }
}

.sidenav li a {
  color: #fff;
}

.sidenav li a::before {
  content: "> ";
}

.text-left li {
  text-align: left;
}

.h85 {
  height: 85%;
}

@media (max-width: 460px) {
  .h85 {
    height: auto;
  }
}

.carousel-inner {
  background-color: rgba(0, 0, 0, 0.5);
}

.carousel-inner .carousel-item {
  -webkit-transition: opacity 3.5s ease-in-out, -webkit-transform 3.5s ease-in-out;
  transition: opacity 3.5s ease-in-out, -webkit-transform 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out, opacity 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out, opacity 3.5s ease-in-out, -webkit-transform 3.5s ease-in-out;
}

.modal {
  border: 50px solid #2D292A;
}

@media (max-width: 460px) {
  .modal {
    border: 0;
  }
}

.modal .modal-dialog {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: auto;
  min-height: 100%;
  max-width: 100%;
}

.modal .modal-dialog .modal-content {
  height: 100%;
  border-radius: 0;
}

@media (max-width: 460px) {
  .modal .modal-dialog .modal-content {
    height: auto;
    min-height: 100vh;
  }
}

.colonylogo {
  position: fixed;
  right: 50px;
  bottom: 50px;
  max-width: 150px;
}

@media (max-width: 460px) {
  .colonylogo {
    max-width: 100px;
  }
}

@media (max-width: 460px) {
  .pl0res {
    padding-right: 0;
  }
}

.back {
  color: #293A85;
}

.modal-header {
  border: 0;
}

.sidetab {
  color: #CCB69A;
  white-space: nowrap;
  text-align: right;
  text-transform: capitalize;
  margin-top: 5vh;
}

.sidetab li a {
  color: #CCB69A !important;
  padding: 0;
}

.sidetab li a.active {
  color: #C56E01 !important;
  background-color: transparent !important;
}

.modal-header {
  display: block !important;
}

.modal-title {
  float: left;
}

.modal-header .close {
  float: left;
}

.img-fluid {
  padding: 0;
  color: #C56E01;
  font-size: 16px;
  font-weight: 600;
  max-height: 70vh;
}

.caption {
  color: #C56E01;
}

@media (max-width: 460px) {
  .collapse:not(.show) {
    display: block;
  }
}

.grey {
  color: #787878;
  font-weight: 600;
}

.title {
  color: #C56E01;
  text-align: center;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 460px) {
  .title {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 460px) {
  .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .modal-body .flex-row-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

@media (max-width: 460px) {
  .modal-body .p-3 {
    padding: 0 !important;
  }
}

#projectdetail {
  background-color: #fff;
}

@media (max-width: 460px) {
  #projectdetail {
    height: 100%;
    overflow-y: scroll;
    width: auto;
    padding-left: 0;
  }
}

@media (max-width: 460px) {
  #projectdetail .modal-content {
    height: 100%;
    border-radius: 0;
    position: static;
    display: block;
    border: 0;
  }
}

@media (max-width: 460px) {
  #projectdetail li {
    padding-left: 0px;
    border-bottom: 1px dashed #868181;
    padding-bottom: 8px;
    padding-top: 8px;
  }
}

#projectdetail .col-md-6 {
  padding: 0;
}

#projectdetail* {
  display: block;
}

.modal-dialog-centered::before {
  height: 100%;
  overflow-y: scroll;
}
/*# sourceMappingURL=custom.css.map */


@media screen and (max-width: 992px) {
  .colonylogo {
      display:none;
   
   
  }
}

/* On screens that are 600px wide or less, the background color is olive */
@media screen and (max-width: 600px) {
.colonylogo {
      display:none;
  }
}