﻿@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;

}

/*navigation styling*/
#navigationcontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-top: 0.75%;
    padding-bottom: 0.75%;
    background-color: #240000;
}

.navlinkitem {
    width: 14.28%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .navlinkitem a {
        color: #C29A70;
        font-size: 18px;
        text-decoration: none;
        font-weight: bold;
        letter-spacing: 1px;
        transition: all 0.3s;
    }

    .navlinkitem .active {
        color: #DAC3A9;
        border-top: 1px solid #DAC3A9;
    }


#logocontainer {
    width: 100%;
    background-color: #1c0000;
    padding-top: 1%;
    padding-bottom: 1%;
    text-align: center;
}

    #logocontainer img {
        margin: 0 auto;
        width: 35%;
    }

    #logonlink a {
        color: #C29A70;
        font-size: 24px;
        text-decoration: none;
        font-weight: bold;
        letter-spacing: 1px;
        transition: all 0.3s;
        position: absolute;
        top: 10px;
        right: 20px;
    }
#LoginButtons
{
    text-align:right;
    margin-right:20px;
}
#profile-container {
    width: 100%;
    background-color: #1c0000;
    padding-top: 1%;
    padding-bottom: 1%;
}
#profile-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;
}
#mobilenav {
    background-color: #240000;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-top:2%;
    padding-bottom:2%;
}
#mobilenav i {
    margin-left: 5%;
    font-size: 25px;
    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;
    text-decoration: none;
}

    #mobilenav i:hover {
        cursor: pointer;
    }

#mobilenav-links {
    width: 100%;
    display: none;
    z-index: 9999;
    position: absolute;
}

#mobilenav-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

    #mobilenav-wrapper a {
        padding-top: 1.5%;
        padding-bottom: 1.5%;
        width: 100%;
        background-color: #240000;
        text-decoration: none;
        color: #C29A70;
        font-size: 18px;
        transition: all 1s;
        font-weight: bold;
        letter-spacing: 1px;
    }

        #mobilenav-wrapper a:hover {
            background-color: #5E0506;
            color: #DAC3A9;
        }
/*navigation media queries*/
@media only screen and (max-width: 700px) {
    #navigationcontainer{
        display:none;
    }
    #mobilenav {
        display: flex;
    }
    #logocontainer img {
        width: 65%;
    }

}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    .navlinkitem a {
        font-size: 23px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    .navlinkitem a {
        font-size: 27px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    .navlinkitem a {
        font-size: 33px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    .navlinkitem a {
        font-size: 40px;
    }
}

@media only screen and (min-width: 3001px) {
    .navlinkitem a {
        font-size: 55px;
    }
}
/*end of navigation media queries*/
/*end of navigation styling*/

/*newsletter styling*/
#newslettercontainer {
    width: 100%;
    background-color:#5E0506;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
}

#newsletter {
    width: 85%;
    display: block;
    margin: 0 auto;
    background-color: rgba(36,0,0,0.8);
    text-align: center;
    padding-top: 0.75%;
    padding-bottom: 0.75%;
    border: 10px solid rgba(36, 0, 0, 0.7);
}

    #newsletter ::placeholder {
        color: #6A6562;
        font-size: 16px;
    }

#newslettertitle {
    padding-bottom: 0.5%;
    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;
}

#newslettersubtitle {
    font-size: 21px;
    font-weight: bold;
    padding-bottom: 3%;
    color: #DAC3A9;
}

#newsletter input[type="text"] {
    height: 6.5vh;
    width: 25vw;
    outline: none;
    border: none;
    font-size: 21px;
}

#newsletter input[type="submit"] {
    font-family: 'Cormorant', serif;
    font-weight:bold;
    height: 6.5vh;
    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%);
    outline: none;
    border: none;
    font-size: 24px;
    padding-left: 1%;
    padding-right: 1%;
    transition: all 1.25s;
}

    #newsletter input[type="submit"]:hover {
        cursor: pointer;
        color: #D8D6D5;
        background: none;
        background: none;
        background-color: #5E0506;
    }

#newsletter input[type="checkbox"] {
}

#newsletter label {
    font-size: 20px;
    color: #DAC3A9;
}
/*newsletter media queries*/
@media only screen and (min-width: 651px) and (max-width: 850px) {

        #newsletter input[type="text"] {
            width: 70%;
            margin-bottom: 3%;
        }
}
@media only screen and (min-width: 501px) and (max-width: 650px) {
    #newsletter {
        width: 95%;
    }
        #newsletter input[type="text"] {
            width: 80%;
            margin-bottom: 3%;
        }
}
@media only screen and (max-width: 500px) {
    #newsletter {
        width: 95%;
    }
        #newsletter input[type="text"] {
            width: 90%;
            margin-bottom:3%;
        }
       
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #newsletter ::placeholder {
        font-size: 19px;
    }

    #newslettertitle {
        font-size: 60px;
    }

    #newslettersubtitle {
        font-size: 25px;
    }

    #newsletter input[type="text"] {
        font-size: 23px;
    }

    #newsletter input[type="submit"] {
        font-size: 25px;
    }

    #newsletter label {
        font-size: 21px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #newsletter ::placeholder {
        font-size: 23px;
    }

    #newslettertitle {
        font-size: 75px;
    }

    #newslettersubtitle {
        font-size: 27px;
    }

    #newsletter input[type="text"] {
        font-size: 25px;
    }

    #newsletter input[type="submit"] {
        font-size: 27px;
    }

    #newsletter label {
        font-size: 25px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #newsletter ::placeholder {
        font-size: 29px;
    }

    #newslettertitle {
        font-size: 95px;
    }

    #newslettersubtitle {
        font-size: 35px;
    }

    #newsletter input[type="text"] {
        font-size: 33px;
    }

    #newsletter input[type="submit"] {
        font-size: 35px;
    }

    #newsletter label {
        font-size: 31px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #newsletter ::placeholder {
        font-size: 36px;
    }

    #newslettertitle {
        font-size: 120px;
    }

    #newslettersubtitle {
        font-size: 45px;
    }

    #newsletter input[type="text"] {
        font-size: 40px;
    }

    #newsletter input[type="submit"] {
        font-size: 45px;
    }

    #newsletter label {
        font-size: 38px;
    }
}

@media only screen and (min-width: 3001px) {
    #newsletter ::placeholder {
        font-size: 51px;
    }

    #newslettertitle {
        font-size: 145px;
    }

    #newslettersubtitle {
        font-size: 60px;
    }

    #newsletter input[type="text"] {
        font-size: 55px;
    }

    #newsletter input[type="submit"] {
        font-size: 60px;
    }

    #newsletter label {
        font-size: 53px;
    }
}
/*end of newsletter media queries*/
/*end of newsletter styling*/

/*footer styling*/

/*footer media queries*/
/*end of footer media queries*/
/*end of footer styling*/

/*homepage styling*/
#hp-bigcontainer {
    width: 100%;
    background: url('/media/baroquebg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}
#hp-header {
    display: flex;
    flex-direction: row;
}
.hp-headerfiller{
    width:2.5%;
}
#hp-headertext {
    width: 70%;
    display: flex;
    justify-content: center;

    flex-direction:column;
}
#hp-headerphoto {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.5%;
    padding-bottom: 1%;
}
    #hp-headerphoto img {
        width: 90%;
        display: block;
        margin: 0 auto;
        padding:1%;
        border: 10px solid transparent;
        border-image: url(/media/frame1.png);
        border-image-slice: 100;
    }
#hp-headertitle {
    letter-spacing: 3px;
    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;
    margin-left: 3%;
    margin-right: 10%;
    font-weight:normal;
}


#hp-headersubtitle {
    margin-left: 3%;
    margin-right: 10%;
    color: #DAC3A9;
    font-size: 21px;
}
    #hp-headersubtitle a {
        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;
    }
        #hp-headersubtitle a:hover{
            color:#DAC3A9;
        }
        #hp-headersubtitle a:nth-of-type(2) {
            margin-left: 2.5%;
            margin-right: 2.5%;
        }
#hp-mobileheaderphoto{
    width:100%;
    display:none;
}
    #hp-mobileheaderphoto img {
        width: 80%;
        display: block;
        margin: 0 auto;
        padding: 1%;
        border: 10px solid transparent;
        border-image: url(/media/frame1.png);
        border-image-slice: 100;
    }
/*homepage header media queries*/
@media only screen and (min-width: 951px) and (max-width: 1150px) {
    #hp-headerphoto img {
        width: 100%;
    }
#hp-headertext{
    padding-top:5%;
}
}
@media only screen and (min-width: 611px) and (max-width: 950px) {
    #hp-header {
        flex-direction: column;
    }
    .hp-headerfiller {
       display:none;
    }
    #hp-headertext {
        width: 100%;
        padding-top:5%;
        padding-bottom:5%;
    }
    #hp-headerphoto {
        display: none;
    }
    #hp-mobileheaderphoto {
        display: block;
    }
        #hp-mobileheaderphoto img {
            width: 45%;
        }
}
@media only screen and (max-width: 610px) {
    #hp-header {
        flex-direction: column;
    }

    .hp-headerfiller {
        display: none;
    }

    #hp-headertext {
        width: 100%;
        padding-top: 5%;
        padding-bottom: 5%;
    }

    #hp-headerphoto {
        display: none;
    }
    #hp-headersubtitle {
        margin-left: 1.5%;
        margin-right: 1.5%;
    }
    #hp-mobileheaderphoto {
        display: block;
    }
        #hp-mobileheaderphoto img {
            width: 70%;
        }
}

@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #hp-headertitle {
        font-size: 60px;
    }

    #hp-headersubtitle {
        font-size: 24px;
    }

        #hp-headersubtitle a {
            font-size: 26px;
        }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #hp-headertitle {
        font-size: 75px;
    }
    #hp-headersubtitle {
        font-size: 28px;
    }
        #hp-headersubtitle a {
            font-size: 30px;
        }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #hp-headertitle {
        font-size: 95px;
    }
    #hp-headersubtitle {
        font-size: 34px;
    }
        #hp-headersubtitle a {
            font-size: 36px;
        }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #hp-headertitle {
        font-size: 120px;
    }

    #hp-headersubtitle {
        font-size: 41px;
    }

        #hp-headersubtitle a {
            font-size: 46px;
        }
}

@media only screen and (min-width: 3001px) {
    #hp-headertitle {
        font-size: 145px;
    }

    #hp-headersubtitle {
        font-size: 56px;
    }

        #hp-headersubtitle a {
            font-size: 61px;
        }
}

/*end of homepage header media queries*/
#hp-studiointrocontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-bottom: 1.5%;
    padding-top: 1%;
}

#hp-studiointrofiller {
    width: 5%;
}

#hp-studiointrotext {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hp-studiointrophoto {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #hp-studiointrophoto img {
        width: 100%;
        display: block;
        margin: 0 auto;
    }

#hp-studiointrocontent {
    margin-left: 5%;
    margin-right: 5%;
    color: #DAC3A9;
    font-size: 21px;
}

#hp-studiointrotitle {
    letter-spacing: 3px;
    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;
}

.hp-studiointrolink {
    font-size: 35px;
    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;
    transition: all 0.5s;
}

    .hp-studiointrolink:hover {
        background: #DAC3A9;
        background: linear-gradient(180deg, #DAC3A9 0%, #DAC3A9 50%, #DAC3A9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
#hp-mobilestudiointrophoto {
    width: 100%;
    display: none;
}

    #hp-mobilestudiointrophoto img {
        width: 80%;
        display: block;
        margin: 0 auto;
    } 

#hp-quotecontainer {
    width: 100%;
    background: url('/media/fabrictexture.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #5E0506;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    text-align: center;
}
#hp-quote {
    width: 90%;
    display: block;
    margin: 0 auto;
    background-color: rgba(36,0,0,0.8);
    border: 10px solid rgba(36, 0, 0, 0.7);
}
    #hp-quotecontainer p {
        margin-left: 5%;
        margin-right: 5%;
        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: 45px;
    }
/*homepage intro and quote section media queries*/
@media only screen and (min-width: 611px) and (max-width: 950px) {
    #hp-studiointrocontainer {
        flex-direction: column;
    }
    #hp-studiointrofiller {
        display:none;
    }
    #hp-studiointrotext {
        width: 100%;
        padding-top:3%;
    }

    #hp-studiointrophoto {
        display: none;
    }
    #hp-mobilestudiointrophoto {
        display: block;
    }
        #hp-mobilestudiointrophoto img {
            width: 75%;
            padding-top:3%;
        } 
}
@media only screen and (max-width: 610px) {
    #hp-studiointrocontainer {
        flex-direction: column;
    }

    #hp-studiointrofiller {
        display: none;
    }

    #hp-studiointrotext {
        width: 100%;
        padding-top: 3%;
    }

    #hp-studiointrophoto {
        display: none;
    }
    #hp-mobilestudiointrophoto {
        display: block;
    }
        #hp-mobilestudiointrophoto img {
            width: 90%;
            padding-top: 3%;
        } 
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #hp-studiointrocontent {
        font-size: 24px;
    }

    #hp-studiointrotitle {
        font-size: 60px;
    }

    .hp-studiointrolink {
        font-size: 39px;
    }

    #hp-quotecontainer p {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #hp-studiointrocontent {
        font-size: 28px;
    }

    #hp-studiointrotitle {
        font-size: 75px;
    }

    .hp-studiointrolink {
        font-size: 43px;
    }
    #hp-quotecontainer p {
        font-size: 75px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #hp-studiointrocontent {
        font-size: 34px;
    }

    #hp-studiointrotitle {
        font-size: 95px;
    }

    .hp-studiointrolink {
        font-size: 49px;
    }
    #hp-quotecontainer p {
        font-size: 95px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #hp-studiointrocontent {
        font-size: 41px;
    }

    #hp-studiointrotitle {
        font-size: 120px;
    }

    .hp-studiointrolink {
        font-size: 71px;
    }
    #hp-quotecontainer p {
        font-size: 120px;
    }
}

