@font-face {
  font-family: 'Notera';
  src: url('../fonts/Notera_PersonalUseOnly.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.moving-txts {
  max-width: 100vw;
  overflow: hidden;
  height: 300px;
  position: relative;
}
.show-on-mobile {
  display: none;
}
@media (max-width: 767px) {
  .show-on-mobile {
    display: block;
  }
}
.show-on-desctop {
  display: block;
}
@media (max-width: 767px) {
  .show-on-desctop {
    display: none;
  }
}
.over-hidden {
  overflow: hidden;
}
@keyframes mymove {
  from {
    left: 0;
  }
  to {
    left: -400px;
  }
}
@keyframes urmove {
  from {
    right: 0;
  }
  to {
    right: -400px;
  }
}
.moving-txt {
  display: flex;
  gap: 18px;
  height: 100px;
  padding-block: 13px;
  align-items: center;
  position: absolute;
  top: auto;
  font: 400 41px / 0.97 "Roc Grotesk", sans-serif;
}
.moving-txt span {
  white-space: nowrap;
}
.moving-txt_yello {
  background-color: #E1F24A;
  color: #1044FF;
}
.moving-txt_pink {
  background-color: #FF6EED;
  color: #E0F148;
  top: 100px;
}
.moving-txt_blue {
  background-color: #1044FF;
  color: #FF6EED;
  top: 200px;
}
.moving-txt_right {
  animation: urmove 8s linear infinite alternate;
}
.moving-txt_left {
  animation: mymove 8s linear infinite alternate;
}
.spotify {
  background: #074389;
  background: linear-gradient(to bottom, #074389, #130f42);
  position: relative;
  padding-block: 100px 126px;
}
.spotify::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 2;
  background-color: rgba(7, 67, 167, 0.15);
  filter: blur(40px);
}
.spotify::before {
  z-index: 2;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img1/spotify-gradient.png') center / cover no-repeat;
  mix-blend-mode: soft-light;
}
.spotify__wrap {
  display: grid;
}
.spotify__wrap > div {
  grid-column: 1;
  grid-row: 1;
}
.spotify__player-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 15px;
  position: relative;
  z-index: 5;
}
.spotify__player-wrap iframe {
  flex-basis: 600px;
}
.spotify__header {
  position: relative;
  z-index: 5;
  color: #FFF;
  text-align: center;
  font: 600 40px / 1.2 Inter, sans-serif;
  margin-bottom: 40px;
}
.spotify__wawes {
  position: relative;
  z-index: 5;
}
.spotify__wawes svg {
  display: block;
  width: 100vw;
  height: 420px;
}
.spotify__wawes path {
  height: 100%;
  fill: none;
}
.spotify__wawes path:first-child {
  stroke: #fff;
  stroke-width: 1px;
}
.spotify__wawes path:nth-child(2) {
  stroke: #FF6EED;
  stroke-width: 2px;
}
.pos-a {
  position: absolute;
}
.mus-pref-popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  visibility: hidden;
  z-index: -10;
}
.mus-pref-popup__inner-wrap {
  display: flex;
}
.mus-pref-popup__inner-wrap:nth-child(even) {
  justify-content: flex-end;
}
.mus-pref-popup__inner {
  color: #fff;
  position: relative;
  min-height: 540px;
  width: 950px;
  padding: 0 32px;
  border-radius: 24px;
  border: 0.8px solid #FFC6F8;
  background: linear-gradient(76deg, rgba(1, 11, 46, 0.6) -1.71%, rgba(119, 32, 108, 0.6) 108.05%);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  backdrop-filter: blur(25.5px);
  box-shadow: 0px 4px 27.9px 0px rgba(255, 110, 237, 0.5);
}
@media (max-width: 950px) {
  .mus-pref-popup__inner {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mus-pref-popup__inner {
    padding: 0 15px;
  }
}
.mus-pref-popup.show {
  visibility: visible;
  z-index: 10000;
}
.mus-pref-popup.visible {
  opacity: 1;
}
.mus-pref-popup.visible .mus-pref-popup__inner {
  opacity: 1;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}
.mus-pref-popup__data {
  display: flex;
  gap: 20px;
  gap: clamp(20px, 2.70833333vw, 52px);
}
@media (max-width: 550px) {
  .mus-pref-popup__data {
    flex-direction: column-reverse;
    padding-top: 7px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.mus-pref-popup__album-wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .mus-pref-popup__album-wrap {
    gap: 10px;
    margin-bottom: 16px;
  }
}
.mus-pref-popup__album-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mus-pref-popup__song {
  font: 600 24px / normal Inter, sans-serif;
  margin-block: 0 6px;
}
@media (max-width: 767px) {
  .mus-pref-popup__song {
    font-size: 20px;
  }
}
@media (max-width: 950px) {
  .mus-pref-popup__desc.olma-desc br {
    display: none;
  }
}
.mus-pref-popup__play-btn {
  padding: 9px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(29.75000191px);
  cursor: pointer;
  margin-top: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .mus-pref-popup__play-btn {
    margin-top: 20px;
    padding: 5px;
  }
}
.mus-pref-popup__play-btn img {
  max-width: 28px;
}
.mus-pref-popup__play-btn:hover {
  opacity: 1;
}
@media (max-width: 550px) {
  .mus-pref-popup__desc {
    font-size: 14px;
  }
}
.mus-pref-popup__person {
  font: 400 72px / 1.31 'Notera', sans-serif;
}
@media (max-width: 767px) {
  .mus-pref-popup__person {
    font-size: 64px;
  }
}
@media (max-width: 550px) {
  .mus-pref-popup__person {
    font-size: 55px;
  }
}
.mus-pref-popup__data-txt-part {
  padding-top: 32px;
}
@media (max-width: 767px) {
  .mus-pref-popup__data-txt-part {
    flex-basis: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 550px) {
  .mus-pref-popup__data-txt-part {
    flex-basis: auto;
    max-width: none;
    margin-top: 6px;
    padding-top: 0;
  }
}
.mus-pref-popup__data-img-part {
  flex: 0 0 420px;
}
@media (max-width: 767px) {
  .mus-pref-popup__data-img-part {
    flex-basis: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 550px) {
  .mus-pref-popup__data-img-part {
    flex-basis: auto;
    max-width: none;
    align-self: center;
  }
}
.mus-pref-popup__portrait-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding-block: 22px 32px;
}
@media (max-width: 550px) {
  .mus-pref-popup__portrait-wrap {
    padding-block: 65px 0;
  }
}
.mus-pref-popup__portrait-container {
  position: relative;
  z-index: 3;
  bottom: 0;
  left: auto;
  margin-inline: auto;
  grid-column: 2 / 3;
  grid-row: 1;
}
.mus-pref-popup__portrait-container::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: calc(100% - 20px);
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #A9D195 55%, #EEEADE 100%);
  filter: blur(39.70000076px);
  opacity: 0.5;
  z-index: -100;
}
.mus-pref-popup__portrait-container.adrian .obj1 {
  z-index: -1;
  left: -16%;
  top: 1%;
}
.mus-pref-popup__portrait-container.adrian .obj2 {
  z-index: -1;
  right: -5%;
  top: 12%;
}
.mus-pref-popup__portrait-container.adrian .obj3 {
  z-index: 1;
  right: -17%;
  bottom: 13%;
}
.mus-pref-popup__portrait-container.adrian .obj4 {
  z-index: -1;
  left: -6%;
  bottom: 21%;
}
.mus-pref-popup__portrait-container.adrian .obj5 {
  z-index: 1;
  left: -7%;
  bottom: 12%;
}
.mus-pref-popup__portrait-container.alexies .obj1 {
  z-index: -1;
  left: 2%;
  top: 0%;
}
.mus-pref-popup__portrait-container.alexies .obj2 {
  z-index: -1;
  left: 3%;
  top: 46%;
}
.mus-pref-popup__portrait-container.alexies .obj3 {
  z-index: -1;
  right: 8%;
  top: 49%;
}
.mus-pref-popup__portrait-container.alexies .obj4 {
  z-index: 0;
  right: 20%;
  top: 13%;
}
.mus-pref-popup__portrait-container.alexies .obj5 {
  z-index: 0;
  right: -5%;
  top: 13%;
}
.mus-pref-popup__portrait-container.alexies .obj6 {
  z-index: 0;
  right: 16%;
  top: 11%;
}
.mus-pref-popup__portrait-container.alexies .obj7 {
  z-index: 0;
  left: 2%;
  bottom: 11%;
}
.mus-pref-popup__portrait-container.alysia::after {
  background: radial-gradient(50% 50% at 50% 50%, rgba(251, 21, 124, 0.8) 76%, rgba(238, 165, 216, 0.8) 96.5%);
  filter: blur(60.09999847px);
}
.mus-pref-popup__portrait-container.alysia .obj1 {
  z-index: -1;
  left: 8%;
  top: 13%;
}
.mus-pref-popup__portrait-container.alysia .obj2 {
  z-index: -1;
  right: -4%;
  bottom: 13%;
}
.mus-pref-popup__portrait-container.alysia .obj3 {
  z-index: -1;
  right: 7%;
  top: 2%;
}
.mus-pref-popup__portrait-container.alysia .obj4 {
  z-index: 1;
  left: -5%;
  bottom: 7%;
}
.mus-pref-popup__portrait-container.anna::after {
  background: radial-gradient(50% 50% at 50% 50%, #F00 68%, #FCBB1F 73.5%);
  filter: blur(60.09999847px);
}
.mus-pref-popup__portrait-container.anna .obj1 {
  z-index: -3;
  left: 6%;
  top: 23%;
}
.mus-pref-popup__portrait-container.anna .obj2 {
  z-index: -1;
  left: -2%;
  bottom: 8%;
}
.mus-pref-popup__portrait-container.anna .obj3 {
  z-index: -1;
  left: 6%;
  top: 28%;
}
.mus-pref-popup__portrait-container.anna .obj4 {
  z-index: 1;
  right: 0%;
  bottom: 20%;
}
.mus-pref-popup__portrait-container.anna .obj5 {
  z-index: -1;
  right: 10%;
  top: 11%;
}
.mus-pref-popup__portrait-container.dylan::after {
  background: radial-gradient(50% 50% at 50% 50%, rgba(251, 251, 251, 0) 0%, #C1FE44 32%), #FFF;
  filter: blur(60.09999847px);
}
.mus-pref-popup__portrait-container.dylan .obj1 {
  z-index: -1;
  right: 0%;
  top: 12%;
}
.mus-pref-popup__portrait-container.dylan .obj2 {
  z-index: -1;
  right: -23%;
  top: 35%;
}
.mus-pref-popup__portrait-container.dylan .obj3 {
  z-index: -1;
  left: -6%;
  top: 2%;
}
.mus-pref-popup__portrait-container.dylan .obj4 {
  z-index: -1;
  left: -9%;
  bottom: -1%;
}
.mus-pref-popup__portrait-container.dylan .obj5 {
  z-index: 1;
  left: -6%;
  top: 37%;
}
.mus-pref-popup__portrait-container.dylan .obj6 {
  z-index: 1;
  left: -16%;
  bottom: 16%;
}
.mus-pref-popup__portrait-container.elena::after {
  background: radial-gradient(50% 50% at 50% 50%, #AE21FF 86%, #FFF 96.5%);
  filter: blur(60.09999847px);
}
.mus-pref-popup__portrait-container.elena .obj1 {
  z-index: -102;
  right: 11%;
  top: 13%;
}
.mus-pref-popup__portrait-container.elena .obj2 {
  z-index: -102;
  left: 3%;
  bottom: -2%;
}
.mus-pref-popup__portrait-container.elena .obj3 {
  z-index: -1;
  right: 0%;
  bottom: 11%;
}
.mus-pref-popup__portrait-container.elena .obj4 {
  z-index: -1;
  left: -5%;
  top: 18%;
}
.mus-pref-popup__portrait-container.elena .obj5 {
  z-index: 1;
  right: -2%;
  top: 26%;
}
.mus-pref-popup__portrait-container.elena .obj6 {
  z-index: 1;
  left: 0%;
  bottom: 26%;
}
.mus-pref-popup__portrait-container.jaimy::after {
  background: radial-gradient(50% 50% at 50% 50%, #F3B671 76%);
  filter: blur(50.95000076px);
}
.mus-pref-popup__portrait-container.jaimy .obj1 {
  z-index: -1;
  left: -5%;
  bottom: 14%;
}
.mus-pref-popup__portrait-container.jaimy .obj2 {
  z-index: -1;
  right: 10%;
  top: 34%;
}
.mus-pref-popup__portrait-container.jaimy .obj3 {
  z-index: -1;
  left: 2%;
  bottom: 1%;
}
.mus-pref-popup__portrait-container.jaimy .obj4 {
  z-index: -1;
  left: 18%;
  top: 4%;
}
.mus-pref-popup__portrait-container.jaimy .obj5 {
  z-index: -1;
  right: 3%;
  top: 4%;
}
.mus-pref-popup__portrait-container.jaimy .obj6 {
  z-index: -1;
  left: -2%;
  top: 29%;
}
.mus-pref-popup__portrait-container.jaimy .obj7 {
  z-index: 1;
  right: -2%;
  bottom: 29%;
}
.mus-pref-popup__portrait-container.maryam::after {
  background: radial-gradient(50% 50% at 50% 50%, rgba(215, 8, 8, 0.8) 76%, rgba(243, 103, 38, 0.8) 96.5%);
  filter: blur(60.09999847px);
}
.mus-pref-popup__portrait-container.mitch::after {
  background: radial-gradient(50% 50% at 50% 50%, rgba(16, 68, 255, 0.8) 76%, rgba(188, 202, 255, 0.8) 96.5%);
  filter: blur(60.09999847px);
}
.mus-pref-popup__portrait-container.renz::after {
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 51, 51, 0.8) 76%, rgba(238, 176, 170, 0.8) 96.5%);
  filter: blur(60.09999847px);
}
@media (max-width: 767px) {
  .mus-pref-popup__portrait-container {
    max-width: 100%;
  }
}
@media (max-width: 550px) {
  .mus-pref-popup__portrait-container {
    position: static;
    max-width: 200px;
  }
}
.mus-pref-popup__portrait-frame {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  grid-column: 1 / 4;
  grid-row: 1;
}
@media (max-width: 550px) {
  .mus-pref-popup__portrait-frame {
    position: absolute;
    bottom: 0;
  }
}
.mus-pref-popup__album-cover {
  width: 130px;
}
@media (max-width: 550px) {
  .mus-pref-popup__album-cover {
    width: 110px;
  }
}
.mus-pref-popup__data-wrap {
  position: relative;
  z-index: 5;
}
.mus-pref-popup__nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 32px;
  left: 30px;
  right: 30px;
  z-index: 50;
}
@media (max-width: 550px) {
  .mus-pref-popup__nav {
    top: 40px;
  }
}
.mus-pref-popup__nav button {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 0.7;
  transition: opacity 0.3s;
  cursor: pointer;
}
.mus-pref-popup__nav button.slick-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.mus-pref-popup__nav button:hover {
  opacity: 1;
}
.mus-pref-popup__nav svg {
  display: block;
}
.mus-pref-popup__slider-nav {
  display: flex;
  gap: 8px;
}
.music-tests-slider .slick-track {
  display: flex;
}
.slider_card_hidden {
  height: 563px;
  pointer-events: none;
}
@media (max-width: 1399px) {
  .slider_card_hidden {
    height: 503px;
  }
}
@media (max-width: 1199px) {
  .slider_card_hidden {
    height: 433px;
  }
}
@media (max-width: 991px) {
  .slider_card_hidden {
    height: 353px;
  }
}
@media (max-width: 767px) {
  .slider_card_hidden {
    height: 595px;
  }
}
.slider_card_hidden * {
  opacity: 0;
}
.white-small-wave-wrap {
  display: inline-block;
  overflow: hidden;
}
.white-small-wave-wrap svg {
  margin-left: -250px;
  display: block;
}
@keyframes infinitive-rotating {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.mus-second-sect .middle_text {
  position: relative;
}
.mus-second-sect .middle_text .spot {
  position: absolute;
  z-index: 5;
}
.mus-second-sect .middle_text .spot1 {
  left: 44px;
  top: -100px;
}
.mus-second-sect .middle_text .spot2 {
  right: 36px;
  top: -200px;
}
.mus-second-sect .middle_text .spot3 {
  right: 20px;
  right: calc((226 / 1440) * 100vw);
  top: 100%;
}
.main-header .music-toggle-menu {
  margin-left: auto;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
}
.main-header .music-toggle-menu .toggle-menu span {
  height: 1px;
}
.guys-section {
  padding-block: 134px;
  min-height: 500vh;
  background: url('../img1/landing-page-bg.jpg') center / cover no-repeat;
}
@media (max-width: 1199px) {
  .guys-section {
    padding-block: 80px;
  }
}
.guys {
  max-width: 1360px;
  padding-inline: 15px;
  margin-inline: auto;
}
.guys > div:not(:last-child) {
  margin-bottom: 54px;
}
.mus-second-sect-alt {
  background-color: transparent;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .mus-second-sect-alt {
    min-height: 100vh;
  }
}
.mus-second-sect-alt .middle_text-wrap {
  position: relative;
  width: 100%;
}
.mus-second-sect-alt .spot {
  position: absolute;
}
.mus-second-sect-alt .spot1 {
  left: 25px;
  top: -211px;
}
@media (max-width: 1199px) {
  .mus-second-sect-alt .spot1 {
    width: 175px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .mus-second-sect-alt .spot1 {
    top: -250px;
  }
}
@media (max-width: 430px) {
  .mus-second-sect-alt .spot1 {
    width: 150px;
  }
}
.mus-second-sect-alt .spot2 {
  right: 45px;
  top: -96px;
}
@media (max-width: 1199px) {
  .mus-second-sect-alt .spot2 {
    width: 217px;
  }
}
@media (max-width: 767px) {
  .mus-second-sect-alt .spot2 {
    top: -283px;
    right: 0;
    width: 190px;
  }
}
@media (max-width: 430px) {
  .mus-second-sect-alt .spot2 {
    width: 150px;
  }
}
.mus-second-sect-alt .spot3 {
  left: calc((243 / 1443) * 100vw);
  bottom: -50%;
}
@media (max-width: 767px) {
  .mus-second-sect-alt .spot3 {
    width: 110px;
  }
}
.get-in-touch-music {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  text-align: center;
  font-family: 'Inter';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 24px */
  margin-top: 32px;
  padding: 16px;
  border-radius: 100px;
  border: 1px solid #fff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), linear-gradient(90deg, rgba(255, 110, 237, 0.3) 15.87%, rgba(16, 68, 255, 0.3) 99.94%), rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 14.3px 0px rgba(255, 169, 244, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0.85;
}
.get-in-touch-music svg {
  transition: transform 0.3s;
}
.get-in-touch-music:hover {
  opacity: 1;
}
.get-in-touch-music:hover svg {
  transform: translateX(4px);
}
@media (max-width: 1199px) {
  .mus-second-sect .middle_text .spot1 {
    left: 0;
    top: -201px;
    width: 20%;
  }
  .mus-second-sect .middle_text .spot2 {
    right: 15px;
    top: -243px;
    width: 20%;
  }
  .mus-second-sect .middle_text .spot3 {
    width: 120px;
    margin-top: 20px;
  }
  .early p {
    font-size: 32px;
  }
  .early svg {
    width: 33px;
  }
  .moving-txts {
    height: 240px;
  }
  .moving-txt_pink {
    top: 80px;
  }
  .moving-txt_blue {
    top: 160px;
  }
  .moving-txt {
    font-size: 32px;
    height: 80px;
  }
  .moving-txt img {
    width: 33px;
  }
  .mus-third-sect .text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .text_block_m {
    max-width: 300px;
    margin: 0 auto;
  }
  .text_block_m h2 {
    font-size: 24px;
  }
  .text_block_m p {
    font-size: 18px;
  }
  .spotify__header {
    font-size: 39px;
  }
  .mus-second-sect .middle_text .spot1 {
    top: -149px;
    width: 140px;
    left: -26px;
  }
  .mus-second-sect .middle_text .spot2 {
    top: -265px;
    width: 200px;
    right: -31px;
  }
}
@media (max-width: 767px) {
  .mus-top-sect .bot_text .btn_m + .btn_m {
    margin-left: 20px;
  }
  .text_block_m h2 {
    font-size: 18px;
    text-align: center;
  }
  .slider_card .slick-arrow {
    right: 50%;
    margin-right: -57px;
    bottom: 135px;
  }
  .slider_card .slick-arrow.slick-prev {
    right: 50%;
    margin-right: 5px;
  }
  .slider_card .wrap_dots {
    padding-bottom: 50px;
  }
  .slider_card .wrap_dots .current_slide {
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
  }
  .mus-third-sect .mus-third-sect-part-one {
    flex-direction: column;
    justify-content: center;
  }
  .mus-third-sect .mus-third-sect-part-one .img_wrap,
  .mus-third-sect .mus-third-sect-part-one .text {
    position: relative;
    z-index: 4;
  }
  .slider_card .wrap_dots {
    margin-top: 178px;
  }
  .mus-second-sect {
    padding: 168px 0;
  }
  .mus-third-sect .mus-third-sect-part-one {
    min-height: 0;
  }
  .mus-third-sect .mus-third-sect-part-two {
    padding-bottom: 0;
  }
  .mus-top-sect .bot_text .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mus-top-sect .bot_text .btn_m {
    flex-basis: 50%;
  }
  .mus-third-sect .ellipse_middle_blue {
    top: 28%;
    opacity: 0.2;
    height: 20%;
  }
}
/*# sourceMappingURL=landing2.css.map */