/***** 1. Common - Font Installation *****/
/*Mainfont - NunitoSans*/
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-ExtraLight.ttf');
    font-weight:200;
    font-style:normal;
}@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-Light.ttf');
    font-weight:300;
    font-style:normal;
}@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-Regular.ttf');
    font-weight:400;
    font-style:normal;
}@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-Medium.ttf');
    font-weight:500;
    font-style:normal;
}@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-SemiBold.ttf');
    font-weight:600;
    font-style:normal;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-Bold.ttf');
    font-weight:700;
    font-style:normal;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-ExtraBold.ttf');
    font-weight:800;
    font-style:normal;
}


/****** 2. Common - General Stylings *****/
*{
    --clr-black: #060606;
    --clr-white: #ffffff;
    --clr-orange: #f7934b;
    --clr-owhite: #d9e1ec;
    --color-five: #f2f7fd;
    margin:0;
    padding:0;
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    /* transform-style: preserve-3d; */
}
::-webkit-scrollbar {
    width: 8px;
} 
::-webkit-scrollbar-track {
    background:#fff;
} 
::-webkit-scrollbar-thumb {
    /*background-color: #1f1f1f;*/
    outline: 1px solid #fafafa;
    border-radius: 10px;
    background: var(--clr-black);
}
::-moz-selection { 
    background: var(--clr-black); 
    color:var(--clr-white);
}
::selection { 
    background: var(--clr-black); 
    color:var(--clr-white);
}
button:focus, button:active, button:hover{
    outline: 0px;
    /* border:0px; */
}
html{
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
}
body{
    position: relative;
    font-family: 'Manrope';
    overflow-x: hidden;
    left: 0;
    width: 100vw;
    font-size: 17px;
    overflow-y: scroll;
    /* line-height: 1.5; */
    color: var(--color-text);
    background: #fff;
}



    

#home {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--clr-black);
}



.footer-bottom {
    text-align: center;
    padding-bottom: 3rem;
    font-size: 12px;
}

footer .logo {
    font-size: 2.5rem;
    margin-bottom: 0rem;
}

.serv:nth-child(even) {
    flex-direction: row-reverse;
}

#services .img-container {
    width: 100%;
    height: 100%;
}

#services .img-container img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-sec {
    flex-wrap: wrap;
    padding: 0 10vw;
}

.hmc-area {
    width: 50%;
    position: relative;
    height: 100%;
    /* padding-top: 15vh; */
    display: flex;
}

.hmc-area video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hm-txt {
    position: relative;
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    width: 100%;
    padding: 0 20% 20vh 0;
}

.ha-txt-3 {
    text-transform: uppercase;
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--clr-orange);
}

.ha-txt-1 {
    font-size: 3.8rem;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
}

.ha-txt-2 {
    font-size: 2.9rem;
    font-weight: 200;
    line-height: 1;
    color: var(--clr-owhite);
}
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
} 

section#about {
    position: relative;
    /* height: 100vh; */
    width: 100vw;
    background: var(--clr-white);
    padding-top: 20vh;
    /* padding-bottom: 20vh; */
    display: flex;
}

.separator {
    z-index: 85;
    pointer-events: none;
    width: 100%;
    height: 150px;
    fill: var(--clr-black);
    display: block;
    position: absolute;
    left: 0;
}

.separator--up {
    top: -1px;
}

.separator--down {
    bottom: -2px;
}

.abt-mid-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-right: 5%;
}

.title-sec {
    position: relative;
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;
}

.content-s {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
}

p {
    margin-bottom: 1rem;
}

.img-area-abt {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

section#work {
    position: relative;
    display: flex;
    width: 100vw;
    /* height: 100vh; */
    background: var(--clr-black);
    justify-content: center;
    padding-top: 20vh;
    padding-bottom: 10vh;
    overflow: hidden;
}

.video-wrap {
    position: absolute;
    width: 40%;
    height: 100%;
    bottom: 0;
}

