@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Six+Caps&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

@font-face {
    font-family: sixfont;
    src: url(../webfonts/SixCaps.ttf);
}

@font-face {
    font-family: BebasNeueLight;
    src: url(../webfonts/BebasNeueLight.otf);
}

:root {
    --black: #101010;
    --white: #fff;
    --red: #c10005;
    --light-grey: #585858;
    --purple: #3E234F;
}

.bg-white {
    background-color: var(--white);
}

.txt-white {
    color: var(--white);
}

.bg-black {
    background-color: var(--black);
}

.bg-red {
    background-color: var(--red);
}

.txt-red {
    color: var(--red);
}

.txt-black {
    color: var(--black) !important;
}

* {
    font-family: "Bebas Neue", sans-serif;
    border: none;
    outline: none;
    list-style: none;
    text-decoration: none;
    text-transform: capitalize;
    box-sizing: border-box;
}

*::selection {
    background-color: var(--red);
    color: var(--white);
}

*:focus {
    outline: none;
}

body,
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar,
.box-mobile::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track,
.box-mobile::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px var(--blue);
}

body::-webkit-scrollbar-thumb,
.box-mobile::-webkit-scrollbar-thumb {
    background-color: var(--red);
    outline: 1px solid var(--red);
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

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

ul {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
span {
    margin-bottom: 0;
}

/* h1,h2,h3,h4,h5,h6{
    letter-spacing: -2px;
} */
img {
    max-width: 100%;
    height: auto;
}

span,
a,
li,
p {
    font-size: 16px;
    margin-bottom: 0;
}

.container {
    max-width: 1170px
}

section {
    padding: 60px 0;
}

.header__wrap {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 100px;
    top: 25px;
    background-color: #00000045;
}

.header__wrap .navbar-nav .nav-link {
    font-size: 20px;
    font-weight: 200;
    color: var(--white);
    padding: 25px 0px;
    position: relative;
}

.navbar-brand {
    max-width: 30%;
}

.navbar-brand img {
    max-width: 47% !important;
}

.banner__wrap {
    background-image: url('assets/images/banner.html') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header__wrap .nav-item {
    padding: 0 20px;
}

.services-section {
    padding: 60px 20px;
    text-align: center;
    background-color: black;
}

.services-section h2 {
    color: #C10005;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.icon-title i {
    font-size: 24px;
    color: #e74c3c;
}

.icon-title img {
    max-width: 20%;
}

.icon-title h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.service-box p {
    font-size: 0.95rem;
    color: #555;
}

.query__btn {
    font-size: 25px;
    font-weight: 400;
    padding: 6px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.query__btn svg {
    font-size: 20px;
}

.signup__btn {
    font-size: 25px;
    font-weight: 400;
    padding: 6px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
}

.banner__wrap video {
    height: 730px;
    max-width: 100%;
    object-fit: cover;
}

.banner__wrap video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    filter: brightness(0.5);
    z-index: -1;
}

.header__wrap .navbar-nav .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    border: 2px solid var(--red);
    top: 0;
    transition: all .3s linear;
    opacity: 0;
}

.header__wrap .navbar-nav .nav-link:hover::before {
    width: 100%;
    transition: all .3s linear;
    opacity: 1;
}

.header__wrap .navbar-nav .nav-link:hover {
    color: var(--red);
}

.hero__title {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 50px;
    left: 0;
    right: 0;
}

.hero__title span,
.ft-content .ft-txt span {
    font-size: 350px;
    line-height: 310px;
    font-weight: 100;
    font-family: "Six Caps", sans-serif;
    letter-spacing: -5px;
}

.hero__title div {
    display: flex;
    justify-content: center;
}

section.banner__wrap {
    height: 950px;
}

.portfolio__wrap {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 69%, rgba(193, 0, 5, 1) 45%);
}

.about__content h3,
.portfolio__wrap h3,
.platform__wrap h3,
.why-choose .choose__title h3,
.industries .title h4 {
    font-size: 60px;
    font-weight: unset;
    font-family: BebasNeueLight;
    text-align: center;
}

/* .about__wrap{
    background: url(../../assets/images/flip-txt.png) center top / contain no-repeat;
} */
.info__wrap {
    padding-left: 80px;
    background-color: var(--black);
    padding: 0;
}

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

.info__wrap .info__content .left__content,
.info__wrap .info__content .right__content {
    width: 50%;
}

.info__wrap .left__content h4,
.story__video .story__content h3 {
    font-size: 145px;
    font-weight: 400;
    font-family: 'Six Caps';
    text-transform: lowercase;
}

.cta__video {
    padding-right: 80px;
}

.info__wrap,
.story__content,
.cta__content {
    padding-left: 80px;
}

.info__wrap .left__content p,
.story__video .story__content p,
.cta__wrap .cta__content p,
.inner__banner .inner__content p,
.animation-about p,
.two-d-design p {
    font-size: 20px;
    font-family: poppins;
    font-weight: 200;
    line-height: 26px;
    width: 86%;
    color: var(--white);
    padding: 10px 0;
}

.why-choose .choose__title p,
.industries .title p,
.process .title p {
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    line-height: 26px;
    color: var(--black);
    padding: 10px 0;
    text-align: center;

}

.info__wrap .left__content h3 {
    font-size: 100px;
    font-weight: 400;
    font-family: 'Six Caps';
    text-transform: lowercase;
}

.portfolio__content p {
    font-size: 35px;
    font-family: poppins;
    text-align: center;
}

.portfolio__list {
    display: flex;
    align-items: center;
    gap: 17px;
    justify-content: center;
    margin-top: 60px;
}

.info__video figure {
    margin: 0;
}

.portfolio__list li a,
.info__video {
    position: relative;
}

.portfolio__list .before-txt span {
    opacity: 0;
    font-size: 40px;
    line-height: 50px;
}

.portfolio__list .before-txt {
    opacity: 0;
    position: absolute;
    top: 0;
    transform: rotate(270.5deg);
    right: 0;
    -webkit-transform-origin: 83% 59%;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: var(--white);
    font-family: 'BebasNeueLight';
}

.portfolio__list li a:hover .before-txt,
.portfolio__list li a:hover .before-txt span {
    opacity: 1;
}

.portfolio__list li a:hover::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000000b5;
}

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #eb2055; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 52%;
    top: 43%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    animation: pulse-border 1100ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    transition: all 200ms;
}

