@charset "UTF-8";
.sechead {
  font-size: 90px;
  font-weight: 900;
  text-align: center;
  color: #fff;
  -webkit-mask-image: linear-gradient(to top, transparent 15%, black 70%);
  mask-image: linear-gradient(to top, transparent 15%, black 70%);
  opacity: 0.9;
  letter-spacing: 0px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.secheadbottom{
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  opacity: 0.9;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .sechead {
    font-size: 95px;
  }
  .secheadbottom{
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .sechead {
    font-size: 70px;
  }
  .secheadbottom{
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sechead {
    font-size: 50px;
    letter-spacing: -1px;
  }
  .secheadbottom{
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .sechead {
    font-size: 37px;
  }
  .secheadbottom{
    font-size: 16px;
  }
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #000;
  background-image: url("../img/bgpattern.webp");
  background-size: 100%;
  background-repeat: repeat-y;
  background-position: center center;
  overflow-x: hidden;
  min-height: 100%;
  width: 100vw;
}

#mainsec {
  height: 100vh;
  position: relative;
}
#mainsec::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: #000;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
#mainsec video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  filter: brightness(0.8);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 30%);
  mask-image: linear-gradient(to top, transparent 0%, black 30%);
}
#mainsec .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
#mainsec .container .logo {
  width: 150px;
}
#mainsec .container .mainseccontent {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#mainsec .container .mainseccontent .mainseccontenttitle {
  font-size: 50px;
  margin-bottom: 10px;
  color: #AF2227;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  #mainsec .container .mainseccontent .mainseccontenttitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  #mainsec .container .mainseccontent .mainseccontenttitle {
    font-size: 35px;
  }
}
#mainsec .container .mainseccontent .mainseccontenttext {
  color: #fff;
  width: 100%;
  font-size: 22px;
  font-weight: 300;
  max-width: 850px;
}
@media screen and (max-width: 768px) {
  #mainsec .container .mainseccontent .mainseccontenttext {
    font-size: 20px;
  }
}

#navbarsec {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  #navbarsec {
    height: 100px;
  }
}
#navbarsec .homenavbar {
  width: 100%;
  padding: 10px 0;
  position: relative;
  margin: 10px 0;
  z-index: 99999;
}
#navbarsec .homenavbar.sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}
#navbarsec .homenavbar::before {
  content: "";
  right: 0;
  top: 0;
  width: 75%;
  position: absolute;
  height: 100%;
  background: #AF2227;
  background: linear-gradient(270deg, #AF2227 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.navcont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 992px) {
  .navcont {
    width: 100%;
    max-width: 100%;
  }
}
.navcont .navlogo img {
  width: 150px;
}
@media screen and (max-width: 992px) {
  .navcont .navlogo img {
    width: 120px;
  }
}
.navcont .homenavul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .navcont .homenavul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #AF2227;
    top: 0;
    right: -100vw;
    flex-direction: column;
    align-items: flex-end;
    padding: 25px;
    transition: 0.3s ease;
  }
  .navcont .homenavul.navactive {
    right: 0;
  }
}
.navcont .homenavul .closenavbtn {
  width: 50px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .navcont .homenavul .closenavbtn {
    display: flex;
  }
}
.navcont .homenavul li a {
  padding: 5px 10px;
  display: inline-block;
  font-size: 20px;
  font-weight: 200;
  text-decoration: none;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .navcont .homenavul li a {
    font-size: 17px;
    padding: 5px 8px;
  }
}
@media screen and (max-width: 768px) {
  .navcont .homenavul li a {
    font-size: 24px;
    padding: 10px 15px;
    text-align: right;
  }
}
.navcont .opennavbtn {
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .navcont .opennavbtn {
    display: flex;
  }
}

