/* universal styling start */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Urbanist";
}

html {
    scroll-behavior: smooth;
}

body {
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    padding: 0;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

a {
    display: inline-block;
}

button {
    border: none;
    background: transparent;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

button {
    cursor: pointer;
}

ul,
ol,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

img {
    height: auto;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1160px;
}

h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 70px;
    text-transform: uppercase;
    color: var(--links-color);
    margin-bottom: 10px;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    color: var(--links-color);
    margin-bottom: 20px;
}

h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 38px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 20px;
    color: var(--text-color);
}

.btn {
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    color: var(--background-color);
    background-color: var(--button-background);
    padding: 12px 22px;
    border-radius: 4px;
}

:root {
    --primary-color: #ffd74b;
    --secondary-color: #264d9b;
    --text-color: #ffffff;
    --background-color: #000000;
    --background-light: rgb(13 13 13);
    --links-color: #ffffff;
    --button-background: #ffd74b;
}


/* universal styling end */


/* header start */

header {
    background-color: var(--background-color);
    position: relative;
}

header .container {
    max-width: 1340px;
}

header .header-top {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

header .header-top .left-column {
    display: flex;
    gap: 50px;
}

header .header-top .left-column a {
    color: var(--links-color);
}

header .header-top .links i {
    font-size: 20px;
    color: var(--links-color);
}

header .header-top .links {
    display: flex;
    gap: 10px;
}

header .header-bottom {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    align-items: center;
}

header .header-bottom .logo {
    max-width: 240px;
    width: 100%;
}

header .header-bottom .logo img {
    width: 100%;
}

header nav ul {
    display: flex;
    gap: 25px;
}

header nav ul a {
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
    color: var(--links-color);
    text-transform: uppercase;
}

header .navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin-bottom: 5px;
    display: block;
    border-radius: 50px;
}

header .navbar-toggle :last-child {
    margin-bottom: 0;
}

header .navbar-toggle {
    display: none;
}


/* header end */


/* banner start */

.banner {
    background-color: var(--background-color);
    padding: 60px 0 96px;
}

.banner .container {
    max-width: 1366px;
}

.banner .left-column {
    max-width: 620px;
    width: 100%;
}

.banner span {
    font-size: 17px;
    line-height: 23px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--links-color);
    margin-bottom: 10px;
}

.banner .banner-img {
    max-width: 391px;
    width: 100%;
    margin: 0 auto 30px auto;
}

.banner .banner-img img {
    width: 100%;
}

.slider {
    overflow: hidden;
    width: 100%;
    padding: 50px 0 0;
    border-top: 19px solid var(--primary-color);
}

.slide-track {
    display: flex;
    width: max-content;
    /* important */
    animation: scroll 80s linear infinite;
}

