:root {
  --white: #fff;
  --black: #000;
}

/* 01 : Website Global CSS BOF
========================================================== */
body,
html {
  height: 100%;
}

body {
  background: var(--black);
  font-family: "Montserrat";
  color: var(--white);
}

*,
html {
  margin: 0;
  padding: 0;
}

a {
  color: var(--white);
  display: inline-block;
}

/* Common color hyperlink */
a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
}

/* Common hover color hyperlink */
a,
*:hover,
*:focus,
*:active :focus {
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
}

a img,
img {
  border: none;
  outline: none !important;
  outline-offset: 0 !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  line-height: normal;
}

/* Transition Effect CSS BOF */
a,
i,
input {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
}

/* 02 : Global Scrollbar CSS BOF
  ==================================================== */

::-webkit-scrollbar {
  width: 5px;
  height: 10px;
  background-color: #2c064b;
}

::-webkit-scrollbar-thumb {
  background-color: #26aed2;
  border-radius: 15px;
}

/* cursor variation csss */
.cursor-pointer {
  cursor: pointer;
}

/* list styling */
.list-style-disc {
  list-style: disc;
}

/* link Underline */
.text_underline {
  text-decoration: underline !important;
}

/* 03 : Heading Style CSS BOF
  =================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
  line-height: normal;
  font-style: normal;
  color: var(--white);
  margin-bottom: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
}

/* Font Color Variation CSS BOF */
.white_text {
  color: #fff;
}

.blue_text {
  color: #09bbe0;
}

.green_text {
  color: #0cbfdf;
}

/* Font Weight Variation CSS BOF */
.font_rg {
  font-weight: normal;
}

.font_bl {
  font-weight: 800;
}

.font_blk {
  font-weight: 900;
}

.font_smb {
  font-weight: 600;
}

.font_md {
  font-weight: 500;
}

/* set line clamp for content */
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp1 {
  -webkit-line-clamp: 1;
}

.line-clamp2 {
  -webkit-line-clamp: 2;
}

.line-clamp3 {
  -webkit-line-clamp: 3;
}

.line-clamp4 {
  -webkit-line-clamp: 4;
}

.normal-line-height {
  line-height: normal !important;
}

/* Z-INDEX variation */
.z-9 {
  z-index: 9;
}

.z-99 {
  z-index: 99;
}

/* FLEX PROPERTY */

.flex-0 {
  flex: 0 0 auto;
}

/* 04 : Paragraph Style CSS BOF
  =================================================== */
p,
.p {
  line-height: auto;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 0;
  font-weight: normal;
}

/* 05 : Image Style CSS BOF
  =================================================== */
img {
  margin-bottom: 0;
}

/*** Buttton Varilation CSS BOF ***/
.btn {
  background: linear-gradient(103.8deg, transparent 0%, transparent 100%);
  padding: 26px 44px;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  border-style: none;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  border-radius: 52px;
  text-transform: unset;
  box-shadow: none;
  min-width: 195px;
  line-height: normal;
  color: var(--white);
  position: relative;
  /* overflow: hidden; */
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 52px;
  padding: 2px;
  background: linear-gradient(95.44deg,
      #ff4ab9 5.84%,
      #26aed2 41.85%,
      #733ad1 77.85%);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  z-index: 0;
}

.btn:hover {
  background: linear-gradient(103.8deg,
      rgba(44, 6, 75, 0.6) 22.16%,
      rgba(234, 45, 149, 0.6) 295.98%);
  border-radius: 52px;
  text-shadow: 0px 0px 2px #fff;
}

.btn svg {
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}

.btn:hover svg {
  transform: rotate(-45deg);
}

.btn_transparent {
  background-color: transparent;
  border-style: none;
  box-shadow: none;
  outline: 0;
  position: relative;
  cursor: pointer;
}

/* 06 : Form &amp; Input Style BOF
  ==================================================== */

.form-control {
  background-color: rgb(109, 109, 109, 0.4);
  border: 1px solid transparent;
  border-radius: 10px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  font-size: 22px;
  color: #fff;
  font-family: "Montserrat";
  font-weight: normal;
  padding: 22px 20px;
  line-height: normal;
}

textarea.form-control {
  resize: none;
  overflow: auto;
  padding: 20px;
  height: 263px;
}

/** Placeholder CSS BOF **/
.form-control::placeholder {
  color: #fff;
  font-weight: 300;
  font-size: 24px;
}

.form-control::-moz-placeholder {
  color: #fff;
  font-weight: 300;
  font-size: 24px;
}

.form-control:-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
  font-size: 24px;
}

