/*!
Theme Name: Project 
Theme URI: 
Author: Strive Enterprise
Author URI: https://striveenterprise.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: project
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Project is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
  --color-primary: #3e105a;
  --color-secondary: #120028;
  --color-primary-dark: #40115c;

  --color-text: #212121;
  --color-text-light: #f2f2f2;
  --color-gray: #333333;

  --fs-title-extra-large: 45px;
  --fs-title-larger: 50px;
  --fs-title: 40px;
  --fs-title-smaller: 43px;
  --fs-title-small: 39px;
  --fs-title-smallest: 35px;
  --fs-title-extra-small: 20px;

  --fs-subtitle: 20px;
  --fs-subtitle-large: 20px;
  --fs-subtitle-small: 20px;

  --fs-content: 17px;
  --fs-content-small: 16px;
  --fs-content-smaller: 15px;
  --fs-content-extra-small: 14px;
  --fs-content-extra-smallest: 13px;

  --fs-content-extra-large: 20px;
  --fs-content-larger: 17px;

  --fs-button: 15px;

  --ff-poppins: "Poppins", sans-serif;
  --ff-dm: "DM Sans", sans-serif;
  --ff-onest: "Onest", sans-serif;
  --ff-inter: "Inter", sans-serif;
  --ff-manrope: "Manrope", sans-serif;
}

@media (width<1400px) {
  :root {
    --fs-title-small: 40px;
    --fs-title-extra-small: 20px;
    --fs-subtitle: 18px;
    --fs-subtitle-small: 18px;
    --fs-content: 16px;
    --fs-content-larger: 16px;
    --fs-content-large: 18px;
  }
}

@media (width<768px) {
  :root {
    --fs-title-extra-large: 28px;
    --fs-title-larger: 20px;
    --fs-title: 20px;
    --fs-title-smaller: 28px;
    --fs-title-small: 23px;
    --fs-title-smallest: 30px;
    --fs-title-extra-small: 20px;
    --fs-subtitle-large: 20px;
    --fs-subtitle: 18px;

    --fs-content-extra-large: 18px;
    --fs-content-larger: 17px;
  }
}

#modal-booking,
#modal-booking-services {
  /* .am-employee-select {
        display: none !important;
    } */
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) #fff;
}

.modal {
  .modal-header {
    background: var(--color-primary-10);

    .logo-modal {
      /* filter: brightness(0) invert(1); */
      width: 100%;
      max-width: 100px;
    }

    button {
      filter: brightness(0) invert(1);
    }
  }
}

html,
body {
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
  color: var(--color-primary);
  transition: 400ms;
}

a:hover {
  color: #000;
  transition: 400ms;
}

p,
ul li {
  color: var(--color-text);
  font-size: var(--fs-content);
  font-family: var(--ff-poppins);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);
  font-family: var(--ff-poppins);

  & span {
    font-style: italic;
  }
}

.titlebr br {
  @media (width<768px) {
    display: none;
  }
}

.page-width {
  margin-inline: auto;
  max-width: 2400px;
  padding-inline: 1rem;

  @media (width>=768px) {
    padding-inline: 2rem;
  }
}

.section-title {
  font-size: var(--fs-title);
  font-family: var(--ff-poppins);
  margin-bottom: 15px;
  text-transform: capitalize;
  color: var(--color-gray);
  font-weight: 800;
  text-wrap: balance;

  & span {
    color: var(--color-primary);
    font-style: normal;
  }
}

.ff-dm {
  font-family: var(--ff-dm);
}

.ff-poppins {
  font-family: var(--ff-poppins);
}

.ff-onest {
  font-family: var(--ff-onest);
}

.ff-inter {
  font-family: var(--ff-inter);
}

.ff-manrope {
  font-family: var(--ff-manrope);
}

.fs-title-extra-large {
  font-size: var(--fs-title-extra-large);
}

.fs-title-larger {
  font-size: var(--fs-title-larger);
}

.fs-title {
  font-size: var(--fs-title);
}

.fs-title-small {
  font-size: var(--fs-title-small);
}

.fs-title-smaller {
  font-size: var(--fs-title-smaller);
}

.fs-title-smallest {
  font-size: var(--fs-title-smallest);
}

.fs-title-extra-small {
  font-size: var(--fs-title-extra-small);
}

.fs-subtitle {
  font-size: var(--fs-subtitle);
}

