/* Filter Grayscale */
/* Clip path */
/* Transition */
/* Border radius */
/* CLEAR COTNENT */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.cl:before,
.cl:after,
.container:before,
.container:after {
  content: " ";
  display: table;
}

.cl:after,
.container:after {
  clear: both;
}

.cl {
  clear: both;
}

/* IMAGES */
.img-full {
  width: 100%;
  display: block;
}

.img-auto {
  margin: auto;
}

/* HR Lines*/
hr {
  margin: 0px;
  border: 0;
  border-top: 1px solid rgba(80, 80, 80, 0.1);
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}

/* DISPLAY */
.hide {
  display: none;
}

/* TEXT ALIGN */
.text-center {
  text-align: center;
}

/* TEXT TRANSFORM */
.text-upper {
  text-transform: uppercase;
}

/* COLORS */
.color-black {
  color: #505050;
}

.color-pink {
  color: #dca7bf;
}

/* PADDING */
.pb-20 {
  padding-bottom: 20px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

/* MARGINS */
.m-auto {
  margin: auto;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

@media screen and (max-width: 992px) {
  .mt-0-md {
    margin-top: 0;
  }
  .mt-10-md {
    margin-top: 10px;
  }
  .mt-20-md {
    margin-top: 20px;
  }
  .mt-40-md {
    margin-top: 40px;
  }
  .mt-60-md {
    margin-top: 60px;
  }
  .mt-80-md {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .mt-0-sm {
    margin-top: 0;
  }
  .mt-10-sm {
    margin-top: 10px;
  }
  .mt-20-sm {
    margin-top: 20px;
  }
  .mt-40-sm {
    margin-top: 40px;
  }
  .mt-60-sm {
    margin-top: 60px;
  }
  .mt-80-sm {
    margin-top: 80px;
  }
}
@media screen and (max-width: 600px) {
  .mt-0-xs {
    margin-top: 0;
  }
  .mt-10-xs {
    margin-top: 10px;
  }
  .mt-20-xs {
    margin-top: 20px;
  }
  .mt-40-xs {
    margin-top: 40px;
  }
  .mt-60-xs {
    margin-top: 60px;
  }
  .mt-80-xs {
    margin-top: 80px;
  }
}
.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

@media screen and (max-width: 992px) {
  .mb-0-md {
    margin-bottom: 0;
  }
  .mb-10-md {
    margin-bottom: 10px;
  }
  .mb-20-md {
    margin-bottom: 20px;
  }
  .mb-40-md {
    margin-bottom: 40px;
  }
  .mb-60-md {
    margin-bottom: 60px;
  }
  .mb-80-md {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .mb-0-sm {
    margin-bottom: 0;
  }
  .mb-10-sm {
    margin-bottom: 10px;
  }
  .mb-20-sm {
    margin-bottom: 20px;
  }
  .mb-40-sm {
    margin-bottom: 40px;
  }
  .mb-60-sm {
    margin-bottom: 60px;
  }
  .mb-80-sm {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 600px) {
  .mb-0-xs {
    margin-bottom: 0;
  }
  .mb-10-xs {
    margin-bottom: 10px;
  }
  .mb-20-xs {
    margin-bottom: 20px;
  }
  .mb-40-xs {
    margin-bottom: 40px;
  }
  .mb-60-xs {
    margin-bottom: 60px;
  }
  .mb-80-xs {
    margin-bottom: 80px;
  }
}
.padded20 {
  padding: 20px 0px;
}

.padded40,
.padded60,
.padded80 {
  padding: 40px 0px;
}

@media screen and (min-width: 992px) {
  .padded80 {
    padding: 60px 0px;
  }
}
@media screen and (min-width: 1080px) {
  .padded80 {
    padding: 80px 0px;
  }
}
/* FONT WEIGHTS */
.font400 {
  font-weight: 400;
}

.font500 {
  font-weight: 500;
}

.font600 {
  font-weight: 600;
}

.font700 {
  font-weight: 700;
}

.font800 {
  font-weight: 800;
}

.font900 {
  font-weight: 900;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 30px;
  font-style: normal;
  color: #505050;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(220, 167, 191, 0.2);
}

body.no-scroll {
  overflow: hidden;
}

html {
  height: 100%;
}

section,
header,
footer {
  position: relative;
  outline: 0;
  border: 0;
}

@media screen and (max-width: 767px) {
  section {
    overflow: hidden;
  }
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgba(220, 167, 191, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(220, 167, 191, 0.6);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(220, 167, 191, 0.6);
}

img {
  max-width: 100%;
  display: block;
}

b,
strong {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  color: #505050;
  z-index: 1;
  position: relative;
  margin-bottom: 10px;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    margin-bottom: 15px;
  }
}

h1 {
  font-family: "Gloria Hallelujah", cursive;
  font-size: 30px;
  line-height: 34px;
}
@media screen and (min-width: 767px) {
  h1 {
    font-size: 34px;
    line-height: 38px;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 40px;
    line-height: 44px;
  }
}
@media screen and (min-width: 1080px) {
  h1 {
    font-size: 50px;
    line-height: 54px;
  }
}

h2 {
  font-family: "Gloria Hallelujah", cursive;
  font-size: 26px;
  line-height: 30px;
}
@media screen and (min-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 34px;
    line-height: 38px;
  }
}
@media screen and (min-width: 1080px) {
  h2 {
    font-size: 40px;
    line-height: 44px;
  }
}

h3 {
  font-size: 22px;
  line-height: 26px;
}
@media screen and (min-width: 992px) {
  h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media screen and (min-width: 1080px) {
  h3 {
    font-size: 34px;
    line-height: 38px;
  }
}

h4 {
  font-size: 18px;
  line-height: 22px;
}
@media screen and (min-width: 992px) {
  h4 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (min-width: 1080px) {
  h4 {
    font-size: 24px;
    line-height: 28px;
  }
}

h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  h5 {
    font-size: 20px;
    line-height: 24px;
  }
}

p {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 26px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  color: #505050;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  p {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 28px;
  }
}
p a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  text-decoration: underline;
  color: #dca7bf;
}
@media screen and (min-width: 992px) {
  p a {
    font-size: 20px;
    line-height: 28px;
  }
}

.container {
  width: auto;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 767px) {
  .container {
    width: 740px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media screen and (min-width: 1080px) {
  .container {
    width: 1080px;
  }
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}
.row > * {
  padding-left: 15px;
  padding-right: 15px;
}

::-webkit-input-placeholder {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(80, 80, 80, 0.3);
}
@media screen and (min-width: 767px) {
  ::-webkit-input-placeholder {
    font-size: 18px;
  }
}

::-moz-placeholder {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(80, 80, 80, 0.3);
}
@media screen and (min-width: 767px) {
  ::-moz-placeholder {
    font-size: 18px;
  }
}

:-ms-input-placeholder {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(80, 80, 80, 0.3);
}
@media screen and (min-width: 767px) {
  :-ms-input-placeholder {
    font-size: 18px;
  }
}

:-moz-placeholder {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(80, 80, 80, 0.3);
}
@media screen and (min-width: 767px) {
  :-moz-placeholder {
    font-size: 18px;
  }
}

.form-control {
  font-family: "Playfair Display", serif;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  outline: 0;
  background-color: #fff;
  padding: 8px 16px;
  border: 1px solid rgba(220, 167, 191, 0.4);
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}
@media screen and (min-width: 600px) {
  .form-control {
    font-size: 18px;
    padding: 12px 24px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
  }
}
.form-control:hover, .form-control:focus {
  border-color: #dca7bf;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}
@media screen and (min-width: 767px) {
  textarea.form-control {
    min-height: 120px;
  }
}

.form-group {
  margin-bottom: 10px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .form-group {
    margin-bottom: 15px;
  }
}

.btn {
  font-family: "Playfair Display", serif;
  outline: 0;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  padding: 6px 12px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  /*Primary*/
  /*Block*/
}
@media screen and (min-width: 767px) {
  .btn {
    padding: 10px 30px;
    font-size: 20px;
    line-height: 30px;
  }
}
.btn span {
  position: relative;
  z-index: 2;
  text-align: center;
}
.btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 0;
  z-index: 0;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}
.btn:hover, .btn:focus {
  text-decoration: none;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.btn:hover:after, .btn:focus:after {
  width: 100%;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.btn.btn-primary {
  background-color: #fff;
  color: #dca7bf;
  border-color: #dca7bf;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  color: #505050;
  border-color: #dca7bf;
}
.btn.btn-primary:hover:after, .btn.btn-primary:focus:after {
  background-color: #dca7bf;
}
.btn.btn-block {
  display: block;
  width: 100%;
}

.hero-content {
  margin: 15px auto;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid rgba(220, 167, 191, 0.8);
  padding: 15px;
  -webkit-box-shadow: 0px 4px 16px rgba(220, 167, 191, 0.6);
  -moz-box-shadow: 0px 4px 16px rgba(220, 167, 191, 0.6);
  box-shadow: 0px 4px 16px rgba(220, 167, 191, 0.6);
  -webkit-border-radius: 600px 600px 0px 0px;
  -moz-border-radius: 600px 600px 0px 0px;
  -o-border-radius: 600px 600px 0px 0px;
  border-radius: 600px 600px 0px 0px;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .hero-content {
    padding: 20px;
    margin: 40px auto;
  }
}
@media screen and (min-width: 992px) {
  .hero-content {
    padding: 30px;
  }
}
@media screen and (min-width: 1080px) {
  .hero-content {
    padding: 40px;
  }
}
.hero-content-music {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-image: url(../../assets/images/icons/icn-pause.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 48px;
  height: 48px;
  display: block;
  opacity: 0.5;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.hero-content-music:hover, .hero-content-music:focus {
  opacity: 1;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.hero-content-music-off {
  background-image: url(../../assets/images/icons/icn-play.svg);
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.hero-content-image {
  position: relative;
}
.hero-content-image img {
  -webkit-border-radius: 600px 600px 0px 0px;
  -moz-border-radius: 600px 600px 0px 0px;
  -o-border-radius: 600px 600px 0px 0px;
  border-radius: 600px 600px 0px 0px;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.hero-content-image h1,
.hero-content-image h2,
.hero-content-image h3,
.hero-content-image h4,
.hero-content-image h5 {
  font-family: "Playfair Display", serif;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 4px;
}
@media screen and (min-width: 420px) {
  .hero-content-image h1,
  .hero-content-image h2,
  .hero-content-image h3,
  .hero-content-image h4,
  .hero-content-image h5 {
    font-size: 28px;
    line-height: 28px;
  }
}
@media screen and (min-width: 600px) {
  .hero-content-image h1,
  .hero-content-image h2,
  .hero-content-image h3,
  .hero-content-image h4,
  .hero-content-image h5 {
    font-size: 40px;
    line-height: 40px;
    bottom: -6px;
  }
}
@media screen and (min-width: 767px) {
  .hero-content-image h1,
  .hero-content-image h2,
  .hero-content-image h3,
  .hero-content-image h4,
  .hero-content-image h5 {
    font-size: 48px;
    line-height: 48px;
  }
}
@media screen and (min-width: 992px) {
  .hero-content-image h1,
  .hero-content-image h2,
  .hero-content-image h3,
  .hero-content-image h4,
  .hero-content-image h5 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1080px) {
  .hero-content-image h1,
  .hero-content-image h2,
  .hero-content-image h3,
  .hero-content-image h4,
  .hero-content-image h5 {
    font-size: 70px;
    line-height: 70px;
  }
}
.hero-content-image:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(80, 80, 80, 0.6) 100%);
}
.hero-content-bio {
  position: relative;
}
.hero-content-bio-name {
  position: relative;
  text-align: center;
  display: block;
}
.hero-content-bio-name h1,
.hero-content-bio-name h2,
.hero-content-bio-name h3,
.hero-content-bio-name h4,
.hero-content-bio-name h5 {
  font-family: "Gloria Hallelujah", cursive;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 2px;
  color: #dca7bf;
  display: block;
  font-weight: 600;
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .hero-content-bio-name h1,
  .hero-content-bio-name h2,
  .hero-content-bio-name h3,
  .hero-content-bio-name h4,
  .hero-content-bio-name h5 {
    font-size: 48px;
    line-height: 68px;
    padding-top: 0px;
  }
}
@media screen and (min-width: 767px) {
  .hero-content-bio-name h1,
  .hero-content-bio-name h2,
  .hero-content-bio-name h3,
  .hero-content-bio-name h4,
  .hero-content-bio-name h5 {
    font-size: 54px;
    line-height: 74px;
  }
}
@media screen and (min-width: 992px) {
  .hero-content-bio-name h1,
  .hero-content-bio-name h2,
  .hero-content-bio-name h3,
  .hero-content-bio-name h4,
  .hero-content-bio-name h5 {
    font-size: 74px;
    line-height: 84px;
    letter-spacing: 4px;
  }
}
@media screen and (min-width: 1080px) {
  .hero-content-bio-name h1,
  .hero-content-bio-name h2,
  .hero-content-bio-name h3,
  .hero-content-bio-name h4,
  .hero-content-bio-name h5 {
    font-size: 84px;
    line-height: 94px;
  }
}
.hero-content-bio-info {
  position: relative;
  padding: 20px 0px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
}
@media screen and (min-width: 600px) {
  .hero-content-bio-info {
    justify-content: space-between;
    align-items: stretch;
    column-gap: 0px;
    row-gap: 0px;
  }
}
@media screen and (min-width: 992px) {
  .hero-content-bio-info {
    padding: 40px 0px;
  }
}
.hero-content-bio-info-item {
  position: relative;
  padding-top: 0px;
  padding-left: 56px;
  display: inline-block;
  margin-bottom: 15px;
}
@media screen and (min-width: 600px) {
  .hero-content-bio-info-item {
    padding-top: 30px;
    margin-bottom: 0px;
    padding-left: 0px;
  }
}
@media screen and (min-width: 992px) {
  .hero-content-bio-info-item {
    padding-top: 38px;
    padding-left: 24px;
  }
}
.hero-content-bio-info-item img {
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 0;
  z-index: 0;
  width: auto;
  margin: auto;
  height: 48px;
  display: block;
  opacity: 1;
}
@media screen and (min-width: 600px) {
  .hero-content-bio-info-item img {
    opacity: 0.4;
    top: 0;
    bottom: initial;
  }
}
@media screen and (min-width: 992px) {
  .hero-content-bio-info-item img {
    height: 64px;
  }
}
.hero-content-bio-info-item p {
  z-index: 1;
  margin-bottom: 0;
  font-weight: 400;
  opacity: 0.7;
  display: block;
  font-size: 16px;
  line-height: 16px;
}
@media screen and (min-width: 992px) {
  .hero-content-bio-info-item p {
    font-size: 18px;
    line-height: 18px;
  }
}
.hero-content-bio-info-item h1,
.hero-content-bio-info-item h2,
.hero-content-bio-info-item h3,
.hero-content-bio-info-item h4,
.hero-content-bio-info-item h5 {
  margin-bottom: 0;
  font-weight: 700;
  display: block;
  font-size: 18px;
  line-height: 24px;
}
@media screen and (min-width: 992px) {
  .hero-content-bio-info-item h1,
  .hero-content-bio-info-item h2,
  .hero-content-bio-info-item h3,
  .hero-content-bio-info-item h4,
  .hero-content-bio-info-item h5 {
    font-size: 22px;
    line-height: 26px;
  }
}
.hero-content-bio-info-item-line {
  display: none;
}
@media screen and (min-width: 600px) {
  .hero-content-bio-info-item-line {
    align-self: stretch;
    display: block;
    background-color: rgba(220, 167, 191, 0.5);
    width: 1px;
    position: relative;
    z-index: 1;
  }
}
.hero-content-bio-parrents {
  position: relative;
  text-align: center;
}
.hero-content-bio-parrents p {
  z-index: 1;
  margin-bottom: 10px;
  font-weight: 400;
  opacity: 0.7;
  display: block;
  font-size: 16px;
  line-height: 16px;
}
@media screen and (min-width: 992px) {
  .hero-content-bio-parrents p {
    font-size: 18px;
    line-height: 18px;
  }
}
.hero-content-bio-parrents h1,
.hero-content-bio-parrents h2,
.hero-content-bio-parrents h3,
.hero-content-bio-parrents h4,
.hero-content-bio-parrents h5 {
  margin-bottom: 0px;
  font-weight: 700;
  display: block;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
@media screen and (min-width: 420px) {
  .hero-content-bio-parrents h1,
  .hero-content-bio-parrents h2,
  .hero-content-bio-parrents h3,
  .hero-content-bio-parrents h4,
  .hero-content-bio-parrents h5 {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 4px;
  }
}
@media screen and (min-width: 767px) {
  .hero-content-bio-parrents h1,
  .hero-content-bio-parrents h2,
  .hero-content-bio-parrents h3,
  .hero-content-bio-parrents h4,
  .hero-content-bio-parrents h5 {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 8px;
  }
}
@media screen and (min-width: 992px) {
  .hero-content-bio-parrents h1,
  .hero-content-bio-parrents h2,
  .hero-content-bio-parrents h3,
  .hero-content-bio-parrents h4,
  .hero-content-bio-parrents h5 {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 12px;
  }
}

.gallery {
  position: relative;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
@media screen and (min-width: 767px) {
  .gallery {
    gap: 20px;
  }
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 15px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.gallery-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .gallery-item {
    margin-bottom: 0;
  }
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .gallery-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (min-width: 600px) {
  .gallery-item:nth-child(1) {
    grid-column: 1/span 1;
    grid-row: 1/span 2;
  }
  .gallery-item:nth-child(2) {
    grid-column: 2/span 1;
    grid-row: 1/span 1;
  }
  .gallery-item:nth-child(3) {
    grid-column: 2/span 1;
    grid-row: 2/span 1;
  }
  .gallery-item:nth-child(4) {
    grid-column: 1/span 2;
    grid-row: 3/span 1;
  }
  .gallery-item:nth-child(5) {
    grid-column: 3/span 1;
    grid-row: 1/span 3;
  }
  .gallery-item:nth-child(6) {
    grid-column: 4/span 1;
    grid-row: 1/span 2;
  }
  .gallery-item:nth-child(7) {
    grid-column: 4/span 1;
    grid-row: 3/span 1;
  }
}
.gallery-item:hover, .gallery-item:focus {
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}
.gallery-item:hover img, .gallery-item:focus img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}

.shape-heart,
.shape-bottle {
  position: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  z-index: -1;
  opacity: 0.4;
  -webkit-transition: all 200ms ease 0ms;
  -moz-transition: all 200ms ease 0ms;
  -o-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
}

.shape-heart {
  background-image: url(../../assets/images/shapes/shape-heart.svg);
}
.shape-heart.shape-heart-1 {
  left: 0%;
  top: 5%;
  background-size: 64px 80px;
  width: 64px;
  height: 80px;
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  transform: rotate(-15deg);
}
@media screen and (min-width: 600px) {
  .shape-heart.shape-heart-1 {
    left: 5%;
    top: 10%;
  }
}
.shape-heart.shape-heart-2 {
  right: -30px;
  bottom: -30px;
  background-size: 128px 160px;
  width: 128px;
  height: 160px;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.shape-bottle {
  background-image: url(../../assets/images/shapes/shape-bottle.svg);
  background-size: 100px 260px;
  width: 100px;
  height: 260px;
}
.shape-bottle.shape-bottle-1 {
  right: 0;
  top: 0;
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  transform: rotate(-25deg);
}
@media screen and (min-width: 600px) {
  .shape-bottle.shape-bottle-1 {
    top: 5%;
  }
}
.shape-bottle.shape-bottle-2 {
  left: 0;
  top: 60%;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}

/*# sourceMappingURL=style.css.map */
