/*Header Start*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Raleway', serif;
}

:root {
    --bg-color: #03120E;
    --secondary-color: #002813;
    --text-color: #FFD9CE;
    --main-color: #018E42;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}


html {
    font-size: 62.5%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: var(--bg-color);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
}

.logo {
    position: relative;
    top: 1rem;
}

.logo img {
    width: 6rem;
}

.navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 3.5rem;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;
}

/* Header end*/

/* Home start */
section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.home {
    background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 9%;
}

.home-content {
    max-width: 60rem;
    flex: 1;
}

.home-content h1 {
    font-size: 5.6rem;
}

.home-content p {
    font-size: 1.6rem;
    margin: 3rem 0 2rem;
    line-height: 2rem;
}

.home-image {
    padding-top: 3rem;
    flex-shrink: 0;
    width: 500px;

}

.home-image img {
    width: 100%;
    height: auto;
}

.home-sci {
    width: 130px;
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 20px;
    color: var(--main-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover {
    color: var(--bg-color);
}

.home-sci a:hover::before {
    width: 100%;
}

/* Home end */

/* Band start*/

.band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 10rem 9%;
    background-image: url("https://www.transparenttextures.com/patterns/always-grey.png");
    background-color: var(--secondary-color);
 
    min-height: 90vh;
}

.band-content {
    max-width: 50rem;
    flex: 1;
    text-align: left;
}

.band-content p {
    font-size: 1.8rem;
    margin: 1rem 0 4rem;
    line-height: 2rem;
}

.band-content p span {
    font-weight: bold;
}

.band-image {
    flex-shrink: 0;
    width: 500px;
    padding-top: 3rem;
}

.band-image img {
    width: 100%;
    height: auto;
}

/* Band end*/

/* Video start*/
.video {
    background-color: var(--bg-color);
}

.video h1 {
    font-size: 4.8rem;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--main-color);
}

.video-content {
    text-align: center;
    padding: 5rem 9%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
}

.video-grid div {
    width: 100%;
}

.video-grid iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.video-grid h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* Video end*/

/*Galery start*/
.galery {
    background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre-v2.png");
    background-color: var(--secondary-color);
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.galery h1 {
    font-size: 4.8rem;
    text-align: center;
    color: var(--main-color);
    margin-bottom: 3rem;
    padding-top: 5rem;
}

.swiper {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/*Galery end*/

/* Footer start*/

footer {
    background-color: var(--bg-color);
    text-align: center;
    padding: 3rem 0;
}

footer h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

footer h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--main-color);
}

.qr-image img{
    padding-top: 2rem;
    width: 10rem;
}

/* Footer end*/

/* Breakpoints*/

@media (max-width: 1350px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-grid iframe {
        height: 500px;
    }

    .video-content {
        text-align: center;
        padding: 2rem 3%;
    }

    .band {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 3rem 5%;
        min-height: auto;
    }

    .band-image {
        width: 60%;
        padding-top: 0;
        padding-bottom: 2rem;
    }

    .band-content {
        max-width: 80%;
        text-align: center;
    }
}

@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 1050px) {
    .swiper {
        width: 80%;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 4%;
    }

    section {
        padding: 10rem 4% 2rem;
    }

    .home {
        padding: 0 4%;
    }

    .footer {
        padding: 2rem 4%;
    }

    .band-image {
        width: 80%;
    }
}

@media (max-width: 900px) {
    .home {
        flex-direction: column-reverse;
        text-align: center;
    }

    .home-content {
        max-width: 100%;
        padding-top: 3rem;
    }

    .home-content h1 {
        display: none;
    }

    .home-content p {
        font-size: 1.4rem;
    }

    .home-image {
        padding-top: 15rem;
        width: 60%;
    }

    .home-sci {
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
        padding-bottom: 2rem;
        gap: 2rem;
    }

    .swiper {
        width: 70%;
    }
}

@media (max-width: 768px) {

    .header {
        position: absolute;
    }

    section {
        padding-bottom: 0;
        min-height: 75vh;
    }

    #menu-icon {
        display: block;
        cursor: pointer;

    }

    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: var(--bg-color);
        padding: 1rem 4%;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
    }

    .navbar.active {
        left: 0;
    }

    .navbar .active-nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        z-index: -1;
        transition: .25s ease;
        transition-delay: 0s;
    }

    .navbar.active .active-nav {
        transition-delay: .25s;
        left: 0;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 1rem 0;
        padding-top: 2.2rem;
    }

    .navbar.active a {
        transform: translateX(0);
        transition-delay: .25s;
    }

    .swiper {
        width: 60%;
    }

    .galery h1 {
        padding-top: 0;
    }
}

@media (max-width: 700px) {
    .swiper {
        width: 50%;
    }

    .galery {
        padding-top: 2rem;
        padding-bottom: 0;
    }
}

@media (max-width: 546px) {
    .swiper {
        width: 40%;
    }
}

@media (max-width: 433px) {
    .swiper {
        width: 35%;
    }

    .galery {
        padding-top: 5rem;
        padding-bottom: 0;
    }
}

@media (max-width: 381px) {
    .swiper {
        width: 30%;
    }
}

@media (max-width: 327px) {
    .swiper {
        width: 25%;
    }
}