.fs-subtitle-small {
  font-size: var(--fs-subtitle-small);
}

.fs-subtitle-large {
  font-size: var(--fs-subtitle-large);
}

.fs-content {
  font-size: var(--fs-content);
}

.fs-content-small {
  font-size: var(--fs-content-small);
}

.fs-content-extra-small {
  font-size: var(--fs-content-extra-small);
}

.fs-content-larger {
  font-size: var(--fs-content-larger);
}

.fs-content-large {
  font-size: var(--fs-subtitle-small);
}

.fs-content-extra-large {
  font-size: var(--fs-content-extra-large);
}

.color-primary {
  color: var(--color-primary);
}

.color-secondary {
  color: var(--color-secondary);
}

.color-primary-10 {
  color: var(--color-secondary-10);
}

.color-text {
  color: var(--color-text);
}

.color-text-light {
  color: var(--color-text-light);
}

.color-gray {
  color: var(--color-gray);
}

.dbg-primary {
  background: var(--color-primary);
}

.dbg-secondary {
  background: var(--color-secondary);
}

.btn-primary {
  position: relative;
  display: flex;
  overflow: hidden;
  width: fit-content;
  height: 55px;
  padding-inline: 1.5rem;
  font-weight: 700;
  border-radius: 40px;
  text-transform: capitalize;
  font-size: var(--fs-button);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--ff-poppins);
  color: var(--color-primary);
  &:before {
    z-index: -1;
    transition: 400ms;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
  }
  & span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, #40115c 0%, #120028 100%);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  &:hover {
    color: #cfebe8;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: var(--color-primary) !important;
    transition: background 400ms ease-in 0.1s;

    span {
      width: 225%;
      height: 562.5px;
    }
  }
  &:active {
    background-color: var(--color-primary);
  }
}

.btn-secondary {
  position: relative;
  display: flex;
  overflow: hidden;
  width: fit-content;
  height: 55px;
  padding-inline: 1.5rem;
  font-weight: 700;
  border-radius: 40px;
  text-transform: capitalize;
  cursor: pointer;
  font-size: var(--fs-button);
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--ff-poppins);
  color: #fff;

  &:before {
    z-index: -1;
    transition: 400ms;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #40115c 0%, #120028 100%);
  }

  & span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: white;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  &:hover {
    color: var(--color-primary);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: white !important;
    transition: background 400ms ease-in 0.1s;

    span {
      width: 225%;
      height: 562.5px;
    }
  }
  &:active {
    background-color: white;
  }
}

.wpcf7-list-item {
  margin: 0;
}

input {
  outline: none;
}

.contact-form {
  input,
  textarea,
  select {
    box-shadow: none !important;
    outline: none !important;
    width: 100%;
    border: 1px solid #ddd !important;
    border-radius: 50rem;
    padding: 10px 15px;
    overflow: hidden;
  }

  .btn-primary {
    br {
      display: none !important;
    }
  }

  .btn-close:focus,
  .btn-menu-offcanvas:focus {
    box-shadow: none;
  }

  textarea {
    border-radius: 15px;
    height: 130px;
  }

  .check-policies {
    p {
      width: 100%;
    }

    a {
      position: absolute;
      transition: 0.4s;
      width: fit-content;
      color: var(--color-text);
      font-weight: 600 !important;

      &:hover {
        color: var(--color-primary);
      }
    }

    .wpcf7-not-valid-tip {
      position: absolute;
      width: 220px;
      left: 15px;
      top: 17px;
    }
  }

  .check-policies input {
    width: auto;
  }
}

/* tooltip */
.tooltip-inner {
  background-color: var(--color-secondary);
  color: #fff;

  /* Mobile */
  @media (width<=768px) {
    display: none;
  }
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
  border-top-color: var(--color-secondary);

  /* Mobile */
  @media (width<=768px) {
    display: none;
  }
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
  border-bottom-color: var(--color-secondary);

  /* Mobile */
  @media (width<=768px) {
    display: none;
  }
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
  border-left-color: var(--color-secondary);

  /* Mobile */
  @media (width<=768px) {
    display: none;
  }
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
  border-right-color: var(--color-secondary);

  /* Mobile */
  @media (width<=768px) {
    display: none;
  }
}

.wpcf7-response-output {
  border-color: #bb74e7 !important;
}
