/*Specification*/
*{
  box-sizing: border-box;
}
body{
  margin: 0;
  padding: 0;
  font-family: "PTRootUI", sans-serif;
  font-size: 24px;
  color: #fff;
  background: #000;
  position: relative;
}
header, footer,section{
  position: relative;
}
h1,h2,h3,h4,p ,span{
  margin: 0;
  padding: 0;
}
h1,h2,h3{
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.05;
  text-align: center;
}
input, button{
  outline: none;
  border:none;
}
p{
    line-height: 1.2;
}
h1{
  font-size: 46px;
}
h2{
  font-size: 36px;
}
h3{
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: normal;
}
a{
  font-weight: bold;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}
ul, li{
  list-style: none;
}
.container{
  position: relative;
  z-index: 1;
  max-width: 1400px;
  height: inherit;
  margin: 0 auto;
}
.content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 60px 0 70px;
}
.content>p{
  text-align: center;
  width: 80%;
  margin: 16px 0 22px;
}
.button{
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: rgb(7,7,7);
  box-shadow: 0 0 8px 0 rgb(0,0,0,.6);
  transition: all .3s ease;
  margin-top: 28px;
  padding: 12px 36px;
}
.button:hover{
  background: rgb(24,24,24);
}
/*Home*/
#home{
  height: 100vh;
  min-height: 640px;
  z-index: 20;
  overflow: hidden;
  background: #000;
}
#home::before{
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  bottom: 0;
  z-index: 2;
  background: url("../content/img/metalline(1024).png") no-repeat center top/contain;
}
#home::after{
  content: "";
  position: absolute;
  height: 42%;
  width: 100%;
  bottom: 0;
  left:0;
  background: linear-gradient(to top, #000, transparent);
}
#home .background{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#home .background::before{
  content: "";
  position: absolute;
  width: 102%;
  height: 102%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: url("../content/video/main.webp") no-repeat center/cover;
  filter: blur(6px);
  opacity: .7;
}
#home .background video{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  object-fit: cover;
  object-position: top;
  max-width: 1920px;
}
/*navigation*/
nav{
  position: fixed;
  z-index: 9999;
  width: 100vw;
  background: rgb(0,0,0,0.6);
  box-shadow: none;
  transition: all 0.3s ease-out;
}
.nav{
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  transition: all .3s ease;
  will-change: height;
}
.nav #logo_normal{
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav #logo_small{
  display: none;
  width: 38px;
}
.nav>img:hover{
  filter:brightness(130%);
}
.nav .section_links{
  display: flex;
}
.nav .section_links a{
  font-size: 18px;
  opacity: 0.3;
  margin: 0 15px;
  padding: 25px 0 22px;
  border-bottom: 3px solid transparent;
  transition: all .3s ease;
}
.nav .section_links a:first-child{
  opacity: 1;
  margin-left: 0;
  pointer-events: none;
  border-bottom: 3px solid #fff;
}
.nav .section_links a:hover{
  opacity: 1;
  border-bottom: 3px solid #fff;
}
.scroll_links{
  opacity: 0.3!important;
}
.scroll_links:hover{
  opacity: 1!important;
  border-bottom: 3px solid #fff!important;
}
/*social*/
.social_links{
  display: flex;
}
.social_links a{
  display: flex;
  margin-right: 12px;
}
.social_links a:last-child{
  margin-right: 0!important;
}
.social_icon{
  width: 38px;
  height: 38px;
  will-change: opacity;
  transition: opacity 0.3s ease;
}
.social_icon g>g{
  fill: #fff;
}

/*Menu hamb*/
.menu-hamb{
  display: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all .3s ease;
  margin: 11px 0;
}
.menu-hamb span{
  height: 3px;
  width: 30px;
  background: #fff;
  transition: all .3s ease;
}
.menu-hamb span:nth-child(2){
  margin: 5px 0;
}
.hamb-active{
  transform: rotate(45deg);
}

