@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: #000;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: white;
}
.hero_banner{
    position: relative;
    background-image: url(./assets/imgs/slider.webp);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    height: 100%;
    padding-top: 85px;
    padding-bottom: 85px;
    text-align: center;
}
.title-word {
    animation: color-animation 4s linear infinite;
  }

  .title-word-1 {
    --color-1: #DF8453;
    --color-2: #9a16af;
    --color-3: #E4A9A8;
  }

  .title-word-2 {
    --color-1: #f8b92a;
    --color-2: #ba2926;
    --color-3: #09a605;
  }

  .title-word-3 {
    --color-1: #00dec5;
    --color-2: #1c2c9e;
    --color-3: #811895;
  }

  .title-word-4 {
    --color-1: #3D8DAE;
    --color-2: #DF8453;
    --color-3: #E4A9A8;
  }

  @keyframes color-animation {
    0%    {color: var(--color-1)}
    32%   {color: var(--color-1)}
    33%   {color: var(--color-2)}
    65%   {color: var(--color-2)}
    66%   {color: var(--color-3)}
    99%   {color: var(--color-3)}
    100%  {color: var(--color-1)}
  }


.title {
    font-family: Black Ops One, sans-serif;
    font-weight: 300;
    text-align: center;;
    font-size:50px;
    text-transform: uppercase;
    letter-spacing: 2px ;
    word-spacing: 10px;
  }

.btn-hover {
    padding: 15px 55px;
    /* width: 200px; */
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    /* height: 55px; */
    text-align:center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #F24645);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
    box-shadow: none;
}
.btn-hover.color-2 {
    background-image: linear-gradient(to right, #188b0a, #e59600, #fa7199, #de9100);
    box-shadow: 0 4px 15px 0 rgb(229 171 10 / 75%);
}
.btn-hover.color-9 {
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}
.btn-hover.color-4 {
    background-image: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516);
    box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}
.btn-hover.color-7 {
    background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #F24645);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}
.hero_banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 190px;
    width: 50%;
    clip-path: polygon(0 70%, 0% 100%, 100% 100%);
    background: #de9100;
    /* transform: rotate(355deg); */
}

.hero_banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 190px;
    width: 50%;
    clip-path: polygon(0 100%, 0% 100%, 100% 76%);
    clip-path: polygon(0 100%, 100% 100%, 100% 70%);
    background: #de9100;
}
section.games ,section.about_us,section.download , section.connect_support{
    padding: 50px 0px;
}section.download{
    margin: 50px 0px;
}
.social_media_div a svg {
    height: 60px;
    width: 60px;
    background-color: #28ac2f;
    padding: 27px;
    border-radius: 50%;
color: white;
    margin: 0 20px;

}
.social_media_div .connect_social_link {
    height: 100%;
    position: relative;
    display: inline-block;
    /* width: 100%; */
    /* background: white;
    margin: 0 10px;
    border-radius: 50%; */
}
footer.footer {
    background: #0f0f0f;
    text-align: center;
    padding-top: 15px;
}

.footer span {
    background: black;
    display: inline-block;
    width: 100%;
    padding: 10px;
}
.social_media_div a:first-child svg{
    background-color: #28ac2f !important;
}
.social_media_div a:last-child svg{
    background-color: #29a6e3 !important;
}
section.download{
    background-image: url(./assets/imgs/bannerbg.webp);
    background-position: center;
    background-size: cover;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
    padding: 150px;
    text-align: center;
}
.download_txt{
    font-size: 40px;
    color: #de9100;
    font-weight: 300;
    font-family: Black Ops One, sans-serif;;

}
h2{
    width: fit-content;
    margin-bottom: 50px !important;
    margin: 10px auto;
    position: relative;;
    font-size: 40px;
    color: #de9100;
    font-weight: 400;
    font-family: Black Ops One, sans-serif;;
}
.h2_heading::after {
    position: absolute;
    content: '';
    border-radius: 20px;
    height: 2px;
    width: 100%;
    background: #de9100;
    bottom: -11px;
    left: 0;
    animation: lineH 1s 1s infinite linear;

}
@keyframes lineH{
    0%{
        width: 0%;
    }
    100%{
width: 100%;opacity: 0;
}
}

.card-body {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #049831);
    background-size: 400% 400%;
    animation: gradient 1s ease infinite;
    padding: 10px;
}

.card {
    overflow: hidden;
    border-radius: 20px;
    border: 0;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
.card:hover .card-body img{
    transform: scale(1.09);
}
.card-body img {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    border-radius: 13px;
    z-index: 9;
    transition: all .3s ease-in-out;
}

@keyframes gradient {
	0% {
		background-position: 0% 20%;
	}
	30% {
		background-position: 0% 40%;
	}
	50% {
		background-position: 0% 60%;
	}
    70% {
		background-position: 0% 80%;
	}
    100% {
		background-position: 0% 100%;
	}
}


.social_media_div .fa-brands ,.social_media_div svg{
    font-size: 30px;
}


/* responsive */
@media (max-width:600px){
    .download_txt {
        font-size: 25px;
    }
    .title{
        font-size: 35px;
    }
    .hero_banner::before, .hero_banner::after{
        height: 110px;
    }
    section.games, section.about_us, section.download, section.connect_support {
        padding: 30px 0px;
    }
    h2{
        font-size: 30px;
    }
    section.download
{
    padding: 50px 0px;
}
.social_media_div a svg{
    height: 60px;
    width: 60px;
    background-color: #28ac2f;
    padding: 27px;
    border-radius: 50%;
    color: white;
    margin: 0 17px;
}
.btn-hover{
    margin: 0;
}
}
.connect_social_link span {
    position: absolute;
    right: 22px;
    top: 0px;
    background: red;
    font-size: 15px;
    height: 27px;
    font-weight: 700;
    line-height: 22px;
    width: 27px;
    border-radius: 50%;
    color: white;
}

@media (min-width:601px)and (max-width:1400px){
    section.download{
        padding: 60px 0;
    }
    .download_txt {
        font-size: 32px;}
        .title{
            font-size: 35px;
        }
}