@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Nunito:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Tusker Grotesk';
    src: url('../fonts/TuskerGrotesk-6500Medium.woff2') format('woff2'),
        url('../fonts/TuskerGrotesk-6500Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Tusker Grotesk';
    src:url('../fonts/TuskerGrotesk/TuskerGrotesk-5700Bold.ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tusker Grotesk';
    src: url('../fonts/TuskerGrotesk-7600Semibold.woff2') format('woff2'),
        url('../fonts/TuskerGrotesk-7600Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
body {
    font-family: 'Tusker Grotesk';
    background-color: #000;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}
button:focus,
select:focus,
input:focus,
textarea:focus {
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}
p {
    margin: 0;
    line-height: 1.6em;
    font-family: 'Barlow Condensed', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: inherit;
    font-weight: inherit;
}
h1 {
    font-size: 60px;
}
h2 {
    font-size: 42px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 30px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 16px;
}
span,
a {
    display: inline-block;
}
textarea {
    resize: none;
}
button {
    cursor: pointer;
}
#main {
    flex: 1;
}
.container {
    max-width: 1320px;
}
.siteBtn {
    background: #fff;
    padding: 10px 20px;
    min-width: 170px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s ease;
    position: relative;
    z-index: 2;
    display: inline-block;
}
.siteBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: 0.4s ease;
    background: #000;
    z-index: -1;
}
.siteBtn:hover::before {
    height: 100%;
}
.siteBtn:hover {
    outline: 1px solid #fff;
    color: #fff;
    /* letter-spacing: 2px; */
}
.siteBtn {
    background: #DF2935;
    padding: 18px 32px;
    min-width: 170px;
    transition: 0.4s ease;
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.14px;
    text-transform: uppercase;
    display: inline-block;
}
.siteBtn::before {
    content: '';
    position: absolute;
    top: -3px;
    /* left: -30px; */
    width: 102%;
    height: 0;
    transition: 0.4s ease;
    background: #000;
    z-index: -1;
    /* transform: rotate(1deg); */
}
/* .siteBtn:hover::before {
    height: 110%;
} */
.siteBtn:hover {
    color: #fff;
    /* letter-spacing: 2px; */
    outline: 1px solid #fff;
}
/********************
        Header
*********************/

.primary-header {
    padding: 15px 0;
    position: absolute;
    width: 100%;
    overflow-x: hidden;
}
.brandLogo {
    max-width: 180px;
}
.site-menu li {
    display: inline-block;
    margin-right: 30px;
}
.site-menu li:last-child {
    margin-right: 0;
}
.menu-wrap {
    width: calc(100% - 175px);
}
.menu-toggler {
    width: 28px;
    height: 20px;
    cursor: pointer;
    display: none;
}
.menu-toggler span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: width .25s ease-in-out opacity .1s ease-in-out;
    -moz-transition: width .25s ease-in-out opacity .1s ease-in-out;
    -o-transition: width .25s ease-in-out opacity .1s ease-in-out;
    transition: width .25s ease-in-out opacity .1s ease-in-out;
}
.menu-toggler span:nth-child(2),
.menu-toggler span:nth-child(3) {
    top: 8px;
}
.menu-toggler span:last-child {
    top: 16px;
}
.menu-toggler.active span:nth-child(1) {
    width: 0;
    opacity: 0;
}
.menu-toggler.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu-toggler.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.menu-toggler.active span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
    opacity: 0;
}
.searchBtn {
    cursor: pointer;
}
.blogs-textarea a {
    display: none;
}
.header-search {
    position: relative;
}
.searchForm {
    position: absolute;
    top: 60px;
    width: 280px;
    z-index: 99;
    right: 0;
}
#search-input {
    border: 0px;
    background: transparent;
    box-sizing: border-box;
    border-bottom: 3px solid #62d474;
    outline: none;
    color: #000;
    font-size: 16px;
    transition: all 0.5s 0.7s ease-out;
    transform: scale(0);
    width: 280px;
    height: 25px;
    padding-bottom: 10px;
}
.header-search.active #search-input {
    transform: scale(1);
    transition: all 0.5s ease-out;
}
.header-search.active #search-label {
    opacity: 1;
}
#search-label {
    position: absolute;
    text-align: center;
    font-weight: 500;
    color: #62d474;
    transition: opacity 0.5s 0.35s ease-in, top 0.4s 0.2s ease-in;
    top: 0;
    opacity: 0;
}
#search-label.move {
    top: 34px;
}
.primary-header.position-fixed {
    width: 100%;
    z-index: 99;
}
.scrolled {
    transition: 0.8s ease;
    background-color: #000;
    position: fixed;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #2D2C2D;
}
.site-menu li a {
    position: relative;
    color: #000;
    font-size: 16px;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.14px;
    text-transform: uppercase;
}
.site-menu li a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
}
.site-menu li a:hover::before {
    width: 100%;
    right: unset;
    left: 0;
}
.menu-item-has-children {
  position: relative;
  padding: 0 20px 0 0;
}