.menu-down{
  top: 0;
  left: 100%;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.8);
  transition: all .3s ease;
}
.menu-down.active{
  left: 0;
}
.menu-down .container{
  padding: 60px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu-down .container>a{
  font-size: 36px;
  margin: 4px 0;
  text-align: center;
}
.menu-down .social_links{
  margin-top: 16px;
}
/*Home content*/
.home_content{
  justify-content: flex-end;
  flex: 1 0 auto;
  padding: 70px 0 8%;
}
.home_content h1{
  font-weight: normal;
  text-align: center;
  text-transform: none;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
/*button*/
.main_button{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 360px;
  height: 86px;
  margin: 14px 0 12px;
  transition: filter .3s ease;
  filter: contrast(105%);
  background: url("../content/img/button.webp") no-repeat center top/cover;
}
.main_button::before{
  content: "";
  width: 100%;
  height: 78px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-shadow: 0 0 8px 0 rgb(0,0,0,.6);
}
.main_button:hover{
  filter: contrast(100%);
}
.main_button span{
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
  margin-top: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,.5);
}
.platform_btns{
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.btn_platform{
  width: 210px;
  height: 53px;
  box-shadow: 0 0 8px 0px rgba(0,0,0,0.6);
  outline: 3px solid transparent;
  transition: all .3s ease;
  will-change: filter;
  filter: contrast(98%);
}
.btn_platform:hover{
  outline: 3px solid #fff;
  filter: contrast(92%);
}
.btn_platform:first-child{
  background: url('../content/img/platform/immutable-logo-horiz-noreg-REV-RGB.png') no-repeat center top/cover;
}
/*trailer*/
#trailer{
  background: url("../content/img/bg/trailer.webp") no-repeat center bottom/cover;
}
#trailer::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 20%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #000, transparent);
}
#newabout{
  background: url("../content/img/bg/trailer.webp") no-repeat center bottom/cover;
}
#newabout::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 20%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #000, transparent);
}
.trailer_content{
  justify-content: space-between;
  padding-bottom: 90px;
}
.trailer_content h1{
  width: 70%;
  text-align: center;
  position: relative;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
}
.trailer_content h2{
  margin: 22px 0 4px;
  padding: 0 30px;
}
.trailer_content p:last-child{
  margin: 8px 0;
}
.trailer_content .main_button{
  background: url("../content/img/button2.webp") no-repeat center top/cover;
  width: 400px;
}
.trailer_content .main_button span{
  font-size: 32px;
  margin-top: 22px;
}

/*overlay*/
#overlay{
  position: fixed;
  z-index: 999;
  background: rgb(0,0,0,0.9);
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all .3s ease;
}
.ol_content{
  width: 100%;
  max-width: 900px;
  position: relative;
}
.ol_wrapper{
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
/* .ol_content .iframe{
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ol_content .iframe h1{
  font-size: 56px;
  margin:
}
.ol_content .iframe span{
  text-transform: uppercase;
} */
.ol_content iframe{
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  background: #000;
  box-shadow: 0 0 8px rgba(0,0,0,.6);
}
.ol_close{
  background: none;
  border: none;
  outline: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: -32px;
  right: 0px;
  opacity: 0.8;
  transition: opacity .3s ease;
}
.ol_close:hover{
  opacity: 1;
}
.ol_close::before, .ol_close::after{
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  left:50%;
  top: 50%;
  border-radius: 10px;
}
.ol_close::before{
  transform: translate(-50%,-50%) rotate(45deg);
}
.ol_close::after{
    transform: translate(-50%,-50%) rotate(-45deg);
}
/*About*/
#about{
  padding-bottom: 54px;
}
#about::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0,.7);
}
#about::after{
  content: '';
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  background:  url("../content/img/bg/field.webp") no-repeat center top/cover;
  filter: grayscale(30%);
}
.about_item{
  position: relative;
  min-height: 500px;
  box-shadow: 0 0 14px 3px rgba(0,0,0,0.6);
  background: rgb(0,0,0,.8);
  margin-bottom: 54px;
}
.about_item::before, .about_item::after{
  content:'';
  height: 3px;
  width: 100%;
  position: absolute;
  background: url("../content/img/metalline.png") no-repeat center top/cover;
}
.about_item::before{
  top: 0;
}
.about_item::after{
  bottom: 0;
}
.about_item:last-child{
  margin: 0;
}