#aboutussec {
  padding: 75px 0;
}
#aboutussec .container .aboutusrow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 25px;
}
#aboutussec .container .aboutusrow .aboutuscol {
  width: 50%;
  border-color: #AF2227;
  flex: 1;
}
#aboutussec .container .aboutusrow .aboutuscol:nth-child(odd) {
  text-align: right;
  padding-right: 70px;
  border-right: 1px solid #AF2227;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  #aboutussec .container .aboutusrow .aboutuscol:nth-child(odd) {
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  #aboutussec .container .aboutusrow .aboutuscol:nth-child(odd) {
    padding-right: 20px;
  }
}
#aboutussec .container .aboutusrow .aboutuscol:nth-child(even) {
  text-align: left;
  padding-left: 70px;
  border-left: 1px solid #AF2227;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #aboutussec .container .aboutusrow .aboutuscol:nth-child(even) {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  #aboutussec .container .aboutusrow .aboutuscol:nth-child(even) {
    padding-left: 20px;
  }
}
#aboutussec .container .aboutusrow .aboutuscol .aboutustitle {
  color: #AF2227;
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #aboutussec .container .aboutusrow .aboutuscol .aboutustitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  #aboutussec .container .aboutusrow .aboutuscol .aboutustitle {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
#aboutussec .container .aboutusrow .aboutuscol .aboutustext {
  font-size: 25px;
  color: #fff;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  #aboutussec .container .aboutusrow .aboutuscol .aboutustext {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  #aboutussec .container .aboutusrow .aboutuscol .aboutustext {
    font-size: 19px;
  }
}

#production {
  padding: 10px 0 30px 0;
}
@media screen and (max-width: 576px) {
  #production {
    padding: 50px 0;
  }
}
#production .sechead {
  margin-bottom: 50px;
}
#production .productionrow {
  display: flex;
  position: relative;
  border-bottom: 1px solid #636363;
}
#production .productionrow::before {
  content: "";
  width: 100%;
  left: calc(50% - 500px);
  height: 100%;
  position: absolute;
  background: #AF2227;
  background: linear-gradient(90deg, #AF2227 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.4;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  #production .productionrow::before {
    left: calc(50% - 250px);
  }
}
#production .productionrow .container {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #production .productionrow .container {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  #production .productionrow .container {
    flex-direction: column;
    padding: 0;
  }
}
#production .productionrow .container .productionrowcarousel {
  width: 40%;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 576px) {
  #production .productionrow .container .productionrowcarousel {
    width: 100%;
  }
}
#production .productionrow .container .productionrowcarousel .productionowlcontrols {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  left: 0;
  top: 0;
  pointer-events: none;
}
#production .productionrow .container .productionrowcarousel .productionowlcontrols > div {
  width: 65px;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  padding: 0 15px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s ease;
}
@media screen and (max-width: 992px) {
  #production .productionrow .container .productionrowcarousel .productionowlcontrols > div {
    width: 50px;
  }
}
#production .productionrow .container .productionrowcarousel .productionowlcontrols > div:hover {
  opacity: 1;
}
#production .productionrow .container .productionrowcarousel .productionowlcontrols > div img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#production .productionrow .container .productionrowcarousel .productionowl .item {
  display: flex;
  align-items: center;
  justify-content: center;
}
#production .productionrow .container .productionrowcarousel .productionowl .item img,
#production .productionrow .container .productionrowcarousel .productionowl .item video {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 992px) {
  #production .productionrow .container .productionrowcarousel .productionowl .item img,
  #production .productionrow .container .productionrowcarousel .productionowl .item video {
    height: 320px;
  }
}
#production .productionrow .container .productionrowcarousel .productionowl .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}
#production .productionrow .container .productionrowcarousel .productionowl .owl-dots button {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  margin: 0 5px;
}
#production .productionrow .container .productionrowcarousel .productionowl .owl-dots button.active {
  background-color: rgba(175, 34, 39, 0.7);
}
#production .productionrow .container .productionrowcount {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  font-size: 100px;
  color: #fff;
  opacity: 0.4;
  position: relative;
}
@media screen and (max-width: 992px) {
  #production .productionrow .container .productionrowcount {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  #production .productionrow .container .productionrowcount {
    width: 15%;
    font-size: 50px;
  }
}
@media screen and (max-width: 576px) {
  #production .productionrow .container .productionrowcount {
    width: 100%;
  }
}
#production .productionrow .container .productionrowcount::before {
  content: "";
  width: 100%;
  left: 0;
  height: 100%;
  position: absolute;
  background: #AF2227;
  background: linear-gradient(180deg, #AF2227 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.4;
  z-index: 1;
}
#production .productionrow .container .productionrowcount span {
  position: relative;
  z-index: 2;
}
#production .productionrow .container .productionrowcontent {
  width: 40%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #production .productionrow .container .productionrowcontent {
    width: 45%;
  }
}
@media screen and (max-width: 576px) {
  #production .productionrow .container .productionrowcontent {
    width: 100%;
  }
}
#production .productionrow .container .productionrowcontent .productionrowtitle {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  #production .productionrow .container .productionrowcontent .productionrowtitle {
    font-size: 20px;
  }
}
#production .productionrow .container .productionrowcontent .productionrowtext {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  #production .productionrow .container .productionrowcontent .productionrowtext {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  #production .productionrow .container .productionrowcontent .productionrowtext {
    font-size: 15px;
  }
}

