/* normilize */
@font-face {
    font-family: Raleway;
    src: url("https://quotextrading.co.in/fonts/Raleway-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Raleway;
    src: url("https://quotextrading.co.in/fonts/Raleway-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: Raleway;
    src: url("https://quotextrading.co.in/fonts/Raleway-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: Raleway;
    src: url("https://quotextrading.co.in/fonts/Raleway-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: Raleway;
    src: url("https://quotextrading.co.in/fonts/Raleway-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  ul, ol {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img, video {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button {
    all: unset;
    cursor: pointer;
    box-sizing: border-box;
  }
  
  input, textarea, button, select {
    font: inherit;
    border: none;
    outline: none;
  }
  
  body {
    font-family: "Raleway", serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #1b1e2d;
    color: #a6a6a6;
    box-sizing: border-box;
  }
 
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #ffffff;
  }

  /* normilize end */

@media (max-width: 480px) {
  header{
    display: flex;
    align-items: start;
    justify-content: space-around;
    border-bottom: 1px solid #ffffff;
    padding: 40px 20px;
    position: fixed;
    width: 100%;
    background-color: #1b1e2dee;
    z-index: 100;
  }

  .header-nav {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
  }

 
  .burger-menu {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 20;
  }
  
  .burger-menu span {
    display: block;
    height: 4px;
    width: 100%;
    background: #f4f4f6;
    margin: 6px 0;
    transition: 0.3s;
  }
  
  .menu-toggle:checked + .burger-menu span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  
  .menu-toggle:checked + .burger-menu span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked + .burger-menu span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  
  .menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #2f374b;
    color: #fff;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: left 0.4s ease-in-out;
  }
  
  .menu-toggle:checked ~ .menu {
    left: 0;
  }
  
  .menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
    transition: 0.3s;
  }
  
  .menu a:hover {
    background: rgba(245, 245, 245, 0.2);
    border-radius: 5px;
  }
  
  .menu-toggle {
    display: none;
  }

  /*  */

  .header-nav img{
    width: 140px;
    height: auto;
  }

  .header-nav a{
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
  }

  .header-nav a:hover{
    color: #00bf63;
  }

  .header-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.btn-log{
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    background-color: #737373;
    border-radius: 10px;
    padding: 8px 20px;
    margin: 0px;
    border: 2px solid #737373;
}

.btn-log:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.btn-sign{
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    background-color: #00bf63;
    border-radius: 10px;
    padding: 8px 20px;
    border: 2px solid #00bf63;
}

.btn-sign:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.translate-box{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.translate-img{
  width: 30px;
  height: auto;
  margin: 0 20px;
}


.header-laptop{
  display: none;
}

.content-broker-laptop{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 100px 10px 10px 10px;
}
    .content-box {
        display: flex;
        flex-direction: column;
        padding: 100px 10px 10px 10px;
    }

.broker-img{
  display: none;
}

.broker-money{
  display: none;
}

.broker-info{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.broker-title{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 10px auto;
    padding: 0;
    color: #fff;
}

.broker-txt{
    font-size: 18px;
    font-weight: 500;
    color: #a6a6a6;
    text-align: center;
    padding: 0;
}


.broker-btn{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin: 20px auto;
    width: 100%;
}

.btn-register{
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    background-color: #00bf63;
    border-radius: 10px;
    padding: 8px 10px;
    border: 2px solid #00bf63;  
    text-align: center;
    width: 90%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.btn-register:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.btn-demo{
    color: #000;
    font-size: 20px;
    font-weight: 800;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 8px 20px;
    border: 2px solid #ffffff;
    width: 90%;
    margin: 10px auto;
    text-align: center;
}

.btn-demo:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}


.advantages-section{
    width: 90%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2f374b;
    border-radius: 30px;
    padding-bottom: 50px;
}

.advantages-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-evenly;
    padding: 10px 10px;
}

.advantages-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px auto;
    width: 100%;
}

.advantages-img{
    width: 100px;
    height: auto;
}

.advantages-title{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 6px auto;
}

.advantages-txt{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.advantages-section hr{
    outline: none;
    width: 100%;
    height: 1px;
    margin: 40px auto;
}



.prognose-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 10px;
}

.prognose-graphic-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.graphic-img-block{
    width: 100%;
    margin: 0 10px 0 0;
}


.graphic-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: #2f374b;
    border-radius: 20px;
    padding: 10px 6px;
    margin: 40px auto;
}

.graphic-img{
    width: 50%;
    height: auto;
    margin: 10px auto;
}

.graphic-info hr{
    width: 100%;
}

.graphic-info .broker-title{
    text-align: center;
    margin: 10px auto;
    padding: 0 6px;
    width: 100%;
    font-size: 20px;
}

.graphic-up{
    width: 90%;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-color: #00bf63;
    padding: 8px 10px;
    border-radius: 20px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #00bf63;
}

.graphic-up:hover{
    color: #00bf63;
    background-color: transparent;
    border: 3px solid #00bf63;
}



.graphic-up i{
    font-size: 26px;
}


.graphic-down{
    width: 90%;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-color: #ff5757;
    padding: 8px 10px;
    border-radius: 20px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #ff5757;
}


.graphic-down:hover{
    color: #ff5757;
    background-color: transparent;
}

.application-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: url(https://quotextrading.co.in/img/application-layout.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    border-bottom: 1px solid #fff;
    padding: 20px 10px;
}

.app-img img{
    width: 300px;
    height: auto;
}

.app-img-laptop{
  display: none;
}

.app-img-mobile{
  width: 100%;
}

.app-ifo{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    width: 100%;
    margin: 0 auto;
}


.app-title{
    width: 100%;
    font-size: 24px;
    font-weight: 800;
    padding: 0;
    text-align: center;
}

.app-txt{
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #a6a6a6;
    text-align: center;
    margin: 20px 0;
}


.app-btn{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    background-color: #2f374b;
    border-radius: 30px;
    padding: 12px 8px;
    margin: 10px 0;
    border: 4px solid #2f374b;

}

.app-btn:hover{
    background-color: #00bf63;
    border: 4px solid #00bf63;

}


.qoutex-bonus-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: url(https://quotextrading.co.in/img/application-layout.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.bonus-plus{
    background-image: url(https://quotextrading.co.in/img/indian-layout.png);
    background-repeat: no-repeat;
    background-size: calc(80%);
    background-position: right;
    align-self: flex-end;
    overflow: hidden;
}

.bonus-dep{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    background-color: #2477ce;
    padding: 8px 10px;
    border-radius: 10px;
    display: inline-block;
    margin: 15% 0% 0% 70%;
}

.bonus-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 10px 16px;
    margin: 10px auto;
    width: 100%;
}

.qoutex-title{
    font-size: 20px;
    font-weight: 600;
    color: #00bf63;
    text-align: center  ;

}

.bonus-info h2{
    padding: 0;
    width: 100%;
    font-size: 22px;
    text-align: center  ;
}

.bonus-txt{
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
    color: #fff;
    text-wrap: wrap;
    width: 90%;
}

.features-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-evenly;
    padding: 0 20px;
}

.features-item{
    width: 100%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-icon{
    font-size: 40px;
}

.testimonial-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 10px auto;
}

.testimonial-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 10px auto;
}

