/*!
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: #FF8C00;
  --color-secondary: #3D5A80;
  --color-tertiary: #0B132B;

  --color-text: #2c2c2c;

  --fs-title-hero: 54px;
  --fs-title: 40px;
  --fs-title-small: 35px;

  --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-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;
  --ff-mulish: "Mulish", sans-serif;
  --ff-inter: "Inter", sans-serif;
  --ff-open-sans: "Open Sans", sans-serif;

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

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

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

input[type="checkbox"] {
  accent-color: #FF8C00 !important;
}

.wpcf7-checkbox input[type="checkbox"] {
  cursor: pointer;
}



.nice-select {
  box-shadow: none !important;
  outline: none !important;
  width: 100% !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 10px 15px;
  font-family: var(--ff-mulish) !important;
  font-size: 16px !important;
  color: #0F172A;
  line-height: 1.2 !important;
  margin-bottom: 5px;
  height: auto !important;
  min-height: 48px;
  display: flex;
  align-items: center;

  .list {
    width: 100%;
    border-radius: 8px !important;
    margin-top: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
    max-height: 200px !important;
    overflow-y: auto !important;
  }

  /* Custom scrollbar for NiceSelect list */
  .list::-webkit-scrollbar {
    width: 6px;
  }

  .list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
  }

  .list::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
  }

  .list:hover .option:not(:hover) {
    color: #475569 !important;
  }
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: var(--color-primary) !important;
  color: white !important;
}

.nice-select:after {
  border-bottom: 2px solid #94a3b8;
  border-right: 2px solid #94a3b8;
  width: 8px;
  height: 8px;
}

.nice-select.open:after {
  transform: rotate(-135deg);
}

.nice-select .list {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) #f1f5f9;
}

.nice-select ::-webkit-scrollbar-button {
  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-open-sans);
  line-height: 1.7;
}

div {
  line-height: 1.7;
  font-family: var(--ff-open-sans);
}

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

.page-width {
  margin-inline: auto;
  max-width: 1600px;
  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-poppins);
  font-weight: 300;
  margin-bottom: 20px;
}

/* Font Families */

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

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

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

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

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

/* 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);
}

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

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

/* Buttons  */

/* Hero and Header specific buttons - Open Sans */
.hero-section .btn-primary,
.header-area .btn-primary,
.banner-contact .btn-primary {
  & div {
    font-family: var(--ff-open-sans) !important;
  }
}

.hero-section .btn-secondary,
.header-area .btn-secondary,
.banner-contact .btn-secondary {
  & div {
    font-family: var(--ff-open-sans) !important;
  }
}

.hero-section .btn-light,
.header-area .btn-light,
.banner-contact .btn-light {
  & div {
    font-family: var(--ff-open-sans) !important;
  }
}



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

  & 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;
    border-radius: 50%;
    height: 0;
    background-color: var(--color-secondary);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
  }

  /* Disable hover effects on mobile */
  @media (hover: none) and (pointer: coarse) {
    &:hover {
      background-color: var(--color-primary);

      & div {
        color: white;
      }

      & span {
        width: 0;
        height: 0;
      }
    }
  }

  @media (hover: hover) {
    &:hover {
      background-color: var(--color-secondary);

      & div {
        color: #fff;
      }

      & span {
        width: 225%;
        height: 562.5px;
      }

    }
  }

}


