/*

Theme Name: FWIA Theme

Theme URI: https://faithandwork.teds.edu/

Description: The FWIA Theme is a Child theme of Hello-Elementor

Author: TIU Marketing Department

Author URI: https://www.tiu.edu/

Template: hello-elementor

Version: 1.0.2

Text Domain: hello-elementor-child

License: GNU General Public License v3 or later.

License URI: https://www.gnu.org/licenses/gpl-3.0.html

*/


:root{
    --darkGray: #202020;
    --darkPurple: #05051e;
    --borderPurple: #191044;
    --fontColor: #e2e8ffbf;
    --wideWidth: 1240px;
    --narrowWidth: 1040px;
}
body.page-template {
    background: var(--darkPurple);
    color: var(--fontColor);
}
header, footer, section{
    overflow-x: hidden;
}
body h1, body h2, body h3, body p, body span, body div, body a{
    padding: 0;
    margin: 0;
    font-family: Helvetica;
    letter-spacing: .025em;
    line-height: 1.25em;
}
body h1{
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
}
body h2{
    font-size: 3rem;
    font-weight: 800;
    color: white;
}
body h3{
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}
body p, body a{
    font-size: 1.25rem;
    font-weight: 300;
}
body a:not(.link-button){
    color: white;
    text-decoration: underline dashed;
    text-underline-offset: .2rem;
}
body a:not(.link-button):hover{
    animation: linkHoverAnim 2s linear infinite;
}
@keyframes linkHoverAnim{
    0%{
        color: rgb(103, 141, 198); 
    }
    34%{
        color: rgb(187, 227, 224);
    }
    68%{
        color: rgb(122, 166, 168);
    }
    100%{
        color: rgb(103, 141, 198);
    }
}

body a.link-button{
    color: var(--darkPurple);
    text-transform: uppercase;
    font-weight: 800;
    padding: 10px 15px;
    font-size: .92rem;
    transition: all .3s ease;
    background: white;
    display: inline-block;
}
body a.link-button:hover{
    background: linear-gradient(135deg, rgb(102, 159, 245), rgb(122, 166, 168), rgb(218, 211, 238), rgb(102, 159, 245), rgb(122, 166, 168), rgb(218, 211, 238), rgb(102, 159, 245), rgb(122, 166, 168), rgb(218, 211, 238) );
    background-size: 420%;
    animation: linkButtonHoverAnim 2s linear infinite;
    scale: 1.05;
}
@keyframes linkButtonHoverAnim{
    from{
        background-position: left;
    }
    to{
        background-position: right;
    }
}
body p.subtitle{
    font-size: .92rem;
    font-weight: 300;
}

.font-padding h2, h2.font-padding{
    padding-bottom: 15px;
}
.font-padding p{
    padding-bottom: 10px;
}
.container{
    width: 100%;
    margin: auto;
    padding: 20px;
    max-width: var(--wideWidth);
}
section.default-padding{
    padding: 35px 0;
}

.animate {
    transform: translateY(75px) scale(.7);
    opacity: 0;
    transition: transform 1s ease, opacity 1.8s ease;
}
.animate.active {
    transform: translateY(0) scale(1);
    opacity: 1;
}




@media(max-width: 1240px){
    body h1{
        font-size: 2.85rem;
        font-weight: 800;
        color: white;
    }
    body h2{
        font-size: 2.45rem;
        font-weight: 800;
        color: white;
    }
    body p, body a{
        font-size: 1.2rem;
        font-weight: 300;
    }
    .container{
        max-width: 900px;
    }
}
@media(max-width: 900px){
    .container{
        max-width: 900px;
        padding: 35px;
    }
}