/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 2.0.0
*/

/* -------- Settings/Foundation ------- */
html{
    font-size: 20px;
}

:root {
  --color-orange: #BD4500;
  --color-navy: #141D25;
  --color-white: #E2D5CD;
  --font-primary: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-secondary: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--color-orange);
    font-weight: 700;
    line-height:120%;
    margin-top:0;
}

h1, h2{
    font-size:1.25rem;
    text-transform: uppercase;
}

.seo-title{
    font-weight:600;
}

.page-title{
    font-size: 4rem;
    font-family: var(--font-primary);
    font-weight: 700;
    line-height:120%;
}

.section-title{
    font-size: 2.8rem;
    font-family: var(--font-primary);
    font-weight: 700;
    line-height:120%;
    margin-top:0;
}

body{
    background-image: url("../img/bg.jpg")
}

a {
    background-color: transparent;
    color: var(--color-orange);
}

a:hover {
    color: var(--color-white);
}

.btn{
    border:0;
    padding: 1rem 2.5rem;
    background-color: var(--color-orange);
    color: var(--color-navy);
    text-transform:uppercase;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0;
    display:inline-block;
}

.btn:hover{
    background-color: var(--color-white);
    color: var(--color-navy);
}

.btn.btn-outline{
    border:.1rem solid var(--color-white);
    background-color: transparent;
    color: var(--color-white);
    padding: .9rem 2.4rem;
}
.btn.btn-outline:hover{
    border:.1rem solid var(--color-orange);
    color: var(--color-orange);
}

.btn.btn-outline.btn-outline-dark{
    border:.1rem solid var(--color-navy);
    color: var(--color-navy);
}

.btn.btn-outline.btn-outline-dark:hover{
    border:.1rem solid var(--color-orange);
    color: var(--color-orange);
}

section {
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1730px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
}

.ptb-reg{
    padding-top:6.11rem;
    padding-bottom:6.11rem;
}

.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
    max-width:100%;
    display:flex;
    justify-content:center;
}

/* ------------- Site Header --------------*/
.site-header{
    padding:3rem 0;
}

.site-header__container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

.site-header__brand {
    width: 100%;
    max-width: 200px;
    display: flex;
    align-items: center;
}

.site-header__logo{
    display: flex;
    align-items: center;
}

.site-header__brand img{
    width:100%;
}

.site-header__nav {
    display: flex;
    align-items: center;
}

.site-header__nav .btn.btn-outline{
    font-size:.9rem;
    padding: .65rem 1.9rem;
}

.site-header__nav-wrap {
    display: flex;
    gap: 30px;
    flex-direction: row;
}

.site-header__menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-direction: row;
    padding:0;
}

.site-header__menu .menu-item{
    display: flex;
    align-items: center;
}

.site-header__menu .menu-item a{
    color: var(--color-white);
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.site-header__menu .menu-item a:hover{
    color: var(--color-orange);
}



/* ---------------Homepage Hero------------ */

.hp-hero__container{
    display:flex;
    gap: 80px;
}

.hp-hero__slider{
    width:100%;
    max-width:50%;
}

.hp-hero .swiper-wrapper{
    margin-bottom:100px;
}

.hp-hero__slide-wrap{
    position:relative;
}

.hp-hero__slide-media {
  width: 100%;
  aspect-ratio: 4 / 2.75;
  overflow: hidden;
}

.hp-hero__slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@supports not (aspect-ratio: 4 / 2.75) {
  .hp-hero__slide-media {
    position: relative;
    padding-top: calc(100% * 2.75 / 4);
  }
  .hp-hero__slide-media img {
    position: absolute;
    inset: 0;
  }
}

.hp-hero__slide-meta{
    background-color: var(--color-navy);
    position: absolute;
    bottom: 0;
    left: 60px;
    width: 100%;
    max-width: 467px;
    padding:50px;
    border-bottom: 3px solid var(--color-white);
    margin-bottom:-100px;
}

.hp-hero__meta-title{
    font-family: var(--font-primary);
    font-size:1rem;
    text-transform:uppercase;
    font-weight:700;
}

.hp-hero__slide-title{
    color: var(--color-orange);
    font-size:.9rem;
    font-weight:600;
    margin-bottom:.35rem;
}

.hp-hero__slide-desc{
    font-size:.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hp-hero__arrows{
    background-color: var(--color-white);
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    z-index: 1;
    margin-bottom: 100px;
}

.hp-hero__arrows .hp-hero__arrow {
    position: static !important;
    margin: 0 !important;
    padding: 28px 0px;
    width: 50px !important;
}
.hp-hero__arrows .hp-hero__arrow:hover {
    background-color: var(--color-orange);
}

.hp-hero__arrows .hp-hero__arrow:after {
    display:none;
}

.hp-hero__content {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.hp-hero__buttons {
    display: flex;
    gap: 1.5rem;
}

/* ---------------Single Column Content------------ */
.single-column-content{
    display:flex;
    color: var(--color-navy);
    text-align:center;
}
.single-column-content__container{
    max-width:1242px;
    background: var(--color-white);
    padding:6.11rem;
}
.single-column-content__support{
    font-size:1.11rem;
    font-weight:600;
}
.single-column-content__body-copy{
    text-align:left;
}

/* ---------------Dynamic Boxes------------ */
.dynamic-boxes{
    display:flex;
}
.dynamic-boxes__container{
    max-width: 1242px;
}
.dynamic-boxes__title-wrap{
    text-align:center;
    display:flex;
    flex-direction:column;
    max-width: calc( 1242px - 6.11rem );
}
.dynamic-boxes__boxes-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content: center;
}
.dynamic-box{
    width:calc( 50% - 15px );
}
.dynamic-boxes__btn-wrap{
    display:flex;
    justify-content:center;
}

/* ---------------Project Slider------------ */

.projects__wrapper {
  display: flex;
  gap: 48px;
  align-items: start;
}

/* Main image and thumbs */
.projects__main-media {
  position: relative;
  width: 100%;
}

.projects__thumbs {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.projects__thumb-slide {
  width: 80px; /* Adjust as needed */
  height: 80px; /* Adjust as needed */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.projects__thumb-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  transition: opacity 0.25s ease;
}

.projects__thumb-slide.swiper-slide-thumb-active::after {
  opacity: 0;
}

.projects__content {
  display: flex;
  flex-direction: column;
}

.projects__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.projects__arrows {
  display: flex;
  gap: 12px;
}

.projects__arrow {
  background: var(--color-orange);
  color: var(--color-navy);
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  position:static !important;
}

.projects__counter {
  font-size: 14px;
  color: var(--color-white);
}

.projects__right, .projects__left{
    max-width:calc( 50% - 24px);
}

.projects__content-slide {
  padding: 16px;
}


