@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amp;display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root{
   --black:#000;
   --white:#ffffff;
   --lightgrey:#f1f1f1;
   --darkblue:#6C729D;
   --primarycolor:#3d51f2;
   --secondarycolor:#5670ef;
   --lightDark:#6C729D;
   --darkText:#8388B4;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: var(--darkblue);
    color: var(--white);
    position: relative;
}

html {
    
    scroll-behavior: smooth;
  }

/* Header */

header{
   
    width: 99%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    
}

#barContainer{
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: 15px;
}

.nav{
    list-style-type: none;
    color: var(--white);
    position: fixed;
    top: 0;
    left: -5px;
    bottom: 0;
    background-color: var(--lightDark);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
    
}

.showNav{
    padding: 2em;
    padding-top: 5em;
    width: 70%;
    max-width: 300px;

}

.navLogo{
   margin-bottom: 3rem;
   
}

.logocontx{
    overflow: hidden;
    width: 250px;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
   margin-bottom: 1.5rem;
   left: 20px;
}

.logocontx p{
    width:100%;
    font-size: 30px;
    font-weight: 900;
}

.logocontx p span{
    color: #135ef3;
    font-size: 35px;
}

.nav-link{
    font-size: 1rem;
    width: 100%;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link a{
    color: var(--white);
}

.sociallinkContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
}

.sociallink{
    margin-right: 1em;
    cursor: pointer;
}

.otherhead{
    width: 100%;
    margin-top: 5px;
}

.otherhead .backbtn-contx{
    background: #4c5070;
    width: 100%;
    border: #f1f1f1 2px solid;
    border-left: none;
    border-right: none;
    border-radius: 30px;
}

.of-about{
    margin: 50px 0;
}

.otherhead .backbtn-contx span{
    font-size: 30px;
    margin: 0 10px;
    cursor: pointer;
}

@media screen and (min-width:800px) {
    .nav{
        position: relative;
        width: auto;
        background-color: transparent;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 0;
    }
    .nav-link{
          margin-right: 2em;
    }
    .navLogo,#barContainer,.sociallinkContainer{
        display: none;
    }
}

/* Hero page */
.headline{
    color: var(--white);
    font-size: 3rem;
    width: 100%;
}

