* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

:root {
    --primary: #ED1B24;
    --base01: #121212;
    --base01: #6D6E76;
    --tabs: #8D8D8D;
    --black: #000000;
    --white: #ffffff;
}

body {
    background-color: var(--white);
    color: var(--base01);
    font-family: 'Outfit';

}

img {
    max-width: 100%;
}











/* Custom css start from here  */
header {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    transition: .3s ease;
    padding: 20px 0;
    z-index: 2;
}

.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner .banner-img {
    height: 100%;
}

.banner .banner-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.banner .banner-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 35%);
}

/* Marquee start here  */
.marqueeblock {
    position: relative;
    padding: 23px 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.marqueeblock .lineing {
    display: flex;
    margin: 0 20px;
    align-items: center;
}

.marqueeblock .lineing p {
    margin: 0 30px;
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 27px;
    line-height: 36px;
    display: flex;
    align-items: center;
    letter-spacing: 0.055em;
    color: var(--white);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.marquee__part {
    flex-shrink: 0;
    padding: 0 4px;
    font-smooth: always;
}

.marquee__inner {
    -webkit-font-smoothing: antialiased;
    width: fit-content;
    display: flex;
    flex: auto;
    flex-direction: row;
}

/* Why we started css  */
.whywe {
    position: relative;
    padding-top: 140px;
    background: #000000;
}

.whywe .row {
    display: flex;
    align-items: flex-end;
}

.whywe .wheleft .blackbox {
    height: 90px;
    width: 100%;
    background: transparent;
}

.whywe .whyryt {
    height: 100%;
    background: #161616;
    padding: 80px 100px;
}

.whywe .whyryt h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 53px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: 'Bebas Neue';
}

.whywe .whyryt h5 {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -0.6875px;
    color: var(--white);
    margin-bottom: 30px;
}

.whywe .whyryt p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    color: #6D6E76;
}

.btnleft {
    text-align: left;
    margin-top: 30px;
}

.btnred {
    padding: 18px 30px;
    border-radius: 50px;
    background: var(--primary);
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--primary);
    transition: .3s ease;
}

.btnred i {
    margin-left: 8px;
}

.btnred:hover {
    background: var(--white);
    color: var(--primary);
}


.btngreen {
    padding: 18px 30px;
    border-radius: 50px;
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid #085E54;
    transition: .3s ease;
    background: var(--white);
    color: #085E54;
}

.btngreen i {
    margin-left: 8px;
}

.btngreen:hover {
    background: #085E54;
    color: #fff;
}



.howworkblock {
    padding: 100px 0 0 0;
}

.Primarytitle {
    position: relative;
    margin-bottom: 80px;
}

.Primarytitle h4 {
    margin: 0;
    font-weight: 400;
    font-size: 74px;
    line-height: 60px;
    display: flex;
    align-items: center;
    font-family: 'Bebas Neue';
    color: var(--base01);
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    padding-left: 80px;
}

.Primarytitle h4 img {
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.Primarytitle h2 {
    font-weight: 400;
    font-size: 120px;
    line-height: 1;
    display: flex;
    align-items: center;
    color: transparent;
    font-family: 'Bebas Neue';
    position: absolute;
    top: 0;
    left: 80px;
    -webkit-text-stroke: 1px #0000001c;
    z-index: 1;
}

.work-tabs .nav-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-tabs .nav-tabs li.nav-item .nav-link {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: var(--tabs);
    border-radius: 0px;
    border: 3px solid transparent;
    transition: .3s ease;
}

.work-tabs .nav-tabs li.nav-item .nav-link.active {
    border-bottom: 3px solid var(--primary);
    color: #121212;
}

.work-tabs .tabscontent {
    padding: 50px 0;
}

.work-tabs .tabscontent .row {
    align-items: center;
}

.work-tabs .tabscontent .contentleftbar {
    max-width: 95%;
}

.work-tabs .tabscontent .contentleftbar h4 {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.work-tabs .tabscontent .contentleftbar p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #6D6E76;
    min-height: 250px;
}

.work-tabs .tabscontent .contentleftbar ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #6D6E76;
    margin-bottom: 10px;
}

