@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
* {
    box-sizing: border-box;
}
hr {
  border-top: 1px solid #c5c5c5;
}

body {
    
    background-color: #000;
}

:root{
	--bg-color: #020312;
  --bg-color2: #000;
	--text-color: #fff;
	--main-color: #eb4a4a;
	--second-color: gray;
	--other-color: #12141c;
  --blueish-color: #2979FF;
	--h1-font: 5.2rem;
	--h2-font: 3.5rem;
	--p-font: 1.1rem;
}

/*
::-webkit-scrollbar {
  width: 8px;
  
}

::-webkit-scrollbar-track {
  background:#dddddd;
}

::-webkit-scrollbar-thumb {
  background:#db1d5c;
  border-radius: 1px;
}
*/


#banner-other-clans {
  margin: 0 auto;
  height: 50vh;
  padding: 12px 0;
}

#banner-header{
  width:100%;
  position: fixed;
  z-index: 100;
  max-height: 250px;
}



.header {
  width:100%;
  height: 100%;
}
h1 {
  text-align: center;
  color: #fff;
  height: 10rem;
  width:100%;
  font-size: 4rem;
  font-family: Montserrat;
}

h2, h3 {
  color:#fff;
  font-family: Montserrat;
}

.container {
    display: flex;
    width: 90vw;
  font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.panel {
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 80vh;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    flex: 0.5;
    margin: 10px;
    position: relative;
    transition: flex 0.7s ease-in;
}

.panel h3 {
    font-size: 24px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    opacity: 0;
}

.panel.active {
    flex: 5;
}

.panel.active h3 {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
}

.join-container {
  width: 100%;
  height: 100%;
  
}

.join-container > img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 0;

}
.form-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 200px;
}
/*Aligned it responsiely*/
.input-context {
    margin: auto;
}

/*Removes the space between the input & button-And aligns multiple input fields with responsiveness*/
form {
    height: 200px;    
    align-items: center;
    justify-content: center;
}

/*Positions the form side by side*/
input[type="text"] {
    height: 40px;
    margin: 10px;
    box-sizing: border-box;
    font-family: 'Montserrat';
    border: 1px solid red;
  border-radius: 4px;
    
}
/*Positions the form side by side without space between the form*/
input[type="submit"] {
    box-sizing: border-box;
    height: 40px;
    padding: none;
    margin: 10px;
    background-color:red;
    color: white;
    width: 60px;   
    font-family: 'Montserrat';
}
.btn:hover{
	transform: scale(1.01) translateY(-5px);
	background: transparent;
	border: 1px solid var(--blueish-color);
  color: #fff;
}

/*--Modifiers--*/

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px; 
}

.my-8 {
  margin: 8px 0;
  
}
.mb-8 {
  margin-bottom: 8px;
}
.text-orange {
  color: orange;
}
.text-red {
  color: red;
}
.text-blue {
  color: blue;
}
.text-white {
  color: white;
}
.text-green {
  color: green;
}
.text-pink {
  color: pink;
}
@media (max-width: 374px) {
  h1{
    max-width: 374px;
    font-size:3rem;
  }
  .container {
        width: 100vw;
    }
  
    .panel:nth-of-type(5), .panel:nth-of-type(6), .panel:nth-of-type(7), .panel:nth-of-type(8), .panel:nth-of-type(9), .panel:nth-of-type(10), .panel:nth-of-type(11), .panel:nth-of-type(12), .panel:nth-of-type(13), .panel:nth-of-type(14), .panel:nth-of-type(15){
        display: none;
    }
}

/* Gallery 1 Styles */


/* Gallery 2 Styles */


/* --Modifiers-- */

.flex {
  display: flex;
}




/*-- Screen Sizes --*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 600px) {
  
  
}


/*    Slider            */
:root {
  --scrollcolor: #fff;
  --scrollbackground: #141e27;
}
* {
  box-sizing: border-box;
}
html,
body {
  padding: 0;
  margin: 0;
}

.slider {
  width: 85%;
  max-width: 1280px;
  margin: 0 auto;
}
.slider__content {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  scrollbar-color: var(--scrollcolor) var(--scrollbackground);
}
.slider__content::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 1rem;
  background: var(--scrollbackground);
}
.slider__content::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: var(--scrollcolor);
}
.slider__content::-webkit-scrollbar-track {
  border-radius: 1rem;
  background: var(--scrollbackground);
}
.slider__item {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 100%;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}
@media (min-width: 460px) {
  .slider__item {
    aspect-ratio: 0.6666666667;
    min-width: calc((100% / 2) - 2rem);
  }
}
@media (min-width: 940px) {
  .slider__item {
    min-width: calc((100% / 3) - 4rem);
  }
}
.slider__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.slider__info {
  position: relative;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(32, 50, 57, 0));
}
.slider__info h2 {
  color: #fff;
  font-family: system-ui;
  line-height: 1.1;
  font-weight: 300;
  font-size: 1.75rem;
  margin: 0;
}
.slider__nav {
  margin: 1rem 0 4rem;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  align-content: center;
  align-items: center;
  pointer-events: none;
}
@media (min-width: 460px) {
  .slider__nav {
    justify-content: flex-end;
  }
}
.slider__nav__button {
  margin: 0;
  appearance: none;
  border: 0;
  border-radius: 2rem;
  background: #fff;
  color: #203239;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  line-height: 1;
  pointer-events: none;
  transition: 0.2s ease-out;
  opacity: 0.25;
}
.slider__nav__button--active {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
