/*!
Theme Name: LOREAL PRO Academy
Author: the GreatPRO
Author URI: https://greatpro.com.ua/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 7.4
Text Domain: loreal-pro

https://proacademy.loreal.ua/wp-content/themes/loreal-pro/style.css?ver=1.0.0 

@import "./assets/styles/why-we.css";
@import "./assets/styles/coaches.css";
@import "./assets/styles/faq.css";
@import "./assets/styles/get-consult.css";
@import "./assets/styles/contacts.css";
@import "./assets/styles/footer.css";


*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@import "variables.css";
@import "header.css";
@import "about-loreal-academy.css";
@import "training-program.css";
@import "footer.css";


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: var(--size-16);
  line-height: 130%;
  scroll-behavior: smooth;
  scroll-margin-top: 11vw;
}

@media screen and (max-width: 619px) {
  * {
    scroll-margin-top: 20vw;
  }
}

body {
  /* position: relative; */
  width: 100%;
  overflow-x: hidden;
  background-color: var(--white-c);
}

.btn-upp {
  text-transform: uppercase;
}

img {
  width: 100%;
}

a {
  color: var(--black-c);
  text-decoration: none;
}

ul {
  list-style-type: none;
}

b,
span {
  font-size: inherit;
  line-height: inherit;
}

h2 {
  font-size: var(--size-56);
  line-height: 110%;
  text-transform: uppercase;
}

h3 {
  font-size: var(--size-44);
  line-height: 110%;
  text-transform: uppercase;
}

h3 > span {
  color: var(--gold-c);
}

h4 {
  font-size: var(--size-32);
  line-height: 110%;
  text-transform: uppercase;
}

section:not(:first-of-type) {
  margin-top: var(--size-80);
}

.content {
  position: relative;
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
}

button {
  width: calc(var(--size-32) * 10);
  display: flex;
  justify-content: center;
  border-radius: var(--size-2);
  background-color: var(--red-c);
  outline: none;
  border: 0;
  border: var(--size-1) solid transparent;
  transition: all 0.3s ease-in;

  -webkit-tap-highlight-color: transparent;
}

button:active {
  transform: scale(0.98);
}

.hovered-btn:hover,
.hovered-btn:focus {
  border-color: var(--black-c);
  background-color: var(--black-c);
  box-shadow: inset calc(var(--size-32) * 10) 0 0 0 var(--white-c);
}

button > a {
  display: block;
  width: 100%;
  padding: var(--size-12);
  line-height: var(--size-24);
  font-weight: 600;
  color: var(--white-c);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.hovered-btn:hover > a,
.hovered-btn:focus > a {
  color: var(--black-c);
}

.collapsible-element {
  padding-bottom: var(--size-40);
  display: flex;
  flex-direction: column;
  border-bottom: var(--size-1) var(--solid-transparent-border);
}

.collapsible-btn {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}

.collapsible-btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(0);
  width: var(--size-28);
  transition: all 0.3s ease-in-out;
}

.collapsible-element.active .collapsible-btn img {
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.collapsible-content {
  display: flex;
  gap: var(--size-24);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.collapsible-content ul {
  flex-basis: 50%;
  margin-top: var(--size-10);
  display: flex;
  flex-direction: column;
  gap: var(--size-10);
}

.collapsible-content ul li {
  display: flex;
  align-items: center;
  gap: var(--size-10);
  line-height: 100%;
}

.collapsible-content ul li::before {
  flex-shrink: 0;
  align-self: flex-start;
  content: "";
  background-image: url(./assets/images/marker-square.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: var(--size-14);
  height: var(--size-14);
}

.animated-logo {
  margin-top: var(--size-80);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.animated-logo img {
  width: 525px;
}

.animated-logo p span {
  font-weight: 200;
  font-size: var(--size-62);
  line-height: 110%;
  text-transform: uppercase;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 45%);
}

.popup.open {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  display: flex;
  width: 55%;
}

.popup-logo {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--size-20);
  background-color: var(--black-c);
}

.popup-form {
  width: 60%;
  background-color: var(--white-c);
  padding: var(--size-32) var(--size-32) var(--size-80) var(--size-32);
  display: flex;
  flex-direction: column;
  gap: var(--size-48);
}

.popup-form img {
  align-self: flex-end;
  width: var(--size-24);
  cursor: pointer;
}

.popup-form form {
  display: flex;
  flex-direction: column;
  gap: var(--size-10);
}

.popup-form form label {
  display: flex;
  flex-direction: column;
  gap: var(--size-4);
}

.popup-form form span.check label{
  flex-direction: row;
  align-items: center;
  gap: var(--size-20);
  font-weight: normal;
}
.popup-form form span.check > span {
  margin: 0;
}
.popup-form form span.check label span{
  font-size: var(--size-14);
}

.popup-form form label span:first-child{
  font-size: var(--size-14);
  font-weight: 700;
}

.popup-form form label input {
  padding: var(--size-4);
  font-size: var(--size-16);
  line-height: var(--size-24);
  border: var(--size-1) solid rgba(0, 0, 0, 35%);
  transition: all 0.3s ease-in-out;
}

.popup-form form label input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 70%);
}

