/*Global*/
body {
  background-color: #282c34;
}
.brand-logo svg {
  height: 300px;
  width: 300px;
  position: absolute;
  top: -110px;
}
footer {
  height: 20vh;
}
/*Homepage*/
#homeBody {
  background-color: #282c34;
  min-height: 80vh;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
#homeBody p {
  font-size: calc(40px + 2vmin) !important;
  margin: 2px;
}
.homepageHeader {
  font-size: calc(70px + 2vmin) !important;
}
.homeContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 60%;
  justify-content: space-between;
}
.container.footer .right {
  margin: 10px;
}
/*portfolio*/
#portfolioBody {
  background-color: #282c34;
  margin-top: 20px;
}
#portfolioBody #portfolios {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1800px;
  margin: 0 auto;
  align-items: flex-start;
}
#portfolioBody #portfolios .row {
  width: 33%;
}
#portfolioBody #portfolios .row .col {
  width: 100%;
}
#portfolioBody .card-action a:hover {
  opacity: 0.5;
}
.sidenav {
  background-color: #282c34;
}
.sidenav li a {
  color: white;
}
/*600*/
@media screen and (max-width: 1507px) {
  #portfolioBody #portfolios .row {
    width: 50%;
    display:flex;
    justify-content: center;
  }

}

@media screen and (max-width: 805px) {
  #portfolioBody #portfolios .row {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .nav-wrapper {
    max-width: 100vw;
  }
  .brand-logo svg {
    height: 300px;
    width: 150px;
    position: absolute;
    top: -110px;
    overflow-x: none;
  }
  #portfolioBody #portfolios .row {
    width: 100%;
  }
}

#buttonContainer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
#buttonContainer a {
  margin: 10px;
}





.nav-wrapper {
  background-color: #282c34;
}
.page-footer {
  background-color: #282c34;
}
/* .footer{
    background-color: #181818;
} */
.nav-wrapper .active {
  background-color: #181818 !important;
  opacity: 0.5;
}
#formContainer {
  width: 62%;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  #formContainer {
    width: 100%;
  }
}

.flip-card {
  background-color: transparent;
  width: 500px;
  height: 400px;
  perspective: 1000px; 
}
@media screen and (max-width: 510px) {
  .flip-card {
    width: 300px!important;
    height: 200px!important;
  }
  .cardImg{
    width: 300px!important;
    height: 200px!important;;
  }
  
.flip-card-back p{
  font-size: .9rem;
}

.flip-card-back h1{
  font-size: 1rem;
}
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; 
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #03a9f4;
  color: black;
}

.flip-card-back {
  background-color: #03a9f4;
  color: white;
  transform: rotateY(180deg);
}
.cardImg{
  width:500px;
  height:400px;
}
.flip-card-back a{
  color:#3AEEF6!important;
}