.menu-item-has-children::before {
  content: " ";
  position: absolute;
  border: 1px solid #19304D;
  height: 9px;
  width: 9px;
  border-width: 0px 2px 2px 0;
  transform: rotate(45deg);
  right: 34px;
  top: 7px;
  margin: auto;
}

.menu-item-has-children>ul>li.active>a,
.menu-item-has-children>ul>li:hover>a {
  color: #CBB098;
}

a.meet-a {
    display: none;
}

.founder-textarea a {
    display: none;
}

.menu-item-has-children>ul {
  position: absolute;
  top: 100%;
  width: 250px;
  left: 0px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease all;
  box-shadow: 0 0 15px -2px rgb(0 0 0 / 20%);
  display: block;
}

.menu-item-has-children>ul>li {
  display: block;
  padding: 0 0;
}

.menu-item-has-children>ul>li a {
  padding: 15px 25px;
  display: block;
  color: #27302D;
  margin-bottom: 0;
  background: #fff;
  border-bottom: 1px solid #819ae069;
  font-weight: 500;
  transition: 0.3s ease;
  font-size: 15px;
  line-height: 19px;
  color: #000000;
}

.menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
}

.menu-item-has-children>ul>li a:hover {
  background: #707d80;
  color: #fff;
}
/*****************
      Footer
******************/
.site-footer {
    background: #000;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
.footer-col h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-col li {
    margin-bottom: 8px;
}
.footer-col li a {
    color: #fff;
    font-size: 14px;
}
/*~~~ Hero Section ~~~*/

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 680px;
    padding: 60px 0;
    background-position: center;
    background-size: cover;
    
}
.site-menu {
    display: flex;
    align-items: center;
}

.get-in-touch {
    margin-left: 60px;
}
.hero-content h4 {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
    letter-spacing: 7.2px;
    padding-bottom: 40px;
}

.hero-content h1 {
    color: #DF2935;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 93.6px */
    letter-spacing: 0.72px;
    text-transform: uppercase;
    padding-bottom: 24px;
}

.hero-content p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
}
section.movies-poster-sec {
    padding: 80px 0;
}
.movies-poster-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.movies-poster-wrap {
    width: 49%;
    background-position: center;
    background-size: auto;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    text-align: center;
    transition: all linear .5s;
    background-position: center;
    background-size: cover;
}
.movies-poster-wrap a h2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #fff;
}

.movies-poster-wrap a span {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; /* 533.333% */
    letter-spacing: 7.2px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 24px;
}
.movies-poster-wrap::after {
    position: absolute;
    content: "";
   background-color:rgba(0,0,0,0.8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: all linear .5s;
}
.movies-poster-wrap:hover::after{
    visibility: visible;
    opacity: 1;
}
.inner-para {
    position: relative;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-para::after {
    position: absolute;
    content: "";
    background-color: transparent;
    width: 50px;
    height: 50px;
    right: 15px;
    top: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;

}
.inner-para::before {
    position: absolute;
    content: "";
    background-color: transparent;
    width: 50px;
    height: 50px;
    left: 15px;
    bottom: 15px;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;

}
.movies-poster-wrap:hover .inner-para{
    visibility: visible;
    opacity: 1;
    transition: all linear .5s;
    z-index: 2;
}
section.action-Thriller-sec {
    padding: 80px 0;
    border-top: 1px solid #2D2C2D;
}
section#about-film {
    padding-top: 126px;
}
section.action-Thriller-sec {
    padding: 60px 0 80px 0;
    border-top: 1px solid #2D2C2D;
}

.action-thril-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* align-items: center; */
}

.action-thril-image {
    width: 58.6%;
}
section#about-film {
    padding-top: 80px;
}
/* .action-thril-image img {
    width: 100%;
} */
.action-thril-image {
    width: 58.6%;
    height: 93vh;
}
.action-thril-textarea {
    width: 41%;
    padding-left: 110px;
}

section.action-Thriller-sec span {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.14px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 80px;
}

.action-thril-textarea h2 {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    color: #fff;
}

.action-thril-textarea p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
    opacity: .8;
    margin: 40px 0 100px;
    max-width: 370px;
}

.cus-container {
    margin-left: 70px;
}

.founder-flex {
    background: #fff;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    flex-wrap: wrap;
}

.founder-textarea {
    width: 50%;
    padding-left: 112px;
}

.founder-image {
    width: 50%;
}