/*   
  .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 19px solid #fff;
      border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    top: 10px;
    left: 5px;
  } */

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.box.active {
    background-color: var(--green);
    color: var(--white);
}

.story__video {
    background-color: var(--red);
}

.story__video .story__content h4,
.cta__wrap .cta__content h4,
.animation-about h3,
.animation__tabs h4,
.animation__tabs__body h3,
.animation__services .title h4,
.process .title h4 {
    font-size: 60px;
    font-family: 'BebasNeueLight';
    line-height: 70px;
    color: var(--white);
}

.process .title h4 {
    color: black;
    text-align: center;
}

.animation__tabs__body h3 {
    color: var(--red);
}

.story__box h3 {
    text-align: center;
    color: var(--white);
    font-family: 'Six Caps';
    text-transform: lowercase;
    font-size: 70px;
    letter-spacing: 0;
}

.story__box img {
    display: block;
    margin: auto;
    width: 100%;
    padding: 0 10px;

}

.story__video .slick-slide {
    max-width: 355px;
}

.platform__wrap .platform__content p {
    font-size: 25px;
    font-family: 'Poppins';
    text-align: center;
    max-width: 66%;
    margin: auto;
    line-height: 30px;
}

.platform__slider {
    margin-top: 60px;
    display: flex;
    align-items: center;
}

.faq__wrap ul li h3 {
    font-size: 150px;
    font-family: 'Six Caps';
    text-transform: lowercase;
    line-height: 150px;
    position: relative;
}

.faq__wrap ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #8080809c;
    padding-bottom: 50px;
    margin-bottom: 20px;
}

