* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

body {
    background-image: url(images/second-background.png);
    background-blend-mode: color;
    background-size: 100%;
    background-repeat: repeat;
}

:root {
    --main-background: #000000;
    --second-background: #eac313;
    --main-text: #eac313;
    --second-text: #000000;
    --third-text: #fff;
    --main-btn: #eac313;
    --main-hover: #eac313;
    --second-hover: #fff;
}

/*navbar section*/
.navbar {
    background: var(--second-background);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    height: 8vh;
}

.navbar_container {
    display: flex;
    justify-content: space-between;
    height: 8vh;
    z-index: 4;
    width: 70vw;
    margin: 0 auto;
}

.navbar_content_left {
    display: flex;
    align-items: center;
}

.navbar_content_left h1 {
    font-size: 4vh;
}

#navbar_img {
    height: 5vh;
    margin-right: 1vw;
}

.navbar_content_right {
    display: flex;
    align-items: center;
}

.navbar_content_right a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: var(--second-text);
    margin-left: 1vw;
    font-size: 2vh;
}

.navbar_content_right a:hover {
    color: var(--third-text);
    transition: all 0.3s ease-in-out;
}

.ham {
    height: 2.5vh;
    align-self: center;
    display: none;
}

.ham_line {
    height: 0.5vh;
    width: 4vh;
    background-color: var(--main-background);
}

#ham_line_mid {
    margin: 0.5vh 0;
}

.nav_mobile {
    display: none;
    position: fixed;
    width: 100%;
    height: 30vh;
    background-color: var(--second-background);
    z-index: 10;
    padding-left: 10vw;
    padding-top: 2vh;
}

.nav_mobile a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: var(--second-text);
    font-size: 2vh;
}

.nav_mobile a:hover {
    transition: all 0.3s ease-in-out;
    color: var(--second-hover);
}

@media screen and (max-width: 1250px) {
    .navbar_container {
        width: 80vw;
    }

    .navbar_content_right {
        display: none;
    }

    .navbar_content_left h1 {
        display: none;
    }

    .ham {
        display: unset;
    }
}

/*first section*/
.first {
    background-image: linear-gradient(to bottom, #eac313 70%, #fff 100%);
    height: 70vw;
}

.scroll {
    margin: 0 auto;
    text-align: center;
    color: var(--second-text);
    font-size: 2vh;
    position: fixed;
    top: 85vh;
    left: 0;
    width: 100%;
    z-index: 4;
}

.scroll img {
    height: 4vh;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}

.first_container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

#first_img {
    width: 70vw;
    margin-top: 10vh;
}

@media screen and (max-width: 1100px) {
    .first {
        height: 80vw;
    }

    #first_img {
        width: 80vw;
    }
}

/*second section*/
.second_container {
    display: flex;
    width: 70vw;
    margin: 20vh auto;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
}

.second_content_left h1 {
    font-size: 4vh;
    color: var(--main-text);
}

.second_content_left p {
    font-size: 2vh;
}

.second_content_left {
    width: fit-content;
    max-width: auto;
}

#second_img {
    width: 20vw;
    min-width: 20vw;
    height: auto;
    border-radius: 1vw;
    box-shadow: 1vw 1vw;
    margin: 1vw;
}

.second_content_right {
    margin-left: 5vw;
    display: flex;
    align-items: center;
    min-width: 22vw;
}

/*third section*/
.third {
    background-color: var(--main-background);
    position: relative;
    overflow: hidden;
}
  
.third_container {
    display: flex;
    margin: 20vh auto;
    align-items: center;
    width: 70vw;
    opacity: 0;
    justify-content: space-between;
}

