@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "Monument";
  src: url("/font/MonumentExtended-Bold.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
}

.para {
  font-size: 24px;
  margin: 30px 10px;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent !important;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #BB2649, purple, #BB2649, yellow) left no-repeat !important;
  height: 100px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #BB2649, purple, #BB2649, yellow) left no-repeat !important;
}

.modal-backdrop.show {
  opacity: 0;
}

.flex {
  display: flex;
  align-items: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
}

::-moz-selection {
  color: #BB2649;
}

::selection {
  color: #BB2649;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  color: #fff;
  background: #111215;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden !important;
}

img {
  width: 100%;
  height: auto;
}

span, a, a:hover {
  display: inline-block;
  color: inherit;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 2px;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

p {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 2;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

a, span {
  display: inline-block;
  color: #fff;
}

a:hover, span:hover {
  text-decoration: none;
}

.container {
  max-width: 70%;
}

.custom-font {
  font-family: "Poppins", sans-serif;
}

.tsm {
  font-size: 16px;
}

/* ============== [custom cursor] ================ */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50px;
  border: 1px solid #BB2649;
  transition: transform 0.2s ease;
  transform-origin: center center;
  pointer-events: none;
  z-index: 10000000;
  box-shadow: 0px 0px 20px #BB2649;
}
@media only screen and (max-width: 767px) {
  .cursor {
    display: none;
  }
}

.grow, .grow_small {
  transform: scale(2);
  background: #fff;
  mix-blend-mode: difference;
  border: none;
}

.grow_small {
  transform: scale(3);
}

.grow_bg {
  background: rgba(187, 38, 73, 0.7411764706);
  transform: scale(2);
  box-shadow: 0px 0px 9px #bb2649;
  border: none;
}

/* ===================== [custom cursor end] ====================== */
/* ====================== [ water-effect-slider ] ====================== */
nav {
  position: relative;
}
nav a {
  color: #fff;
  text-decoration: none;
  position: absolute;
  top: 50vh;
  z-index: 1;
  padding: 9px 27px;
  font-family: poppins;
  overflow: hidden;
  transition: 0.5s;
}
nav:hover {
  color: #fff;
}
nav a.next {
  right: 20px;
}
nav a.prev {
  left: 20px;
}

/* ====================== [ Navigation ] ====================== */
.top_nav {
  position: fixed;
  z-index: 99999;
  width: 100%;
}
.top_nav .nav_container {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(157, 156, 156, 0.2196078431);
  position: relative;
}
.top_nav .nav_container .logo img {
  width: 240px;
}
.top_nav .nav_container .menu-icon {
  cursor: pointer;
}
.top_nav .nav_container .menu-icon .icon {
  margin-top: 10px;
  position: relative;
  width: 35px;
  height: 24px;
}
.top_nav .nav_container .menu-icon .icon i {
  display: block;
  width: 35px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.3s ease-in-out;
}
.top_nav .nav_container .navbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(157, 156, 156, 0.2196078431);
}
@media only screen and (max-width: 767px) {
  .top_nav .nav_container {
    padding: 12px 20px 10px;
  }
  .top_nav .nav_container .logo img {
    width: 150px;
  }
  .top_nav .nav_container .menu-icon .icon {
    width: 25px;
  }
  .top_nav .nav_container .menu-icon .icon i {
    width: 25px;
    height: 1px;
  }
}

.menu-icon.cross .icon i:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.menu-icon.cross .icon i:nth-child(2) {
  opacity: 0;
}

.menu-icon.cross .icon i:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.hamenu {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #111215;
  display: none;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  height: 0;
  padding-top: 8%;
}
.hamenu li {
  margin: 1rem 0;
  font-size: 4rem;
  font-weight: 600;
  font-family: "Monument", sans-serif;
}
.hamenu li .nm {
  font-size: 20px;
  color: #BB2649;
  margin-right: 10px;
  top: -1.2em;
}

.sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.sub-menu .sub-link {
  margin: 10px 0;
}

.link, .sub-link, .back {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
}

.marquees {
  background: #000;
  color: #eee;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 7em;
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.marquees .marquees__inner {
  -webkit-font-smoothing: antialiased;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  flex: auto;
  flex-direction: row;
  font-family: "Monument", sans-serif;
}
.marquees .marquees__inner .marquees__part {
  flex-shrink: 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-smooth: always;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: #fff;
  letter-spacing: 2px;
}
.marquees .marquees__inner .marquees__part img {
  width: 140px;
  margin-left: 20px;
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.ag-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333; /* Change based on your theme */
  justify-content: center;
  align-items: center;
  z-index: 999999;
  flex-direction: column;
  color: white;
  font-size: 2rem;
  display: none;
}
.ag-page-loader .apl-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.ag-page-loader .apl-count-con {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 70%;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}
.ag-page-loader .apl-count-con span {
  font-size: 40px;
  font-family: "Monument", sans-serif;
}
.ag-page-loader .apl-count-con img {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .ag-page-loader .apl-count-con {
    width: 85%;
  }
  .ag-page-loader .apl-count-con span {
    font-size: 16px;
  }
  .ag-page-loader .apl-count-con img {
    width: 50%;
  }
}

.search-container {
  text-align: center;
}
.search-container #search-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background-color: rgba(157, 156, 156, 0.2196078431);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 10px 25px;
  height: 60px;
  color: #fff;
}
.search-container #search-input:-webkit-autofill {
  background-color: rgba(157, 156, 156, 0.2196078431);
}
.search-container #search-input:autofill {
  background-color: rgba(157, 156, 156, 0.2196078431);
}