.faq__wrap ul li p {
    max-width: 420px;
    font-family: poppins;
}


.faq__wrap ul li h3::before {
    position: absolute;
    font-size: 50px;
    font-family: 'Poppins';
    font-weight: 700;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 50px;
    width: 80px;
    justify-content: center;
    transform: rotate(-19deg);
    z-index: -1;
    color: white;
    top: -35px;
}

.one::before {
    content: '01';
    left: -29px;
    background-color: black;
}

.two::before {
    content: '02';
    right: -10%;
    background-color: var(--red);
}

.three::before {
    content: '03';
    left: -29px;
    background-color: black;
}

.faq__wrap ul li:last-child {
    border: 0;
}

.cta__wrap {
    background: url(../images/cta-bg.webp) center left / contain no-repeat;
}

.cta__slider .row {
    display: flex !important;
}

.brs-v {
    filter: hue-rotate(45deg);
}

.slick-dots li {
    width: 10px;
    height: 10px;
    background-color: var(--black);
    border-radius: 30px;
}

.slick-dots li:active {
    background-color: var(--light-grey);
}

.slick-dots li.slick-active button:before {
    background-color: var(--light-grey);
    width: 10px;
    height: 10px;
    border-radius: 30px;
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
    color: transparent;
}

.round__btn {
    display: block;
    margin: auto;
    width: max-content;
    position: relative;
}

section.testi__wrap {
    padding: 100px 80px;
}

.quote {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: none;
}

.rount-txt {
    animation: circle 20s linear infinite;
}

@keyframes circle {
    0% {
        transform: rotate(0deg);

    }

    100% {
        transform: rotate(360deg);
    }
}

.testi__slider p,
.award__wrap h4 {
    font-size: 40px;
    font-family: 'BebasNeueLight';
    line-height: 45px;
    color: var(--black);
}

.profile {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 2px solid #00000091;
    padding-top: 10px;
    margin-top: 20px;
}

.profile h6 {
    font-size: 20px;
    font-family: poppins;
    font-weight: 700;
    letter-spacing: -1px;
}

.profile p {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 27px;
}

.profile img {
    transform: scale(.7);
    border: 1px solid #00000096;
    border-radius: 100px;
}

.testi__slider .slick-dots {
    bottom: 90px;
    width: 100%;
    margin: 0;
    list-style: none;
    text-align: center;
    margin-left: auto;
    display: flex;
    justify-content: end;
    padding: 10px;
    border-radius: 10px;
}

.njs-sticky-side.image_button_cover.placement-right {
    right: 0;
}

.njs-sticky-side.image_button_cover {
    position: fixed;
    top: 50%;
    box-shadow: none;
    z-index: 99999;
    transition: transform .3scubic-bezier(0, 0, 0, 1);
    -webkit-transition: -webkit-transform .3scubic-bezier(0, 0, 0, 1);
}

.njs-sticky-side.image_button_cover.placement-right.now-show a {
    transform: translate3d(4px, 0, 0) rotate(-90deg);
    -webkit-transform: translate3d(4px, 0, 0) rotate(-90deg);
}

.njs-sticky-side.image_button_cover.placement-right a {
    border-radius: 3px 3px 0 0;
    transform: translate3d(200%, 0, 0) rotate(-90deg);
    -webkit-transform: translate3d(200%, 0, 0) rotate(-90deg);
    transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
}

.njs-sticky-side.image_button_cover a {
    padding: 10px 30px 15px;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
    background-color: var(--red);
    color: white;
    font-weight: 100;
    top: -300px;
    font-family: 'Arial';
    border-top-right-radius: 30px !important;
    border-top-left-radius: 30px !important;
}

.awards__slider img {
    max-width: 170px;
}

.bg-cream {
    background-color: #f0f0f0;
}