#ctasection {
  background-color: #AF2227;
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  #ctasection {
    margin: 50px 0;
  }
}
@media screen and (max-width: 576px) {
  #ctasection {
    margin: 25px 0;
  }
}
#ctasection .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
#ctasection .container a {
  padding: 15px 40px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 42px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 25px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  padding-right: 15px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #ctasection .container a {
    font-size: 32px;
    letter-spacing: 15px;
    padding: 15px 25px 15px 40px;
  }
}
@media screen and (max-width: 576px) {
  #ctasection .container a {
    font-size: 25px;
    letter-spacing: 10px;
    padding: 10px 20px 10px 30px;
  }
}
#ctasection .container a span {
  position: relative;
  z-index: 2;
}
#ctasection .container a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 1;
  left: -100%;
  transition: 0.3s ease;
}
#ctasection .container a:hover {
  color: #AF2227;
}
#ctasection .container a:hover::before {
  left: 0;
}

.sectiontypeone {
  padding: 20px 0;
}
.sectiontypeone .sectiontypeonerow {
  background-color: rgba(175, 34, 39, 0.5);
  display: flex;
  align-items: center;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .sectiontypeone .sectiontypeonerow {
    flex-direction: column;
  }
}
.sectiontypeone .sectiontypeonerow ul {
  margin: 0;
  padding: 30px;
  list-style: none;
  width: 40%;
}
@media screen and (max-width: 992px) {
  .sectiontypeone .sectiontypeonerow ul {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .sectiontypeone .sectiontypeonerow ul {
    width: 100%;
  }
}
.sectiontypeone .sectiontypeonerow ul li {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 15px;
  margin: 10px 0;
  font-size: 25px;
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  .sectiontypeone .sectiontypeonerow ul li {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .sectiontypeone .sectiontypeonerow ul li {
    font-size: 18px;
  }
}
.sectiontypeone .sectiontypeonerow img {
  border-radius: 20px;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .sectiontypeone .sectiontypeonerow img {
    height: 450px;
  }
}
@media screen and (max-width: 992px) {
  .sectiontypeone .sectiontypeonerow img {
    width: 55%;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .sectiontypeone .sectiontypeonerow img {
    width: 100%;
    height: 350px;
  }
}

.sectiontypetwo {
  padding: 20px 0;
}
.sectiontypetwo .sectiontypetworow {
  background-color: rgba(175, 34, 39, 0.5);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .sectiontypetwo .sectiontypetworow {
    flex-direction: column;
  }
}
.sectiontypetwo .sectiontypetworow ul {
  margin: 0;
  padding: 30px;
  list-style: none;
  width: calc(50% - 100px);
}
@media screen and (max-width: 768px) {
  .sectiontypetwo .sectiontypetworow ul {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .sectiontypetwo .sectiontypetworow ul {
    width: 100%;
  }
}
.sectiontypetwo .sectiontypetworow ul li {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 15px;
  margin: 10px 0;
  font-size: 25px;
  font-weight: 300;
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .sectiontypetwo .sectiontypetworow ul li {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sectiontypetwo .sectiontypetworow ul li {
    font-size: 18px;
  }
}
.sectiontypetwo .sectiontypetworow img {
  width: calc(50% + 100px);
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .sectiontypetwo .sectiontypetworow img {
    height: 530px;
  }
}
@media screen and (max-width: 768px) {
  .sectiontypetwo .sectiontypetworow img {
    width: 50%;
    height: 450px;
  }
}
@media screen and (max-width: 576px) {
  .sectiontypetwo .sectiontypetworow img {
    width: 100%;
  }
}

#portfoliosec {
  padding: 150px 0;
  position: relative;
}
@media screen and (max-width: 576px) {
  #portfoliosec {
    padding: 75px 0;
  }
}
#portfoliosec .sechead {
  margin-bottom: -30px;
}
#portfoliosec::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 90%;
  top: 0;
  opacity: 0.8;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #AF2227 50%, rgba(255, 255, 255, 0) 100%);
}
#portfoliosec .portfolioswiper {
  padding: 50px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 576px) {
  #portfoliosec .portfolioswiper .swiper-pagination {
    display: none;
  }
}
#portfoliosec .portfolioswiper .swiper-pagination span {
  width: 50px;
  height: 2px;
  border-radius: 0;
  background-color: #636363;
  opacity: 0.4;
}
#portfoliosec .portfolioswiper .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #AF2227;
  opacity: 1;
}
#portfoliosec .portfolioswiper .swiper-slide {
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  filter: blur(2px);
  pointer-events: all;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  #portfoliosec .portfolioswiper .swiper-slide {
    height: 450px;
  }
}
#portfoliosec .portfolioswiper .swiper-slide::before {
  content: "";
  width: 100%;
  height: 250px;
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#portfoliosec .portfolioswiper .swiper-slide .portfoliocard-title {
  font-size: 30px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  transform: translateY(40px);
  transition: 0.3s ease;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  #portfoliosec .portfolioswiper .swiper-slide .portfoliocard-title {
    font-size: 25px;
  }
}
#portfoliosec .portfolioswiper .swiper-slide p {
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 0;
  opacity: 0;
  transition: 0.3s ease;
}
#portfoliosec .portfolioswiper .swiper-wrapper{
  pointer-events: auto;
}
@media screen and (max-width: 1200px) {
  #portfoliosec .portfolioswiper .swiper-slide p {
    font-size: 16px;
  }
}
#portfoliosec .portfolioswiper .swiper-slide img,#portfoliosec .portfolioswiper .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
#portfoliosec .portfolioswiper .swiper-slide.swiper-slide-active {
  filter: blur(0);
  transform: scale(2);
}
#portfoliosec .portfolioswiper .swiper-slide.swiper-slide-active p {
  opacity: 1;
}
#portfoliosec .portfolioswiper .swiper-slide.swiper-slide-active .portfoliocard-title {
  transform: translateY(0);
}