#client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.client-in {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: none;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
  text-align: center;
  box-shadow: none;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.31);
  margin-top: 30px;
}
.client-in img {
  max-width: 150px;
  height: auto;
}
.client-in p {
  font-size: 16px;
  margin-top: -10px;
}
@media only screen and (max-width: 767px) {
  .client-in {
    width: 120px;
    margin-top: 10px;
  }
  .client-in img {
    max-width: 120px;
  }
  .client-in p {
    font-size: 12px;
    margin-top: -10px;
  }
}

.cList {
  position: relative;
  overflow: hidden;
  height: 80vh;
  padding: 20px 0;
}
.cList .client-cate {
  padding-left: 0;
  height: 100%;
  overflow: scroll;
}
.cList .client-cate li {
  padding: 15px 10px;
  border-bottom: 1px solid rgba(157, 156, 156, 0.2196078431);
  font-family: "Raleway", sans-serif;
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .cList {
    height: 30vh;
  }
  .cList .client-cate li {
    font-size: 16px;
    padding: 10px 10px;
  }
}

#client-list-2 {
  padding: 10px 50px;
}
@media only screen and (max-width: 767px) {
  #client-list-2 {
    padding: 10px;
  }
}

.cookies-popup {
  position: fixed;
  z-index: 99;
  right: 0;
  top: 90vh;
  border-radius: 6px;
  width: 100%;
  background: rgba(0, 0, 0, 0.39);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px 50px;
  margin: 0 auto;
  font-family: "Raleway", sans-serif;
  display: none;
}
.cookies-popup img {
  width: 50px;
}
.cookies-popup span {
  font-size: 16px;
}
.cookies-popup span a {
  text-decoration: underline;
}
.cookies-popup span.mob {
  display: none;
}
.cookies-popup span.web {
  display: block;
}
.cookies-popup button {
  background: #444444;
  color: #fff;
  padding: 10px 13px;
  border: 0;
  border-radius: 6px;
}
@media only screen and (max-width: 767px) {
  .cookies-popup {
    right: 0px;
    top: 85vh;
    left: 0px;
    padding: 20px 15px;
  }
  .cookies-popup button {
    border-radius: 25px;
    padding: 6px 8px;
    font-size: 10px;
  }
  .cookies-popup img {
    width: 30px;
  }
  .cookies-popup span {
    font-size: 12px;
  }
  .cookies-popup span.mob {
    display: block;
  }
  .cookies-popup span.web {
    display: none;
  }
}

.content .section_heading span {
  font-size: 3rem;
}
.content .small-heading {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.content p {
  margin-bottom: 2rem;
  font-size: 18px;
}
.content ul {
  margin-left: 30px;
}
.content ul li {
  list-style: decimal-leading-zero;
}
@media only screen and (max-width: 767px) {
  .content .section_heading span {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 1440px) and (min-width: 1366px) {
  .hamenu {
    padding-top: 7%;
  }
  .hamenu li .nm {
    top: -1.5em;
  }
  .link, .sub-link, .back {
    font-size: 1em;
  }
}
.bg {
  position: absolute;
  z-index: 1;
}

.hero-section {
  position: relative;
  /* top: 100px; */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 900px;
  overflow: hidden;
  text-align: center;
}
.hero-section .overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5803921569);
}
.hero-section #video-box {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url("/image/film-production.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-section #video-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-section .heroText {
  left: 5%;
  position: absolute;
  z-index: 20;
  top: 20%;
}
.hero-section .heroText h1 {
  font-size: 90px;
  text-transform: uppercase;
  font-family: "Monument", sans-serif;
  font-weight: 800;
  line-height: 90px;
  text-align: left;
}
.hero-section .heroText h1:first-child {
  translate: -20px 0;
}
.hero-section .heroText h1:nth-child(2) {
  translate: 20% 0;
}
.hero-section .heroText h1:nth-child(5) {
  translate: 25%;
}
.hero-section .heroText h1:nth-child(7) {
  translate: 55%;
}
@media only screen and (max-width: 1600px) and (min-width: 1500px) {
  .hero-section .heroText h1 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section .heroText h1 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .heroText h1 {
    font-size: 30px;
    line-height: 45px;
  }
  .hero-section .heroText h1:first-child {
    translate: 0px 0;
  }
  .hero-section .heroText h1:nth-child(2) {
    translate: 10% 0;
  }
  .hero-section .heroText h1:nth-child(5) {
    translate: 10%;
  }
  .hero-section .heroText h1:nth-child(7) {
    translate: 30%;
  }
}

