@font-face {
  font-family: 'Gidugu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Gidugu'),
       url('assets/fonts/gidugu-regular.ttf') format('truetype')
}

:root {
    --georgia: 'Georgia', serif;
    --gidugu: 'Gidugu', sans-serif;
    --black: #000005;
    --gray: #f0f4f6;
    --letter-spacing: 1.5px;
    --text: #393939;
    --border: #a3a3a3;
    --nav-link: #494949;
    --section-padding: 100px;
    --transition-time: 0.5s;
    --gray-text: #999999;
}

body {
    font-family: var(--georgia);
    position: relative;
    font-size: 18px;
    color: var(--text);
    line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--gidugu);
    line-height: .833;
    color: var(--black);
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.h-0 {
    height: 0!important;
}

.mb-60 {
    margin-bottom: 60px;
}

.pt-section {
    padding-top: var(--section-padding);
}

.pb-section {
    padding-bottom: var(--section-padding);
}

@media screen and (min-width: 2400px) {
    .large-rel {
        position: relative;
    }
}

.no-over-x {
    overflow-x: hidden;
}

label {
    width: 100%;
    margin-bottom: 8px;
}
.error{
    color:var(--bs-danger);
}

.gray-bg {
    background-color: var(--gray);
}

.white-bg {
    background-color: #FFF;
}

.black-bg {
    background-color: var(--black);
    color: #FFF;
}

.black-bg h2 {
    color: #FFF;
}

.form-control {
    border-color: #FFF;
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 18px;
    outline: none;
}

.select {
    position: relative;
}

.select > svg {
    position: absolute;
    right: 15px;
    top: 17px;
}

.form-control:focus {
    box-shadow: none;
}

.form-control:not(textarea[rows]) {
    height: 50px;
    padding-top: 12px;
    padding-bottom: 12px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    overflow: hidden;
}

.form-control::placeholder {
   font-size: 18px;
}

.hero .form-control {
    background-color: #434343;
    border-color: #434343;
    color: #FFF;
}

.hero .form-control::placeholder {
   color: var(--gray-text);
}

a {
    text-decoration: none;
}

a:hover h2 {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.btn {
    font-family: var(--gidugu);
    text-transform: uppercase;
    font-size: 30px;
    border-radius: 50px;
    transition: var(--transition-time);
}

.btn-black {
    background-color: var(--black);
    border-color: var(--black);
    color: #FFF;
}

.btn-black[type="submit"] {
    border-color: #FFF;
    min-width: 200px;
}

.btn-black:hover {
    background-color: #FFF;
    color: var(--black);
}

.btn-white {
    background-color: #FFF;
    border-color:#FFF;
    color: var(--black);
}

.btn-white.outline {
    border-color: var(--black);
    border-width: 2px;
    padding-left: 45px;
    padding-right: 45px;
}

.btn-white:hover {
    background-color: var(--black);
    color: #FFF;
}

.btn.wide {
    padding-right: 45px;
    padding-left: 45px;
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    font-family: var(--gidugu);
    padding-left: 15px;
    padding-right: 15px;
    
}

nav.black .brand svg:first-child,
nav:not(.black) .brand svg:nth-child(2) {
    display: none;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 36px;
    color: #FFF;
    height: 110px;
}

.black .nav {
    color: var(--black);
}

.nav .brand svg {
    height: 90px;
    max-width: 100%;
}

.nav .brand a {
    opacity: 1;
    transition: var(--transition-time);
}

.nav .brand .hidden {
    opacity: 0;
}

.nav .nav-info {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 15px;
    letter-spacing: var(--letter-spacing);
}

@media screen and (max-width: 575px) {
    .nav .brand {
        display: flex;
    }
    
    .nav .brand,
    .nav .nav-info {
        width: 100%;
        justify-content: center;
    }
}
@media screen and (max-width: 767px){
    .nav .nav-info {
        width: 45%;
    }
}

.nav-info .phone {
    margin-right: 20px;
}

.nav button {
    display: flex;
    align-items: center;
    font-size: 24px;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing);
}

.black .nav button {
    color: var(--black);
}

.nav button > svg{
   margin-right: 5px;
}
.mobile-phone{
    color:inherit;
}