#blog {
  padding: 50px 0;
}
#blog .container .blogcategorylink {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
#blog .container .blogcategorylink a {
  text-align: center;
  color: #fff;
  font-weight: 300;
}
#blog .container .owlblogsec {
  padding: 0 100px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  #blog .container .owlblogsec {
    padding: 0 20px;
  }
}
#blog .container .owlblogsec .owlblogcontrols {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 250px;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  #blog .container .owlblogsec .owlblogcontrols {
    height: 200px;
  }
}
#blog .container .owlblogsec .owlblogcontrols > div {
  width: 40px;
  cursor: pointer;
  transition: 0.2s ease;
  opacity: 0.7;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: auto;
}
@media screen and (max-width: 1200px) {
  #blog .container .owlblogsec .owlblogcontrols > div {
    width: 30px;
  }
}
#blog .container .owlblogsec .owlblogcontrols > div:hover {
  opacity: 1;
}
#blog .container .owlblogsec .owlblogcontrols > div img {
  width: 100%;
}
#blog .container .owl-blog .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
#blog .container .owl-blog .owl-dots button {
  width: 50px;
  height: 2px;
  border-radius: 0;
  background-color: #636363;
  opacity: 0.4;
  margin: 0 5px;
}
#blog .container .owl-blog .owl-dots button.active {
  background-color: #AF2227;
  opacity: 1;
}

.categorycard .blogcardimg {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 1200px) {
  .categorycard .blogcardimg {
    height: 200px;
  }
}
.categorycard .blogcardimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.categorycard .blogcardtitle {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  height: 60px;
  text-decoration: none;
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.categorycard p {
  color: #fff;
  font-weight: 300;
}
.categorycard .blogcarddate {
  color: #fff;
  border-top: 1px solid #AF2227;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: 200;
}
.categorycard:hover .blogcardimg img {
  transform: scale(1.1);
}

#contact {
  padding: 50px 0 150px 0;
  position: relative;
}
#contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.7;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(175, 34, 39, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
#contact .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#contact .container form {
  width: 900px;
  max-width: 100%;
}
#contact .container form .row > div {
  margin: 20px 0;
}
#contact .container form input,
#contact .container form textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(99, 99, 99, 0.2);
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #fff;
  padding: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
