@font-face {
    font-family: 'Varela';
    src: url("VarelaRound-Regular.ttf");
}

body
{
    font-family: 'Varela', Arial, sans-serif;
}

.logo-ipexia
{
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.support-btn
{
    z-index: 1;
    background-image: linear-gradient(to left, #FB6C46, #F03B77);
    color: white;
    border: none;
    border-radius: 75px;
    font-size: x-large;
    padding: 10px;
}

.push-btn
{
  box-shadow: 0 4px 0 #B8B8B8;

  /*Animation*/
  transition: all 0.1s;
}

#domain {
    font-style: italic;
}


/************************
          TEXT
************************/

a, h1, h2, h3, h4, h5, h6
{
    color: #323D51;
}

.ipexia-color
{
    color: #FB6C46;
}

a:hover
{
    text-decoration: none;
    color: white;
}


/************************
     margin & padding
************************/

.margin-bot
{
    margin-bottom: 2rem;
}

.margin-top
{
    margin-top: 3rem;
}

.padding-text
{
    padding: .5rem;
    background: white;
    box-sizing: border-box;
    border-radius: 25px;
}


/************************
            GIF
************************/

.row-gif
{
    /*background: #FB6C46;*/
    text-align: center;
}

.gif
{
    width: 35%;
    height: auto;
    background-image: linear-gradient(to left, #FB6C46, #F03B77);
    padding: 5%;
    border-radius: 10px;
    box-shadow: 5px 5px #D6D6D6;
    margin-bottom: 5px;
}

.gif-text
{
    margin-top: .5rem;
}


/************************
           SVG
************************/

.svg-width
{
    width: 63%;
    height: auto;
}

#head,
#body-down,
#body-up
{
    animation: body 3s ease-in-out infinite alternate;
    transform-origin: bottom;
}

#ellipse1
{
    animation: ellipseOne 1.5s ease-out, ellipseOne1 4s ease-in-out alternate infinite;
    animation-delay: 0s, 4s;
}

#ellipse2
{
    animation: opacityDown .5s, ellipseTwo 2s ease-out, ellipseTwo1 2s ease-in-out alternate infinite;
    animation-delay: 0s, .5s, 3.5s;
}

#ellipse3
{
    animation: opacityDown 1s, ellipseOne 2s ease-out, ellipseThree1 6s ease-in-out alternate infinite;
    animation-delay: 0s, 1s, 3.5s;
}

#ellipse4
{
    animation: opacityDown 1s, ellipseFour 2s ease-out, ellipseFour1 3s ease-in-out alternate infinite;
    animation-delay: 0s, .5s, 4s;
}

#ellipse5
{
    animation: opacityDown 2s, ellipseFour 1.5s ease-out, ellipseFive1 4s ease-in-out alternate infinite;
    animation-delay: 0s, 2s, 5s;
}

#ellipse6
{
    animation: ellipseSix 2s ease-out, ellipseSix1 1s ease-in-out alternate infinite;
    animation-delay: 0s, 3.5s;
}

#ellipseSearch
{
    animation: ellipseSearch 3s ease-in-out infinite alternate;
    animation-delay: 3.5s;
}

@keyframes body
{
    from
    {
        transform: rotateX(0deg);
    }
    to
    {
        transform: rotateX(20deg);
    }
}

@keyframes ellipseOne
{
    from
    {
        transform: translateX(310px);
        opacity: 0;
    }
    to
    {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ellipseOne1
{
    to
    {
        transform: translateX(23%);
    }
}

@keyframes ellipseTwo
{
    from
    {
        transform: translateX(-85px);
        opacity: 0;
    }
    to
    {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ellipseTwo1
{
    to
    {
        transform: translateX(17%);
    }
}

@keyframes opacityDown
{
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 0;
    }
}

@keyframes ellipseThree1
{
    to
    {
        transform: translateX(37%);
    }
}

@keyframes ellipseFour
{
    from
    {
        transform: translateX(-310px);
        opacity: 0;
    }
    to
    {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ellipseFour1
{
    to
    {
        transform: translateX(-29%);
    }
}

@keyframes ellipseFive1
{
    to
    {
        transform: translateX(-30%);
    }
}

@keyframes ellipseSix
{
    from
    {
        transform: translateX(85px);
        opacity: 0;
    }
    to
    {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ellipseSix1
{
    to
    {
        transform: translateX(-18%);
    }
}

@keyframes ellipseSearch
{
    from
    {
        transform: rotateY(0deg);
    }
    to
    {
        transform: translateX(23%);
    }
}