@import url('https://fonts.cdnfonts.com/css/gotham');
@import url('https://fonts.cdnfonts.com/css/circular-std');

* { 
    font-family: 'Gotham', sans-serif;
}

.circular-book { 
    font-family: 'Circular Std', sans-serif;
    font-weight: 450;
}
.circular {
    font-family: 'Circular Std', sans-serif;
    font-weight: 500;
}
.circular-medium { 
    font-family: 'Circular Std', sans-serif;
    font-weight: 700;
}
.circular-black { 
    font-family: 'Circular Std', sans-serif;
    font-weight: 900;
}

.infinite { 
    animation-iteration-count: infinite;
}
.fade-in-infinte {
	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
}
.fade-in-bottom {
    visibility: visible !important;
	-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.fade-out {
	-webkit-animation: fade-out 0.5s ease-out both;
	        animation: fade-out 0.5s ease-out both;
}
.tilt-in {
    visibility: visible !important;
	-webkit-animation: tilt-in-bottom-2 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: tilt-in-bottom-2 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.tracking-in {
    visibility: visible !important;
	-webkit-animation: tracking-in-expand 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
.slide-in-blur {
    visibility: visible !important;
	-webkit-animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	        animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}
.rotate-center {
	-webkit-animation: rotate-center 7.5s linear infinite both;
	        animation: rotate-center 7.5s linear infinite both;
}

.heartbeat {
	-webkit-animation: heartbeat 1.5s ease-out infinite both;
	        animation: heartbeat 1.5s ease-out infinite both;
}

.delay-1 {
    animation-delay: 0.5s;
}
.delay-2 { 
    animation-delay: 1s;
}
.delay-1-sm-1 { 
    animation-delay: 0.6s ;
}
.delay-1-sm-2 { 
    animation-delay: 0.7s ;
}
.delay-1-sm-3 { 
    animation-delay: 0.8s ;
}
.delay-1-sm-4 { 
    animation-delay: 0.9s ;
}

@-webkit-keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  
 @-webkit-keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
 @-webkit-keyframes tilt-in-bottom-2 {
    0% {
      -webkit-transform: rotateY(-30deg) translateY(300px) skewY(30deg);
              transform: rotateY(-30deg) translateY(300px) skewY(30deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateY(0deg) translateY(0) skewY(0deg);
              transform: rotateY(0deg) translateY(0) skewY(0deg);
      opacity: 1;
    }
  }
  @keyframes tilt-in-bottom-2 {
    0% {
      -webkit-transform: rotateY(-30deg) translateY(300px) skewY(30deg);
              transform: rotateY(-30deg) translateY(300px) skewY(30deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateY(0deg) translateY(0) skewY(0deg);
              transform: rotateY(0deg) translateY(0) skewY(0deg);
      opacity: 1;
    }
  }
@-webkit-keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes slide-in-blurred-top {
    0% {
      -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
              transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-blurred-top {
    0% {
      -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
              transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
  }  

 @-webkit-keyframes heartbeat {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes heartbeat {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }

@-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  
/* width */
::-webkit-scrollbar {
    height: 0.4rem;
    width: 0.4rem;
    background-color: black;
    opacity: 0;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: #262626;
    opacity: 0.4;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 40px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 8);
}


.mobile-hide { 
    display: none;
}
.desktop-hide { 
    display: block;
}

@media (min-width:768px) { 
    .mobile-hide { 
        display: block;
    }
    .desktop-hide { 
        display: none;
    }
}

body { 
    background-color: black;
}
.overflow-x-auto { 
    overflow-x: auto;
    overflow-y: hidden !important;
}
.grayscale { 
    filter: grayscale(1);
}
.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    transition-duration: 0.3s;
}
.navbar-hide { 
    background-color: rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
}

.nav-link, .navbar-brand {
    font-size: 13pt;
}

.nav-item {
    padding: 0.3rem;
}

.hide-nav { 
    visibility: hidden;
    opacity: 0;
    transition: all 1s;
    transition-duration:all 1s;
}

#mainNav  {
    transition: all 1s;
    transition-duration:all 1s;
}

.offcanvas  { 
    background-color: rgba(0, 0, 0, 1);
    /* backdrop-filter: blur(5px); */
    color: white;
    height: 100vh;
}
.offcanvas-header { 
    border-bottom: 3px solid black;
}
.offnav { 
    list-style-type: none;
    display: flex;
    flex-direction: row;
    padding-left: 5px;
    padding-right: 5px;

}

.offnav li { 
    margin: 0rem 0px;
    /* border: 1px solid white; */
    padding: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0rem;
}
.offnav li:hover { 
    background-color: rgba(0, 0, 0, 0.8);
}
.offnav li.active { 
    background-color: rgba(0, 0, 0, 0.8);    
}
.offnav li a { 
    display: block;
    text-decoration: none;
    color: white;
    /* font-size: 1rem; */
    font-weight: bold;
}
@media (min-width : 768px) { 
    .offnav li a { 
        /* font-size : 1.5rem; */
    }
}

#home {
    height: 100vh;
    width: 100%;
}
@media (min-width : 768px) {
    #home { 
        height : 100vh
    }
}
.content-header { 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0rem 6rem;
}
.content-header > img { 
    height: auto !important;
    width: 100% !important;
}
.content-header > h5 { 
    text-align: center;
    padding: 0rem;
}

@media (min-width:768px) { 
    .content-header > img { 
        width: 25% !important;
        
    }
}


.section .container-fluid {
    padding: 2rem;
}
.section {
    /* background-color: #35455A; */
    /* background-color: rgb(38, 38, 38); */
    background-color: black;
    color: white;
    position: relative;
    z-index: 3;
    width: 100%;
}
#about { 
    background-image: url('../img/bg/about.png') ;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    height : auto;
}
@media (min-width : 768px) { 
    #about { 
        height:  100vh;
        display:  flex;
        /* align-items: center; */
        padding-top: 18em;
    }

}

/* .section::before { 
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
    z-index: -1;
    background-image: url('../img/static.gif');
} */

.section-light {
    background-color: white;
    color: #0A1118;
}

.content-container { 
    transition: all 1s;
    transition-duration:all 1s;
}
#services>.container-fluid {
    position: relative;
    /* top: -80px; */
}
.scrollup { 
    transform: translateY(-680px);
    transition: all 1s;
    transition-duration:all 1s;
}
.scrollreset { 
    transform: translateY(0);
    transition: all 1s;
    transition-duration:all 1s;
}
.header-image-scroll { 
    background-position: center 680px !important;
}


.showreel-image { 
    height: 10vh;
    margin: 0.25rem 0px;
}
.showreel-image-2 {
    height: 100% !important;
}
.showreel-image-3 { 
    height: 100% !important; 
}
.showreel-image-4 { 
    height: 100% !important;
}
/* .carousel-inner { 
    height: 40vh;
} */

#previewVideo { 

    height: 25vh;
}
#previewVideo > button > i { 
    font-size: 4em;
}
@media (min-width : 768px) { 

    #showreel > .container-fluid > #previewVideo { 
        margin-top : 5em !important;
        height: 50vh;
        width: 75%;
    }
    #previewVideo > button > i { 
        font-size: 7em;
    }
    .showreel-image { 
        height: auto;
        margin: 0;
    }

    .showreel-image-2 {
        height:50% !important
    }
    .showreel-image-3 { 
        height:75% !important; 
    }
    .showreel-image-4 { 
        height:100% !important
    }
    .carousel-inner { 
        /* height: 114vh !important; */
    }
}