.third_content h1 {
    background-image: linear-gradient(to right, #12E5C5 10%, #1283E5 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 8vh;
    margin-bottom: 3vh;
}
  
.third_content p {
    background-image: linear-gradient(to left, #12E5C5 10%, #1283E5 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 2.5vh;
}

/*forth section*/
.forth_container {
    display: flex;
    width: 70vw;
    margin: 20vh auto;
    align-items: center;
    opacity: 0;
}

.forth_content_right h1 {
    font-size: 4vh;
    color: var(--main-text);
}

.forth_content_right li {
    font-size: 2vh;
}

.forth_content_right {
    width: fit-content;
    max-width: auto;
}

#forth_img {
    width: 20vw;
    min-width: 20vw;
    height: auto;
    border-radius: 1vw;
    box-shadow: 1vw 1vw;
    margin: 0 1vw 1vw 0;
}

.forth_content_left {
    margin-right: 5vw;
    display: flex;
    align-items: center;
    min-width: 21vw;
}

/*fifth section*/
.fifth_container {
    display: flex;
    width: 70vw;
    margin: 20vh auto;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    opacity: 0;
}

.fifth_content {
    display: grid;
    grid-template-rows: auto;
    overflow: visible;
}

.fifth_content h1 {
    font-size: 4vh;
    color: var(--main-text);
    margin-bottom: 1.5vw;
}

.fifth_grid {
    display: grid;
    grid-gap: 1.5vw;
    grid-template-rows: 1fr 1fr;
    height: 60vh;
    overflow: visible;
}

.fifth_grid_1 {
    display: grid;
    grid-gap: 1.5vw;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    overflow: visible;
}

.fifth_grid_2 {
    display: grid;
    grid-gap: 1.5vw;
    grid-template-columns: 1.2fr 1fr;
    justify-content: flex-start;
    overflow: visible;
}

#grid_item {
    background-color: var(--second-background);
    border-radius: 1vw;
    padding: 1vw;
    display: flexbox;
    justify-content: space-between;
    transition: 0.3s ease-in-out;
}

#grid_item:hover{
    box-shadow: 1vw 1vw;
    transform: translate(-1vw, -1vw);
    transition: 0.3s ease-in-out;
}

#grid_item h2 {
    transition: all 0.3s ease-in-out;
    font-size: 4vh;
    margin-bottom: 0;
    margin-top: -12px;
    color: var(--second-text);
    opacity: 100%;
}

#grid_item li {
    transition: all 0.3s ease-in-out;
    font-size: 2vh;
    margin-top: 10px;
    font-weight: 600;
    color: var(--second-text);
    opacity: 100%;
}

#grid_item p {
    transition: all 0.3s ease-in-out;
    font-size: 2vh;
    margin-top: 10px;
    font-weight: 600;
    color: var(--second-text);
    opacity: 100%;
}

/*sixth section*/
.sixth_container {
    display: flex;
    width: 70vw;
    margin: 20vh auto;
    align-items: center;
    opacity: 0;
}

.sixth_content_right h1 {
    font-size: 4vh;
    color: var(--main-text);
}

.sixth_content_right p {
    font-size: 2vh;
}

.sixth_content_right {
    width: fit-content;
    max-width: auto;
}

#sixth_img {
    width: 20vw;
    min-width: 20vw;
    height: auto;
    border-radius: 1vw;
    box-shadow: 1vw 1vw;
    margin: 0 1vw 1vw 0;
}

.sixth_content_left {
    margin-right: 5vw;
    display: flex;
    align-items: center;
    min-width: 21vw;
}

/* footer section */
.footer__container {
    background-color: var(--main-background);
    padding: 10vh 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer__social {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2vh;
}

.footer__links {
    width: 70vw;
    max-width: 	70vw;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper {
    display: flex;
    margin: 0 auto;
    max-width: 70vw;
    width: 70vw;
    justify-content: center;
}

.footer__link--items-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: left;
    align-items: baseline;
}

.footer__link--items {
    display: flex;
    text-decoration: none;
    flex-direction: column;
    margin: 2.5vh 5vh;
    text-align: left;
    box-sizing: border-box;
    justify-content: center;
}

.footer__link--items--2 {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.footer__link--items h2 {
    margin-bottom: 1.6vh;
    font-size: 3vh;
    color: var(--third-text);
}

.footer__link--item > h2 {
    color: var(--third-text);
}

.footer__link--items a {
    color: var(--third-text);
    text-decoration: none;
    margin-bottom: 1vh;
    display: flex;
    flex-direction: row;
    transition: 0.3s ease-in-out;
    font-size: 2vh;
}

.footer__link--items a:hover {
    transition: 0.3s ease-in-out;
    color: var(--main-hover);
}

.footer__link--items p {
    color: var(--third-text);
    text-decoration: none;
    margin-bottom: 1vh;
    display: flex;
    flex-direction: row;
    font-size: 2vh;
}

.footer__link--items--2 img {
    height: 2vh;
    align-self: center;
    margin-right: 0.5vh;
    filter: invert();
    width: 3vh;
}