@media only screen and (min-width: 3001px) {
    #hp-studiointrocontent {
        font-size: 56px;
    }

    #hp-studiointrotitle {
        font-size: 145px;
    }

    .hp-studiointrolink {
        font-size: 86px;
    }
    #hp-quotecontainer p {
        font-size: 145px;
    }
}
/*end of homepage intro and quote section media queries*/
#hp-biocontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
  background-color:#5E0506;
    padding-top: 2%;
    padding-bottom: 2%;
}

.hp-biofiller {
    width: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .hp-biofiller i {
        color: #DAC3A9;
        font-size: 10px;
        font-weight: bold;
    }

        .hp-biofiller i:hover {
            cursor: pointer;
        }

#hp-galleryphoto1-2, #hp-galleryphoto1-3,  #hp-galleryphoto1-4 {
    display: none;
}

#hp-biocontent {
    width: 67%;
    display: flex;
    justify-content: center;
    flex-direction:column;
}


    #hp-biocontent p {
        margin-left: 5%;
        margin-right: 5%;
        color: #DAC3A9;
        font-size: 21px;
    }

#hp-biotitle {
    letter-spacing: 3px;
    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;
    margin-left: 5%;
    margin-right: 5%;
    font-weight:normal;
}

#hp-biophotocontainer {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.hp-biophoto {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hp-biophoto img {
        width: 100%;
        display: block;
        margin: 0 auto;
    }

#hp-biophotoprompt {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top:2%;
    padding-bottom:2%;
}

    #hp-biophotoprompt a {
        font-weight: bold;
        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%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 21px;
    }
#hp-mobilebiocontent {
    display: none;
    width:100%;
    background-color:#5E0506;
    padding-top:3%;
    padding-bottom:3%;
}
#hp-mobilebiosubtitle {
    margin-left: 5%;
    margin-right: 5%;
    color: #DAC3A9;
    font-size: 21px;
}
#hp-mobilebiotitle {
    letter-spacing: 3px;
    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;
    margin-left: 5%;
    margin-right: 5%;
}
/*homepage header bio and gallery media queries*/
@media only screen and (min-width: 731px) and (max-width: 980px) {
    #hp-biocontainer{
        justify-content:center;
    }
    #hp-biophotocontainer {
        width: 60%;
    }
    .hp-biophoto img {
        width: 95%;
    }
    #hp-biocontent {
        display: none;
    }
    #hp-mobilebiocontent{
        display:block;
    }
}
@media only screen and (min-width: 576px) and (max-width: 730px) {
    #hp-biocontainer {
        justify-content: center;
    }

    #hp-biophotocontainer {
        width: 75%;
    }

    .hp-biophoto img {
        width: 100%;
    }

    #hp-biocontent {
        display: none;
    }

    #hp-mobilebiocontent {
        display: block;
    }
}
@media only screen and (max-width: 575px) {
    #hp-biocontainer {
        justify-content: center;
    }
    .hp-biofiller{
        width:10%;
    }
    #hp-biophotocontainer {
        width: 85%;
    }
    .hp-biophoto img {
        width: 100%;
    }

    #hp-biocontent {
        display: none;
    }

    #hp-mobilebiocontent {
        display: block;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    .hp-biofiller i {
        font-size: 15px;
    }

    #hp-biocontent p {
        font-size: 24px;
    }

    #hp-biotitle {
        font-size: 60px;
    }

    #hp-biophotoprompt a {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    .hp-biofiller i {
        font-size: 19px;
    }

    #hp-biocontent p {
        font-size: 28px;
    }

    #hp-biotitle {
        font-size: 75px;
    }

    #hp-biophotoprompt a {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    .hp-biofiller i {
        font-size: 21px;
    }

    #hp-biocontent p {
        font-size: 34px;
    }

    #hp-biotitle {
        font-size: 95px;
    }

    #hp-biophotoprompt a {
        font-size: 34px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    .hp-biofiller i {
        font-size: 28px;
    }

    #hp-biocontent p {
        font-size: 41px;
    }

    #hp-biotitle {
        font-size: 120px;
    }

    #hp-biophotoprompt a {
        font-size: 41px;
    }
}

@media only screen and (min-width: 3001px) {
    .hp-biofiller i {
        font-size: 43px;
    }

    #hp-biocontent p {
        font-size: 56px;
    }

    #hp-biotitle {
        font-size: 145px;
    }

    #hp-biophotoprompt a {
        font-size: 56px;
    }
}
/*end of homepage bio and gallery media queries*/
#hp-depobigcontainer {
    width: 100%;
    background: url('/media/fabrictexture.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}
#hp-depoimentoscontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
}
#hp-depoimentostext {
    width: 35%;
    display: flex;
    justify-content: center;
    flex-direction:column;
}
    #hp-depoimentostext p {
        font-size: 21px;
        color: #DAC3A9;
        margin-left: 5%;
        margin-right: 5%;
    }
#hp-depoimentostexttitle {
    font-size: 50px;
    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;
    letter-spacing: 2px;
    margin-left: 5%;
    margin-right: 5%;
    font-weight:normal;
}
#hp-depoimentosvideos {
    width: 65%;
    padding-top: 3%;
    padding-bottom: 3%;
}
#depoimentos-gallery-wrapper {
    width: 75%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

    #depoimentos-gallery-wrapper i:hover {
        cursor: pointer;
    }

#depoimentos-gallery-left, #depoimentos-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#depoimentos-gallery-middle video {
    width: 100%;
}

#depoimentos-gallery-middle {
    width: 90%;
}

#depg2-l, #depg3-l, #depg4-l, #depg5-l, #depg6-l, #depg7-l {
    display: none;
    color: #DAC3A9;
    font-size: 30px;
}

#depg2-r, #depg3-r, #depg4-r, #depg5-r, #depg6-r, #depg7-r {
    display: none;
    color: #DAC3A9;
    font-size: 30px;
}

#depg2-img, #depg3-img, #depg4-img, #depg5-img, #depg6-img, #depg7-img {
    display: none;
}

#depg1-l {
    color: #DAC3A9;
    font-size: 30px;
}

#depg1-r {
    color: #DAC3A9;
    font-size: 30px;
}

.hp-depoimentosrow{
    width:98%;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    margin:0 auto;
}
#hp-depoimentosrow1 {
    padding-top: 1.5%;
    padding-bottom: 3%;
}
.hp-depoimentosrowitem {
    width: 30%;
    background-color: #240000;
    border: 10px solid transparent;
    border-image: url(/media/frame1.png);
    border-image-slice: 100;
}
    /*depoimentos section media queries*/
    @media only screen and (min-width: 501px) and (max-width: 950px) {
        #hp-depoimentoscontainer {
        flex-direction:column;
    }

    #hp-depoimentostext {
        width: 100%;
    }
    #hp-depoimentosvideos {
        width: 100%;
    }
}
@media only screen and (max-width: 500px) {
    #hp-depoimentoscontainer {
        flex-direction: column;
    }

    #hp-depoimentostext {
        width: 100%;
    }

    #hp-depoimentosvideos {
        width: 100%;
    }
    #depoimentos-gallery-wrapper {
        width: 95%;
    }
}

@media only screen and (min-width: 501px) and (max-width:960px) {
    .hp-depoimentosrow {
        flex-direction: column;
    }
    .hp-depoimentosrowitem {
        width: 85%;
        display:block;
        margin:0 auto;
        margin-top:3%;
    }
}
@media only screen and (max-width:500px) {
    .hp-depoimentosrow {
        flex-direction: column;
    }
    .hp-depoimentosrowitem {
        width: 95%;
        display: block;
        margin: 0 auto;
        margin-top: 3%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #hp-depoimentostext p {
        font-size: 24px;
    }

    #hp-depoimentostexttitle {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #hp-depoimentostext p {
        font-size: 28px;
    }

    #hp-depoimentostexttitle {
        font-size: 75px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #hp-depoimentostext p {
        font-size: 34px;
    }

    #hp-depoimentostexttitle {
        font-size: 95px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #hp-depoimentostext p {
        font-size: 41px;
    }

    #hp-depoimentostexttitle {
        font-size: 120px;
    }
}

@media only screen and (min-width: 3001px) {
    #hp-depoimentostext p {
        font-size: 56px;
    }

    #hp-depoimentostexttitle {
        font-size: 145px;
    }
}
/*end of depoimentos section media queries*/
/*end of homepage styling*/
/*about page styling*/
#about-bigcontainer1 {
    background: url('/media/fabrictexture.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#abtcontainer1 {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-top: 3%;
    padding-bottom: 3%;
}

#abtcontainer1-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #abtcontainer1-image img {
        width: 85%;
        display: block;
        margin: 0 auto;
    }

#abtcontainer1-title {
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #abtcontainer1-title p {
        margin-left: 5%;
        margin-right: 5%;
        text-align: left;
        font-size: 50px;
        padding-bottom: 2%;
        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;
        letter-spacing: 2px;
        font-weight: 900;
    }

#abtcontainer1-subtitle {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #abtcontainer1-subtitle p {
        margin-left: 5%;
        margin-right: 5%;
        font-size: 21px;
        color: #DAC3A9;
        text-align: left;
        padding-bottom: 1.5%;
    }
#abtcontainer2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-top: 3%;
    padding-bottom: 3%;
}

#abtcontainer2-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #abtcontainer2-image img {
        width: 85%;
        display: block;
        margin: 0 auto;
    }
#abtcontainer2-subtitle {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #abtcontainer2-subtitle p {
        margin-left: 5%;
        margin-right: 5%;
        font-size: 21px;
        color: #DAC3A9;
        text-align: left;
        padding-bottom: 1.5%;
    }
#mobileabtcontainer1-image {
  display:none;
}
/*about page first text heavy section media queries*/
@media only screen and (min-width: 691px) and (max-width: 1150px) {
    #abtcontainer1 {
       justify-content:center;
       flex-direction:column;
    }
    #abtcontainer1-image {
       display:none;
    }
    #mobileabtcontainer1-image {
        width: 35%;
        display:block;
        margin:0 auto;
    }

        #mobileabtcontainer1-image img {
            width: 100%;
        }

    #abtcontainer1-title {
        width: 100%;
    }
    #abtcontainer1-subtitle {
        width: 100%;
    }


    #abtcontainer2 {
        flex-direction: column;
    }

    #abtcontainer2-image {
        width: 35%;
        margin:0 auto;
    }

        #abtcontainer2-image img {
            width: 100%;
        }

    #abtcontainer2-subtitle {
        width: 100%;
    }
}
@media only screen and (min-width: 501px) and (max-width: 690px) {
    #abtcontainer1 {
        justify-content: center;
        flex-direction:column;
    }

    #abtcontainer1-image {
       display:none;
    }

    #mobileabtcontainer1-image {
        width: 50%;
        display:block;
        margin:0 auto;
    }
        #mobileabtcontainer1-image img {
            width: 90%;
        }

    #abtcontainer1-title {
        width: 100%;
    }

    #abtcontainer1-subtitle {
       width:100%;
    }


    #abtcontainer2 {
        flex-direction: column;
    }

    #abtcontainer2-image {
        width: 50%;
        margin: 0 auto;
    }

        #abtcontainer2-image img {
            width: 90%;
        }

    #abtcontainer2-subtitle {
        width: 100%;
    }
}
@media only screen and (max-width: 500px) {
    #abtcontainer1 {
        justify-content: center;
        flex-direction:column;
    }

    #abtcontainer1-image {
       display:none;
    }
    #mobileabtcontainer1-image {
        width: 70%;
        display:block;
        margin:0 auto;
    }

        #mobileabtcontainer1-image img {
            width: 100%;
        }

    #abtcontainer1-title {
        width: 100%;
    }

    #abtcontainer1-subtitle {
        width: 100%;
    }

    #abtcontainer2 {
        flex-direction: column;
    }

    #abtcontainer2-image {
        width: 70%;
        margin: 0 auto;
    }

        #abtcontainer2-image img {
            width: 100%;
        }

    #abtcontainer2-subtitle {
        width: 100%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #abtcontainer1-title p {
        font-size: 60px;
    }

    #abtcontainer1-subtitle p {
        font-size: 23px;
    }
    #abtcontainer2-subtitle p {
        font-size: 23px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #abtcontainer1-title p {
        font-size: 75px;
    }

    #abtcontainer1-subtitle p {
        font-size: 27px;
    }
    #abtcontainer2-subtitle p {
        font-size: 27px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #abtcontainer1-title p {
        font-size: 95px;
    }

    #abtcontainer1-subtitle p {
        font-size: 33px;
    }
    #abtcontainer2-subtitle p {
        font-size: 33px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #abtcontainer1-title p {
        font-size: 120px;
    }

    #abtcontainer1-subtitle p {
        font-size: 40px;
    }
    #abtcontainer2-subtitle p {
        font-size: 40px;
    }
}

@media only screen and (min-width: 3001px) {
    #abtcontainer1-title p {
        font-size: 145px;
    }

    #abtcontainer1-subtitle p {
        font-size: 55px;
    }
    #abtcontainer2-subtitle p {
        font-size: 55px;
    }
}
/*end of about page first text heavy section media queries*/
#abtgallerycontainer {
    width: 100%;
    background: rgb(36,0,0);
    background: linear-gradient(0deg, rgba(36,0,0,1) 0%, rgba(94,5,6,1) 100%);
    padding-top: 3%;
    padding-bottom: 3%;
    display: flex;
    flex-direction: row;
}

#abtgallerytext {
    width: 40%;
    display: flex;
    justify-content: center;
    flex-direction:column;
}

#abtgallerytextsubtitle {
    margin-left: 5%;
    margin-right: 5%;
    font-size: 20px;
    color: #DAC3A9;
    text-align: left;
}

#abtgallerytexttitle {
    letter-spacing: 2px;
    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;
    padding-bottom: 1.5%;
    margin-left: 5%;
    margin-right: 5%;
    font-weight:normal;
}

#abtgallerymedia {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #abtgallerymedia video {
        width: 80%;
        display: flex;
        margin: 0 auto;
    }