.slide {
    flex: 0 0 auto;
    /* important */
    max-width: 200px;
    width: 100%;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Smooth continuous animation */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.banner .impact {
    display: flex;
    gap: 21px;
    justify-content: center;
    margin-bottom: 60px;
}

.banner .impact .inner-impact {
    padding: 12px 24px;
    background-color: transparent;
    fill: var(--links-color);
    background-image: linear-gradient(173deg, #0d1f3fd1 56%, #acacac54 100%);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border: 1px solid #ffffff8f;
    border-radius: 3px;
    border-right: 0;
}

.banner .impact .inner-impact span {
    font-size: 15px;
    line-height: 21px;
    color: var(--links-color);
    font-weight: 600;
}

.banner p {
    font-size: 16px;
    line-height: 22px;
    color: var(--links-color);
}

.banner .btn {
    margin-bottom: 50px;
}


/* banner end */


/* services start */

.services {
    background-color: var(--background-color);
    padding: 40px 0 80px;
}

.services .container {
    max-width: 1300px;
}

.services .content .box i {
    color: var(--links-color);
    font-size: 50px;
    margin-bottom: 20px;
}

.services .content .box li::before {
    /* content: "\f00c"; */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.services .content .box {
    padding: 30px;
    max-width: 33.3%;
    width: 100%;
    border: 1px solid #ffffff4d;
}

.services .content .box:first-child {
    border-left: 0;
    border-top: 0;
}

.services .content .box:nth-child(2) {
    border-top: 0;
}

.services .content .box:nth-child(3) {
    border-top: 0;
    border-right: 0;
}

.services .content .box:nth-child(4) {
    border-bottom: 0;
    border-left: 0;
}

.services .content .box:nth-child(5) {
    border-bottom: 0;
}

.services .content .box:nth-child(6) {
    border-bottom: 0;
    border-right: 0;
}

.services .content {
    display: flex;
    flex-wrap: wrap;
}

.services .content .box li {
    color: var(--links-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    list-style: disc;
    margin-bottom: 15px;
    position: relative;
}

.services p {
    margin-bottom: 50px;
}


/* .services end */


/* .trusted start */

.trusted {
    padding: 80px 0;
}

.inner-content {
    max-width: 755px;
    width: 100%;
}

.trusted p {
    color: var(--background-color);
}

.trusted h2 {
    color: var(--background-color);
}

.trusted .trusted-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.trusted .trusted-logo .inner-logo {
    max-width: 17%;
    width: 100%;
}

.trusted .trusted-logo img {
    width: 100%;
}

.trusted .result {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    text-align: center;
}

.trusted .result span {
    font-weight: 700;
}

.trusted .result i {
    margin-right: 10px;
    font-size: 20px;
}


/* .trusted end */


/* industries start */

.industries {
    background-color: var(--background-color);
    padding: 80px 0;
}

.industries li a {
    font-size: 14px;
    font-weight: 700;
    color: var(--links-color);
    display: flex;
    align-items: center;
}

.industries li a i {
    font-size: 25px;
    color: var(--primary-color);
    margin-right: 15px;
}

.industries ul {
    display: grid;
    gap: 30px;
    grid-template-columns: auto auto auto auto;
}


/* .industries end */


/* achieve start */

.achieve {
    padding: 80px 0;
    background-color: var(--background-light);
}

.achieve h2 a {
    font-size: 84px;
    line-height: 90px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: underline;
}

.achieve p {
    max-width: 755px;
    width: 100%;
}

.achieve p a:hover::before {
    width: 0;
    left: 0;
}

.achieve p a {
    color: var(--links-color);
    position: relative;
}

.achieve p a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: var(--links-color);
    transition: all 0.3s ease-in-out;
}


/* .achieve end */


/* blogs start */

.blogs {
    background-color: var(--background-color);
    padding: 80px 0;
}

.blogs .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.sub-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: underline;
    margin-bottom: 24px;
}

.blogs .left-column {
    max-width: 30%;
    width: 100%;
}

.blogs .right-column {
    max-width: 65%;
    width: 100%;
}

.blogs .left-column a {
    color: var(--links-color);
}

.button:hover::before {
    width: 0;
    left: 0;
}

.button {
    color: var(--links-color);
    position: relative;
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
}

.button::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.blogs .right-column .box span {
    color: var(--text-color);
}

.blogs .right-column .box a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--primary-color);
}

.blogs .right-column .box .number {
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
    margin-right: 25px;
    width: 100%;
    max-width: 30px;
    border-radius: 50%;
}

.blogs .right-column .box:hover .read::before {
    width: 0;
    left: 0;
}

.blogs .right-column .box:hover .number {
    margin-right: 0;
    transition: all 0.3s ease-in-out;
    margin-left: 25px;
}

.blogs .right-column .box h3 {
    margin-bottom: 0;
}

.blogs .right-column .box:hover h3 {
    margin-left: 25px;
    transition: all 0.3s ease-in-out;
}

.blogs .slider {
    border-top: 0;
}

.blogs .slider .slide {
    -webkit-text-stroke-width: 1px;
    font-size: 8vw;
    line-height: 1em;
    color: #ffffff4f;
    -webkit-text-stroke-color: inherit;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    /* max-width: 810px; */
    max-width: fit-content;
}


/* .blogs end */


/* about-us */

.about-us {
    background-color: var(--background-color);
    padding: 80px 0;
}

.about-us .container {
    display: flex;
    justify-content: space-between;
}

.about-us .left-column {
    max-width: 48%;
    width: 100%;
}

.about-us .right-column {
    max-width: 46%;
    width: 100%;
}

.about-us .right-column img {
    width: 100%;
}


/* .about-us end */


/* partner */

.partner {
    background-color: var(--text-color);
}

.partner h2 {
    color: var(--background-color);
}

.partner p {
    color: var(--background-color);
}

.partner .right-column img {
    position: sticky;
    top: 0;
}


/* .partner end */


/* contact-us start */

.contact-us {
    background-color: var(--background-light);
    padding: 80px 0 0;
}

.contact-us h2 span {
    color: var(--primary-color);
}