.about_item .background{
  position: absolute;
  right: 0;
  top: 50%;
  opacity: .6;
  transform: translateY(-50%);
  width: 63%;
}
.about_item .background img{
  width: 100%;
}
.about_item:last-child .background{
  width: 58%;
}
.about_item:nth-child(2) .background img,.about_item:nth-child(4) .background img{
  transform: rotateY(180deg);
}
.about_item:nth-child(2) .background, .about_item:nth-child(4) .background{
  left: 0;
}
.about_item .button{
  outline: 3px solid #fff;
  pointer-events: none;
}
/*about_item shapes*/
.top_shapes, .bottom_shapes{
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: space-between;
  z-index: 4;
  transition: filter .3s ease;
}
.top_shapes{
  top:-4px;
}
.top_shapes::before,.top_shapes::after{
  content: '';
  background: url("../content/img/t_shape.png") no-repeat center top/contain;
  width: 105px;
  height: 38px;
}
.bottom_shapes{
  bottom: 2px;
}
.bottom_shapes::before, .bottom_shapes::after{
  content: '';
  background: url("../content/img/b_shape.png") no-repeat center top/contain;
  width: 59px;
  height: 60px;
 }
.top_shapes::after,.bottom_shapes::after{
   transform: rotateY(180deg);
 }

.about_item .container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: calc(12px + 1vw);
  align-items: center;
  min-height: inherit;
  overflow: hidden;
  padding: 0 60px;
}

.about_item:nth-child(3) img{
  width: 54%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about_text{
  width: 480px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about_text p{
  padding: 8px;
  margin-top: 8px;
}
.about_item .video_container{
  display: flex;
  margin: 0 auto;
  max-width: 640px;
  position: relative;
  box-shadow: 0 0 12px 4px rgba(0,0,0,0.8);
  outline: 12px solid rgb(0,0,0,.6);
}
.about_item .video_container::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  background: url("../content/img/metalline.png") no-repeat center top/cover;
}
.about_item .video_container::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: url("../content/img/metalline.png") no-repeat center top/cover;
}
.video_container video{
  width: 100%;
  height: 100%;
  border: 3px solid #000;
}

.video_container .top_shapes{
  top: 0;
  left: 0;
  z-index: 2;
}
.video_container .top_shapes::before{
  position: absolute;
  width: 44px;
  height: 58px;
  top: 2px;
  left: 2px;
  background: url("../content/img/shape2.png") no-repeat center top/contain;
}
.video_container .top_shapes::after{
  position: absolute;
  width: 81px;
  height: 43px;
  top: -4px;
  right: 2px;
  background: url("../content/img/shape3.png") no-repeat center top/contain;
}

.video_container .bottom_shapes{
  bottom: 0;
  left: 0;
  z-index: 2;
}
.video_container .bottom_shapes::before{
  position: absolute;
  width: 44px;
  height: 58px;
  bottom: 2px;
  right: 2px;
  transform:rotateY(180deg) rotateX(180deg);
  background: url("../content/img/shape2.png") no-repeat center top/contain;
}
.video_container .bottom_shapes::after{
  position: absolute;
  width: 81px;
  height: 43px;
  bottom:-4px;
  left: 2px;
  transform: rotateX(180deg);
  background: url("../content/img/shape3.png") no-repeat center top/contain;
}
.video_container:hover .bottom_shapes, .video_container:hover .top_shapes, .video_container:hover .item_borders, .video_container:hover::before,.video_container:hover::after{
  filter: brightness(130%);
}

.cards{
  position: relative;
  height: 100%;
}
.cards img{
  position: absolute;
  width: 42%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transform-origin: left;
  transition: all .8s ease;
}