.btn-secondary {
  background: transparent;
  position: relative;
  display: inline-flex;
  border: 1px solid var(--color-secondary);
  padding: 0px 30px;
  overflow: hidden;
  width: fit-content;
  height: 50px;
  max-width: 215px;
  margin: 1rem 0px;
  text-transform: uppercase;
  transition: 400ms;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;

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

    & p {
      transition: all .3s ease-in-out;
      color: var(--color-secondary);
    }

    & svg path {
      transition: all .3s ease-in-out;
    }
  }

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

  @media (hover: hover) {
    &:hover {
      background-color: var(--color-secondary);
      border: 1px solid var(--color-secondary);

      & div {
        color: white !important;

        & p {
          color: white !important;
        }

        & svg path {
          fill: white;
        }
      }

      & span {
        width: 225%;
        height: 562.5px;
      }

    }

    &:hover &:active {
      background-color: var(--color-secondary);
    }
  }
}



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

  & 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;

    & p {
      transition: all .3s ease-in-out;
      width: 100%;
      color: white;
    }

    & svg path {
      transition: all .3s ease-in-out;
    }
  }

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

  /* Disable hover effects on mobile */
  @media (hover: none) and (pointer: coarse) {
    &:hover {
      background-color: transparent;
      border: 1px solid white;

      & div {
        color: white !important;

        & p {
          color: white !important;
        }

        & svg path {
          fill: white;
        }
      }

      & span {
        width: 0;
        height: 0;
      }
    }
  }

  @media (hover: hover) {
    &:hover {
      background-color: white;
      border: 1px solid white;

      & div {
        color: var(--color-secondary) !important;

        & p {
          color: var(--color-secondary) !important;
        }

        & svg path {
          fill: var(--color-secondary);
        }
      }

      & span {
        width: 225%;
        height: 562.5px;
      }

    }

    &:hover &:active {
      background-color: white;
    }
  }
}

/* Contact Form 7 */

.wpcf7-response-output {
  display: none;
  margin: 20px 0 !important;
  padding: 15px !important;
  border: 2px solid transparent !important;
  border-radius: 8px !important;
  font-family: var(--ff-mulish) !important;
  font-size: 14px !important;
  text-align: center !important;
  transition: all 0.3s ease;
}

.wpcf7-form.sent .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
  display: block !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: #22c55e !important;
  background-color: #dcfce7 !important;
  color: #15803d !important;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
  border-color: #ef4444 !important;
  background-color: #fee2e2 !important;
  color: #b91c1c !important;
}

.wpcf7-form.spam .wpcf7-response-output {
  border-color: #f59e0b !important;
  background-color: #fef3c7 !important;
  color: #92400e !important;
}

.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;
  }
}
span[data-name="hcap-cf7"] ~ input[type="submit"], span[data-name="hcap-cf7"] ~ button[type="submit"] {
	margin-top: 0!important;
}
/* 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;
  }
}

@media (hover: none) and (pointer: coarse) {
  a:hover {
    color: inherit !important;
  }

  a:active {
    color: inherit !important;
  }

  .btn-primary:hover {
    background-color: var(--color-primary) !important;
  }

  .btn-primary:hover span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .btn-primary:active {
    background-color: var(--color-primary) !important;
  }

  .btn-primary:active span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .btn-secondary:hover {
    background-color: transparent !important;
    border: 1px solid var(--color-secondary) !important;
  }

  .btn-secondary:hover span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .btn-secondary:active {
    background-color: transparent !important;
    border: 1px solid var(--color-secondary) !important;
  }

  .btn-secondary:active span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .btn-light:hover {
    background-color: transparent !important;
    border: 1px solid white !important;
  }

  .btn-light:hover span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .btn-light:active {
    background-color: transparent !important;
    border: 1px solid white !important;
  }

  .btn-light:active span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 768px) {
  a:hover {
    color: inherit !important;
  }

  a:active {
    color: inherit !important;
  }

  .btn-primary,
  .btn-secondary,
  .btn-light {
    width: 100% !important;
    max-width: 100% !important;
    height: 50px !important;
    display: flex !important;
    margin: 10px 0 !important;
  }

  .btn-primary:hover {
    background-color: var(--color-primary) !important;
  }

  .btn-primary:hover span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .btn-primary:active {
    background-color: var(--color-primary) !important;
  }

  .btn-primary:active span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .btn-secondary:hover {
    background-color: transparent !important;
    border: 1px solid var(--color-secondary) !important;
  }

  .btn-secondary:hover span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .btn-secondary:active {
    background-color: transparent !important;
    border: 1px solid var(--color-secondary) !important;
  }

  .btn-secondary:active span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .btn-light:hover {
    background-color: transparent !important;
    border: 1px solid white !important;
  }

  .btn-light:hover span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .btn-light:active {
    background-color: transparent !important;
    border: 1px solid white !important;
  }

  .btn-light:active span {
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }
}