/**

*/
@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=La+Belle+Aurore&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

:root{
    --brand-color-red: #ec2026;
    --brand-color-orange: #f38221;
    --brand-color-blue: #00adef;
    --marquee-width: 80vw;
    --marquee-height: 20vh;
    /* --marquee-elements: 12; */ /* defined with JavaScript */
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

p {
    line-height: 1.5em;
    color: inherit;
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 12px;
}

a{
    text-decoration: none;
    font-weight: 500;
}

a.nav-link{
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.nav-controls a{
    text-transform: uppercase;
    font-size: 14px;
    color: inherit;
}

@media (max-width: 992px)
{
    .navbar-nav{
        margin-top: 20px;
    }
.navbar-nav .nav-item{
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-navbar-nav a.nav-link{
    font-size: 22px;
}
}
@media screen and (min-width: 320px)
{
    p {
    font-size: calc(12px + 4 * ((100vw - 320px) / 1120));
    }
}

.btn {
    border-radius: 30px;
    moz-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #000;
    cursor: pointer;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 13px;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: .07em;
    min-height: 56px;
    min-width: 163px;
    padding: 15px 30px;
    position: relative;
    text-transform: uppercase;
}

.btn, .btn.default {
    transition: all .45s ease-out;
}

.btn.default-000 {
    font-weight: 500;
    color: #000;
    margin-top: 30px;
    background-color: transparent;
}

.btn.default-fff {
    font-weight: 500;
    color: #fff;
    border-color: #fff;
    margin-top: 30px;
    background-color: transparent;
}

.btn.default-fff:hover {
    color: #000;
    background-color: #fff;
}

.btn.default-000:hover {
    color: #fff;
    background-color: #000;
}

.mx-n10{
    margin-left: -30px;
    margin-right: -30px;
}

.bg-hero{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
padding-top: 180px;
padding-bottom: 100px;
}

.bg-hero.overlay{
    position: relative;
    background-color: var(--brand-color-red);
}

.container-row{
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 30px;
}

.element-image{
    position: relative;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-position: 80% 50%;
    background-size: cover;
    height: auto;
}

.notched::after{
    content: none;
}

.notched-helper {
    display: none;
}

@media (min-width: 769px)
{.notched__enabled.notched__outside:after {
    content: "";
    position: absolute;
    right: 0;
    margin-top: -40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 0 40px 40px;
}

.notched__enabled.notched__outside.notched--white:after {
    border-color: #fff #fff #fff transparent;
}

.notched__enabled.notched__outside.notched--middle:after {
    top: 50%;
}

.notched__enabled.notched__outside .notched-helper {
    display: block;
    width: 40px;
    height: 100%;
    right: 0;
    position: absolute;
}

.notched__enabled.notched__outside .notched-helper:before {
    content: "";
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.notched__enabled.notched__outside.notched--white .notched-helper:after, .notched__enabled.notched__outside.notched--white .notched-helper:before {
    background: #fff;
}

.notched__enabled.notched__outside.notched--middle .notched-helper:before {
    height: calc(50% - 40px);
}

.notched__enabled.notched__outside .notched-helper:after {
    content: "";
    width: 100%;
    position: absolute;
    right: 0;
}

.notched__enabled.notched__outside.notched--middle .notched-helper:after {
    height: calc(50% - 40px);
    top: calc(50% + 40px);
}

}
.element-content{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
}

.tag-heading{
    position: relative;
    line-height: 1.2em;
    padding-bottom: 50px;
}

.tag-heading::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 110px;
    height: 2px;
    background: #000;
}

.text-center .tag-heading::after{
    left: 45%;
}

.text-white.tag-heading::after{
    background: #fff;
}

.marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    background-color: #fff;
    color: #eee;
    overflow: hidden;
    position: relative;
  }

  .marquee:before, .marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
  }
  .marquee:before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
  }
  .marquee:after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
  }

  .marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
  }
  /* .marquee-content:hover {
    animation-play-state: paused;
  } */
  @keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
  }

  .marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
    white-space: nowrap;
  }

  @media (max-width: 600px) {
    :root {
      --marquee-height: 16vh;
      --marquee-elements-displayed: 3;
    }
    .marquee:before, .marquee:after { width: 5rem; }
  }

  @media (max-width: 500px) {
    :root {
      --marquee-height: 10vh;
      --marquee-elements-displayed: 3;
    }
    .marquee:before, .marquee:after { width: 5rem; }
  }

  .footer-wrapper .box{
    display: block;
    background: #f2f2f2;
    color: #000;
    padding: 25px;
    width: 100%;
    height: 100%;
  }

  .footer-wrapper .box .title{
    font-size: 22px;
    line-height: 28px;
    padding: 0 0 30px;
    font-weight: 500;
  }

  .footer-wrapper .box p{
margin-bottom: 0px;
word-break: break-all;
font-size: 17px;
min-height: 27px;
  }
