body
{
    margin: 0;
    padding: 0;
    background-color: #efefef;
    font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6, p
{
    margin: 0;
}

.secondary_text_color
{
    color: #6d18c5;
}

#main-header
{
    color: #fdffff;
    height: 90px;
    padding-bottom: 60px;
}

#main-block
{
    padding-top: 0;
    padding-left: 70px;
    padding-right: 70px;
}

#footer
{
    font-size: 12pt;
}

.content-block
{
    margin-left: 18px;
    margin-right: 18px;
}

.ul-navbar
{
    margin: 0;
    display: inline-block;
    padding-left: 40px;
}

.ul-navbar li
{
    display: inline-block;
    margin: 36px 36px 0px 36px;
}

.ul-navbar li:hover > a
{
    color: #6424a6;
}

.ul-navbar li:active > a
{
    color: #6424a6;
}

.ul-navbar li > a
{
    text-decoration: none;
    color: #333;
}

.ul-text
{
    color: #565656;
    padding-left: 0;
    word-break: break-word;
    list-style: none;
    padding-right: 15px;
}

.ul-text li:before
{
    content: '\25A0';
    display: inline-block;
    margin-left: -1em;
    width: 1em;
    color: #333333;
}

.ul-text li
{
    font-size: 1.3rem;
    padding-bottom: 15px;
}

.textTitle
{
    color: #404040;
    font-size: 5.2rem;
}

.textSubTitle
{
    color: #565656;
    font-size: 1.9em;
}

.social > a > img
{
    width: 35px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.social-link
{
    text-decoration: none;
    filter: saturate(0.7);
}

.social-link > img
{
    width: 35px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.p-pad-bottom > p
{
    padding-bottom: 10px;
}

.responsive-vp-pad-1
{
    padding-left: 15vw;
    padding-right: 15vw;
}

/* helper classes */
.full-width
{
    width: 100%;
}

.half-width
{
    width: 50%;
}

.full-height
{
    height: 100%;
}

.half-height
{
    height: 50%;
}

/* responsive helper classes */
.responsive-half-width
{
    width: 50%;
}

.responsive-60-width
{
    width: 60%;
}

.responsive-40-width
{
    width: 40%;
}

.responsive-70-width
{
    width: 70%;
}

.responsive-30-width
{
    width: 30%;
}

.responsive-flex-wrap
{
    flex-wrap: nowrap !important;
}

.flex-center
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.margin-center
{
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 900px)
{
    .responsive-half-width
    {
        width: 100%;
    }
    
    .responsive-60-width
    {
        width: 100%;
    }
    
    .responsive-40-width
    {
        width: 100%;
    }

    .responsive-30-width
    {
        width: 100%;
    }

    .responsive-70-width
    {
        width: 100%;
    }
    
    .responsive-flex-wrap
    {
        flex-wrap: wrap !important;
    }
    
    .textTitle
    {
        font-size: 13vw;
    }
    
    .textSubTitle
    {
        font-size: 1.4rem;
    }
    
    .responsive-vp-pad-1
    {
        padding-right: 4vw;
        padding-left: 4vw;
    }
    
    #second-block
    {
        padding-left: 6px;
        padding-right: 6px !important;
    }
    
    #main-block
    {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .ul-navbar
    {
        padding: 0;
    }
    
    .ul-text li:before
    {
        margin-left: 0 !important;
    }
}



/* helper viewport classes */
.vp-full-height
{
    height: 100vh;
}

.vp-half-height
{
    height: 50vh;
}

.flex-container-row
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-container-column
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.hide-overflow
{
    overflow: hidden;
}

.youtube-video-container
{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56%;
}

.youtube-video
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Animations */
@keyframes fadeInLeft 
{
    from {
        opacity: 0;
        transform: translate3d(5%, 0, 0);
      }
    
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
}

.fadeInLeft
{
  animation-name: fadeInLeft;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn
{
    from {
        opacity: 0;
        transform: translate3d(0, 0, 0);
      }
    
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
}

.fadeIn
{
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}