.award__wrap .slick-dots {
    bottom: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award__wrap .slick-dots li.slick-active button:before {
    background-color: var(--red);
    width: 15px;
    height: 15px;
    border-radius: 30px;
}

.award__wrap .slick-dots li.slick-active {
    width: 15px;
    height: 15px;
}

.ft__wrap {
    background: url(../images/footer-bg.webp) center left / cover no-repeat;
}

.social__wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.social__wrap li a {
    width: 80px;
    height: 80px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(48%);
    transition: all .2s linear;
}

.social__wrap li svg {
    font-size: 34px;
    color: var(--red);
}

.social__wrap li a:hover {
    background-color: var(--red);
    color: white;
    transform: scale(.9);
    transition: all .2s linear;
}

.social__wrap li a:hover svg {
    color: white;
}

.ft-content h4 {
    font-size: 115px;
    font-size: 65px;
    font-family: 'BebasNeueLight';
    line-height: 75px;
    font-weight: bold;
    color: var(--black);
}

.ft-content p {
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    color: black;
    line-height: 24px;
    padding-bottom: 10px;
}

.contact__info span,
.choose__box span {
    font-size: 22px;
    display: block;
    font-weight: bold;
    font-family: 'BebasNeueLight';
    line-height: 25px;
    padding-top: 15px;
}

.contact__info a {
    font-size: 20px;
    color: var(--black);
    display: block;
    font-weight: bold;
    font-family: 'BebasNeueLight';
}

.row.ft-form {
    padding: 25px;
    background-color: white;
    border-radius: 15px;
}

form.query__form input,
form.query__form textarea {
    width: 100%;
    border: 1px solid #00000066;
    height: 60px;
    font-family: poppins;
    font-size: 17px;
    padding: 11px;
    margin-bottom: 10px;
    border-radius: 5px;
}

form.query__form textarea {
    height: 100px;
}

form.query__form input::placeholder,
form.query__form textarea::placeholder {
    color: #8080809c;
}

form.query__form button {
    font-size: 30px;
    background-color: black;
}

form.query__form button {
    font-size: 30px;
    background-color: #373a45;
    color: white;
    padding: 2px 35px;
    display: block;
    margin: auto;
    border-radius: 5px;
}

.ft-form .col-lg-7 {
    display: flex;
    align-items: center;
}

.use__ful p {
    font-size: 18px;
    font-family: 'Poppins';
    color: #ffffffcf;
    line-height: 25px;
    font-weight: 300;
}

.use__ful span {
    font-size: 50px;
    color: white;
    font-weight: bold;
    font-family: 'BebasNeueLight';
    display: block;
    line-height: 40px;
    margin-bottom: 15px;
}

.use__ful ul li a,
.use__ful a {
    font-size: 18px;
    font-family: 'Poppins';
    color: #ffffffcf;
    font-weight: 300;
    line-height: 33px;
}

.copy__right p {
    font-size: 25px;
    font-family: poppins;
    font-weight: 300;
    padding: 15px 0;
    text-align: center;
}

.use__ful ul li a:hover,
.use__ful a:hover {
    color: var(--red);
}

.inner__banner {
    padding: 0 50px;
    height: 100vh;
    display: flex;
    align-items: center;
}

.cartoon-animation {
    background: url(../images/cartoon-animation.png) center bottom / cover no-repeat;
}

.two-d-animation {
    background: url(../images/2d-animation.png) center bottom / cover no-repeat;
}

.about-banner-section {
    background: url(../images/about-banner-bg.png) center bottom / cover no-repeat !important;
}

.three-d-animation {
    background: url(../images/3d-animation.png) center top / cover no-repeat !important;
}

.three-d-arch {
    background: url(../images/portfolio/3d/architectural.png) center top / cover no-repeat !important;
}

.live-stock {
    background: url(../images/stock-animation.png) center bottom / cover no-repeat;
}

.motion-banner {
    background: url(../images/motion-banner.png) center bottom / cover no-repeat;
}

.whiteboard-banner {
    background: url(../images/white-banner.png) center bottom / cover no-repeat;
}

.logo-animation-banner {
    background: url(../images/logo-ani-animation-banner.png) center bottom / cover no-repeat;
}

.inner__banner .inner__content h3 {
    font-size: 170px;
    font-family: 'Six Caps';
    text-transform: uppercase;
    line-height: 185px;
    position: relative;
    color: var(--white)
}

.two-d-about {
    background: url(../images/2d-animation-about.png) center top / cover no-repeat;
}

.three-d-about {
    background: url(../images/3d-animation-about.png) center top / cover no-repeat;
}

.logo-d-about {
    background: url(../images/logo-animation-about.png) center top / cover no-repeat;
}

.cartoon-about {
    background: url(../images/cartoon-about.png) center top / cover no-repeat;
}

.stock-about {
    background: url(../images/stock-about.png) center top / cover no-repeat;
}

.motion-about {
    background: url(../images/motion-about.png) center top / cover no-repeat;
}

.whiteboard-about {
    background: url(../images/white-about.png) center top / cover no-repeat;
}

.animation-about {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 110px;
}

.choose__box p {
    font-size: 16px;
    font-family: poppins;
    color: black;
    min-height: 220px;
}

.choose__box {
    background-color: #e4e4e4;
    padding: 40px 030px;
    border-radius: 10px;
    max-width: 375px;
}

.choose__box:hover {
    background-color: var(--red);
}

.choose__box:hover span,
.choose__box:hover p {
    color: white;
}

.two-design {
    background: url(../images/2d-animation-design.png) center top / cover no-repeat;
}

.three-design {
    background: url(../images/3d-animation-design.png) center top / cover no-repeat;
}

.logo-three-design {
    background: url(../images/logo-d-animation-design.png) center top / cover no-repeat;
}

.cartoon-design {
    background: url(../images/cartoon-thumb-bg.png) center top / cover no-repeat;
}

.stock-design {
    background: url(../images/stock-thumb-bg.png) center top / cover no-repeat;
}

.motion-design {
    background: url(../images/motion-thumb-bg.png) center top / cover no-repeat;
}

.two-d-design h3,
.two-d-design h3 span {
    font-size: 200px;
    font-family: 'Six Caps';
    text-transform: lowercase;
    line-height: 200px;
    position: relative;
    color: var(--red);
    display: block;
    line-height: 190px;
}

.animation__cta h3,
.industries__box span {
    font-size: 50px;
    font-weight: unset;
    font-family: BebasNeueLight;
    text-align: left;
    font-weight: bold;
    line-height: 50px;
    letter-spacing: 0;
    color: var(--white);
}

.industries__box span {
    color: var(--black);
    padding-top: 15px;
    display: block;
    text-align: center;
    font-weight: normal;
}

.animation__cta p {
    font-size: 16px;
    font-family: poppins;
    color: var(--white);
    font-weight: 300;
}

.animation__cta .container {
    background-color: var(--black);
    border-radius: 40px;
    padding: 20px;
    position: relative;
    padding: 50px 0;
}

.cta-img {
    position: absolute;
    bottom: -17%;
}

.animation__tabs {
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 20%, rgba(193, 0, 5, 1) 20%);
}

