@font-face {
  font-family: "Satoshi";
  src: url("/static/fonts/Satoshi-Variable.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
}

:root {
    --accent-color: #C5A788;
    --main-color: #132030;
    --text-color: #0D1C29;
    --light-color: #F8F8F8;
    --text-muted: #0d1c2999;
    --text-color-muted-inverse: #ffffffb3;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-family: "Frank Ruhl Libre", serif;
    font-optical-sizing: auto;
}

body {
    position: relative;
    width: 100svw;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

span,
p,
li,
b {
    font-size: 1rem;
    line-height: 1.5;
    font-family: "Satoshi", sans-serif;
    font-weight: 300;
    color: var(--text-color);
}
b,
strong{
    font-weight: 500;
}

.text-size-xlarge{
    font-size: 1.375rem;
    line-height: 150%;
}
.text-size-large{
    font-size: 1.25rem;
    line-height: 160%;
}
.text-color-muted{
   color: var(--text-muted);
}
.text-color-muted-inverse{
    color: var(--text-color-muted-inverse);
}

ul, ol{
    padding-left: 2rem;
}
li::marker{
    font-weight: 500;
}
li{
    padding: 5px 0;
}
h1{
    font-size: clamp(2.5rem, 4vw, 5rem);
    font-weight: 300;
    line-height: 110%;
}
*.center{
    text-align: center;
    width: 100%;
}
.heading-style-medium{
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 100%;
}
h2 {
    font-size: clamp(2rem, 2.5vw, 3rem);
    font-weight: 300;
    line-height: 110%;
}
.heading-style-h2{
    font-size: clamp(3rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 110%;
}
.home-quote-heading{
    font-size: 3vw;
    color: white;
}
h3{
    font-size: clamp(1.5rem, 1.75vw, 2rem);
    font-weight: 300;
    line-height: 120%;
}
.heading-style-h3{
    font-size: clamp(2rem, 2vw, 3rem);
    font-weight: 300;
    line-height: 120%;
}
h4{
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    font-weight: 300;
    line-height: 120%;
}
.heading-style-h4{
    font-size: clamp(1.5rem, 1.75vw, 2rem);
    font-weight: 300;
    line-height: 120%;
}
.margin-small{
    margin: 1rem;
}
.margin-xsmall{
    margin: 0.5rem;
}
.margin-medium{
    margin: 2rem;
}
.margin-large{
    margin: 3rem;
}
.margin-xlarge{
    margin: 4rem;
}
.margin-bottom{
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}
.max-width-medium{
    width: 100%;
    max-width: 31rem;
}
button {
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
    font-family: "Montserrat", sans-serif;
    height: fit-content;
}
.sticky-contact-button{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    border-radius: 50px;
    padding: 0.8rem 1.25rem;
    background: var(--main-color);
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.button-text{
    display: inline-block;
    width: max-content;
    font-size: 0.75rem;
    font-family: "Montserrat", sans-serif;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
.button-text-line{
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: width 0.2s ease-in-out;
}
.button-text:hover .button-text-line{
    width: 0;
    transition: width 0.2s ease-in-out;
}
.label{
    padding: 0.5rem 1rem;
    background-color: var(--main-color);
    color: white;
    text-transform: uppercase;
    white-space: nowrap;
    align-items: center;
    font-size: 0.75rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.label.inverse{
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff1f;
    background-color: #ffffff0d;
    -webkit-backdrop-filter: blur(2rem);
    backdrop-filter: blur(2rem);
}
.label-title{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-color);
    font-family: "Montserrat", sans-serif;
    width: 100%;
    text-transform: uppercase;

}
.label-line{
    position: s;
    flex: 1;
    height: 1px;
    background: #ffffff1a;
}
.label-line.accent{
    background: #e8eded;
}
.sticky-contact-overlay{
    position: fixed;
    inset: 0;
    background-color:#03080f99;
    z-index: 4;
    display: none;
}
.sticky-contact-overlay.active{
    display: block;
}
.sticky-contact-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    position: fixed;
    right: calc(-100%);
    top: 0;
    z-index: 4;
    background: var(--main-color);
    overflow-y: auto;
    height: 100vh;
    transition: all 0.5s ease-in-out;
}
.sticky-contact-wrapper.active{
    right: 0;
    transition: all 0.5s ease-in-out;
}
.sticky-contact-image-box{
    position: relative;
    background-size: cover;
    background-image: url("/static/img/webp/sticky-contact-image.png");
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem 2rem 2rem;
}
.close-contact{
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    font-size: 12px;
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    background: var(--main-color);
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
}
.sticky-contact-content{
    padding: 2rem;
}
.contact-sticky-a{
    margin: 1rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-sticky-a a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: white;
    font-family: "Satoshi", sans-serif;
    text-decoration: none;
}
footer{
    background: var(--main-color);
    color: white;
}
.footer__wrapper{
    position: relative;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 4rem 1.25rem;
    display: flex;
    gap: 1.25rem;
}
.pre__footer{
    width: 100%;
    background: #ffffff08;
}
.pre__footer__wrapper{
    position: relative;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.pre__footer__wrapper div a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color-muted-inverse);
    font-family: "Montserrat", sans-serif;
}
.pre__footer__wrapper div{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__section{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.75rem;
    flex: 1;
}
.footer__element__link{
    font-size: 0.75rem;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer__section__title{
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 10px;

}
.footer__section__title span{
    font-size: 0.75rem;
    color: var(--accent-color);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}
.footer__section__title-line{
    flex: 1;
    height: 1px;
    background: #ffffff1a;
}

.hover-line{
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.2s ease-in-out;
}
.footer__element__link:hover .hover-line{
    width: 10px;
    transition: width 0.2s ease-in-out;
}
.footer__bottom__wrapper{
    position: relative;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
    border-top: 1px solid #ffffff1a;
}
.footer__bottom__copyright{
    font-size: 0.75rem;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}
.footer__bottom__right{
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.footer__bottom__right a{
    font-size: 0.75rem;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}
.footer__bottom__right a:hover{
    color: var(--accent-color);
}
header {
    position: sticky;
    top: 0;
    z-index: 3;
    background: white;
    border-bottom: 1px solid #e8eded;
}

.header {
    position: relative;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    height: 4rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
}

.mobile__burger__box {
    display: none;
    width: 30px;
    height: 20px;
}

header nav {
    display: flex;
    gap: 2rem;
}

.logo {
    height: 1.75rem;
    width: auto;
    object-fit: contain;
    object-position: left;
}

.logo__link {
    height: 1.75rem;
    text-decoration: none;
    display: block;
}

.pre_header {
    height: 2rem;
    background: var(--main-color);
}

.pre_header__wrapper {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1.25rem;
    width: 100%;
    height: inherit;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 1.25rem;

}

.pre_header__wrapper a {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    gap: 5px;
    font-family: "Montserrat", sans-serif;
    align-items: center;
}

header nav {
    display: flex;
    gap: 30px;
}

.menu__element a,
.menu__select__element span,
.menu__select__elements a {
    position: relative;
    display: block;
    color: var(--main-color);
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 1rem;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;;
    padding: 0.75rem 0 0.75rem 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.menu__element a:hover{
    color: var(--accent-color);
    padding-left: 0;
    padding-right: 1rem;
    transition: all 0.2s ease-in-out;
}
.menu__select__element span:hover{
    color: var(--accent-color);
}
.menu__element a:hover:after{
    width: 0;
    transition: all 0.2s ease-in-out;
}
.menu__select__element span {
    padding-right: 1rem;
}

.menu__select__element span:before {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 3px);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--accent-color);
}

.menu__select__element span:after,
.menu__element a:after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    width: 10px;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.2s ease-in-out;
}

.menu__select__elements {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    z-index: 1;
}

.menu__select__elements a {
    background: var(--main-color);
    color: white;
    padding: 0.75rem 1rem;
}

.menu__select__elements a:before,
.menu__select__elements a:after {
    content: none;
}

.menu__select__elements a:hover {
    background: var(--accent-color);
    color: white;
    padding-left: 1rem;
}

.menu__select__element {
    display: flex;
    gap: 3px;
    align-items: center;
}

.menu__element {
    position: relative;
}
.menu__element:hover .menu__select__elements {
    display: block;
}

.preloader {
    width: 100svw;
    height: 100svh;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    z-index: 99;
    background: var(--main-color);
    overflow: hidden;
    animation: preloader 2s forwards;
}

@keyframes preloader {
    0% {
        top: 0;
    }
    79% {
        top: 0;
    }
    80% {
        top: -40svh;
    }
    99% {
        display: flex;
    }
    100% {
        top: -100svh;
        display: none;
    }
}

.preloader__wrapper {
    display: flex;
    gap: 5px;
}

.preloader-gold,
.preloader-logo-text {
    opacity: 0;

}

.preloader-gold {
    translate: -40px 0;
    animation: l1 1s forwards;
}

.preloader-logo-text {
    translate: 40px 0;
    animation: l2 1s forwards;
}

@keyframes l1 {
    from {
        translate: -40px 0;
        opacity: 0;
    }
    to {
        translate: 0 0;
        opacity: 1;
    }
}

@keyframes l2 {
    from {
        translate: 40px 0;
        opacity: 0;
    }
    to {
        translate: 0 0;
        opacity: 1;
    }
}

main,
.wrapper {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.container-center{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}
.container-center *{
    text-align: center;
}
.container-img{
    display: block;
    overflow: hidden;
}
.padding-top{
    padding-top: 6rem;
}
.padding-bottom {
    padding-bottom: 4rem;
}
.full-light-wrapper{
    background: var(--light-color);
    width: 100%;
    padding: 4rem 0;
}
.index-hero-carousel-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 80px;
    background: var(--main-color);
}

.index-hero-carousel-box {
    display: flex;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    overflow: hidden;
}

.index-hero-carousel {
    display: flex;
    gap: 70px;
    align-items: center;
    animation: scroll 40s linear infinite;
    width: calc(200px * 14);
}

.index-hero-carousel img {
    object-fit: contain;
    object-position: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7))
    }
}
.index-hero-wrapper{
    display: flex;
    flex-direction: column;
}
.container-grid-40{
    display: grid;
    align-items: end;
    grid-column-gap: 4rem;
    grid-template-columns: 1fr 40%;
}
.container-grid-4-col{
    display: grid;
    grid-column-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.container-grid{
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.index-hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.text-meta{
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}
.text-meta.white{
    color: white;
}
.home-services-grid,
.related-article-wrapper,
.result-grid-wrapper{
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.card-padding{
    padding: 2.5rem;
}
.card-padding.medium{
    padding: 3rem;
}
.card-padding.small{
    padding: 1.5rem;
}
.card{
    background-color: var(--light-color);
    transition: background-color .5s;
}
.card.inverse{
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff1f;
    background-color: #ffffff0d;
    -webkit-backdrop-filter: blur(2rem);
    backdrop-filter: blur(2rem);
    color: white;
}

.result-card{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2rem;
    background: var(--light-color);
}
.result-card-title{
    font-size: clamp(2.5rem, 3vw, 3rem);
    font-weight: 300;
    line-height: 100%;
    color: var(--accent-color);
    font-family: "Frank Ruhl Libre", serif;
}
.result-card-subtitle{
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    font-family: "Satoshi", sans-serif;
    margin-bottom: 5px;
}


.section-home-quote,
.section-contact-quote{
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.home-quote-content,
.contact-quote-content{
    background-color: var(--main-color);
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    display: flex;
}
.home-quote-content-inner,
.contact-quote-content-inner{
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 600px;
    display: flex;
}
.contact-quote-content-inner{
    align-items: center;
    text-align: center;
}
.home-quote-image-wrapper,
.contact-quote-image-wrapper{
    aspect-ratio: auto;
    position: relative;
    overflow: hidden;
}
.parallax{
    inset: 0;
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
    will-change: transform;
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1);
    transform-style: preserve-3d;
}
.home-quote-image-content,
.contact-quote-image-content,
.attorney-image-content
{
    flex-direction: row;
    align-items: flex-end;
    padding: 4rem;
    display: flex;
    position: absolute;
    inset: 0;
}
.services-section-item{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    color: var(--text-color);
    font-family: "Frank Ruhl Libre", sans-serif;
    font-weight: 200;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    padding-left: 1rem;
    border-bottom: 1px solid #e8eded;
}
.item-line{
    height: 2px;
    width: 10px;
    background: var(--accent-color);
    transition: all 0.2s ease-in-out;
}
.testimonials-wrapper{
    width: 100%;
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}
.testimonial-box{
    padding: 2rem;
    background: white;
    width: 100%;
    max-width: 300px;
    flex-shrink: 0;
}
.testimonial-box p{
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: 'Satoshi', sans-serif;
    font-style: italic;
}
.testimonial-box img{
    border-radius: 50px;
}
.testimonial-box-name{
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
    font-family: "Frank Ruhl Libre", serif;

}
.contact-quote-content-info{
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 3rem;
}

.contact-quote-content-info a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    color: var(--text-color-muted-inverse);
    font-family: "Frank Ruhl Libre", sans-serif;
}
form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    width: 100%;
}
input,
textarea,
select{
    border: 1px solid #e8eded;
    background-color: var(--main-color);
    color: white;
    font-size: 1rem;
    min-height: 3.5rem;
    padding: 1rem;
    transition: background-color .2s, border .2s;
    font-family: 'Satoshi', sans-serif;
}
textarea{
    min-height: 10rem;
}
input.inverse,
textarea.inverse,
select.inverse{
    border-color: #ffffff1f;
    background-color: #ffffff0d;
    -webkit-backdrop-filter: blur(2rem);
    backdrop-filter: blur(2rem);
}
.button-form{
    background-color: #ead3bc;
    color: var(--main-color);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    outline: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color .2s;
    font-family: 'Montserrat', sans-serif;
}

.related-article-image{
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.related-article-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1rem;
    background: white;
}
.related-article-content .light{
    background: var(--light-color);
}

/*ATTORNEYS PAGE*/
.section-attorneys-attorney-odd{
        grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.attorneys-attorney-image-wrapper{
    aspect-ratio: auto;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}
.attorneys-attorney-content{
    background-color: var(--light-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem;
    display: flex;
}
.attorneys-attorney-content-inner{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 37.5rem;
}
.attorneys-attorney-content-inner h3{
    margin-top: 20px;
}
.personal-contact-wrapper{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: white;
    background: var(--main-color);
    padding: 2rem;
}
/*END ATTORNEYS PAGE*/

@media screen and (max-width: 1120px) {
    .container-grid-4-col {
         grid-template-columns: 1fr 1fr;
    }
    .home-services-grid,
    .related-article-wrapper,
    .result-grid-wrapper{
        grid-template-columns: 1fr 1fr;
    }
    .attorneys-attorney-content{
        padding: 6rem 1rem;
    }
    .attorney-image-content{
        padding: 2rem;
    }
}
@media screen and (max-width: 720px) {
    .section-attorneys-attorney-odd{
        display: flex;
        flex-direction: column;
    }
    .section-attorneys-attorney-odd.invert{
        flex-direction: column-reverse;
    }
    .attorneys-attorney-image-wrapper{
        position: relative;
    }
    main,
    .wrapper {
        padding: 0 0.75rem;
    }

    .header {
        padding: 0 0.75rem;
    }

    .pre_header__wrapper {
        padding: 1rem 0.75rem;
    }

    header nav {
        position: absolute;
        left: 0;
        top: 0;
        display: none;
        flex-direction: column;
        width: 100%;
        height: calc(100svh - 40px);
        background: white;
        padding: 3rem 2rem;
    }

    header nav.active {
        display: flex;
        gap: 10px;
    }

    .mobile__burger__box {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile__burger__line {
        display: block;
        position: relative;
        width: 30px;
        height: 2px;
        background: var(--main-color);
    }

    .mobile__burger__line:before,
    .mobile__burger__line:after {
        content: '';
        position: absolute;
        bottom: 8px;
        width: 30px;
        height: 2px;
        background: var(--main-color);
    }

    .mobile__burger__line.active {
        background: transparent;
    }

    .mobile__burger__line:after {
        top: 8px;
    }

    .mobile__burger__line.active:before,
    .mobile__burger__linea.active:after {
        top: 0;
    }

    .mobile__burger__line.active:after {
        rotate: -45deg;
        translate: 0 -8px;
    }

    .mobile__burger__line.active:before {
        transform: rotate(45deg);
    }
    .footer__wrapper{
        padding: 4rem 0.75rem;
        flex-direction: column;
        gap: 2rem;
    }
    .pre__footer__wrapper{
        flex-direction: column;
        align-items: center;
    }
    .pre__footer__wrapper div{
        flex-direction: column;
        align-items: center;
    }

    .footer__bottom__wrapper{
        padding: 1rem 0.75rem;
        flex-direction: column;
        align-items: center;
    }
    .container-grid-40,
    .container-grid,
    .container-grid-4-col{
        grid-column-gap: .5rem;
        grid-row-gap: 1.5rem;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        display: flex;
    }
    .home-services-grid,
    .related-article-wrapper,
    .result-grid-wrapper{
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        flex-direction: column;
        grid-template-columns: 1fr;
        display: flex;
    }
    .home-quote-content,
    .contact-quote-content,
    .home-quote-image-content,
    .contact-quote-image-content{
         padding: 2rem 1rem;
    }
    .section-home-quote,
    .section-contact-quote{
        flex-direction: column-reverse;
        display: flex;
    }
    .contact-quote-content-info{
        flex-direction: column;
    }
    .padding-top{
        padding-top: 3rem;
    }
}