/*about page text & photo gallery section media queries*/
@media only screen and (min-width: 651px) and (max-width: 960px) {
    #abtgallerycontainer {
        flex-direction: column;
    }

    #abtgallerytext {
        width: 100%;
    }

    #abtgallerymedia {
        width: 100%;
        padding-top: 3%;
    }

        #abtgallerymedia video {
            width: 80%;
        }
}

@media only screen and (min-width: 501px) and (max-width: 650px) {
    #abtgallerycontainer {
        flex-direction: column;
    }

    #abtgallerytext {
        width: 100%;
    }

    #abtgallerymedia {
        width: 100%;
        padding-top: 3%;
    }

        #abtgallerymedia video {
            width: 85%;
        }
}

@media only screen and (max-width: 500px) {
    #abtgallerycontainer {
        flex-direction: column;
    }

    #abtgallerytext {
        width: 100%;
    }

    #abtgallerymedia {
        width: 100%;
        padding-top: 3%;
    }

        #abtgallerymedia video {
            width: 90%;
        }
}

@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #abtgallerytextsubtitle {
        font-size: 23px;
    }

    #abtgallerytexttitle {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #abtgallerytextsubtitle {
        font-size: 27px;
    }

    #abtgallerytexttitle {
        font-size: 75px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #abtgallerytextsubtitle {
        font-size: 33px;
    }

    #abtgallerytexttitle {
        font-size: 95px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #abtgallerytextsubtitle {
        font-size: 40px;
    }

    #abtgallerytexttitle {
        font-size: 120px;
    }
}

@media only screen and (min-width: 3001px) {
    #abtgallerytextsubtitle {
        font-size: 55px;
    }

    #abtgallerytexttitle {
        font-size: 145px;
    }
}
/*end of about page text & photo gallery section media queries*/
#abttimelinecontainer {
    width: 100%;
    padding: 3%;
    position: relative;
    overflow: hidden;
    background-color: #240000;
}

    #abttimelinecontainer:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -1px;
        width: 2px;
        height: 100%;
        background: #DAC3A9;
        z-index: 1;
    }

.timeline-block {
    width: -webkit-calc(50% + 8px);
    width: -moz-calc(50% + 8px);
    width: calc(50% + 8px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    clear: both;
}

.timeline-block-right {
    float: right;
}

.timeline-block-left {
    float: left;
    direction: rtl;
}

.marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
    background: #BB8F5F;
    margin-top: 2%;
    z-index: 9999;
}

.timeline-content {
    width: 95%;
    padding: 0 15px;
    color: #DAC3A9;
}

    .timeline-content h3 {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 25px;
        font-weight: 500;
    }

    .timeline-content p {
        font-size: 16px;
        line-height: 1.5em;
        word-spacing: 1px;
        color: #DAC3A9;
    }

.timelineblock-titleleft {
    text-align: right;
    direction: initial;
}

.timelineblock-subtitleleft {
    text-align: right;
    direction: initial;
}
/*about page timeline media queries*/
@media only screen and (max-width: 700px) {
    .timeline-block-right {
        float: none;
    }

    .timeline-block-left {
        float: none;
        direction:ltr;
    }
    .timelineblock-titleleft {
        text-align: left;
    }

    .timelineblock-subtitleleft {
        text-align: left;
    }
    .timeline-block {
        width:100%;
        border-bottom:1px solid #5E0506;
        padding-bottom:1.5%;
    }
    #abttimelinecontainer:before {
       display:none;
    }
    .marker{
        display:none;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    .timeline-content h3 {
        font-size: 28px;
    }

    .timeline-content p {
        font-size: 19px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    .timeline-content h3 {
        font-size: 32px;
    }

    .timeline-content p {
        font-size: 23px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    .timeline-content h3 {
        font-size: 37px;
    }

    .timeline-content p {
        font-size: 28px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    .timeline-content h3 {
        font-size: 48px;
    }

    .timeline-content p {
        font-size: 39px;
    }
}

@media only screen and (min-width: 3001px) {
    .timeline-content h3 {
        font-size: 68px;
    }

    .timeline-content p {
        font-size: 49px;
    }
}
/*end of about page timeline media queries*/

/*end of about page styling*/


/*contact page styling*/
#contact-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: rgba(94,5,6,1);
}

#contact-info {
    width: 50%;
    background: url('/media/baroquebg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

#contact-info-title {
    font-size: 50px;
    font-weight: bold;
    padding-top: 7%;
    margin-left: 15%;
    margin-right: 5%;
    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;
    letter-spacing: 3px;
}

#contact-info-subtitle, #ContentPlaceHolder1_pnlSubmitCompleted {
    font-size: 30px;
    margin-left: 15%;
    margin-right: 5%;
    padding-top: 3%;
    color: #D8D6D5;
}

    #contact-info-subtitle a {
        color: #D8D6D5;
        text-decoration: none;
        padding: 1%;
        display: inline-block;
        background: linear-gradient(to right, #5E0506 50%, transparent 50%);
        background-size: 200% 100%;
        background-position: right bottom;
        transition: all 0.6s ease-out;
    }

        #contact-info-subtitle a:hover {
            background-position: left bottom;
            color: #F6F6F4;
        }

#contact-icons-wrapper {
    display: inline-flex;
    padding-top: 8%;
    padding-bottom: 2%;
    margin-left: 15%;
    margin-right: 5%;
}

    #contact-icons-wrapper .icon {
        position: relative;
        background-color: #D8D6D5;
        color: #240000;
        border-radius: 50%;
        font-size: 22px;
        margin: 10px;
        width: 3vw;
        height: 3vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    #contact-icons-wrapper a:hover {
        cursor: default;
    }

    #contact-icons-wrapper .icon:hover {
        cursor: pointer;
    }

    #contact-icons-wrapper .tooltip {
        position: absolute;
        top: 0;
        font-size: 16px;
        background-color: #ffffff;
        color: #ffffff;
        padding: 5px 8px;
        border-radius: 5px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

        #contact-icons-wrapper .tooltip::before {
            position: absolute;
            content: "";
            height: 8px;
            width: 8px;
            background-color: #ffffff;
            bottom: -3px;
            left: 50%;
            transform: translate(-50%) rotate(45deg);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

    #contact-icons-wrapper .icon:hover .tooltip {
        top: -45px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    #contact-icons-wrapper .icon:hover span,
    #contact-icons-wrapper .icon:hover .tooltip {
        text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
    }

    #contact-icons-wrapper .instagram:hover,
    #contact-icons-wrapper .instagram:hover .tooltip,
    #contact-icons-wrapper .instagram:hover .tooltip::before {
        background-color: #240000;
        color: #F6F6F4;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    #contact-icons-wrapper .youtube:hover,
    #contact-icons-wrapper .youtube:hover .tooltip,
    #contact-icons-wrapper .youtube:hover .tooltip::before {
        background-color: #240000;
        color: #F6F6F4;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    #contact-icons-wrapper .spotify:hover,
    #contact-icons-wrapper .spotify:hover .tooltip,
    #contact-icons-wrapper .spotify:hover .tooltip::before {
        background-color: #240000;
        color: #F6F6F4;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

#contact-form {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 4;
    background: url('/media/fabrictexture.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

    #contact-form ::placeholder {
        color: #D8D6D5;
        font-size: 16px;
    }

#name, #email, #ContentPlaceHolder1_txtEmail, #ContentPlaceHolder1_txtName {
    border: none;
    outline: none;
    border-bottom: 3px solid #240000;
    font-size: 20px;
    width: 70%;
    background-color: transparent;
    color: #D8D6D5;
    padding-bottom: 1.5%;
}

#subject, #ContentPlaceHolder1_txtSubject {
    border: none;
    outline: none;
    border-bottom: 3px solid #240000;
    font-size: 20px;
    width: 95.5%;
    background-color: transparent;
    color: #D8D6D5;
}

#message, #ContentPlaceHolder1_txtMessage {
    border: none;
    outline: none;
    border-bottom: 3px solid #240000;
    font-size: 20px;
    width: 95.5%;
    background-color: transparent;
    color: #D8D6D5;
}

#sendmessage, #ContentPlaceHolder1_btnSubmit {
    border: none;
    outline: none;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 7%;
    padding-right: 7%;
    font-size: 20px;
    background-color: #240000;
    color: #D8D6D5;
    transition: all 0.3s;
}

    #sendmessage:hover {
        cursor: pointer;
    }
/*contact page info & form media queries*/
@media only screen and (min-width: 726px) and (max-width: 900px) {
    #contact-icons-wrapper .icon {
        width: 5vw;
        height: 5vw;
        font-size: 28px;
    }
}
@media only screen and (min-width: 501px) and (max-width: 725px) {
    #contact-icons-wrapper .icon {
        width: 6.5vw;
        height: 6.5vw;
        font-size: 5vw;
    }
}
@media only screen and (max-width: 500px) {
    #contact-icons-wrapper .icon {
        width:9vw;
        height: 9vw;
        font-size: 6.5vw;
    }
}
@media only screen and (max-width: 800px) {
    #contact-container {
        flex-direction: column;
    }

    #contact-info {
        width: 100%;
        text-align:center;
    }
    #contact-form {
        width: 100%;
        padding-bottom:5%;
        padding-top:5%;
        text-align:center;
    }
    #contact-info-title {
        text-align: center;
        margin-left: 5%;
        margin-right: 5%;
        text-align: left;
    }

    #contact-info-subtitle {
        text-align: center;
        margin-left: 5%;
        margin-right: 5%;
        text-align:left;
    }
    #contact-icons-wrapper {
        padding-top: 8%;
        padding-bottom: 2%;
        margin-left: 5%;
        margin-right: 5%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #contact-info-title {
        font-size: 60px;
    }

    #contact-info-subtitle {
        font-size: 23px;
    }

    #contact-icons-wrapper .icon {
        font-size: 25px;
    }

    #contact-icons-wrapper .tooltip {
        font-size: 19px;
    }

    #contact-form ::placeholder {
        font-size: 19px;
    }

    #name, #email {
        font-size: 23px;
    }

    #subject {
        font-size: 23px;
    }

    #message {
        font-size: 23px;
    }

    #sendmessage {
        font-size: 23px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #contact-info-title {
        font-size: 75px;
    }

    #contact-info-subtitle {
        font-size: 27px;
    }

    #contact-icons-wrapper .icon {
        font-size: 29px;
    }

    #contact-icons-wrapper .tooltip {
        font-size: 23px;
    }

    #contact-form ::placeholder {
        font-size: 23px;
    }

    #name, #email {
        font-size: 27px;
    }

    #subject {
        font-size: 27px;
    }

    #message {
        font-size: 27px;
    }

    #sendmessage {
        font-size: 27px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #contact-info-title {
        font-size: 95px;
    }

    #contact-info-subtitle {
        font-size: 33px;
    }

    #contact-icons-wrapper .icon {
        font-size: 35px;
    }

    #contact-icons-wrapper .tooltip {
        font-size: 29px;
    }

    #contact-form ::placeholder {
        font-size: 29px;
    }

    #name, #email {
        font-size: 33px;
    }

    #subject {
        font-size: 33px;
    }

    #message {
        font-size: 33px;
    }

    #sendmessage {
        font-size: 33px;
    }

    #contact-icons-wrapper .icon:hover .tooltip {
        top: -55px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #contact-info-title {
        font-size: 120px;
    }

    #contact-info-subtitle {
        font-size: 40px;
    }

    #contact-icons-wrapper .icon {
        font-size: 45px;
    }

    #contact-icons-wrapper .tooltip {
        font-size: 36px;
    }

    #contact-form ::placeholder {
        font-size: 36px;
    }

    #name, #email {
        font-size: 40px;
        border-bottom: 5px solid #240000;
    }

    #subject {
        font-size: 40px;
        border-bottom: 5px solid #240000;
    }

    #message {
        font-size: 40px;
        border-bottom: 5px solid #240000;
    }

    #sendmessage {
        font-size: 40px;
    }

    #contact-icons-wrapper .icon:hover .tooltip {
        top: -60px;
    }
}

@media only screen and (min-width: 3001px) {
    #contact-info-title {
        font-size: 145px;
    }

    #contact-info-subtitle {
        font-size: 55px;
    }

    #contact-icons-wrapper .icon {
        font-size: 60px;
    }

    #contact-icons-wrapper .tooltip {
        font-size: 51px;
    }

    #contact-form ::placeholder {
        font-size: 51px;
    }

    #name, #email {
        font-size: 55px;
        border-bottom: 8px solid #240000;
    }

    #subject {
        font-size: 55px;
        border-bottom: 8px solid #240000;
    }

    #message {
        font-size: 55px;
        border-bottom: 8px solid #240000;
    }

    #sendmessage {
        font-size: 55px;
    }

    #contact-icons-wrapper .icon:hover .tooltip {
        top: -90px;
    }
}
/*end of contact page info & form media queries*/
/*end of contact page styling*/


/*hover effects*/
.float {
    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.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

    .float:hover, .float:focus, .float:active {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

.center-overline {
    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;
}

    .center-overline:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 51%;
        right: 51%;
        top: 0;
        background: #C29A70;
        height: 1px;
        -webkit-transition-property: left, right;
        transition-property: left, right;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .center-overline:hover:before, .center-overline:focus:before, .center-overline:active:before {
        left: 0;
        right: 0;
    }

.hvr-sweep-to-bottom {
    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;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

    .hvr-sweep-to-bottom:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #240000;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -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-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
        color: white;
    }

        .hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }

.hvr-sweep-to-bottom2 {
    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;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

    .hvr-sweep-to-bottom2:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #5E0506;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -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-sweep-to-bottom2:hover, .hvr-sweep-to-bottom2:focus, .hvr-sweep-to-bottom2:active {
        color: white;
    }

        .hvr-sweep-to-bottom2:hover:before, .hvr-sweep-to-bottom2:focus:before, .hvr-sweep-to-bottom2:active:before {
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }
/*end of hover effects*/

/*eshop page styling*/
#eshop-headercontainer {
    width: 100%;
    background: url('/media/fabrictexture.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 3%;
    padding-bottom: 1.5%;
}
#eshop-headertop {
    width: 90%;
    border-bottom: 2px solid #240000;
    display: block;
    margin: 0 auto;
}
    #eshop-headertop p {
        letter-spacing: 3px;
        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;
    }