.animation__tabs .nav-tabs .nav-item {
    /* width: 100%; */
}

.animation__tabs .nav-tabs .nav-link {
    font-size: 30px;
    font-weight: normal;
    border-radius: 5px;
    color: var(--white);
    background-color: transparent;
    border: 1px solid white;
    font-family: 'BebasNeueLight';
    padding: 0;
    width: 100%;
}

.animation__tabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: white !important;
    color: var(--red) !important;
}

.animation__tabs__body {
    background-color: white;
    border-radius: 10px;
    position: relative;
    padding: 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.animation__tabs__body p {
    font-size: 16px;
    font-family: poppins;
    padding: 15px 0;
}

.tab-img {
    position: absolute;
    bottom: 0;
    top: 0;
    height: 100%;
}

.industries__box {
    width: 100%;
    padding: 40px 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.industries__box:hover {
    background-color: var(--red);
}

.industries__box:hover span {
    color: var(--white);
}

.animation__services {
    background: url(../images/2d-tabs-bg.png) center top / cover no-repeat;
}

.animation__services .nav-tabs {
    flex-direction: column;
    border-right: 3px solid var(--red) !important;
}

.animation__services .nav-link,
.animation__services .nav-link span {
    font-size: 50px !important;
    font-weight: normal;
    font-family: 'BebasNeueLight';
    color: var(--white);
    padding: 0;
    border: 0;
    transition: all .4s linear;
}

.animation__services .nav-link span {
    color: var(--red);
}

.animation__services .nav-tabs .nav-item.show .nav-link,
.animation__services .nav-tabs .nav-link.active,
.animation__services .nav-tabs .nav-link:hover,
.animation__services .nav-tabs .nav-link:visited {
    background-color: transparent !important;
    color: var(--white) !important;
    border: 0;
    position: relative;
}

.animation__services .nav-tabs .nav-item.show .nav-link,
.animation__services .nav-tabs .nav-link.active,
.animation__services .nav-tabs .nav-link.active span {
    font-weight: bold;
    transform: translateX(10px);
    transition: all .4s linear;
}

.animation__services .nav-tabs .nav-link.active::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border-left: 7px solid var(--red);
    left: -15px;
    top: 0;
}

.ser__content h5 {
    font-size: 50px !important;
    font-family: 'BebasNeueLight';
    color: var(--white);
    font-weight: bold;
    letter-spacing: 0;
}

.ser__content p {
    font-size: 16px;
    color: white;
    font-family: poppins;
    font-weight: 300;
    padding: 25px 0;
}

.process {
    background-color: #ececec;
}

.process__box img {
    background-color: var(--red);
    max-width: 265px;
    height: 250px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    object-fit: scale-down;
}

.process__box span {
    font-size: 22px;
    color: var(--black);
    padding-top: 10px;
    letter-spacing: 0;
    font-weight: normal;
    text-align: center;
    display: block;
    font-family: poppins;
    line-height: 24px;
}

.process__box p {
    font-size: 16px;
    color: var(--black);
    padding-top: 10px;
    letter-spacing: 0;
    font-weight: normal;
    text-align: center;
    display: block;
    font-family: poppins;
    line-height: 24px;
}





section.about-who-section {
    padding: 50px 0 50px 50px;
    display: flex;
    align-items: center;
    /* min-height: 400px; */
    background: #c10005;
    height: 630px;
    margin: 50px 0;
    position: relative;
}

section.about-who-section .row {
    display: flex;
    align-items: center;
}

img.my-lg-5.my-3.m-auto.d-block.We-Are img {
    /* width: 100%; */
}

.who-img-box img {
    WIDTH: 80%;
    position: relative;
    right: -90px;
}

section.about-who-section H3 {
    font-size: 150px;
    font-family: 'Six Caps';
    text-transform: lowercase;
    line-height: 200px;
    position: relative;
    display: block;
    line-height: 190px;
    COLOR: #FFF;
    MARGIN: 0 0 30px 0;
    line-height: 150px;
}

section.about-who-section P {
    font-size: 17px;
    color: #fff;
    margin: 0 0 15px 0;
    font-family: 'Poppins';
}


img.clients-img {
    width: 100%;
}

section.about-company-section h3 {
    font-size: 210px;
    font-family: 'Six Caps';
    text-transform: lowercase;
    line-height: 200px;
    position: relative;
    display: block;
    line-height: 190px;
    COLOR: #c10005;
    MARGIN: 0 0 30px 0;
}

section.about-company-section p {
    font-size: 20px;
    font-family: 'Poppins';
    margin: 0 0 30px 0;
}

section.about-company-section {
    padding: 50px 0;
}

img.about-logos {
    width: 100%;
}

section.industries.about-Process-section {
    background: #ececec;
}

section.industries.about-Process-section .industries__box {
    background: #fff;
}

section.industries.about-Process-section h5 {
    text-align: center;
    font-size: 25px;
    font-family: 'Poppins';
    margin: 10px 0 0 0;
}

.about-Process-section img {
    min-height: 225px !important;
}

.about-choose-section .choose__title h3 {
    font-size: 75px !important;
    font-weight: 500;
    color: #c10005;
    line-height: 80px;
}

section.why-choose.about-choose-section {
    padding: 50px 0 0 !important;
}



/*section.faq-section*/
section.faq-section {
    padding: 80px 0;
    background: #e8e8e8;
}


section.faq-section .title h4 {
    font-size: 80px;
    font-weight: unset;
    font-family: BebasNeueLight;
    text-align: center;
}


.faq_single {
    overflow: hidden;
    margin-bottom: 20px;
    /* border-radius: 29px; */
    /* background: #F7F7F7; */
}

.title p {
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    line-height: 26px;
    color: var(--black);
    padding: 10px 0;
    text-align: center;
}

.faq_single p.faq__title {
    position: relative;
    margin: 0;
    padding: 15px 40px 15px 20px;
    color: #fff;
    cursor: pointer;
    background-image: linear-gradient(to right, #aa076b, #61045f);
}

.faq_single p.faq__title:before {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    transition: .5s;
    font-size: 17px;
    top: 14px;
    background-color: #ffffff40;
    width: 22px;
    height: 22px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}

.faq_single h4.faq__title {
    position: relative;
    margin: 0;
    padding: 10px 40px 10px 20px;
    color: #000;
    cursor: pointer;
    font-size: 26px;
    border: solid 1px #0000000d;
    border-radius: 0;
    line-height: 27px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: 'BebasNeueLight';
    letter-spacing: 1px;
}

.faq_single h4.faq__title:before {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    transition: .5s;
    font-size: 17px;
    top: 17px;
    /* background-color: #000; */
    width: 22px;
    height: 22px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000 !important;
}

.faq_single .faq__text {
    padding: 20px 30px 20px 20px;
    display: none;
}

.faq_single .faq__text p:last-child {
    margin: 0;
    font-family: 'Poppins';
}

.faq_single:last-child {
    margin-bottom: 0;
}

.faq_single .open_faq:before {
    transform: rotate(180deg);
}

.faq_single .faq__text p {
    font-size: 14px;
    color: #333333;
}

.faq_wrap {
    margin: 30px 0 0 0;
}

section.faq-section .faq_wrap .faq_single .firstOpen {
    display: block;
}

.faq_single.open_faq h4.faq__title {
    border-color: #c10005 !important;
}

/*section.faq-section*/

/*form*/

.faq-section form {
    padding: 35px 25px;
    background: #fff;
    border-radius: 10px;
    width: 80%;
    margin: auto;
}

.faq-section input.input_field {
    padding: 10px 15px;
    border: solid 1px #ffffff59;
    background: #f2f2f2;
    border-radius: 5px;
    margin: 0 0 10px 0;
    font-size: 14px;
    width: 100%;
    font-family: 'Poppins';
    color: #000;
}

.faq-section textarea {
    width: 100%;
    resize: none;
    border-radius: 5px;
    height: 123px;
    padding: 10px 15px;
    color: #000;
    border: solid 1px #ffffff59;
    background: #f2f2f2;
    border-radius: 5px;
    margin: 0 0 10px 0;
    font-size: 14px;
    font-family: 'Poppins';
}

.faq-section form .field_wrap i {
    top: 12px;
    color: #fff;
    left: 12px;
}

.faq-section textarea::placeholder {
    color: #000;
}

.faq-section input.input_field::placeholder {
    color: #000;
}

.faq-section form h5 {
    font-size: 40px;
    /* text-align: center; */
    font-weight: 500;
    color: #000;
    margin: 0 0 10px 0;
}

.faq-section form p {
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin: 0 0 20px 0;
}

.faq-section h2.h2-text span {
    color: #DE253A;
}

button.get-btn.footr-botm-btn {
    padding: 10px 30px;
    background: #c10005;
    color: #fff;
    border-radius: 5px;
    letter-spacing: 1px;
}

section.faq-section .row {
    display: flex;
    align-items: center;
}

section.faq-section .col-lg-12.text-center {

    margin: 0 0 30px 0;
}

/*form*/
.brs-group {
    display: flex;
    padding: 25px;
    gap: 50px;
    max-width: min-content;
}

.brs-group h3 {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #DBDBDB;
    padding-bottom: 16px;
    font-family: poppins;
    letter-spacing: 0;
}

.brs-group .dropdown-item {
    font-size: 14px;
    padding: 0;
    color: #393838;
    font-weight: 300;
    transition: all .2s linear;
    font-family: poppins;
    letter-spacing: 0;
}

.brs-group ul li {
    padding: 6px 0;
    border-bottom: 2px solid #DBDBDB;
}

.brs-group p {
    width: 300px;
    font-size: 14px;
    line-height: 20px;
    color: #393838;
    font-weight: 300;
    padding: 12px 0;
    font-family: poppins;
}

.brs-group li h5 {
    font-size: 25px;
    font-weight: 800;
    color: var(--red);
    line-height: 20px;
    letter-spacing: 0;
    font-family: poppins;
}

.brs-group ul li a svg {
    font-size: 32px;
}

.brs-group ul li a svg {
    font-size: 14px;
    color: #393838c2;
    padding-right: 5px;
    width: 15px;
    height: 15px;
}

.brs-group .dropdown-item:hover {
    background-color: transparent;
    color: var(--blue);
    transform: translateX(10px);
    transition: all .2s linear;
}

section.yhankyou-banner-section {
    padding: 100px 0 50px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #a80e0f;
}

.inner-banner-head h1 {
    font-size: 100px;
    font-weight: bold;
    color: #fff;
}

.inner-banner-head p {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

section.term-first-wrapper h5 {
    font-size: 24px;
    letter-spacing: normal;
    margin: 10px 0;
}


.btn_set a {
    display: block;
    color: #c10005;
    font-size: 18px;
}

.btn_set a:hover {
    color: #000;
}


.services-flex-tab ul#myTab {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center !important;
}

.services-flex-tab ul#myTab li {
    width: 18%;
}

.animation__tabs__body video {
    width: 100%;
}


section.process.logo-process .process__box img {
    width: 100%;
}

p.text-center {
    text-align: center;
    margin: auto;
}

/*h3.text-box-ready {
    font-size: 100px;
    line-height: 100px;
}*/

/*h3.text-box-ready span {
    font-size: 100px;
    line-height: 100px;
}*/

.riview-main-box {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}

.riview-main-box img {
    width: 100%;
}

.reveview-section {
    padding: 20px;
}


section.two-d-design.logo-three-design .btn__wrap.d-flex.gap-3.mt-3 {
    margin: -5px 0 0 0 !important;
}

section.story__video a.signup__btn.popup-btn.bg-black.txt-white {
    margin: 15px 0 0 0;
}


section.animation__cta.mb-lg-5.mb-0.pb-5 .btn__wrap.d-flex.justify-content-lg-start.justify-content-center.gap-3 {
    margin: 20px 0 0 0;
}

.three-d-arch-3d {
    background: #2543a4;
    padding: 0 !important;
}

.three-d-arch-3d .row {
    align-items: center;
}


ul.white_list {
    color: #fff;
    padding: 0 0 0 20px;
}

ul.white_list li {
    font-size: 18px;
    font-weight: 300 !important;
    text-transform: capitalize !important;
    font-family: poppins;
    list-style: disc;
}

.motion_gr_mm .industries__slider {
    justify-content: center;
}

.motion_gr_mm .industries__slider .col-lg-4 {
    margin-bottom: 40px;
}

.motion_gr_mm .industries__box span {
    height: 100px;
    align-items: center;
    display: grid;
}

.why-choose-motion .choose__box p {
    font-size: 16px;
    font-family: poppins;
    color: black;
    min-height: 100px;
}

@media(min-width:1200px){
.about_body section.about-who-section H3 {
    font-size: 110px;
    line-height: 120px;
}

}


