*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body
{
    display: flex;
    justify-content:center;
    align-items: center;
    background: #08001b;
    min-height: 100vh;
}
html {
    scroll-behavior: smooth;
  }

  table, th, td {
    border: px solid Black;}
    
    /* make the table a 100% wide by default */
    table {
    width: 100%;}
    
    /* if the browser window is at least 800px-s wide: */
    @media screen and (min-width: 1100px) {
      table {
      width: 100%;}
    }
    
    /* if the browser window is at least 1000px-s wide: */
    @media screen and (min-width: 1200px) {
      table {
      width: 80%;}
    }
    img.rounded-corners {
        border-radius: 35px;
      }

      a {
        color: white;
        text-decoration: none;
      }
      
.footer
{
    position: relative;
    display: block;
    text-align: center;
    margin: 0 25px;
    color: fff;
    font-size: 15px;
    text-decoration: none;
    text-transform: none;
    transition: .5s;
    padding: 5px 10px;

}

.faq
{
    position: relative;
    display: block;
    text-align: center;
    margin: 0 25px;
    color: #e91e63;
    font-size: 17px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .5s;
    padding: 5px 10px;

}

.faq .textheader
{
    position: relative;
    display: block;
    text-align: center;
    margin: 0 25px;
    color: #e91e63;
    font-size: 15px;
    text-decoration: none;
    text-transform: none;
    transition: .5s;
    padding: 5px 10px;

}

.faq .text
{
    position: relative;
    display: block;
    text-align: center;
    margin: 0 25px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    text-transform: none;
    transition: .5s;
    padding: 5px 10px;

}

ul
{
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    margin: 0;
    padding: 0;
}
ul li
{
    list-style: none;
}
ul li a
{
    position: relative;
    display: block;
    text-align: center;
    margin: 0 25px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .5s;
    padding: 5px 10px;

}
ul li a::before
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border: 3px solid #e91e63;
    border-width: 0 0 3px 3px;
    transition: .5s;
    opacity: 1;
}

ul li a:hover
{
    color: #fff;
    background: #e91e63;
}


img.middle { vertical-align: middle; }



#grad1 {
    height: 3px;
    background-image: linear-gradient(to right, transparent, #e91e63);
  }

  #grad2 {
    height: 3px;
    background-image: linear-gradient(to right, transparent, #862165);
  }
  #grad3 {
    height: 3px;
    background-image: linear-gradient(to right, transparent, #f9ed32);
  }
.containerpp
{
    width: 350px;
    display: felx;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}
.containerpp .card
{
    position: relative;
    width: 300px;
    height: 400px;
    background: #0c002b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    overflow: hidden;
    border-radius: 8px;
}
.containerpp .card::before
{
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    width: 50%;
    background: rgba(255,255,255,0.1);
    pointer-events: none;    
}
.containerpp .card .content
{
    padding: 30px;
    text-align: center;
}
.containerpp .card .content h2
{
   position: absolute;
   right: 30px;
   font-size: 4em;
   font-weight: 800;
   color: #1779ff;
   padding: 8px 15px;
   transition: 0.5s; 
   display: inline-block;
    margin-top: 95px;
    text-shadow: 
    1px  1px 1px black,
    1px -1px 1px black,
   -1px  1px 1px black,
   -1px -1px 1px black;
    
  
}

.containerpp .card:hover .content h2
{
    opacity: 1;
    transform: translateY(-175px);
    text-shadow: 
     1px  1px 1px black,
     1px -1px 1px black,
    -1px  1px 1px black,
    -1px -1px 1px black;
}
.containerpp .card .content h3
{
    position: relative;
    font-size: 1.5em;
    color: #fff;
    z-index: 2;
    opacity: 0.5;
    letter-spacing: 1px;
    transition: 0.5s;
} 
.containerpp .card .content p
{
    position: relative;
    font-size: 1em;
    font-weight: 300;
    color: #fff;
    z-index: 2;
    opacity: 0.5;
    letter-spacing: 1px;
    transition: 0.5s;
} 
.containerpp .card:hover .content h3,
.containerpp .card:hover .content p
{
    opacity: 1;
}
.containerpp .card .content a
{
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #fff;
    color: #0c002b;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}
.containerpp .card span
{
    transition: 0.5;
    opacity: 0;
}
.containerpp .card:hover span
{
    opacity: 1;
}
.containerpp .card span:nth-child(1)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #1779ff);
    animation: animate1pp 2s linear infinite;
}
@keyframes animate1pp
{
    0%
    {
        transform: translateX(-100%);
    }
    100%
    {
        transform: translateX(100%);
    }
}

.containerpp .card span:nth-child(2)
{
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #1779ff);
    animation: animate2pp 2s linear infinite;
    animation-delay: 1s ;
}
@keyframes animate2pp
{
    0%
    {
        transform: translateY(-100%);
    }
    100%
    {
        transform: translateY(100%);
    }
}

.containerpp .card span:nth-child(3)
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, transparent, #1779ff);
    animation: animate3pp 2s linear infinite;
    
}
@keyframes animate3pp
{
    0%
    {
        transform: translateX(100%);
    }
    100%
    {
        transform: translateX(-100%);
    }
}

.containerpp .card span:nth-child(4)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, transparent, #1779ff);
    animation: animate4pp 2s linear infinite;
    animation-delay: 1s ;
}
@keyframes animate4pp
{
    0%
    {
        transform: translateY(100%);
    }
    100%
    {
        transform: translateY(-100%);
    }
}


.containersk
{
    width: 350px;
    display: felx;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}
