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

@font-face {
    font-family: mainFont;
    src: url(Fonts/Inter_24pt-Light.ttf);
}

@font-face {
    font-family: mainFont-XX-Bold;
    src: url(Fonts/Inter_18pt-ExtraBold.ttf);
}

@font-face {
    font-family: mainFont-X-Bold;
    src: url(Fonts/Inter_18pt-Bold.ttf);
}

body {
    font-family: mainFont, Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* colors */
:root {
    /* --main: #FF5E00; */
    --main: #ff8800;
    --black: #000000;
    --white: #ffffff;
    --text: #00000080;
    --gray: #808080;
}

/* ------------------Header------------------------ */

header {
    background-image: url(Image/Hero.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 100vh; */
}

.main-overlay {
    width: 100% !important;
    height: 100% !important;
    background-color: #00000066;
}

/* navbar */

header nav {
    padding: 18px 50px;
    width: 100%;
    background-color: var(--main);
    display: flex;
    justify-content: space-between;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: +100;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.318);
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav ul li {
    padding: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

nav ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    color: black;
}

/* hero */

.hero {
    padding: 160px 60px;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    font-family: mainFont-XX-Bold;
}

.hero p {
    padding: 30px 0;
    font-size: 2.4rem;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.hero h3 {
    font-size: 2rem;
    font-family: mainFont-X-Bold;
    text-transform: uppercase;
}


/* ------------------Main------------------------ */


/* C2A */

.c2a {
    padding: 70px 20px;
    text-align: center;
}

.c2a h2 {
    font-size: 2.2rem;
}

.c2a h2 .sp1 {
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 1px;
    text-decoration-color: gray;
}

.c2a h2 .sp2 {
    font-family: mainFont-XX-Bold;
    color: var(--main);
}

.c2a p {
    line-height: 50px;
    font-size: 1.8rem;
    color: var(--text);
    padding-top: 30px;
}

/* support */

.support {
    text-align: center;
    padding: 40px;
    background-color: #0000000e;
}

.support p {
    font-size: 1.8rem;
    padding-bottom: 40px;
    color: var(--text);
}

.support img {
    width: 90%;
    height: 100%;
}

/* content */

.content {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.content .main-overlay {
    padding: 60px;
    background-color: rgba(0, 0, 0, 0.800);

}

.content h3 {
    font-size: 2rem;
    text-transform: uppercase;
    padding-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--main);
}

.content p {
    font-size: 1.6rem;
    color: whitesmoke;
    text-align: justify;
    line-height: 40px;
    padding-bottom: 15px;
}

.section-A {
    background-image: url('Image/Group.jpg');
}

.section-B {
    color: black !important;
    padding: 80px 60px;
}

.section-B p {
    color: var(--text) !important;
}

/* information */

.information {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.information .box {
    padding: 40px 60px;
    flex-basis: 50%;
}

.information .box h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.information .box ul li {
    font-size: 1.6rem;
    padding: 8px 0;
}

.information .b1 {
    background-color: #0000000e;
}

.information .b1 ul {
    padding-left: 40px;
}

.information .b1 ul li {
    color: var(--text);
}

.information .b2 {
    text-align: center !important;
    background-color: var(--main);
    color: white;
}

.information .b2 ul {
    list-style-type: none;
}

.plagatPDF{
     height: 100vh;
    width: 80%;
    margin: 0 auto;
   
background-image: url('Image/Plagat.jpg');
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
}


/* ------------------Footer------------------------ */

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 30px;
}

footer ul {
    list-style-type: none;
}

footer ul li {
    font-size: 1.5rem;
    padding: 6px;
    letter-spacing: 1px;
}

footer h2 {
    padding-top: 30px;
    padding-bottom: 10px;
    font-size: 2rem;
    text-transform: uppercase;
}

footer h2 span {
    color: var(--main);
}

footer .credit {
    padding-top: 20px;
    color: whitesmoke;
    text-transform: capitalize;
}

/* Responsive Screen */
@media screen and (min-width:1640px) {
    body {
        width: 1200px;
        margin: auto;
    }

    header nav {
        width: 1200px;
    }
}

@media screen and (max-width:768px) {

    .hero {
        padding: 160px 20px 100px 20px;
    }

    header nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav .box {
        flex-basis: 90%;
        text-align: center;
        color: black;
    }

    header nav ul {
        justify-content: center;
        padding-bottom: 10px;
        align-items: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 2rem;
    }

    .hero h3 {
        font-size: 1.6rem;
    }

    .c2a h2 {
        font-size: 1.8rem;
    }

    .c2a p {
        font-size: 1.5rem;
        line-height: 40px;
    }

    .support p {
        font-size: 1.4rem;
    }

    .content h3 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 1.3rem;
        line-height: 26px;
    }

    .information .box {
        padding: 40px 20px;
    }

    .information .box h3 {
        font-size: 1.4rem;
    }

    .information .box ul li {
        font-size: 1.3rem;
    }

    
.plagatPDF{
     height: 60vh;}

    footer ul li {
        font-size: 1.2rem;
    }

    footer h2 {
        font-size: 1.5rem;
        padding: 20px 0;
    }

    footer .credit {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 10px;
        z-index: +100;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.318);
    }
}

@media screen and (max-width:430px) {
    header nav {
        padding: 18px 10px;
    }

    header nav ul li a {
        font-size: 14px;
    }

    header nav .box {
        font-size: 12px;
    }


    .c2a {
        padding: 50px 20px;
    }

    .support {
        padding: 40px 20px;
    }

    .content .main-overlay {
        padding: 60px 20px;
    }

    .section-B {
        padding: 60px 20px;
    }

    .content h3 {
        font-size: 1.3rem;
    }

    .information {
        flex-wrap: wrap;
    }

    .information .box {
        flex-basis: 100%;
    }

    footer h2 {
        font-size: 1.2rem;
    }
}