#eshop-headerbottom {
    width: 90%;
    display: block;
    margin: 0 auto;
}
#eshop-headertagline {
    font-size: 30px;
    font-weight: bold;
    padding-top: 1%;
    padding-bottom: 3%;
    color: #DAC3A9;
}
#eshop-headerdescription {
    font-size: 21px;
    color: #DAC3A9;
}
/*eshop page header section media queries*/
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #eshop-headertop p {
        font-size: 60px;
    }
    #eshop-headertagline {
        font-size: 33px;
    }
    #eshop-headerdescription {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #eshop-headertop p {
        font-size: 75px;
    }

    #eshop-headertagline {
        font-size: 37px;
    }

    #eshop-headerdescription {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #eshop-headertop p {
        font-size: 95px;
    }

    #eshop-headertagline {
        font-size: 43px;
    }

    #eshop-headerdescription {
        font-size: 34px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #eshop-headertop p {
        font-size: 120px;
    }

    #eshop-headertagline {
        font-size: 50px;
    }

    #eshop-headerdescription {
        font-size: 41px;
    }
}

@media only screen and (min-width: 3001px) {
    #eshop-headertop p {
        font-size: 145px;
    }

    #eshop-headertagline {
        font-size: 65px;
    }

    #eshop-headerdescription {
        font-size: 56px;
    }
}
/*end of eshop page header section media queries*/
#eshop-productscontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #240000;
    justify-content: space-around;
    padding-top: 3%;
    padding-bottom: 3%;
}
.eshop-productsitem {
    width: 29%;
    padding-top: 2%;
    text-align:center;
}
.eshop-productsitem img{
    width: 75%;
    display:block;
    margin:0 auto;
    padding-bottom:5%;
}
.eshop-productstext {
    width: 90%;
    display: block;
    margin: 0 auto;

}
    .eshop-productstext p {
        font-size: 16px;
        line-height: 1.5em;
        word-spacing: 1px;
        color: #DAC3A9;
        margin-left:5%;
        margin-right:5%;
        text-align:left;
    }
    .eshop-productsitem a {
        margin-top: 5%;
        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;
    }
        .eshop-productsitem a:hover {
            color: #DAC3A9;
        }
/*eshop page product section media queries*/
@media only screen and (max-width: 1015px) {
    #eshop-productscontainer {
        flex-direction: column;

    }

    .eshop-productsitem {
        width: 95%;
    }

        .eshop-productsitem img {
            width: 40%;
        }
}

@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    .eshop-productstext p {
        font-size: 19px;
    }
    .eshop-productsitem a {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    .eshop-productstext p {
        font-size: 23px;
    }

    .eshop-productsitem a {
        font-size: 30px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    .eshop-productstext p {
        font-size: 29px;
    }

    .eshop-productsitem a {
        font-size: 36px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    .eshop-productstext p {
        font-size: 36px;
    }

    .eshop-productsitem a {
        font-size: 46px;
    }
}

@media only screen and (min-width: 3001px) {
    .eshop-productstext p {
        font-size: 51px;
    }

    .eshop-productsitem a {
        font-size: 61px;
    }
}
/*end of eshop page product section media queries*/
/*end of eshop page styling*/

/*teteli check out page styling*/
#tetelicheckout-container {
    width: 100%;
    padding-top: 5%;
    padding-bottom: 5%;
    background: url('/media/baroquebg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}
#tetelicheckout {
    width: 80%;
    margin: 0 auto;
    display: block;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    background-color: #5E0506;
    display:flex;
    flex-direction:row;
}
#tetelicheckout-image {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#tetelicheckout-image img{
    width: 70%;
    margin: 0 auto;
    display: block;
}
#tetelicheckout-text {
    width: 55%;
    display: flex;
    justify-content: center;
   flex-direction:column;
}
    #tetelicheckout-text p {
        font-size: 21px;
        color: #DAC3A9;
    }
#tetelicheckout-texttitle {
    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;
    border-bottom: 2px solid #240000;
}
#tetelicheckoutmail {
    border: none;
    outline: none;
    border-bottom: 2px solid #240000;
    font-size: 20px;
    width: 45%;
    background-color: rgba(94,5,6,1);
    color: #D8D6D5;
    padding-bottom: 0.5%;
    font-family: 'Cormorant', serif;
}
    #tetelicheckoutmail::placeholder {
        color: #BB8F5F;
        font-size: 21px;
        font-family: 'Cormorant', serif;
        font-weight: bold;
    }
#tetelicheckout-text a {
    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-weight: bold;
}
/*teteli check out page media queries*/
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #tetelicheckout-text p {
        font-size: 24px;
    }
    #tetelicheckout-texttitle {
        font-size: 60px;
    }
    #tetelicheckoutmail {
        font-size: 23px;
    }
        #tetelicheckoutmail::placeholder {
            font-size: 24px;
        }
}

    @media only screen and (min-width: 1550px) and (max-width: 1900px) {
        #tetelicheckout-text p {
            font-size: 28px;
        }
        #tetelicheckout-texttitle {
            font-size: 75px;
        }
        #tetelicheckoutmail {
            font-size: 27px;
        }
            #tetelicheckoutmail::placeholder {
                font-size: 28px;
            }
    }

    @media only screen and (min-width: 1901px) and (max-width: 2400px) {
        #tetelicheckout-text p {
            font-size: 34px;
        }

        #tetelicheckout-texttitle {
            font-size: 95px;
        }

        #tetelicheckoutmail {
            font-size: 33px;
        }

            #tetelicheckoutmail::placeholder {
                font-size: 34px;
            }
    }

    @media only screen and (min-width: 2401px) and (max-width: 3000px) {
        #tetelicheckout-text p {
            font-size: 41px;
        }

        #tetelicheckout-texttitle {
            font-size: 120px;
        }

        #tetelicheckoutmail {
            font-size: 40px;
        }

            #tetelicheckoutmail::placeholder {
                font-size: 41px;
            }
    }

    @media only screen and (min-width: 3001px) {
        #tetelicheckout-text p {
            font-size: 56px;
        }
        #tetelicheckout-texttitle {
            font-size: 145px;
        }
        #tetelicheckoutmail {
            font-size: 55px;
        }
            #tetelicheckoutmail::placeholder {
                font-size: 56px;
            }
    }
    /*end of teteli check out page media queries*/
    /*end of teteli check out page styling*/

/*cid page styling*/
#cidintrocontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    background: rgb(36,0,0);
    background: linear-gradient(180deg, rgba(36,0,0,1) 0%, rgba(94,5,6,1) 100%);
}

#cidintrophoto {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #cidintrophoto img {
        width: 90%;
        display: block;
        margin: 0 auto;
    }

#cidintrotext {
    width: 70%;
    display:flex;
    justify-content:center;
    flex-direction:column;
}

#cidintrotextsubtitle {
    margin-left: 5%;
    margin-right: 5%;
    font-size: 20px;
    color: #DAC3A9;
    text-align: left;
    padding-bottom: 1.5%;
}

#cidintrotexttitle {
    letter-spacing: 2px;
    padding-bottom: 1.5%;
    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;
    margin-left: 5%;
    margin-right: 5%;
    font-weight:normal;
}

#cidintrotextcontactinfocontainer {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    padding-top: 2%;
}

.cidintrotextcontactinfoitem {
    width: 50%;
}

    .cidintrotextcontactinfoitem p {
        font-size: 16px;
        color: #DAC3A9;
        text-align: left;
        padding-bottom: 1.5%;
    }
#cidmobileintrophoto{
    width:100%;
    padding-top:5%;
    padding-bottom:1%;
    display:none;
}
#cidmobileintrophoto img {
    width: 90%;
    display: block;
    margin: 0 auto;
}

/*cid page intro section media queries*/
@media only screen and (min-width: 651px) and (max-width: 960px) {
    #cidintrocontainer {
        flex-direction: column;
    }
    #cidintrophoto {
        display: none;
    }
    #cidintrotext {
        width: 100%;
    }
    #cidmobileintrophoto {
        display:unset;
    }
        #cidmobileintrophoto img {
            width: 40%;
        }
}
@media only screen and (min-width: 501px) and (max-width: 650px) {
    #cidintrocontainer {
        flex-direction: column;
    }

    #cidintrophoto {
        display: none;
    }

    #cidintrotext {
        width: 100%;
    }

    #cidmobileintrophoto {
        display: unset;
    }

        #cidmobileintrophoto img {
            width: 65%;
        }
}
@media only screen and (max-width:500px) {
    #cidintrocontainer {
        flex-direction: column;
    }

    #cidintrophoto {
        display: none;
    }

    #cidintrotext {
        width: 100%;
    }

    #cidmobileintrophoto {
        display: unset;
    }

        #cidmobileintrophoto img {
            width: 85%;
        }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #cidintrotextsubtitle {
        font-size: 23px;
    }

    #cidintrotexttitle {
        font-size: 60px;
    }

    .cidintrotextcontactinfoitem p {
        font-size: 19px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #cidintrotextsubtitle {
        font-size: 27px;
    }

    #cidintrotexttitle {
        font-size: 75px;
    }

    .cidintrotextcontactinfoitem p {
        font-size: 23px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #cidintrotextsubtitle {
        font-size: 33px;
    }

    #cidintrotexttitle {
        font-size: 95px;
    }

    .cidintrotextcontactinfoitem p {
        font-size: 29px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #cidintrotextsubtitle {
        font-size: 40px;
    }

    #cidintrotexttitle {
        font-size: 120px;
    }

    .cidintrotextcontactinfoitem p {
        font-size: 36px;
    }
}

@media only screen and (min-width: 3001px) {
    #cidintrotextsubtitle {
        font-size: 55px;
    }

    #cidintrotexttitle {
        font-size: 145px;
    }

    .cidintrotextcontactinfoitem p {
        font-size: 51px;
    }
}
/*end of cid page intro section media queries*/
#cid-linkphotoscontainer{
    width:100%;
    display:flex;
    flex-direction:row;
    justify-content:space-around;
    background-color:#5E0506;
    padding-top:1.5%;
    padding-bottom:1.5%;
}
.cid-linkphotonarrow {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cid-linkphotonarrow img{
    width: 100%;
}
#cid-linkphotowide{
width:46%;
display:flex;
justify-content:center;
align-items:center;
}
#cid-linkphotowide img{
    width: 100%;
}
/*cid page photo links section media queries*/
@media only screen and (min-width: 501px) and (max-width: 750px) {
    #cid-linkphotoscontainer {
        flex-direction: column;
    }
    .cid-linkphotonarrow {
        width: 55%;
        margin:0 auto;
    }
    #cid-linkphotowide {
        width: 55%;
        margin:0 auto;
        margin-top:3%;
        margin-bottom:3%;
    }
}
@media only screen and (max-width: 500px) {
    #cid-linkphotoscontainer {
        flex-direction: column;
    }

    .cid-linkphotonarrow {
        width: 85%;
        margin: 0 auto;
    }

    #cid-linkphotowide {
        width: 85%;
        margin: 0 auto;
        margin-top: 3%;
        margin-bottom: 3%;
    }
}
/*end of cid page photo links section media queries*/
#cidcampinas-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    background: rgb(94,5,6);
    background: linear-gradient(180deg, rgba(94,5,6,1) 50%, rgba(36,0,0,1) 100%);
}
#cidcampinas-text {
    width: 70%;
    display: flex;
    justify-content: center;
   flex-direction:column;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
}
    #cidcampinas-text img {
        width: 25%;
        margin-left: 5%;
        margin-right: 5%;
    }
    #cidcampinas-image {
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #cidcampinas-image img {
        width: 90%;
        display: block;
        margin: 0 auto;
    }
#cidcampinas-text p {
    margin-left: 5%;
    margin-right: 5%;
    font-size: 20px;
    color: #DAC3A9;
    text-align: left;
    padding-bottom: 1.5%;
}

#cidcampinas-texttitle {
    letter-spacing: 2px;
    padding-bottom: 1.5%;
    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;
    margin-left: 5%;
    margin-right: 5%;
    font-weight:normal;
}
/*cid page campinas section media queries*/
@media only screen and (min-width: 651px) and (max-width: 960px){
    #cidcampinas-container {
        flex-direction: column;
    }

    #cidcampinas-text {
        width: 100%;
    }

        #cidcampinas-text img {
            width: 30%;
            display:block;
            margin:0 auto;
        }

    #cidcampinas-image {
        width: 100%;
    }

        #cidcampinas-image img {
            width: 40%;
        }
}
@media only screen and (min-width: 501px) and (max-width: 650px){
    #cidcampinas-container {
        flex-direction: column;
    }

    #cidcampinas-text {
        width: 100%;
    }

        #cidcampinas-text img {
            width: 55%;
            display: block;
            margin: 0 auto;
        }

    #cidcampinas-image {
        width: 100%;
    }

        #cidcampinas-image img {
            width: 65%;
        }
}
@media only screen and (max-width: 500px) {
    #cidcampinas-container {
        flex-direction: column;
    }

    #cidcampinas-text {
        width: 100%;
    }

        #cidcampinas-text img {
            width: 75%;
            display: block;
            margin: 0 auto;
        }

    #cidcampinas-image {
        width: 100%;
    }

        #cidcampinas-image img {
            width: 85%;
        }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #cidcampinas-text p {
        font-size: 23px;
    }

    #cidcampinas-texttitle {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #cidcampinas-text p {
        font-size: 27px;
    }

    #cidcampinas-texttitle {
        font-size: 75px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #cidcampinas-text p {
        font-size: 33px;
    }

    #cidcampinas-texttitle {
        font-size: 95px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #cidcampinas-text p {
        font-size: 40px;
    }

    #cidcampinas-texttitle {
        font-size: 120px;
    }
}