.popup-form form label.check span {
  font-weight: 400;
}

.popup-form form button {
  margin-top: var(--size-20);
  background-color: var(--black-c);
}

#btn-submit{
  width: calc(var(--size-32) * 10);
  display: inline-block;
  justify-content: center;
  border-radius: var(--size-2);
  background-color: var(--black-c);
  outline: none;
  border: 0;
  border: var(--size-1) solid transparent;
  transition: all 0.3s ease-in;

  -webkit-tap-highlight-color: transparent;

  padding: var(--size-12);
  line-height: var(--size-24);
  font-weight: 600;
  color: var(--white-c);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

#btn-submit:active{
  transform: scale(0.98);
}

#btn-submit:hover,
#btn-submit:focus {
  color: var(--black-c);
  border-color: var(--black-c);
  background-color: var(--black-c);
  box-shadow: inset calc(var(--size-32) * 10) 0 0 0 var(--white-c);
}

.countdown-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--size-44) 0;
  display: flex;
  gap: var(--size-40);
  justify-content: center;
  align-items: center;
  background: var(--black-c);
}

.countdown-banner p {
  font-size: var(--size-32);
  color: var(--white-c);
}

.countdown-banner .countdown {
  width: 25%;
  display: flex;
  justify-content: center;
  gap: var(--size-10);
  font-weight: 700;
}

.countdown-banner .countdown .days::after {
  content: " ????N�??";
}

.countdown-banner .time {
  display: flex;
  gap: var(--size-4);
}

.countdown-banner button {
  border: none;
  background: linear-gradient(53deg, var(--black-c), var(--red-c), #6e1a1a);
  background-size: 600% 600%;

  -webkit-animation: AnimationName 5s ease infinite;
  -moz-animation: AnimationName 5s ease infinite;
  -o-animation: AnimationName 5s ease infinite;
  animation: AnimationName 5s ease infinite;
}

@media screen and (min-width: 620px) and (max-width: 1289px) {
  .content {
    max-width: 89.5%;
  }

  .animated-logo img {
    width: 40.72vw;
  }
}

@media screen and (max-width: 619px) {
  .content {
    max-width: 87.2%;
  }

  h2 {
    font-size: var(--size-40);
  }

  h3 {
    padding: 0 var(--size-12);
    font-size: var(--size-32);
    text-align: center;
  }

  h4 {
    font-size: var(--size-20);
    line-height: 110%;
    text-transform: none;
  }

  .collapsible-element {
    padding-bottom: var(--size-24);
  }

  .collapsible-content {
    flex-direction: column;
    gap: 0;
  }

  .collapsible-btn img {
    width: var(--size-20);
    height: auto;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: translate(0);
  }

  .animated-logo {
    margin-top: var(--size-40);
  }

  .animated-logo img {
    width: 66.88vw;
  }

  .animated-logo p span {
    font-size: var(--size-30);
  }

  .popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    flex-direction: column;
  }

  .popup-logo,
  .popup-form {
    width: 100%;
  }

  .popup-logo {
    height: 33%;
    flex-shrink: 1;
  }

  .popup-form {
    flex-grow: 1;
    padding: var(--size-20) var(--size-20) var(--size-40) var(--size-20);
    gap: 0;
  }

  .popup-form img {
    position: absolute;
    top: var(--size-20);
    right: var(--size-20);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%)
      hue-rotate(206deg) brightness(101%) contrast(101%);
  }

  .popup-form form button {
    position: absolute;
    bottom: var(--size-20);
    left: 50%;
    transform: translateX(-50%);
  }

  .countdown-banner {
    padding: var(--size-20);
    flex-direction: column;
    gap: var(--size-20);
  }

  .countdown-banner > p {
    font-size: var(--size-24);
  }

  .countdown-banner .countdown {
    width: 100%;
  }

  .countdown-banner .countdown p {
    font-size: var(--size-32);
  }
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 48%;
  }
  50% {
    background-position: 100% 53%;
  }
  100% {
    background-position: 0% 48%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 48%;
  }
  50% {
    background-position: 100% 53%;
  }
  100% {
    background-position: 0% 48%;
  }
}
@-o-keyframes AnimationName {
  0% {
    background-position: 0% 48%;
  }
  50% {
    background-position: 100% 53%;
  }
  100% {
    background-position: 0% 48%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 48%;
  }
  50% {
    background-position: 100% 53%;
  }
  100% {
    background-position: 0% 48%;
  }
}


.title-inst {
  font-size: var(--size-44);
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
}
.inner-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: top;
  gap: 40px;
  margin-top: var(--size-40);
}

.instagram-media {
  max-width: 420px !important;
}

@media only screen and (min-width: 600px) {
  .inner-block {
    padding: 0 20px;
  }
  
}
.why-wy-price {
	display: none;
}