#contact .container form input:focus,
#contact .container form textarea:focus {
  border-color: #AF2227;
}
#contact .container form input::-moz-placeholder, #contact .container form textarea::-moz-placeholder {
  color: #fff;
  font-weight: 300;
}
#contact .container form input::placeholder,
#contact .container form textarea::placeholder {
  color: #fff;
  font-weight: 300;
}
#contact .container form button {
  width: 100%;
  background-color: rgba(175, 34, 39, 0.3);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #AF2227;
  outline: none;
  box-shadow: none;
  transition: 0.3s ease;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
#contact .container form button:hover {
  background-color: #AF2227;
  color: #fff;
}

footer {
  background-color: #AF2227;
  padding: 50px 0;
}
footer .container .footerlogo {
  margin-bottom: 15px;
  display: inline-block;
}
footer .container .footerlogo img {
  width: 130px;
}
footer .container .footercontact .footercontactline {
  margin: 15px 0;
}
footer .container .footercontact .footercontactline > * {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 300;
}
footer .container .footercontact .footercontactline > * i {
  margin-right: 5px;
}
footer .container .footersocialmedia {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .container .footersocialmedia li {
  margin-left: 10px;
}
footer .container .footersocialmedia li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #AF2227;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
}
.footerlinks{
  margin: 0;
  padding: 0;
  list-style: none;
}

.footerlinks a{
  text-decoration: none;
  color: #fff;
  font-size: 17px;
}

.innerpagetop {
  padding: 50px 0;
  position: relative;
}
.innerpagetop.innerpagetoptall {
  height: 500px;
}
.innerpagetop.innerpagetopshort {
  height: 400px;
}
.innerpagetop::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 400px;
  background: rgba(116, 21, 24, 0.7);
  background: linear-gradient(180deg, rgba(116, 21, 24, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  left: 0;
  top: 0;
  z-index: 1;
  filter: brightness(0.4);
}
.innerpagetop .innerpagetopimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.innerpagetop .innerpagetopimg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(175, 34, 39, 0.6);
}
.innerpagetop .innerpagetopimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.innerpagenavbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.6);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.categorypage {
  padding: 100px 0;
}
.categorypage .sechead {
  margin-bottom: 30px;
}
.categorypage .row > div {
  margin-bottom: 50px;
}

.detailpage {
  padding: 50px 0;
  position: relative;
}
.detailpage::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 600px;
  max-height: 60vh;
  background: #741518;
  background: linear-gradient(180deg, #741518 0%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  opacity: 0.5;
  filter: brightness(0.7);
}
.detailpage .container {
  position: relative;
  z-index: 2;
}
.detailpage .container .detailpagedate {
  color: #fff;
  font-weight: 200;
  font-size: 17px;
  border-bottom: 1px solid #AF2227;
  padding: 7px 30px 7px 0;
  display: inline-block;
  margin-bottom: 10px;
}
.detailpage .container .detailpagetitle {
  color: #fff;
  font-weight: 700;
  font-size: 50px;
}
.detailpage .container .detailpagejenerik {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}
.detailpage .container p {
  color: #fff;
  font-size: 18px;
  font-weight: 200;
}

.jobsdetailpagenavbar {
  padding: 50px 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
}