@media only screen and (min-width: 3001px) {
    #cidcampinas-text p {
        font-size: 55px;
    }

    #cidcampinas-texttitle {
        font-size: 145px;
    }
}
/*end of cid page campinas section media queries*/
/*end of cid page styling*/
/*gallery page styling*/
#galleryheadercontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
}

#galleryheader {
    width: 80%;
    background-color: black;
    display: flex;
    justify-content: center;
   flex-direction:column;
}

    #galleryheader p {
        font-size: 22px;
        color: #DAC3A9;
        margin-left: 5%;
        margin-right: 5%;
    }

#galleryheadertitle {
    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: 2px;
    margin-left: 5%;
    margin-right: 5%;
    font-weight:normal;
}

#galleryheaderphoto {
    width: 20%;
    background-color: black;
}

    #galleryheaderphoto img {
        width: 100%;
        display: block;
        margin: 0 auto;
    }
#gallery-maincontainer {
    width: 100%;
    background: url('/media/baroquebg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}
.gallery-rowcontainer{
    width:100%;
    padding-top:3%;
    padding-bottom:3%;
    display:flex;
    flex-direction:row;
    justify-content:space-around;
}
.gallery-rowitem {
    width: 40%;
    padding-top: 1%;
    padding-bottom: 1%;
    border: 10px solid transparent;
    border-image: url(/media/frame1.png);
    border-image-slice: 100;
    text-align: center;
    background-color: #240000;
}
    .gallery-rowitem p {
        letter-spacing: 3px;
        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;
        font-weight: 900;
        padding-bottom: 3%;
    }

#chairdance-gallery-wrapper {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

    #chairdance-gallery-wrapper i:hover {
        cursor: pointer;
    }

#chairdance-gallery-left, #chairdance-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#chairdance-gallery-middle img {
    width: 90%;
    margin:0 auto;
}

#chairdance-gallery-middle {
    width: 90%;
}

#chairdanceg2-l, #chairdanceg3-l, #chairdanceg4-l, #chairdanceg5-l, #chairdanceg6-l, #chairdanceg7-l, #chairdanceg8-l, #chairdanceg9-l, #chairdanceg10-l, #chairdanceg11-l, #chairdanceg12-l, #chairdanceg13-l, #chairdanceg14-l, #chairdanceg15-l, #chairdanceg16-l, #chairdanceg17-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;
}

#chairdanceg2-r, #chairdanceg3-r, #chairdanceg4-r, #chairdanceg5-r, #chairdanceg6-r, #chairdanceg7-r, #chairdanceg8-r, #chairdanceg9-r, #chairdanceg10-r, #chairdanceg11-r, #chairdanceg12-r, #chairdanceg13-r, #chairdanceg14-r, #chairdanceg15-r, #chairdanceg16-r, #chairdanceg17-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;
}

#chairdanceg2-img, #chairdanceg3-img, #chairdanceg4-img, #chairdanceg5-img, #chairdanceg6-img, #chairdanceg7-img, #chairdanceg8-img, #chairdanceg9-img, #chairdanceg10-img, #chairdanceg11-img, #chairdanceg12-img, #chairdanceg13-img, #chairdanceg14-img, #chairdanceg15-img, #chairdanceg16-img, #chairdanceg17-img {
    display: none;
}

#chairdanceg1-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;
}

#chairdanceg1-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;
}


#tsifteteli-gallery-wrapper {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

    #tsifteteli-gallery-wrapper i:hover {
        cursor: pointer;
    }

#tsifteteli-gallery-left, #tsifteteli-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tsifteteli-gallery-middle img {
    width: 90%;
    margin: 0 auto;
}

#tsifteteli-gallery-middle {
    width: 90%;
}

#tsiftetelig2-l, #tsiftetelig3-l, #tsiftetelig4-l, #tsiftetelig5-l, #tsiftetelig6-l, #tsiftetelig7-l, #tsiftetelig8-l, #tsiftetelig9-l, #tsiftetelig10-l, #tsiftetelig11-l, #tsiftetelig12-l, #tsiftetelig13-l, #tsiftetelig14-l, #tsiftetelig15-l, #tsiftetelig16-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;
}

#tsiftetelig2-r, #tsiftetelig3-r, #tsiftetelig4-r, #tsiftetelig5-r, #tsiftetelig6-r, #tsiftetelig7-r, #tsiftetelig8-r, #tsiftetelig9-r, #tsiftetelig10-r, #tsiftetelig11-r, #tsiftetelig12-r, #tsiftetelig13-r, #tsiftetelig14-r, #tsiftetelig15-r, #tsiftetelig16-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;
}

#tsiftetelig2-img, #tsiftetelig3-img, #tsiftetelig4-img, #tsiftetelig5-img, #tsiftetelig6-img, #tsiftetelig7-img, #tsiftetelig8-img, #tsiftetelig9-img, #tsiftetelig10-img, #tsiftetelig11-img, #tsiftetelig12-img, #tsiftetelig13-img, #tsiftetelig14-img, #tsiftetelig15-img, #tsiftetelig16-img {
    display: none;
}

#tsiftetelig1-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;
}

#tsiftetelig1-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;
}


#romania-gallery-wrapper {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

    #romania-gallery-wrapper i:hover {
        cursor: pointer;
    }

#romania-gallery-left, #romania-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#romania-gallery-middle img {
    width: 90%;
    margin: 0 auto;
}

#romania-gallery-middle {
    width: 90%;
}

#romaniag2-l, #romaniag3-l, #romaniag4-l, #romaniag5-l, #romaniag6-l, #romaniag7-l, #romaniag8-l, #romaniag9-l, #romaniag10-l, #romaniag11-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;
}

#romaniag2-r, #romaniag3-r, #romaniag4-r, #romaniag5-r, #romaniag6-r, #romaniag7-r, #romaniag8-r, #romaniag9-r, #romaniag10-r, #romaniag11-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;
}

#romaniag2-img, #romaniag3-img, #romaniag4-img, #romaniag5-img, #romaniag6-img, #romaniag7-img, #romaniag8-img, #romaniag9-img, #romaniag10-img, #romaniag11-img {
    display: none;
}

#romaniag1-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;
}

#romaniag1-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;
}

#cidunesco-gallery-wrapper {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

    #cidunesco-gallery-wrapper i:hover {
        cursor: pointer;
    }

#cidunesco-gallery-left, #cidunesco-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cidunesco-gallery-middle img {
    width: 90%;
    margin: 0 auto;
}

#cidunesco-gallery-middle {
    width: 90%;
}

#cidunescog2-l, #cidunescog3-l, #cidunescog4-l, #cidunescog5-l, #cidunescog6-l, #cidunescog7-l, #cidunescog8-l, #cidunescog9-l, #cidunescog10-l, #cidunescog11-l, #cidunescog12-l, #cidunescog13-l, #cidunescog14-l, #cidunescog15-l, #cidunescog16-l, #cidunescog17-l, #cidunescog18-l, #cidunescog19-l, #cidunescog20-l, #cidunescog21-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;
}

#cidunescog2-r, #cidunescog3-r, #cidunescog4-r, #cidunescog5-r, #cidunescog6-r, #cidunescog7-r, #cidunescog8-r, #cidunescog9-r, #cidunescog10-r, #cidunescog11-r, #cidunescog12-r, #cidunescog13-r, #cidunescog14-r, #cidunescog15-r, #cidunescog16-r, #cidunescog17-r, #cidunescog18-r, #cidunescog19-r, #cidunescog20-r, #cidunescog21-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;
}

#cidunescog2-img, #cidunescog3-img, #cidunescog4-img, #cidunescog5-img, #cidunescog6-img, #cidunescog7-img, #cidunescog8-img, #cidunescog9-img, #cidunescog10-img, #cidunescog11-img, #cidunescog12-img, #cidunescog13-img, #cidunescog14-img, #cidunescog15-img, #cidunescog16-img, #cidunescog17-img, #cidunescog18-img, #cidunescog19-img, #cidunescog20-img, #cidunescog21-img {
    display: none;
}

#cidunescog1-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;
}

#cidunescog1-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;
}

#ag-gallery-wrapper {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

   #ag-gallery-wrapper i:hover {
        cursor: pointer;
    }

#ag-gallery-left, #ag-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    }

#ag-gallery-middle {
    width: 90%;
    height: 570px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #ag-gallery-middle img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }


#agg2-l, #agg3-l, #agg4-l, #agg5-l, #agg6-l, #agg7-l, #agg8-l, #agg9-l, #agg10-l, #agg11-l, #agg12-l, #agg13-l, #agg14-l, #agg15-l, #agg16-l, #agg17-l, #agg18-l, #agg19-l, #agg20-l, #agg21-l, #agg22-l, #agg23-l, #agg24-l, #agg25-l, #agg26-l, #agg27-l, #agg28-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;
}
#agg2-r, #agg3-r, #agg4-r, #agg5-r, #agg6-r, #agg7-r, #agg8-r, #agg9-r, #agg10-r, #agg11-r, #agg12-r, #agg13-r, #agg14-r, #agg15-r, #agg16-r, #agg17-r, #agg18-r, #agg19-r, #agg20-r, #agg21-r, #agg22-r, #agg23-r, #agg24-r, #agg25-r, #agg26-r, #agg27-r, #agg28-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;
}
#agg2-img, #agg3-img, #agg4-img, #agg5-img, #agg6-img, #agg7-img, #agg8-img, #agg9-img, #agg10-img, #agg11-img, #agg12-img, #agg13-img, #agg14-img, #agg15-img, #agg16-img, #agg17-img, #agg18-img, #agg19-img, #agg20-img, #agg21-img, #agg22-img, #agg23-img, #agg24-img, #agg25-img, #agg26-img, #agg27-img, #agg28-img {
    display: none;
}
#agg1-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;
    }
#agg1-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;
    }

    #shows-gallery-wrapper {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

    #shows-gallery-wrapper i:hover {
        cursor: pointer;
    }

#shows-gallery-left, #shows-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#shows-gallery-middle img {
    width: 90%;
    margin: 0 auto;
}

#shows-gallery-middle {
    width: 90%;
}

#showsg2-l, #showsg3-l, #showsg4-l, #showsg5-l, #showsg6-l, #showsg7-l, #showsg8-l, #showsg9-l, #showsg10-l, #showsg11-l, #showsg12-l, #showsg13-l, #showsg14-l, #showsg15-l, #showsg16-l, #showsg17-l, #showsg18-l, #showsg19-l, #showsg20-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;
}

#showsg2-r, #showsg3-r, #showsg4-r, #showsg5-r, #showsg6-r, #showsg7-r, #showsg8-r, #showsg9-r, #showsg10-r, #showsg11-r, #showsg12-r, #showsg13-r, #showsg14-r, #showsg15-r, #showsg16-r, #showsg17-r, #showsg18-r, #showsg19-r, #showsg20-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;
}

#showsg2-img, #showsg3-img, #showsg4-img, #showsg5-img, #showsg6-img, #showsg7-img, #showsg8-img, #showsg9-img, #showsg10-img, #showsg11-img, #showsg12-img, #showsg13-img, #showsg14-img, #showsg15-img, #showsg16-img, #showsg17-img, #showsg18-img, #showsg19-img, #showsg20-img {
    display: none;
}

#showsg1-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;
}

#showsg1-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;
}


#sensual-gallery-wrapper {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

    #sensual-gallery-wrapper i:hover {
        cursor: pointer;
    }

#sensual-gallery-left, #sensual-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sensual-gallery-middle img {
    width: 90%;
    margin: 0 auto;
}

#sensual-gallery-middle {
    width: 90%;
}

#sensualg2-l, #sensualg3-l, #sensualg4-l, #sensualg5-l, #sensualg6-l, #sensualg7-l, #sensualg8-l, #sensualg9-l, #sensualg10-l, #sensualg11-l, #sensualg12-l, #sensualg13-l, #sensualg14-l, #sensualg15-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;
}

#sensualg2-r, #sensualg3-r, #sensualg4-r, #sensualg5-r, #sensualg6-r, #sensualg7-r, #sensualg8-r, #sensualg9-r, #sensualg10-r, #sensualg11-r, #sensualg12-r, #sensualg13-r, #sensualg14-r, #sensualg15-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;
}

#sensualg2-img, #sensualg3-img, #sensualg4-img, #sensualg5-img, #sensualg6-img, #sensualg7-img, #sensualg8-img, #sensualg9-img, #sensualg10-img, #sensualg11-img, #sensualg12-img, #sensualg13-img, #sensualg14-img, #sensualg15-img {
    display: none;
}

#sensualg1-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;
}

