#home{
    padding: 0px 4%;
    padding-right: 8%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 128px;
}

#firstpart, #secondpart{
    display: flex;
}

@media only screen and (min-width: 1473px){
    #home{
        position: relative;
        top: -40px;
    }
}

@media only screen and (max-width: 1472px) and (min-width: 1251px){
    #home{
        position: relative;
        top: -30px;
    }
}

@media only screen and (max-width: 1250px) and (min-width: 1112px){
    #home{
        position: relative;
        top: -5px;
    }
}

#ellipse{
    position: absolute;
    z-index: -10;
    left: 0;
}

.center{
    display: flex;
    align-items: center;
    justify-content: center;
}

#firstcontent h1, #firstcontent h5{
    text-align: center;
    color: white;
    margin-top: 20px;
}

#firstcontent h1{
    font-size: 40px;
}

#firstcontent{
    margin-top: 100px;
    margin-left: 20%;
}

#firstcontent h5{
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 14px;
}

.numberform{
    background-color: white;
    padding: 2px;
    border-radius: 5px;
}

.selectnumber{
    background-color: #00004e;
    color: white;
    border-radius: 3px;
    padding: 4px 5px;
    font-size: 22px;
    letter-spacing: 0.1ch;
    border: none;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    bottom: 1px;
    left: 1px;
}

.formnumber{
    height: 25px;
    position: relative;
    top: -2px;
    text-align: center;
    margin-left: 5px;
    font-size: 22px;
    border: none;
    outline: none;
    width: 150px;
    letter-spacing: 0.3ch;
}

.formsubmit{
    background-color: #00BD2A;
    border-radius: 5px;
    padding: 5px 8px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    top: 1px;
    right: 1px;
}

#rightarr:hover{
    position: relative;
    left: 4px;
    transition: 0.3s;
}

#rightarr{
    transition: 0.3s;
    position: relative;
    top: 1px;
}

.formsubmit:hover{
    transition: 0.3s;
}

#rsimage{
    width: 500px;
    margin-top: 100px;
}

@media only screen and (max-width: 1525px) and (min-width: 1251px){
    #firstcontent{
        margin-left: 10%;
    }

    #firstcontent h5{
        width: 60%;
        margin-left: 20%;
    }
}

@media only screen and (max-width: 1250px) and (min-width: 1100px){
    #rsimage{
        width: 450px;
    }

    #firstcontent{
        margin-left: 10%;
    }

    #firstcontent h5{
        width: 60%;
        margin-left: 20%;
    }
}

@media only screen and (max-width: 1099px) and (min-width: 870px){
    #rsimage{
        width: 400px;
    }

    #firstcontent{
        margin-left: 10%;
    }

    #firstcontent h5{
        width: 70%;
        margin-left: 15%;
    }

    #firstcontent h1{
        font-size: 35px;
    }
}

@media only screen and (max-width: 869px) and (min-width: 800px){
    #firstcontent h1{
        font-size: 27px;
    }

    #rsimage{
        width: 400px;
    }

    #firstcontent{
        margin-left: 10%;
    }

    #firstcontent h5{
        width: 70%;
        margin-left: 15%;
        font-size: 12px;
    }
}

@media only screen and (max-width: 800px){
    #secondpart{
        /* position: absolute;
        z-index: -9;
        right: 0px;
        opacity: 0.6; */
        display: none;
    }

    #symbolfirstpart{
        width: 150px;
    }

    #ellipse{
        left: -5%;
    }

    #firstcontent{
        margin-left: 3%;
    }

    #scrollimg{
        width: 120px;
    }
}

@media only screen and (max-width: 600px){
    #ellipse{
        width: 80%;
    }

    #symbolfirstpart{
        width: 120px;
    }

    #firstcontent h1{
        font-size: 25px;
    }

    #firstcontent h5{
        font-size: 11px;
    }

    #scrollimg{
        width: 100px;
    }

    .selectnumber{
        bottom: 0;
    }

    .formsubmit{
        top: 2px;
    }
}

#scrollimg{
    margin-top: 70px;
    cursor: pointer;
    animation: jumpInfinite 1.5s infinite;
}

@keyframes jumpInfinite {
    0% {
      transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
  }