.side_nav {
    --nav-width: 400px;
    --nav-padding: 30px;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: var(--transition-time);
    background-color: #FFF;
    max-width: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.inner-nav {
    padding-top: 15px;
    padding-left: var(--nav-padding);
    padding-right: var(--nav-padding);
    width: var(--nav-width);
    max-width: 100vw;
}

.inner-nav ul {
    list-style: none;
}

.inner-nav > ul {
    padding-left: 0;
}

.inner-nav ul > li {
    padding-top: 10px;
    padding-bottom: 10px;
}

.inner-nav ul > li .accordion-button {
    background-color: transparent;
    box-shadow: none;
    color: inherit;
}

.inner-nav ul > li button,
.inner-nav ul > li a,
.inner-nav ul > li {
    font-size: 16px;
    color: var(--nav-link);
    font-family: var(--georgia);
    text-decoration: none;
}

.inner-nav ul > li:hover > button,
.inner-nav ul > li:hover > a {
    color: var(--black);
}

.inner-nav button {
    border: none;
    background-color: transparent;
    padding: 0;
    
}

.inner-nav .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Hide scrollbar for Chrome, Safari and Opera */
textarea::-webkit-scrollbar,
.side_nav::-webkit-scrollbar {
  display: none;
}

.side_nav.open {
    width: var(--nav-width);
}

.side_nav .close {
   font-family: var(--georgia);
   text-decoration: underline;
   font-size: 14px;
   color: var(--nav-link);
}

.side_nav .close:hover {
   color: var(--black);
}

.split-hero {
    background-color: var(--nav-link);    
}

.hero.tall-md,
.split-hero,
.hero {
    height: 850px;
}

.hero.tall {
    height: 1040px;
}

.hero.tall-md {
    height: 1100px;
}

@media screen and (min-width: 992px) {
    .hero.tall-md {
        height: 850px;        
    }
}

.hero.gray-bg {
    max-height: 740px;
}

.split-hero p,
.hero p {
    line-height: 1.25;
}

.cta {
    height: 465px;
    display: flex;
    align-items: center;
}

.split-hero,
.img-bkgrd,
.cta,
.hero {
    position: relative;  
    color: #FFF;
}

.inner-hero {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.split-hero h1,
.img-bkgrd h4,
.img-bkgrd h2,
.cta h2,
.hero h1 {
    color: #FFF;
}

.img-bkgrd h4 {
    text-transform: uppercase;
    margin-bottom: 0;
}

.cta h1,
.img-bkgrd h1 {
    text-transform: uppercase;
    color: #FFF;
}

.img-bkgrd .title {
    margin-bottom: 80px;
}

.img-bkgrd ul > li {
    color: #FFF;
}

.hero.gray-bg h1,
.hero.gray-bg {
    color: var(--black);
}

.hero .pretitle {
    font-size: 24px;
    text-transform: uppercase;
    font-family: var(--gidugu);
    margin-bottom: 0;
}

.hero .large {
    font-size: clamp(70px, 10vw, 130px);
    text-transform: uppercase;
    line-height: 0.57;
}

.hero h1,
.split-hero h1 {
    font-size: clamp(50px, 5vw, 72px);
    text-transform: uppercase;
}

.split-hero p,
.hero h1 ~ p {
    font-size: clamp(18px, 4vw, 36px);
}

.img-bkgrd > img,
.cta > img,
.hero > .background,
.hero picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

@media screen and (max-width: 768px) {
    .hero.tall {
        height: 1100px;
    }
    
    .hero .pb-section {
        padding-bottom: 40px;
    }
}

.background {
    background-color: var(--black);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.background > svg{
    opacity: 0.1;
    height: 550px;
}

.split-hero {
    --a: 0; 
    background-color: rgb(var(--rgb), var(--a));
}

.split-hero > img {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 0%;
    top: 0;
    left: 0;
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    object-fit: cover;
    z-index: -2;
}

.overlay-lg,
.overlay {
    position: relative;
}

.overlay-lg::before,
.overlay::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--black);
    opacity: .4;
}

@media screen and (min-width: 992px) {
    .split-hero {
        --a: 1;
    }
    
    .split-hero > img {
        z-index: 0;
    }
    
    .split-hero > img {
        max-width: 50%;
        right: 0;
        left: unset;
        border-bottom-right-radius: 0;
        border-top-left-radius: 50%;
        border-bottom-left-radius: 50%;
    }
    
    .overlay-lg::before {
        opacity: 0;
    }
}

.icons {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.icons > div {
    width: 33.3333%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    height: 155px;
}

.icons > div:nth-of-type(2) {
    border-right: 2px solid #FFF;
    border-left: 2px solid #FFF;
}

.icons > div:nth-of-type(4) {
    border-top: 2px solid #FFF;
    
}

.icons > div:nth-of-type(5) {
    border-top: 2px solid #FFF;
    border-left: 2px solid #FFF;
    border-right: 2px solid #FFF;
    
}

.icons > div:nth-of-type(6) {
    border-top: 2px solid #FFF;
    
}

@media screen and (max-width: 768px) {
    .icons >  div {
        width: 50%;
    }
    
    .icons > div:nth-of-type(2) {
        border-right: none;
    }
    
    .icons > div:nth-of-type(3) {
        border-top: 2px solid #FFF;
    }
    
    .icons > div:nth-of-type(4) {
        border-left: 2px solid #FFF;
        
    }
    
    .icons > div:nth-of-type(5) {
        border-left: none;
        border-right: none;
        
    }
    
    .icons > div:nth-of-type(6) {
        border-left: 2px solid #FFF;
        
    }
}

.icons h3 {
    font-size: 30px;
    text-transform: uppercase;
    line-height: .75em;
    width: 100%;
    text-align: center;
}

.icon-content svg,
.icons svg {
    height: 96px;
    width: 96px
}

.icon-content h3 {
    text-transform: uppercase;
}

.text-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
    & .content{
        width: 100%;
        position: relative;
        grid-column: 1 / span 1;
        grid-row: 1 / span 1;
        z-index: 3;
        align-self: end;
        padding-bottom:var(--section-padding);
        & p{
            line-height: 1.25;
            font-size: clamp(18px, 4vw, 36px);
        }
        & h1 {
            font-size: clamp(50px, 5vw, 72px);
            text-transform: uppercase;
        }
        & .large {
            font-size: clamp(70px, 10vw, 130px);
            text-transform: uppercase;
            line-height: 0.57;
        }
        & .pretitle {
            font-size: 24px;
            text-transform: uppercase;
            font-family: var(--gidugu);
            margin-bottom: 0;
        }
    }
    & .hero-picture {
        grid-column: 1 / span 1;
        grid-row: 1 / span 1;
        height: 100vh;
        width: 100%;
        position: relative;
        z-index: 1;
        top: 0;
        background: #000;
        & .bg-image {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover;
            object-position: center;
            position: relative;
            opacity: .7;
        }
        @media (min-width: 576px) {
            height: 600px;
        }
        @media (min-width: 768px) and (orientation:portrait) {
            height: clamp(600px, 80vh, 800px);
        }
        @media (min-width: 992px) and (orientation:landscape) {
            height: 850px;
        }
        @media (min-width: 1200px) {
            height: 850px;
        }
    }
    @media (min-width: 576px) {
        height: 600px;
    }
    @media (min-width: 768px) and (orientation:portrait) {
        height: clamp(600px, 80vh, 800px);
    }
    @media (min-width: 992px) and (orientation:landscape) {
        height: 850px;
    }
    @media (min-width: 1200px) {
        height: 850px;
    }
    &.carousel-container{
        & .hero-picture{
            @media (min-width: 992px) and (orientation:landscape) {
                height: 100vh;
            }
            @media (min-width: 1200px) {
                height: 100vh;
            }
        }
        @media (min-width: 992px) and (orientation:landscape) {
            height: 100vh;
        }
        @media (min-width: 1200px) {
            height: 100vh;
        }
    }
    &.state-grid{
        height: auto;
        & .content{
            padding-top:calc(var(--section-padding) * 2);
            @media (min-width:576px){
                padding-top:0;
            }
        }
        & .hero-picture{
            height: 100%;
            @media (min-width: 576px) {
                height: 1100px;
            }
            @media (min-width: 768px) and (orientation:portrait) {
                height: clamp(600px, 100vh, 1000px);
            }
            @media (min-width: 992px) and (orientation:landscape) {
                height: clamp(600px, 120vh, 1000px);
            }
            @media (min-width: 1200px) {
                height: 100vh;
            }
        }
        @media (min-width: 576px) {
            height: 1100px;
        }
        @media (min-width: 768px) and (orientation:portrait) {
            height: clamp(600px, 100vh, 1000px);
        }
        @media (min-width: 992px) and (orientation:landscape) {
            height: clamp(600px, 120vh, 1000px);
        }
        @media (min-width: 1200px) {
            height: 100vh;
        }
    }
}
.ken-burns{
    position:relative;
}
.ken-burns .carousel-item {
    will-change: transform;
}
.ken-burns .carousel-item img {
    transform: scale(1);
    transition: transform 4.75s linear;
    transition-delay: 0.5s;
    object-fit:cover;
    height:100%;
    width:100%;
}
.ken-burns .carousel-item.active img {
    transform: scale(1.075)
}
/* transform origin utility classes */
/* Slides image to the top right */
.ken-burns-top-right {
    transform-origin: top right;
}
/* slides image to the bottom left */
.ken-burns-bottom-left {
    transform-origin: bottom left;
}
/* etc, etc, etc. */
@media (prefers-reduced-motion: reduce) {
    .ken-burns {
        will-change: opacity;
    }
    /* fallback to an opacity transition */
    .ken-burns .carousel-item img {
        transition: opacity 4.75s linear;
        opacity: 0;
    }
    .ken-burns .carousel-item.active img {
        opacity: 1;
    }
    .ken-burns-{transform origin utilities} {
        transform-origin: unset;
    }
}
a.scroll-down {
  padding-top: 70px;
  display:block;
  z-index:10;
  position:absolute;
  bottom:20px;
  right:40px;
}
.scroll-down span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
#edit-left-video{
    width:100% !important;
    height:250px !important;
    position:relative!important;
    @media (min-width:576px){
        height:400px !important;
    }
    @media (min-width:768px){
        height:500px !important;
    }
}
.icon-tpl{
    color:var(--black);
    & svg{
        height: 64px;
        width: auto;
        margin-bottom:10px;
    }
}
.glide__slide {
    height: inherit;
}