#sensualg1-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;
}
/*gallery page media queries*/
@media only screen and (max-width: 700px) {
    .gallery-rowcontainer {
        flex-direction: column;
    }

    .gallery-rowitem {
        width: 85%;
        margin:0 auto;
        margin-top:3%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #galleryheader p {
        font-size: 25px;
    }
    #galleryheadertitle {
        font-size: 60px;
    }
    .gallery-rowitem p {
        font-size: 33px;
    }
    #chairdanceg2-l, #chairdanceg3-l, #chairdanceg4-l, #chairdanceg5-l, #chairdanceg6-l, #chairdanceg7-l, #chairdanceg8-l, #chairdanceg9-l, #chairdanceg10-l, #chairdanceg11-l, #chairdanceg12-l, #chairdanceg13-l, #chairdanceg14-l, #chairdanceg15-l, #chairdanceg16-l, #chairdanceg17-l {
        font-size: 33px;
    }

    #chairdanceg2-r, #chairdanceg3-r, #chairdanceg4-r, #chairdanceg5-r, #chairdanceg6-r, #chairdanceg7-r, #chairdanceg8-r, #chairdanceg9-r, #chairdanceg10-r, #chairdanceg11-r, #chairdanceg12-r, #chairdanceg13-r, #chairdanceg14-r, #chairdanceg15-r, #chairdanceg16-r, #chairdanceg17-r {
        font-size: 33px;
    }

    #chairdanceg1-l {
        font-size: 33px;
    }

    #chairdanceg1-r {
        font-size: 33px;
    }

    #tsiftetelig2-l, #tsiftetelig3-l, #tsiftetelig4-l, #tsiftetelig5-l, #tsiftetelig6-l, #tsiftetelig7-l, #tsiftetelig8-l, #tsiftetelig9-l, #tsiftetelig10-l, #tsiftetelig11-l, #tsiftetelig12-l, #tsiftetelig13-l, #tsiftetelig14-l, #tsiftetelig15-l, #tsiftetelig16-l {
        font-size: 33px;
    }

    #tsiftetelig2-r, #tsiftetelig3-r, #tsiftetelig4-r, #tsiftetelig5-r, #tsiftetelig6-r, #tsiftetelig7-r, #tsiftetelig8-r, #tsiftetelig9-r, #tsiftetelig10-r, #tsiftetelig11-r, #tsiftetelig12-r, #tsiftetelig13-r, #tsiftetelig14-r, #tsiftetelig15-r, #tsiftetelig16-r {
        font-size: 33px;
    }

    #tsiftetelig1-l {
        font-size: 33px;
    }

    #tsiftetelig1-r {
        font-size: 33px;
    }

    #romaniag2-l, #romaniag3-l, #romaniag4-l, #romaniag5-l, #romaniag6-l, #romaniag7-l, #romaniag8-l, #romaniag9-l, #romaniag10-l, #romaniag11-l {
        font-size: 33px;
    }

    #romaniag2-r, #romaniag3-r, #romaniag4-r, #romaniag5-r, #romaniag6-r, #romaniag7-r, #romaniag8-r, #romaniag9-r, #romaniag10-r, #romaniag11-r {
        font-size: 33px;
    }

    #romaniag1-l {
        font-size: 33px;
    }

    #romaniag1-r {
        font-size: 33px;
    }

    #cidunescog2-l, #cidunescog3-l, #cidunescog4-l, #cidunescog5-l, #cidunescog6-l, #cidunescog7-l, #cidunescog8-l, #cidunescog9-l, #cidunescog10-l, #cidunescog11-l {
        font-size: 33px;
    }

    #cidunescog2-r, #cidunescog3-r, #cidunescog4-r, #cidunescog5-r, #cidunescog6-r, #cidunescog7-r, #cidunescog8-r, #cidunescog9-r, #cidunescog10-r, #cidunescog11-r {
        font-size: 33px;
    }

    #cidunescog1-l {
        font-size: 33px;
    }

    #cidunescog1-r {
        font-size: 33px;
    }

    #showsg2-l, #showsg3-l, #showsg4-l, #showsg5-l, #showsg6-l, #showsg7-l, #showsg8-l, #showsg9-l, #showsg10-l, #showsg11-l, #showsg12-l, #showsg13-l, #showsg14-l, #showsg15-l, #showsg16-l, #showsg17-l, #showsg18-l, #showsg19-l, #showsg20-l {
        font-size: 33px;
    }

    #showsg2-r, #showsg3-r, #showsg4-r, #showsg5-r, #showsg6-r, #showsg7-r, #showsg8-r, #showsg9-r, #showsg10-r, #showsg11-r, #showsg12-r, #showsg13-r, #showsg14-r, #showsg15-r, #showsg16-r, #showsg17-r, #showsg18-r, #showsg19-r, #showsg20-r {
        font-size: 33px;
    }

    #showsg1-l {
        font-size: 33px;
    }

    #showsg1-r {
        font-size: 33px;
    }

    #sensualg2-l, #sensualg3-l, #sensualg4-l, #sensualg5-l, #sensualg6-l, #sensualg7-l, #sensualg8-l, #sensualg9-l, #sensualg10-l, #sensualg11-l, #sensualg12-l, #sensualg13-l, #sensualg14-l, #sensualg15-l {
        font-size: 33px;
    }

    #sensualg2-r, #sensualg3-r, #sensualg4-r, #sensualg5-r, #sensualg6-r, #sensualg7-r, #sensualg8-r, #sensualg9-r, #sensualg10-r, #sensualg11-r, #sensualg12-r, #sensualg13-r, #sensualg14-r, #sensualg15-r {
        font-size: 33px;
    }

    #sensualg1-l {
        font-size: 33px;
    }

    #sensualg1-r {
        font-size: 33px;
    }

    #agg2-l, #agg3-l, #agg4-l, #agg5-l, #agg6-l, #agg7-l, #agg8-l, #agg9-l, #agg10-l, #agg11-l, #agg12-l, #agg13-l, #agg14-l, #agg15-l, #agg16-l, #agg17-l, #agg18-l, #agg19-l, #agg20-l, #agg21-l, #agg22-l, #agg23-l, #agg24-l, #agg25-l, #agg26-l, #agg27-l, #agg28-l {
        font-size: 33px;
    }

    #agg2-r, #agg3-r, #agg4-r, #agg5-r, #agg6-r, #agg7-r, #agg8-r, #agg9-r, #agg10-r, #agg11-r, #agg12-r, #agg13-r, #agg14-r, #agg15-r, #agg16-r, #agg17-r, #agg18-r, #agg19-r, #agg20-r, #agg21-r, #agg22-r, #agg23-r, #agg24-r, #agg25-r, #agg26-r, #agg27-r, #agg28-r {
        font-size: 33px;
    }

    #agg1-l {
        font-size: 33px;
    }

    #agg1-r {
        font-size: 33px;
    }

}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #galleryheader p {
        font-size: 29px;
    }

    #galleryheadertitle {
        font-size: 75px;
    }

    .gallery-rowitem p {
        font-size: 37px;
    }

    #chairdanceg2-l, #chairdanceg3-l, #chairdanceg4-l, #chairdanceg5-l, #chairdanceg6-l, #chairdanceg7-l, #chairdanceg8-l, #chairdanceg9-l, #chairdanceg10-l, #chairdanceg11-l, #chairdanceg12-l, #chairdanceg13-l, #chairdanceg14-l, #chairdanceg15-l, #chairdanceg16-l, #chairdanceg17-l {
        font-size: 37px;
    }

    #chairdanceg2-r, #chairdanceg3-r, #chairdanceg4-r, #chairdanceg5-r, #chairdanceg6-r, #chairdanceg7-r, #chairdanceg8-r, #chairdanceg9-r, #chairdanceg10-r, #chairdanceg11-r, #chairdanceg12-r, #chairdanceg13-r, #chairdanceg14-r, #chairdanceg15-r, #chairdanceg16-r, #chairdanceg17-r {
        font-size: 37px;
    }

    #chairdanceg1-l {
        font-size: 37px;
    }

    #chairdanceg1-r {
        font-size: 37px;
    }

    #tsiftetelig2-l, #tsiftetelig3-l, #tsiftetelig4-l, #tsiftetelig5-l, #tsiftetelig6-l, #tsiftetelig7-l, #tsiftetelig8-l, #tsiftetelig9-l, #tsiftetelig10-l, #tsiftetelig11-l, #tsiftetelig12-l, #tsiftetelig13-l, #tsiftetelig14-l, #tsiftetelig15-l, #tsiftetelig16-l {
        font-size: 37px;
    }

    #tsiftetelig2-r, #tsiftetelig3-r, #tsiftetelig4-r, #tsiftetelig5-r, #tsiftetelig6-r, #tsiftetelig7-r, #tsiftetelig8-r, #tsiftetelig9-r, #tsiftetelig10-r, #tsiftetelig11-r, #tsiftetelig12-r, #tsiftetelig13-r, #tsiftetelig14-r, #tsiftetelig15-r, #tsiftetelig16-r {
        font-size: 37px;
    }

    #tsiftetelig1-l {
        font-size: 37px;
    }

    #tsiftetelig1-r {
        font-size: 37px;
    }

    #romaniag2-l, #romaniag3-l, #romaniag4-l, #romaniag5-l, #romaniag6-l, #romaniag7-l, #romaniag8-l, #romaniag9-l, #romaniag10-l, #romaniag11-l {
        font-size: 37px;
    }

    #romaniag2-r, #romaniag3-r, #romaniag4-r, #romaniag5-r, #romaniag6-r, #romaniag7-r, #romaniag8-r, #romaniag9-r, #romaniag10-r, #romaniag11-r {
        font-size: 37px;
    }

    #romaniag1-l {
        font-size: 37px;
    }

    #romaniag1-r {
        font-size: 37px;
    }

    #cidunescog2-l, #cidunescog3-l, #cidunescog4-l, #cidunescog5-l, #cidunescog6-l, #cidunescog7-l, #cidunescog8-l, #cidunescog9-l, #cidunescog10-l, #cidunescog11-l {
        font-size: 37px;
    }

    #cidunescog2-r, #cidunescog3-r, #cidunescog4-r, #cidunescog5-r, #cidunescog6-r, #cidunescog7-r, #cidunescog8-r, #cidunescog9-r, #cidunescog10-r, #cidunescog11-r {
        font-size: 37px;
    }

    #cidunescog1-l {
        font-size: 37px;
    }

    #cidunescog1-r {
        font-size: 37px;
    }

    #showsg2-l, #showsg3-l, #showsg4-l, #showsg5-l, #showsg6-l, #showsg7-l, #showsg8-l, #showsg9-l, #showsg10-l, #showsg11-l, #showsg12-l, #showsg13-l, #showsg14-l, #showsg15-l, #showsg16-l, #showsg17-l, #showsg18-l, #showsg19-l, #showsg20-l {
        font-size: 37px;
    }

    #showsg2-r, #showsg3-r, #showsg4-r, #showsg5-r, #showsg6-r, #showsg7-r, #showsg8-r, #showsg9-r, #showsg10-r, #showsg11-r, #showsg12-r, #showsg13-r, #showsg14-r, #showsg15-r, #showsg16-r, #showsg17-r, #showsg18-r, #showsg19-r, #showsg20-r {
        font-size: 37px;
    }

    #showsg1-l {
        font-size: 37px;
    }

    #showsg1-r {
        font-size: 37px;
    }

    #sensualg2-l, #sensualg3-l, #sensualg4-l, #sensualg5-l, #sensualg6-l, #sensualg7-l, #sensualg8-l, #sensualg9-l, #sensualg10-l, #sensualg11-l, #sensualg12-l, #sensualg13-l, #sensualg14-l, #sensualg15-l {
        font-size: 37px;
    }

    #sensualg2-r, #sensualg3-r, #sensualg4-r, #sensualg5-r, #sensualg6-r, #sensualg7-r, #sensualg8-r, #sensualg9-r, #sensualg10-r, #sensualg11-r, #sensualg12-r, #sensualg13-r, #sensualg14-r, #sensualg15-r {
        font-size: 37px;
    }

    #sensualg1-l {
        font-size: 37px;
    }

    #sensualg1-r {
        font-size: 37px;
    }

    #agg2-l, #agg3-l, #agg4-l, #agg5-l, #agg6-l, #agg7-l, #agg8-l, #agg9-l, #agg10-l, #agg11-l, #agg12-l, #agg13-l, #agg14-l, #agg15-l, #agg16-l, #agg17-l, #agg18-l, #agg19-l, #agg20-l, #agg21-l, #agg22-l, #agg23-l, #agg24-l, #agg25-l, #agg26-l, #agg27-l, #agg28-l {
        font-size: 37px;
    }

    #agg2-r, #agg3-r, #agg4-r, #agg5-r, #agg6-r, #agg7-r, #agg8-r, #agg9-r, #agg10-r, #agg11-r, #agg12-r, #agg13-r, #agg14-r, #agg15-r, #agg16-r, #agg17-r, #agg18-r, #agg19-r, #agg20-r, #agg21-r, #agg22-r, #agg23-r, #agg24-r, #agg25-r, #agg26-r, #agg27-r, #agg28-r {
        font-size: 37px;
    }

    #agg1-l {
        font-size: 37px;
    }

    #agg1-r {
        font-size: 37px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #galleryheader p {
        font-size: 35px;
    }

    #galleryheadertitle {
        font-size: 95px;
    }

    .gallery-rowitem p {
        font-size: 43px;
    }

    #chairdanceg2-l, #chairdanceg3-l, #chairdanceg4-l, #chairdanceg5-l, #chairdanceg6-l, #chairdanceg7-l, #chairdanceg8-l, #chairdanceg9-l, #chairdanceg10-l, #chairdanceg11-l, #chairdanceg12-l, #chairdanceg13-l, #chairdanceg14-l, #chairdanceg15-l, #chairdanceg16-l, #chairdanceg17-l {
        font-size: 43px;
    }

    #chairdanceg2-r, #chairdanceg3-r, #chairdanceg4-r, #chairdanceg5-r, #chairdanceg6-r, #chairdanceg7-r, #chairdanceg8-r, #chairdanceg9-r, #chairdanceg10-r, #chairdanceg11-r, #chairdanceg12-r, #chairdanceg13-r, #chairdanceg14-r, #chairdanceg15-r, #chairdanceg16-r, #chairdanceg17-r {
        font-size: 43px;
    }

    #chairdanceg1-l {
        font-size: 43px;
    }

    #chairdanceg1-r {
        font-size: 43px;
    }

    #tsiftetelig2-l, #tsiftetelig3-l, #tsiftetelig4-l, #tsiftetelig5-l, #tsiftetelig6-l, #tsiftetelig7-l, #tsiftetelig8-l, #tsiftetelig9-l, #tsiftetelig10-l, #tsiftetelig11-l, #tsiftetelig12-l, #tsiftetelig13-l, #tsiftetelig14-l, #tsiftetelig15-l, #tsiftetelig16-l {
        font-size: 43px;
    }

    #tsiftetelig2-r, #tsiftetelig3-r, #tsiftetelig4-r, #tsiftetelig5-r, #tsiftetelig6-r, #tsiftetelig7-r, #tsiftetelig8-r, #tsiftetelig9-r, #tsiftetelig10-r, #tsiftetelig11-r, #tsiftetelig12-r, #tsiftetelig13-r, #tsiftetelig14-r, #tsiftetelig15-r, #tsiftetelig16-r {
        font-size: 43px;
    }

    #tsiftetelig1-l {
        font-size: 43px;
    }

    #tsiftetelig1-r {
        font-size: 43px;
    }

    #romaniag2-l, #romaniag3-l, #romaniag4-l, #romaniag5-l, #romaniag6-l, #romaniag7-l, #romaniag8-l, #romaniag9-l, #romaniag10-l, #romaniag11-l {
        font-size: 43px;
    }

    #romaniag2-r, #romaniag3-r, #romaniag4-r, #romaniag5-r, #romaniag6-r, #romaniag7-r, #romaniag8-r, #romaniag9-r, #romaniag10-r, #romaniag11-r {
        font-size: 43px;
    }

    #romaniag1-l {
        font-size: 43px;
    }

    #romaniag1-r {
        font-size: 43px;
    }

    #cidunescog2-l, #cidunescog3-l, #cidunescog4-l, #cidunescog5-l, #cidunescog6-l, #cidunescog7-l, #cidunescog8-l, #cidunescog9-l, #cidunescog10-l, #cidunescog11-l {
        font-size: 43px;
    }

    #cidunescog2-r, #cidunescog3-r, #cidunescog4-r, #cidunescog5-r, #cidunescog6-r, #cidunescog7-r, #cidunescog8-r, #cidunescog9-r, #cidunescog10-r, #cidunescog11-r {
        font-size: 43px;
    }

    #cidunescog1-l {
        font-size: 43px;
    }

    #cidunescog1-r {
        font-size: 43px;
    }

    #showsg2-l, #showsg3-l, #showsg4-l, #showsg5-l, #showsg6-l, #showsg7-l, #showsg8-l, #showsg9-l, #showsg10-l, #showsg11-l, #showsg12-l, #showsg13-l, #showsg14-l, #showsg15-l, #showsg16-l, #showsg17-l, #showsg18-l, #showsg19-l, #showsg20-l {
        font-size: 43px;
    }

    #showsg2-r, #showsg3-r, #showsg4-r, #showsg5-r, #showsg6-r, #showsg7-r, #showsg8-r, #showsg9-r, #showsg10-r, #showsg11-r, #showsg12-r, #showsg13-r, #showsg14-r, #showsg15-r, #showsg16-r, #showsg17-r, #showsg18-r, #showsg19-r, #showsg20-r {
        font-size: 43px;
    }

    #showsg1-l {
        font-size: 43px;
    }

    #showsg1-r {
        font-size: 43px;
    }

    #sensualg2-l, #sensualg3-l, #sensualg4-l, #sensualg5-l, #sensualg6-l, #sensualg7-l, #sensualg8-l, #sensualg9-l, #sensualg10-l, #sensualg11-l, #sensualg12-l, #sensualg13-l, #sensualg14-l, #sensualg15-l {
        font-size: 43px;
    }

    #sensualg2-r, #sensualg3-r, #sensualg4-r, #sensualg5-r, #sensualg6-r, #sensualg7-r, #sensualg8-r, #sensualg9-r, #sensualg10-r, #sensualg11-r, #sensualg12-r, #sensualg13-r, #sensualg14-r, #sensualg15-r {
        font-size: 43px;
    }

    #sensualg1-l {
        font-size: 43px;
    }

    #sensualg1-r {
        font-size: 43px;
    }

    #agg2-l, #agg3-l, #agg4-l, #agg5-l, #agg6-l, #agg7-l, #agg8-l, #agg9-l, #agg10-l, #agg11-l, #agg12-l, #agg13-l, #agg14-l, #agg15-l, #agg16-l, #agg17-l, #agg18-l, #agg19-l, #agg20-l, #agg21-l, #agg22-l, #agg23-l, #agg24-l, #agg25-l, #agg26-l, #agg27-l, #agg28-l {
        font-size: 43px;
    }

    #agg2-r, #agg3-r, #agg4-r, #agg5-r, #agg6-r, #agg7-r, #agg8-r, #agg9-r, #agg10-r, #agg11-r, #agg12-r, #agg13-r, #agg14-r, #agg15-r, #agg16-r, #agg17-r, #agg18-r, #agg19-r, #agg20-r, #agg21-r, #agg22-r, #agg23-r, #agg24-r, #agg25-r, #agg26-r, #agg27-r, #agg28-r {
        font-size: 43px;
    }

    #agg1-l {
        font-size: 43px;
    }

    #agg1-r {
        font-size: 43px;
    }
}