.video-wrap video{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vw-left {
    left: -20vw;
    transform: rotateY(180deg);
}

/* Removed empty ruleset as it was unnecessary */

.middle-sec {
    position: relative;
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.sub-1 {
    margin: 0;
    line-height: 1;
}

.st-sec {
    position: relative;
    color: var(--clr-orange);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.mid-content-area {
    position: relative;
    font-size: 15px;
    color: var(--clr-owhite);
}

#normal-nav {
    position: fixed;
    width: 100vw;
    z-index: 100;
    height: 20vh;
    display: flex;
    padding: 1rem 10vw;
    justify-content: space-between;
}

.logo-area {
    position: relative;
    width: 95px;
    height: 100%;
    transition: all .4s ease;
    z-index: 3;
}

.logo-area img {
    width: 100%;
    position: relative;
}

.menu-area {
    position: relative;
    width: 40%;
    padding: 1rem;
    display: flex;
    z-index: 3;
}

.menu-sec {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    transition: all .4s ease;
}

.menu-sec a {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--clr-white);
    transition: all .4s ease;
}
.separator--solo {
    height: auto;
    width: calc(100% + 5px);
    margin-left: -2.5px;
    position: relative
}
.separator--line-light {
    fill: none;
    stroke: var(--clr-white);
    stroke-width: 1px
}

.lone-separator {
    background: var(--clr-black);
    position: relative;
    width: 100%;
    height: auto;
    padding: 1rem 0;
}

#services {
    background: var(--clr-black);
    color: var(--clr-white);
    position: relative;
    padding-bottom: 10vh;
}

.service-outer {
    position: relative;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.service-inner {
    position: relative;
    display: flex;
    width: calc(100% /3);
    flex-direction: column;
    padding: 0 1rem;
    align-items: center;
    cursor: pointer;
}

.mid-text {
    text-align: center;
}

#contact {
    position: relative;
    display: flex;
    width: 100vw;
    padding-top: 15vh;
    padding-bottom: 15vh;
}

.orange-text {
    color: var(--clr-orange);
}

.srv-mid-content {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.service-name {
    color: var(--clr-orange);
    text-transform: uppercase;
}

.form-section {
    position: relative;
    width: 60%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 600px;
}

.input-cover-short {
    position: relative;
    width: 50%;
    padding: 0 1rem;
    margin: 1rem 0;
    padding-top: 1rem;
}

.input_f {
    position: relative;
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: 2px solid #888;
    border-radius: 2rem;
    font-size: 16px;
    font-family: 'Manrope';
}
.input_f:focus + label {transform: translateY(-10px) scale(0.9);opacity: .8;}


.ip_name {
    position: absolute;
    z-index: 2;
    left: 2rem;
    top: 0;
    font-size: 14px;
    color: var(--clr-black);
    font-weight: 700;
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
    transform: translateY(1.8rem);
}

.input-cover-long {
    position: relative;
    width: 100%;
    padding: 0 1rem;
    margin: 1rem 0;
    padding-top: 1rem;
    display: flex;
    justify-content: center;
}

.long_n {
    top: 0;
    transform: translateY(2.7rem);
}

.primary_btn {
    background: var(--clr-orange);
    border: 0px;
    padding: 1rem;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--clr-white);
    font-family: 'Manrope';
    font-weight: 800;
    border-radius: 2rem;
    cursor: pointer;
    transition: all .3s ease;
}

#cf_submit {
    min-width: 250px;
}

.primary_btn:hover {
    background: var(--clr-black);
    color: var(--clr-orange);
}

#content-popup {
    position: fixed;
    background: var(--clr-black);
    width: 100vw;
    min-height: 100vh;
    top: 0;
    left: 0;
    /* opacity: 0; */
    display: flex;
    visibility: hidden;
    z-index: 150;
}
#content-popup.active {
    animation: op_anim 0.5s ease forwards;
}
#content-popup:not(.active) {
    /* opacity: 1; */
    animation: op_rev 0.5s ease forwards;
}
.inner-flex {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: var(--clr-orange);
    z-index: 148;
    /* transition: all 1s ease .5s; */
    /* transform: translate(100vw, 100vh); */
    top: 0;
    left: 0;
    display: none;
}

