@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lobster&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --orangeColor: #d34e01;
}
body,
html {
  font-family: "Poppins", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #777;
  font-weight: 300;
  width: 100% !important;
  height: 100% !important;
  background-color: #212121;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
body::-webkit-scrollbar {
  display: none;
}
.logo {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
}
a:hover {
  text-transform: none;
}
#menu {
  padding: 20px;
  transition: all 0.8s;
  background-color:#363636  !important;
}
#menu.navbar-default {
  background-color: rgba(248, 248, 248, 0);
  border-color: rgba(231, 231, 231, 0);
}
#menu a.navbar-brand {
  font-size: 22px;
  color: #eee;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#menu a.navbar-brand:hover {
  color: var(--orangeColor);
}
#menu.navbar-default .navbar-nav > li > a {
  text-transform: uppercase;
  color: var(--orangeColor);
  font-weight: 600;
  font-size: 18px;
  padding: 5px 0;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  margin: 10px 15px 0 15px;
}
#menu.navbar-default .navbar-nav > li > a:hover {
  color: #eee;
}
.on {
  background-color: #363636 !important;
  padding: 0 !important;
  padding: 10px 0 !important;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #eee !important;
  background-color: transparent;
}
.navbar-toggle {
  border-radius: 0;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: var(--orangeColor);
  border-color: #e2533a;
}
/* .navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: #fff;
} */
#portfolio {
  padding: 90px 0 60px;
  /* background: #f6f6f6; */
}
.section-title {
  margin-bottom: 3rem;
}
.section-title h2 {
  color: #eee;
}
.section-title p {
  font-size: 18px !important;
  color: #d0d0d0;
}
.categories {
  padding-bottom: 40px;
  text-align: center;
}
ul.cat li {
  display: inline-block;
}
ol.type li {
  display: inline-block;
  margin-left: 20px;
}
ol.type li a {
  color: var(--orangeColor);
  font-weight: 400;
  font-size: 15px;
  padding: 10px 20px;
  border: 2px solid var(--orangeColor);
  border-radius: 10px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
ol.type li a.active {
  background: var(--orangeColor);
  color: #fff;
}
ol.type li a:hover {
  background: var(--orangeColor);
  color: #fff;
}
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  z-index: 1;
}
.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope-item {
  margin-right: -1px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.isotope {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  transition-property: transform, opacity;
}
.portfolio-item {
  margin: 15px 0;
}
.portfolio-item .hover-bg {
  overflow: hidden;
  position: relative;
}
.portfolio-item img {
  border-radius: 0 50px 0 50px;
}
.hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #333;
  background: rgba(255, 255, 255, 0.75);
  padding: 30% 0 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  border-radius: 0 50px 0 50px;
}
.hover-bg .hover-text > h4 {
  opacity: 0;
  color: #333;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 400;
}
.hover-bg:hover .hover-text > h4 {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.hover-bg:hover .hover-text {
  opacity: 1;
}

/* Footer section */
#footer {
  background: #333;
  padding: 20px 0;
}
#footer .social {
  margin-bottom: 30px;
}
#footer .social ul li {
  display: inline-block;
  margin: 0 20px;
}
#footer .social i.fa {
  font-size: 26px;
  padding: 4px;
  color: var(--orangeColor);
  transition: all 0.3s;
}
#footer .social i.fa:hover {
  color: #eee;
}
#footer p {
  font-size: 15px;
}
#footer a {
  color: #999;
}
#footer a:hover {
  color: var(--orangeColor);
}

@media (max-width: 668px) {
  .navbar-header .navbar-brand {
    padding: 15px 0px 0px !important;
    color: var(--orangeColor) !important;
  }
  .on {
    color: #000 !important;
  }
  .cat .type {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 4rem;
    margin-left: -7rem;
  }
}