.work-tabs .tabscontent .contentleftbar ul li:last-child {
    margin-bottom: 0;
}

.work-tabs .tabscontent .contentryt {
    text-align: right;
}

.technologiesbar {
    position: relative;
    padding: 140px 0;
    background: var(--black);
}

.technologiesbar .Primarytitle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 130px;
}

.technologiesbar .Primarytitle h4 {
    color: var(--white);
    padding: 0;
}

.technologiesbar .Primarytitle h4 img {
    position: relative;
    left: inherit;
    text-align: inherit;
}

.technologiesbar .Primarytitle h2 {
    margin: 0;
    width: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    -webkit-text-stroke: 1px #6a6a6a;
}

.technology-boxes {
    position: relative;
}

.technology-boxe {
    flex: 0 0 auto;
    width: 20%;
}

.technology-boxes .reverse {
    position: relative;
    flex-direction: column-reverse;
    display: flex;
}

.technology-boxes .boxesblock h4 {
    font-weight: 400;
    font-size: 140px;
    line-height: 120px;
    text-align: center;
    color: var(--white);
    transition: .3s ease;
    opacity: 0.2;
    font-family: 'Bebas Neue';
    margin: 0;
    transform: translate(0px, 20px);
}

.technology-boxes .boxesblock .boxesin {
    padding: 30px 26px;
    background: var(--primary);
    min-height: 150px;
    transition: .3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-boxes .boxesblock .whitebox h4 {
    color: var(--base01) !important;
}

.technology-boxes .boxesblock .whitebox p {
    color: #6D6E76 !important;
}

.technology-boxes .boxesblock .boxesin img {
    margin-bottom: 30px;
}

.technology-boxes .boxesblock .boxesin h4 {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 44px;
    text-transform: uppercase;
    color: var(--white);
    text-align: left;
    transform: translate(0px, 0px);
    opacity: 1 !important;
}

.technology-boxes .reverse h4 {
    transform: translate(0px, -20px);
}

.technology-boxes .boxesblock .boxesin p {
    margin: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    opacity: 0.9;
}

.technology-boxes .boxesblock .whitebox {
    background: var(--white);
}

.technology-boxes .boxesblock:hover h4 {
    transform: inherit;
    opacity: .5;
}

.joinus {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/footerbg.jpg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}

.joinus h5 {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.368497px;
    color: var(--primary);
    font-family: 'Bebas Neue';
    margin-bottom: 10px;
}

.joinus h3 {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 90px;
    line-height: 92px;
    letter-spacing: 0.368497px;
    color: var(--white);
    margin-bottom: 10px;
}

.joinus p {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.368497px;
    color: var(--white);
    margin-bottom: 24px;
}

form.newsletter {
    position: relative;
}

form.newsletter .form-control {
    background: #F9F9F9;
    border: 1.29215px solid #E6E6E6;
    border-radius: 55.5506px;
    padding: 12px 140px 12px 20px;
    height: 70px;
}

form.newsletter .btnred {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0px, -50%);
    padding: 16px 40px;
}

