@import url("font-family.css");
body {
  background-color: #F6F6F6;
  overflow-x: hidden;
}

.desktop .top_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -30px;
}
.desktop .ourLogo {
  cursor: pointer;
}
.desktop .ourLogo .logoImage {
  width: 105px;
  height: 105px;
}
.desktop .hamburger_menu {
  width: 30px;
  transition: transform 0.3s ease-in-out;
  height: 30px;
  overflow-y: scroll;
  position: fixed;
  right: 75px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  z-index: 45;
  cursor: pointer !important;
}
.desktop .hamburger_menu .line {
  width: auto;
  margin-bottom: 7px;
  height: 3px;
  background-color: rgb(0, 0, 0);
}
.desktop .hamburger_menu::-webkit-scrollbar {
  display: none;
}
.desktop .mar_75 {
  padding-top: 30px;
  margin: 0 75px;
}
.desktop .head_txt {
  font-family: "RalewayRegular" !important;
  font-size: 40px;
  text-align: center;
  color: #5a5a5a;
}
.desktop .filter_btn {
  margin: 0 15px;
  font-family: "RalewaySemiBold" !important;
  cursor: pointer;
  z-index: 55;
  position: relative;
}
.desktop .filter_btn::before {
  content: "";
  position: absolute;
  width: 0;
  z-index: 1;
  border-radius: 5px;
  height: 4px;
  background-color: #ff7a7a;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}
.desktop .filter_btn:hover::before {
  width: 100%;
}
.desktop .filter_btn.active::before {
  width: 100%;
}
.desktop .gallery_container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  padding: 10px;
}
.desktop .gallery_container .item {
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 30px;
}
.desktop .gallery_container .gallery_img {
  -o-object-fit: fill;
     object-fit: fill;
}
.desktop .video_player {
  cursor: pointer;
  width: 100%;
}
.desktop .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.desktop .pause {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.desktop .bottom_bar {
  height: 70px;
  padding: 25px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #000000;
}
.desktop .bottom_bar .privacy_content {
  color: #F6F6F6;
  display: flex;
  font-size: small;
  justify-content: space-between;
  font-family: "RalewayRegular";
}

.nav_arrow_img {
  width: 20px;
  height: 20px;
}

.nav_arrow_left_white {
  width: 20px;
  height: 20px;
  display: none;
}

.nav_arrow_right_white {
  width: 20px;
  height: 20px;
  display: none;
}

.right_nav_arrow {
  display: flex;
  margin-left: 10px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  width: 30px;
  border-radius: 50px;
  height: 30px;
}

.left_nav_arrow {
  display: flex;
  z-index: 99;
  margin-right: 10px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  width: 30px;
  border-radius: 50px;
  height: 30px;
}

.left_nav_arrow:hover {
  background-color: #F69225;
}
.left_nav_arrow:hover .nav_arrow_left_white {
  display: block;
}
.left_nav_arrow:hover .nav_arrow_img_left {
  display: none;
}

.right_nav_arrow:hover {
  background-color: #F69225;
}
.right_nav_arrow:hover .nav_arrow_right_white {
  display: block;
}
.right_nav_arrow:hover .nav_arrow_img_right {
  display: none;
}

.next {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prev {
  opacity: 0;
}

.prev_page_name {
  position: absolute;
  z-index: 0;
  opacity: 0;
  margin: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-300px);
}

.full_video_player {
  height: 100%;
  cursor: pointer;
  width: 100%;
}

.modal-body {
  padding: 0 0 0 0 !important;
}

.modal-dialog {
  max-width: 65% !important;
}

.swiper-pagination-bullet {
  background-color: #f5f5f5 !important;
}

.swiper-button-prev, .swiper-button-next {
  color: #f5f5f5;
}

body {
  margin: 0;
  padding: 0;
}

/* .container{
	width:90%
	margin:10px auto;
} */
.portfolio-menu {
  text-align: center;
}

.portfolio-menu ul li {
  display: inline-block;
  margin: 0;
  list-style: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.portfolio-item {
  /*width:100%;*/
}

.portfolio-item .item {
  /*width:303px;*/
  float: left;
  padding: 5px;
  position: relative;
}

@media (max-width: 768px) {
  .desktop .mar_75 {
    padding-top: 30px;
    margin: 0 25px;
  }
  .desktop .ourLogo {
    cursor: pointer;
  }
  .desktop .ourLogo .logoImage {
    width: 70px;
    height: 70px;
  }
  .desktop .hamburger_menu {
    width: 30px;
    transition: transform 0.3s ease-in-out;
    height: 30px;
    overflow-y: scroll;
    position: fixed;
    right: 35px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    z-index: 45;
    cursor: pointer !important;
  }
  .desktop .hamburger_menu .line {
    width: auto;
    margin-bottom: 7px;
    height: 3px;
    background-color: rgb(0, 0, 0);
  }
  .desktop .hamburger_menu::-webkit-scrollbar {
    display: none;
  }
  .bottom_bar {
    height: 70px;
    padding: 25px;
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #000000;
  }
  .bottom_bar .privacy_content {
    color: #F6F6F6;
    display: flex;
    font-size: small;
    justify-content: space-between;
    font-family: "RalewayRegular";
  }
}/*# sourceMappingURL=portfolio.css.map */