.card_obj1 img:hover{
  width: 45%!important;
  z-index: 4!important;
  transform: rotate(2deg) translate(-50%,-50%);
}
.card_obj1 img:first-child{
  z-index: 3;
}
.card_obj1 img.active:nth-child(2){
  width: 37%;
  left: 35%;
  z-index: 2;
}
.card_obj1 img.active:nth-child(3){
  width: 37%;
  left: 65%;
  z-index: 2;
}
.card_obj1 img.active:nth-child(4){
  width: 32%;
  left: 80%;
}
.card_obj1 img.active:last-child{
  width: 32%;
  left: 20%;
}

.card_obj2 img:hover{
  width: 45%!important;
  z-index: 4!important;
}
.card_obj2 img:first-child{
  z-index: 3;
}
.card_obj2 img.active:nth-child(2){
  width: 37%;
  left: 30%;
  transform: rotate(-4deg) translate(-50%,-50%);
}
.card_obj2 img.active:nth-child(3){
  width: 37%;
  left: 70%;
  transform: rotate(4deg) translate(-50%,-50%);
}
.card_obj2 img.active:first-child:hover{
    transform: rotate(2deg)translate(-50%,-50%)!important;
}
.card_obj2 img.active:nth-child(2):hover{
    transform: rotate(-2deg)translate(-50%,-50%)!important;
}
.card_obj2 img.active:last-child:hover{
    transform: rotate(2deg) translate(-50%,-50%)!important;
}
/*Factions*/
#factions{
  z-index: 1;
  background: rgb(0,0,0,.94);
  box-shadow: 0 0 12px 4px rgba(0,0,0,0.8);
}
#factions::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  background: url("../content/img/metalline.png") no-repeat center top/cover;
}
#factions::after{
  content:'';
  height: 58px;
  width: 100%;
  position: absolute;
  filter: contrast(110%);
  bottom: -37px;
  background: url("../content/img/metalline(shape).png") no-repeat center top/cover;
}
.factions_items{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 18px 0;
}
.faction_item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 344px;
  padding: 12px 0;
  background: rgb(0,0,0,.8);
  will-change: transform;
  outline: 3px solid transparent;
  transition: all .3s ease;
}
.faction_item:hover{
  outline: 3px solid #fff;
}
.faction_item:hover .img .leader{
  opacity: 0;
}
.faction_item .img .leader{
    transition: opacity .3s ease;
}
.faction_item .img .shirt_card{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}

.faction_item:nth-child(2){
  margin: 0 1vw;
}
.faction_item .img{
  display: flex;
  position: relative;
  transition: filter .3s ease;
}
.faction_item .img::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 32%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #030202, transparent);
}
.faction_item .img::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  z-index: 3;
  background: url("../content/img/metalline.png") no-repeat center top/cover;
}
.faction_item img{
  max-width: 320px;
}

.item_borders{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  transition: filter .3s ease;
}
.item_borders::before,.item_borders::after{
  content: "";
  height: 100%;
  width: 3px;
  background: url("../content/img/metalline(v).png") no-repeat center top/cover;
}
.item_borders::after{
  transform: rotateY(180deg);
}

