html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Gilroy", Arial, Helvetica, sans-serif;
    background: #F6F9FF;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
  
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
    opacity: 0.5;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: darken(#ddd, 20%);
  }

.mainContainer {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1920px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}
.graph-container {
    text-align: center;
    flex: 1;
    position: relative;
}
.graph-container img {
  max-width: 100%;
  max-height: 90%;
  width: auto;
  height: auto;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* margin-top: 30px; */
}
.banner h2, .graph-container h2 {
    /* font-size: 40px; */
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.banner {
    max-width: 1920px;
    background-color: #F7F9FF;
}

.logo {
    padding-top: 30px;
    padding-left: 50px;
}

.logo img {
    height: 3.8rem;
}

.banner {
    position: relative;
   overflow: hidden;
}


@media (max-width: 767px){
.logo  {
 margin-bottom: 50px;
 padding-left: 15px;
}
.logo img {
  height: 2.5rem;
}
.graph-container img { position: relative;top: 130px}
}

@media (min-width: 768px) and (max-width: 1024px) {
  .graph-container img { position: absolute; top: 380px}
}
@media (min-width: 1024px) and (max-width: 1024px) {
  .graph-container img { position: absolute; top: 500px}
}
@media (min-width: 912px) and (max-width: 912px) { 
  .graph-container img { position: absolute; top: 420px}
}
@media (width: 1024px) and (height: 600px) {
  .graph-container img { position: absolute; top: 200px}
}
@media (width: 540px) and (height: 720px) {
  .graph-container img { position: absolute; top: 200px}
}