.founder-textarea h4 {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 7.2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 80px;
    line-height: 64px;
    margin-top: 60px;
}

.founder-textarea h2 {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    color: #141414;
    margin-bottom: 40px;
    line-height: 130%;
}

.founder-textarea p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 30px;
    max-width: 430px;
    opacity: 0.8;
}

.founder-textarea a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
    text-transform: uppercase;
    color: #141414;
    position: relative;
}
/* addition of hover effect */
.founder-textarea a::before {
    content: '';
    position: absolute;
    bottom: 17px;
    right: 0;
    width: 0;
    height: 2px;
    background: #110d0d;
    transition: 0.3s ease;
}
.founder-textarea a:hover::before {
    width: 100%;
    right: unset;
    left: 0;
}
.founder-textarea a span {
    color: #DF2935;
    margin-right: 8px;
}
.founder-image img {
    width: 100%;
    height: 100%;
}
.meet-flex {
    background: #fff;
    border-top: 1px solid rgba(45, 44, 45, .1);
    padding: 80px 0;
    padding-left: 112px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.meet-box-width {
    width: 52%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.meet-box-width1 {
    width: 40%;
}

.inner-meet {
    width: 100%;
}

.inner-meet img {
    width: 100%;
}

.inner-meet h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    /* 42px */
    text-transform: uppercase;
    color: #000;
    margin: 44px 0 20px;
    line-height: 150%;
}
div#wrapper {
    overflow: hidden;
}
.inner-meet span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    opacity: .5;
}
li .gt-touch {
    display: none;
}
.gt-touch {
    display: none;
}
#wraper {
    overflow: hidden;
}
.meet-box-width1 h1 {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 83.2px */
    letter-spacing: 0.64px;
    text-transform: uppercase;
    max-width: 260px;
    color: #141414;
    margin-top: 59px;
}

.meet-box-width1 p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 345px;
    color: rgba(20, 20, 20, .8);
    margin: 22px 0 50px;
}

.meet-box-width1 a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px; /* 400% */
    text-transform: uppercase;
    position: relative;
}
/* addition of hover effect */
.meet-box-width1 a::before {
    content: '';
    position: absolute;
    bottom: 17px;
    right: 0;
    width: 0;
    height: 2px;
    background: #110d0d;
    transition: 0.3s ease;
}
.meet-box-width1 a:hover::before {
    width: 100%;
    right: unset;
    left: 0;
}

.meet-box-width1 a span {
    color: #DF2935;
    margin-right: 6px;
}
.inner-meet img {
    width: 100%;
    background: url(<path-to-image>), lightgray -63.831px 0px / 121.686% 100% no-repeat;
    mix-blend-mode: luminosity;
}
section#about-film .action-thril-flex {
    flex-direction: row-reverse;
}
section#about-film .action-thril-textarea{
    padding-left: 0px;
    padding-top: 66px;
}
section#about-film .action-thril-textarea h2 {
    max-width: 400px;
}
section#about-film .action-thril-textarea p {
    max-width: 470px;
}
section#about-film .right-btn a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    line-height: 64px;
}
/* addition of hover effect */
section#about-film .right-btn a::before {
    content: '';
    position: absolute;
    bottom: 17px;
    right: 0;
    width: 0;
    height: 2px;
    background: #eeeeee;
    transition: 0.3s ease;
}
section#about-film .right-btn a:hover::before {
    width: 100%;
    right: unset;
    left: 0;
}
section#about-film .right-btn span {
    margin-bottom: 0px;
}
.right-btn {
    text-align: right;
    margin-top: 80px;
}
section#about-film .right-btn a span{
    margin-right: 6px;
    color: #DF2935;
}
section.joba-video {
    height: 680px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-direction: column;
}


section.joba-video span {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px; /* 533.333% */
    letter-spacing: 7.2px;
    text-transform: uppercase;
    display: block;
}

section.joba-video h1 {
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 93.6px */
    letter-spacing: 0.72px;
    text-transform: uppercase;
}
.blogs-inner {
    background: #fff;
    padding: 80px 0px 80px 112px;
}

section.blogs-section {
    padding: 80px 0 0;
}

.blogs-textarea h2 {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 83.2px */
    letter-spacing: 0.64px;
    text-transform: uppercase;
    color: #000;
}

.blogs-textarea a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    transition: all linear .5s;
    position: relative;
    line-height: 64px;
}
/* addition of hover effect */
.blogs-textarea a::before {
    content: '';
    position: absolute;
    bottom: 17px;
    right: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: 0.3s ease;
}
.blogs-textarea a:hover::before {
    width: 100%;
    right: unset;
    left: 0;
}
.blogs-textarea a span {
    color: #DF2935;
    margin-right: 8px;
    transition: all linear .5s;
}
.blogs-textarea {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 132px;
    margin-bottom: 60px;
}

