@font-face {
    font-family: 'The Seasons Regular';
    src: url('/fonts/TheSeasons/Fontspring-DEMO-theseasons-reg.otf');

}

@font-face {
    font-family: 'The Seasons Italics';
    src: url('/fonts/TheSeasons/Fontspring-DEMO-theseasons-it.otf');

}

@font-face {
    font-family: 'TT Drugs';
    src: url('/fonts/TTDrugs/otf/TT Drugs Regular.otf');
}

body {
    background-color: white;
    font-family: 'TT Drugs';
    font-size: 14;
    color: #433d37;
    
    background-color: #d9d9d9;
}

.container {
    background-color: white;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 8px;

}

.header {
    display: flex;
    gap: 40px;
    justify-content: right;
}

h1 {
    font-family: 'The Seasons Regular';
    font-size: 42;
    color: #004aad;
}

h6 {
    color: #004aad;
    margin-bottom: 20px;
}

h3 {
    font-family: 'The Seasons Regular';
    font-size: 18pt;
}

h2 {
    font-family: 'The Seasons Regular';
    font-size: 22pt;
    color:  #99988a;
}

.button {
    border: 1pt solid #906236;
    display: flex;
    color: #433d37;
    text-decoration: none;
    width: 175px;
}

.button div:first-child {
    width: 75%;
    text-align: center;
    padding: 5px 20px;
    border-right: 1pt solid #906236;
    color: #433d37;
    font-size: 12;
}

.button div:last-child {
    width: 25%;
    padding: 5px 20px;
    text-align: center;
    color: #906236;
    font-size: 12;
}

.button-c {
    border: 1pt solid white;
    display: flex;
    color: white;
    text-decoration: none;
    width: 175px;
}

.button-c div:first-child {
    width: 75%;
    text-align: center;
    padding: 5px 20px;
    border-right: 1pt solid white;
    color: white;
    font-size: 12;
}

.button-c div:last-child {
    width: 25%;
    padding: 5px 20px;
    text-align: center;
    color: white;
    font-size: 12;
}

p {
    line-height: 1.8;
}

.rounded-image {
    border-radius: 50% !important;
    border: solid 1pt #d9d9d9;
    height: 200px;
    width: 200px;
    object-fit: cover;
  }

.headerIt {
    font-family: 'The Seasons Italics';
}

.header a {
    color: #423d37;
    font-size: 12;
    
}

.courses-container {
    border-radius: 8px;
    background-color: #315fa6;
    color: white;
}

.contact-info {
    background-color: #315fa6;
    color: white;
}

input[type=text], input[type=email], textarea {
    background-color: transparent;
    color: white;
    width: 100%;
    border: none;
    outline: none;
    border-bottom: solid 1pt white;
}

textarea {
    border: solid 1pt white;
    padding: 10px;
    height: 150px
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:   white;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:   white;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:   white;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    white;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    white;
}

::placeholder { /* Most modern browsers support this now. */
   color:    white;
}