body {
    background-color: black;
    font-family: 'Mustica Pro';
}


header {
    padding: 30px 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .links {
    display: flex;
    align-items: center;
    gap: 60px;
    min-width: 410px;
}

header .links a {
    font-size: 20px;
    font-weight: bold;
    color: white;
    transition: all .3s;
}
header .links a:hover{
    color: #E7FF00;
    text-shadow: 0px 0px 20px #e5ff0062;
}
header .logo img {
    height: 30px;
}

header .batn {
    min-width: 410px;
    display: flex;
    justify-content: flex-end;
}

.btn {
    font-family: 'Heading Now Trial 45';
    font-weight: 500;
    color: black;
    font-size: 24px;
    padding: 7px 35px;
    border-radius: 100px;
    background: linear-gradient(to top right, #f6ff9c, #E7FF00);
    transition: all .3s;
}
.btn:hover{
    background: none;
    outline: 1px solid white;
    color: white;
}

.btn.simple {
    background: none;
    outline: 1px solid white;
    color: white;
}
.btn.simple:hover{
        background: linear-gradient(to top right, #f6ff9c, #E7FF00);
        outline: none;
        color: black;
}


.offcanvas{
    background-color: rgb(2, 2, 2);
}
.offcanvas ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.offcanvas ul a{
      font-size: 20px;
    font-weight: bold;
    color: white;
}
.offcanvas ul a:active{
        color: #E7FF00;
    text-shadow: 0px 0px 20px #e5ff0062;
}
.hero {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/hero-img.webp) center / cover no-repeat;
    height: 100vh;
    width: 100%;
    position: relative;
}

.hero .overlay {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 20vh;
    background: linear-gradient(to top, black 15%, rgba(0, 0, 0, 0));
}



.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 8vw;
}

.hero-content span {
    font-size: 24px;
    color: white;
    font-weight: 900;
}

.hero-content h1 {
    font-size: 120px;
    background: linear-gradient(to left, #E7FF00, #F6FF9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 40px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.hero-content h1 span {
    font-weight: 600;
    font-size: 120px;

}

.hero-content p {
    font-size: 36px;
    color: white;
    text-transform: uppercase;
    font-family: 'Heading Now Trial 45';
    font-weight: 500;
    margin-top: 40px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;

}

.hero-content .batns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}


.hero .address {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 45px;
    bottom: 45px;
}

.hero .address img {
    height: 24px;
}

.hero .address p {
    font-size: 18px;
    color: white;
    font-weight: 600;

}

.hero .train {
    font-size: 28px;
    color: white;
    font-family: 'Heading Now Trial 34';
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    width: fit-content;
    transform: rotate(-90deg);
    right: -90px;
    top: 50%;
    position: absolute;
}




.what-is-dugout {
    padding: 0 3vw;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.what-is-dugout .text {
    width: 47%;
    padding-right: 10%;
}

.green-text {
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(to left, #E7FF00, #F6FF9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-size: 64px;
    color: white;
    font-weight: 900;
    margin-top: 40px;
}

.what-is-dugout .text p {
    font-size: 26px;
    color: white;
    line-height: 1.5;
    margin-top: 40px;
}

.what-is-dugout .text .batns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.what-is-dugout .img {
    background: url(../images/what-is-dugout-img.webp) center / cover no-repeat;
    width: 53%;
    height: 720px;
    border-radius: 40px;
    border: 1px solid #e7fe153a;
}



.roadmap {
    margin-top: 240px;
    padding: 0 3vw;
}

.roadmap h3 {
    text-align: center;
}

.roadmap-cards {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 100px;
    flex-wrap: wrap;
}

.roadmap-card {
    padding: 70px 90px;
    border-radius: 50px;
    background-color: #191919;
    outline: 10px solid #121212;
    width: 40%;
}

.roadmap-card:hover {
    background: linear-gradient(to bottom right, #F6FF9C, #E7FF00);
    box-shadow: 0px 0px 62px 0px #e5ff008a;
    outline: none;
}

.roadmap-card:hover h2 {
    color: #5F6614;
}

.roadmap-card:hover p {
    color: #5f661479;
}

.roadmap-card h2 {
    color: white;
    font-family: 'Landasans_demo01';
    font-size: 95px;
    margin-bottom: 50px;

}

.roadmap-card p {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}





.ready {
    margin: auto;
    margin-top: 240px;
    width: 90vw;
    background: url(../images/ready-img.webp) center / cover no-repeat;
    height: 830px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    border-radius: 80px;
    outline: 10px solid #121212;
    text-align: center;
}

.ready h1 {
    font-size: 96px;
    font-weight: bold;
    color: white;
    width: 100%;
    max-width: 1200px;
    line-height: 1.2;
}

.ready p {
    font-family: 'Heading Now Trial 45';
    font-weight: 500;
    font-size: 26px;
    color: white;
    width: 45%;
    line-height: 1.4;
    letter-spacing: 1px;

}

.ready .batns {
    display: flex;
    align-items: center;
    gap: 20px;
}


.dugout {
    padding: 0 7vw;
    margin-top: 120px;
    display: flex;
    flex-direction: column;
}

.dugout .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dugout .wrapper .logo img {
    height: 65px;
}

.dugout .wrapper .text {
    display: flex;
    gap: 70px;
}

.dugout .wrapper .text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.637);
    line-height: 1.5;
}

.dugout .download {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-end;
    width: fit-content;
    margin-top: 50px;
}

.dugout .download b {
    font-size: 22px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

.dugout .download .images {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dugout .download .images img {
    height: 60px;
}


.dugout .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
        margin-top: 70px;
    margin-bottom: 50px;
}

.dugout .social-icons .icon {
    display: flex;
    width: 20%;
    align-items: center;
    justify-content: center;
    background-color: #121212;
    border-radius: 15px;
    height: 140px;
    color: white;
    font-size: 35px;

}

.dugout .social-icons .icon:hover {
    background: linear-gradient(to bottom right, #F6FF9C, #E7FF00);
    box-shadow: 0px 0px 62px 0px #e5ff008a;
    color: black;
}












.services {
    padding: 0 3vw;
    margin-top: 240px;
}

.services .btn {
    display: block;
    width: fit-content;
    margin: auto;
    margin-top: 80px;
}

.service-cards {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.service-card {
    padding: 47px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 50px;
    background-color: #191919;
    outline: 10px solid #121212;
    height: 416px;
    width: 30%;
}

.service-card:hover {
    background: linear-gradient(to bottom right, #F6FF9C, #E7FF00);
    box-shadow: 0px 0px 62px 0px #e5ff008a;
    outline: none;
}

.service-card:hover h2 {
    color: #5F6614;
}

.service-card:hover p {
    color: #5F6614;
}

.service-card:hover span {
    color: #5f661480;
}

.service-card h2 {
    font-size: 100px;
    font-family: 'Landasans_demo01';
    color: white;
}

.service-card span {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.4);
}

.service-card p {
    font-size: 30px;
    font-weight: 600;
    color: white;
    margin-top: 26px;
}









@media(max-width: 1600px) {
    header .links a {
        font-size: 18px;
    }

    header .logo img {
        height: 27px;
    }

    .btn {
        font-size: 22px;
        padding: 6px 30px;
    }

    header {
        padding: 22px 3vw;
    }

    .hero-content span {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 105px;
        margin-top: 20px;
    }

    .hero-content h1 span {
        font-size: 105px;
    }

    .hero-content p {
        font-size: 32px;
        margin-top: 30px;
    }

    .hero-content .batns {
        gap: 15px;
        margin-top: 50px;
    }

    .hero .train {
        font-size: 25px;
    }

    .hero .address img {
        height: 22px;
    }

    .hero .address p {
        font-size: 16px;
    }

    .hero .address {
        gap: 6px;
    }

    h3 {
        font-size: 54px;
        margin-top: 30px;
    }

    .what-is-dugout .text p {
        font-size: 23px;
        margin-top: 30px;
    }

    .what-is-dugout .text .batns {
        gap: 15px;
        margin-top: 50px;
    }

    .what-is-dugout .img {
        height: 620px;
    }

    .what-is-dugout .text {
        padding-right: 6%;
    }

    .roadmap-card {
        padding: 50px 70px;
    }

    .roadmap-card h2 {
        font-size: 70px;
    }

    .roadmap-card p {
        font-size: 25px;
    }

    .ready h1 {
        font-size: 80px;
    }

    .ready p {
        font-size: 23px;
    }

    .ready {
        gap: 30px;
        height: 730px;
    }

    .dugout .wrapper .logo img {
        height: 55px;
    }

    .dugout .wrapper .text p {
        font-size: 17px;
    }

    .dugout .download b {
        font-size: 20px;
    }

    .dugout .download .images img {
        height: 50px;
    }

    .dugout .social-icons .icon {
        height: 110px;
        font-size: 30px;
    }

    .service-card h2 {
        font-size: 80px;
    }

    .service-card span {
        font-size: 20px;
    }

    .service-card p {
        font-size: 27px;
        margin-top: 16px;
    }

    .service-card {
        padding: 37px 44px;
    }
}









@media(max-width: 1400px) {
    header .links a {
        font-size: 16px;
    }

    header .links {
        gap: 40px;
    }

    header .logo img {
        height: 24px;
    }

    .btn {
        font-size: 20px;
        padding: 5px 26px;
    }

    .hero-content span {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 90px;
        margin-top: 10px;
    }

    .hero-content h1 span {
        font-size: 90px;
    }

    .hero-content p {
        font-size: 29px;
    }

    .hero .train {
        font-size: 22px;
    }

    h3 {
        font-size: 46px;
        margin-top: 20px;
    }

    .green-text {
        font-size: 15px;
    }

    .what-is-dugout .text p {
        font-size: 21px;
        margin-top: 20px;
    }

    .what-is-dugout .text .batns {
        gap: 10px;
        margin-top: 39px;
    }

    .what-is-dugout .img {
        height: 520px;
        border-radius: 30px;
    }

    .roadmap-card h2 {
        font-size: 60px;
    }

    .roadmap-card p {
        font-size: 21px;
    }

    .roadmap-card {
        padding: 40px 60px;
    }

    .ready h1 {
        font-size: 65px;
    }

    .ready p {
        font-size: 21px;
    }

    .ready {
        gap: 20px;
        height: 590px;
    }

    .dugout .wrapper .logo img {
        height: 45px;
    }

    .dugout .wrapper .text p {
        font-size: 16px;
    }

    .dugout .social-icons .icon {
        height: 90px;
        font-size: 28px;
    }
}

@media(max-width: 1200px) {
    header .links a {
        font-size: 15px;
    }

    header .links {
        gap: 34px;
    }

    header .logo img {
        height: 21px;
    }

    .btn {
        font-size: 18px;
        padding: 5px 20px;
    }

    .hero-content span {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 80px;
    }

    .hero-content h1 span {
        font-size: 80px;
    }

    .hero-content p {
        font-size: 26px;
    }

    .hero .train {
        font-size: 20px;
    }

    .hero .train {
        font-size: 20px;
    }

    .hero .address img {
        height: 19px;
    }

    .hero .address {
        gap: 2px;
    }

    h3 {
        font-size: 40px;
    }

    .what-is-dugout .text p {
        font-size: 19px;
        margin-top: 15px;
    }

    .what-is-dugout .text .batns {
        margin-top: 30px;
    }

    .what-is-dugout .img {
        height: 420px;
    }

    .roadmap {
        margin-top: 150px;
    }

    .roadmap-card h2 {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .roadmap-card {
        border-radius: 40px;
        width: 46%;
    }

    .ready {
        margin-top: 150px;
        height: 500px;
    }

    .ready h1 {
        font-size: 55px;
    }

    .ready p {
        font-size: 19px;
        width: 50%;
    }

    .dugout .wrapper .logo img {
        height: 40px;
    }

    .dugout .wrapper .text p {
        font-size: 15px;
    }

    .dugout .download b {
        font-size: 18px;
    }

    .dugout .download .images img {
        height: 40px;
    }

    .dugout .social-icons .icon {
        height: 80px;
        font-size: 25px;
    }

    .roadmap-cards {
        gap: 50px;
        margin-top: 70px;
    }
}












@media(max-width: 1000px) {
    header .links a {
        font-size: 14px;
    }

    header .logo img {
        height: 18px;
    }

    .btn {
        font-size: 17px;
        padding: 2px 17px;
    }

    header .links {
        min-width: 270px;
    }

    header .batn {
        min-width: 270px;
    }

    .hero-content span {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 70px;
        margin-top: 0;
    }

    .hero-content p {
        font-size: 21px;
        margin-top: 20px;
    }

    .hero-content .batns {
        gap: 10px;
        margin-top: 36px;
    }

    .hero .train {
        font-size: 18px;
    }

    .hero .address p {
        font-size: 14px;
    }

    .green-text {
        font-size: 14px;
    }

    h3 {
        font-size: 35px;
    }

    .what-is-dugout .text p {
        font-size: 17px;
    }

    .what-is-dugout .text .batns {
        margin-top: 20px;
    }

    .what-is-dugout .img {
        height: 340px;
    }

    .roadmap-card {
        padding: 30px 40px;
        outline: 7px solid #121212;
    }

    .roadmap-card h2 {
        font-size: 44px;
    }

    .roadmap-card p {
        font-size: 18px;
    }

    .ready h1 {
        font-size: 45px;
    }

    .ready p {
        font-size: 18px;
        width: 60%;
    }

    .ready {
        height: 450px;
        border-radius: 50px;
        outline: 7px solid #121212;
    }

    .dugout .wrapper .logo img {
        height: 35px;
    }

    .dugout .wrapper .text p {
        font-size: 14px;
    }

    .dugout .social-icons .icons {
        margin-top: 50px;

    }
    .dugout .social-icons .icon {
        height: 70px;
        font-size: 22px;
    }
}




@media(max-width: 800px) {
    header .links {
        display: none;
    }

    header .bar {
        display: block !important;
        font-size: 22px;
        color: white;
        min-width: 110px;
    }

    header .batn {
        min-width: 110px;
    }

    .btn {
        font-size: 16px;
        padding: 3px 17px;
    }

    .hero-content span {
        font-size: 15px;
    }



    .hero-content h1 span {
        font-size: 60px;
    }

    .hero-content {
        padding: 0 13vw;
    }

    .hero-content p {
        font-size: 18px;
        margin-top: 17px;
    }

    .hero-content .batns {
        gap: 6px;
        margin-top: 20px;
    }

    .hero .train {
        font-size: 15px;
    }

    .hero .address p {
        font-size: 13px;
    }

    .hero .address {
        left: 30px;
        bottom: 30px;
    }

    h3 {
        font-size: 32px;
    }

    .what-is-dugout .text p {
        font-size: 16px;
    }

    .roadmap-cards {
        gap: 40px;
        margin-top: 60px;
    }

    .roadmap-card {
        border-radius: 30px;
    }

    .ready h1 {
        font-size: 36px;
    }

    .ready p {
        font-size: 16px;
        width: 70%;
    }

    .ready .batns {
        gap: 10px;
    }
}

@media(max-width: 750px) {
    .what-is-dugout {
        flex-direction: column;
    }

    .what-is-dugout .text {
        padding: 0;
        width: 100%;
    }

    .what-is-dugout .img {
        width: 100%;
        margin-top: 50px;
    }
            .roadmap-card {
        border-radius: 20px;
        padding: 30px;
    }
        .ready {
        height: 350px;
        border-radius: 40px;
        outline: 5px solid #121212;
    }
    .dugout .social-icons {
        flex-wrap: wrap;
    }
    .dugout .social-icons .icon {
        width: 30%;
        border-radius: 8px;
    }
}

@media(max-width: 650px) {
        .roadmap-card {
            width: 90%;
        }
}
@media(max-width: 600px) {

    header {
        padding: 14px 3vw;
    }
    .dugout .wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .dugout .wrapper .text {
    gap: 30px;
    align-self: flex-end;
    }
    .dugout .download {
        margin-top: 30px;
        width: 100%;
    }
    .dugout .social-icons .icon {
        width: 31%;

}
    .hero-content h1 {
        font-size: 60px;
    }
}
@media(max-width: 550px) {
    .hero-content p {
        font-size: 16px;
        margin-top: 15px;
    }
    .ready h1 {
        font-size: 30px;
        width: 90%;
    }
        .ready p {
        font-size: 14px;
    }
        .ready {
            border-radius: 30px;
        }
    .dugout .social-icons {
        margin-bottom: 30px;
    }

        .roadmap-card {
        outline: 5px solid #121212;
    }
        .roadmap-card h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }
        .dugout .social-icons .icon {
        height: 55px;
        font-size: 19px;
    }
        .dugout .wrapper .text {
            margin-top: 30px;
        }
            .ready p {
        width: 90%;
    }
        .roadmap-card p {
        font-size: 16px;
    }
}
@media (max-width: 530px) {
        header {
        padding: 14px 16px;
    }
    .what-is-dugout {
    padding: 0 16px;
}
.roadmap {
    padding: 0 16px;
}
.dugout {
    padding: 0 25px;
}
}
@media(max-width: 450px) {
    .hero .train {
        display: none;
    }

    .hero-content {
        padding: 0 16px;
    }
        .roadmap-card {
        width: 100%;
    }
}