﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Cormorant', serif;
}

/*course catalogue styling*/
#catalogue-introcontainer {
    width: 100%;
    background: url('/media/baroquebg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    padding-top: 5%;
    padding-bottom: 5%;
}

#catalogue-introsmalltitle {
    color: #DAC3A9;
    font-size: 23px;
    margin-left: 3%;
    margin-right: 20%;
}

#catalogue-introbigtitle {
    font-weight: 700;
    background: rgb(143,107,41);
    background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    letter-spacing: 3px;
    margin-left: 3%;
    margin-right: 20%;
    padding-bottom: 3%;
}

.catalogue-perkscontainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-left: 3%;
    margin-right: 3%;
    padding-top: 1%;
    padding-bottom: 1%;
}

.catalogue-perksitem {
    width: 45%;
    display: flex;
    flex-direction: row;
    padding-top: 1%;
    padding-bottom: 1%;
    background-color: #240000;
}

.catalogue-perksitemicon {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .catalogue-perksitemicon img {
        width: 40%;
        display: block;
        margin: 0 auto;
    }

.catalogue-perksitemtext {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .catalogue-perksitemtext p {
        color: #DAC3A9;
        font-size: 19px;
    }

    .catalogue-perksitemtext span {
        font-weight: 700;
        background: rgb(143,107,41);
        background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 23px;
        letter-spacing: 1px;
    }

#catalogue-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #5E0506;
    padding-top: 1.5%;
    padding-bottom: 5%;
}
.catalogue-item {
    width: 80%;
    display: flex;
    flex-direction: row;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    margin: 0 auto;
    margin-top: 3.5%;
    transition: all 0.3s;
    border-left: 2px solid #240000;
    text-decoration: none;
}

    .catalogue-item:hover {
        background-color: #4E0405;
        cursor:pointer;
    }

.catalogue-iteminfo {
    width: 75%;
    display: flex;
    align-items: center;
}

    .catalogue-iteminfo p {
        color: #DAC3A9;
        font-size: 22px;
        margin-left: 2%;
        margin-right: 2%;
    }

    .catalogue-iteminfo span {
        font-weight: 700;
        background: rgb(143,107,41);
        background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 40px;
        letter-spacing: 3px;
    }

.catalogue-itemprice {
    font-size: 35px;
    display: flex;
    justify-content: right;
    align-items: flex-end;
}

.catalogue-itemprice p {
        font-size: 40px;
        font-weight: bold;
        background: rgb(143,107,41);
        background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
/*course catalogue media queries*/
@media only screen and (max-width: 725px) {
    .catalogue-perkscontainer {
        flex-direction:column;
    }

    .catalogue-perksitem {
        width: 95%;
        margin: 0 auto;
        margin-top: 3%;
    }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
    .catalogue-item {
        width: 95%;
    }
}

@media only screen and (max-width: 600px) {
    .catalogue-item {
        width: 95%;
        flex-direction: column;
    }
    .catalogue-iteminfo {
        width: 100%;
    }

    .catalogue-itemprice {
        width: 100%;
        padding-top:3%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #catalogue-introsmalltitle {
        font-size: 26px;
    }

    #catalogue-introbigtitle {
        font-size: 50px;
    }
    .catalogue-perksitemtext p {
        font-size: 22px;
    }

    .catalogue-perksitemtext span {
        font-size: 26px;
    }
    .catalogue-iteminfo p {
        font-size: 25px;
    }

    .catalogue-iteminfo span {
        font-size: 50px;
    }
        .catalogue-itemprice p {
            font-size: 50px;
        }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #catalogue-introsmalltitle {
        font-size: 30px;
    }

    #catalogue-introbigtitle {
        font-size: 65px;
    }

    .catalogue-perksitemtext p {
        font-size: 26px;
    }

    .catalogue-perksitemtext span {
        font-size: 30px;
    }

    .catalogue-iteminfo p {
        font-size: 29px;
    }

    .catalogue-iteminfo span {
        font-size: 65px;
    }

    .catalogue-itemprice p {
        font-size: 65px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #catalogue-introsmalltitle {
        font-size: 36px;
    }

    #catalogue-introbigtitle {
        font-size: 85px;
    }

    .catalogue-perksitemtext p {
        font-size: 32px;
    }

    .catalogue-perksitemtext span {
        font-size: 36px;
    }

    .catalogue-iteminfo p {
        font-size: 35px;
    }

    .catalogue-iteminfo span {
        font-size: 85px;
    }

    .catalogue-itemprice p {
        font-size: 85px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #catalogue-introsmalltitle {
        font-size: 46px;
    }

    #catalogue-introbigtitle {
        font-size: 110px;
    }

    .catalogue-perksitemtext p {
        font-size: 39px;
    }

    .catalogue-perksitemtext span {
        font-size: 46px;
    }

    .catalogue-iteminfo p {
        font-size: 45px;
    }

    .catalogue-iteminfo span {
        font-size: 110px;
    }

    .catalogue-itemprice p {
        font-size: 110px;
    }
}