@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #galleryheader p {
        font-size: 45px;
    }

    #galleryheadertitle {
        font-size: 120px;
    }

    .gallery-rowitem p {
        font-size: 50px;
    }

    #chairdanceg2-l, #chairdanceg3-l, #chairdanceg4-l, #chairdanceg5-l, #chairdanceg6-l, #chairdanceg7-l, #chairdanceg8-l, #chairdanceg9-l, #chairdanceg10-l, #chairdanceg11-l, #chairdanceg12-l, #chairdanceg13-l, #chairdanceg14-l, #chairdanceg15-l, #chairdanceg16-l, #chairdanceg17-l {
        font-size: 50px;
    }

    #chairdanceg2-r, #chairdanceg3-r, #chairdanceg4-r, #chairdanceg5-r, #chairdanceg6-r, #chairdanceg7-r, #chairdanceg8-r, #chairdanceg9-r, #chairdanceg10-r, #chairdanceg11-r, #chairdanceg12-r, #chairdanceg13-r, #chairdanceg14-r, #chairdanceg15-r, #chairdanceg16-r, #chairdanceg17-r {
        font-size: 50px;
    }

    #chairdanceg1-l {
        font-size: 50px;
    }

    #chairdanceg1-r {
        font-size: 50px;
    }

    #tsiftetelig2-l, #tsiftetelig3-l, #tsiftetelig4-l, #tsiftetelig5-l, #tsiftetelig6-l, #tsiftetelig7-l, #tsiftetelig8-l, #tsiftetelig9-l, #tsiftetelig10-l, #tsiftetelig11-l, #tsiftetelig12-l, #tsiftetelig13-l, #tsiftetelig14-l, #tsiftetelig15-l, #tsiftetelig16-l {
        font-size: 50px;
    }

    #tsiftetelig2-r, #tsiftetelig3-r, #tsiftetelig4-r, #tsiftetelig5-r, #tsiftetelig6-r, #tsiftetelig7-r, #tsiftetelig8-r, #tsiftetelig9-r, #tsiftetelig10-r, #tsiftetelig11-r, #tsiftetelig12-r, #tsiftetelig13-r, #tsiftetelig14-r, #tsiftetelig15-r, #tsiftetelig16-r {
        font-size: 50px;
    }

    #tsiftetelig1-l {
        font-size: 50px;
    }

    #tsiftetelig1-r {
        font-size: 50px;
    }

    #romaniag2-l, #romaniag3-l, #romaniag4-l, #romaniag5-l, #romaniag6-l, #romaniag7-l, #romaniag8-l, #romaniag9-l, #romaniag10-l, #romaniag11-l {
        font-size: 50px;
    }

    #romaniag2-r, #romaniag3-r, #romaniag4-r, #romaniag5-r, #romaniag6-r, #romaniag7-r, #romaniag8-r, #romaniag9-r, #romaniag10-r, #romaniag11-r {
        font-size: 50px;
    }

    #romaniag1-l {
        font-size: 50px;
    }

    #romaniag1-r {
        font-size: 50px;
    }

    #cidunescog2-l, #cidunescog3-l, #cidunescog4-l, #cidunescog5-l, #cidunescog6-l, #cidunescog7-l, #cidunescog8-l, #cidunescog9-l, #cidunescog10-l, #cidunescog11-l {
        font-size: 50px;
    }

    #cidunescog2-r, #cidunescog3-r, #cidunescog4-r, #cidunescog5-r, #cidunescog6-r, #cidunescog7-r, #cidunescog8-r, #cidunescog9-r, #cidunescog10-r, #cidunescog11-r {
        font-size: 50px;
    }

    #cidunescog1-l {
        font-size: 50px;
    }

    #cidunescog1-r {
        font-size: 50px;
    }

    #showsg2-l, #showsg3-l, #showsg4-l, #showsg5-l, #showsg6-l, #showsg7-l, #showsg8-l, #showsg9-l, #showsg10-l, #showsg11-l, #showsg12-l, #showsg13-l, #showsg14-l, #showsg15-l, #showsg16-l, #showsg17-l, #showsg18-l, #showsg19-l, #showsg20-l {
        font-size: 50px;
    }

    #showsg2-r, #showsg3-r, #showsg4-r, #showsg5-r, #showsg6-r, #showsg7-r, #showsg8-r, #showsg9-r, #showsg10-r, #showsg11-r, #showsg12-r, #showsg13-r, #showsg14-r, #showsg15-r, #showsg16-r, #showsg17-r, #showsg18-r, #showsg19-r, #showsg20-r {
        font-size: 50px;
    }

    #showsg1-l {
        font-size: 50px;
    }

    #showsg1-r {
        font-size: 50px;
    }

    #sensualg2-l, #sensualg3-l, #sensualg4-l, #sensualg5-l, #sensualg6-l, #sensualg7-l, #sensualg8-l, #sensualg9-l, #sensualg10-l, #sensualg11-l, #sensualg12-l, #sensualg13-l, #sensualg14-l, #sensualg15-l {
        font-size: 50px;
    }

    #sensualg2-r, #sensualg3-r, #sensualg4-r, #sensualg5-r, #sensualg6-r, #sensualg7-r, #sensualg8-r, #sensualg9-r, #sensualg10-r, #sensualg11-r, #sensualg12-r, #sensualg13-r, #sensualg14-r, #sensualg15-r {
        font-size: 50px;
    }

    #sensualg1-l {
        font-size: 50px;
    }

    #sensualg1-r {
        font-size: 50px;
    }

    #agg2-l, #agg3-l, #agg4-l, #agg5-l, #agg6-l, #agg7-l, #agg8-l, #agg9-l, #agg10-l, #agg11-l, #agg12-l, #agg13-l, #agg14-l, #agg15-l, #agg16-l, #agg17-l, #agg18-l, #agg19-l, #agg20-l, #agg21-l, #agg22-l, #agg23-l, #agg24-l, #agg25-l, #agg26-l, #agg27-l, #agg28-l {
        font-size: 50px;
    }

    #agg2-r, #agg3-r, #agg4-r, #agg5-r, #agg6-r, #agg7-r, #agg8-r, #agg9-r, #agg10-r, #agg11-r, #agg12-r, #agg13-r, #agg14-r, #agg15-r, #agg16-r, #agg17-r, #agg18-r, #agg19-r, #agg20-r, #agg21-r, #agg22-r, #agg23-r, #agg24-r, #agg25-r, #agg26-r, #agg27-r, #agg28-r {
        font-size: 50px;
    }

    #agg1-l {
        font-size: 50px;
    }

    #agg1-r {
        font-size: 50px;
    }
}

@media only screen and (min-width: 3001px) {
    #galleryheader p {
        font-size: 60px;
    }

    #galleryheadertitle {
        font-size: 145px;
    }

    .gallery-rowitem p {
        font-size: 65px;
    }

    #chairdanceg2-l, #chairdanceg3-l, #chairdanceg4-l, #chairdanceg5-l, #chairdanceg6-l, #chairdanceg7-l, #chairdanceg8-l, #chairdanceg9-l, #chairdanceg10-l, #chairdanceg11-l, #chairdanceg12-l, #chairdanceg13-l, #chairdanceg14-l, #chairdanceg15-l, #chairdanceg16-l, #chairdanceg17-l {
        font-size: 65px;
    }

    #chairdanceg2-r, #chairdanceg3-r, #chairdanceg4-r, #chairdanceg5-r, #chairdanceg6-r, #chairdanceg7-r, #chairdanceg8-r, #chairdanceg9-r, #chairdanceg10-r, #chairdanceg11-r, #chairdanceg12-r, #chairdanceg13-r, #chairdanceg14-r, #chairdanceg15-r, #chairdanceg16-r, #chairdanceg17-r {
        font-size: 65px;
    }

    #chairdanceg1-l {
        font-size: 65px;
    }

    #chairdanceg1-r {
        font-size: 65px;
    }

    #tsiftetelig2-l, #tsiftetelig3-l, #tsiftetelig4-l, #tsiftetelig5-l, #tsiftetelig6-l, #tsiftetelig7-l, #tsiftetelig8-l, #tsiftetelig9-l, #tsiftetelig10-l, #tsiftetelig11-l, #tsiftetelig12-l, #tsiftetelig13-l, #tsiftetelig14-l, #tsiftetelig15-l, #tsiftetelig16-l {
        font-size: 65px;
    }

    #tsiftetelig2-r, #tsiftetelig3-r, #tsiftetelig4-r, #tsiftetelig5-r, #tsiftetelig6-r, #tsiftetelig7-r, #tsiftetelig8-r, #tsiftetelig9-r, #tsiftetelig10-r, #tsiftetelig11-r, #tsiftetelig12-r, #tsiftetelig13-r, #tsiftetelig14-r, #tsiftetelig15-r, #tsiftetelig16-r {
        font-size: 65px;
    }

    #tsiftetelig1-l {
        font-size: 65px;
    }

    #tsiftetelig1-r {
        font-size: 65px;
    }

    #romaniag2-l, #romaniag3-l, #romaniag4-l, #romaniag5-l, #romaniag6-l, #romaniag7-l, #romaniag8-l, #romaniag9-l, #romaniag10-l, #romaniag11-l {
        font-size: 65px;
    }

    #romaniag2-r, #romaniag3-r, #romaniag4-r, #romaniag5-r, #romaniag6-r, #romaniag7-r, #romaniag8-r, #romaniag9-r, #romaniag10-r, #romaniag11-r {
        font-size: 65px;
    }

    #romaniag1-l {
        font-size: 65px;
    }

    #romaniag1-r {
        font-size: 65px;
    }

    #cidunescog2-l, #cidunescog3-l, #cidunescog4-l, #cidunescog5-l, #cidunescog6-l, #cidunescog7-l, #cidunescog8-l, #cidunescog9-l, #cidunescog10-l, #cidunescog11-l {
        font-size: 65px;
    }

    #cidunescog2-r, #cidunescog3-r, #cidunescog4-r, #cidunescog5-r, #cidunescog6-r, #cidunescog7-r, #cidunescog8-r, #cidunescog9-r, #cidunescog10-r, #cidunescog11-r {
        font-size: 65px;
    }

    #cidunescog1-l {
        font-size: 65px;
    }

    #cidunescog1-r {
        font-size: 65px;
    }

    #showsg2-l, #showsg3-l, #showsg4-l, #showsg5-l, #showsg6-l, #showsg7-l, #showsg8-l, #showsg9-l, #showsg10-l, #showsg11-l, #showsg12-l, #showsg13-l, #showsg14-l, #showsg15-l, #showsg16-l, #showsg17-l, #showsg18-l, #showsg19-l, #showsg20-l {
        font-size: 65px;
    }

    #showsg2-r, #showsg3-r, #showsg4-r, #showsg5-r, #showsg6-r, #showsg7-r, #showsg8-r, #showsg9-r, #showsg10-r, #showsg11-r, #showsg12-r, #showsg13-r, #showsg14-r, #showsg15-r, #showsg16-r, #showsg17-r, #showsg18-r, #showsg19-r, #showsg20-r {
        font-size: 65px;
    }

    #showsg1-l {
        font-size: 65px;
    }

    #showsg1-r {
        font-size: 65px;
    }

    #sensualg2-l, #sensualg3-l, #sensualg4-l, #sensualg5-l, #sensualg6-l, #sensualg7-l, #sensualg8-l, #sensualg9-l, #sensualg10-l, #sensualg11-l, #sensualg12-l, #sensualg13-l, #sensualg14-l, #sensualg15-l {
        font-size: 65px;
    }

    #sensualg2-r, #sensualg3-r, #sensualg4-r, #sensualg5-r, #sensualg6-r, #sensualg7-r, #sensualg8-r, #sensualg9-r, #sensualg10-r, #sensualg11-r, #sensualg12-r, #sensualg13-r, #sensualg14-r, #sensualg15-r {
        font-size: 65px;
    }

    #sensualg1-l {
        font-size: 65px;
    }

    #sensualg1-r {
        font-size: 65px;
    }

    #agg2-l, #agg3-l, #agg4-l, #agg5-l, #agg6-l, #agg7-l, #agg8-l, #agg9-l, #agg10-l, #agg11-l, #agg12-l, #agg13-l, #agg14-l, #agg15-l, #agg16-l, #agg17-l, #agg18-l, #agg19-l, #agg20-l, #agg21-l, #agg22-l, #agg23-l, #agg24-l, #agg25-l, #agg26-l, #agg27-l, #agg28-l {
        font-size: 65px;
    }

    #agg2-r, #agg3-r, #agg4-r, #agg5-r, #agg6-r, #agg7-r, #agg8-r, #agg9-r, #agg10-r, #agg11-r, #agg12-r, #agg13-r, #agg14-r, #agg15-r, #agg16-r, #agg17-r, #agg18-r, #agg19-r, #agg20-r, #agg21-r, #agg22-r, #agg23-r, #agg24-r, #agg25-r, #agg26-r, #agg27-r, #agg28-r {
        font-size: 65px;
    }

    #agg1-l {
        font-size: 65px;
    }

    #agg1-r {
        font-size: 65px;
    }
}
/*end of gallery page media queries*/
/*end of gallery page styling*/