.jobdetailtop {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 576px) {
  .jobdetailtop {
    height: 50vh;
  }
}
.jobdetailtop .jobdetailtopmedia {
  width: 100%;
  height: 75%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;

  /*
  -webkit-mask-image: radial-gradient(circle, black 20%, transparent 50%);
  mask-image: radial-gradient(circle, black 20%, transparent 50%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
   */

  object-fit: contain;
  object-position: center center;
}
@media screen and (max-width: 576px) {
  .jobdetailtop .jobdetailtopmedia {
    height: 100%;
    -webkit-mask-image: radial-gradient(circle, black 20%, transparent 80%);
    mask-image: radial-gradient(circle, black 20%, transparent 80%);
  }
}
.jobdetailtop .jobdetailtopmedia > * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 576px) {
  .jobdetailtop .jobdetailtopmedia > * {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.jobdetailtop .jobdetailtopcontent {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.jobdetailtop .jobdetailtopcontent .jobdetailtitle {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 50px;
  padding: 30px 0;
  font-weight: 600;
  position: relative;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
@media screen and (max-width: 576px) {
  .jobdetailtop .jobdetailtopcontent .jobdetailtitle {
    font-size: 30px;
    padding: 10px 0;
  }
}
.jobdetailtop .jobdetailtopcontent .jobdetailtitle::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(175, 34, 39, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}
.jobdetailtop .jobdetailtopcontent p {
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: 200;
  margin: 50px 0;
  width: 900px;
  max-width: 100%;
}
@media screen and (max-width: 576px) {
  .jobdetailtop .jobdetailtopcontent p {
    display: none;
  }
}

.playbtn {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 65px;
  color: #fff;
  opacity: 0.5;
  transition: 0.3s ease;
}
.playbtn .ri-play-line {
  padding-left: 7px;
}

.productionvideo + .playbtn {
  transition: 0.3s ease;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.productionvideo.notplaying + .playbtn {
  opacity: 0.5;
  visibility: visible;
}
.productionvideo.playing + .playbtn {
  opacity: 0;
  visibility: hidden;
}
.productionvideo:hover + .playbtn {
  opacity: 0.5;
  visibility: visible;
}

.jobportfolios {
  margin: 100px 0;
}
.jobportfolios .jobportfoliolist {
  position: relative;
  list-style: none;
  padding: 0;
  padding-right: 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.jobportfolios .jobportfoliolist::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100vw;
  background-color: rgba(175, 34, 39, 0.4);
}
.jobportfolios .jobportfoliolist li {
  padding: 30px 10px;
  font-size: 22px;
  color: #fff;
  font-weight: 300;
  position: relative;
  z-index: 2;
  border-bottom: 2px solid #AF2227;
  cursor: pointer;
}
.jobportfolios .jobportfoliolist li:last-child {
  border: none;
}
.jobportfolios .jobportfoliolist li::before {
  content: "";
  width: calc(100% + 10px);
  height: 100%;
  position: absolute;
  right: -10px;
  top: 0;
  background: #AF2227;
  background: linear-gradient(270deg, #AF2227 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
}
.jobportfolios .jobportfoliolist li.active::before {
  opacity: 0.3;
}
.jobportfolios .jobportfoliodetail .jobportfoliodetailtopmedia .jobportfoliotopvideo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.jobportfolios .jobportfoliodetail .jobportfoliodetailtopmedia .jobportfoliotopvideo video {
  width: 100%;
}
.jobportfolios .jobportfoliodetail .jobportfoliodetailtopmedia .jobportfoliotopvideo.playing .playbtn {
  opacity: 0;
}
.jobportfolios .jobportfoliodetail .jobportfoliodetailtopmedia .jobportfoliotopvideo:hover .playbtn {
  opacity: 0.8;
}
.jobportfolios .jobportfoliodetail .jobportfoliodetailtopmedia img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.jobportfolios .jobportfoliodetail .jobportfoliodetailtitle {
  font-size: 33px;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 20px;
}
.jobportfolios .jobportfoliodetail .jobportfoliodetailcontent {
  padding: 0 0 20px 0;
}
.jobportfolios .jobportfoliodetail .jobportfoliodetailcontent p {
  color: #fff;
  font-size: 18px;
}
.jobportfolios .jobportfoliodetail .owl-jobportfoliodetailimages .item a img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */


.detailpageportfolio{
  padding: 50px 0;
}

.activejob .activejobmedia{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.activejob .activejobmedia .detailpageportfoliovideo video,.activejob .activejobmedia img{
  max-height:900px;
}

.detailpageportfoliotitle{
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}

.detailpageportfoliocontent{
  color: #fff;
}
.allworks{
  margin-top: 50px;
}
.allworks .workshead{
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  color: #fff;
}
.allworks .workcard{
  margin: 15px 0;
  padding: 10px;
  cursor: pointer;
}
.allworks .workcard .videoholder{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.allworks .workcard img,.allworks .workcard video{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.allworks .workcard .workname{
  color: #fff;
  font-size: 25px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin-top: 5px;
}


@media screen and (max-width: 768px) {
  .allworks .workshead{
    font-size: 25px;
  }

  .allworks .workcard .workname{
    font-size: 20px;
  }
  .detailpageportfoliotitle{
    font-size: 22px;
  }
  .activejob .activejobmedia{
    margin-bottom: 5px;
  }
}