.active .inner-flex {
    animation: anim-1 1.5s cubic-bezier(0.550, 0.055, 0.675, 0.190) forwards;
}
@keyframes anim-1 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    25%, 75% {
        transform: translate3d(0, -100%, 0);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    100% {
        transform: translate3d(0, -200%, 0);
    }
}

@keyframes anim-2 {
    0%, 12.5% {
        transform: translate3d(0, 0, 0);
    }
    37.5%, 62.5% {
        transform: translate3d(0, -100%, 0);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    87.5%, 100% {
        transform: translate3d(0, -200%, 0);
    }
}
@keyframes op_anim {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity:1;
        visibility: visible;
    }
}
@keyframes op_rev {
    from {
        opacity:1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
       
    }
}


.cc-area {
    position: relative;
    padding: 5rem;
}

.content-close {
    color: var(--clr-white);
    display: flex;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 10vw;
    top: 2rem;
}

.content-close svg {
    width: 21px;
    fill: var(--clr-white);
    margin-right: 0.5rem;
}

.content-close span {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
}

.inner-cc {
    position: relative;
    display: flex;
    width: 100%;
    overflow-y: scroll;
    height: 85vh;
    display: none;
    overflow-x: hidden;
    flex-direction: column;
}

.cc-split {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 2rem;
}

.serve_m_img {
    width: 30%;
    /* height: 200px; */
}

.service-m-name {
    color: var(--clr-orange);
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.serv-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--clr-owhite);
    /* padding-right: 2rem; */
    text-align: justify;
}

body.no-scroll {
    overflow-y: hidden;
}

.sserv-sec {
    display: flex;
    color: var(--clr-owhite);
    width: 50%;
    padding: 1rem 2rem 1rem 0;
}

.sserv-img {
    position: relative;
    width: 150px;
    height: 150px;
    /* background: red; */
    margin-right: 1rem;
    padding: 1rem;
}

.sserv-desc {
    position: relative;
    width: calc(100% - 150px - 1rem);
}

.sserv-desc p {
    font-size: 13px;
    font-weight: 200;
}

.sserv_name {
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--clr-orange);
}

.inner-cc.show {
    display: flex;
}
.inner-cc::-webkit-scrollbar {
    width: 5px;
} 
.inner-cc::-webkit-scrollbar-track {
    background:var(--clr-black);
} 
.inner-cc::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--clr-black);
    outline:0px;
    cursor: pointer;
}
.sserv-icon {
    position: relative;
    width: 80%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
}

.sm-area {
    padding: 1rem 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    z-index: 2;
    display: none;
}

.sm-link:not(:last-child) {
    margin-right: 1rem;
}

.sm-link {
    color: var(--clr-white);
    cursor: pointer;
    transition: all .4s ease;
}

.sm-link:hover {
    color: var(--clr-orange);
}

.up_line_anime {
    transform: translate(0, 50px);
    opacity: 0;
}

#loader {
    position: fixed;
    z-index: 250;
    width: 100vw;
    height: 200vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loaded #main_logo {
    width: 200px;
}
.loading #main_logo {
    width: 120px;
}
.outer_circle{
    fill:none;
    stroke:#060606;
    stroke-width:11;
    stroke-miterlimit:10;
    
}
.loaded .outer_circle{
    opacity: 0;
    stroke-dasharray: 1000;
    animation: draw 2s linear reverse;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}
.loading .outer_circle{
    transform-origin: 48% 50%;
    animation: rotate 2s infinite;
}
.mid_circle{
    fill:none;
    stroke:#F7934B;
    stroke-width:10;
    stroke-miterlimit:10;
    
}
.loading .mid_circle{
    transform-origin: 48% 50%;
    animation: rotate 2s infinite;
}
.loaded .mid_circle{
    opacity: 0;
    stroke-dasharray: 1000;
    animation: draw 2s linear reverse;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}
