/* Custom - CSS */
/* Custom - CSS */

.colorback {
    padding: 30px 0px;
    background-color: #28477F;
}

.colorback p,
.colorback li,
.colorback ul,
.colorback strong {
    color: #fff;
}

.colorback h2,
.colorback h3,
.colorback h4,
.colorback h1 {

    color: #000;
}



.colorback2 {
    padding: 30px 0px;
    background-color: #BC7CAF;
    border-bottom: 5px white solid;
}

.colorback2 p,
.colorback2 li,
.colorback2 ul,
.colorback2 b,
.colorback2 strong {
    color: #fff;
}

.colorback2 h2,
.colorback2 h3,
.colorback2 h4,
.colorback2 h1 {

    color: #F8B4D4;
}



hr {
    background: url("../img/hr.png") no-repeat top center;
    background-size: contain;
    display: block;
    height: 76px;
    border: 0;
    position: relative;
}

hr:before,
hr:after {
    content: '';
    display: block;
    position: absolute;
    background: #4D4D4D;
    height: 2px;
    top: 22px;
}

hr:before {
    left: 0;
    right: 60%;
    margin-right: 10px;
    margin-left: 70px;
}

hr:after {
    right: 0;
    left: 60%;
    margin-left: 10px;
    margin-right: 70px;
}


.roof .workspace .element {
    align-self: center;
    justify-self: center;
}

.roof .workspace .element .element h1,
.roof .workspace .element .element h2,
.roof .workspace .element .element h3,
.roof .workspace .element .element h4,
.roof .workspace .element .element p {
    justify-self: center;
    text-align: center;
}



/*
@media(max-width: 768px) {
    .roof .workspace .element {
        align-self: left;
        justify-self: left;
    }

    .roof .workspace .element .element h1,
    .roof .workspace .element .element h3,
    .roof .workspace .element .element p {
        justify-self: left;
        text-align: left;
    }
}*/


.imageback {
    padding: 120px 0px;
    /*    background-color: #41BBAE;*/
    background-image: url("../img/imgback.jpg");
    background-repeat: no-repeat;
    background-size: cover;



}


.imageback h1 {

    color: #50FD00;

    text-align: center;
    justify-self: center;
    font-size: xx-large;

}

.imageback p {

    color: #fff;
}

.imageback h2 {

    color: #253236;
    text-align: center;
    justify-self: center;


}




/*
.imageback h3,
.imageback h4 {

    color: #fff;
    font-size: xx-large;
}*/


/*
.imageback strong {

    color: #fff
}
*/


.zoom {
    transition: transform .2s;
}

.zoom:hover {
    transform: scale(1.05);
}


.cardyc {

    border: 4px solid #000;
    padding: 20px;
    /*    border-radius: 40px;*/
    background-color: #DBCEBD;
    text-align: center;
    /*    box-shadow: #473d44 7px 7px;*/
}

}


.cardyc p {

    /*    color: #828B5E;*/
    text-align: center;
    justify-self: center;
}

.cardyc h1 {

    color: #000;
    text-align: center;
    justify-self: center;


}

.cardyc h2,
.cardyc h4,
.cardyc ul,
.cardyc li {

    color: white;
    justify-self: center;
    text-align: center;
    font-size: larger;
}

.cardyb {

    border: 5px solid #ECA054;
    padding: 20px;
    border-radius: 40px;
    background-color: #F5CDA7;
    text-align: center;

}


.cardyb p {

    color: black;
    text-align: left;
    justify-self: left;
}

.cardyb h1 {

    color: black;
    text-align: left;
    justify-self: left;

}

.cardyb h3,
.cardyb ul,
.cardyb li {

    color: black;
    justify-self: left;
    text-align: left;
}


.bounce {
    -webkit-animation: bounce 1.5s infinite;
}

.bounce2 {
    animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}


.mobishow {
    display: none !important;
}

.mobihide {
    display: grid !important;
}

@media (max-width: 600px) {
    .mobishow {
        display: grid !important
    }

    .mobihide {
        display: none !important;
    }
}

.shineytext {

    background: linear-gradient(to right, #996b31, #CAB06C, #996b31);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.bluetext {

    color: #303A97;
}


.bg-white {
    padding: 40px;
    background-color: rgba(189, 229, 255, 0.8);
    border: 9px #BFC2E4 double;
}

.bg-white h1 {

    color: #fff;
    font-size: xx-large;
}

.bg-white h4 {

    color: #fff;
    text-align: center
}


/* CSS */
.button-85 {
    padding: 14px 22px;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-85:before {
    content: "";
    background: linear-gradient(45deg,
            #50FD00,
            #48ff00,
            #fffb00,
            #48ff00,
            #50FD00,
            #fffb00,
            #50FD00,
            #48ff00,
            #fffb00,
            #50FD00);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}