.testimonial-title{
    font-size: 22px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
}

.testimonial-img{
    display: none;
}

.testimonial-review{
    width: 90%;
    margin: 0 auto;
    background-color: #2f374b;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px 40px;
}

.testimonial-rate{
    width: 80px;
    height: auto;
}

.testimonial-txt{
    font-size: 16px;
    font-weight: 500;
    color: #a6a6a6;
    margin: 10px auto;
}

.testimonial-author{
    display: flex;
    align-items: start;
    justify-content: flex-start;
}

.testimonial-author img{
  width: 50px;
  height: auto;
}

.testimonial-author-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 10px 10px;
}


.testimonial-name{
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.testimonial-client-id{
    font-size: 14px;
    font-weight: 500;
    color: #a6a6a6;
}

.instruction-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    margin: 20px auto;
}

.instruction-section h2{
    padding: 0;
    width: 80%;
    margin: 6px auto;
    font-size: 24px;
}

.testimonial-title{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.instruction-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.instruction-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 90%;
    margin: 0 auto;
}

.instruction-img{
  width: 100px;
  height: auto;
}

.instruction-btn{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    background: linear-gradient(to right, #0097b2, #7ed957);
    border-radius: 30px;
    padding: 12px 10px;
    margin: 40px 0;
    text-align: center;
    border: 2px solid transparent;
}

.instruction-btn:hover{
    background: transparent;
    border: 2px solid #00bf63;
}


.trading-reason-section{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    border-top: 1px solid #fff;

}

.reason-title{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.reason-list{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

.reason-list li{
  width: 90%;
}


.faq-section{
    width: 100%;
    margin: 50px  auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-text{
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin: 10px auto;
    text-transform: uppercase;
}


.plus {
    position: absolute;
    left: 20px;
    top: 4px;
    z-index: 5;
    font-size: 34px;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    color: #fff;
  }

  .panel:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .panel {
    display: none;
  }

  .qa-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .qa-content-block{
    font-size: 18px;
    width: 100%;
    position: relative;
    margin: 20px 30px;
    padding: 10px 10px 10px 60px;
    display: block;
    border-radius: 20px;
    background:#2f374b;
  }

  .qa-answer{
    font-size: 16px;
    padding: 0px 8px;
    margin: 0 10px;
    height: 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    color: #fff;
  }

  .panel:checked ~ .qa-answer{
    height: auto;
    opacity: 1;
    padding: 8px;
  }
  
  .qa-title{
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }

  .panel:checked ~ .qa-title{
    color: #00bf63;
  }

  .innovation-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 30px auto;
  }

  .innovation-img{
    width: 100%;
    height: auto;
  }

  .innovation-title{
    font-size: 26px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #a6a6a6;
    width: 90%;
    text-align: center;
    margin: -20px 0 30px 0;
  }

  .innovation-btn-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 10px auto;
  }

  .innovation-btn-block a{
    width: 100%;
    margin: 10px auto;
  }

  .graphic-up-arrow{
    width: 30px;
    height: auto;
  }
  
  .graphic-down-arrow{
    width: 30px;
    height: auto;
    transform: rotate(180deg);
  }
  
  .app-logo{
    width: 30px;
    height: auto;
  }
  
  .advantage-arrow{
    width: 30px;
    height: auto;
    margin-left: 20px;
    transform: rotate(90deg);
  }


  footer{
    display: flex;
    flex-direction: column;
    align-items: start;
  }
.footer-content{
    width: 80%;
    margin: 30px auto;

}
  .footer-logo{
    width: 120px;
    height: auto;
    align-self: flex-start;
  }

  .footer-navigation{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
  }

  .footer-item{
    display: flex;
    flex-direction: column;
    justify-items: start;
    align-self: start;
    margin: 10px 0;
  }

.footer-nav-title{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.footer-nav-item{
    font-size: 16px;
    font-weight: 500;
}

.footer-nav-item:hover{
    color: #fff;
}


  footer hr{
    width: 100%;
    height: 1px;
  }

  .footer-info{
    margin: 10px auto;
  }

  .footer-info-copy{
    margin-top: 30px;
  }

  .scrolltop{
    font-size: 26px;
    font-weight: 400;
    padding: 8px;
    border: 1px solid #0097b2;
    border-radius: 100%;
    color: #0097b2;
    position: fixed;
    right: 1rem;
    bottom: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 2s;
    visibility: hidden;
  }

  .show-scroll{
    visibility: visible;
    transition: margin-bottom 4s ease-in-out 1s;

}
  }
  

  @media (min-width: 481px) and (max-width: 768px) {
     

    header{
      display: flex;
      align-items: start;
      justify-content: space-around;
      border-bottom: 1px solid #ffffff;
      padding: 40px 20px;
      position: fixed;
      width: 100%;
      background-color: #1b1e2dee;
      z-index: 100;
    }
  
    .header-nav {
      position: absolute;
      left: 50%;
      top: 25%;
      transform: translateX(-50%);
    }
  
   
    .burger-menu {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 30px;
      cursor: pointer;
      z-index: 20;
    }
    
    .burger-menu span {
      display: block;
      height: 4px;
      width: 100%;
      background: #f4f4f6;
      margin: 6px 0;
      transition: 0.3s;
    }
    
    .menu-toggle:checked + .burger-menu span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }
    
    .menu-toggle:checked + .burger-menu span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle:checked + .burger-menu span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
    
    .menu {
      position: fixed;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100vh;
      background: #2f374b;
      color: #fff;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      transition: left 0.4s ease-in-out;
    }
    
    .menu-toggle:checked ~ .menu {
      left: 0;
    }
    
    .menu a {
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      font-weight: 600;
      padding: 10px;
      transition: 0.3s;
    }
    
    .menu a:hover {
      background: rgba(245, 245, 245, 0.2);
      border-radius: 5px;
    }
    
    .menu-toggle {
      display: none;
    }
  
    /*  */
  
    .quotex-logo-laptop{
      width: 140px;
      height: auto;
    }
  
    .header-nav a{
      color: #ffffff;
      font-size: 18px;
      font-weight: 800;
    }
  
    .header-nav a:hover{
      color: #00bf63;
    }
  
    .header-btn{
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  
  .btn-log{
      color: #ffffff;
      font-size: 18px;
      font-weight: 800;
      background-color: #737373;
      border-radius: 10px;
      padding: 8px 20px;
      margin: 0px;
      border: 2px solid #737373;
  }
  
  .btn-log:hover{
      background-color: transparent;
      border: 2px solid #00bf63;
      color: #00bf63;
  }
  
  .btn-sign{
      color: #ffffff;
      font-size: 18px;
      font-weight: 800;
      background-color: #00bf63;
      border-radius: 10px;
      padding: 8px 20px;
      border: 2px solid #00bf63;
  }
  
  .btn-sign:hover{
      background-color: transparent;
      border: 2px solid #00bf63;
      color: #00bf63;
  }

  .translate-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .translate-img{
    width: 30px;
    height: auto;
    margin: 0 20px;
  }
  
 
.header-laptop{
  display: none;
}

.content-broker-laptop{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 100px 10px 10px 10px;
} 

    .content-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        padding: 100px 10px 10px 10px;
    }

.broker-img{
  display: none;
}

.broker-money{
  display: none;
}

.broker-info{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.broker-title{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 10px auto;
    padding: 0;
    color: #fff;
}

.broker-txt{
    font-size: 18px;
    font-weight: 500;
    color: #a6a6a6;
    text-align: center;
    padding: 0;
}


.broker-btn{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin: 20px auto;
    width: 100%;
}

.btn-register{
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    background-color: #00bf63;
    border-radius: 10px;
    padding: 8px 10px;
    border: 2px solid #00bf63;  
    text-align: center;
    width: 60%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.btn-register:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.btn-demo{
    color: #000;
    font-size: 20px;
    font-weight: 800;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 8px 20px;
    border: 2px solid #ffffff;
    width: 80%;
    margin: 10px auto;
    text-align: center;
}

.btn-demo:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}


.broker-money{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 20px auto;
}

.money-txt{
    font-size: 26px;
    font-weight: 800;
    color: transparent; 
    -webkit-text-stroke: 2px #a6a6a6;
}

.advantages-section{
    width: 90%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2f374b;
    border-radius: 30px;
    padding-bottom: 50px;
}

.advantages-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-evenly;
    padding: 10px 20px;
}

.advantages-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px auto;
    width: 40%;
}

.advantages-img{
    width: 100px;
    height: auto;
}

.advantages-title{
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin: 6px auto;
}

.advantages-txt{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.advantages-section hr{
    outline: none;
    width: 100%;
    height: 1px;
    margin: 40px auto;
}


.prognose-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 40px 20px;
}

.prognose-graphic-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.graphic-img-block{
    width: 100%;
    margin: 0 10px 0 0;
}


.graphic-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: #2f374b;
    border-radius: 30px;
    padding: 10px 6px;
}

