@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root {
  --main-color: #0c0933;
  --main-color-dark: #6044d2;
  --violet: #8061ff;
  --gray-200: #dfdfe0;
  --text: #D9E1FF;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 75rem; /* Can be removed; just added for demo purposes */
  /*font-family: 'PT Sans', sans-serif;*/
  /*font-weight: normal;*/
  font-family: "Montserrat", sans-serif;
  /*background-color: var(--main-color);*/
  color: #D9E1FF;
  font-size: 20px;

  --_gradient-blend-mode: normal;
  --_gradient-blur: 100px;
  
  /*background: radial-gradient(at 0.6389776357827476% 14.934546615581098%, #991ccf 0px, transparent 35%), radial-gradient(at 94.72843450479233% 95.26660280970626%, #103D85 0px, transparent 35%), radial-gradient(at 39.29712460063898% 67.4249680715198%, #783374 0px, transparent 35%) #0c0933;*/
  /*mix-blend-mode: var(--_gradient-blend-mode);*/


  background: radial-gradient(at 80.5111821086262% 93.60632183908046%, #103D85 0px, transparent 40%), radial-gradient(at 38.65814696485623% 54.01500638569604%, #783374 0px, transparent 40%) #0c0933;;
  mix-blend-mode: var(--_gradient-blend-mode);


}


.frosted-backdrop {
  backdrop-filter: blur(var(--_gradient-blur)) contrast(100%) brightness(100%);
  -webkit-backdrop-filter: blur(var(--_gradient-blur)) contrast(100%) brightness(100%);
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

p {
  line-height: 1.4;
}


/* ----------- */
section {
  margin-bottom: 80px;
}

section:last-of-type {
  margin-bottom: 0;
}

.text-end {
  text-align: end;
}

.btn {
  background-color: var(--violet);
  color: white;
  padding: 10px 24px;
  font-size: 18px;
  /*border: none;*/
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}

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


.btn-outline {
  border: 1px solid var(--violet);
  color: var(--violet);
  background-color: white;
}
.btn-outline:hover {
  background-color: var(--violet);
  color: white;
}


.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  font-family: "Montserrat", sans-serif;
}

.col-form-label {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.title {
  font-size: 7vw;
}

.title__big {

}

.fullScreenWrp {
  position: relative;
}


.embededVideo {
  aspect-ratio: 16 / 9;
  width: 100%;
}

/* ----------- */
.introBlock {
  padding: 40px 0 80px;
  background-image: url("../img/big_sound.jpeg");
  background-position: 0 center;
  background-size: cover;
  position: relative;
}

.introBlock:before {
  content: '';
  display: block;

  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0 0 0 / 65%);
}
.introBlock_title {
  margin-bottom: 20px;
}


.servicesBlock_desc {
  margin-bottom: 80px;
}

.serviceCard {
  margin-bottom: 65px;
}

.serviceCard__title {
  margin-bottom: 10px;
}

.serviceCard__img {
  margin-bottom: 20px;
  object-fit: cover;
  aspect-ratio: 1.5;
}

.economy__desc {

}



.brandsBlock {
}

.brands{
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 2;
}
.brands li {
  margin-bottom: 12px;
}


.advantageItem {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
}

.advantageItem__iconWrp {
  width: 40px;
  height: 40px;
}
.advantageItem__icon {
  aspect-ratio: 1;
}

.advantageItem__title {
  font-size: 5.5vw;
  font-weight: 600;
  flex: 1;
}

.logoGallery {
  margin-bottom: 100px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  flex-wrap:wrap;
  justify-content: space-between;
  gap: 20px;
}

.logoGallery__img {
  max-width: 80%;
  max-height: 108px;
  height: auto;
}

.advantagesBlock_phones {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
}

.advantagesBlock_phones>a {
  text-decoration: none;
  color: inherit;
}

.footerBlock {
  padding: 40px 0 60px;
}

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

.footerText {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
}



/* ------- Modal ------- */



.modal-bg {
  /*display: none;*/
  background-color: rgba(0, 0, 0, 0.45);
  /* background-color: rgba(0, 0, 0); */
  height: 100%;
  width: 100%;
  position: fixed;
  top:0;
  left:0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  color: #333;
}

.modal-bg.showing {
  opacity: 1;
  pointer-events: auto;
}


.modal {
  --margin: calc((100vh - 350px) / 10);
  margin: var(--margin) auto 0;
  background-color: white;
  width: 95vw;
  max-width: 380px;
  border-radius: 4px;
  border: 1px solid #555;
  min-height: 250px;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translate(0, calc(-100% - var(--margin))) scale(0.95);
}

.modal.showing {
  transform: translate(0, 0) scale(1);
  pointer-events: auto;
}

.modal .closeByX{
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
}

.modal .closeByX:before {
  content: "+";
  display: block;
  transform: rotate(45deg);
  font-size: 48px;
  line-height: 70%;
}


.modal .modalTitle {
  font-size: 24px;
  margin: 0;
}

.modal .modal-row {
  border-bottom: 1px solid #ccc;
  padding: 16px;
}

.modal .btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.modal .modal-row:last-child {
  border: none;
}

.modal .modal-row .form-control {
  margin-bottom: 20px;
}

.modal .modal-row .btn {
  min-width: 145px;
}


/* ------- MEDIA ------- */

@media (min-width: 768px) {

  p {
    line-height: 1.6;
  }

  section {
    margin-bottom: 160px;
  }

  .btn {
    padding: 12px 36px;
  }


  .title {
    font-size: 45px;
  }


  .modal {
    --margin: 150px;
    width: 650px;
    max-width: 800px;
  }

  .modal .btn-row {
    display: block;
    text-align: right;
  }

  .modal .modal-row .btn {
    min-width: 175px;
  }
  .modal .modal-row .form-control {
    margin-bottom: 24px;
  }


  .introBlock {
    padding: 0;
    background-image: url("../img/dj_night_club.jpeg");
  }

  .introBlock_title {
    margin-bottom: 0;
  }

  .fullScreenWrp {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    gap: 80px;
  }


  .servicesBlock_desc {
    margin-bottom: 100px;
  }


  .serviceCard {
    margin-bottom: 45px;
  }


  .serviceCard__title {
    margin-bottom: 20px;
  }

  .brands{
    column-count: 3;
  }
  .brands li {
    margin-bottom: 18px;
  }

  .advantageItem {
    display: block;

    margin-bottom: 22px;
  }

  .advantageItem__iconWrp {
    width: 47px;
    height: 47px;
    margin-bottom: 20px;
  }

  .advantageItem__title {
    font-size: 26px;
  }


  .logoGallery__img {
    max-width: 17%;
  }


  .advantagesBlock_phones {
    display: inline;
  }

  .footerText {
    display: inline;
  }
}