/* 
Theme Name: 100Bond Theme
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Enjoyable Design
Author URI: https://enjoyable.design/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --Black: #32302f;
  --White: #fff;
  --Text-color: #757575;
  --Primary: #fa8a0c;
}

.pageWidth {
  width: 100%;
  padding: 15px;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .pageWidth {
    padding: 25px;
  }
}

@media (min-width: 1500px) {
  .pageWidth {
    padding: 25px 10%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1 {
  color: var(--Black, #32302f);
  font-family: "Inter Tight", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
}

h2 {
  color: var(--Black, #32302f);
  font-family: "Inter Tight", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
  letter-spacing: -0.44px;
  text-transform: capitalize;
}

p {
  color: var(--Text-color, #757575);
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

p.upperTitle {
  color: #757575;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

a {
  font-family: "Inter Tight", sans-serif;
}

.bond-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  background: transparent !important;
  color: #2c2d2c;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  font-size: 16px;
  width: fit-content;
  font-family: "Inter Tight", sans-serif;
}

.bond-button .button-text {
  position: relative;
}

.bond-button .button-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2c2d2c;
  transition: background 0.3s ease;
}

.bond-button:hover .button-text::after {
  background: var(--Primary);
}

.bond-button:hover {
  color: var(--Primary);
}

.bond-button .button-arrow {
  width: 40px;
  height: 24px;
  background: var(--Primary);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.bond-button:hover .button-arrow {
  background: #2c2d2c;
}

.bond-button .button-arrow svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}

.bond-button .button-arrow svg path {
  stroke: #2c2d2c;
  transition: stroke 0.3s ease;
}

.bond-button:hover .button-arrow svg path {
  stroke: #fff;
}

.bond-button--dark {
  color: var(--Black);
}

.bond-button--dark .button-text::after {
  background: var(--Black);
}

.bond-button--dark:hover .button-text::after {
  background: var(--Primary);
}

.bond-button--dark:hover {
  color: var(--Primary);
}