.graphic-img{
    width: 120px;
    height: auto;
    margin: 10px auto;
}

.graphic-info hr{
    width: 100%;
}

.graphic-info .broker-title{
    text-align: center;
    margin: 10px auto;
    padding: 0 6px;
    width: 100%;
    font-size: 22px;
}

.graphic-up{
    width: 90%;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-color: #00bf63;
    padding: 8px 10px;
    border-radius: 20px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #00bf63;
}

.graphic-up:hover{
    color: #00bf63;
    background-color: transparent;
    border: 3px solid #00bf63;
}



.graphic-down{
    width: 90%;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-color: #ff5757;
    padding: 8px 10px;
    border-radius: 20px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #ff5757;
}


.graphic-down:hover{
    color: #ff5757;
    background-color: transparent;
}

.application-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: url(https://quotextrading.co.in/img/application-layout.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    border-bottom: 1px solid #fff;
    margin: 0 auto;
}

.app-img-laptop {
  display: none;
}

.app-img-mobile{
  width: 300px;
  height: auto;
  margin: 0 auto;
}


.app-ifo{
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 0 10px;
    width: 100%;
  margin: 0 auto;

}


.app-title{
    width: 80%;
    font-size: 26px;
    font-weight: 800;
    padding: 0;
    text-align: center;
  margin: 0 auto;

}

.app-txt{
    width: 80%;
    font-size: 20px;
    font-weight: 500;
    color: #a6a6a6;
    text-align: center;
    margin: 0 auto;
}


.app-btn{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 80%;
    background-color: #2f374b;
    border-radius: 30px;
    padding: 12px 8px;
    margin: 10px auto;
    border: 4px solid #2f374b;

}
.app-btn:hover{
    background-color: #00bf63;
    border: 4px solid #00bf63;

}


.qoutex-bonus-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: url(https://quotextrading.co.in/img/application-layout.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.bonus-plus{
    background-image: url(https://quotextrading.co.in/img/indian-layout.png);
    background-repeat: no-repeat;
    background-size: calc(80%);
    background-position: right;
    align-self: flex-end;
}

.bonus-dep{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    background-color: #2477ce;
    padding: 8px 10px;
    border-radius: 10px;
    display: inline-block;
    margin: 15% 0% 0% 70%;
}

.bonus-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
    margin: 10px 10px 0 50px;
    width: 100%;
}

.qoutex-title{
    font-size: 24px;
    font-weight: 600;
    color: #00bf63;
}

.bonus-ifo h2{
    padding: 10px 40px 0 0;
    width: 100%;
    font-size: 28px;
}

.bonus-txt{
    font-size: 26px;
    font-weight: 500;
    margin: 10px 0;
    color: #fff;
    text-wrap: wrap;
    width: 90%;
    text-align: center;
}

.features-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-evenly;
    padding: 0 40px;
}

.features-item{
    width: 80%;
    margin: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-icon{
    font-size: 50px;
}

.testimonial-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 50px auto;
}

.testimonial-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.testimonial-title{
    font-size: 26px;
    width: 50%;
}

.testimonial-img{
    width: 180px;
    height: auto;
}

.testimonial-review{
    width: 90%;
    margin: 0 auto;
    background-color: #2f374b;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px 40px;
}

.testimonial-rate{
    width: 140px;
    height: auto;
}

.testimonial-txt{
    font-size: 18px;
    font-weight: 500;
    color: #a6a6a6;
    margin: 20px auto;
}

.testimonial-author{
    display: flex;
    align-items: start;
    justify-content: flex-start;
}

.testimonial-author-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 10px 20px;
}


