:root {
  /* Colours:  */
  --dark-red: #c40a2f;
  --red: #de0a34;
  --charcoal: #342b2b;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

img {
    width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "playfair-display", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 110%;
  margin: 10px 0;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 22px;
  font-weight: 100;
}

p, li {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 10px 0;
  font-size: 16px;
}

strong {
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: 16px;
}
button {
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    white-space: nowrap;
} 

button i {
  font-size: 13px;
  margin-left: 10px;
}

a {
    color: inherit;
    text-decoration: none;
}

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


input, textarea {
    border: none;
    outline: 0;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border-radius: 15px;
    background-color: #FAF8F8;
    display: block;
    margin: 10px 0;
}

input.white {
  background: white;
}

audio {
  width: 200px ;
  height: 40px ;
  font-size: 5px !important;
}

/* Buttons */

.btn-dark-red {
    background: var(--dark-red);
    color: white;
    border: 1px solid var(--dark-red);
    padding: 6px 18px;
    border-radius: 0px 15px 15px 15px;
    transition: all 300ms ease;
}

.btn-dark-red:hover {
    background: white;
    color: var(--dark-red);
}

.btn-red {
    background: var(--red);
    color: white;
    border: 1px solid var(--red);
    padding: 6px 18px;
    border-radius: 0px 25px 25px 25px;
    transition: all 300ms ease;
    font-size: 17px;
    white-space: nowrap;
}

.btn-red i {
  font-size: 14px;
}

.btn-red:hover {
    background: white;
    color: var(--red);
}

.btn-white {
    color: var(--red);
    background: white;
    border: 1px solid var(--red);
    padding: 6px 18px;
    border-radius: 0px 25px 25px 25px;
    transition: all 300ms ease;
    font-size: 17px;
}

.btn-white:hover {
    color: white;
    background: var(--red);
}

.btn-black {
  color: white;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 6px 18px;
  border-radius: 0px 25px 25px 25px;
  transition: all 300ms ease;
  font-size: 17px;
}
.btn-black i {
  font-size: 14px;
}


.btn-black:hover {
  color: var(--charcoal);
  background: white;
}

.buttons-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons-container button {
    margin-right: 10px;
}

/* Classes */

.wrapper {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.fader {
  transition: all 1000ms ease;
  opacity: 0;
  transform: translateY(50px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-start {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-hidden {
  display: none;
}

.heading {
  font-family: 'playfair-display', serif;
  font-weight: 400;
  font-style: normal;
}

.italic {
    font-family: 'playfair-display', serif;
    font-weight: 400;
    font-style: italic;
}

.regular {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-style: normal;
}

.j {
  font-family: 'tangier', serif;
  font-weight: 700;
  font-style: normal;
  margin-right: 3px;
  transform: rotate(-10deg);
  display: inline-block;
}

.text-red {
    color: var(--red);
}

.text-white {
  color: white;
}

.red-underline {
  width: 80px;
  border-bottom: 2px solid var(--red);
  margin: 15px 0;
}

.inline-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inline-inputs input:first-child {
  margin-right: 20px;
}

.anchor {
  display: block;
  position: relative;
  top: -150px;
}

.content-row {
  padding: 40px 80px;
}

.content-row-padding {
  padding: 40px 200px;
}

.row-text {
  padding: 40px;
  width: 50%;
}

.row-text p {
  margin: 20px 0;
}

.row-text h5 {
  margin-bottom: 20px;;
}

.row-image {
  width: 50%;
}

.row-image iframe {
  width: 100%;
  height: 400px;;
}