@font-face {
    font-family: 'Red Hat';
    src: url('../fonts/Red_Hat_Display/static/RedHatDisplay-Regular.ttf');
}

@font-face {
    font-family: 'Red Hat Bold';
    src: url('../fonts/Red_Hat_Display/static/RedHatDisplay-Bold.ttf');
}

@font-face {
    font-family: 'Red Hat SemiBold';
    src: url('../fonts/Red_Hat_Display/static/RedHatDisplay-SemiBold.ttf');
}

@font-face {
    font-family: 'Red Hat Medium';
    src: url('../fonts/Red_Hat_Display/static/RedHatDisplay-Medium.ttf');
}

@font-face {
    font-family: 'IBMPlex';
    src: url('../fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf');
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
}
body{
    width: 100%;
    padding-top: 75px;
    position: relative;
    overflow-x: hidden;
    font-family: 'Red Hat';
    background-color: var(--blue-one);
}

a{
    text-decoration: none;
}
p{
    font-size: 17px;
}

header.header{
    height: 75px;
    width: 100%;
    padding-left: 40px;
    background-color: var(--blue-one);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    border-bottom: 1px solid #2CE8A6;
    z-index: 99;
}

header.header .logo{
    width: 20%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

header.header .logo img{
    height: 60%;
    width: 60%;
    object-fit: contain;
}

header.header .menu-toggle{
    padding: 15px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    margin: 0 10px;
}

header.header .menu-toggle i{
    width: 30px;
    height: 2px;
    margin: 3px 0;
    background-color: white;
    display: inline-block;
}

.navigation{
    padding: 0 25px;
    display: flex;
    position: relative;
}
.navigation a{
    color: white !important;
    text-decoration: none;
    margin: 0 15px;
    transition: all ease .3s;
}

.navigation .join{
    position: relative;
}

.bg-white{
    background-color: white;
    color: black;
}
.bg-grey-one{
    background-color: var(--grey-one);
}
.bg-grey-two{
    background-color: var(--grey-two);
}
.bg-grey-three{
    background-color: var(--grey-three);
}
.bg-grey-four{
    background-color: var(--grey-four);
}
.bg-blue-one{
    background-color: var(--blue-one);
}
.bg-blue-two{
    background-color: var(--blue-two);
}
.bg-blue-three{
    background-color: var(--blue-three);
}
.bg-blue-four{
    background-color: var(--blue-four);
}
.bg-green-one{
    background-color: var(--green-one);
}
.bg-green-two{
    background-color: var(--green-two);
}
.bg-black{
    background-color: black;
}
.bg-dark-one{
    background-color: var(--dark-one);
}
.bg-dark-two{
    background-color: var(--dark-two);
}

.absolute{
    position: absolute;
}
.full{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.full_height{
    height: 100%;
}
.full_width{
    width: 100%;
}
.half_height{
    height: 50%;
}
.half_width{
    height: 50%;
}
.top{
    top: 0;
}
.bottom{
    bottom: 0;
}
.left{
    left: 0;
}
.right{
    right: 0;
}

.padding-left{
    padding-left: 7vw;
}
.padding-right{
    padding-right: 7vw;
}
.padding-top{
    padding-top: 7vw;
}
.padding-bottom{
    padding-bottom: 7vw;
}

.gradient-link{
    margin-top: 50px;
    padding: 10px 30px;
    color: black;
    background: linear-gradient(to right, #2AE85A, #2CE8A6);
    text-decoration: none;
    border-radius: 5px;
}

.green-linear-gradient{
    background: linear-gradient(to right, rgba(44, 232, 166, 0.7), transparent, transparent, transparent, transparent, transparent);
}

.bg-green-tt-gradient{
    background: linear-gradient(to top, var(--green-two), transparent, transparent);
}

.bg-radial-gradient::after{
    content: '';
    height: 50vh;
    width: 20vw;
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}
.bg-radial-gradient.animateOnLoad::after, .bg-radial-gradient.animateOnScroll::after{
    animation: zeroOpacityAnimation 1.5s forwards;
}
.bg-radial-gradient.animate::after{
    animation: lowOpacityAnimation 1.5s forwards;
}

.bg-radial-gradient.left-center::after{
    top: 0;
    left: 0;
    height: 100%;
    width: 20vw;
    background: radial-gradient(ellipse farthest-side at center left, var(--green-two), transparent);
}
.bg-radial-gradient.top-left::after{
    top: 0;
    left: 0;
    background: radial-gradient(ellipse farthest-side at top left, var(--green-two), transparent );
}
.bg-radial-gradient.top-center::after{
    top: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: radial-gradient(ellipse farthest-side at top center, var(--green-two), transparent, transparent );
}
.bg-radial-gradient.top-right::after{
    top: 0;
    right: 0;
    background: radial-gradient(ellipse farthest-side at top right, var(--green-two), transparent );
}
.bg-radial-gradient.right-center::after{
    top: 0;
    right: 0;
    height: 100%;
    width: 20vw;
    background: radial-gradient(ellipse farthest-side at right center, var(--green-two), transparent);
}
.bg-radial-gradient.bottom-right::after{
    bottom: 0;
    right: 0;
    background: radial-gradient(ellipse farthest-side at bottom right, var(--green-two), transparent );
}
.bg-radial-gradient.bottom-center::after{
    bottom: 0;
    left: 0;
    height: 30vh;
    width: 100%;
    background: radial-gradient(ellipse farthest-side at bottom center, var(--green-two), transparent );
}
.bg-radial-gradient.bottom-left::after{
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse farthest-side at bottom left, var(--green-two) ,transparent );
}

.low-opacity{
    opacity: 0.5;
}

.white-text{
    color: white;
}
.black-text{
    color: black;
}
.hover-black-text:hover{
    color: black;
}
.hover-white-text:hover{
    color: white;
}
.green-one-text{
    color: var(--green-one);
}
.green-two-text{
    color: var(--green-two) !important;
}

.text-bold{
    font-weight: bold;
}

.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-end{
    text-align: right;
}
.text-justify{
    text-align: justify;
}

.flex{
    display: flex;
}
.flex-row{
    display: flex;
    flex-direction: row;
}

.flex-column{
    display: flex;
    flex-direction: column;
}

.flex-wrap{
    flex-wrap: wrap;
}

.justify-center{
    justify-content: center;
}
.justify-start{
    justify-content: flex-start;
}
.justify-end{
    justify-content: flex-end;
}
.justify-space-between{
    justify-content: space-between;
}
.justify-space-around{
    justify-content: space-around;
}

.align-start{
    align-items: flex-start;
}
.align-center{
    align-items: center;
}
.align-end{
    align-items: flex-end;
}

.paradyme-button{
    padding: 10px 25px;
    border-radius: 5px;
    border: 1px solid var(--green-two);
    transition: all ease .5s;
    position: relative;
    color: white;
    font-weight: normal;
    font-family: 'Red Hat';
    text-align: center;
    z-index: 999999;
}
.navigation a.paradyme-button.button-one,
.paradyme-button.button-two{
    color: black !important;
}
.navigation a.paradyme-button.button-one:hover,
.paradyme-button.button-two:hover{
    color: var(--green-two) !important;
}
.paradyme-button:hover{
    border-radius: 0;
    color: black;
}

.paradyme-button::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all ease .5s;
    border: 1px solid var(--green-two);
}
.paradyme-button:hover::after{
    opacity: 0;
    transition: all ease .5s;
}

.paradyme-button.button-one::after{
    background: linear-gradient(to bottom, var(--green-one), var(--green-two));
}
.paradyme-button.button-two::after{
    background: linear-gradient(to right, var(--green-one), var(--green-two));
}

.paradyme-button.button-three:hover::after, .paradyme-button.min-button-three:hover::after{
    opacity: 1;
    transition: all ease .5s;
    border-radius: 0;
}

.paradyme-button.button-three::after, .paradyme-button.min-button-three::after{
    background: linear-gradient(to bottom, var(--green-one), var(--green-two));
    opacity: 0;
}

header nav a, section .section-t, section .list-text, footer .heading, footer a{
    font-family: 'Red Hat';
}

section.alertBar {
    width: 100%;
    min-height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    font-family: 'Red Hat';
    font-size: 18px;
    align-items: center;
    background:  linear-gradient(90deg,  rgba(17, 232, 143, .3) 0%, transparent 30%, transparent 70%,  rgba(17, 232, 143, .3) 100%);
    border-bottom: 1px solid rgb(17, 232, 143);
}
section.alertBar span {
    animation: slideInBottom 1s forwards;
    animation-delay: 0s;
}
section.alertBar a {
    color: rgba(17, 232, 143);
    text-decoration: underline;
}
@media screen and (max-width: 850px) {
    section.alertBar {
        padding: 20px;
        flex-direction: column;
    }
    section.alertBar span {
        text-align: center;
    }
  }

section{
    color: white;
    width: 100%;
    position: relative;
    z-index: 10;
    background-color: var(--blue-one);
}
section .container{
    height: 100%;
    width: 100%;
    position: relative;
}
section .text{
    font-size: 60px;
    margin: 20px 0;
    z-index: 999999;
}
section .right, section .left{
    position: relative;
    width: 50%;
}
section .section-t{
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
}

.parallax{
    background: url('../images/pexels-e-m-5599758.jpg');
    background-color: var(--blue-one);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: bottom center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.parallax::after{
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.parallax .container .text{
    font-size: 60px;
    /* text-shadow: 0 -5px 60px black; */
    color: white;
    padding: 0 20%;
    z-index: 99;
}

section.last-section{
    border-bottom: 1px solid var(--green-two);
}

footer{
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1;
    background-color: #020202;
    /* overflow-y: auto; */
}

footer .container{
    min-height: 75vh;
    width: 100%;
}

footer .navigation .heading{
    color: var(--green-two);
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 30px;
    font-size: 16px;
}

footer .navigation a{
    text-transform: uppercase;
    margin: 10px 0;
}

footer a{
    color: white;
    text-decoration: none;
    margin: 0 20px;
    transition: all ease .5s;
    font-size: 14px;
    line-height: 16px;
}

footer a:hover, header .navigation a:hover, header .navigation a.active{
    color: var(--green-two) !important;
    transition: all ease .3s;
}

footer .copyright{
    color: rgba(255, 255, 255, 0.5);
    padding: 20px 3%;
    margin-bottom: 20px;
}
footer .copyright p{
    font-size: 13px;
}
footer .copyright a{
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

footer .copyright .address{
    display: flex;
    flex-direction: column;
    width: 40%;
}
footer .copyright .address a{
    margin: 0;
}

.partners-logos .slide.to-top{
    animation: sliderBottom 15s linear infinite;
}
.partners-logos .slide.to-bottom{
    animation: sliderTop 15s linear infinite;
}
.partners-logos .slide.to-left{
    animation: sliderLeft 15s linear infinite;
}
.partners-logos .slide.to-right{
    animation: sliderRight 15s linear infinite;
}
.partners-logos .slide.to-top:hover, .partners-logos .slide.slide.to-bottom:hover,
.partners-logos .slide.to-left:hover, .partners-logos .slide.to-right:hover{
    animation-play-state: paused;
}

.get-in-touch .container .text{
    padding: 0 7vw;
    margin-bottom: 50px;
}

@media screen and (max-width: 850px) {
    p{
        font-size: 15px;
    }
    .min-flex-column{
        flex-direction: column;
    }
    .min-flex-row{
        flex-direction: row;
    }
    .min-justify-column{
        justify-content: start;
    }
    .min-flex-column-reverse{
        flex-direction: column-reverse;
    }
    .min-align-center{
        align-items: center;
    }
    .min-align-start{
        align-items: flex-start;
    }
    .min-align-end{
        align-items: flex-end;
    }
    .min-align-space-between{
        align-items: space-between;
    }
    .min-align-space-around{
        align-items: space-around;
    }

    .min-justify-center{
        justify-content: center;
    }
    .min-justify-start{
        justify-content: flex-start;
    }
    .min-justify-end{
        justify-content: flex-end;
    }
    .min-justify-space-between{
        justify-content: space-between;
    }
    .min-justify-space-around{
        justify-content: space-around;
    }

    .min-padding-left{
        padding-left: 7vw;
    }
    .min-padding-right{
        padding-right: 7vw;
    }
    .min-padding-top{
        padding-top: 7vh;
    }
    .min-padding-bottom{
        padding-bottom: 7vh;
    }

    .min-no-padding-left{
        padding-left: 0;
    }
    .min-no-padding-right{
        padding-right: 0;
    }
    .min-no-padding-top{
        padding-top: 0;
    }
    .min-no-padding-bottom{
        padding-bottom: 0;
    }

    .min-no-padding{
        padding: 0;
    }

    .min-text-left{
        text-align: left;
    }
    .min-text-center{
        text-align: center;
    }
    .min-text-end{
        text-align: right;
    }
    .min-text-justify{
        text-align: justify;
    }

    .bg-radial-gradient::after{
        height: 40vh;
        width: 40vw;
    }
    .bg-radial-gradient.bottom-center::after{
        height: 20vh;
    }

    .paradyme-button{
        border-radius: 10px;
        border-width: 2px;
        font-size: 20px;
        width: 100%;
        transition: all ease .5s;
        padding: 15px;
        color: white !important;
    }
    .paradyme-button:hover{
        transition: all ease .5s;
    }

    .paradyme-button::after{
        opacity: 0;
    }
    .paradyme-button:hover::after{
        opacity: 1;
    }

    header.header{
        padding-left: 25px;
    }

    header.header .navigation{
        width: 100%;
        height: calc(100vh - 75px);
        padding: 20px;
        position: absolute;
        right: 0;
        top: 75px;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        background-color: #020022;
        transform: translateX(100%);
        transition: all ease 1s;
    }
    header.header .navigation nav{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 25%;
    }
    header.header .navigation a{
        font-size: 40px;
    }
    header.header .navigation a.paradyme-button{
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        bottom: 10px;
        right: 7%;
        font-size: 25px;
        width: 80%;
    }
    header.header .navigation a.paradyme-button:hover{
        color: var(--blue-one) !important;
    }
    
    header.header .menu-toggle{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    header.header .navigation.active{
        transform: translateX(0);
        transition: all ease 1s;
    }
    header.header .navigation a{
        opacity: 1;
        animation: fadeOut 1s forwards;
    }
    header.header .navigation.active a{
        opacity: 0;
        animation: fadeIn 1s forwards .5s;
    }
    
    header.header .logo{
        width: 50%;
    }
    header.header .logo img{
        width: 80%;
        height: 80%;
    }

    section{
        min-height: 30vh;
        height: auto;
    }
    section .text{
        font-size: 40px;
    }
    section .section-t{
        font-size: 16px;
        margin: 10px 0 20px;
    }

    section .container .left, section .container .right{
        width: 100%;
    }
    
    section.last-section{
        margin-bottom: 0 !important;
    }

    footer{
        position: relative;
        padding-top: 7vh;
    }
    footer .container{
        height: auto;
    }
    footer .navigation{
        justify-content: flex-start;
        padding: 0 7vw 75px;
    }
    footer .navigation nav{
        width: 100%;
        margin-top: 25px;
    }
    footer .navigation nav:first-child{
        margin-top: 0;
    }
    footer .navigation .heading{
        margin: 25px 0;
        font-size: 20px;
    }
    
    footer .navigation a{
        margin: 10px 0;
        font-size: 20px;
    }

    footer .copyright{
        padding: 20px 7%;
    }
    footer .copyright .address{
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        margin: 0;
    }
    
    footer .copyright a{
        margin: 2px 0;
    }

    footer .copyright p{
        margin-top: 20px;
        font-size: 13px;
    }

    .partners-logos .slide.min-to-left{
        animation: sliderLeft 15s linear infinite;
    }
    .partners-logos .slide.min-to-right{
        animation: sliderRight 15s linear infinite;
    }

    .parallax{
        background-attachment: scroll;
    }
    .parallax .container .text{
        font-size: 40px;
        padding: 0 15%;
    }

    .get-in-touch .container .text{
        font-size: 30px;
        padding: 0 5%;
    }
}