@media only screen and (min-width: 3001px) {
    #catalogue-introsmalltitle {
        font-size: 61px;
    }

    #catalogue-introbigtitle {
        font-size: 135px;
    }

    .catalogue-perksitemtext p {
        font-size: 54px;
    }

    .catalogue-perksitemtext span {
        font-size: 61px;
    }

    .catalogue-iteminfo p {
        font-size: 60px;
    }

    .catalogue-iteminfo span {
        font-size: 135px;
    }

    .catalogue-itemprice p {
        font-size: 135px;
    }
}
/*end of course catalogue media queries*/
/*end of course catalogue styling*/

/*course details page styling*/
#course-container{
    width:100%;
    display:flex;
    flex-direction:row;
}

.chkFullCourse input {width:25px;height:25px
}
#course-finalpayment {
    width: 100%;
    background-color: #5E0506;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
    color: #DAC3A9;
    font-size: 25px;
    justify-items: center;
}
#course-finalpayment label{
    width: 100%;
    background-color: #5E0506;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
    color: #DAC3A9;
    font-size: 25px;
    justify-items: center;
}
#PaymentResults {
    width: 100%;
    background-color: #5E0506;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
    color: #DAC3A9;
    font-size: 25px;
    justify-items: center;
}

#ContentPlaceHolder1_ChkOut {
    background-color: #5EC41A;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-weight: bolder;
    font-size: 22px;
    
}

#ContentPlaceHolder1_ChkOutVIVA {
    background-color: #5ec41a;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-weight: bolder;
    font-size: 22px;
    margin-left: 2%;
}
@media only screen and (max-width: 750px) {
    #ChkOutVIVA {
        margin-top: 2%;
    }
}

@media only screen and (min-width: 1700px) {
    #ChkOut {
        font-size: 31px;
    }

    #ChkOutVIVA {
        font-size: 31px;
    }
}
.hvr-grow-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}

    .hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
        box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
#course-overview {
    width: 100%;
    background-color: #5E0506;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
    color: #DAC3A9;
    font-size: 35px;
    justify-items: center;
}
    #course-overview a {
        align-items: center;
    }
    #course-overview p {
        color: #DAC3A9;
        font-size: 35px;
        margin-left: 5%;
        margin-right: 5%;
    }
    #pnProfile button {
        font-weight: 900;
        font-size: 23px;
        padding: 0.8%;
        text-decoration: none;
        background: rgb(143,107,41);
        background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
        color: #240000;
        border: 2px solid #240000;
        transition: 0.3s ease-in-out;
    }
        #pnProfile button:hover {
            color: #DAC3A9;
        }
        #pnProfile button:nth-of-type(2) {
            margin-left: 2.5%;
            margin-right: 2.5%;
        }

    #pnSubmit button {
        font-weight: 900;
        font-size: 23px;
        padding: 0.8%;
        text-decoration: none;
        background: rgb(143,107,41);
        background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
        color: #240000;
        border: 2px solid #240000;
        transition: 0.3s ease-in-out;
    }

        #pnSubmit button:hover {
            color: #DAC3A9;
        }

        #pnSubmit button:nth-of-type(2) {
            margin-left: 2.5%;
            margin-right: 2.5%;
        }

    #course-overview label {
        color: #DAC3A9;
        font-size: 35px;
        margin-left: 5%;
        margin-right: 5%;
    }
    #course-overview span {
        font-weight: 700;
        background: rgb(143,107,41);
        background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 50px;
        letter-spacing: 3px;
    }    

#course-overviewboxtitle {
    font-weight: 700;
    background: rgb(143,107,41);
    background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    letter-spacing: 3px;
}

#course-details {
    width: 150%;
    background: url('/media/baroquebg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.course-detailsmoduletitle {
    width: 100%;
    text-align: center;
    padding-bottom: 3%;
}
.course-detailsmoduletitle a {
    font-weight: 700;
    background: rgb(143,107,41);
    background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
    letter-spacing: 3px;
}
.course-detailsmoduletitle a:hover {
    cursor: pointer;
}

