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

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 {
  -webkit-tap-highlight-color: transparent;
}

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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

.hamburger-btn {
  display: block;
  top: 120px;
  right: 26px;
}
@media screen and (max-width: 1024px) {
  .hamburger-btn {
    top: 84px;
  }
}
@media screen and (min-width: 1440px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger {
  cursor: pointer;
  width: 32px;
  height: 32px;
  transition: all 0.25s linear;
  position: relative;
  font-size: 0;
  opacity: 0.8;
  transition: opacity 0.2s linear;
  border: none;
  background-color: transparent;
}
.hamburger:hover, .hamburger:focus {
  opacity: 1;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: var(--black);
  border-radius: 3px;
  transform: rotate(0);
  transition: transform 0.5s;
}

.nav-options.visible + .hamburger-btn .hamburger-top,
.nav-options.visible + .hamburger-btn .hamburger-middle,
.nav-options.visible + .hamburger-btn .hamburger-bottom {
  background-color: var(--white);
}

.hamburger-middle {
  transform: translateY(9px);
}

.hamburger-bottom {
  transform: translateY(18px);
}

.open {
  transform: rotate(90deg);
  transform: translateY(0px);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translate(6px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translate(-6px);
}

.nav-options {
  display: none !important;
}

.nav-options.visible {
  display: flex !important;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #ca2808;
  --body-bg: #02080d;
  --text-tag: #ff5cab;
  --hover-color: #ff8bc3;
  --text-color: #e7e7e7;
  --text-light: #e7e5e5;
  --secondary-btn-text: #d91e09;
  --field-border: rgba(212, 212, 212, 1);
  --field-focus-border: #4d4d4d;
  --placeholder-text: #c6c6c6;
  --unique-card-bg: #212a34;
}

html,
body {
  height: 100%;
  position: relative;
  background-color: #e2e2e2;
  scroll-behavior: smooth;
}
html::before,
body::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-image: url(../assets/pattern.png);
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

.main-wrapper {
  position: relative;
  z-index: 2;
}

#toaster {
  z-index: 4;
}

.section-container.hero {
  position: relative;
}
.section-container.hero video {
  opacity: 0.13;
  filter: grayscale(1);
}

.home-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home-hero-video::after {
  position: absolute;
  bottom: -250px;
  left: 0;
  width: 100%;
  height: 500px;
  filter: brightness(0.98);
  content: "";
  display: block;
  background-size: cover;
  background-position: center;
  background: linear-gradient(to bottom, rgba(220, 220, 220, 0) 0%, rgba(220, 220, 220, 0.8) 40%, rgba(220, 220, 220, 0.94) 50%, rgb(220, 220, 220) 54%, rgba(220, 220, 220, 0.8) 70%, rgba(220, 220, 220, 0) 100%);
}

.content-main {
  scroll-behavior: smooth;
  overflow-y: scroll;
}
@media screen and (min-width: 767px) {
  .content-main {
    overflow: auto;
  }
}

.page {
  background-image: url("../assets/artist-mob.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0px center;
}
@media screen and (min-width: 576px) {
  .page {
    background-image: url("../assets/artist.png");
  }
}
@media screen and (min-width: 1100px) {
  .page {
    background-size: 120%;
    background-position: 50% 0%;
    animation: shrink 43s infinite alternate;
    background-attachment: fixed;
  }
}

@keyframes shrink {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}
.container {
  padding: 0 20px;
}
@media screen and (min-width: 600px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 700px;
  }
}
@media screen and (min-width: 800px) {
  .container {
    max-width: 768px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 876px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 950px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    padding-left: 36px;
    padding-right: 36px;
    max-width: 1144px;
  }
}
@media screen and (min-width: 1540px) {
  .container {
    max-width: 1112px;
  }
}
@media screen and (min-width: 1920px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.wide-container {
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .wide-container {
    max-width: 700px;
  }
}
@media screen and (min-width: 800px) {
  .wide-container {
    max-width: 768px;
  }
}
@media screen and (min-width: 1024px) {
  .wide-container {
    max-width: 876px;
  }
}
@media screen and (min-width: 1024px) {
  .wide-container {
    max-width: 1260px;
  }
}
@media screen and (min-width: 1540px) {
  .wide-container {
    max-width: 1260px;
  }
}
@media screen and (min-width: 1920px) {
  .wide-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.h-full {
  height: 100%;
}

.logo-wrapper {
  padding-top: 54px;
  padding-left: 20px;
}
.logo-wrapper img {
  max-width: 225px;
}
@media screen and (min-width: 1024px) {
  .logo-wrapper {
    padding-top: 80px;
    padding-left: 30px;
  }
  .logo-wrapper img {
    max-width: 340px;
  }
}
@media screen and (min-width: 1600px) {
  .logo-wrapper {
    padding-top: 80px;
    padding-left: 110px;
  }
}

.menu-wrapper {
  z-index: 2;
  background: none;
  transition: background 0.2s linear;
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .menu-wrapper {
    width: auto;
    height: auto;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .menu-wrapper {
    padding-right: 102px;
  }
}

.dark-nav {
  background: rgba(2, 8, 13, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
@media screen and (min-width: 1440px) {
  .dark-nav {
    background: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-bottom: 80px;
}
@media screen and (min-width: 1000px) {
  .hero {
    padding-bottom: 200px;
  }
}
.hero:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../assets/hero-right-graphics_mobile.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 192px;
  height: 540px;
}
@media screen and (min-width: 1360px) {
  .hero:after {
    content: "";
    position: absolute;
    right: 0;
    top: 55px;
    background: url(../assets/hero-right-graphics.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 377px;
    height: 834px;
  }
}
.hero nav {
  z-index: 2;
}
.hero .hero-tag {
  max-width: 100%;
}
@media screen and (min-width: 767px) {
  .hero .hero-tag {
    max-width: 700px;
  }
}
.hero .hero-tag .hero-tag-content {
  background: rgba(215, 151, 139, 0.2);
  mix-blend-mode: color-burn;
  border-radius: 20px;
}
.hero .hero-tag .tag-left > h5 {
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--primary);
}
.hero .hero-tag .tag-left > p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: var(--text-color);
}
.hero .hero-tag .tag-right h5 {
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--primary);
}
.hero .hero-tag .tag-right > p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  color: var(--black);
}

#menu {
  display: flex;
}
#menu.hidden {
  display: none;
}
@media screen and (min-width: 1440px) {
  #menu {
    display: flex;
  }
}