#showreel>.container-fluid>.wrapper-header {
    position: absolute;
    top: 20px;
}
.showreel-card { 
    width: 100%; 
    height: 20vh ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    color: white;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 0%;
}
.tab-pane { 
    padding : 0rem 0rem !important;
}
@media (min-width : 768px) {
    .showreel-card { 
        width: 100% !important; 
        height:30vh !important;
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration : none; 
        color: white;
        transition: all 0.5s;
    }
    /* .showreel-card:hover { 
        background-size: 110%;
        background-position: center;
        cursor: pointer;
    } */

}

.col-wrapper { 
    width: 100%;
    overflow: auto;
}
.wrapper-card { 
    width: 100% !important;
}
.number-client { 
    font-size : 1.5rem !important;
}
.desc-client { 
    font-size : 1.35rem !important
}
@media (min-width:768px) {
    .number-client { 
        font-size : 1rem !important;
    } 
    .desc-client { 
        font-size: 1.25rem !important;
    }
    .wrapper-card { 
        width: inherit !important;
    }
    .col-wrapper { 
        width: inherit;
        overflow: inherit;
    }
    .support-card  { 
        width: 100%;
        height: 100%;
        padding-top : 1rem;
        text-align: center;
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-transition: all 1s;
        transition: all .5s;
        text-decoration: none;
        position:relative

    }
    .support-card:hover { 
        background-size: 150%;
        cursor: pointer;
        display: block;    
    }

    .support-icon { 
        position: absolute;
        top: 0;
    }
}

/* .support-card:hover .support-card:: { 
    display: block;
}
 
.support-card::after { 
    content: "";
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 8);
    position: absolute;
    top: 0;
    left: 0;
} */
/* #services>.container-fluid>.wrapper-header {
    position: absolute;
    top: 20px;
    left: 50%;
} */