.blogflex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.ft-links ul {
    display: flex;
    gap: 30px;
}
.blog-width {
    width: 100%;
    padding: 0 0 4px;
}
.blog-width h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 30px */
    text-transform: uppercase;
    margin: 40px 0 20px;
    color: #000;
    letter-spacing: -1px;
}

.blog-width span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    opacity: .5;
    font-family: 'Barlow Condensed', sans-serif;
    display: block;
}

.blog-width p {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    font-family: 'Tusker Grotesk';
    position: relative;
    display: inline-block;
    line-height: 64px;
}
/* addition of hover effect */
.blog-width p::before {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: 0.3s ease;
}
.blog-width p:hover::before {
    width: 100%;
    right: unset;
    left: 0;
}
.blog-width a {
    width: 97%;
}
.blog-width img {
    height: 324px;
}
section.join-us {
    padding: 97px 0 90px;
    color: #fff;
    position: relative;
}
section.join-us::after {
    position: absolute;
    /* background: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0.00) 100%); */
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    right: 0;
}

section.join-us .container {
    position: relative;
    z-index: 1;
}

.join-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.join-width {
    width: 41%;
}

.join-width2 {
    max-width: 420px;
}

.join-width span {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
    /* 533.333% */
    letter-spacing: 7.2px;
}

.join-width h1 {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 83.2px */
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.join-width2 p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    opacity: .8;
    margin-bottom: 40px;
}

.join-width2 a {
    background: var(--DF2935, #DF2935);
    padding: 18px 42px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.14px;
    text-transform: uppercase;
}
.footer-col.ft-links ul li {
    display: inline-block;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.ft-links ul li {
    display: inline-block;
}

.ft-links ul li a {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.14px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}
/* addition of hover effect */
.ft-links ul li a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 0;
    height: 2px;
    background: #f5eeee;
    transition: 0.3s ease;
}
.ft-links ul li a:hover::before {
    width: 100%;
    right: unset;
    left: 0;
}
.inner-footer {
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 49px 0;
}

.bottom-footer {
    padding: 40px 0;
}

.bottom-footer p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: #fff;
    opacity: .5;
}
.join-width2 .get-in-touch {
    margin-left: 0px;
}
.blogs-textarea a:hover span {
    transform: rotate(45deg);
}
.meet-box-width1 a span{
    transition: all linear .5s;
}
.meet-box-width1 a:hover span{
    transform: rotate(45deg);
}
.right-btn a span{
    transition: all linear .5s;
}
.right-btn a:hover span{
    transform: rotate(45deg);
}
.founder-textarea a span{
    transition: all linear .5s;
}
.founder-textarea a:hover span{
    transform: rotate(45deg);
}
.j-socials ul li {
    display: inline-block;
    margin-left: 26px
}
.botm-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.j-socials ul li a {
    display: inline-block;
    cursor: pointer;
}
section.joba-video h1 {
    position: relative;
}
section.joba-video h1::after {
    position: absolute;
    content: "";
    background-image: url(../images/q1.svg);
    right: -130px;
    width: 134px;
    height: 260px;
    background-repeat: no-repeat;
    top: -60px;
}
div#mobile {
    display: none;
}
.meetcrew-popup-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.modal-content {
    width: 850px;
}

.meetcrew-pop-img {
    width: 100%;
    max-width: 330px;
}

.meetcrew-pop-img img {
    width: 312px;
    height: 420px;
    object-fit: cover;
}

.meetcrew-popup-textarea {
    width: 100%;
    max-width: 390px;
}
.meetcrew-popup-textarea p:last-child {
    color: #141414;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.inner-meet a {
    display: block;
    width: 100%;
}

.modal-dialog button.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
	filter: invert(17%) sepia(95%) saturate(2898%) hue-rotate(347deg) brightness(111%) contrast(79%);
}
.meet-box-width .owl-nav {
    position: absolute;
    left: -50px;
    top: 0px;
    bottom: 100px;
    display: flex;
    margin: auto;
}
.meet-box-width button.owl-next {
    display: none;
}
.modal.show .modal-dialog {
    max-width: 830px;
}
.meetcrew-popup-textarea h4 {
    color: #000;
    font-family: Tusker Grotesk;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 42px */
    text-transform: uppercase;
    padding-bottom: 20px;
}

.meetcrew-popup-textarea p span {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    border-bottom: 1px solid hwb(0deg 17% 83% / 10%);
    width: 100%;
    padding-bottom: 32px;
    margin-bottom: 32px;
}
.modal-body {
    padding: 32px;
}