@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Roboto+Condensed&display=swap');



* {
    box-sizing: border-box;
}


/* TEXT STYLES */



body {
    margin: 0px;
    width: 100vw;
}

p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4em;
    color: #F3E4C1;
}




h1 {
    font-family: 'Courgette', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 46px;
    color: #F3E4C1       ;
    padding-bottom: 16px;
    padding-top: 24px;
    line-height: 1.2em;
}


h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    color: #F3E4C1;
    padding-bottom: 20px;
    line-height: 1em;
    text-align: left;
}


.bold {
    font-weight: 800;
}

a:link {
    text-decoration: none;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48;
  line-height: 24px;
  font-size: 24px;
  display: inline-block;
}


.copy-link {
    display: flex;
    padding-bottom: 30px;
}



.copy-link-button {
    min-height: 40px;
    min-width: 40px;
    background: none;
    border: none;
    color: #F3E4C1;
    padding-bottom: 8px;
}


.copy-link-text {
    padding-right: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6em;
    color: #F3E4C1;
}

/* ANCHOR LINK */


a.anchor {
        display: block;
        position: relative;
        top: -32px;
        visibility: hidden;
}

a.anchor2 {
    display: block;
    position: relative;
    top: -150px;
    visibility: hidden;
}





/* HEADER */



#header {
    position: fixed;
    min-height: 70px;
    Top: 0px;  
    text-align: center;
    width: 100%;
    transition: all 0.5s ease;
    border-bottom: 3px solid #ECA052;
    background-color: #93683B;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 10px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12)
}


/* LOGO */


#logo-container {
    display: inline-block;
    padding-right: 40px;
}

#logo-container img {
    margin-top: 20px; margin-bottom: 20px;
    width: 100%;
}

#logo-container-2.scroll-down img {
    width: 60%; 
    transition: all 0.5s ease;

}

#logo-container-2 {
    display: inline-block;
}

#logo-container.hide-me {
    padding: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}



.logo-hidden {
    opacity: 0;
}




/* CONTAINERS */


.mainContainer-first {
    margin-top: 140px;
    height: auto;
    padding-bottom: 60px;
    width: 100%;
    background-color: #BA834A; 
}



.first-section {
    margin: auto;
    text-align: left;
    padding-bottom: 15px;
    padding-top: 40px;
}




.text-section-first {
    margin: auto;
    text-align: left;
    padding-bottom: 10px;
    padding-top: 30px;
    width: 500px;
}


.gold-row {
    height: 3px;
    display: flex;
    background-color: #ECA052;
}




/* FORM */


iframe {
    max-width: 100% !important;
    min-height: 800px;
}




.formContainer {
    background-color: #ECA052 ;
    padding-bottom: 40px;
    padding-top: 60px;
    height: auto;
    text-align: center;
}

.form {
    display: inline-block;

}





html {
    scroll-behavior: smooth;
  }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }





/* MID-WIDTH */

@media only screen and (max-width: 975px) {
    .imageContainer {
        height: 500px;
        overflow: hidden;
    }

}

@media only screen and (max-width: 830px) {
    .text-section, .text-section-first, .first-section {
        width: 80%;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 10px;
    }

    .main-container, .mainContainer-white, .mainContainer-first {
        padding-bottom: 30px;
    }

    .first-section {
        padding-bottom: 10px;
    }


}

/* MOBILE */



@media only screen and (max-width: 640px) {

    iframe {
        max-width: 100% !important;
        width: 500px !important;
    }
}

@media only screen and (max-width: 540px) {

    iframe {
        max-width: 100% !important;
        width: 460px !important;
    }
}



/* SMALLER MOBILE - IPHONE 5 */

@media only screen and (max-width: 375px) {
    .text-section, .text-section-first, .first-section {
        width: 80%;
        padding-left: 10px;
        padding-right: 10px;
    }

    iframe {
        max-width: 100% !important;
        width: auto !important;
    }

  /* S  #logo-container-2.scroll-down img {
        width: 40%; margin-top: 10px; margin-bottom: 10px;
        transition: all 0.5s ease;
    }
 */
}