.course-detailsmodulecontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.course-detailsmoduleitem {
    width: 95%;
    background-color: #240000;
    padding-top: 3%;
    padding-bottom:3%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 10px solid transparent;
    border-image: url(/media/frame1.png);
    border-image-slice: 100;
}
    .course-detailsmoduleitem p {
        font-size: 20px;
        word-spacing: 1px;
        color: #DAC3A9;
        margin-left:5%;
        margin-right:5%;
        text-align:left;
    }
#coursedetails-gallery-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

#coursedetails-gallery-wrapper i:hover {
    cursor: pointer;
}

#coursedetails-gallery-left, #coursedetails-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#coursedetails-gallery-middle {
    width: 90%;
    text-align:center;
}

#coursedetailsg2-l, #coursedetailsg3-l, #coursedetailsg4-l {
    display: none;
    background: rgb(143,107,41);
    background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
}

#coursedetailsg2-r, #coursedetailsg3-r, #coursedetailsg4-r {
    display: none;
    background: rgb(143,107,41);
    background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
}

#coursedetailsg2, #coursedetailsg3, #coursedetailsg4 {
    display: none;
}

#coursedetailsg1-l {
    background: rgb(143,107,41);
    background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
}

#coursedetailsg1-r {
    background: rgb(143,107,41);
    background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
}
.coursedetails-prompt{
    font-weight: 900;
    font-size: 23px;
    padding: 0.8%;
    text-decoration: none;
    background: rgb(143,107,41);
    background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
    color: #240000;
    border: 2px solid #240000;
    transition: 0.3s ease-in-out;
}

    .coursedetails-prompt:hover {
        color: #DAC3A9;
    }
    /*course details page media queries*/
@media only screen and (min-width: 551px) and (max-width: 1080px) {
    #course-container {
        flex-direction:column;
    }

    #course-overview {
        width: 100%;
    }

    #course-details {
        width: 100%;
        padding-top:3%;
        padding-bottom:3%;
    }
}
@media only screen and (max-width: 550px) {
    #course-container {
        flex-direction: column;
    }

    #course-overview {
        width: 100%;
    }

    #course-details {
        width: 100%;
        padding-top: 3%;
        padding-bottom: 3%;
    }
    .course-detailsmodulecontainer {
        flex-direction: column;
    }

    .course-detailsmoduleitem {
        width: 90%;
        margin:0 auto;
        margin-top:3%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #course-overview p {
        font-size: 25px;
    }

    #course-overview span {
        font-size: 60px;
    }

    #course-overviewboxtitle {
        font-size: 33px;
    }
    .course-detailsmoduletitle a {
        font-size: 60px;
    }
    #testp {
        font-size: 25px;
    }
    .course-detailsmoduleitem p {
        font-size: 23px;
    }
    #coursedetailsg2-l, #coursedetailsg3-l, #coursedetailsg4-l {
        font-size: 33px;
    }

    #coursedetailsg2-r, #coursedetailsg3-r, #coursedetailsg4-r {
        font-size: 33px;
    }
    #coursedetailsg1-l {
        font-size: 33px;
    }
    #coursedetailsg1-r {
        font-size: 33px;
    }
    .coursedetails-prompt {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #course-overview p {
        font-size: 29px;
    }

    #course-overview span {
        font-size: 75px;
    }

    #course-overviewboxtitle {
        font-size: 37px;
    }

    .course-detailsmoduletitle a {
        font-size: 75px;
    }

    #testp {
        font-size: 29px;
    }

    .course-detailsmoduleitem p {
        font-size: 27px;
    }

    #coursedetailsg2-l, #coursedetailsg3-l, #coursedetailsg4-l {
        font-size: 37px;
    }

    #coursedetailsg2-r, #coursedetailsg3-r, #coursedetailsg4-r {
        font-size: 37px;
    }

    #coursedetailsg1-l {
        font-size: 37px;
    }

    #coursedetailsg1-r {
        font-size: 37px;
    }
    .coursedetails-prompt {
        font-size:30px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #course-overview p {
        font-size: 35px;
    }

    #course-overview span {
        font-size: 95px;
    }

    #course-overviewboxtitle {
        font-size: 43px;
    }

    .course-detailsmoduletitle a {
        font-size: 95px;
    }

    #testp {
        font-size: 35px;
    }

    .course-detailsmoduleitem p {
        font-size: 33px;
    }

    #coursedetailsg2-l, #coursedetailsg3-l, #coursedetailsg4-l {
        font-size: 43px;
    }

    #coursedetailsg2-r, #coursedetailsg3-r, #coursedetailsg4-r {
        font-size: 43px;
    }

    #coursedetailsg1-l {
        font-size: 43px;
    }

    #coursedetailsg1-r {
        font-size: 43px;
    }
    .coursedetails-prompt {
        font-size: 36px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #course-overview p {
        font-size: 45px;
    }

    #course-overview span {
        font-size: 120px;
    }

    #course-overviewboxtitle {
        font-size: 50px;
    }

    .course-detailsmoduletitle a {
        font-size: 120px;
    }

    #testp {
        font-size: 45px;
    }

    .course-detailsmoduleitem p {
        font-size: 40px;
    }

    #coursedetailsg2-l, #coursedetailsg3-l, #coursedetailsg4-l {
        font-size: 50px;
    }

    #coursedetailsg2-r, #coursedetailsg3-r, #coursedetailsg4-r {
        font-size: 50px;
    }

    #coursedetailsg1-l {
        font-size: 50px;
    }

    #coursedetailsg1-r {
        font-size: 50px;
    }
    .coursedetails-prompt {
        font-size: 46px;
    }
}