.faction_item h3{
  font-weight: bold;
  font-size: 32px;
  margin-top: 18px;
}
.faction_item p{
  padding: 12px 18px 24px;
  font-size: 18px;
  text-rendering: optimizeLegibility;
}
/*Home2*/
#home2{
  display: flex;
  min-height: 85vh;
  background: url("../content/img/bg/home2.webp") no-repeat center top/cover;
}
#home2::before{
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1024px;
  height: 42px;
  z-index: 2;
  filter: contrast(105%);
  background: url("../content/img/metalline(shape1024).png") no-repeat center top/cover;
}
#home2::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, #000,transparent);
}
#home2 .content{
  padding-top: 70px;
}
#home2 .logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px;
}
#home2 .logo img{
  width: 56vh;
  transition: filter .3s ease;
}
#home2 .logo img:hover{
  filter: contrast(130%);
}
#home2 .main_button{
  margin: 36px 0 8px;
}
#home2 .content>h4{
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
    font-size: 18px;
    font-weight: 300;
}
#home2 .content>span{
  margin-top: 30px;
}
/*Footer*/
#footer{
  background: url("../content/img/bg/footer.jpg") no-repeat center bottom/cover;
}
#footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background: linear-gradient(to bottom, #000, transparent);
}
#footer::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background: linear-gradient(to top, #000, transparent);
}
.footer_content{
  padding: 60px 0 18px;
}
.stay_connected{
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-bottom: 52px;
}
.stay_connected h1{
  margin-bottom: 8px;
}
/* .stay_connected::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  background: url("../content/img/metalline(1024).png") no-repeat center top/contain;
} */
.stay_connected .social_links a:hover{
  filter: grayscale(1) contrast(105%);
}
.stay_connected .social_links a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  box-shadow: 0 0 8px 0 rgb(0,0,0,.6);
  filter: grayscale(1) contrast(120%);
  transition: filter .3s ease;
  background: url("../content/img/social_iconbg.png") no-repeat center top/cover;
}
.stay_connected .social_links .social_icon{
  width: 60px;
  height: 60px;
  fill: #fff;
}

.joinnews{
  margin: 38px 0;
  padding: 0 15px;
}
.joinnews form{
  display: flex;
  justify-content: center;
  height: 42px;
}
.joinnews form input{
  padding: 0 12px 2px;
  font-size: 22px;
  width: 425px;
  will-change: width;
  transition: width .3s ease;
}
.joinnews form input:focus{
  width: 500px;
}

/*placeholder*/
.joinnews form input::-moz-placeholder{color: rgb(0,0,0,.5); transition: color .3s ease;}
.joinnews form input::-webkit-input-placeholder{color: rgb(0,0,0,.5); transition: color .3s ease;}
.joinnews form input:-ms-input-placeholder{color: rgb(0,0,0,.5); transition: color .3s ease;}
.joinnews form input::-ms-input-placeholder{color: rgb(0,0,0,.5); transition: color .3s ease;}
.joinnews form input::placeholder{color: rgb(0,0,0,.5); transition: color .3s ease;}
.joinnews form input:focus::-moz-placeholder{color: transparent;}
.joinnews form input:focus::-webkit-input-placeholder{color: transparent;}
.joinnews form input:focus:-ms-input-placeholder{color: transparent;}
.joinnews form input:focus::-ms-input-placeholder{color: transparent;}
.joinnews form input:focus::placeholder{color: transparent;}

.joinnews form button{
  margin: 0;
  padding: 0 36px;
  box-shadow: none;
}
.joinnews form label{
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: rgb(7,7,7);
  display: flex;
  align-items: center;
  padding: 0 14px;
}

/* .ratings{
  display: flex;
  max-width: 100%;
  justify-content: center;
  margin: 30px 0;
}
.ratings img{
  max-width: 80px;
  margin: 0 4px;
  filter: grayscale(100%) contrast(127%);
  box-shadow: 0 0 8px 0 rgb(0,0,0,.6);
} */
/*button up*/
.btn_up{
  position: fixed;
  z-index: 10;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  right: 6vw;
  bottom: 6vh;
  opacity: 0;
  transition: opacity .3s ease;
}
.btn_up:hover{
  opacity: 1;
}
.btn_up::before, .btn_up::after{
  content: '';
  width: 15px;
  height: 3px;
  background: #fff;
  position: absolute;
  top:40%;
}
.btn_up::before{
  transform: rotate(45deg);
  right: 3px;
}
.btn_up::after{
  transform: rotate(-45deg);
  left: 3px;
}