.form-control::-webkit-input-placeholder {
  color: #fff;
  font-weight: 300;
  font-size: 24px;
}

.form-control::-o-input-placeholder {
  color: #fff;
  font-weight: 300;
  font-size: 24px;
}

/* Focus State CSS BOF   */
.form-control:focus,
.form-select:focus {
  border-color: #09bbe0;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background-color: rgb(109, 109, 109, 0.4);
  color: #fff;
  outline: 0;
}

/* ======================================================
                  COMMON CONTAINER SOC
  ====================================================== */

.container {
  max-width: calc(1521px - 30px);
  padding: 0 15px;
  margin: 0 auto;
}

.header-top-space {
  padding-top: 123px;
}

/* ======================================================
              GLOBAL ANIMATION EFFECT STYLING
  ====================================================== */
.common-transform-effect {
  will-change: transform, opacity;
}

/*===================================================
               GLOBAL TITLE WRAPPER 
===================================================*/
.title-wrapper .title-h1 {
  font-size: 60px;
  line-height: 70px;
}
.title-wrapper .title-h2 {
  font-size: 40px;
  line-height: 50px;
}
.title-wrapper .subtitle-p {
  font-size: 30px;
  line-height: 40px;
}
.title-wrapper .subtitle-span {
  font-size: 24px;
  line-height: 40px;
}
/*===================================================
                 GALLERY SECTION 
===================================================*/
.gallery-sec {
  padding: 60px 0 0;
}

.gallery-sec .gallery-header {
  padding-bottom: 50px;
}

.gallery {
  display: grid;
  height: 100vh;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
}
.gallery .gallery__item{
  position: relative;
}
.gallery .gallery__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  object-position: center;
}

.gallery .gallery__item .logo {
  max-width: 393px;
  margin: auto;
  object-fit: contain;
  transition: all 400ms ease-in-out;
}

.gallery .gallery__item.logo-zoomed .logo {
  max-width: 150px !important;
  transition: all 400ms ease-in-out;
}

.gallery .gallery__item:nth-child(3).logo-zoomed {
  box-shadow: unset;
}

.gallery .gallery__item.logo-zoomed::after {
  display: none;
}

.gallery .gallery__item:nth-child(1) {
  grid-column: 1/4;
  grid-row: 1/4;
}

.gallery .gallery__item:nth-child(2) {
  grid-column: 4/7;
  grid-row: 1/4;
}

.gallery .gallery__item:nth-child(3) {
  grid-column: 3/5;
  grid-row: 3/5;
  z-index: 5;
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 20px 0px #f963bfbf;
  position: relative;
}

.gallery .gallery__item:nth-child(3):after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  padding: 1px;
  background: linear-gradient(180deg, #f963bf 0%, #09bbe0 100%);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  z-index: 0;
}

.gallery .gallery__item:nth-child(4) {
  grid-column: 1/3;
  grid-row: 4/7;
}

.gallery .gallery__item:nth-child(5) {
  grid-column: 3/5;
  grid-row: 5/7;
}

.gallery .gallery__item:nth-child(6) {
  grid-column: 5/7;
  grid-row: 4/7;
}