.nav-options {
  height: 100%;
  text-align: right;
  right: 0;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s linear, opacity 0.2s linear;
}
.nav-options.visible {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1440px) {
  .nav-options {
    margin-top: 50px;
  }
}
.nav-options a {
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
  font-family: "Roboto", sans-serif;
  padding: 5px 8px;
  margin: 5px 0px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 28px;
  font-weight: 500;
  border: solid 1px transparent;
  border-radius: 12px;
  background: rgba(216, 216, 216, 0.3);
}
.nav-options a + a {
  margin-top: 40px;
}
@media screen and (min-width: 1440px) {
  .nav-options a {
    color: rgba(0, 0, 0, 0.7);
  }
  .nav-options a + a {
    margin-top: auto;
  }
}
.nav-options a.active {
  color: var(--black);
  font-weight: 600;
  opacity: 1;
  background: rgba(236, 111, 102, 0.3);
}
@media screen and (max-width: 1440px) {
  .nav-options a.active {
    color: var(--white);
    background: transparent;
  }
}
.nav-options a:hover, .nav-options a:focus {
  opacity: 1;
  background: rgba(236, 111, 102, 0.3);
  color: var(--black);
}
@media screen and (max-width: 1440px) {
  .nav-options a {
    font-size: 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
  }
}
@media screen and (min-width: 1440px) {
  .nav-options a {
    font-size: 14px;
  }
}
.nav-options .menu-links {
  margin-right: auto;
  text-align: left;
  justify-content: start;
  align-items: start;
  margin-left: 32px;
  margin-top: 90px;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 576px) {
  .nav-options .menu-links {
    font-size: 32px;
    margin-left: 55px;
  }
}
@media screen and (min-width: 1440px) {
  .nav-options .menu-links {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
    justify-content: end;
    align-items: flex-end;
    margin-top: 0;
  }
}

