/* ==========================================================================
   Maxx Challenger -- Design Tokens & Global Styles
   ========================================================================== */

:root {
  /* Colors */
  --clr-white: #FFFFFF;
  --clr-black: #000000;
  --clr-green: #7DDB22;
  --clr-light-gray: #F0F0F0;
  --clr-border-gray: #E4E2E3;
  --clr-star-gold: #FBB102;
  --clr-dark: #0B0B0B;
  --clr-medium-gray: #C4C6CC;

  /* Fonts */
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Poppins', sans-serif;

  /* Container */
  --container-max: 1480px;
  --container-padding: 0 20px;
}
body {
  overflow-x: hidden;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-secondary);
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr-black);
  background-color: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin: 0;
  line-height: 1.3;
}

h1, .h1 {
  font-size: 62px;
}
h2, .h2 {
  font-size: 55px;
}
h3, .h3 {
  font-size: 24px;
}

p {
  margin: 0 0 1em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, background-color 0.3s ease;
}

ul, ol {
  margin: 20px;
  padding: 0;
  list-style: none;
}
section.flexible-section {
    padding-top: 150px;
    padding-bottom: 150px;
}
section.flexible-section.has-bg-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.section_title span {
  color: var(--clr-green);
}

 section.flexible-section.remove-pt {
  padding-top: 0 !important;
 } 
section.flexible-section.remove-pb {
  padding-bottom: 0 !important;
 } 

/* ==========================================================================
   Container
   ========================================================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 20px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--green {
  background-color: var(--clr-green);
  color: var(--clr-black);
  border: 1px solid var(--clr-green);
}

.btn--green:hover {
  color: var(--clr-green);
  background-color: transparent;
  border-color: var(--clr-green);
}

.btn--black {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

.btn--black:hover {
  background-color: #333;
}

.btn--outline-green {
  background-color: transparent;
  color: var(--clr-black);
  border: 2px solid var(--clr-green);
}

.btn--outline-green:hover {
  background-color: var(--clr-green);
  color: var(--clr-black);
}

/* ==========================================================================
   Utility: Green text highlight
   ========================================================================== */

.text-green,
.highlight-green {
  color: var(--clr-green);
}

/* ==========================================================================
   Hide default header/site elements (Underscores defaults)
   ========================================================================== */

.site-header .site-branding .site-title,
.site-header .site-branding .site-description,
.site-header .main-navigation {
  display: none;
}

/* ==========================================================================
   Site Header (transparent overlay on hero)
   ========================================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 7px 0;
  background: transparent;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .site-branding {
  flex-shrink: 0;
}

.site-header .site-branding .custom-logo {
  width: 220px;
  height: auto;
}

.site-header .header-phone {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--clr-white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}

.site-header .header-phone:hover {
  color: var(--clr-green);
}

.site-header .header-phone svg {
  width: 27px;
  height: 27px;
  fill: var(--clr-green);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
  background-color: var(--clr-white);
  padding: 54px 0 54px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0, 0.03);
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 242px;
  height: auto;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 60px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-black);
  transition: all 0.3s ease-in-out;
}
a.footer-contact-item:hover {
  color: var(--clr-green);
}
.footer-contact-item-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0,0,0, 0.03);
}
.footer-contact-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.footer-contact-item .contact-text.phone_number {
  font-weight: 600;
  line-height: 1.3;
}
.footer-contact-item .contact-text {
  line-height: 1.8;
  font-weight: 400;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(0,0,0, 0.03);
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--clr-black);
}

.footer-social a svg {
  width: 22px;
  height: 22px;
  fill: var(--clr-black);
}

.footer-bottom {
  text-align: center;
  padding: 47px 0 0;
  font-size: 16px;
  color: var(--clr-black);
}

.footer-bottom a {
  color: var(--clr-black);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--clr-green);
}

strong {
  font-weight: 700;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199px) {
   h1, .h1 {
  font-size: 48px;
}
  h2, .h2 {
    font-size: 42px;
  }
  .site-footer {
    padding: 60px 80px 0;
  }
  section.flexible-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .footer-main {
    gap: 20px;
  }
  .footer-logo {
    width: 100%;
  }
  .footer-logo img {
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  h1, .h1 {
  font-size: 40px;
}
  h2, .h2 {
    font-size: 32px;
  }
  .site-header .site-branding .custom-logo {
      width: 120px;
  }
  .site-footer {
    padding: 40px 40px 0;
  }
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: none;
  }
  .footer-contact {
    flex-direction: column;
    gap: 20px;
  }
  section.flexible-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media(max-width: 991px){
	.hero-banner__title br{display: none;}
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
   h1, .h1 {
    font-size: 32px;
  }
  h2, .h2 {
    font-size: 28px;
  }
  .site-header {
    padding: 15px 20px;
  }
  .site-header .site-branding .custom-logo {
    width: 100px;
  }
  .site-header .header-phone {
    font-size: 18px;
  }
  .site-footer {
    padding: 30px 20px 0;
  }
  .footer-logo img {
    max-width: 160px;
  }
  .footer-contact-item {
    font-size: 16px;
  }
  section.flexible-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
	.hero-banner__title br{display: none;}
}
@media (max-width: 575px){
	.site-header .header-phone {
		font-size: 16px;
	}
	.site-header .site-branding .custom-logo {
		width: 70px;
	}
}
	