.cryptoText{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.btnContainer{
    margin-top: 2em;
}

.fa-play{
    margin: 0;
}

.sectionPic{
    order: 0;
}

.sectionDesc{
    order: 1;
    margin-top: 1em;
}

@media screen and (min-width:800px) {
    .sectionPic{
        order: 1;
    }
    
    .sectionDesc{
        order: 0;
    }  
}
@media screen and (min-width:1000px){
    .headline{
        font-size: 4em;
    }
}


/* Processes */
.processessDesc{
    order: 0;
}

.processesPic{
  order: 1;
}

.eachProcesses{
    display: flex;
    margin-bottom: 2em;
}

.eachProcesses img{
    margin-right: 0;
}

.processTitle{
    color: var(--white);
    margin-bottom: 1em;
}

.processIconxxx{
    font-size: 40px;
    margin-right: 0px;
}

/* Markets */

.marketDesc{
    order: 0;
}

.eachMarket{
    display: flex;
    margin-bottom: 2em;
}

.eachMarket img{
    margin-right: 2em;
}

.marketTitle{
    color: var(--white);
    margin-bottom: 1em;
}

.marketspicSection{
    background-color: var(--lightgrey);
    border-radius: 20px;
    padding: 1em;
}

.marketspicHeader{
    color: var(--darkblue);
    text-align: center;
    padding: 1em;
    text-transform: uppercase;
}

.marketsPicContainer{
    width: 100%;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 1em;
    margin: 0;
}

.marketPic{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
    border-radius: 20px;
}

.marketIconxxx{
    height: 150px;
    border-radius: 20px;
    font-size: 50px;
    margin-right: 20px;
    color: #FC9531;
}

.marketPic1{
    background-color: #FC9531;
}

.marketPic2{
  background-color: #4990FF;
}

.marketPic3{
  background-color: #3EC2F1;
}

.marketPic4{
   background-color: #50D79F;
}

.marketPic img{
    width: 50px;
}

.marketTitle{
  color: var(--white);
  font-weight: bold;
  margin-top: .5em;
  text-transform: uppercase;
}


/* Dashboard */
.dashboardDesc{
    order: 0;
}

.dashboardPic{
    order: 1;
    margin-top: 2em;
}

@media screen and (min-width:800px) {
    .dashboardDesc{
        order: 1;
    }
    
    .dashboardPic{
        order: 0;
    }
}


/* Funds */
.fundSection{
    width: 90%;
    max-width: 1100px;
    margin: auto;
    margin-top: 5em;
    margin-bottom: 5em;


}

.fundsContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.fund{
    margin-top: 3em;
}

.fundType{
    color: var(--white);
    margin-bottom: 1em;
    font-size: 1.5rem;
}

@media screen and (min-width:800px) {
    .fundSection{
        width: 85%;
    }    
}

@media screen and (min-width:1000px) {
    .fundsContainer{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .fund{
        margin-top: 1em;
    }
}

/*plans*/



.plan-containerxxx{
   width: 100%;
}

@media(max-width: 800px){
    .plan-containerxxx{
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center; 
    }
  
    
}

.plans{ 
  display: grid;
  gap: 20px;  
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
}

.plan{
    width: 275px;
    padding: 10px;
    background: #e7e7e7;
    height: 290px;
    border-radius: 20px;
    box-shadow: #f0f0ec 2px 3px 20px;
}

.plan-name{
    font-size: 2rem;
    width: 100%;
    text-align: center;
    color: #ebecef;
    background: #04457e;
    font-weight: 600;
    border-radius: 10px;
    
}

.plan-sect2{
    width: 100%;
    border: #080A25 3px solid;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 7px;
    overflow: hidden;
}

.plan-percent{
    width: 50%;
    background: rgb(8, 162, 201);
    text-align: center;
    padding: 5px;
    border-right: #0d102c 1px solid;
    font-size: 1.2rem;
    
}

.plan-time{
    width: 50%;
    background: rgb(155, 94, 104);
    text-align: center;
    padding: 5px;
    border-left: #0d102c 1px solid;
    font-size: 1.2rem;
}

.plan-sect3{
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    
}

.plan-sect3 p{
    color: #0d0b0b;
    font-size: 15px;
    font-weight: 600;
    margin: 10px 0;
}

.plan-sect4{
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-sect4 button{
    padding: 5px 25px;
    outline: none;
    cursor: pointer;
    background: #04457e;
    color: #f6f8f6;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    transition: 0.6s ease;
}

.plan-sect4 button:hover{
    transform: scale(1.3);
}

/* Newsletter */

.newsletter{
    border: 1px solid #fff;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
}

.newsletter input{
    font-size: 1.1rem;
    padding: .7em 1.5em;
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}

.newsletter input::placeholder{
    color: var(--lightgrey);
}

.newsletter button{
    background-color: var(--primarycolor);
    font-weight: 700;
}

.newsletterDesc{
    order: 0;
}

.newsletterPic{
    order: 1;
}

@media screen and (min-width:800px) {
    .newsletterDesc{
        order: 1;
    }
    
    .newsletterPic{
        order: 0;
    }
}

/* Join Now */
footer{
    background-color: var(--lightDark);
    margin-top: 5em;
}

.joinSection,.footerlinksContainer{
    width: 90%;
    margin: auto;
    padding: 1em;
}

.joinSection{
    display: flex;
    align-items: center;
    padding: 3em 0em;
}

.joinSection .joinDesc{
    width: 80%;
}

.joinSection button{
    height: auto;
}



.footerlinksContainer{
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 1em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-content: space-between;
    padding-top: 5em;
    border-top: 1px solid var(--lightgrey);
}

.footersociallinkContainer{
    margin-top: 1em;
}

.footerAboutus .sociallinkContainer{
    justify-content: flex-start;
}

.footerlink{
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.linkTitle{
    font-size: 1.5rem;
    margin-bottom: .5em;
}

.footerlink a{
    color: var(--white);
    margin-bottom: 1em;
    transition: all .5s ease-in-out;
}

.footerlink a:hover{
    transform: translateX(10px);
}

.footerCopyright{
    background-color: var(--darkblue);
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
}

.footerCopyright p{
    text-align: center;
}

.developedBy{
    font-weight: bold;
    color: var(--white);
}

@media screen and (min-width:700px) {
    .footerlinksContainer{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}


/* Contact page */
.contactSection{
    margin-top: 2em;
}
.contactformContainer{
    display: flex;
    flex-direction: column;
    order: 1;
}

.contactPic{
    order: 0;
    width: 150px;
    background-color: rgba(241, 241, 241,.05);
    border-top-left-radius: 20%;
    
}

.contactPic img{
    width: 100%;
}

.contactForm div{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contactInput{
    width: 100%;
    font-size: 1.1rem;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 20px;
    border: none;
    outline: none;
    border: 2px solid var(--white);
    background-color: transparent;
    resize: none;
    color: var(--white);
}

.contactInput::placeholder{
    color: var(--lightgrey);
    text-transform: capitalize;
}

.contactBtn{
    width: 200px;
}

.certificate{
    width: 180px;
    height: 200px;
    object-fit: cover;
    object-position: center;
  }
  
  .certificate img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.addressHeader{
    text-align: center;
    color: var(--white);
    margin-bottom: 2em;
}

.address{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  margin: 0;
}

.eachAddress h1{
    color: var(--white);
    margin-bottom: .5em;
    font-size: 1.5rem;
}

.eachAddress p{
    margin-bottom: 1em;
}

@media screen and (min-width:800px) {
    .contactformContainer{
        order: 0;
    }
    
    .contactPic{
        order: 1;
    }

    .address{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* About Us */
.aboutusDesc{
    order: 0;
}

.statusContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.status h1{
    color: var(--white);
    font-size: 1.5rem;
    font-weight: lighter;
}

.status h1 b{
    font-weight: bold;
    font-size: 2rem;
}

/* offer */
.services{
    width: 90%;
    max-width: 1100px;
    margin: auto;
    margin-top: 4em;
}

.servicesforaboutus{
    margin-bottom: 30px;
}

.aboutusimgContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.aboutusimgContainer img{
    width: 100%;
    border-radius: 10px;
}


.offers{
    margin-top: 5em;
    display: grid;
    gap: 50px;
}

.eachOffer{
   display: flex;
   align-items: flex-start;
}

.eachOffer img{
    margin-right: 1em;
}

.offerDesc h1{
    margin-bottom: .5em;
    font-size: 1.5rem;
}

/* video */

.videoSection{
  display: grid;
}

.videoSectionHeader{
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: .5em;
    font-weight: bold;
}

.video{
    position: relative;
    margin-bottom: 1em;
    border-radius: 20px;
    overflow: hidden;
}

.thumbnail{
    width: 100%;
}

.playIcon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}

/* Team */



@media screen and (min-width:800px) {
    .aboutusDesc{
        order: 1;
    }   

    .statusContainer{
        gap: 50px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .offers{
        grid-template-columns: 1fr 1fr;
       gap: 20px;
    }

    .videoSection{
        grid-template-columns: 1fr 3fr;
      }

    .videoSectionHeader{
        z-index: 1;
        transform: translateX(50%);
    }
      
}

/*FAQ PAGE*/

.faq-put{
    width: 100%;
    background: #0202028e;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
  }
  
  .QnA{
    width: 400px;
    margin-top: 20px;
    border: #075cfa 4px double;
    border-radius: 15px;
    padding: 10px;
    font-size: 18px;
  }
  
  @media(max-width: 700px){
    .QnA{
      width: 80%;
      margin: 3%;
    }
}
  
.question{
    border: #0c0b0b 3px solid;
    padding: 10px;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    border-right: none;
    border-left: none;
}

.forfaq{
    margin: 55px auto;
}

/*-----------------------------------*\
  #CLIENTS
\*-----------------------------------*/
.of-about{
    padding: 0 5px;
}
.clients-box{
    width: 100%;
    margin-top: 50px;
    padding: 10px;
    padding-bottom: 30px;
    border-radius: 20px;
    position: relative;
    background: #000;
  }
  
 .ccxbody{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #1425de51;
    border-radius: 10px;
 }

 .containerabtx{
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    width: 80vw;
    max-width: 720px;
    height: 230px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.containerabtx .slider{
    display: flex;
    align-items: center;
    gap: 30px;
    width: 86%;
    margin: auto;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

.containerabtx .slider p{
    color: #888;
    text-align: justify;
    font-size: 15px;
}

.containerabtx .slider img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.containerabtx .slider h3{
    color: #333;
    font-size: 15px;
    margin-bottom: 2px;
    text-align: center;
}

.containerabtx .slider h6{
    color: #777;
    font-weight: 500;
    text-align: center;
    font-size: 12px;
}

.containerabtx button{
    font-size: 28px;
    height: 48px;
    width: 48px;
    background: #fff;
    border: none;
    position: absolute;
    color: #512da8;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.containerabtx button#next{
    right: -26px;
}

.containerabtx button#prev{
    left: -26px;
}

@media screen and (max-width: 720px) {
    
    .containerabtx{
        height: 70%;
    }

    .containerabtx .slider{
        flex-direction: column;
    }

    .containerabtx .slider p{
        font-size: 13px;
    }

}

/*Registration PAGE*/

.log-put{
    background: #11111198;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
  }
  
  .log-main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    z-index: 10;
    padding-bottom: 100px;
  }
  
  .log-cont{
    width: 420px;
    background: transparent;
    border: #d6cfcf 2px solid;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(0, 0, 0);
    border-radius: 10px;
    padding: 30px 40px;
    margin-top: 100px;
  }
  
  .log-cont h1{
    font-size: 36px;
    text-align: center;
  }
  
  .log-cont .log-input{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
  }
  
  .log-input input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid #ffffff81;
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
  }
  
  .log-input input::placeholder{
    color: #fff;
  }
  
  .log-input i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }
  
  
  #snh{
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
  }
  
  .log-cont .remember-password{
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: -15px 0 15px;
  }
  
  .remember-password label input{
    accent-color: #fff;
    margin: 5px;
  }
  
  #sex{
    margin-top: 15px;
  }
  
  #sex span{
    font-size: 17px;
    font-weight: 700;
    
  }
  
  .remember-password a{
    color: #fff;
    text-decoration: none;
  }
  
  .remember-password a:hover{
    text-decoration: underline;
  }
  
  .log-cont .btn{
    width: 100%;
    height: 45px;
    color: #111111;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 0 10px #111111ee;
    font-size: 18px;
    font-weight: 700;
  }
  
  .log-cont .register-link{
    font-size: 15px;
    margin: 20px 0 15px;
    text-align: center;
  }
  
  .register-link p a{
    text-decoration: none;
    color: #fff;
    font-weight: 900;
  }
  
  .register-link p a:hover{
    text-decoration: underline;
  }
  
  .infomay{
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    margin-top: -70px;
  }
  
  .log-input textarea{
    width: 90%;
    height: 70px;
    background: transparent;
    border-radius: 10px;
    color: #fff;
    outline: none;
    font-size: 16px;
    padding: 10px;
    resize: none;
  }
  
  .log-input select{
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid #ffffff81;
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 10px;
  }
  
  .log-input select option{
    color: #0c0b0b;
  }
  
  ::-webkit-scrollbar{
    width: 10px;
  }
  
  .log-input textarea::placeholder{
    color: #fff;
    text-align: center;
    margin-top: b;
  }
  
  .cptch{
    background: #08ad03;
    color: #ffffff;
    position: absolute;
    left: 30%;
    top: -10px;
    padding: 3px 25px;
    font-size: 13px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/*DEPOSIT AND WITHDRAWAL PAGE*/
.section-title{
    margin: 20px 0;
    text-align: center;
}
.deposit-box{
    padding: 5px;
    display: flex;
    justify-content: center;
    
  }

  .copyaddress{
    background: #016bf5;
    color: #edeffd;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    outline: none;
    cursor: pointer;
    margin-top: -20px;
  }
  
  .form-container{
    width: 600px;
    border: #01edf5 3px solid;
    padding: 5px;
    margin: auto;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
  }
  
  .forplanx{
    margin: 20px 0;
    display: flex;
    justify-content: center;
  }
  
  .form-container form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
  }
  
  .withdrawalxx-mthd{
    background: #016bf5;
    width: 90%;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    border-radius: 5px;
  }
  
  .withdrawalxx-detxxx{
    display: none;
  }
  
  #pmethodxxx{
    margin: 40px 0;
  }
  
  #theaddress{
    width: 100%;
    background: #003cf1;
    color: #e6ff03;
    font-size: 15px;
  }
  
  #methodz{
    padding: 10px 15px;
    width: 90%;
    background: #016bf5;
    font-size: 16px;
    outline: none;
    border-radius: 10px;
  }
  
  #methodz option{
    background: #38a95a;
    font-size: 20px;
  
  }
  
  .form-container form input{
    width: 90%;
    background: #d3e3e3;
    padding: 10px;
    margin: 15px 0;
    font-size: 20px;
    border-radius: 7px;
    color: #0d0d0d;
    outline: none;
    border: 2px #0d0d0d solid;
  }
  
  #smxbtn{
    margin: auto;
    color: #f7f9ff;
    font-size: 19px;
    background: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px 35px;
    box-shadow: #fff 2px 3px 5px;
    cursor: pointer;
  }
  
  @media(max-width: 500px){
    .form-container{
      width: 100%;
    
    }
  
    
  }
  
  /* review page*/
  
  .rev-container{
    width: 100%;
   
  }
  
  .rev-row{
    border: #daa520 3px solid;
    padding: 10px;
    border-radius: 7px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .rev-row span{
    background: #414652;
    padding: 10px 15px;
    border-radius: 5px;
    width: auto;
    box-shadow: #ededed 2px 3px;
  }

  /*INVESTMENT HISTORY*/

  .history-headxxx{
    width: 100%;
   
}


.history-box{
    
    width: 100%;
    
    
}

.history-box a{
    margin-bottom: 30px;
}

.historyxx-container{
    overflow: auto; 
    
}

.history-box h1{
    margin-bottom: 0.8rem;
    text-align: center;
}

.history-box table{
    background-color: var(--color-white);
    width: 100%;
    padding: var(--card-padding);
    text-align: center;
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    transition: all 0.3s ease;
    
}

.history-box table:hover{
    box-shadow: none;
}

main table tbody td{
    height: 2.8rem;
    border-bottom: 1px solid var(--color-light);
    color: var(--color-dark-variant);
}

main table tbody tr:last-child td{
    border: none;
}

.history-box a{
    text-align: center;
    display: block;
    margin: 1rem auto;
    color: var(--color-primary);
}

.invhistorysidex{
    margin-top: 60px;
    padding: 10px;
}

/**/

/*More Page*/

.options-box{
    width: 100%;
    padding: 10px;
  }
  
  .options-container{
    margin: auto;
    width: 95%;
    display: flex;
    flex-direction: column;
    
  }
  
  .options-container a{
   text-decoration: none;
   font-size: 15px;
    color: #e7e7e7;
  }
  
  .profile-box{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .profile-box .profile-container{
    background: #3d3f41;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 10px;
    margin: 30px 0;
    box-shadow: #fcfdfd 2px 3px 10px;
  }
  
  .profile-box .profile-container .profile-pic{
    width: 120px;
  }
  .profile-box .profile-container .profile-pic img{
    width: 100%;
  }
  
  .user-details{
    width: 100%;
    margin: 20px 0;
  }
  
  .user-details .user-details-row{
    border: #ffbb00 2px solid;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 5px;
  }
  
  .user-details .user-details-row p{
   font-size: 15px;
   color: #01edf5;
  }
  
  .user-details .user-details-row span{
    font-size: 15px;
    color: #ffbb00;
    font-style: italic;
  }
  
  
  
  
  
  
  .option-row{
    border: #01edf5 5px double;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-radius: 10px;
  }
  
  
  .logout-container{
    display: flex;
    margin-bottom: 20px;
  }

  /*POP UP STYLE*/
  .popup-container{
    
    width: 100%;
	height: 100vh;
	background: #0b0b0be8;
	display: flex;
	align-items: center;
	justify-content: center;
    position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 2000;
    
  }

  .popup{
    width: 500px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: visible;
    transition: transform 0.4s, top 0.4s;
  }

  .close-popup,
  .popup-container-colose{
    visibility: hidden;
    top: 0;
    transform: translate(-50%,-50%) scale(0.1);
  }

  .popup-container-colose{
    display: none;
  }

  .popup img{
    width: 100px;
    margin-top: -30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .popup h1{
    font-size: 40px;
    font-weight: 500;
    margin: 30px 0 10px;
  }

  .popup button{
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background: #358916;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  @media(max-width:700px){
    .popup{
      width: 90%;
    }
 }