.hero-social-links {
  left: 0;
  bottom: 25%;
  display: none;
}
@media screen and (min-width: 1100px) {
  .hero-social-links {
    display: flex;
  }
}
.hero-social-links .hero-social {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 0.2s linear;
  transform: scale(1);
}
.hero-social-links .hero-social svg {
  width: 100%;
}
.hero-social-links .hero-social svg path {
  fill: var(--white);
}
.hero-social-links .hero-social:focus, .hero-social-links .hero-social:hover {
  opacity: 1;
  transform: scale(1.25);
}

.btn {
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 12px;
  transition: box-shadow 0.2s ease-in-out;
  box-shadow: none;
}
.btn > span {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}

.btn-lg {
  height: 74px;
  padding: 0 30px;
}
.btn-lg > span {
  font-size: 22px;
}
@media screen and (min-width: 1024px) {
  .btn-lg {
    padding: 0 44px;
  }
}

.btn-md {
  height: 60px;
  padding: 0 30px;
}
.btn-md > span {
  font-size: 20px;
}

.btn-primary {
  transition: background ease 0.3s, box-shadow ease 0.3s;
  background: linear-gradient(90deg, #ec6f66 0%, #f1855e 100%);
}
.btn-primary > span {
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #e24d42 0%, #e96535 100%);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
  transition: background ease 0.3s, box-shadow ease 0.3s;
  border: 1px solid var(--secondary-btn-text);
}
.btn-secondary > span {
  color: var(--secondary-btn-text);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 10px 10px 0p rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 10px 10px 0p rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 10px 10px 0p rgba(0, 0, 0, 0.05);
}

.form-group-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-label {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1;
  color: var(--black);
  font-weight: 400;
}

.form-control {
  display: block;
  width: 100%;
  background: var(--white);
  font-size: 18px;
  color: var(--black) !important;
  font-weight: 500;
  border: 1px solid var(--field-border);
  padding: 13px 16px;
  outline: none;
  font-family: inherit;
  line-height: 24px;
  height: 50px;
  border-radius: 6px;
  transition: border ease 0.2s;
}
.form-control[placeholder] {
  color: var(--placeholder-text);
  font-weight: 400;
}
.form-control:focus {
  border-color: var(--field-focus-border);
}
.form-control[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-control.dropdown-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../assets/caret-down.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.form-control.dropdown-control::-ms-expand {
  display: none;
}

.hero-content {
  z-index: 2;
  margin-top: 220px;
}
@media screen and (min-width: 1024px) {
  .hero-content {
    margin-top: 310px;
  }
}
.hero-content .hero-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 26px;
  background: linear-gradient(90deg, #ff512f 0%, #dd2476 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1100px) {
  .hero-content .hero-tagline {
    font-size: 31px;
    line-height: 34px;
  }
}
.hero-content .hero-title {
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 48px;
  font-size: 40px;
}
@media screen and (min-width: 1100px) {
  .hero-content .hero-title {
    font-size: 54px;
    line-height: 74px;
  }
}
.hero-content .hero-subtitle {
  color: var(--black);
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  max-width: 675px;
}
.hero-content .hero-btn-blk {
  row-gap: 24px;
  flex-direction: column;
}
.hero-content .hero-btn-blk .btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-content .hero-btn-blk {
    flex-direction: row;
    column-gap: 30px;
    row-gap: 30px;
  }
  .hero-content .hero-btn-blk .btn {
    width: auto;
  }
}

.about-us:after {
  content: "";
  position: absolute;
  right: 0;
  top: -120px;
  background: url(../assets/about-right-graphics.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 158px;
  height: 439px;
  display: none;
  animation: bounce 7s;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  animation-iteration-count: infinite;
}
@media screen and (min-width: 1100px) {
  .about-us:after {
    display: block;
  }
}
.about-us:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -183px;
  background: url(../assets/about-left-graphics_mobile.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 113px;
  height: 301px;
  z-index: 0;
}
@media screen and (min-width: 1100px) {
  .about-us:before {
    content: "";
    position: absolute;
    left: 0;
    top: 448px;
    background: url(../assets/about-left-graphics.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 361px;
    height: 1048px;
  }
}
.about-us .about-us-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(219, 191, 88, 0.3);
  padding: 67px 20px 20px;
}
.about-us .about-us-card .about-us-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1100px) {
  .about-us .about-us-card .about-us-left {
    width: 425px;
    padding: 0 65px 0 0;
  }
}
.about-us .about-us-card .about-us-left .about-us-left-logo {
  max-width: 240px;
}
@media screen and (min-width: 1100px) {
  .about-us .about-us-card .about-us-left .about-us-left-logo {
    max-width: 100%;
    margin: auto;
  }
}
.about-us .about-us-card .about-us-right {
  padding: 0;
}
.about-us .about-us-card .about-us-right .about-content {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
}

.pre-title {
  color: var(--text-tag);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  font-family: "Montserrat", sans-serif;
}

.section-title {
  color: var(--black);
  font-size: 38px;
  font-weight: 300;
  line-height: 46px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 1100px) {
  .section-title {
    font-size: 44px;
    line-height: 54px;
  }
}

.content-text, .card-container .card p, .unique-features .feature-cards .feature-card .feature-card-text {
  color: var(--black);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.content-primary {
  color: var(--black);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media screen and (min-width: 1100px) {
  .content-primary {
    font-size: 25px;
  }
}

.unique-features:after {
  content: "";
  position: absolute;
  right: 0;
  top: -97px;
  background: url(../assets/about-right-mob-graphics.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 57px;
  height: 176px;
}
@media screen and (min-width: 1366px) {
  .unique-features:after {
    content: "";
    position: absolute;
    left: 0;
    top: -320px;
    background: url(../assets/hero-left-graphics.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 211px;
    height: 685px;
  }
}
.unique-features .feature-cards {
  max-width: 1112px;
}
.unique-features .feature-cards .feature-card {
  border-radius: 20px;
  background: rgba(188, 182, 181, 0.2);
  padding: 30px;
  height: auto;
  transition: all 1s;
  width: auto;
}
.philosophy-content {
  position: relative;
}

.team-member {
  padding-bottom: 16px;
}
@media screen and (min-width: 1100px) {
  .team-member {
    padding-bottom: 0px;
  }
}

.member-image {
  border-radius: 12px;
  overflow: hidden;
}

.member-description {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
}
.member-description .text-primary {
  color: var(--secondary-btn-text);
}

@media screen and (min-width: 1100px) {
  .team:after {
    content: "";
    width: 288px;
    height: 688px;
    position: absolute;
    right: 0;
    top: -294px;
    background-image: url(../assets/our-team-right-graphics.svg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    object-fit: cover;
  }
}

.contact-us {
  background-image: url("../assets/contact-bg.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  object-fit: cover;
  position: relative;
}
.contact-us:after {
  content: "";
  width: 186px;
  height: 528px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../assets/contactUsTamburaMobileView.svg);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  object-fit: cover;
  z-index: 0;
}
@media screen and (min-width: 1100px) {
  .contact-us:after {
    content: "";
    width: 321px;
    height: 481px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url("../assets/contactUsTambura.svg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    object-fit: cover;
  }
}
@media screen and (min-width: 1100px) {
  .contact-us:before {
    content: "";
    width: 680px;
    height: 252px;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("../assets/contactUsMusicNode.svg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    object-fit: cover;
  }
}
@media screen and (min-width: 1100px) {
  .contact-us {
    background-attachment: fixed;
  }
}
.contact-us p,
.contact-us h3 {
  color: var(--text-color);
}
.contact-us .contact-info svg {
  stroke: rgb(245, 91, 74);
}
.contact-us .contact-info .contact-link {
  color: var(--text-color);
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  border-radius: 8px;
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
  outline: none;
  justify-content: center;
  background: rgba(140, 134, 134, 0.14);
  border: 0.6px solid rgb(255, 255, 255);
  padding: 16px 40px;
  align-items: center;
  text-decoration: none;
}
.contact-us .contact-info .contact-link span {
  padding-left: 12px;
}
.contact-us .contact-info .contact-link:focus, .contact-us .contact-info .contact-link:hover {
  outline-color: #907a85;
  background: rgba(0, 0, 0, 0.44);
  border: 0.6px solid rgb(255, 255, 255);
}
.contact-us .contact-info .contact-link:hover {
  outline-color: #907a85;
  background: rgba(0, 0, 0, 0.44);
  border: 0.6px solid rgb(255, 255, 255);
}
.contact-us .contact-content {
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .contact-us .contact-content {
    max-width: 755px;
  }
}

.footer {
  color: var(--black);
}
.footer .footer-main .footer-links-logo .footer-logo {
  flex-shrink: 0;
}
.footer .footer-main .footer-links-logo .footer-content {
  color: var(--black);
  font-family: "Roboto", sans-serif;
  font-style: normal;
}
.footer .footer-main .footer-links-logo .footer-content .marker p {
  font-weight: 700;
  font-size: 22px;
}
.footer .footer-main .footer-links-logo .footer-content .location {
  cursor: auto;
}
.footer .footer-main .footer-links-logo .footer-content .location .address {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
}
.footer .footer-main .footer-links-logo .footer-content .location .footer-website {
  font-weight: 400;
  font-size: 18px;
}
.footer .footer-main .footer-links-logo .footer-content .page-links .footer-social {
  width: 18px;
  height: 18px;
  transition: all 0.2s linear;
  margin: 8px 16px;
  display: inline-flex;
  position: relative;
}
.footer .footer-main .footer-links-logo .footer-content .page-links .footer-social img {
  width: 18px;
}
@media screen and (min-width: 768px) {
  .footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:last-child {
    margin-right: 0;
  }
}
.footer .footer-main .footer-links-logo .footer-content .page-links .footer-social svg path {
  background: rgb(89, 89, 89);
}
.footer .footer-main .footer-links-logo .footer-content .page-links .footer-social .footer-social-colored {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
}
.footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:focus, .footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:hover {
  opacity: 1;
  filter: none;
}
.footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:focus .footer-social-grey,
.footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:focus .footer-social-colored, .footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:hover .footer-social-grey,
.footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:hover .footer-social-colored {
  transition: all ease 0.3s;
}
.footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:focus .footer-social-grey, .footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:hover .footer-social-grey {
  visibility: hidden;
  opacity: 0;
}
.footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:focus .footer-social-colored, .footer .footer-main .footer-links-logo .footer-content .page-links .footer-social:hover .footer-social-colored {
  visibility: visible;
  opacity: 1;
}
.footer .footer-main .internal-links a {
  color: var(--black);
  transition: color 0.2s ease-in-out;
}
.footer .footer-main .internal-links a:hover, .footer .footer-main .internal-links a:focus {
  text-decoration: underline;
}
.footer .footer-main .website-copy {
  color: var(--black);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-top: solid 1px rgba(0, 0, 0, 0.253);
}

@keyframes Backdrop {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.6;
  }
}
@keyframes ModalBox {
  0% {
    opacity: 0;
    transform: translate(0, -15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0px);
  }
}
@keyframes opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  display: none;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 576px) {
  .modal {
    padding: 20px;
  }
}
.modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--body-bg);
  transition: opacity ease 0.2s;
}
.modal .modal-container {
  width: 100%;
  background: var(--white);
  position: relative;
  margin: auto;
  opacity: 0;
  transform: translate(0, -15px);
  height: 100%;
  padding: 20px;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .modal .modal-container {
    max-width: 525px;
    padding: 40px;
    border-radius: 20px;
    height: auto;
  }
}
.modal .modal-container .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal .modal-title {
  font-family: "Montserrat", sans-serif;
}
.modal.modal-primary .modal-container {
  max-width: 96%;
  width: 96%;
  position: fixed;
  left: 0;
  margin: 0 2%;
}
@media screen and (max-width: 576px) {
  .modal.modal-primary .modal-container {
    max-width: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    margin: 0;
    top: 0;
  }
}
.modal.open {
  display: flex;
}
.modal.open .modal-overlay {
  opacity: 0.6;
  animation: Backdrop 0.3s forwards;
}
.modal.open .modal-container {
  animation: ModalBox 0.3s forwards;
  position: relative;
  background-color: white;
  scroll-behavior: smooth;
  background-image: url(../assets/pattern.png);
}
.modal[closing] {
  animation: opacity 0.3s forwards;
}

.deactive {
  opacity: 0.6;
  background: #111;
}

.feature-card-active {
  grid-column: span 3;
  width: 100% !important;
  order: -2;
}

.feature-card-deactive {
  width: 15% !important;
}

.card-container {
  --anim-duration: 0.9s;
  --tile-height-ratio: 0.88;
  --tile-gap: 56px;
  --columns: 3;
  --outer-height: calc(var(--tile-height-ratio) * 100% / 3 * 2);
  overflow: hidden;
  position: relative;
  padding-top: 0;
  transition: padding-top var(--anim-duration);
}
.card-container .card {
  --single-tile-width: calc(
    100% / var(--columns) - var(--tile-gap) *
      ((var(--columns) - 1) / var(--columns))
  );
  --preview-height: calc(
    var(--outer-height) - var(--tile-height-ratio) * var(--single-tile-width) +
      4px
  );
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
}
@media screen and (min-width: 1100px) {
  .card-container .card {
    width: var(--single-tile-width);
    transition: left var(--anim-duration), top var(--anim-duration), margin-top var(--anim-duration), margin-left var(--anim-duration), width var(--anim-duration), z-index var(--anim-duration);
    position: absolute;
    aspect-ratio: 1/var(--tile-height-ratio);
    margin-top: 0;
    margin-left: 0;
    z-index: 2;
  }
}
@media screen and (max-width: 1099px) {
  .card-container .card {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .card-container .card {
    width: calc(100% - 8px);
  }
  .card-container .card:hover .feature-card-text {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: auto;
  }
  .card-container .card:hover .feature-card-text-hidden {
    visibility: visible;
    opacity: 1;
    height: auto;
    width: auto;
  }
}
.card-container .card .card-inner {
  border-radius: 20px;
  background: rgba(188, 182, 181, 0.2);
  padding: 30px 30px 60px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1100px) {
  .card-container .card .card-inner {
    padding: 30px;
  }
}
.card-container .card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
  cursor: pointer;
}
.card-container .card .feature-card-text {
  color: var(--black);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.card-container .card .feature-card-text-hidden {
  display: block;
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 0;
  font-size: 24px;
  line-height: 34px;
  color: var(--black);
  font-weight: 300;
  margin: 0;
}
@media screen and (max-width: 1100px) {
  .card-container .card .feature-card-text-hidden {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
  }
}
.card-container .card .feature-card-text-hidden span {
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 1100px) {
  .card-container:after {
    content: "";
    display: block;
    padding-top: var(--outer-height);
  }
  .card-container:not(.card-container:hover) [data-tile="1"],
  .card-container:not(.card-container:hover) [data-tile="4"] {
    left: 0;
  }
  .card-container:not(.card-container:hover) [data-tile="2"],
  .card-container:not(.card-container:hover) [data-tile="5"] {
    left: calc(var(--single-tile-width) + var(--tile-gap));
  }
  .card-container:not(.card-container:hover) [data-tile="3"],
  .card-container:not(.card-container:hover) [data-tile="6"] {
    left: calc((var(--single-tile-width) + var(--tile-gap)) * 2);
  }
  .card-container:not(.card-container:hover) [data-tile="4"],
  .card-container:not(.card-container:hover) [data-tile="5"],
  .card-container:not(.card-container:hover) [data-tile="6"] {
    margin-top: calc(var(--tile-height-ratio) * var(--single-tile-width) + var(--tile-gap));
  }
  .card-container:hover {
    --columns: 5;
    --tile-gap: 16px;
  }
  .card-container:hover .card {
    margin-top: var(--preview-height);
  }
  .card-container:hover .card .feature-card-text {
    visibility: hidden;
    opacity: 0;
    height: 0;
    margin: 0;
  }
  .card-container:hover [data-tile="1"] {
    left: 0;
  }
  .card-container:hover [data-tile="2"] {
    left: calc(var(--single-tile-width) + var(--tile-gap));
  }
  .card-container:hover [data-tile="3"] {
    left: calc(2 * (var(--single-tile-width) + var(--tile-gap)));
  }
  .card-container:hover [data-tile="4"] {
    left: calc(3 * (var(--single-tile-width) + var(--tile-gap)));
  }
  .card-container:hover [data-tile="5"] {
    left: calc(4 * (var(--single-tile-width) + var(--tile-gap)));
  }
  .card-container:hover [data-tile="6"] {
    left: calc(5 * (var(--single-tile-width) + var(--tile-gap)));
  }
  .card-container:hover[data-tile-active="1"] [data-tile="1"], .card-container:hover[data-tile-active="2"] [data-tile="2"], .card-container:hover[data-tile-active="3"] [data-tile="3"], .card-container:hover[data-tile-active="4"] [data-tile="4"], .card-container:hover[data-tile-active="5"] [data-tile="5"], .card-container:hover[data-tile-active="6"] [data-tile="6"] {
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    top: 0;
    margin-top: 0;
    bottom: 0;
    aspect-ratio: auto;
    padding-bottom: calc(var(--tile-height-ratio) * 100% / var(--columns));
  }
  .card-container:hover[data-tile-active="1"] [data-tile="1"] .card-inner, .card-container:hover[data-tile-active="2"] [data-tile="2"] .card-inner, .card-container:hover[data-tile-active="3"] [data-tile="3"] .card-inner, .card-container:hover[data-tile-active="4"] [data-tile="4"] .card-inner, .card-container:hover[data-tile-active="5"] [data-tile="5"] .card-inner, .card-container:hover[data-tile-active="6"] [data-tile="6"] .card-inner {
    justify-content: center;
  }
  .card-container:hover[data-tile-active="1"] [data-tile="1"] .feature-card-text-hidden, .card-container:hover[data-tile-active="2"] [data-tile="2"] .feature-card-text-hidden, .card-container:hover[data-tile-active="3"] [data-tile="3"] .feature-card-text-hidden, .card-container:hover[data-tile-active="4"] [data-tile="4"] .feature-card-text-hidden, .card-container:hover[data-tile-active="5"] [data-tile="5"] .feature-card-text-hidden, .card-container:hover[data-tile-active="6"] [data-tile="6"] .feature-card-text-hidden {
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: auto;
    transition: visibility ease var(--anim-duration), opacity ease var(--anim-duration);
    transition-delay: calc(var(--anim-duration) - 200ms);
  }
  .card-container:hover[data-tile-active="1"] [data-tile="1"] ~ .card, .card-container:hover[data-tile-active="2"] [data-tile="2"] ~ .card, .card-container:hover[data-tile-active="3"] [data-tile="3"] ~ .card, .card-container:hover[data-tile-active="4"] [data-tile="4"] ~ .card, .card-container:hover[data-tile-active="5"] [data-tile="5"] ~ .card, .card-container:hover[data-tile-active="6"] [data-tile="6"] ~ .card {
    margin-left: calc(-1 * var(--single-tile-width) - var(--tile-gap));
  }
}
@media screen and (max-width: 1099px) {
  .card-container {
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
  }
}

@-webkit-keyframes scale-up-ver-center {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes scale-up-ver-center {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
.social_links {
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .social_links:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .social_links:last-child {
    margin-right: 0;
  }
}
.social_links svg path {
  fill: var(--white);
}
.social_links .footer-social {
  transition: all 0.2s linear;
  display: inline-flex;
  position: relative;
}
.social_links .footer-social img {
  width: 15px;
}
.social_links .footer-social .footer-social-colored {
  visibility: hidden;
  opacity: 0;
}
.social_links .footer-social:focus, .social_links .footer-social:hover {
  opacity: 1;
  filter: none;
}
.social_links .footer-social:focus .footer-social-grey,
.social_links .footer-social:focus .footer-social-colored, .social_links .footer-social:hover .footer-social-grey,
.social_links .footer-social:hover .footer-social-colored {
  transition: all ease 0.3s;
}
.social_links .footer-social:focus .footer-social-grey, .social_links .footer-social:hover .footer-social-grey {
  visibility: hidden;
  opacity: 0;
}
.social_links .footer-social:focus .footer-social-colored, .social_links .footer-social:hover .footer-social-colored {
  position: absolute;
  left: 0;
  visibility: visible;
  opacity: 1;
}

.app-l-select label {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.app-l-select [type=radio]:checked,
.app-l-select [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.app-l-select [type=radio]:checked + label,
.app-l-select [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}
.app-l-select [type=radio]:checked + label:before,
.app-l-select [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #4d4d4d;
  border-radius: 100%;
  background: #fff;
}
.app-l-select [type=radio]:checked + label:after,
.app-l-select [type=radio]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, #ff512f 0%, #dd2476 100%);
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.app-l-select [type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.app-l-select [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.app-l-select [type=radio]:checked + label:before {
  border: 1px solid red;
}

@media screen and (max-width: 1024px) {
  .app-l-singup {
    flex-direction: column;
  }
}
.app-l-singup .app-l-left {
  border-right: 1px solid #c1c1c1;
}
@media screen and (max-width: 1024px) {
  .app-l-singup .app-l-left {
    border-top: 1px solid #c1c1c1;
    border-right: 0;
  }
}
.app-l-singup .app-l-left h2 {
  font-family: "Montserrat", sans-serif;
}
.app-l-singup .app-l-left .heading {
  font-family: "Montserrat", sans-serif;
}
.app-l-singup .app-l-left .heading p span {
  display: inline-block;
}
.app-l-singup .app-l-left .heading p span img {
  margin: -20px 0px 0 0;
  display: block;
}
.app-l-singup .app-l-left ul li {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  font-family: "Roboto", sans-serif;
  color: #000000;
  position: relative;
}
.app-l-singup .app-l-left ul li img {
  float: left;
  display: block;
  position: absolute;
  left: 0;
  min-width: 20px;
}
.app-l-singup .app-l-left ul li span {
  padding-left: 32px;
}
.app-l-singup .app-l-left ul li + li {
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .app-l-singup .app-l-right {
    order: -1;
  }
}

.contact_us {
  background-image: url("../assets/contact-bg.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  object-fit: cover;
  position: relative;
}
.contact_us:after {
  content: "";
  width: 221px;
  height: 411px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../assets/contact_UsTambura.svg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  object-fit: cover;
}
.contact_us:before {
  content: "";
  width: 595px;
  height: 181px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../assets/contact_UsMusicNode.svg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  object-fit: cover;
}
@media screen and (min-width: 1100px) {
  .contact_us {
    background-attachment: fixed;
  }
}
.contact_us p,
.contact_us h3 {
  color: var(--text-color);
}
.contact_us .contact-info svg {
  stroke: var(--primary);
}
.contact_us .contact-info .contact-link {
  color: var(--text-color);
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  border-radius: 8px;
  border: 0.6px solid rgba(255, 255, 255, 0.2);
  background: rgba(2, 8, 13, 0.1);
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
  outline: none;
  justify-content: center;
  padding: 16px 40px;
  align-items: center;
}
.contact_us .contact-info .contact-link span {
  padding-left: 12px;
}
.contact_us .contact-info .contact-link:focus {
  border-color: #907a85;
  box-shadow: 0 0 0 1px #907a85;
  outline-color: #907a85;
}
.contact_us .contact-info .contact-link:hover {
  border-color: #907a85;
  box-shadow: 0 0 0 1px #907a85;
  outline-color: #907a85;
}
.contact_us .contact-content {
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .contact_us .contact-content {
    max-width: 755px;
  }
}

#toaster {
  visibility: hidden;
  min-width: 250px;
  background: linear-gradient(90deg, #ec6f66 0%, #f1855e 100%);
  border-radius: 12px;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 16px 22px;
  position: fixed;
  z-index: 1;
  top: 30px;
  right: 30px;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Show the toaster (use opacity to create fade-in effect) */
#toaster.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Fade-in effect */
@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}
/* Fade-out effect */
@-webkit-keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}

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