.inner_circle{
    fill:none;
    stroke:#060606;
    stroke-width:6;
    stroke-miterlimit:10;
}
.loading .inner_circle{
    transform-origin: 48% 50%;
    animation: rotate 2s infinite;
}
.loaded .inner_circle{
    opacity: 0;
    stroke-dasharray: 500;
    animation: draw2 1.5s linear reverse;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 1s;
}
.loading .secondary{
    display: none;
}
.orange_fill{
    fill: var(--clr-orange);
}
.black_fill{
    fill: var(--clr-black);
}
.mng_wrd{
    fill:#F7934B;
    stroke:#F7934B;
    stroke-width:0.5;
    stroke-miterlimit:10;
    
}
.loaded .mng_wrd, .loaded .circle_fill, .loaded .name_fill{
    opacity: 0;
    animation: fadeIn 1s; 
    animation-fill-mode: forwards;
    
}
.loaded .circle_fill:nth-child(1){
    animation-delay: 2.5s;
}
.loaded .circle_fill:nth-child(2){
    animation-delay: 2.6s;
}
.loaded .mng_wrd:nth-child(1){
    animation-delay: 2.5s;
}
.loaded .mng_wrd:nth-child(2){
    animation-delay: 2.6s;
}
.loaded .mng_wrd:nth-child(3){
    animation-delay: 2.7s;
}
.loaded .mng_wrd:nth-child(4){
    animation-delay: 2.8s;
}
.loaded .mng_wrd:nth-child(5){
    animation-delay: 2.9s;
}
.loaded .mng_wrd:nth-child(6){
    animation-delay: 3s;
}
.loaded .name_fill:nth-child(1){
    animation-delay: 3.1s;
}
.loaded .name_fill:nth-child(2){
    animation-delay: 3.3s;
}
.loaded .name_fill:nth-child(3){
    animation-delay: 3.5s;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pop {
     0% {
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes draw {
    0%{
        opacity: 1;
        stroke-dashoffset: 0;
    }
    100% {
        opacity: 1;
        stroke-dashoffset: 1000;
    }
}
@keyframes draw2 {
    0%{
        opacity: 1;
        stroke-dashoffset: 0;
    }
    100% {
        opacity: 1;
        stroke-dashoffset: -500;
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animation-name {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.loader-inner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--clr-white);
    display: grid;
    place-items: center;
}

.shape {
    height: 100vh;
    width: 100%;
    display: block;
    fill: var(--clr-white);
}

.shape-wrap {
    position: relative;
    width: 100%;
}

.start .logo-area {
    opacity: 0;
    animation: pin_down 1s; 
    animation-fill-mode: forwards;
    animation-delay: 1s;
}
.start .sm-area {
    opacity: 0;
    animation: pin_down 1s; 
    animation-fill-mode: forwards;
    animation-delay: 1.7s;
}
.start .menu-item {
    opacity: 0;
    animation: pin_down 1s; 
    animation-fill-mode: forwards;
}
.start .menu-item:nth-child(1){
    animation-delay: 1.2s;
}
.start .menu-item:nth-child(2){
    animation-delay: 1.4s;
}
.start .menu-item:nth-child(3){
    animation-delay: 1.6s;
}
@keyframes pin_down {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.thin .logo-area {
    width: 80px;
}

#normal-nav.thin {
    height: auto;
    padding: .5rem 10vw;
}

#normal-nav:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--clr-black);
    left: 0;
    top: 0;
    transform: translateY(-100%);
    transition: all .4s ease;
    z-index: 3;
}

.thin .menu-sec, .thin .sm-area {
    align-items: center;
}

#normal-nav.thin:before {
    transform: translateY(0);
}

.hb-area {
    display: none;
    padding-top: 1.5rem;
    z-index: 250;
}
.menu-opened .menu-area{
    transform: translateX(0);
}

#normal-nav.menu-opened:before {
    transform: translateY(0);
}

.menu-item:hover {
    color: var(--clr-orange);
}

.why-elm {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0;
    justify-content: center;
}

.element p {
    font-size: 14px;
}

.element {
    display: flex;
    width: 50%;
    padding: 1rem;
}

.elm-title {
    width: 100px;
    position: relative;
    text-align: left;
}

.elm-content {
    width: calc(100% - 100px);
    text-align: left;
}

img.elm-img {
    width: 80px;
    position: relative;
    filter: invert(1);
    opacity: 0.9;
}

.elm-content h4 {
    position: relative;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    color: var(--clr-orange);
    font-weight: 800;
}

.elm-content p {
    font-size: 13px;
    font-weight: 200;
}

.left_line_anime {
    transform: translate(-30px, 0);
    opacity: 0;
}

.right_line_anime {
    transform: translate(30px, 0);
    opacity: 0;
}

footer {
    position: relative;
    background: var(--clr-black);
    color: var(--clr-white);
    padding-bottom: 2rem;
}

.footer-upper {
    display: flex;
    position: relative;
    justify-content: center;
    padding-bottom: 2rem;
    flex-direction: column;
    align-items: center;
}

.c-mail {
    color: var(--clr-orange);
    font-size: 1.5rem;
    position: relative;
    transition: all .4s ease;
}

.c-mail:hover {
    color: var(--clr-white);
}

.footer-upper label {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.left-cc {
    flex-direction: row;
    align-items: flex-start;
}

.right-cc {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 0 5rem;
    align-items: center;
    justify-content: center;
}

/*New Styles*/
.modal {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 90;
    min-height: calc(100vh - 105px);
    overflow: auto;
    top: 0;
}
body .modal.hidden {
    display: none;
}
body .modal .modal-content {
    min-height: 100%;
    /* overflow-y: scroll; */
    margin-left: auto;
    max-width: 100%;
    background-color: #ffffff;
    box-shadow: -3px 0 6px rgba(0, 0, 0, 0.16);
    background: yellow;
    overflow-x: hidden;
}
body .modal .modal-content .card {
    margin-top: 400px;
    background: pink;
    width: 100%;
    height: 100px;
}
body .modal .modal-content .card2, body .modal .modal-content .card3, body .modal .modal-content .card4, body .modal .modal-content .card5 {
    margin-top: 100px;
    background: pink;
    width: 100%;
    height: 100px;
}

.service-desc-area {
    position: relative;
    width: 70%;
}

.cap-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.left-p-ap {
    transform: translate(20px, 0);
    opacity: 0;
    /* transition: all .4s ease; */
}

.right-p-ap {
     transform: translate(-20px, 0);
    opacity: 0;
}
.gooey {
    position: relative;
    /* background: #fff; */
    filter: contrast(20);
    height: 20px;
}
.gooey .dot {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 12px;
    left: 15px;
    /* filter: blur(4px); */
    background: var(--clr-white);
    border-radius: 50%;
    transform: translateX(0);
    animation: dot 2.8s infinite;
}
.gooey .dots {
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    animation: dots 2.8s infinite;
}
.gooey .dots span {
    display: block;
    float: left;
    width: 10px;
    height: 10px;
    margin-left: 16px;
    /* filter: blur(4px); */
    background: var(--clr-white);
    border-radius: 50%;
}
@-moz-keyframes dot {
    50% {
        transform: translateX(96px);
    }
}
@-webkit-keyframes dot {
    50% {
        transform: translateX(96px);
    }
}
@-o-keyframes dot {
    50% {
        transform: translateX(96px);
    }
}
@keyframes dot {
    50% {
        transform: translateX(96px);
    }
}
@-moz-keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}
@-webkit-keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}
@-o-keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}
@keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}


#inq-sending {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: hsl(25deg 91% 63% / 90%);
    z-index: 45;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    top: 0;
    left: 0;
    z-index: 200;
}

.inner-inq {
    display: flex;
    width: auto;
    /* background: #fff; */
    align-items: center;
    padding: 1rem;
    color: #fff;
}

span.ld-title {
    display: block;
}

span.ld-title {text-transform: uppercase;font-weight: 600;color: var(--clr-white);margin-right: 1rem;margin-top: 0.7rem;}

#inq-sending.active {
    opacity: 1;
    visibility: visible;
}

span.wrnn-txt {
    position: absolute;
    left: 2rem;
    bottom: -1.2rem;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-orange);
    display: none;
}

.fail span.wrnn-txt {
    display: flex;
}