.main-banner-content{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;

}

.main-banner-content h3 {
    letter-spacing: 3px;
    font-weight: 300;
    font-size: 80px;
    color: #EDEDED;
    margin: 0;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}


.rusl {
    background-image: linear-gradient(to right, #a84694, #a04294, #973e95, #8e3b96, #843896, #7c3596, #753297, #6c3097, #642d97, #5a2a98, #502798, #442599);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 400;
}

.banner-content {
    line-height: 1.7rem;
    color: #9898A8;
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

.main-banner-contact{
    display: flex;
        justify-content: center;
        opacity: 0;
        animation: fadeIn 2.5s ease-in-out forwards;
        animation-delay: 1.3s;
}


.main-banner-contact a {
    padding: 15px;
    display: flex;
    width: 184px;
    justify-content: space-around;
    align-items: center;
    background: #0f0f13;
    border-radius: 24px;
    border: 1px solid #1c1c21;
    color: white;
    text-decoration: none;
}


.main-banner-contact img {
    margin-top: 1px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



.solar-left{
    position: absolute;
    width: 100%;
    left: -24%;
    overflow: hidden;
}

.solar-top{
    position: absolute;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
    right: -80%;
    top: -53%;
}

.system {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding-top: 100%;
            padding-top: 700px;
  }

  .system__sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .system__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100%;
    transform: translate(-50%, -50%);
    animation: spin infinite linear both;
  }

  .system__orbit:nth-child(1) {
    width: calc(50%);
    height: calc(50%);
  }
  .system__orbit:nth-child(2) {
    width: calc(60%);
    height: calc(60%);
  }
  .system__orbit:nth-child(3) {
    width: calc(70%);
    height: calc(70%);
  }
  .system__orbit:nth-child(4) {
    width: calc(80%);
    height: calc(80%);
  }
  .system__orbit:nth-child(5) {
    width: calc(90%);
    height: calc(90%);
  }
  .system__orbit:nth-child(6) {
    width: calc(100%);
    height: calc(100%);
  }
 


  .system__orbit--first {
    animation-duration: 7s;
  }
  .system__orbit--second {
    animation-duration: 9s;
  }
  .system__orbit--third {
    animation-duration:11s;
  }
  .system__orbit--fourth {
    animation-duration: 13s;
  }
  .system__orbit--fifth {
    animation-duration: 15s;
  }
  
  .system__planet {
    position: absolute;
    top: 50%;
    left: -12px;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    transform: translateY(-50%);
  }

  .system__planet img {
    width: 40px;

  }
  .system__icon {
    width: 100%;
    height: 100%;
  }
  .banner-logo {
    width: 300px;
  }
  @keyframes spin {
    from {
      transform: translate(-50%, -50%);
    }
    to {
      transform: translate(-50%, -50%) rotate(-360deg);
    }
  }

  @media (max-width:1428px){
    .solar-left {
        left: -31%;

    }

}


@media (max-width: 1288px) {
    .solar-left {
        left: -36%;
    }
}

@media (max-width: 1212px) {
    .solar-left {
        left: -41%;
    }
}

@media (max-width: 1158px) {
    .solar-left {
        left: -45%;
    }
}


@media (max-width: 1100px) {
    .solar-left {
        left: -49%;
    }
}


@media (max-width: 1044px) {
    .solar-left {
        left: -52%;
    }
}

@media (max-width: 1024px) {
    .solar-left {
        left: -56%;
    }
}

@media (max-width: 988px) {
    .solar-left {
        left: -60%;
    }
}

@media (max-width: 944px) {
    .solar-left {
        left: -63%;
    }
}

@media (max-width: 944px) {
    .solar-left , .solar-top {
        display: none;
    }
}

@media (max-width:870px){
    .main-banner-content h3{
        font-size: 59px;

    }

    .banner-content {
        font-size: 18px;
    }

}

@media (max-width: 638px) {
    .main-banner-content h3 {
        font-size: 49px;
    }

    .banner-content {
        font-size: 16px;
    }
    .main-banner-contact a{
        padding: 12px;
        font-size: 14px;
        width: 165px;
    }
}


@media (max-width: 510px) {
    .main-banner-content h3 {
        font-size: 40px;
        font-weight: 500;
    }
    .banner-content {
        font-size: 15px;
    }
    .main-banner-contact a {
        padding: 12px;
        font-size: 13px;
        width: 153px;
    }
}



@media (max-width: 430px) {
    .main-banner-content h3 {
        font-size: 33px;
        font-weight: 500;
    }
    .banner-content {
        font-size: 13px;
        font-weight: 600;
    }
}


@media (max-width: 375px) {
    .main-banner-content h3 {
        font-size: 29px;
        font-weight: 500;
    }
    .banner-content {
        font-size: 11px;
        font-weight: 600;
    }
}


