/*!
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: #4CAF50;
  --color-secondary: #E56E04;
  --color-tertiary: #7A7F8640;

  --color-text: #7A7F86;
  --color-text-light: #F9FBF3;

  --fs-title-hero: 64px;
  --fs-title: 45px;
  --fs-title-small: 35px;
  --fs-title-extra-small: 26px;

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

  --fs-content-larger: 19px;
  --fs-content: 17px;
  --fs-content-small: 14px;

  --fs-button: 16px;

  --ff-plus: "Plus Jakarta Sans", sans-serif;
  --ff-inter: "Inter", sans-serif;
  --ff-mulish: "Mulish", sans-serif;
  --ff-lato: "Lato", sans-serif;
  --ff-league: "League Spartan", sans-serif;
  --ff-dm: "DM Sans", sans-serif;

  --vertical-padding: 3rem;
  --header-size: 132.5px;
}

@media (width<768px) {
  :root {
    --fs-title-hero: 32px;
    --fs-title: 30px;
    --fs-title-small: 20px;
    --fs-title-extra-small: 19px;


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

    --fs-content-larger: 16px;
    --fs-content: 16px;
    --fs-content-small: 15px;

    --vertical-padding: 3rem;
    --header-size: 130.59px;
  }
}

.fs-content,
.fs-content-large,
.fs-content-extra-large {
  line-height: 1.5;
}

* {
  scrollbar-width: thin;
  box-sizing: border-box;
  scrollbar-color: var(--color-primary) #fff;
  scroll-margin-top: 200px;
}

.modal {
  .modal-header {
    background: var(--color-primary-10);
    padding: 15px 30px;

    .logo-modal {
      /* filter: brightness(0) invert(1); */
      width: auto;
      height: 60px;
    }

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

.titlebr{
  @media(width<=992px){
    text-wrap: balance;
    & br{
      display: none;
    }
  }
}

html,
body {
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
  transition: 400ms;
}

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

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

div {
  line-height: 1.5;
}

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

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

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

.vertical-padding {
  padding-top: var(--vertical-padding);
  padding-bottom: var(--vertical-padding);
}

.text-title {
  font-size: var(--fs-title);
  font-family: var(--ff-plus);
  font-weight: 600;
  margin-bottom: 20px;
}

.text-white{
  color: #F9FBF3 !important;
}

/* Font Families */

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

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

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

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

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

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

/* Font sizes */

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

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

.fs-title-small {
  font-size: var(--fs-title-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-large {
  font-size: var(--fs-subtitle-large);
}

/* Colors */

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

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

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

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

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

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

/* Buttons  */

.btn-primary {
  background: var(--color-primary);
  position: relative;
  display: inline-flex;
  padding: 0px 30px;
  overflow: hidden;
  width: fit-content;
  height: 44px;
  margin-top: 1rem;
  text-transform: uppercase;
  transition: 500ms;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  outline: none;

  & div {
    font-family: var(--ff-mulish);
    font-size: var(--fs-content);
    font-weight: 700;
    color: white;
    z-index: 1;
    transition: .3s all ease-in-out;
    text-transform: capitalize;
  }

  & span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--color-secondary);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
  }

  /* Hover SOLO en desktop */
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      background-color: var(--color-secondary);
  
      & div {
        color: #fff;
      }
  
      & span {
        width: 225%;
        height: 562.5px;
      }
  
    }
  }

}

.btn-secondary {
  background: var(--color-secondary);
  position: relative;
  display: inline-flex;
  padding: 0px 30px;
  overflow: hidden;
  width: fit-content;
  height: 44px;
  margin-top: 1rem;
  text-transform: uppercase;
  transition: 500ms;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  outline: none;

  & div {
    font-family: var(--ff-inter);
    font-size: var(--fs-content);
    font-weight: 600;
    color: white;
    z-index: 1;
    transition: .3s all ease-in-out;
    text-transform: capitalize;
  }

  & span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
  }

  /* Hover desktop */
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      background-color: var(--color-primary);
  
      & div {
        color: #fff;
      }
  
      & span {
        width: 225%;
        height: 562.5px;
      }
  
    }
  }
}

.btn-light {
  background: white;
  position: relative;
  display: inline-flex;
  padding: 0px 30px;
  overflow: hidden;
  width: fit-content;
  height: 44px;
  max-width: 215px;
  margin-top: 1rem;
  text-transform: uppercase;
  transition: 500ms;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  outline: none;

  & div {
    font-family: var(--ff-inter);
    font-size: var(--fs-content);
    font-weight: 600;
    color: var(--color-secondary);
    z-index: 1;
    transition: .3s all ease-in-out;
    text-transform: capitalize;
  }

  & span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--color-secondary);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
  }

  /* Hover desktop */
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      background-color: var(--color-secondary);
  
      & div {
        color: #fff;
      }
  
      & span {
        width: 225%;
        height: 562.5px;
      }
  
    }
  }


}

.btn-gray {
  background: var(--color-text);
  position: relative;
  display: inline-flex;
  padding: 0px 30px;
  overflow: hidden;
  width: fit-content;
  height: 44px;
  margin-top: 1rem;
  text-transform: uppercase;
  transition: 500ms;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  outline: none;

  & div {
    font-family: var(--ff-mulish);
    font-size: var(--fs-content);
    font-weight: 700;
    color: white;
    z-index: 1;
    transition: .3s all ease-in-out;
    text-transform: capitalize;
  }

  & span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
  }

  /* Hover desktop */
  @media (hover: hover) and (pointer: fine) {

    &:hover {
      background-color: var(--color-primary);
  
      & div {
        color: #fff;
      }
  
      & span {
        width: 225%;
        height: 562.5px;
      }
  
    }
  }


}


/* Contact Form 7 */

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

.swiper-nav button svg path{
  transition: all .3s;
}

.swiper-nav button {
  @media (hover: hover) and (pointer: fine) {
    &:hover{
      svg path{
        stroke: var(--color-secondary) !important;
      }
    }
  }
}

@media(width<768px){
  .swiper-nav button svg{
    width: 15px !important;
  }
}