.containersk .card
{
    position: relative;
    width: 300px;
    height: 400px;
    background: #0c002b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    border-radius: 8px;
}
.containersk .card::before
{
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    width: 50%;
    background: rgba(255,255,255,0.1);
    pointer-events: none;    
}
.containersk .card .content
{
    padding: 30px;
    text-align: center;
}
.containersk .card .content h2
{
   position: absolute;
   right: 30px;
   font-size: 4em;
   font-weight: 800;
   color: #972371;
   padding: 8px 15px;
   transition: 0.5s; 
   display: inline-block;
    margin-top: 95px;
    text-shadow: 
    1px  1px 1px black,
    1px -1px 1px black,
   -1px  1px 1px black,
   -1px -1px 1px black;
    
    
  
}

.containersk .card:hover .content h2
{
    opacity: 1;
    transform: translateY(-179px);
    text-shadow: 
    1px  1px 1px black,
    1px -1px 1px black,
   -1px  1px 1px black,
   -1px -1px 1px black;
    
}
.containersk .card .content h3
{
    position: relative;
    font-size: 1.5em;
    color: #fff;
    z-index: 2;
    opacity: 0.5;
    letter-spacing: 1px;
    transition: 0.5s;
} 
.containersk .card .content p
{
    position: relative;
    font-size: 1em;
    font-weight: 300;
    color: #fff;
    z-index: 2;
    opacity: 0.5;
    letter-spacing: 1px;
    transition: 0.5s;
} 
.containersk .card:hover .content h3,
.containersk .card:hover .content p
{
    opacity: 1;
}
.containersk .card .content a
{
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #fff;
    color: #0c002b;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}
.containersk .card span
{
    transition: 0.5;
    opacity: 0;
}
.containersk .card:hover span
{
    opacity: 1;
}
.containersk .card span:nth-child(1)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #972371);
    animation: animate1sk 2s linear infinite;
}
@keyframes animate1sk
{
    0%
    {
        transform: translateX(-100%);
    }
    100%
    {
        transform: translateX(100%);
    }
}

.containersk .card span:nth-child(2)
{
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #972371);
    animation: animate2sk 2s linear infinite;
    animation-delay: 1s ;
}
@keyframes animate2sk
{
    0%
    {
        transform: translateY(-100%);
    }
    100%
    {
        transform: translateY(100%);
    }
}

.containersk .card span:nth-child(3)
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, transparent, #972371);
    animation: animate3sk 2s linear infinite;
    
}
@keyframes animate3sk
{
    0%
    {
        transform: translateX(100%);
    }
    100%
    {
        transform: translateX(-100%);
    }
}

.containersk .card span:nth-child(4)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, transparent, #972371);
    animation: animate4pp 2s linear infinite;
    animation-delay: 1s ;
}
@keyframes animate4sk
{
    0%
    {
        transform: translateY(100%);
    }
    100%
    {
        transform: translateY(-100%);
    }
}

.containerwu
{
    width: 350px;
    display: felx;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}
.containerwu .card
{
    position: relative;
    width: 300px;
    height: 400px;
    background: #0c002b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    border-radius: 8px;
}
.containerwu .card::before
{
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    width: 50%;
    background: rgba(255,255,255,0.1);
    pointer-events: none;    
}
.containerwu .card .content
{
    padding: 30px;
    text-align: center;
}
.containerwu .card .content h2
{
   position: absolute;
   right: 30px;
   font-size: 4em;
   font-weight: 800;
   color: #f9ed32;
   padding: 8px 15px;
   transition: 0.5s; 
   display: inline-block;
    margin-top: 120px;
    text-shadow: 
    1px  1px 1px black,
    1px -1px 1px black,
   -1px  1px 1px black,
   -1px -1px 1px black;
    
  
}

.containerwu .card:hover .content h2
{
    opacity: 1;
    transform: translateY(-205px);
    text-shadow: 
    1px  1px 1px black,
    1px -1px 1px black,
   -1px  1px 1px black,
   -1px -1px 1px black;
}
.containerwu .card .content h3
{
    position: relative;
    font-size: 1.5em;
    color: #fff;
    z-index: 2;
    opacity: 0.5;
    letter-spacing: 1px;
    transition: 0.5s;
} 
.containerwu .card .content p
{
    position: relative;
    font-size: 1em;
    font-weight: 300;
    color: #fff;
    z-index: 2;
    opacity: 0.5;
    letter-spacing: 1px;
    transition: 0.5s;
} 
.containerwu .card:hover .content h3,
.containerwu .card:hover .content p
{
    opacity: 1;
}
.containerwu .card .content a
{
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #fff;
    color: #0c002b;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}
.containerwu .card span
{
    transition: 0.5;
    opacity: 0;
}
.containerwu .card:hover span
{
    opacity: 1;
}
.containerwu .card span:nth-child(1)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #f9ed32);
    animation: animate1wu 2s linear infinite;
}
@keyframes animate1wu
{
    0%
    {
        transform: translateX(-100%);
    }
    100%
    {
        transform: translateX(100%);
    }
}

.containerwu .card span:nth-child(2)
{
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #f9ed32);
    animation: animate2wu 2s linear infinite;
    animation-delay: 1s ;
}
@keyframes animate2wu
{
    0%
    {
        transform: translateY(-100%);
    }
    100%
    {
        transform: translateY(100%);
    }
}

.containerwu .card span:nth-child(3)
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, transparent, #f9ed32);
    animation: animate3wu 2s linear infinite;
    
}
@keyframes animate3wu
{
    0%
    {
        transform: translateX(100%);
    }
    100%
    {
        transform: translateX(-100%);
    }
}

.containerwu .card span:nth-child(4)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, transparent, #f9ed32);
    animation: animate4wu 2s linear infinite;
    animation-delay: 1s ;
}
@keyframes animate4wu
{
    0%
    {
        transform: translateY(100%);
    }
    100%
    {
        transform: translateY(-100%);
    }
}

