@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    height: 100vh;
    overflow:hidden;
}
ul {
    list-style: none;
}
.main {
    max-width: 100%;
    height: 100vh;
    margin: 0 auto;
    text-align: center;
    position: relative;
    background-image: url("../img/bg.png");
    background-position: center;
    background-size: cover;
    padding: 20px 0 0 0;
    position: relative;
    overflow:hidden;    
}
.main h1 {
    font-weight: 600;
    margin: 0 0 100px 0;
    /* -webkit-text-stroke: 1px #ffffff; */
    color: #ffffff;
}
.main-box {
    max-width: 460px;
    height: 428px;
    margin: 20px auto 0;
    position: relative;
}
.item-1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}
.img-1 {
    position: relative;
    width: 100%;
}
.img-2{
   
    
  animation: geometric-form-animation 3s alternate infinite;

 
}

@keyframes geometric-form-animation {
  0% {
    transform: rotate(10deg);
    
  }
  50% {
    transform: rotate(6deg); 
  }
  100% {
    transform: rotate(12deg);
  }
}
.item-2 {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}
.img-2 {
    position: relative;
    width: 100%;
    /* height: 95%; */
}
.item-4 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.img-4 {
    position: relative;
    width: 100%;
    /* height: 14%; */
}
.round_1 {
    animation: spin 10s infinite ease-in-out; 
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(22.5deg);
        transform: rotate(22.5deg)
    }

    50% {
        -webkit-transform: rotate(-22.5deg);
        transform: rotate(-22.5deg)
    }

    100% {
        -webkit-transform: rotate(22.5deg);
        transform: rotate(22.5deg)
    }
}
.item-5 {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 110px;
    margin: 0 auto;
    z-index: 99;
}
.img-5 {
    position: relative;
    width: 100%;
    /* height: 54%; */
}
button.spin_button {
    position: absolute;
    background: transparent;
    border: none;
}
button.spin_button a {
    text-decoration: none;
    border-radius: 50%;
}
.modal {
    background: #0000001c;
}
.modal-header,
.modal-body,
.modal-footer {
    border: none;
}
.reword-pop {
    border-radius: 5%;
    background-color: #000;
    text-align: center;
    border: 1px solid #ffffff;
    overflow: hidden;
    padding: 25px 0 10px 0;
    background: linear-gradient(to bottom, #2299e7 7%, #040280 100%, #013bc0 100%);
    box-shadow: -2px 0px 10px 4px rgba(255,255,255,1);
}
.reword-pop .modal-header {
    width: 220px;
    /* height: 215px; */
    margin: -29px auto;
}
.reword-pop .modal-header img {
    width: 100%;
    height: 100%;
}
.reword-pop .modal-body {
    margin: 0 auto;
}
.reword-pop .modal-body h4 {
    font-size: 50px;
    font-weight: 900;
    margin: 20px 0 10px 0;
    color: rgb(255 255 255);
}
.reword-pop .modal-body h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}
.reword-pop .modal-body h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.reword-pop .modal-body h4 strong {
    color: #efae31;
}
.reword-pop .modal-footer {
    margin: 0 auto;
}
.reword-pop .modal-footer button {
    margin: 0;
    background: linear-gradient(to right, #9a9797 7%, #ffffff 100%, #f5f5f5 6%);
    color: #0f3da8;
    font-weight: 900;
    border: 1px solid #ffffff;
    padding: 10px 116px;
}
@-webkit-keyframes animateOpacity {
    from {
        opacity: 0;
    }

    5% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    95% {
        opacity: 0.6;
    }

    to {
        opacity: 0;
    }
}
body.modal-open {
    overflow: hidden;
    height: 100% !important;
    padding-right: 0px !important;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    outline: 0;
}
.roll-in-left {
    -webkit-animation: roll-in-left 0.6s ease-out both;
            animation: roll-in-left 0.6s ease-out both;
}
 @-webkit-keyframes roll-in-left {
  0% {
    -webkit-transform: translateX(-800px) rotate(-540deg);
            transform: translateX(-800px) rotate(-540deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes roll-in-left {
  0% {
    -webkit-transform: translateX(-800px) rotate(-540deg);
            transform: translateX(-800px) rotate(-540deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@media screen and (max-width:600px) {
.reword-pop {
    border: 4px solid #fff;
}
    .reword-pop .modal-header {
        /* height: 175px; */
        margin: -27px auto;
        width: 186px;
    }
    .reword-pop .modal-body h4 {
        font-size: 30px;
    }
    .reword-pop .modal-footer button {
        padding: 7px 16px;
    }

}
@media screen and (max-width:450px) {
    .main h1 {
    margin: 0 0 50px 0;
}
 .main-box {
        max-width: 310px;
    }
.item-5 {        
    max-width: 76px;
}
.reword-pop .modal-body h2 {
        color: #fff;
        font-size: 33px;
        font-weight: 600;
    }
  
}