.testimonial-name{
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.testimonial-client-id{
    font-size: 16px;
    font-weight: 500;
    color: #a6a6a6;
}

.instruction-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.instruction-section h2{
    padding: 0;
    width: 80%;
    margin: 10px auto;
}

.testimonial-title{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.instruction-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.instruction-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 60%;
    margin: 0 auto;
}

.instruction-img{
  width: 160px;
  height: auto;
}

.instruction-btn{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    background: linear-gradient(to right, #0097b2, #7ed957);
    border-radius: 30px;
    padding: 12px 10px;
    margin: 40px 0;
    text-align: center;
    border: 2px solid transparent;
}

.instruction-btn:hover{
    background: transparent;
    border: 2px solid #00bf63;
}


.trading-reason-section{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    border-top: 1px solid #fff;

}

.reason-title{
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.reason-list{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.reason-list li{
  width: 40%;
}


.faq-section{
    width: 100%;
    margin: 50px  auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-text{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 20px auto;
    text-transform: uppercase;
}


.plus {
    position: absolute;
    left: 20px;
    top: 4px;
    z-index: 5;
    font-size: 42px;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    color: #fff;
  }

  .panel:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .panel {
    display: none;
  }

  .qa-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .qa-content-block{
    font-size: 20px;
    width: 80%;
    position: relative;
    margin: 20px 30px;
    padding: 10px 10px 10px 60px;
    display: block;
    border-radius: 30px;
    background:#2f374b;
  }

  .qa-answer{
    font-size: 18px;
    padding: 0px 14px;
    margin: 0 40px;
    height: 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    color: #fff;
  }

  .panel:checked ~ .qa-answer{
    height: auto;
    opacity: 1;
    padding: 14px;
  }
  
  .qa-title{
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
  }

  .panel:checked ~ .qa-title{
    color: #00bf63;
  }

  .innovation-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 30px auto;
  }

  .innovation-img{
    width: 100%;
    height: auto;
  }

  .innovation-title{
    font-size: 40px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #a6a6a6;
    width: 80%;
    text-align: center;
    margin: -50px 0 30px 0;
  }

  .innovation-btn-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 30px auto;
  }
  .graphic-up-arrow{
    width: 40px;
    height: auto;
  }
  
  .graphic-down-arrow{
    width: 40px;
    height: auto;
    transform: rotate(180deg);
  }
  
  .app-logo{
    width: 40px;
    height: auto;
  }
  
  .advantage-arrow{
    width: 40px;
    height: auto;
    margin-left: 20px;
    transform: rotate(90deg);
  }


  footer{
    display: flex;
    flex-direction: column;
    align-items: start;
  }
.footer-content{
    width: 80%;
    margin: 30px auto;

}
  .footer-logo{
    width: 120px;
    height: auto;
    align-self: flex-start;
  }

  .footer-navigation{
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
  }

  .footer-item{
    display: flex;
    flex-direction: column;
    justify-items: start;
    align-self: start;
    margin: 20px 0;
  }

.footer-nav-title{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.footer-nav-item{
    font-size: 18px;
    font-weight: 500;
}

.footer-nav-item:hover{
    color: #fff;
}


  footer hr{
    width: 100%;
    height: 1px;
  }

  .footer-info{
    margin: 10px auto;
  }

  .footer-info-copy{
    margin-top: 30px;
  }

  .scrolltop{
    font-size: 26px;
    font-weight: 400;
    padding: 8px;
    border: 1px solid #0097b2;
    border-radius: 100%;
    color: #0097b2;
    position: fixed;
    right: 1rem;
    bottom: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 2s;
    visibility: hidden;
  }

  .show-scroll{
    visibility: visible;
    transition: margin-bottom 4s ease-in-out 1s;

    
}
  }


  
  @media (min-width: 769px) and (max-width: 1024px) {
    
    header{
      border-bottom: 1px solid #ffffff;
      padding: 20px 20px;
      position: fixed;
      width: 100%;
      background-color: #1b1e2de8;
      z-index: 100;
    }
  
      
    .header-mobile{
      display: none;
    }
  
    .header-laptop{
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  

  .header-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
  }

  .quotex-logo-laptop{
    width: 140px;
    height: auto;
  }

  .header-nav a{
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
  }

  .header-nav a:hover{
    color: #00bf63;
  }

  .header-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.btn-log{
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    background-color: #737373;
    border-radius: 10px;
    padding: 8px 20px;
    margin-right: 30px;
    border: 2px solid #737373;
}

.btn-log:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.btn-sign{
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    background-color: #00bf63;
    border-radius: 10px;
    padding: 8px 20px;
    border: 2px solid #00bf63;
}

.btn-sign:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.translate-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.translate-img{
  width: 30px;
  height: auto;
  margin: 0 20px;
}

.content-broker-laptop{
    display: flex;
    flex-direction: column;
    background-image: url(https://quotextrading.co.in/img/laptop-layer.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 120px;
}

    .content-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        padding: 120px 0px 0px 0px;
    }

.broker-content-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

.broker-img img{
    width: 300px;
    height: auto;
}

.broker-info{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 0px 20px;
    width: 60%;
}

.broker-title{
    font-size: 26px;
    font-weight: 700;
    text-align: start;
    margin: 20px auto;
    padding: 0 30px 0 0;
    color: #fff;
}

.broker-txt{
    font-size: 20px;
    font-weight: 500;
    color: #a6a6a6;
    text-align: start;
    padding: 0 10px 0 0;
}


.broker-btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px auto;
}

.btn-register{
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    background-color: #00bf63;
    border-radius: 10px;
    padding: 8px 20px;
    border: 2px solid #00bf63;  
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-register:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.btn-demo{
    color: #000;
    font-size: 18px;
    font-weight: 800;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 8px 20px;
    border: 2px solid #ffffff;
    margin: 0 0 0 40px;
}

.btn-demo:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.broker-money{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 20px auto;
}

.money-txt{
    font-size: 26px;
    font-weight: 800;
    color: transparent; 
    -webkit-text-stroke: 2px #a6a6a6;
}

.advantages-section{
    width: 90%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2f374b;
    border-radius: 30px;
    padding-bottom: 50px;
}

.advantages-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-evenly;
    padding: 10px 20px;
}

.advantages-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px auto;
    width: 40%;
}

.advantages-img{
    width: 100px;
    height: auto;
}

.advantages-title{
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin: 6px auto;
}

.advantages-txt{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.advantages-section hr{
    outline: none;
    width: 100%;
    height: 1px;
    margin: 40px auto;
}


.prognose-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 40px 20px;
}

.prognose-graphic-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.graphic-img-block{
    width: 50%;
    margin: 0 10px 0 0;
}


.graphic-info{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: #2f374b;
    border-radius: 30px;
    padding: 10px 6px;
}

.graphic-img{
    width: 120px;
    height: auto;
    margin: 10px auto;
}

.graphic-info hr{
    width: 100%;
}

.graphic-info .broker-title{
    text-align: center;
    margin: 10px auto;
    padding: 0 6px;
    width: 100%;
    font-size: 22px;
}

.graphic-up{
    width: 90%;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    background-color: #00bf63;
    padding: 8px 10px;
    border-radius: 20px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #00bf63;
}

.graphic-up:hover{
    color: #00bf63;
    background-color: transparent;
    border: 3px solid #00bf63;
}


.graphic-down{
    width: 90%;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    background-color: #ff5757;
    padding: 8px 10px;
    border-radius: 20px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #ff5757;
}


.graphic-down:hover{
    color: #ff5757;
    background-color: transparent;
}

.application-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url(https://quotextrading.co.in/img/application-layout.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    border-bottom: 1px solid #fff;
}

.app-img img{
    width: 300px;
    height: auto;
}

.app-img{
  width: 60%;
}

.app-img-mobile{
  display: none;
}

.app-ifo{
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 0 10px;
    width: 100%;
}


.app-title{
    width: 80%;
    font-size: 28px;
    font-weight: 800;
    padding: 0;
}

.app-txt{
    width: 80%;
    font-size: 20px;
    font-weight: 500;
    color: #a6a6a6;
    text-align: start;
    margin: 20px 0;
}


.app-btn{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 80%;
    background-color: #2f374b;
    border-radius: 30px;
    padding: 12px 8px;
    margin: 10px 0;
    border: 4px solid #2f374b;

}

.app-btn:hover{
    background-color: #00bf63;
    border: 4px solid #00bf63;

}


.qoutex-bonus-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url(https://quotextrading.co.in/img/application-layout.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.bonus-plus{
    background-image: url(https://quotextrading.co.in/img/indian-layout.png);
    background-repeat: no-repeat;
    background-size: calc(80%);
    background-position: right;
    align-self: flex-end;
}

.bonus-dep{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    background-color: #2477ce;
    padding: 8px 10px;
    border-radius: 10px;
    display: inline-block;
    margin: 15% 0% 0% 70%;
}

.bonus-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 10px 0px;
    margin: 10px 10px 0 50px;
    width: 100%;
}

.qoutex-title{
    font-size: 24px;
    font-weight: 600;
    color: #00bf63;
}

.bonus-ifo h2{
    padding: 10px 40px 0 0;
    width: 100%;
    font-size: 28px;
}

.bonus-txt{
    font-size: 26px;
    font-weight: 500;
    margin: 10px 0;
    color: #fff;
    text-wrap: wrap;
    width: 90%;
}

.features-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-evenly;
    padding: 0 40px;
}

.features-item{
    width: 40%;
    margin: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-icon{
    font-size: 50px;
}

.testimonial-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 50px auto;
}

.testimonial-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.testimonial-title{
    font-size: 26px;
    width: 50%;
}

.testimonial-img{
    width: 180px;
    height: auto;
}

.testimonial-review{
    width: 90%;
    margin: 0 auto;
    background-color: #2f374b;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px 40px;
}

.testimonial-rate{
    width: 140px;
    height: auto;
}

.testimonial-txt{
    font-size: 18px;
    font-weight: 500;
    color: #a6a6a6;
    margin: 20px auto;
}

.testimonial-author{
    display: flex;
    align-items: start;
    justify-content: flex-start;
}

.testimonial-author-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 10px 20px;
}


