﻿h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    text-transform: none;
}

h1 {
    font-size:65px;
    font-weight: 800;
   
}

h2 {
    font-size: 55px;
    font-weight: 600;
}

h3 {
    font-size: 28px;
    font-weight: 500;
}

h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: unset;
}

h5 {
    font-size: 21px;
    font-weight: 300;
    line-height: 24px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    body{
        font-size:16px;
        line-height:20px;
    }


    h2 {
        font-size: 45px;
    }

    h4 {
        font-size: 20px;
        line-height: 24px;
    }
}


.headerMainMenuLevel {
    font-size: 16px !important;
}

.subtitleSize{
    font-size:14px;
}

.inputSize {
    font-size: 16px;
}

.vcenter {
    float: none;
    vertical-align: middle;
    display: inline-block;
    margin-right: -4px;
}

.introGrad {
    background: rgb(241,241,241);
    background: linear-gradient(180deg, rgba(241,241,241,1) 0%, rgba(255,255,255,1) 25%, rgba(255,255,255,1) 100%, rgba(241,241,241,1) 100%);
    height: unset;
}

img.CEpdfshadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.Learn{
    font-size:1.1em;
}

.gradTopBlueFull {
    height: 3px;
    background-image: linear-gradient(white, #313144);
}

.gradBottomBlueFull {
    height: 3px;
    background-image: linear-gradient(#313144, white);
}

.gradTopGreyFull {
    height: 3px;
    background-image: linear-gradient(white, #ACACAC);
}

.gradBottomGreyFull {
    height: 3px;
    background-image: linear-gradient(#ACACAC, white);
}

.gradTopLightGreyFull {
    height: 3px;
    background-image: linear-gradient(white, #EEEEEE);
}

.gradBottomLightGreyFull {
    height: 3px;
    background-image: linear-gradient(#EEEEEE, white);
}

.gradTopLightGreyFull1 {
    height: 3px;
    background-image: linear-gradient(white, #e5ebf2);
}

.gradBottomLightGreyFull1 {
    height: 3px;
    background-image: linear-gradient(#e5ebf2, white);
}

.gradTopPinkFull {
    height: 3px;
    background-image: linear-gradient(white, #F18EA0);
}

.gradBottomPinkFull {
    height: 3px;
    background-image: linear-gradient(#F18EA0, white);
}

.customBlueLink {
    color: #2b8ce7;
    font-weight: 600;
}

    .customBlueLink:hover {
        text-decoration: underline;
        font-weight: 800;
        cursor: pointer;
    }

@media(max-width:468px) {
    .customBlueLink {
        text-decoration: underline;
    }

}

    .customBlackLink {
        color: black;
        font-weight: 600;
      }

        .customBlackLink:hover {
            text-decoration: underline;
            color: #0019ff;
            font-weight: 800;
        }


    .customWhiteLink {
        color: white;
        font-weight: 600;
    }

        .customWhiteLink:hover {
            text-decoration: underline;
            color: #0019ff;
            font-weight: 800;
        }


/* The Modal (background) */
.local-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999 !important; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.local-modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 60%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.local-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .local-close:hover,
    .local-close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

/* Modal Header */
.local-modal-header {
    padding: 12px 16px;
    background-color: white;
    color: black;
    border-radius: 8px 8px 0px 0px;
    border-bottom: 1px solid lightgrey;
}

/* Modal Body */
.local-modal-body {
    padding: 16px;
}

/* Modal Footer */
.local-modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Modal Content */
.local-modal-content {
    position: relative;
    background-color: #fefefe;
    margin-top: 150px;
    padding: 0;
    border: 1px solid #888;
    /*width: 80%;*/
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: localAnimatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@keyframes localAnimatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@media(max-width: 820px) {
    .local-modal-content {
        margin-top: 160px;
        width: 85%;
    }
}

@media(max-width: 500px) {
    .local-modal-content {
        margin-top: 25px;
        width: 90%;
    }
}