@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --main-color: #fff;
    --text-color: #fff;
    --black: #000000;
    font-size: 21px;
    font-family: 'pepe', sans-serif;
}

@font-face {
    font-family: 'pepe', sans-serif;
  
    font-family: "pepe";
    src: url("fonts/pepe.ttf");
  
    }

@font-face {
    font-family: 'alch', sans-serif;
      
    font-family: "alch";
    src: url("fonts/alch.otf");
      
    }

body {
    position: relative;
    width: 100%;
    font-family: "pepe", sans-serif;
    font-size: 20px;
    background-color: #2c221e;
    color: #fff;
    overflow-x: hidden;
}

body > * {
    max-width: 1600px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

.navbar {
    padding: 20px;
    width: 100%;
    height: 100px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .logo img {
    width: 64px;
    height: 88px;
    border-radius: 50%;
}

.navbar .logo h2 {
    margin-left: 10px;
    font-family: "pepe", sans-serif;
    font-size: 22px;
}

.btn {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--black);
    background-color: rgba(248, 248, 203, 0.971);
    font-family: 'alch';
    border-radius: 10px;
    font-weight: 700;
    transition: transform .4s ease;
}

.btn:hover {
    transform: translateY(10px);
}

/*---------------- main section ---------*/
.main {
    position: relative;
    padding: 40px;
    width: 100%;
    max-width: 100vw;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.main_bg_img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: var(--main-color);
    background-image: url('./assets/img0.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;

    z-index: 0;
}

.tse_content {
    text-align: center; 
}

.ts_element {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main > * {
    z-index: 1;
}

.main_right_side > * {
    margin-bottom: 20px;
}

.main_left_side {
    width: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.main_left_side img {
    max-width: 630px;
    width: 100%;
}

.main_right_side {
    width: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-image: url('./assets/');
}

.main_right_side h1 {
    font-family: "pepe", sans-serif;
    font-size: 43px;
    font-weight: 700;
    color: rgba(248, 248, 203, 0.971);
}

.main_right_side p {
    max-width: 520px;
    width: 100%;
    text-align: center;
    word-wrap: break-word;
}

.main_right_side p:nth-child(2) {
    font-weight: bold;
}

.main_right_side .btns_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.main_right_side .btns_container a {
    padding: 10px 20px;

    border: 3px solid #fff;
    background-color: var(--main-color);
    border-radius: 10px;

    font-weight: 700;
    transition: transform .4s ease;
}

.main_right_side .btns_container a:nth-child(1):hover {
    transform: translateY(10px);
}

.main_right_side .btns_container a:nth-child(2):hover {
    transform: translateY(-10px);
}
/*------------- first_section -------*/
.first_section {
    padding: 40px;

    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

/*------------- second_section -------*/
.second_section {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.first_section_img {
    max-width: 300px;
    width: 100%;
}

.first_section_img img {
    width: 100%;
}

/*------------- second_section-------*/
.second_section {
    padding: 40px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ss_left_side {
    padding: 20px;
    max-width: 780px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.ss_left_side > * {
    margin-bottom: 20px;
}

.title_container {
    display: flex;
    align-items: center;
    justify-content: center;

}

.title_container img {
    max-width: 55px;
    width: 74%;
    max-height: 220px;
    height: 100%;

    margin-right: 8px;
}

.title_container h1 {
    font-family: "pepe", sans-serif;
    margin-left: 10px;
    font-size: 45px;
}

.ss_left_side_btns {
    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

}

.ss_left_side_btns a {
    padding: 10px 20px;
    background-color: rgba(248, 248, 203, 0.971);
    border-radius: 10px;
    color: var(--black);
    font-weight: 700;
    transition: transform .4s ease;
}

.ss_left_side_btns a:nth-child(1):hover {
    transform: translateY(10px);
}

.ss_left_side_btns a:nth-child(2):hover {
    transform: translateY(-10px);
}

.ss_right_side {
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ss_right_side img {
    max-width: 400px;
    width: 100%;
}

/*------------- third_section ------------*/
.third_section {
    padding: 40px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.third_section .title_container {
    margin-right: auto;
}

.ts_elements_wrapper {
    padding: 20px;
    width: 100%;
    max-width: 1300px;
    
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;

    flex-wrap: wrap;
}

.ts_elements_wrapper .title_container {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ts_element {
    padding: 20px;
    max-width: 600px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--black);
    background-color: var(--main-color);
    border-radius: 15px;
    border: 1px solid #000;
}

.ts_element img {
    max-width: 92px;
    width: 100%;
    max-height: 92px;
    height: 100%;
    margin-bottom: 13px;
}

.ts_element h2 {
    margin-bottom: 10px;
}

/*----------- forth_section -----------*/
.forth_section {
    padding: 40px;
    width: 100%;
    min-height: 800px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.forth_section p {
    width: 100%;
    word-break: break-all;
}

.fths_left_side {
    width: 100%;
    max-width: 600px;
}

.fths_right_side {
    max-width: 650px;
    width: 100%;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fths_right_side > * {
    margin-bottom: 20px;
    text-align: center;
}

.fths_right_side_btns {
    padding: 10px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.fths_right_side_btns a {
    padding: 10px 20px;
    background-color: var(--main-color);
    border-radius: 10px;
    color: var(--black);
    font-weight: 700;
    transition: transform .4s ease;
}

.fths_right_side_btns a:nth-child(1):hover {
    transform: translateY(10px);
}

.fths_right_side_btns a:nth-child(2):hover {
    transform: translateY(-10px);
}

/*---------------- footer -----------*/
.footer {
    position: relative;
    padding: 40px;
    width: 100%;
    max-width: 100vw;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    --webkit-mix-blend-mode: color-dodge;
}

.footer_bg_img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: var(--main-color);
    background-image: url('./assets/img1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;

    z-index: 0;
}

.footer > * {
    margin-bottom: 20px;
    z-index: 1;
}

.footer img {
    max-width: 300px;
    width: 100%;
}

.footer h1 {
    font-family: "pepe", sans-serif;
    font-size: 22px;
    text-align: center;
}

.footer_social_media {
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.footer_social_media a img {
    max-width: 30px;
    width: 100%;
}

.footer_bottom {
    width: 100%;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1000px) {
    .main {
        flex-direction: column;
    }

    .main_right_side {
        width: 100%;
    }

    .second_section {
        flex-direction: column-reverse;
    }

    .forth_section {
        flex-direction: column;
    }
}


@media only screen and (max-width: 500px) {
    .navbar * {
        font-size: 14px;
    }

    .main_left_side {
        padding: 20px;
        width: 100%;
    }

    .main_right_side h1, .title_container h1, .footer h1 {
        font-size: 42px;
    }

    .second_section {
        padding: 20px;
    }

    .third_section {
        padding: 0;
    }

    .forth_section {
        padding: 20px;
    }

    .ts_element {
        flex-direction: column;
        gap: 10px;
    }

    .main_right_side .btns_container {
        flex-direction: column;
    }

    .main_right_side .btns_container a {
        width: 100%;
        text-align: center;
    }

    .ss_left_side {
        padding: 0;
    }

    .ss_left_side_btns, .fths_right_side_btns {
        flex-direction: column;
    }

    .ss_left_side_btns a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ss_left_side_btns {
        margin: 20px auto;
    }
}