.rights{
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  max-width: 740px;
  padding: 0 30px;
}
.rights span{
  text-rendering: optimizeLegibility;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

/*ANIMATION*/
.animated{
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeIn{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
/*Media*/
@media (max-width: 1080px){
  .factions_items{
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 12px;
  }
  .faction_item{
    max-width: 100%;
    flex-direction: row;
    padding: 12px;
  }
  .faction_item:nth-child(2){
    margin: 0;
  }
}
@media (max-width:1024px) {
  .social_icon{
    width: 52px;
    height: 52px;
  }
  .nav{
    padding: 0 15px;
  }
  .nav .section_links, .nav #logo_normal, .nav .social_links{
    display: none;
  }
  .nav #logo_small{
    display: block;
  }
  .nav .menu-hamb{
   display: flex;
    }

  .trailer_content h1{
    width: auto;
    padding: 0 15px;
  }
  .content>p{
    width: auto;
    padding: 0 15px;
  }

  .about_item .container{
    padding:  0 15px;
    display: block;
  }
  .about_item:nth-child(odd) .about_text{
    padding: 70px 0 32px;
  }
  .about_item:nth-child(even) .about_text{
    padding: 46px 0 70px;
  }
  .about_text{
    width: 94%;
  }
  .about_item .video_container{
    margin-top: 82px;
    max-width: calc(100% - 24px)
  }
  .about_item .cards{
    height: 64vmin;
    margin: 0 auto;
    width: 84%;
    margin-bottom: 70px;
  }
  .about_item .background{
    right: auto;
    left: 50%!important;
    top:70%;
    transform: translate(-50%,-50%);
    width: fit-content!important;
  }
  .about_item:nth-child(even) .background{
    top:35%!important;
  }
  .about_item:nth-child(3) .container{
    display: flex;
    flex-direction: column;
    align-items:center;
  }
  .about_item:nth-child(3) .about_text{
    padding-bottom: 18px;
  }
  .about_item:nth-child(3) img{
    transform: none;
    position: inherit;
    width: auto;
    padding-bottom: 42px;
  }

  .factions_items{
    padding: 0 15px!important;
  }
}
@media (max-width: 880px){
  .about_item .cards{
    width: 100%;
  }
}
@media (max-width:768px) {
  .about_text{
    width: 100%;
  }
  .faction_item{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .faction_item .img{
    display: flex;
    justify-content: center;
  }
  h1{
    font-size: 36px;
  }
    #home2 .logo img{
      width: 86vmin;
    }
  .joinnews{
    width: 100%;
  }
  .joinnews form input{
    width: calc(100% - 142px);
    font-size: 18px;
  }
  .joinnews form input:focus{
    width: calc(100% - 142px);
  }
  .joinnews form label{
    display: none;
  }
}
@media (max-width: 640px) {
  .about_item:nth-child(3) img{
    width: 100%;
  }
  .joinnews form input{
    width: calc(100% - 142px);
  }
}
@media (min-width: 379px) and (max-width: 549px){
  .platform_btns{
    flex-wrap: wrap;
  }
  .btn_platform:first-child{
    margin: 0 10px;
  }
}
@media (max-width: 520px){
  body{
    font-size: 18px;
  }
  h2{
    font-size: 32px;
  }
}
@media (max-width: 420px) {
  #trailer a.main_button{
    width: 340px;
    height: 72px;
  }
  #trailer a.main_button::before{
    height: 66px;
  }
  #trailer a.main_button span{
    font-size: 28px;
    margin-top: 18px;
  }
  #newabout a.main_button{
    width: 340px;
    height: 72px;
  }
  #newabout a.main_button::before{
    height: 66px;
  }
  #newabout a.main_button span{
    font-size: 28px;
    margin-top: 18px;
  }
  .joinnews form input{
    width: calc(100% - 105px);
  }
  .joinnews form input:focus{
    width: calc(100% - 105px);
  }
  .joinnews form button{
    padding: 0 12px;
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  #home a.main_button, #home2 a.main_button{
    width: 340px;
    height: 79px;
  }
  #home a.main_button::before, #home2 a.main_button::before{
    height: 73px;
  }
}
@media (max-width: 379px){
  .platform_btns{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 12px;
  }
    .btn_platform:nth-child(2){
      margin: 0;
    }
}