.glide__slide .card {
    border-radius: 10px;
    padding-right: 15px;
    padding-left: 15px;
    justify-content: space-between;
    height: 100%;
}

.glide__slide .card .card-header,
.glide__slide .card .card-footer {
    background-color: transparent;
}

.glide__slide .card .card-header {
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.glide__slide .card .card-header > img {
    width: 145px;
}

.card .card-header > .header-quote {
    font-size: 98px;
    margin-top: .3em;
    line-height: 1;
}

.glide__slide .card .card-footer {
    display: flex;
    align-items: center;
    border-top: none;
    padding-top: 30px;
    padding-bottom: 45px;
}

.glide__arrow {
    width: 60px;
    height: 60px;
    border-color: var(--border);
    border-radius: 60px;
    box-shadow: none;
    border-width: 1px;
}

.glide__arrow:hover {
    border-color: var(--black);
}

.glide__arrow > svg {
    color: var(--black);
    font-size: 30px;
}

.glide__arrow--left {
    left: -5em;
}

.glide__arrow--right {
    right: -5em;
}

@media screen and (max-width: 992px) {
    .glide .glide__arrows {
        position: relative;
        height: 60px;
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .glide__arrow {
        position: relative;
    }
    
    .glide__arrow--left {
        left: 0;
        margin-right: 5px;
    }
    
    .glide__arrow--right {
        right: 0;
        margin-left: 5px;
    }
    
}

.card .card-footer > img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.card .card-footer p {
    margin-bottom: 0;
    font-size: 14px;
}

.card .card-footer p ~ p {
    color: var(--gray-text);
}

.layer {
    position: relative;
    padding-top : 40px;
    padding-right: 0px;
    padding-left: 0px;
}

.layer > img {
    width: 100%;
}

.layer > svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.layer-adjacent {
    padding-top : 60px;
    padding-left: 0;
}

.layer-adjacent .white-bg {
    height: 100%;
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    padding-left: 24px;
}

.layer-adjacent .white-bg.center {
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   padding-left: 0;
}


.layer-adjacent .white-bg.center h2 {
   margin-bottom: 0;
}

.layer-adjacent .white-bg.center .item {
   margin-bottom: 0;
   border-bottom: solid 1px var(--border);
   width: 600px;
   display: flex;
   align-items: center;
   padding-left: 13%;
   padding-top: 15px;
   padding-bottom: 15px;
}


.layer-adjacent .white-bg.center .item:last-child {
   border-bottom: none; 
}

.layer-adjacent .white-bg > div:not(.item) {
    height: 100%;
    max-width: 680px;
}

.bottom-right {
    position: relative;
}


.center-right > .image-container {
    position: relative;
    min-height: 500px;
    
}

.bottom-right img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.center-right img {
    position: absolute;
    right: 0;
}

.split h2,
.bottom-right h2 {
    margin-bottom: 60px;
}

@media screen and (max-width: 1399px) {
    .center-right,
    .bottom-right {
        position: static;
        
    }
   
    .center-right img,
    .bottom-right img {
        position: static;
        max-width: 100%;
    }
}

.overlap {
    position: absolute;
    bottom: 0;
    right: 25px;
    width: 50%;
    display: none;
}

@media screen and (min-width: 1200px) {
    .overlap {
        width: unset;
    }
}

@media screen and (min-width: 768px) {
    .overlap {
        display: block;
    }
}

.form-container {
    background-color: var(--gray);
    height: 660px;
    padding-top: 80px;
    margin-top: -10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding-bottom: var(--section-padding);
}

.form-container h2 {
    color: var(--black);
}

.faq .accordion-header {
    font-size: 30px;
}

@media screen and (min-width: 576px) {
    .faq .accordion-header {
        font-size: 40px;
    }
}

@media screen and (min-width: 992px) {
    .faq .accordion-header {
        font-size: 48px;
    }
}

.faq .accordion-item {
    border-radius: 15px;
    border-color: var(--border);
}

.faq .accordion-item .accordion-button {
    font-size: inherit;
    color: var(--black);
    outline: none;
    box-shadow: none;
    padding-top: 25px;
    padding-bottom: 25px;
    transition: var(--transition-time);
}

.faq .accordion-item .accordion-button.collapsed,
.faq .accordion-item .accordion-button {
    border-radius: 15px;
    border-color: var(--border);
}

.faq .accordion-button:not(.collapsed) {
    background-color: #FFF;
    font-size: inherit;
    color: var(--black);
    padding-bottom: 0;
}

.faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M432%20256c0%2017.69-14.33%2032.01-32%2032.01H256v144c0%2017.69-14.33%2031.99-32%2031.99s-32-14.3-32-31.99v-144H48c-17.67%200-32-14.32-32-32.01s14.33-31.99%2032-31.99H192v-144c0-17.69%2014.33-32.01%2032-32.01s32%2014.32%2032%2032.01v144h144C417.7%20224%20432%20238.3%20432%20256z%22%2F%3E%3C%2Fsvg%3E");
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M400%20288h-352c-17.69%200-32-14.32-32-32.01s14.31-31.99%2032-31.99h352c17.69%200%2032%2014.3%2032%2031.99S417.7%20288%20400%20288z%22%2F%3E%3C%2Fsvg%3E");
}

.faq .accordion-body {
    padding-bottom: 25px;
}

.employee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.employee > img {
    border-radius: 100%;
    width: 100%;
    margin-bottom: 15px;
}

.employee > p {
    font-size: 21px;
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
}

.employee > p ~ p{
    color: var(--gray-text);
}

.jobs h2 {
    margin-bottom: 0;
}

.jobs p: {
    color: var(--text);
}
.jobs p:first-of-type {
    color: var(--gray-text);
}

.claim-review {
    border-radius: 10px;
    justify-content: space-between;
    height: 100%;
    padding: 15px;
    position: relative;
}

.claim-review img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.claim-review .card-header {
   background-color: #FFF;
   border-bottom: none;
   padding: 0;
}

.claim-review .card-body {
    padding: 10px;
}

.claim-review .claim-title {
   font-size: 21px;
   color: var(--black);
}

.claim-review .glightbox::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

ul > li {
    color: var(--black);
}

.article > p:first-of-type {
    color: var(--gray-text);
    margin-bottom:5px;
}

.quote h2,
.article h2 {
    margin-bottom: 0;
}

.quote h2 > span {
    font-size: 21px;
}

footer {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--black);
    font-size: 15px;
}

footer .title,
footer p {
    color: #FFF;
}

footer a,
footer p > small {
    color: #A3A3A3;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    color: #FFF;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

@media screen and (min-width: 576px) {
    footer ul {
        padding: initial;
    }
}

footer > .container > .row > * {
    padding-left: 15px;
    padding-right: 15px;
}

footer .brand {
    margin-bottom: 30px;
}

.footer-brand {
   height: 90px;
   width: 90px;
   margin-bottom: 15px;
}

.contact svg {
    margin-right: 10px;
}

.social {
    margin-right: 5px;
    color: #FFF;
}