@media only screen and (min-width: 3001px) {
    #course-overview p {
        font-size: 60px;
    }

    #course-overview span {
        font-size: 145px;
    }

    #course-overviewboxtitle {
        font-size: 65px;
    }

    .course-detailsmoduletitle a {
        font-size: 145px;
    }

    #testp {
        font-size: 60px;
    }

    .course-detailsmoduleitem p {
        font-size: 55px;
    }

    #coursedetailsg2-l, #coursedetailsg3-l, #coursedetailsg4-l {
        font-size: 65px;
    }

    #coursedetailsg2-r, #coursedetailsg3-r, #coursedetailsg4-r {
        font-size: 65px;
    }

    #coursedetailsg1-l {
        font-size: 65px;
    }

    #coursedetailsg1-r {
        font-size: 65px;
    }
    .coursedetails-prompt {
        font-size: 61px;
    }
}

    /*end of course details page media queries*/
    /*end of course details page styling*/

    /*course presentation page styling*/
#coursepresentation-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    background: url('/media/baroquebg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}
#coursepresentation-textcontainer {
    width: 50%;
    padding-top: 3%;
    padding-bottom: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#coursepresentation-text{
    width:90%;
    padding-top:3%;
    padding-bottom:3%;
    display:block;
    margin:0 auto;
}
    #coursepresentation-text p {
        color: #DAC3A9;
        font-size: 22px;
        margin-left: 3%;
        margin-right: 3%;
    }
#coursepresentation-videocontainer {
    width: 50%;
    padding-top: 5%;
    padding-bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#coursepresentation-video {
    width: 85%;
    display: block;
    margin: 0 auto;
    border: 10px solid transparent;
    border-image: url(/media/frame1.png);
    border-image-slice: 100;
    background-color: #240000;
    padding-top: 3%;
    padding-bottom: 3%;
    align-items:center;
}
    #coursepresentation-video video {
        width: 95%;
        display: block;
        margin: 0 auto;
    }
/*course presentation page media queries*/
@media only screen and (max-width: 1000px) {
    #coursepresentation-container {
        flex-direction: column;
    }

    #coursepresentation-textcontainer {
        width: 100%;
    }
    #coursepresentation-videocontainer {
        width: 100%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #coursepresentation-text p {
        font-size: 25px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #coursepresentation-text p {
        font-size: 29px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #coursepresentation-text p {
        font-size: 35px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #coursepresentation-text p {
        font-size: 45px;
    }
}

@media only screen and (min-width: 3001px) {
    #coursepresentation-text p {
        font-size: 60px;
    }
}
/*end of course presentation page media queries*/
/*end of course presentation page styling*/



.hvr-underline-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

    .hvr-underline-reveal:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(143,107,41);
        background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
        height: 4px;
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }


#ContentPlaceHolder1_btnSubmit {
    padding: 1%;
    background: rgb(143,107,41);
    background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
    border: none;
    outline: none;
    color: #240000;
    margin-left: 20%;
    font-size: 20px;
}

    #ContentPlaceHolder1_btnSubmit:hover {
        cursor: pointer;
    }

#ContentPlaceHolder1_btProfile {
    padding: 1%;
    background: rgb(143,107,41);
    background: linear-gradient(180deg, rgba(143,107,41,1) 0%, rgba(253,224,141,1) 50%, rgba(143,107,41,1) 100%);
    border: none;
    outline: none;
    color: #240000;
    margin-left: 20%;
    font-size: 20px;
}

    #ContentPlaceHolder1_btProfile:hover {
        cursor: pointer;
    }