.testimonial-name{
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.testimonial-client-id{
    font-size: 16px;
    font-weight: 500;
    color: #a6a6a6;
}

.instruction-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.instruction-section h2{
    padding: 0;
    width: 80%;
    margin: 10px auto;
}

.testimonial-title{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.instruction-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.instruction-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 60%;
    margin: 0 auto;
}

.instruction-img{
  width: 160px;
  height: auto;
}

.instruction-btn{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    background: linear-gradient(to right, #0097b2, #7ed957);
    border-radius: 30px;
    padding: 12px 10px;
    margin: 40px 0;
    text-align: center;
    border: 2px solid transparent;
}

.instruction-btn:hover{
    background: transparent;
    border: 2px solid #00bf63;
}


.trading-reason-section{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    border-top: 1px solid #fff;

}

.reason-title{
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.reason-list{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.reason-list li{
  width: 40%;
}


.faq-section{
    width: 100%;
    margin: 50px  auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-text{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 20px auto;
    text-transform: uppercase;
}


.plus {
    position: absolute;
    left: 20px;
    top: 4px;
    z-index: 5;
    font-size: 42px;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    color: #fff;
  }

  .panel:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .panel {
    display: none;
  }

  .qa-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .qa-content-block{
    font-size: 20px;
    width: 80%;
    position: relative;
    margin: 20px 30px;
    padding: 10px 10px 10px 60px;
    display: block;
    /* border: 1px solid #0097b2; */
    border-radius: 30px;
    background:#2f374b;
  }

  .qa-answer{
    font-size: 18px;
    padding: 0px 14px;
    margin: 0 40px;
    height: 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    color: #fff;
  }

  .panel:checked ~ .qa-answer{
    height: auto;
    opacity: 1;
    padding: 14px;
  }
  
  .qa-title{
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
  }

  .panel:checked ~ .qa-title{
    color: #00bf63;
  }

  .innovation-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 30px auto;
  }

  .innovation-img{
    width: 100%;
    height: auto;
  }

  .innovation-title{
    font-size: 40px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #a6a6a6;
    width: 80%;
    text-align: center;
    margin: -50px 0 30px 0;
  }

  .innovation-btn-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 30px auto;
  }

  .graphic-up-arrow{
    width: 40px;
    height: auto;
  }
  
  .graphic-down-arrow{
    width: 40px;
    height: auto;
    transform: rotate(180deg);
  }
  
  .app-logo{
    width: 40px;
    height: auto;
  }
  
  .advantage-arrow{
    width: 40px;
    height: auto;
    margin-left: 20px;
    transform: rotate(90deg);
  }


  footer{
    display: flex;
    flex-direction: column;
    align-items: start;
  }
.footer-content{
    width: 80%;
    margin: 30px auto;

}
  .footer-logo{
    width: 120px;
    height: auto;
    align-self: flex-start;
  }

  .footer-navigation{
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
  }

  .footer-item{
    display: flex;
    flex-direction: column;
    justify-items: start;
    align-self: start;
    margin: 20px 0;
  }

.footer-nav-title{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.footer-nav-item{
    font-size: 18px;
    font-weight: 500;
}

.footer-nav-item:hover{
    color: #fff;
}


  footer hr{
    width: 100%;
    height: 1px;
  }

  .footer-info{
    margin: 10px auto;
  }

  .footer-info-copy{
    margin-top: 30px;
  }

  .scrolltop{
    font-size: 26px;
    font-weight: 400;
    padding: 8px;
    border: 1px solid #0097b2;
    border-radius: 100%;
    color: #0097b2;
    position: fixed;
    right: 1rem;
    bottom: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 2s;
    visibility: hidden;
  }

  .show-scroll{
    visibility: visible;
    transition: margin-bottom 4s ease-in-out 1s;

}

  }
  
  /* 🔹 Стандартные ноутбуки и небольшие ПК (1025px – 1366px) */
  @media (min-width: 1025px) and (max-width: 1366px) {

    header{
      border-bottom: 1px solid #ffffff;
      padding: 20px 20px;
      position: fixed;
      width: 100%;
      background-color: #1b1e2de8;
      z-index: 100;
    }
  
      
    .header-mobile{
      display: none;
    }
  
    .header-laptop{
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  

  .header-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
  }

  .quotex-logo-laptop{
    width: 180px;
    height: auto;
  }

  .header-nav a{
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
  }

  .header-nav a:hover{
    color: #00bf63;
  }

  .header-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.btn-log{
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    background-color: #737373;
    border-radius: 10px;
    padding: 10px 26px;
    margin-right: 30px;
    border: 2px solid #737373;
}

.btn-log:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.btn-sign{
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    background-color: #00bf63;
    border-radius: 10px;
    padding: 10px 26px;
    border: 2px solid #00bf63;
}

.btn-sign:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.translate-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.translate-img{
  width: 40px;
  height: auto;
  margin: 0 20px;
}

.content-broker-laptop{
    display: flex;
    flex-direction: column;
    background-image: url(https://quotextrading.co.in/img/laptop-layer.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 120px;
}

    .content-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
        padding-top: 120px;
    }

.broker-content-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

.broker-img img{
    width: 800px;
    height: auto;
}

.broker-info{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 0px 80px;
}

.broker-title{
    font-size: 28px;
    font-weight: 700;
    text-align: start;
    margin: 40px auto;
    padding: 0 80px 0 0;
    color: #fff;
}

.broker-txt{
    font-size: 22px;
    font-weight: 500;
    color: #a6a6a6;
    text-align: start;
    padding: 0 4  0px 0 0;
}


.broker-btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px auto;
}

.btn-register{
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    background-color: #00bf63;
    border-radius: 10px;
    padding: 16px 20px;
    border: 2px solid #00bf63;  
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-register:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.btn-demo{
    color: #000;
    font-size: 20px;
    font-weight: 800;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 16px 20px;
    border: 2px solid #ffffff;
    margin: 0 0 0 60px;
}

.btn-demo:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.broker-money{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 20px auto;
}

.money-txt{
    font-size: 32px;
    font-weight: 800;
    color: transparent; 
    -webkit-text-stroke: 2px #a6a6a6;
}

.advantages-section{
    width: 90%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2f374b;
    border-radius: 30px;
    padding-bottom: 50px;
}

.advantages-list{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    padding: 20px 30px;
}

.advantages-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 18px;
    width: 40%;
}

.advantages-img{
    width: 140px;
    height: auto;
}

.advantages-title{
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 10px auto;
}

.advantages-txt{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.advantages-section hr{
    outline: none;
    width: 100%;
    height: 1px;
    margin: 40px auto;
}


.prognose-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 40px 20px;
}

.prognose-graphic-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.graphic-img-block{
    width: 60%;
    margin: 0 40px 0 0;
}


.graphic-info{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: #2f374b;
    border-radius: 30px;
    padding: 10px 0px;
}

.graphic-img{
    width: 200px;
    height: auto;
    margin: 10px auto;
}

.graphic-info hr{
    width: 100%;
}

.graphic-info .broker-title{
    text-align: center;
    margin: 10px auto;
    padding: 0 20px;
}

.graphic-up{
    width: 80%;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    background-color: #00bf63;
    padding: 10px 16px;
    border-radius: 20px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #00bf63;
}

.graphic-up:hover{
    color: #00bf63;
    background-color: transparent;
    border: 3px solid #00bf63;
}


.graphic-down{
    width: 80%;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    background-color: #ff5757;
    padding: 10px 16px;
    border-radius: 20px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #ff5757;
}


.graphic-down:hover{
    color: #ff5757;
    background-color: transparent;
}

.application-section{
    display: flex;
    align-items: start;
    justify-content: space-between;
    background-image: url(https://quotextrading.co.in/img/application-layout.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    border-bottom: 1px solid #fff;
}
.app-img{
  width: 50%;
}
.app-img img{
    width: 600px;
    height: auto;
}

.app-img-mobile{
  display: none;
}

.app-ifo{
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 0 20px;
}


.app-title{
    width: 80%;
    font-size: 36px;
    font-weight: 800;
    padding: 0;
}

.app-txt{
    width: 80%;
    font-size: 22px;
    font-weight: 500;
    color: #a6a6a6;
    text-align: start;
    margin: 10px 0;
}


.app-btn{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 66%;
    background-color: #2f374b;
    border-radius: 30px;
    padding: 16px 20px;
    margin: 10px 0;
    border: 4px solid #2f374b;

}

.app-btn:hover{
    background-color: #00bf63;
    border: 4px solid #00bf63;

}


.qoutex-bonus-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url(https://quotextrading.co.in/img/application-layout.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.bonus-plus{
    background-image: url(https://quotextrading.co.in/img/indian-layout.png);
    background-repeat: no-repeat;
    background-size: calc(80%);
    background-position: right  ;
}

.bonus-dep{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    background-color: #2477ce;
    padding: 10px 16px;
    border-radius: 10px;
    display: inline-block;
    margin: 15% 0% 0% 70%;
}

.bonus-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 10px 40px;
}

.qoutex-title{
    font-size: 28px;
    font-weight: 600;
    color: #00bf63;
}

.bonus-ifo h2{
    padding: 0;
    width: 100%;
}

.bonus-txt{
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0;
    color: #fff;
    text-wrap: wrap;
    width: 80%;
}

.features-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    padding: 0 40px;
}

.features-item{
    width: 28%;
    margin: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-icon{
    font-size: 50px;
}

.testimonial-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 50px auto;
}

.testimonial-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.testimonial-title{
    font-size: 30px;
    width: 50%;
}

.testimonial-img{
    width: 240px;
    height: auto;
}

.testimonial-review{
    width: 80%;
    margin: 0 auto;
    background-color: #2f374b;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 40px 60px;
}

.testimonial-rate{
    width: 200px;
    height: auto;
}

.testimonial-txt{
    font-size: 20px;
    font-weight: 500;
    color: #a6a6a6;
    margin: 20px auto;
}

.testimonial-author{
    display: flex;
    align-items: start;
    justify-content: flex-start;
}

.testimonial-author-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 10px 20px;
}


.testimonial-name{
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.testimonial-client-id{
    font-size: 20px;
    font-weight: 500;
    color: #a6a6a6;
}

.instruction-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.instruction-section h2{
    padding: 0;
    width: 80%;
    margin: 0 auto;
}

.testimonial-title{
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.instruction-list{
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
}

.instruction-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: 0;
    margin: 10px 20px;
}


.instruction-btn{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    background: linear-gradient(to right, #0097b2, #7ed957);
    border-radius: 30px;
    padding: 16px 12px;
    margin: 40px auto;
    text-align: center;
    border: 2px solid transparent;
}

.instruction-btn:hover{
    background: transparent;
    border: 2px solid #00bf63;
}


.trading-reason-section{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    border-top: 1px solid #fff;

}

.reason-title{
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.reason-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

.reason-list li{
  width: 40%;
}


.faq-section{
    width: 90%;
    margin: 50px  auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-text{
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin: 20px auto;
    text-transform: uppercase;
}


.plus {
    position: absolute;
    left: 20px;
    top: 4px;
    z-index: 5;
    font-size: 42px;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    color: #fff;
  }

  .panel:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .panel {
    display: none;
  }

  .qa-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .qa-content-block{
    font-size: 20px;
    width: 50%;
    position: relative;
    margin: 20px 30px;
    padding: 10px 10px 10px 60px;
    display: block;
    /* border: 1px solid #0097b2; */
    border-radius: 30px;
    background:#2f374b;
  }

  .qa-answer{
    font-size: 18px;
    padding: 0px 14px;
    margin: 0 40px;
    height: 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    color: #fff;
  }

  .panel:checked ~ .qa-answer{
    height: auto;
    opacity: 1;
    padding: 14px;
  }
  
  .qa-title{
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
  }

  .panel:checked ~ .qa-title{
    color: #00bf63;
  }

  .innovation-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 30px auto;
  }

  .innovation-img{
    width: 100%;
    height: auto;
  }

  .innovation-title{
    font-size: 60px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #a6a6a6;
    width: 70%;
    text-align: center;
    margin: -80px 0 30px 0;
  }

  .innovation-btn-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    margin: 50px auto;
  }

  .graphic-up-arrow{
    width: 40px;
    height: auto;
  }
  
  .graphic-down-arrow{
    width: 30px;
    height: auto;
    transform: rotate(180deg);
  }
  

  
  .app-logo{
    width: 40px;
    height: auto;
  }
  
  .advantage-arrow{
    width: 40px;
    height: auto;
    margin-left: 20px;
    transform: rotate(90deg);
  }

  footer{
    display: flex;
    flex-direction: column;
    align-items: start;
  }
.footer-content{
    width: 80%;
    margin: 30px auto;

}
  .footer-logo{
    width: 150px;
    height: auto;
    align-self: flex-start;
  }

  .footer-navigation{
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
  }

  .footer-item{
    display: flex;
    flex-direction: column;
    justify-items: start;
    align-self: start;
    margin: 50px 0;
  }

.footer-nav-title{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.footer-nav-item{
    font-size: 22px;
    font-weight: 500;
}

.footer-nav-item:hover{
    color: #fff;
}


  footer hr{
    width: 100%;
    height: 1px;
  }

  .footer-info{
    margin: 10px auto;
  }

  .footer-info-copy{
    margin-top: 30px;
  }

  .scrolltop{
    font-size: 40px;
    font-weight: 400;
    padding: 10px;
    border: 1px solid #0097b2;
    border-radius: 100%;
    color: #0097b2;
    position: fixed;
    right: 1rem;
    bottom: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 2s;
    visibility: hidden;
  }

  .show-scroll{
    visibility: visible;
    transition: margin-bottom 4s ease-in-out 1s;

}



  }
  
  /* 🔹 Стандартные ПК (1367px – 1920px) */
  @media (min-width: 1367px)  {
  
    header{
      border-bottom: 1px solid #ffffff;
      padding: 20px 20px;
      position: fixed;
      width: 100%;
      background-color: #1b1e2de8;
      z-index: 100;
    }
  
      
    .header-mobile{
      display: none;
    }
  
    .header-laptop{
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  

  .header-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
  }


  .quotex-logo-laptop{
    width: 200px;
    height: auto;
  }

  .header-nav a{
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
  }

  .header-nav a:hover{
    color: #00bf63;
  }

  .header-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.btn-log{
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    background-color: #737373;
    border-radius: 10px;
    padding: 10px 40px;
    margin-right: 30px;
    border: 2px solid #737373;
}

.btn-log:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.btn-sign{
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    background-color: #00bf63;
    border-radius: 10px;
    padding: 10px 40px;
    border: 2px solid #00bf63;
}

.btn-sign:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.translate-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.translate-img{
  width: 40px;
  height: auto;
  margin: 0 20px;
}


.content-broker-laptop{
    display: flex;
    flex-direction: column;
    background-image: url(https://quotextrading.co.in/img/laptop-layer.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 180px;
}

.content-box {
      display: flex;
      flex-direction: column;
      padding-top: 180px;
  }

.broker-content-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

.broker-img img{
    width: 800px;
    height: auto;
}

.broker-info{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 0px 80px;
}

.broker-title{
    font-size: 32px;
    font-weight: 700;
    text-align: start;
    margin: 40px auto;
    padding: 0 100px 0 0;
    color: #fff;
}

.broker-txt{
    font-size: 22px;
    font-weight: 500;
    color: #a6a6a6;
    text-align: start;
    padding: 0 60px 0 0;
}


.broker-btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px auto;
}

.btn-register{
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    background-color: #00bf63;
    border-radius: 10px;
    padding: 20px 60px;
    border: 2px solid #00bf63;  
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-register:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;

}

.advantage-arrow{
  width: 50px;
  height: auto;
  margin-left: 20px;
  transform: rotate(90deg);
}

.btn-demo{
    color: #000;
    font-size: 22px;
    font-weight: 800;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 60px;
    border: 2px solid #ffffff;
    margin: 0 0 0 80px;
}

.btn-demo:hover{
    background-color: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
}

.broker-money{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 20px auto;
}

.money-txt{
    font-size: 38px;
    font-weight: 800;
    color: transparent; 
    -webkit-text-stroke: 2px #a6a6a6;
}

.advantages-section{
    width: 90%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2f374b;
    border-radius: 30px;
    padding-bottom: 50px;
}

.advantages-list{
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 30px 50px;
}

.advantages-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 30px;
    width: 20%;
}

.advantages-img{
    width: 140px;
    height: auto;
}

.advantages-title{
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 10px auto;
}

.advantages-txt{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.advantages-section hr{
    outline: none;
    width: 100%;
    height: 1px;
    margin: 40px auto;
}


.prognose-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 40px 20px;
}

.prognose-graphic-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.graphic-img-block{
    width: 65%;
    margin: 0 40px 0 0;
}


.graphic-info{
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: #2f374b;
    border-radius: 30px;
    padding: 20px 0px;
}

.graphic-img{
    width: 250px;
    height: auto;
    margin: 20px auto;
}

.graphic-info hr{
    width: 100%;
}

.graphic-info .broker-title{
    text-align: center;
    margin: 20px auto;
    padding: 0 30px;
}

.graphic-up{
    width: 80%;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    background-color: #00bf63;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #00bf63;
}

.graphic-up:hover{
    color: #00bf63;
    background-color: transparent;
    border: 3px solid #00bf63;
}


.graphic-down{
    width: 80%;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    background-color: #ff5757;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #ff5757;
}


.graphic-down:hover{
    color: #ff5757;
    background-color: transparent;
}

.graphic-up-arrow{
  width: 50px;
  height: auto;
}

.graphic-down-arrow{
  width: 50px;
  height: auto;
  transform: rotate(180deg);
}

.application-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url(https://quotextrading.co.in/img/application-layout.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    border-bottom: 1px solid #fff;
}

.app-img img{
    width: 800px;
    height: auto;
}

.app-img-mobile{
  display: none;
}

.app-ifo{
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 0 100px;
}


.app-title{
    width: 60%;
    font-size: 36px;
    font-weight: 800;
    padding: 0;
}

.app-txt{
    width: 80%;
    font-size: 22px;
    font-weight: 500;
    color: #a6a6a6;
    text-align: start;
    margin: 20px 0;
}


.app-btn{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    background-color: #2f374b;
    border-radius: 30px;
    padding: 20px 30px;
    margin: 10px 0;
    border: 4px solid #2f374b;

}

.app-logo{
  width: 50px;
  height: auto;
}
.app-btn:hover{
    background-color: #00bf63;
    border: 4px solid #00bf63;

}


.qoutex-bonus-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url(https://quotextrading.co.in/img/application-layout.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.bonus-plus{
    background-image: url(https://quotextrading.co.in/img/indian-layout.png);
    background-repeat: no-repeat;
    background-size: calc(80%);
    background-position: right  ;
}

.bonus-dep{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    background-color: #2477ce;
    padding: 10px 16px;
    border-radius: 10px;
    display: inline-block;
    margin: 15% 0% 0% 70%;
}

.bonus-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 10px 80px;
}

.qoutex-title{
    font-size: 32px;
    font-weight: 600;
    color: #00bf63;
}

.bonus-ifo h2{
    padding: 10px 100px 0 0;
    width: 100%;
}

.bonus-txt{
    font-size: 32px;
    font-weight: 500;
    margin: 20px 0;
    color: #fff;
    text-wrap: wrap;
    width: 80%;
}

.features-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    padding: 0 100px;
}

.features-item{
    width: 25%;
    margin: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-icon{
    font-size: 50px;
}

.testimonial-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 50px auto;
}

.testimonial-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.testimonial-title{
    font-size: 30px;
    width: 30%;
}

.testimonial-img{
    width: 240px;
    height: auto;
}

.testimonial-review{
    width: 80%;
    margin: 0 auto;
    background-color: #2f374b;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 40px 60px;
}

.testimonial-rate{
    width: 200px;
    height: auto;
}

.testimonial-txt{
    font-size: 20px;
    font-weight: 500;
    color: #a6a6a6;
    margin: 20px auto;
}

.testimonial-author{
    display: flex;
    align-items: start;
    justify-content: flex-start;
}

.testimonial-author-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 10px 20px;
}


.testimonial-name{
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.testimonial-client-id{
    font-size: 20px;
    font-weight: 500;
    color: #a6a6a6;
}

.instruction-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.instruction-section h2{
    padding: 0;
    width: 100%;
}

.testimonial-title{
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.instruction-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.instruction-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 30%;
}


.instruction-btn{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    background: linear-gradient(to right, #0097b2, #7ed957);
    border-radius: 30px;
    padding: 20px 30px;
    margin: 40px 0;
    text-align: center;
    border: 2px solid transparent;
}

.instruction-btn:hover{
    background: transparent;
    border: 2px solid #00bf63;
}


.trading-reason-section{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    border-top: 1px solid #fff;

}

.reason-title{
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.reason-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}


.faq-section{
    width: 90%;
    margin: 50px  auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-text{
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin: 20px auto;
    text-transform: uppercase;
}


.plus {
    position: absolute;
    left: 20px;
    top: 4px;
    z-index: 5;
    font-size: 42px;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    color: #fff;
  }

  .panel:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .panel {
    display: none;
  }

  .qa-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .qa-content-block{
    font-size: 20px;
    width: 50%;
    position: relative;
    margin: 20px 30px;
    padding: 10px 10px 10px 60px;
    display: block;
    /* border: 1px solid #0097b2; */
    border-radius: 30px;
    background:#2f374b;
  }

  .qa-answer{
    font-size: 18px;
    padding: 0px 14px;
    margin: 0 40px;
    height: 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    color: #fff;
  }

  .panel:checked ~ .qa-answer{
    height: auto;
    opacity: 1;
    padding: 14px;
  }
  
  .qa-title{
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
  }

  .panel:checked ~ .qa-title{
    color: #00bf63;
  }

  .innovation-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 30px auto;
  }

  .innovation-img{
    width: 100%;
    height: auto;
  }

  .innovation-title{
    font-size: 60px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #a6a6a6;
    width: 70%;
    text-align: center;
    margin: -122px 0 30px 0;
  }

  .innovation-btn-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    margin: 50px auto;
  }


  footer{
    display: flex;
    flex-direction: column;
    align-items: start;
  }
.footer-content{
    width: 80%;
    margin: 30px auto;

}
  .footer-logo{
    width: 150px;
    height: auto;
    align-self: flex-start;
  }

  .footer-navigation{
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
  }

  .footer-item{
    display: flex;
    flex-direction: column;
    justify-items: start;
    align-self: start;
    margin: 50px 0;
  }

.footer-nav-title{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.footer-nav-item{
    font-size: 22px;
    font-weight: 500;
}

.footer-nav-item:hover{
    color: #fff;
}


  footer hr{
    width: 100%;
    height: 1px;
  }

  .footer-info{
    margin: 10px auto;
  }

  .footer-info-copy{
    margin-top: 30px;
  }

  .scrolltop{
    font-size: 40px;
    font-weight: 400;
    padding: 10px;
    border: 1px solid #0097b2;
    border-radius: 100%;
    color: #0097b2;
    position: fixed;
    right: 1rem;
    bottom: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 2s;
    visibility: hidden;
  }

  .show-scroll{
    visibility: visible;
    transition: margin-bottom 4s ease-in-out 1s;

}

}