/*log in page styling*/
#loginpage-body {
    background: url('/media/baroquebg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    color:#DAC3A9;
    min-height:100vh;
}
#login-formcontainer {
    width: 100%;
    background-color:#5E0506;
    margin-top:5%;
    padding-top: 3%;
    padding-bottom: 3%;
}
    #login-formcontainer td {
        padding-top: 1.5%;
        padding-bottom: 1.5%;
    }
    #Login1 {
        font-size: 20px;
    }
#Login1_RememberMe {
   margin-right:3%;
   margin-left:10%;
}
#Login1_LoginButton {
    text-align: center;
    margin: 0 auto;
    display: table;
    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;
    font-size: 20px;
}
#Login1_LoginButton:hover{
    cursor:pointer;
}

#SignIn {
    font-size: 40px;
    display: none;
}

    #SignIn:hover {
        cursor: pointer;
    }



#forgotpassword{
    font-size: 20px;
}

    #forgotpassword:hover {
        cursor: pointer;
    }

#PasswordRecovery1 {
    font-size: 20px;
    display: none;
}
#PasswordRecovery1_UserNameContainerID_SubmitButton{
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;
}

    #PasswordRecovery1_UserNameContainerID_SubmitButton:hover {
        cursor: pointer;
    }
#CreateAccount {
    font-size: 20px;
}

    #CreateAccount:hover {
        cursor: pointer;
    }

#CreateUserWizard1 {
    font-size: 20px;
    display: none;
}




#ChangePassword {
    font-size: 20px;
}
#ChangePassword1 {
    font-size: 20px;
    display: none;
}

#ChangePassword1_ChangePasswordContainerID_ChangePasswordPushButton {
    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;
}
    #ChangePassword1_ChangePasswordContainerID_ChangePasswordPushButton:hover {
        cursor: pointer;
    }
#ChangePassword1_ChangePasswordContainerID_CancelPushButton {
    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: 35%;
    font-size: 20px;
}
        #ChangePassword1_ChangePasswordContainerID_CancelPushButton:hover {
            cursor: pointer;
        }
#Button1{
    display:none;
}
#captcha {
    font-size: 20px;
    color: #edd34e;
}
#signupform-container {
    width: 100%;
    background-color: #5E0506;
    margin-top: 5%;
    padding-top: 3%;
    padding-bottom: 3%;
}
    #signupform-container td {
        padding-top: 1.5%;
        padding-bottom: 1.5%;
    }
#CreateUserWizard1 {
    font-size: 20px;
}
#CreateUserWizard1___CustomNav0_StepNextButtonButton {
    text-align: center;
    margin: 0 auto;
    display: table;
    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;
    font-size: 20px;
}

    #CreateUserWizard1___CustomNav0_StepNextButtonButton:hover {
        cursor: pointer;
    }
/*log in page media queries*/
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #Login1 {
        font-size: 23px;
    }

    #Login1_LoginButton {
        font-size: 23px;
    }
    #forgotpasswordprompt {
        font-size: 23px;
    }
    #ChangePassword1 {
        font-size: 23px;
    }
    #ChangePassword1_ChangePasswordContainerID_ChangePasswordPushButton {
        font-size: 23px;
    }
    #ChangePassword1_ChangePasswordContainerID_CancelPushButton {
        font-size: 23px;
    }
    #CreateUserWizard1 {
        font-size: 23px;
    }
    #captcha {
        font-size: 23px;
    }
}


@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #Login1 {
        font-size: 27px;
    }

    #Login1_LoginButton {
        font-size: 27px;
    }

    #forgotpasswordprompt {
        font-size: 27px;
    }

    #ChangePassword1 {
        font-size: 27px;
    }

    #ChangePassword1_ChangePasswordContainerID_ChangePasswordPushButton {
        font-size: 27px;
    }

    #ChangePassword1_ChangePasswordContainerID_CancelPushButton {
        font-size: 27px;
    }
    #CreateUserWizard1 {
        font-size: 27px;
    }
    #captcha {
        font-size: 27px;
    }
}

@media only screen and (min-width: 1901px) and (max-width: 2400px) {
    #Login1 {
        font-size: 33px;
    }

    #Login1_LoginButton {
        font-size: 33px;
    }

    #forgotpasswordprompt {
        font-size: 33px;
    }

    #ChangePassword1 {
        font-size: 33px;
    }

    #ChangePassword1_ChangePasswordContainerID_ChangePasswordPushButton {
        font-size: 33px;
    }

    #ChangePassword1_ChangePasswordContainerID_CancelPushButton {
        font-size: 33px;
    }
    #CreateUserWizard1 {
        font-size: 33px;
    }
    #captcha {
        font-size: 33px;
    }
}


@media only screen and (min-width: 2401px) and (max-width: 3000px) {
    #Login1 {
        font-size: 40px;
    }

    #Login1_LoginButton {
        font-size: 40px;
    }

    #forgotpasswordprompt {
        font-size: 40px;
    }

    #ChangePassword1 {
        font-size: 40px;
    }

    #ChangePassword1_ChangePasswordContainerID_ChangePasswordPushButton {
        font-size: 40px;
    }

    #ChangePassword1_ChangePasswordContainerID_CancelPushButton {
        font-size: 40px;
    }
    #CreateUserWizard1 {
        font-size: 40px;
    }
    #captcha {
        font-size: 40px;
    }
}

@media only screen and (min-width: 3001px) {
    #Login1 {
        font-size: 55px;
    }

    #Login1_LoginButton {
        font-size: 55px;
    }

    #forgotpasswordprompt {
        font-size: 55px;
    }

    #ChangePassword1 {
        font-size: 55px;
    }

    #ChangePassword1_ChangePasswordContainerID_ChangePasswordPushButton {
        font-size: 55px;
    }

    #ChangePassword1_ChangePasswordContainerID_CancelPushButton {
        font-size: 55px;
    }
    #CreateUserWizard1 {
        font-size: 55px;
    }
    #captcha {
        font-size: 55px;
    }
}
/*end of log in page media queries*/
/*end of log in page styling*/
.hvr-underline-from-center {
    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-from-center:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 51%;
        right: 51%;
        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: 2px;
        -webkit-transition-property: left, right;
        transition-property: left, right;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
        left: 0;
        right: 0;
    }




#reviews-gallery-wrapper {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

    #reviews-gallery-wrapper i:hover {
        cursor: pointer;
    }

#reviews-gallery-left, #reviews-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#reviews-gallery-middle img {
    width: 100%;
    margin: 0 auto;
}

#reviews-gallery-middle {
    width: 90%;
}

#reviewsg2-l, #reviewsg3-l, #reviewsg4-l, #reviewsg5-l, #reviewsg6-l, #reviewsg7-l, #reviewsg8-l, #reviewsg9-l, #reviewsg10-l, #reviewsg11-l, #reviewsg12-l, #reviewsg13-l, #reviewsg14-l, #reviewsg15-l, #reviewsg16-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;
}

#reviewsg2-r, #reviewsg3-r, #reviewsg4-r, #reviewsg5-r, #reviewsg6-r, #reviewsg7-r, #reviewsg8-r, #reviewsg9-r, #reviewsg10-r, #reviewsg11-r, #reviewsg12-r, #reviewsg13-r, #reviewsg14-r, #reviewsg15-r, #reviewsg16-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;
}

#reviewsg2-img, #reviewsg3-img, #reviewsg4-img, #reviewsg5-img, #reviewsg6-img, #reviewsg7-img, #reviewsg8-img, #reviewsg9-img, #reviewsg10-img, #reviewsg11-img, #reviewsg12-img, #reviewsg13-img, #reviewsg14-img, #reviewsg15-img, #reviewsg16-img {
    display: none;
}

#reviewsg1-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;
}

#reviewsg1-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;
}

#reviews2-gallery-wrapper {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

    #reviews2-gallery-wrapper i:hover {
        cursor: pointer;
    }

#reviews2-gallery-left, #reviews2-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#reviews2-gallery-middle img {
    width: 100%;
    margin: 0 auto;
}

#reviews2-gallery-middle {
    width: 90%;
}

#reviews2g2-l, #reviews2g3-l, #reviews2g4-l, #reviews2g5-l, #reviews2g6-l, #reviews2g7-l, #reviews2g8-l, #reviews2g9-l, #reviews2g10-l, #reviews2g11-l, #reviews2g12-l, #reviews2g13-l, #reviews2g14-l, #reviews2g15-l, #reviews2g16-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;
}

#reviews2g2-r, #reviews2g3-r, #reviews2g4-r, #reviews2g5-r, #reviews2g6-r, #reviews2g7-r, #reviews2g8-r, #reviews2g9-r, #reviews2g10-r, #reviews2g11-r, #reviews2g12-r, #reviews2g13-r, #reviews2g14-r, #reviews2g15-r, #reviews2g16-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;
}

#reviews2g2-img, #reviews2g3-img, #reviews2g4-img, #reviews2g5-img, #reviews2g6-img, #reviews2g7-img, #reviews2g8-img, #reviews2g9-img, #reviews2g10-img, #reviews2g11-img, #reviews2g12-img, #reviews2g13-img, #reviews2g14-img, #reviews2g15-img, #reviews2g16-img {
    display: none;
}

#reviews2g1-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;
}

#reviews2g1-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;
}


#reviews3-gallery-wrapper {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0 auto;
}

    #reviews3-gallery-wrapper i:hover {
        cursor: pointer;
    }

#reviews3-gallery-left, #reviews3-gallery-right {
    width: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#reviews3-gallery-middle img {
    width: 100%;
    margin: 0 auto;
}

#reviews3-gallery-middle {
    width: 90%;
}

#reviews3g2-l, #reviews3g3-l, #reviews3g4-l, #reviews3g5-l, #reviews3g6-l, #reviews3g7-l, #reviews3g8-l, #reviews3g9-l, #reviews3g10-l, #reviews3g11-l, #reviews3g12-l, #reviews3g13-l, #reviews3g14-l, #reviews3g15-l, #reviews3g16-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;
}

#reviews3g2-r, #reviews3g3-r, #reviews3g4-r, #reviews3g5-r, #reviews3g6-r, #reviews3g7-r, #reviews3g8-r, #reviews3g9-r, #reviews3g10-r, #reviews3g11-r, #reviews3g12-r, #reviews3g13-r, #reviews3g14-r, #reviews3g15-r, #reviews3g16-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;
}

#reviews3g2-img, #reviews3g3-img, #reviews3g4-img, #reviews3g5-img, #reviews3g6-img, #reviews3g7-img, #reviews3g8-img, #reviews3g9-img, #reviews3g10-img, #reviews3g11-img, #reviews3g12-img, #reviews3g13-img, #reviews3g14-img, #reviews3g15-img, #reviews3g16-img {
    display: none;
}

#reviews3g1-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;
}

#reviews3g1-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;
}
