*{
    margin: 0;
    padding: 0;
}

body{
    color: var(--div-main-color);
    background-color: black;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    font-family: 'Noto Sans', sans-serif;

}
container:not(:last-child){
    margin-bottom: 250px;
}

h1{
    font-size: 50px;
    margin-bottom: 24px;
}
p{
    color: #E0E0E0;
}
.process p{
    
    font-size: 22px;
    max-width: 500px;
}
:root{
    --div-main-color: #ffffff;
}

li{
    list-style: none;
    color: var(--div-main-color);
}

a{
    text-decoration: none;
    color: var(--div-main-color);
}

@media screen and (max-width: 1440px) {
    header{
        
    }
}

/*header-----------------------------------------------*/
header{
    font-size: 16px;
    height: 72px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    margin: 0 auto 140px auto;
 
}

.logo{
    flex: 1 0 0;
}
.logo{
    width: 120px;
    height: auto;
}


.nav_list{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.nav_list li:nth-child(2){
    margin: 0 28px;
}


.icon_list{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: 1 0 0 ;
}
.icon_list img:nth-child(2){
    margin: 0 32px;
}
.Icon{
    width: 24px;
    height: 24px;
}





.main_img{
    width: 600px;
    height: auto;
    z-index: 100;
    position: fixed;
    display: block;
    left: 50%;
    transform: translate(-50%, -120px) rotate(20deg);
    transition: all 0.3s ease;
}

/*container-----------------------------------------------*/

main{
    position: relative;

}
p{
    font-size: 22px;
}
.intro{
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 250px;
}
.big_text{
    text-align: center;
    font-size: 310px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 500;
    line-height: 240px;
    letter-spacing: -10px;
}


.history{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 140px;
    padding-bottom: 250px;
}
.right h2{
    margin-bottom: 20px;
    font-size: 40px;
}
.right .text{
    margin-bottom: 80px;
}
.small_title{
    color: #EEEEEE;
    font-weight: bold;
    font-size: 22px;
}
.process{

    display: flex;
    flex-direction: column;
}
.move_text{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    transition: 0.5s;
    z-index: 1000;
}

.explain{
    max-width: 500px;
    opacity: 0;
    transition: 0.5s;
}
.explain .right{
    display: flex;
    flex-direction: column;
}
.process h2{
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 24px;
    letter-spacing: -3px;
    line-height: 50px;
}
.text{
    display: flex;
    flex-direction: column;
    width: 500px;
    margin-bottom: 36px;
    transition: 0.8s;
   
}

.pack{
    
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 240px;
    margin-bottom: 190px;

}
.roof{
    margin: 0 auto;
    width: 488px;
    background-color: transparent;
    height: 800px;
    box-shadow: 0px 0px 250px 96px rgba(255, 255, 255, 0.2);
    margin-bottom: 50px;
    perspective: 1500px;
    position: relative;
    z-index: 1000;

}
.box{
    width: 488px;
	height: 800px;
	border: 1px #000 solid;
    background-image: url(wrapper_main.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 500px;
    background-color: #000;
border: 1px solid #ffffff;

    transform-origin: 3% 50% 0px;
    transform: rotateY(-122deg) ;
    transition: all 0.5s ease;
    z-index: 500;
    position: relative;
}


.button{
    
    padding: 10px 30px;
    font-size: 20px;
    cursor: pointer;
    margin: 0 auto;
    font-family: 'Noto Sans', sans-serif;
    transition: 2s ease;
    margin-top: 14px;
}

.more { 
    width: 200px;
    background: rgba( 255, 255, 255, 0.15 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 6.5px );
    display: block;
    color: #fff; 
    border: 3px solid #fff; 
    padding: 10px 24px; 
    border-radius: 10px; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    overflow: hidden; 
    transition: all 1s; 
} 

.more:before { 
    content: ""; 
    position: absolute; 
    width: 400px; 
    height: 400px; 
    border-radius: 150px; 
    background-color: #c75d07; 
    top: 32px; 
    left: 50%; 
    transform: translate(-6%); 
    animation: wave 8s infinite linear; 
    transition: all 1s; 
} 
.more:hover:before { 
    top: -50px; 
} 

span { 
    position: relative; 
}

@keyframes wave {
  0% { 
    transform: translate(-50%) rotate(-180deg); 
}
  100% { 
    transform: translate(-50%) rotate(360deg); 
} 
} 