.footer {
    padding: 20px 0;
    background: var(--black);
    position: relative;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .container nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .container nav ul li {
    margin-left: 30px;
}

.footer .container nav ul li a {
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    text-decoration: none;
    transition: .3s ease;
}

.footer .container nav ul li a:hover {
    color: var(--primary);
}


/* responsive css start from here  */
@media (max-width: 1199px) {
    .technology-boxes .reverse {
        flex-direction: column;
    }

    .technology-boxes .reverse h4 {
        transform: translate(0px, 20px);
    }

    .work-tabs .nav-tabs li.nav-item .nav-link {
        font-size: 16px;
        padding: 10px;
    }

    .work-tabs .tabscontent .contentleftbar {
        max-width: 100%;
    }

    .technologiesbar .Primarytitle h2 {
        font-size: 100px;
    }
}

header .logo img {
    height: 150px;
}

@media (max-width: 1024px) {
    header .logo {
        text-align: center;
    }

    .whywe {
        padding-top: 80px;
    }

    header .logo {
        text-align: center;
    }

    .whywe .whyryt {
        padding: 40px 60px;
    }

    .whywe .whyryt h5 {
        font-size: 36px;
        line-height: 40px;
    }

    .whywe .whyryt h3 {
        font-size: 32px;
        line-height: 36px;
    }

    .howworkblock {
        padding: 60px 0 0 0;
    }

    .Primarytitle h4 {
        font-size: 50px;
        line-height: 1;
        padding-left: 60px;
    }

    .Primarytitle h2 {
        font-size: 90px;
        left: 60px;
    }

    .Primarytitle h4 img {
        width: 50px;
        margin-right: 10px;
    }

    .work-tabs .nav-tabs {
        justify-content: center;
    }

    .work-tabs .nav-tabs li.nav-item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .work-tabs .nav-tabs li.nav-item .nav-link {
        margin: 0;
        width: 100%;
    }

    .work-tabs .tabscontent .contentleftbar h4 {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 10px;
    }

    .work-tabs .tabscontent .contentleftbar p {
        font-size: 18px;
        line-height: 26px;
        min-height: 190px;
    }
}

@media (max-width: 991px) {
    .whywe .wheleft .blackbox {
        height: 0;
    }

    .whywe {
        padding: 60px 0;
    }

    .technologiesbar {
        padding: 60px 0;
    }

    .technologiesbar .Primarytitle h2 {
        font-size: 70px;
    }

    .technology-boxes .reverse {
        flex-direction: column;
    }

    .technology-boxes .reverse h4 {
        transform: translate(0px, 20px);
    }

    .Primarytitle {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .whywe {
        padding: 0px 0;
    }

    .technology-boxe {
        flex: 0 0 auto;
        width: 100%;
    }

    .whywe .whyryt {
        padding: 50px 20px;
    }

    .Primarytitle {
        text-align: center;
        margin-bottom: 50px;
    }

    .Primarytitle h4 {
        justify-content: center;
        padding: 0;
    }

    .Primarytitle h4 img {
        position: relative;
    }

    .Primarytitle h2 {
        font-size: 70px;
        left: 0;
        width: 100%;
        justify-content: center;
    }

    .work-tabs .nav-tabs li.nav-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .work-tabs .tabscontent .contentleftbar p {
        min-height: auto;
    }

    .btnleft {
        margin-top: 20px;
    }

    .work-tabs .tabscontent {
        padding: 30px 0;
    }

    .work-tabs .tabscontent .row {
        flex-direction: column-reverse;
    }

    .work-tabs .tabscontent .contentleftbar {
        margin-top: 30px;
    }

    .Primarytitle h4 {
        font-size: 40px;
    }

    .technologiesbar .Primarytitle h2 {
        font-size: 52px;
    }

    .technology-boxes .boxesblock .boxesin {
        padding: 40px 30px;
        min-height: auto;
    }

    .technologiesbar .Primarytitle h4 {
        font-size: 28px;
        line-height: 1;
    }

    .technologiesbar .Primarytitle h2 {
        font-size: 44px;
    }

    .technologiesbar .Primarytitle {
        margin-bottom: 30px;
    }

    .technology-boxes .boxesblock h4 {
        font-size: 100px;
        line-height: 1;
    }

    .joinus {
        padding: 50px 0;
    }

    .joinus h5 {
        font-size: 18px;
        line-height: 20px;
    }

    .joinus h3 {
        font-size: 60px;
        line-height: 1;
    }

    .joinus p {
        font-size: 16px;
        line-height: 20px;
    }

    .footer .container {
        display: block;
        text-align: center;
    }

    .footer .container nav ul {
        justify-content: center;
        flex-direction: column;
        margin-top: 20px;
    }

    .footer .container nav ul li {
        margin-left: 0;
        margin-top: 10px;
    }

    .btnred {
        padding: 14px 20px;
        font-size: 16px;
    }
}