.contact-us .sub-title {
    margin-bottom: 35px;
    display: inline-block;
}

.contact-us .top-column {
    margin-bottom: 50px;
}

.contact {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 30px;
}

.contact-us .bottom-column {
    display: flex;
    justify-content: space-between;
}

.contact-us .bottom-column .left-inner {
    max-width: 60%;
    width: 100%;
}

.contact-us .bottom-column .inner-content {
    max-width: 30%;
    width: 100%;
}

.contact-us .bottom-column .inner-content a {
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: underline;
}

.contact-us .slider {
    border-top: 0;
}

.contact-us .slider .slide {
    -webkit-text-stroke-width: 1px;
    font-size: 8vw;
    line-height: 1em;
    color: #232326;
    -webkit-text-stroke-color: inherit;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    /* max-width: 900px; */
    max-width: fit-content;
}


/* .contact-us end */


/* our-work start */

.our-work .left-column img {
    width: 100%;
}

.our-work .right-column .inner {
    position: sticky;
    top: 0;
}

.our-work h2 {
    font-size: 61px;
    line-height: 67px;
    font-weight: 700;
}

.our-work h2 span {
    background-color: var(--primary-color);
}

.our-work .button {
    color: var(--background-color);
}

.our-work .button::before {
    background-color: var(--background-color);
}

.our-work .left-column .button {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.our-work .left-column .box:hover .button::before {
    width: 0;
    left: 0;
}

.our-work .left-column .box img {
    margin-bottom: 30px;
}

.our-work .left-column .box {
    margin-bottom: 85px;
}


/* .our-work end */


/* footer start */

footer {
    background-color: var(--background-color);
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

footer .logo {
    max-width: 120px;
    margin-bottom: 35px;
}

footer .logo img {
    width: 100%;
}

footer .column {
    max-width: 30%;
    width: 100%;
}

footer .column h3 {
    font-size: 17px;
    line-height: 23px;
}

footer p {
    font-size: 15px;
    line-height: 21px;
}

footer .column .contact {
    font-size: 21px;
    line-height: 27px;
}

footer .button::before {
    background-color: var(--text-color);
}

footer li a {
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
    color: #ffffffe6;
    margin-bottom: 10px;
}

footer .footer-top {
    padding: 40px;
}

footer .copyright {
    padding: 20px;
    border-top: 1px solid #2d2d2d;
}

footer .copyright .left-column {
    max-width: 493px;
    width: 100%;
}

footer .copyright p {
    color: #777777;
    margin-bottom: 5px;
}

footer .copyright .links a {
    color: #777777;
    font-size: 25px;
}

footer .copyright .links {
    display: flex;
    gap: 20px;
}

@media screen and (max-width: 1120px) {
    h1 {
        font-size: 62px;
        line-height: 68px;
    }
}

@media screen and (max-width: 990px) {
    .banner {
        padding: 40px 0 60px;
    }
    .banner .impact {
        margin-bottom: 30px;
    }
    h1 {
        font-size: 48px;
        line-height: 54px;
    }
    .banner h1 {
        margin: 0 auto 30px auto;
    }
    .banner .btn {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .banner .impact {
        flex-direction: column;
    }
    .banner .banner-img {
        max-width: 100%;
    }
    header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px 0;
        background-color: #6f1473;
        z-index: 999;
        max-width: 100% !important;
    }
    .navbar-toggle.active span:first-child {
        transform: rotate(134deg) translate(7px);
        margin-bottom: 0;
        width: 29px;
    }
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(47deg) translate(-8px);
        margin-bottom: 0;
        width: 29px;
    }
    header .navbar-toggle {
        display: block;
    }
    header nav ul {
        flex-direction: column;
        padding: 10px;
    }
    .banner .slide {
        max-width: 140px;
        width: 100%;
        margin: 0 10px;
    }
    .banner .slide img {
        width: 100%;
    }
}

@media screen and (max-width: 520px) {
    header .header-top {
        display: none;
    }
    header .header-bottom .logo {
        max-width: 155px;
    }
    h1 {
        font-size: 32px;
        line-height: 38px;
    }
    .banner .impact .inner-impact {
        padding: 10px;
    }
    .banner .impact .inner-impact span {
        font-size: 13px;
        line-height: 19px;
    }
    .banner p {
        font-size: 14px;
        line-height: 20px;
    }
    .banner .slide {
        max-width: 100px;
    }
    .banner {
        padding: 40px 0;
    }
}