/* ====================================================================
=======================================================================
                  SHOWREEL SECTION SOC --- HOME
=======================================================================
==================================================================== */
.more-example-sec {
  background: linear-gradient(180deg, #000000 72.98%, #2c064b 110.22%);
  padding-bottom: 60px;
}
 
.showreel-wrapper {
  position: relative;
  padding: 0 75px;
  margin: 60px -75px 0;
}
.showreel-slider {
  width: 100%;
  height: 100%;
}
 
.showreel-slider .showreel-box .prev-work-card .pw-card-img-wrapper {
  max-width: 100%;
  /* max-height: 480px; */
  max-height: 350px;
  min-height: 350px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
@media(max-width:1699.98px){
  .showreel-slider .showreel-box .prev-work-card .pw-card-img-wrapper{
    min-height: 300px;
    max-height: 300px;
  }
}
@media(max-width:1399.98px){
  .showreel-slider .showreel-box .prev-work-card .pw-card-img-wrapper{
    min-height: 280px;
    max-height: 280px;
  }
}
@media(max-width:1199.98px){
  .showreel-slider .showreel-box .prev-work-card .pw-card-img-wrapper{
    min-height: 250px;
    max-height: 250px;
  }
}
 
.showreel-wrapper {
  position: relative;
  padding: 0 75px;
  margin: 60px -75px 0;
}

.showreel-slider {
  width: 100%;
  height: 100%;
}

.showreel-wrapper .swiper-button-next {
  background-image: url("../images/arrow-vector.svg");
  background-repeat: no-repeat;
  background-size: 35px 60px;
  background-position: center;
  width: 35px !important;
  height: 60px !important;
  transform: rotate(180deg);
  position: absolute;
  right: 0px !important;
}

.showreel-wrapper .swiper-button-prev {
  background-image: url("../images/arrow-vector.svg");
  background-repeat: no-repeat;
  background-size: 35px 60px;
  background-position: center;
  width: 35px !important;
  height: 60px !important;
  position: absolute;
  left: 0px !important;
}

/* ====================================================================
=======================================================================
                  SHOWREEL SECTION SOC --- SHOWREEL PAGE
=======================================================================
==================================================================== */

.previous-work-sec {
  background: linear-gradient(155.29deg, #2c064b -60.39%, #000000 94.26%);
  position: relative;
}

.previous-work-sec::before {
  content: "";
  inset: 0;
  position: absolute;
  background-image: url("../images/previous-work-sec-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.previous-work-sec .previous-work-main {
  padding: 120px 0 82px;
  position: relative;
  z-index: 1;
}

.previous-work-sec .title-wrapper {
  max-width: 1202px;
  margin: 0 auto;
}

.previous-work-main .prev-work-wrapper {
  padding-top: 60px;
}

.prev-work-wrapper .prev-work-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.prev-work-wrapper .prev-work-card .pw-card-img-wrapper {
  max-width: 100%;
  /* max-height: 480px;
  min-height: 465px; */
  max-height: 300px;
  min-height: 300px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.prev-work-card .pw-card-img-wrapper .prev-work-image {
  border-radius: 20px;
}

.prev-work-card .pw-card-img-wrapper .pw-card-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.prev-work-card:hover .pw-card-hover {
  opacity: 1;
}

.prev-work-card .pw-card-body .pw-card-title {
  font-size: 30px;
  line-height: 38px;
}

.prev-work-card .pw-card-body .pw-card-desc {
  font-size: 24px;
  line-height: 34px;
  color: var(--white);
}

/* ============================================================================================================
===============================================================================================================
                                            TESTIMONILA SECTION SOC
===============================================================================================================
============================================================================================================ */

.testimonial-sec {
    padding: 60px 0;
    margin-top: 60px;
  }
.testimonial-sec .testimonial-wrapper .testimoial-slider {
  padding: 0 30px;
}

.testimonial-sec .testimonial-header {
  padding-bottom: 50px;
}

.testimonial-box.swiper-slide {
  height: auto !important;
}

.testimonial-card {
  width: 100%;
  background: linear-gradient(316.16deg,
      rgba(21, 21, 21, 0.8) 53.17%,
      rgba(12, 191, 223, 0.8) 226.09%);
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  padding: 30px;
  position: relative;
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
}

.testimonial-box:nth-child(even) .testimonial-card {
  background: linear-gradient(316.16deg,
      rgba(21, 21, 21, 0.8) 53.17%,
      rgba(255, 102, 196, 0.8) 226.09%);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(202deg,
      #ffffff -13.25%,
      #000000 53.42%,
      #ffffff 118.63%);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  z-index: 0;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  opacity: 10%;
}

.testimonial-card .testimonial-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.testimonial-card .testi-content-wrapper {
  position: relative;
  z-index: 1;
}

.testimonial-card .testi-content-wrapper svg path {
  stroke: #0cbfdf;
}

.testimonial-box:nth-child(even) .testimonial-card .testi-content-wrapper svg path {
  stroke: #f963bf;
}

.testi-content-wrapper .test-title {
  font-size: 26px;
  line-height: 36px;
  color: var(--white);
  font-weight: 700;
}

.testi-content-wrapper .testi-desc {
  font-size: 24px;
  line-height: 34px;
  color: var(--white);
  font-weight: 300;
  margin-top: 30px;
}

/* ============================================================================================================
===============================================================================================================
                                          CTA CONTACT US SECTION SOC
===============================================================================================================
============================================================================================================ */

.contact-cta-sec {
  background-color: #050505;
}

.contact-cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  z-index: 1;
}

.contact-cta-sec .contact-vector {
  position: absolute;
  z-index: 0;
  max-width: 586px;
}

.contact-cta-sec .contact-vector.contact-cta-vector-left {
  top: 37px;
  left: 0;
}

.contact-cta-sec .contact-vector.contact-cta-vector-right {
  bottom: 37px;
  right: 0;
}

.contact-cta-sec .contact-cta-wrapper {
  max-width: 1090px;
  margin: 0 auto;
  padding: 70px 0 110px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.contact-form-wrapper .contact-form .contact-form-control {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 43px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  font-size: 24px;
  line-height: 40px;
  color: #fff;
  font-family: "Montserrat";
  font-weight: normal;
  padding: 15px 30px;
  max-width: 648px;
  width: 100%;
}

.contact-cta-wrapper .contact-form-wrapper .contact-form .contact-btn {
  background-color: #0cbfdf;
  padding: 15px 30px;
  font-size: 24px;
  line-height: 40px;
  font-weight: 500;
  color: #ffffff;
}

.contact-cta-wrapper .contact-form-wrapper .contact-form .contact-btn:hover {
  background: none;
  background-color: #ffffff;
  color: #0cbfdf;
}

.contact-cta-wrapper .contact-form-wrapper .contact-form .contact-btn::before {
  background: none;
}

/* NEWSLETTER FORM CSS */
.contact-form-wrapper .subscribe-message{
  font-size: 14px;
  padding-top: 10px;
}
.contact-form-wrapper .subscribe-message.error{
 color: red;
}
.contact-form-wrapper .subscribe-message.success{
 color: #26aed2;
}

/* ==================================================
              FOOTER PRIMARY SECTION 
================================================== */
.footer-main-sec {
  /* height: 130vh; */
}

/* AVAILABLE PORTION */
.available-ul {
  gap: 36px;
}

.available-ul .available-li {
  display: flex;
  gap: 20px;
  align-items: center;
}

.available-ul .available-li .available-icon {
  min-width: 80px;
}

.available-ul .available-li .available-text {
  font-size: 24px;
}

/* CONTACT US FORM - HOME */
.contact-sec {
  max-width: 1720px;
  margin: 0 auto;
}

.contact-sec .contact-title-label {
  font-size: 30px;
}

.contact-sec .contact-header {
  padding-bottom: 36px;
  max-width: 930px;
}


/* CONTACT FORM BTN CSS - CORRECTION */
.contact-field .btn{
  padding: 0 !important;
}
.contact-field .btn .wpcf7-spinner::before {
    content: '';
    position: absolute;
    background-color: #fbfbfc;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    display: inline-block;
    border: none;
    border-radius: 100%;
    transform-origin: 6px 6px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.contact-field .btn .wpcf7-spinner {
    width: 20px;
    height: 20px;
    min-width: 20px;
    padding: 0;
    margin: 0 10px;
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.contact-field .btn input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 20px;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    z-index: 99;
    padding: 29px 50px;
}
@media(max-width:1399.98px){
  .contact-field .btn input {
    padding: 21px 50px;
  }
}
@media (max-width: 991.98px) {
    .contact-field .btn input {
        padding: 18px 26px;
        font-size: 16px;
    }
}
@media (max-width: 767px) {
  .contact-field .btn input {
        padding: 16px 24px;
  }
}
@media (max-width: 575px) {
  .contact-field .btn input {
        font-size: 14px;
  }
}
    
.contact-field .btn p{
    display: flex;
    color: #fff;
    justify-content: center;
}
.contact-field .wpcf7-not-valid-tip{
  font-size: 14px;
  padding-top: 10px;
}

/* LINKEDIN PORTION */
.footer-pipe {
  color: #363535;
  font-size: 24px;
}

.footer-linkedin .footer-linkedin-text {
  font-size: 24px;
}

/* ======================================================================
=========================================================================
                      FOOTER SECONDARY SECTION SOC
=========================================================================
====================================================================== */
.footer-sec{
  background-color: #000;
}
.footer-main-sec .footer-container,
.footer-sec .footer-container {
  max-width: 1720px;
  padding: 0 15px;
  margin: 0 auto;
}

.footer-wrapper {
  padding: 37px 0 26px;
}

.footer-wrapper .footer-logo {
  max-width: 430px;
}

.footer-wrapper .footer-nav ul {
  gap: 40px;
}

.footer-wrapper .footer-nav ul li a {
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}

.footer-wrapper .footer-nav ul li a:hover {
  color: #f963bf;
}

.footer-wrapper .footer-bottom {
  margin-top: 21px;
  border-top: 1px solid #363535;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-wrapper p,
.copyright-wrapper a,
.footer-weblink a {
  font-size: 20px;
  line-height: 24px;
  transition: all 0.4s ease-in-out;
}

.copyright-wrapper a:hover,
.footer-weblink a:hover {
  color: #f963bf;
}




.no-scroll{
  overflow: hidden !important;
}