.creativity-section {
  position: relative;
}
.creativity-section .bg-animation {
  position: absolute;
  z-index: 1;
}
.creativity-section .creative-text {
  font-size: 3.1rem;
  font-weight: 900;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
}
.creativity-section .creative-text #knw, .creativity-section .creative-text #pst {
  color: black;
  -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #BB2649;
  font-size: 3.9rem;
}
.creativity-section .creative-text #rsc, .creativity-section .creative-text #exc {
  color: black;
  -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  font-size: 3.9rem;
}
.creativity-section .creative-text #crt, .creativity-section .creative-text #pro {
  background: linear-gradient(45deg, #BB2649, purple, #BB2649, yellow) left no-repeat;
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 1s ease-in-out;
  font-size: 3.9rem;
}
.creativity-section .gif-container {
  z-index: 2;
  position: relative;
}
.creativity-section .gif-container img {
  margin-top: 150px;
}

.section-padding {
  padding: 8em 0 6em;
  position: relative;
}

.creativity-section.section-padding {
  padding: 7em 0 44em;
}
.creativity-section.section-padding > img {
  bottom: -180px;
  position: absolute;
}

.line-re {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
  overflow: hidden;
  position: relative;
}

.section_heading {
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
.section_heading span {
  background: -webkit-linear-gradient(#ffffff, #d3d3d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2em;
  font-weight: 800;
  font-family: "Monument", sans-serif;
}

.small-heading {
  overflow: hidden;
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}
.small-heading span {
  font-size: 1.5rem;
  font-family: "Monument";
}

.about-btn {
  font-size: 2em;
  font-weight: 600;
  padding-top: 60px;
  font-family: "raleway", sans-serif;
}
.about-btn img {
  width: 45px;
  margin-left: 20px;
  transform: rotate(-45deg);
  transition: 0.3s transform ease-in-out;
}
.about-btn:after {
  content: "";
  height: 4px;
  background-color: #fff;
  width: auto;
  display: block;
  margin-top: 15px;
}
.about-btn:hover img {
  transform: rotate(0deg);
  transition: 0.3s transform ease-in-out;
}

.joint-btn {
  font-size: 22px;
  font-weight: 600;
  padding-top: 25px;
  font-family: "raleway", sans-serif;
}
.joint-btn img {
  width: 25px;
  margin-left: 10px;
  transform: rotate(-45deg);
  transition: 0.3s transform ease-in-out;
}
.joint-btn:after {
  content: "";
  height: 2px;
  background-color: #fff;
  width: auto;
  display: block;
  margin-top: 8px;
}
.joint-btn:hover img {
  transform: rotate(0deg);
  transition: 0.3s transform ease-in-out;
}

.jointV {
  padding: 20px 0;
}

.abt-jpg {
  margin: 30px 0 0 0;
}

.view-btn {
  font-size: 2em;
  font-weight: 600;
  padding-top: 200px;
}
.view-btn img {
  width: 45px;
  margin-left: 15px;
  transform: rotate(-45deg);
  transition: 0.3s transform ease-in-out;
}
.view-btn:after {
  content: "";
  height: 4px;
  background-color: #fff;
  width: 20rem;
  display: block;
  margin: 15px auto 15px;
}
.view-btn:hover img {
  transform: rotate(0deg);
  transition: 0.3s transform ease-in-out;
}

.down-scroll {
  transform: translate(100px, 250px);
  position: absolute;
  top: 215px;
  right: 200px;
}
.down-scroll img {
  width: 150px;
  animation: rotate-btn 10s linear infinite;
}

.d-scroll {
  display: block;
  margin: auto;
  width: 200px;
  margin-top: 50px;
}
.d-scroll img {
  animation: rotate-btn 10s linear infinite;
}

@keyframes rotate-btn {
  to {
    transform: rotate(360deg);
  }
}
.c-summary_list li {
  border-bottom: 1px solid #4d4d4d;
}
.c-summary_list li .c-summary_list_item {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.c-summary_list li .c-summary_list_item a {
  padding: 1.2rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
}
.c-summary_list li .c-summary_list_item a sup {
  color: #BB2649;
  top: -1em;
  margin-right: 30px;
  font-weight: 400;
  font-size: 1.3rem;
}
.c-summary_list li .c-summary_list_item:after {
  content: "";
  width: 0;
  border-bottom: 2px solid #fff;
  transition: width 0.3s ease-in-out;
  position: absolute;
  bottom: -1px;
}
.c-summary_list li .c-summary_list_item:hover:after {
  content: "";
  width: 100px;
  border-bottom: 2px solid #BB2649;
  transition: width 0.3s ease-in-out;
}
.c-summary_list li p {
  font-size: 22px;
  width: 70%;
  margin-left: 5%;
  padding: 0 0 30px 0;
  line-height: 40px;
}

/*--------------------------------------------------
## Recent Works Carousel
---------------------------------------------------*/
.section-w {
  position: relative;
  margin-bottom: 5rem;
}

.a-recent-works {
  display: block;
  padding-top: 0% !important;
  padding-bottom: 0;
}
.a-recent-works .recent-works-bg-text {
  position: absolute;
  top: 43%;
  transform: translateX(50%);
  font-size: 200px;
  white-space: nowrap;
  font-weight: 900;
  font-family: "Monument", sans-serif;
  pointer-events: none;
  background: -webkit-linear-gradient(#000000, #adadad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 10em;
  font-weight: 800;
}
.a-recent-works .recent-works-wrapper {
  display: inline-flex;
  flex-wrap: nowrap;
  flex-direction: row;
  width: auto;
  align-items: center;
  margin-left: 40%;
}
.a-recent-works .ar-work {
  display: block;
  margin-right: 100px;
  flex-basis: 33vw;
  min-width: 28vw;
  position: relative;
}
.a-recent-works .ar-work a {
  text-decoration: none;
  display: block;
  overflow: hidden;
}
.a-recent-works .ar-work a .ar-work-image,
.a-recent-works .ar-work a .ar-work-image img {
  width: 400px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.a-recent-works .ar-work a .ar-work-title {
  font-size: 1.5em;
  letter-spacing: 0.05em;
  padding: 10px 0px 0 10px;
  font-family: "Monument", sans-serif;
  position: absolute;
  text-transform: uppercase;
  font-weight: 900;
}
.a-recent-works .ar-work a .ar-work-cat {
  margin-top: 50px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding-left: 11px;
  color: rgba(160, 160, 160, 0.6);
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}

body.dark .ar-work-title,
.a-recent-works.dark .ar-work-title {
  color: #fff;
}

body.dark .ar-work-cat,
.a-recent-works.dark .ar-work-cat {
  color: rgba(255, 255, 255, 0.416);
}

.recent-works-button {
  text-align: center;
  margin-top: 75px;
  display: block;
}

.a-recent-works-nav {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.a-recent-works .a-button.style_1 {
  left: 50%;
  transform: translateX(-50%);
  margin-top: 100px;
}

.a-recent-works.navby-scroll .a-recent-works-nav {
  display: none;
}

.a-recent-works-nav div {
  display: block;
  float: left;
  cursor: pointer;
}

.a-recent-works-nav div i {
  font-size: 25px;
}

.a-recent-works.dark .recent-works-bg-text {
  color: hsla(0, 0%, 100%, 0.2);
}

.a-recent-works.dark .a-recent-works-nav div,
.a-recent-works.dark .ar-work-title {
  color: #fff;
}

.a-recent-works.dark .a-button.style_1 {
  background-color: hsla(0, 0%, 100%, 0.2);
}

.no-gap {
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (max-width: 1920px) {
  .section-w .wrappers {
    max-width: 100% !important;
  }
}
.client {
  position: relative;
  width: 80%;
  margin: auto;
}

.client-wrapper {
  display: flex;
  position: relative;
  flex-wrap: wrap;
}

.client-wrapper:nth-child(2) {
  animation-duration: 22s;
}

.client-wrapper:nth-child(3) {
  animation-duration: 32s;
}

@keyframes slide {
  to {
    transform: translateX(-40%);
  }
}
.client-inner {
  margin: 25px 45px;
}
.client-inner img {
  width: 100px;
}

#myCanvas {
  outline: 1px solid;
  border: 2px red solid;
  border-top: 2px lime solid;
  border-left: 2px lime solid;
  box-shadow: 5px 5px 10px 0px red;
  background: #000;
}

footer {
  padding: 6em 0 5em;
  border-top: 1px solid #2e2e2e;
}
footer .footer-inner {
  text-align: center;
}
footer .footer-inner img {
  width: 35%;
  margin-bottom: 30px;
  height: auto;
}
footer .footer-inner h2 {
  font-size: 45px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Monument", sans-serif;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #BB2649, purple, #BB2649, yellow) left no-repeat;
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 1s ease-in-out;
}
footer .footer-inner .links {
  display: inline-block;
  margin-bottom: 20px;
}
footer .footer-inner .links a {
  padding: 22px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.2px;
  font-weight: 600;
}
footer .footer-inner .socials img {
  width: 20px;
  display: block;
  margin: 0 25px;
}

.copyright {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #2e2e2e;
}

.c-header_title {
  overflow: hidden;
  position: relative;
}

.aboutHero {
  background-image: url("/image/about-bg.webp");
  background-size: cover;
  height: 100vh;
  position: relative;
}
.aboutHero .abInner {
  position: absolute;
  top: 0;
  width: 50%;
  left: 0;
  bottom: 0;
  background: rgba(17, 18, 21, 0.88);
  padding: 15% 50px 0;
}
.aboutHero .abInner h1 {
  font-size: 90px;
  text-transform: uppercase;
  font-family: "Monument", sans-serif;
  font-weight: 800;
  line-height: 90px;
  text-align: left;
}
.aboutHero .abInner h1:first-child {
  translate: -20px 0;
}
.aboutHero .abInner h1:nth-child(2) {
  translate: 20% 0;
}
.aboutHero .abInner h1:nth-child(5) {
  translate: 25%;
}
.aboutHero .abInner h1:nth-child(7) {
  translate: 55%;
}
@media only screen and (max-width: 1600px) and (min-width: 1500px) {
  .aboutHero .abInner h1 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .aboutHero .abInner h1 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutHero .abInner h1 {
    font-size: 30px;
    line-height: 45px;
  }
  .aboutHero .abInner h1:first-child {
    translate: 0px 0;
  }
  .aboutHero .abInner h1:nth-child(2) {
    translate: 10% 0;
  }
  .aboutHero .abInner h1:nth-child(5) {
    translate: 10%;
  }
  .aboutHero .abInner h1:nth-child(7) {
    translate: 30%;
  }
}
.aboutHero .abInner .text {
  padding-top: 5%;
}
.aboutHero .abInner .text .ab-line {
  overflow: hidden;
  position: relative;
}
.aboutHero .abInner .text .ab-line span {
  font-family: "Raleway", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
}
@media only screen and (max-width: 767px) {
  .aboutHero {
    background-position-x: center;
    height: 65vh;
  }
  .aboutHero .abInner {
    width: 100%;
    padding: 35% 20px 0;
  }
  .aboutHero .abInner .text .ab-line span {
    font-size: 18px;
    line-height: 30px;
  }
}

.abouts {
  padding: 10% 0 0;
}

.ab {
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
}
.ab span {
  font-family: "Raleway", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
}

.grid-logo {
  display: flex;
  margin-left: 0%;
  margin: 5% 0;
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
}
.grid-logo .logo-item {
  width: 100%;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.253);
  transition: opacity 0.8s cubic-bezier(0.26, 1, 0.48, 1);
  overflow: hidden;
  position: relative;
}
.grid-logo .logo-item img {
  width: 60%;
}
.grid-logo .logo-item p {
  margin-top: -30px;
  color: #555454;
  font-size: 16px;
  letter-spacing: 1px;
}
.grid-logo .bottom-border::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.253);
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.lazyloaded {
  transition: opacity 0.8s cubic-bezier(0.26, 1, 0.48, 1);
  opacity: 1;
}

.whatwe {
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
}
.whatwe h4 {
  font-family: "Monument", sans-serif;
  color: #fff;
  font-size: 45px;
}
.whatwe ul {
  padding-left: 0;
  margin-top: 20px;
}
.whatwe ul li {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  padding: 10px 6px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.contactHero {
  height: 100vh;
  background: url("/image/noise-full.png");
}
.contactHero .cInner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.contactHero .cInner .details {
  padding: 10% 20px 50px 5%;
  width: 62%;
}
.contactHero .cInner .details h1 {
  font-size: 90px;
  text-transform: uppercase;
  font-family: "Monument", sans-serif;
  font-weight: 800;
  line-height: 90px;
  text-align: left;
}
.contactHero .cInner .details h1:first-child {
  translate: -20px 0;
}
.contactHero .cInner .details h1:nth-child(2) {
  translate: 20% 0;
}
.contactHero .cInner .details h1:nth-child(5) {
  translate: 25%;
}
.contactHero .cInner .details h1:nth-child(7) {
  translate: 55%;
}
@media only screen and (max-width: 1600px) and (min-width: 1500px) {
  .contactHero .cInner .details h1 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .contactHero .cInner .details h1 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .contactHero .cInner .details h1 {
    font-size: 30px;
    line-height: 45px;
  }
  .contactHero .cInner .details h1:first-child {
    translate: 0px 0;
  }
  .contactHero .cInner .details h1:nth-child(2) {
    translate: 10% 0;
  }
  .contactHero .cInner .details h1:nth-child(5) {
    translate: 10%;
  }
  .contactHero .cInner .details h1:nth-child(7) {
    translate: 30%;
  }
}
.contactHero .cInner .details .c-header_title {
  font-size: 65px;
  padding: 30px 0 50px;
}
.contactHero .cInner .details .det {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
}
.contactHero .cInner .details .det .item {
  width: 100%;
  text-align: left;
}
.contactHero .cInner .details .det .item h6 {
  font-size: 25px;
  font-family: "Monument", sans-serif;
  font-weight: 700;
}
.contactHero .cInner .details .det .item a {
  color: #fff;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.contactHero .cInner .details .det .item a:hover {
  color: #BB2649;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .contactHero .cInner .details .det {
    justify-content: space-between;
    flex-direction: column;
  }
  .contactHero .cInner .details .det .item {
    border-bottom: 1px solid #fff;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .contactHero .cInner .details .det .item {
    border-bottom: 0px;
    margin-bottom: 15px;
  }
}
.contactHero .cInner .cimg {
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url("/image/map.webp");
  background-position: center center;
  overflow: hidden;
  width: 38%;
  background-repeat: no-repeat;
}
.contactHero .cInner .cimg .cover {
  width: 100%;
  height: 0%;
  background-color: #000;
}
.contactHero .socials {
  position: absolute;
  bottom: 50px;
  left: 50px;
}
.contactHero .socials a {
  margin-right: 20px;
}
.contactHero .socials a img {
  width: 20px;
}
.contactHero .cright {
  position: absolute;
  bottom: 50px;
  left: 49%;
}
.contactHero .cright p {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contactHero .cright {
    bottom: 25%;
    right: 0%;
    left: 90%;
  }
  .contactHero .cright p {
    writing-mode: vertical-lr;
    font-size: 24px;
  }
}
.contactHero .join {
  padding-top: 0%;
  display: flex;
}
.contactHero .join a {
  padding-right: 30px;
}
.contactHero .join a .about-btn {
  padding-top: 40px;
}

.partner-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin: 3rem 0;
}
.partner-wrap .partner-div {
  position: relative;
  margin: 10px 20px;
  width: 100%;
}
.partner-wrap .partner-div img {
  width: 100%;
}

.serv .section_heading span {
  font-size: 2rem;
}

.career {
  width: 100%;
}
.career form {
  width: 80%;
  display: block;
  margin: auto;
}
.career form h3 {
  text-align: center;
}
.career form .form-control {
  background: rgba(17, 17, 17, 0.0666666667);
  height: 50px;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  margin-bottom: 20px;
  border: 1px solid #343637;
  color: #fff;
}
.career form input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  outline: 0;
  border: 1px solid red;
}

.form-control:focus {
  box-shadow: none;
}

label.file {
  position: relative;
  display: block;
  width: 100%;
  font-size: 80%;
  text-align: center;
  border: 1px solid #343637;
  margin: 20px 0;
  padding: 3rem;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  color: #ccc;
}

label.file:hover {
  background-color: rgba(67, 64, 64, 0.3);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}

label.file:active,
label.file.focus {
  border-color: none;
}

.btn-primary {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 35px;
}
.btn-primary:hover {
  background: transparent;
}

button {
  color: #eee;
  background-color: #666;
  padding: 1rem 2rem;
  border: 0;
  outline: none;
}

button:hover,
button:focus {
  background-color: #333;
}

button:active {
  color: #fff;
  background-color: #000;
}

.sml {
  display: inline-block;
  color: #eee;
  background-color: rgba(0, 200, 0, 0.67);
  border-radius: 1rem;
  font-size: smaller;
  margin: 1rem 0 0 0;
  padding: 0.67rem 1rem;
}

.proShow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.proShow .contain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.proShow .contain .reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}
.proShow .contain .reveal img {
  height: 100%;
  width: 85%;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: left;
}
.proShow .secondT {
  margin-top: 35px;
  margin-bottom: -35px;
}

.service {
  margin: 2rem 0 10rem;
}
.service .section_heading {
  margin-bottom: 10px;
  font-size: 22px;
}
.service p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.statistic {
  padding: 0 70px;
}
.statistic .stats-box {
  margin-top: 50px;
}
.statistic .stats-box h3 {
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 15px;
  font-family: "Monument", sans-serif;
}
.statistic .stats-box p {
  font-size: 20px;
  line-height: 35px;
}
.statistic .stats {
  display: flex;
  flex-wrap: wrap;
}
.statistic .stats .numb {
  padding: 30px 20px;
}
.statistic .stats .numb .section_heading {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 4rem;
}

.portfolio-box {
  display: flex;
  width: 100%;
  margin: 50px 0;
  align-items: flex-end;
}
.portfolio-box .pimg {
  width: 75%;
  border-radius: 120px 0px 120px 6px;
  padding-right: 50px;
}
.portfolio-box .pimg a {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 120px 0px 120px 6px;
  position: relative;
}
.portfolio-box .pimg a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-box .pimg a div {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 65px;
  height: 65px;
  border-radius: 50px;
  background-color: #BB2649;
  padding: 10px;
  box-shadow: 0px 0px 20px #BB2649;
}
.portfolio-box .pimg .video-box {
  width: 100%;
  height: 500px;
  border-radius: 120px 0px 120px 6px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-image: url(/image/film-production.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
.portfolio-box .pimg .video-box video {
  border-radius: 120px 0px 120px 6px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.portfolio-box .pimg img {
  width: 100%;
  border-radius: 120px 0px 120px 6px;
}
.portfolio-box .text {
  width: 25%;
  padding-bottom: 30px;
}
.portfolio-box .text h3 {
  font-family: "Monument", sans-serif;
  font-size: 25px;
}
.portfolio-box .text p {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
}

.content {
  padding-top: 20px;
}
.content h3 {
  font-family: "Monument", sans-serif;
  font-size: 25px;
}

.portfolio {
  padding: 0px 50px;
}
.portfolio .proShow .contain {
  width: 28%;
  align-items: flex-start;
}
.portfolio .proShow .contain .reveal img {
  width: 100%;
}

@media only screen and (max-width: 1400px) and (min-width: 1200px) {
  .para {
    font-size: 20px;
  }
  .container {
    max-width: 85%;
  }
  .about-btn {
    font-size: 24px;
  }
  .down-scroll {
    top: 190px;
  }
  .down-scroll img {
    width: 120px;
  }
  .creativity-section .creative-text #crt, .creativity-section .creative-text #pro,
  .creativity-section .creative-text #knw, .creativity-section .creative-text #pst,
  .creativity-section .creative-text #rsc, .creativity-section .creative-text #exc {
    font-size: 3rem;
  }
  .creativity-section .bg-animation {
    right: 0;
  }
  .creativity-section.section-padding {
    padding: 7em 0 26em;
  }
  p {
    font-size: 18px;
  }
  .section-padding {
    padding: 5em 0 5em;
  }
  .c-summary_list li p {
    font-size: 20px;
  }
  .section_heading span {
    font-size: 1.5em;
  }
  .link, .sub-link, .back {
    font-size: 1em;
  }
  .grid-logo .logo-item p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1200px) {
  .aboutHero .abInner .text .ab-line span {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 1440px) and (min-width: 1366px) {
  .aboutHero .abInner h1 {
    font-size: 50px;
    line-height: 65px;
  }
  .hamenu {
    padding-top: 7%;
  }
}
@media only screen and (max-width: 1370px) and (min-width: 1200px) {
  .aboutHero .abInner h1 {
    font-size: 50px;
    line-height: 65px;
  }
  .hamenu li .nm {
    top: -1em;
  }
  .link, .sub-link, .back {
    font-size: 3rem;
    line-height: 4rem;
  }
  .cList .client-cate li {
    font-size: 18px;
    padding: 12px 10px;
  }
  .client-in p {
    font-size: 14px;
    margin-top: -10px;
  }
  body {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 991px) {
  .aboutHero {
    height: 50vh;
    background-position: center;
  }
  .aboutHero .abInner {
    padding: 15% 30px 0;
  }
  .aboutHero .abInner h1 {
    margin-left: 20px;
  }
  .aboutHero .abInner .text .ab-line span {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }
  .portfolio-box .pimg {
    width: 70%;
    padding-right: 35px;
    border-radius: 80px 0px 80px 6px;
  }
  .portfolio-box .pimg .video-box {
    height: 350px;
    border-radius: 80px 0px 80px 6px;
  }
  .portfolio-box .pimg .video-box video {
    border-radius: 80px 0px 80px 6px;
  }
  .portfolio-box .pimg img {
    border-radius: 80px 0px 80px 6px;
  }
  .portfolio-box .text .joint-btn {
    font-size: 18px;
  }
  .portfolio-box .text .joint-btn img {
    width: 18px;
  }
  .portfolio-box .text .joint-btn:after {
    height: 1px;
  }
  .section-padding {
    padding: 5em 0 3em;
  }
  .container {
    max-width: 90%;
  }
  .section_heading span {
    font-size: 1.6em;
  }
  .whatwe .section_heading {
    margin-top: 20px;
  }
  .menu-links {
    padding-top: 20%;
  }
  .menu-links li {
    margin: 1rem 0 3rem;
  }
  .creativity-section.section-padding {
    padding: 7em 0 20em;
  }
  .abt-jpg {
    display: none;
  }
  .view-btn {
    padding-top: 100px;
  }
  .partner-div img {
    width: 60%;
  }
  .a-recent-works .ar-work a .ar-work-image, .a-recent-works .ar-work a .ar-work-image img {
    width: 100%;
  }
  .a-recent-works .ar-work {
    min-width: 35vw;
  }
  footer .footer-inner img {
    width: 50%;
  }
  .portfolio .proShow .contain .reveal img {
    width: 90%;
  }
  .content h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .service {
    margin: 1rem 0 1rem;
  }
  .service .line-re {
    line-height: 2rem;
    font-size: 1.2rem;
    text-align: justify;
  }
  .service .section_heading span {
    font-size: 1.6rem;
  }
  .statistic {
    padding: 0 20px;
  }
  .statistic .stats-box {
    margin-top: 50px;
  }
  .statistic .stats-box h3 {
    font-size: 1.8rem;
  }
  .statistic .stats {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .statistic .stats .numb {
    padding: 10px 0px;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .section-padding {
    padding: 2em 0 2em;
  }
  .section_heading span {
    font-size: 2rem;
  }
  .para {
    font-size: 18px;
  }
  .abt-jpg {
    display: none;
  }
  .down-scroll {
    top: 32%;
    right: 40%;
  }
  .down-scroll img {
    width: 80px;
  }
  .aboutHero .abInner .text .ab-line span {
    font-size: 1.2rem;
    line-height: 30px;
  }
  .aboutHero .abInner h1 {
    margin-left: 0px;
  }
  .aboutHero .abInner {
    padding: 20% 30px 0;
  }
  .portfolio-box {
    flex-direction: column;
    margin: 20px 0;
  }
  .portfolio-box .pimg {
    width: 100%;
    border-radius: 6px;
    padding-right: 0;
  }
  .portfolio-box .pimg img {
    border-radius: 50px 0px 50px 0px;
  }
  .portfolio-box .pimg .video-box {
    height: 200px;
    border-radius: 50px 0px 50px 0px;
  }
  .portfolio-box .pimg .video-box video {
    border-radius: 50px 0px 50px 0px;
  }
  .portfolio-box .text {
    width: 100%;
    padding-top: 20px;
  }
  .portfolio-box .text h3 {
    font-size: 1.6rem;
  }
  .portfolio-box .text p {
    font-size: 1.2rem;
  }
  .main-menu {
    margin-top: 0px;
  }
  .creativity-section .creative-text {
    font-size: 2.2rem;
  }
  .creativity-section .creative-text #knw,
  .creativity-section .creative-text #pst,
  .creativity-section .creative-text #rsc,
  .creativity-section .creative-text #exc,
  .creativity-section .creative-text #crt,
  .creativity-section .creative-text #pro {
    font-size: 2.2rem;
  }
  .creativity-section .bg-animation {
    display: none;
  }
  .creativity-section.section-padding > img {
    bottom: 2%;
  }
  .creativity-section.section-padding {
    padding: 5em 0 12em;
  }
  .c-summary_list {
    padding-left: 0rem;
  }
  .client {
    width: 90%;
  }
  .grid-logo .logo-item {
    width: 50%;
    border-right: none;
    padding: 0px;
  }
  .grid-logo .logo-item img {
    width: 100%;
  }
  .grid-logo .logo-item p {
    margin-top: -10px;
    font-size: 11px;
    line-height: 15px;
    padding-bottom: 20px;
  }
  .c-summary_list li .c-summary_list_item a sup {
    font-size: 1.3rem;
    margin-right: 10px;
    top: 0em;
  }
  .c-summary_list li .c-summary_list_item a {
    font-size: 1.5rem;
  }
  .c-summary_list li .c-summary_list_item {
    flex-direction: column;
    align-items: start;
  }
  .c-summary_list li p {
    width: 100%;
    padding: 0;
    font-size: 18px;
  }
  .c-summary_list_icon.u-icon {
    margin: 0 0 10px 10px;
    position: absolute;
    right: 10px;
    top: 18px;
    width: 30px;
  }
  .c-summary_list_icon.u-icon svg {
    width: 40px;
  }
  .about-btn {
    font-size: 1.2rem;
    padding-top: 20px;
  }
  .about-btn img {
    width: 30px;
  }
  .a-recent-works .ar-work {
    margin-right: 75px;
    min-width: 65vw;
  }
  .a-recent-works .ar-work a .ar-work-image, .a-recent-works .ar-work a .ar-work-image img {
    width: 100%;
  }
  .a-recent-works .ar-work a .ar-work-title {
    font-size: 1rem;
  }
  .view-btn {
    font-size: 1.5rem;
    padding-top: 130px;
  }
  .a-recent-works .recent-works-bg-text {
    top: 50%;
    font-size: 2em;
  }
  .partner-div img {
    width: 65%;
    margin-left: -30px;
    display: block;
  }
  .small-heading {
    text-align: left;
  }
  .marquees__part.about__marquee {
    font-size: 3rem;
    -webkit-text-stroke: 1px;
  }
  .marquees .marquees__inner .marquees__part img {
    width: 70px;
  }
  footer {
    padding: 3em 0 3em;
  }
  footer .footer-inner h2 {
    font-size: 24px;
  }
  footer .footer-inner img {
    width: 60%;
  }
  footer .footer-inner .links a {
    padding: 10px 14px;
    font-size: 16px;
  }
  footer .footer-inner .socials img {
    margin: 0 15px;
  }
  .copyright p {
    font-size: 16px;
  }
  p {
    font-size: 18px;
  }
  .hamenu li {
    font-size: 3rem;
    margin: 0rem;
  }
  .hamenu li .nm {
    font-size: 14px;
    color: #BB2649;
    margin-right: 10px;
    top: -1em;
  }
  .main-menu {
    margin-top: 10px;
  }
  .link, .sub-link, .back {
    font-size: 2rem;
  }
  .hero-section {
    height: 100vh;
  }
  .hero-section .heroText {
    top: 25%;
  }
  .contactHero {
    height: auto;
    background: none;
  }
  .contactHero .cInner .cimg {
    display: none;
  }
  .contactHero .cInner .details {
    padding: 20px;
    width: 100%;
  }
  .contactHero .cInner .details .c-header_title {
    font-size: 45px;
    padding: 15% 0 20px;
    line-height: 55px;
  }
  .contactHero .cInner .details .det {
    flex-direction: column;
    margin-top: 10%;
  }
  .contactHero .cInner .details .det .item {
    width: 100%;
  }
  .contactHero .socials {
    position: relative;
    left: 20px;
    top: 20px;
  }
  .marquees {
    line-height: 0;
    font-size: 0em;
  }
  .contain:nth-child(2), .contain:nth-child(3) {
    display: none;
  }
  .portfolio .proShow {
    padding: 0 20px;
    flex-direction: column;
  }
  .portfolio .proShow .contain:nth-child(2), .portfolio .proShow .contain:nth-child(3) {
    display: block;
  }
  .career form {
    width: 100%;
  }
}
.modal {
  background-color: rgba(0, 0, 0, 0.7411764706);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.modal .modal-dialog {
  width: 70%;
}
.modal .modal-content {
  background-color: rgba(0, 0, 0, 0.7411764706);
  border: none;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 30px 40px;
  border-radius: 6px;
}
.modal .modal-content .btn-close {
  background: transparent url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23BB2649'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>") center/1em auto no-repeat;
}
.modal .modal-content .modal-header {
  border-bottom: none;
}
.modal .modal-content .modal-header h1 {
  font-size: 25px;
  font-weight: 700;
}
.modal .modal-content .modal-body form .form-control {
  background-color: #000;
  height: 38px;
  margin-bottom: 25px;
  color: #fff;
  border: 1px solid #f2f2f2;
}
.modal .modal-content .modal-body form .form-control:focus {
  box-shadow: none;
}
.modal .modal-content .modal-body form button.btn {
  border: 1px solid #f2f2f2;
  background: transparent;
  padding: 10px 25px;
}/*# sourceMappingURL=style.css.map */