.detail-row { 
    margin : 0px 0rem;
}
@media (min-width:768px) { 
    .detail-row { 
        margin : 0px 5rem;
    }  
    .header-image { 
        height: 36vh  !important;
        background-position: center;
    }
}
.header-image {
    height: 20vh ;
    background-size: contain;
    background-position: center center ;
}
#headerService { 
    background: url('../img/bg/ourservice.jpg') no-repeat;
    /* background-position: 0px -60px !important; */
    /* background-position:center -20rem !important; */
}
#headerShowreel { 
    background:url('../img/bg/showreel-video.jpg') no-repeat;
    background-position: center center;
    position: relative;
}
.video-header { 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    
}


.img-content {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.img-etc {
    width: 40%;
    margin-left: 25px;
    /* position: absolute;
            right: 0; */
}
.logo-services { 
    border-radius: 100%;
    width: 110px;
    height: 110px;
    position: absolute;
    bottom: -14rem;
    right: 20px;
    background-color: none ;
}
@media (min-width:768px) { 
    .logo-services { 
        width: 200px;
        height: 200px;
        top: -100px;
        right: 0;
        background-color:none;
    }
}

.client-logo { 
    width: 5rem;
    padding : .5rem;
}
@media (min-width:768px) {
    .client-logo { 
        width: 10rem;
    }
}
.container-slider {
    width: auto;
    overflow: auto;
    grid-gap: 3rem;
    position: relative;
}

.portrait {
    width: 50% !important;
    height: 100% !important;
}

.landscape {
    width: 450px !important;
    height: 400px !important;
}

#slide1 {

    background: url('../img/content/show-content-1.jpg');
    background-size: cover;
    height: 300px;
    width: 300px;
}

#slide2 {
    background: url('../img/content/show-content-1.jpg');
    background-size: cover;
    height: 300px;
    width: 300px;
}

#slide3 {
    background: url('../img/content/show-content-1.jpg');
    background-size: cover;
    height: 300px;
    width: 300px;
}

#slide4 {
    background: url('../img/content/show-content-1.jpg');
    background-size: cover;
    height: 300px;
    width: 300px;
}
/* .modal { 
    backdrop-filter: blur(7px) !important;
    transition-duration: 1s;
} */

.carousel-item img { 
    height: 150vh;
    width: 100% ;
    object-fit: contain;
    object-position: center !important;
}
.nav-tabs { 
    border : none !important;
}
.nav-tabs .nav-link { 
    border-radius: 0px ;
    color : black;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: white;
    background-color: black ;
    border-color: #dee2e6 #dee2e6 #fff;
}

.contact-profile { 
    width:110px;
    height: 110px;
}

#business { 

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    height: auto;

}

@media (min-width : 768px) { 
    #business { 
        height: 70vh;
    }
}
#businessVideo {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    width: 100%;
    object-fit: cover;
    object-position: center bottom;
    height: 100%;
    z-index: -10;
}
.quote-fa::before { 
    display: none;
}
.quote-fa::after { 
    display: none;
}
.quote-fa { 
    font-size: 1.8rem;
}
@media (min-width : 768px) {
    .quote-fa { 
        font-size: calc(1.375rem + 1.5vw);
    }
    .quote-fa::before { 
        display: unset;
        font-family: "Font Awesome 5 Free";
        content: '\f10d';
        color: white;
        font-weight: 900;
        font-size: 35pt;
        position: relative;
        top: -30px;
    }
    .quote-fa::after { 
        display: unset;
        font-family: "Font Awesome 5 Free";
        content: '\f10e';
        color: white;
        font-weight: 900;
        font-size: 35pt;
        position: relative;
        top: -30px;
    }
}

.location-gif { 
    width: 100%;
    object-fit: cover;
}

#footer { 
    /* background:fixed url('../img/bg/footer.jpg') no-repeat; */
    background-color: black !important;

}
.footer-text  {
    width: 100%;
    text-align: center;
}

@media (min-width:768px) {
    .footer-text { 
        width: 50%;
        text-align: left;
    }
}

/* setting text for responsive  */  
.text { 
    width: 90%;
}
h1.text-overlarge {
    font-size: 30pt;
}

h1.text-overxlarge {
    font-size: 45pt;
}

h1.text-overxxlarge {
    font-size: 60pt;
}

@media (min-width : 768px) {
    .text { 
        width: 50%;
    }
    h1.text-overlarge {
        font-size: 50pt;
    }
    
    h1.text-overxlarge {
        font-size: 65pt;
    }
    
    h1.text-overxxlarge {
        font-size: 80pt;
    }
}