

<!--/*=========================== GENERAL COMPONENTS ============================*/-->

:root {
    /*--- Main BG Colors ---*/

    --color-pure-white-primary-bg: #fff;
    --color-black-secondary-bg: #000;

    /*--- Grays --- */

    --color-dark_gray: #2d2d2d;
    --color-very-dark_gray: #282828;
    --color-light_gray: #757575;
    --color-lighter_gray: #bfbfbf;
    --color-tint_gray: #343536;

    /*--- Blacks --- */

    --color-light_black: #0c0c0c;

    /*--- Whites --- */

    --color-shady_white: #d2d2d2;
    --color-gray_white: #eae9e9;

    /*--- More Colors --- */

    --color-temp: #e29b10;
    --color-temp-shade: #f7cc4d;
    --color-temp-light: #fcf2c5;
    --color-temp-lighter: #fdf9e9;
    --color-temp-dark: #b86f0a;
    --color-temp-darker: #401b08;
    --color-temp-sec: #9c530c;

    /*--- RGB's --- */

    --color-rgb-bg-img: linear-gradient(
            to right,
            var(--color-temp-dark),
            var(--color-temp-darker)
    );
    --color-rgb-bg-img-reverse: linear-gradient(
            to right,
            var(--color-temp-darker),
            var(--color-temp-dark)
    );
    --color-rgb-bg-2: rgba(
            var(--color-temp),
            var(--color-temp-darker),
            var(--color-temp-light),
            1
    );
    --color-rgb-bg-3: rgba(
            var(--color-temp-dark),
            var(--color-temp-darker),
            var(--color-temp-light),
            1
    );

    /*--- fonts families ---*/

    --font-family-san-serif_1: "Montserrat", sans-serif;
    --font-family-san-serif_2: "Roboto", sans-serif;

    --font-family-cursive-1: "Charm", sans-serif;
    --font-family-cursive-2: "Tangerine", sans-serif;

    --font-family-serif_1: "cinzel", Serif;

    /*--- Transition --- */

    --transition: all 350ms ease;

    /*--- Opacity --- */

    --opacity-light: 80%;
    --opacity-dim: 95%;

    /*--- Container Widths --- */

    --container-full: 100%;
    --container-width-xlarge: 94%;
    --container-width-large: 90%;
    --container-width-medium: 82%;
    --container-width-small: 76%;

    /*--- Font Scales and Sizes --- */

    /*

      Spacing system (px)
      2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

      Font sizes (px)
      10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

       */

    /*--- Line-Spacing  --- */
    --line-spacing-main: 1;
    --line-spacing-sec: 1.8;

    /*--- Line-Height --- */

    --line-height-p-main: 1.6;
    --line-height-p-sec: 1.8;
    --line-height-h: 1.4;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar,
.nav-search-results::-webkit-scrollbar{
    width: 0.4vw;
    position: absolute;
    right: 0;
}

html::-webkit-scrollbar-track,
.nav-search-results::-webkit-scrollbar-track{
    background: transparent;

}

html::-webkit-scrollbar-thumb,
.nav-search-results::-webkit-scrollbar-thumb{
    background-color: var(--color-lighter_gray);
    opacity: 0.1;
    border-radius: 1rem;
}

html::-webkit-scrollbar-track:hover,
.nav-search-results::-webkit-scrollbar-track:hover{
    background-color: var(--color-lighter_gray);
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: inherit;
}


body {
    position: relative;
    background-color: var(--color-temp-lighter);
    color: var(--color-temp-darker);
    font-family: var(--font-family-serif_1);
    font-weight: 500;
    line-height: var(--line-height-p-main);
    overflow-x: hidden;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*gap: 1rem;*/
}


/*===============PAGE LOADER==============*/

.page-loader{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--color-light_black);

    z-index: 500;

    transition: opacity 0.75s, visibility 0.75s;
}

.page-loader::after{
    content: "";
    width: 10.2rem;
    height: 10.2rem;
    border: 0.2rem solid var(--color-light_gray);
    border-top: 0.2rem dotted var(--color-temp-dark);
    border-right: 0.2rem dashed var(--color-temp-darker);
    border-bottom: 0.2rem dot-dash var(--color-temp-sec);
    border-radius: 50rem;

    animation: loading 0.75s ease infinite;
}

@keyframes loading{
    0%{
        transform: rotate(0turn);
    }
    100%{
        transform: rotate(1turn);
    }
}

.page-loader__img-box{
    position: absolute;
    height: 10rem;
    width: 10rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader__img{
    height: 9rem;
    width: 9rem;

}

.page-loader--hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 2rem;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-family-san-serif_1);
}


.btn,
.btn:link,
.btn:visited {
    text-decoration: none;
    font-size: 1.6rem;
    font-family: var(--font-family-serif_1);
    padding: 1.2rem;
    font-weight: initial;
    color: var(--color-pure-white-primary-bg);
    background-image: linear-gradient(to top left, var(--color-temp-darker), var(--color-light_black));
    width: fit-content;
    height: 8rem;
    cursor: pointer;
    box-shadow: 0 0 0.4rem var(--color-black-secondary-bg);

    display: flex;
    justify-content: center;
    align-items: center;

    transition: var(--transition);
}

.btn:hover,
.btn:active {
    box-shadow: 0 0 1rem var(--color-temp-darker);
}

.btn:hover .btn__wrapper,
.btn:active .btn__wrapper{
    border: 0.01rem solid var(--color-temp-sec);

}

.btn__wrapper{
    border: 0.01rem solid var(--color-temp);
    margin: 0.2rem;
    height: var(--container-full);
    width: var(--container-full);
    padding: 1rem 2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: var(--transition);
}

body,
.section__container,
.section__wrapper,
.section__content{
    display: flex;
    justify-content: center;
    align-items: center;

}

.section__container {
    height: 100vh;
    width: var(--container-full);
}

.section__wrapper{
    flex-direction: column;
}

.section__content{

}

.section-bg__overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--container-full);
    height: var(--container-full);

    z-index: -1;
}

.section__wrapper,
.section__content{
    height: var(--container-full);
    width: var(--container-full);


}

.section__wrapper{
    height: var(--container-width-small);

}

.section-bg__overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--container-full);
    height: var(--container-full);

    z-index: -1;
}


.section__heading {
    width: var(--container-width-small);
    font-family: var(--font-family-cursive-2);
    height: 6rem;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--color-tint_gray);
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    animation-name: moveInUp;
    animation-duration: 1.5s;
}

.about-us-underline-box,
.services-underline-box,
.portfolio-underline-box,
.why-us-underline-box{
    background-color: var(--color-shady_white);
    height: 0.2rem;
}

.about-us-underline-box{
    width: 6rem;

}

.services-underline-box,
.portfolio-underline-box,
.why-us-underline-box{
    width: 8rem;
}

/*<!--============= Btn Up ==============-->*/

.btn-up-link {
    display: none;

    position: fixed;
    right: 2rem;
    bottom: 2rem;
    height: 5rem !important;
    width: 5rem !important;

    padding: 1.4rem !important;
    animation-name: box-scale;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transition: var(--transition);

    z-index: 5;
}

.btn-up-link:hover,
.btn-up-link:active {
}

.chevron-up {
    font-size: 2rem;
}


/*------------ ANIMATIONS ----------------*/

@keyframes box-scale {
    from {
        transform: scale(1);
        box-shadow: 0 0 0.5rem var(--color-light_black);
    }

    25% {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
        box-shadow: 0 0 0.5rem var(--color-light_black);
    }
}

@keyframes img-translate {
    from {
        transform: translateY(-5rem) scale(1.2);
    }

    25% {
        transform: translateY(5rem) scale(1.2);
    }

    50% {
        transform: translateX(5rem) scale(1.2);
    }

    75% {
        transform: translateX(-4rem) scale(1.2);
    }

    to {
        transform: translateY(-5rem) scale(1.2);
    }
}

@keyframes overlay-animation-in {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes moveInLeft {
    0%{
        opacity: 0;
        transform: translateX(-100%);

    }
    80%{
        transform: translateX(2%);

    }
    100%{
        opacity: 1;
        transform: translateX(0);

    }

}

@keyframes moveInRight {
    0%{
        opacity: 0;
        transform: translateX(100%);

    }
    80%{
        transform: translateX(-2%);

    }
    100%{
        opacity: 1;
        transform: translateX(0);

    }

}

@keyframes moveInUp {
    0%{
        opacity: 0;
        transform: translateY(100%);

    }
    100%{
        opacity: 1;
        transform: translateY(0);

    }

}

@keyframes moveDown {

    0%{
        transform: translateY(-2rem);
        transition: ease-in-out;
    }
    100%{
        transform: translateY(0);
    }

}

@keyframes moveUp {

    0%{
        transform: translateY(0);
        transition: ease-in-out;
    }
    100%{
        transform: translateY(1rem);
    }

}

@keyframes popObject {
    0%{
        opacity: 0;
        transform: translateZ(-50rem);

    }
    100%{
        opacity: 1;
        transform: translateZ(0);

    }

}

@keyframes overlay-animation-out {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
    }
}

/*===============Lazy Section LOADING==============*/

.section-hidden{
    opacity: 0.6;
    transform: translateY(8rem);
}

.lazy-section{
    transition: all 300ms ease-in-out;

}

<!--/*=========================== NAV SECTION ============================*/-->

.nav__container{
    position: absolute;
    background-image: linear-gradient(to right, var(--color-light_black), var(--color-temp-darker), var(--color-light_black));
    opacity: 0.98;
    height: fit-content;
    width: var(--container-full);
    box-shadow: 0 0 0.8rem var(--color-black-secondary-bg);

    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;

    z-index: 100;

    animation-name: moveInDown;
    animation-duration: 0.5s;

}

.nav__content{
    position: relative;
    top: 0;
    height: 9rem;
    width: var(--container-width-medium);
    padding: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;

}

.nav-logo__container{
    height: 6rem;
    width: 6rem;
    padding: 0.4rem 0 0 0;

    display: flex;
    justify-content: space-evenly;
    align-items: center;

}

.nav-logo__img{
    height: 7rem;
    width: auto;
    margin: 0;

    animation-name: moveInLeft;
    animation-duration: 1.5s;
}

.main-nav__list{
    height: 6rem;

    display: flex;
    flex-direction: row;

    animation-name: moveInRight;
    animation-duration: 1.5s;
}

.main-nav__list-item{
    height: var(--container-full);
    width: var(--container-full);
    padding: 1rem;

    display: flex;
    justify-content: center;
    align-content: center;
}

.main-nav__link:link,
.main-nav__link:visited{
    height: var(--container-full);
    width: var(--container-full);
    font-size: 1.6rem;
    font-family: var(--font-family-cursive-1);
    color: var(--color-pure-white-primary-bg);
    padding: 1rem;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: var(--transition);
}

.main-nav__link:hover,
.main-nav__link:active{
    color: var(--color-temp-lighter);

}

.nav-link-highlight:link,
.nav-link-highlight:visited{
    color: var(--color-temp-light);

}

/*===== STICKY NAV =====*/

.sticky{
    position: fixed;
    opacity: 0.96;
    box-shadow: 0 0 0.5rem var(--color-light_black);

    animation-name: moveDown;
    animation-duration: 0.5s;
    transition: var(--transition);
}

/*-------------- Mobile Nav ----------------*/

.nav__icons{
    display: none;

}

.menu-toggle__icon-div{
    display: none;
}

.nav__icon,
.nav__icon:visited{
    color: var(--color-temp-light);
    font-size: 4.2rem;

    transition: Var(--transition);
}

.nav__icon:hover,
.nav__icon:active{
    color: var(--color-temp-light);
    cursor: pointer;

}

<!--/*=========================== HERO SECTION ============================*/-->

.hero-section__container{
    background-image: url("../IMAGES/COLLECTION/IMG-027.jpeg");
    background-size: cover;
    background-position: bottom;
}

.hero-section__wrapper{
    /*background-color: maroon;*/
    width: var(--container-width-medium);
    height: var(--container-width-small);

}

.hero-section__content{
    position: relative;
}

.hero__open-text{
    width: var(--container-width-small);
    height: 30rem;
    padding-bottom: 20rem;
    font-family: var(--font-family-cursive-1);
    color: var(--color-temp-light);
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;

    background-image: linear-gradient(to right, var(--color-temp), var(--color-temp-lighter), var(--color-pure-white-primary-bg));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 0.1rem rgb(255, 255, 255);
}

.hero__main-text{
    font-size: 2.4rem;

    animation-name: moveInLeft;
    animation-duration: 1.5s;
}

.hero__sub-text{
    font-size: 1.6rem;

    animation-name: moveInUp;
    animation-duration: 1.5s;
}

.hero--btn{
    position: absolute;
    bottom: 8rem;

    animation-name: moveInUp;
    animation-duration: 1.5s;
}


<!--/*=========================== ABOUT-US SECTION ============================*/-->

.about-us-section__container{
    background-color: var(--color-temp-lighter);

}

.about-us-section__wrapper{

}

.about-us__heading{
    margin-bottom: 4rem;
}

.about-us-section__content{
    width: var(--container-width-medium);
    height: var(--container-width-small);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.about-us-box{
    width: var(--container-width-large);
    height: var(--container-full);
    font-size: 1.8rem;
    font-family: var(--font-family-cursive-1);
    font-weight: 500;

    display: flex;
    justify-content: center;
    align-items: center;

}

.about-us__message-text{
    animation-name: moveInRight;
    animation-duration: 1.5s;
}

.about-us-box--1{

}

.about-us-box__img{
    display: flex;
    justify-content: center;
    align-items: center;

    animation-name: moveInLeft;
    animation-duration: 1.5s;
}

.about-us-img{
    width: var(--container-full);
}


<!--/*=========================== WHY-US SECTION ============================*/-->

.why-us-section__container{
    padding: 10rem 0;
    background-color: var(--color-pure-white-primary-bg);

}

.why-us-section__wrapper{

}

.why-us__heading{

    margin-bottom: 4rem;

}

.why-us-underline-box{

}

.why-us-section__content{
    width: var(--container-width-small);

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: var(--font-family-cursive-1);
    font-size: 1.6rem;
    text-align: center;

}

.why-us__info-box{
    width: var(--container-full);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;

}

.why-us__core-values{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.why-us__core-value{
    height: 26rem;
    max-width: 24rem;
    width: var(--container-full);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.core-value__image-box,
.core-value__image-wrapper{
    height: 12rem;
    width: 12rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0.4rem var(--color-light_black);

    display: flex;
    justify-content: center;
    align-items: center;


}

.core-value__image-box{
    /*margin-bottom: 4rem;*/

}

.core-value__image{
    height: auto;
    width: var(--container-full);
}

.core-value__title{
    /*height: 5rem;*/
    font-size: 1.6rem;
    width: var(--container-full);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    animation-name: moveInUp;
    animation-duration: 1.5s;
}

.core-value__title strong{
    font-size: 1.8rem;
    text-transform: uppercase;

    animation-name: moveInUp;
    animation-duration: 1.5s;
}

<!--/*=========================== SERVICES SECTION ============================*/-->

.services-section__container{
    height: fit-content;
    padding: 10rem 0;
    background-color: var(--color-temp-lighter);

}

.services-section__wrapper{
    padding: 2rem;
    height: fit-content;

}

.services__heading{
    margin-bottom: 4rem;
}

.services-underline-box{

}

.services-section__content{
    height: fit-content;

    animation-name: moveInUp;
    animation-duration: 1.5s;

}

.services-box{
    width: var(--container-width-medium);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;

    position: relative;

    padding-bottom: 14rem;

}

.service-card{
    padding: 4rem;
    width: var(--container-full);
    min-height: 44rem;
    background-color: var(--color-pure-white-primary-bg);
}

.service-card__wrapper{
    font-family: var(--font-family-cursive-1);
    border: 0.1rem solid var(--color-temp);

    width: var(--container-full);
    height: var(--container-full);

    display: flex;
    justify-content: center;
    align-items: center;
    /*gap: 2rem;*/

}

.service-card__info-box{
    margin: 2rem 0 2rem 0;
    width: 70%;
    height: var(--container-width-medium);
    padding: 4rem;
    border-left: 0.1rem solid var(--color-temp);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.service-card__info-box .title{
    text-align: center;
    margin-bottom: 2rem;

}

.title h3{
    font-family: var(--font-family-cursive-1);

}

.service-card__info-box .text{
    font-size: 1.6rem;
}

.service-card__image-box{
    box-shadow: 0 0 0.4rem var(--color-black-secondary-bg);
    height: var(--container-width-medium);
    width: 30rem;
    overflow: hidden;
    margin: 2rem;

}

.service-card__image-box-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;

    height: var(--container-full);
    width: var(--container-full);

}

.service-card__image{
    width: var(--container-full);
    height: auto;
}

.text ul{

}

.text ul li{
    list-style: circle;
}

.services--btn{
    position: absolute;
    bottom: 0;
    right: 0;
}

<!--/*=========================== PORTFOLIO SECTION ============================*/-->

.portfolio-section__container{
    height: fit-content;
    padding: 10rem 0;
    overflow: hidden;
    position: relative;

}

.portfolio-section__wrapper{
    height: fit-content;

}

.portfolio__heading{
    color: var(--color-temp-light);
    margin-bottom: 4rem;
}

.portfolio-underline-box{

}

.portfolio-section__content{
    height: fit-content;
    overflow: hidden !important;
    position: relative;
    width: var(--container-width-medium);
    padding-bottom: 10rem;

}

.hero-section__video-background{
    /*position: absolute;*/
    position: fixed;
    top: 0;
    left: 0;
    width: var(--container-full);
    height: var(--container-full);
    object-fit: cover;

    z-index: -1;
}

.hero-section__bg-overlay {
    background-color: rgba(0, 0, 0, 0.85);

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--container-full);
    height: var(--container-full);

    z-index: -1;
}

.portfolio-gallery{
    padding: 1rem;
    width: var(--container-full);
    height: var(--container-full);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;

    animation-name: moveInUp;
    animation-duration: 1.5s;
}

.portfolio-image__overlay {
    transition: var(--transition);
    background-color: rgba(97, 64, 8, 0.3);
    z-index: 1;

}

.portfolio-gallery__image-box{
    position: relative;
    overflow: hidden;
    max-width: 30rem;
    width: var(--container-full);
    max-height: 30rem;
    height: var(--container-full);

    transition: var(--transition);
}

.portfolio-gallery__image-box:hover .portfolio-image__overlay{
    background-color: rgba(0, 0, 0, 0);

}

.portfolio-gallery__image-box:hover .portfolio-gallery__image{
    transform: scale(1.1);
}

.portfolio-gallery__image{
    max-height: 30rem;
    height: var(--container-full);
    width: var(--container-full);
    transition: var(--transition);

}

.portfolio--btn{
    position: absolute;
    bottom: 0;
    right: 0;
}

/**================= IFRAME-MAP SECTION ==================**/

.map-section__container{
    background-color: var(--color-temp-lighter);

}

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

.map-section__content{
    height: var(--container-width-medium);
    width: var(--container-width-medium);

    display: flex;
    justify-content: center;
    align-items: center;
}

.map-box{
    height: var(--container-full);
    width: var(--container-full);
}

.iframe-map{
    height: var(--container-full);
    width: var(--container-full);
}


/**================= FOOTER ==================**/

.footer-section-container{
    background-color: var(--color-pure-white-primary-bg);
    padding: 4rem;
    font-family: var(--font-family-serif_1);

    width: var(--container-full);
}

.footer-section-content{
    height: var(--container-width-large);
    width: var(--container-full);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;

}

.footer-section__logo{
    width: var(--container-width-medium);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;

    border-bottom: 0.1rem solid var(--color-shady_white);

}

.footer-logo{
    height: 10rem;
}

.footer-main-section{
    width: var(--container-full);
    height: 20rem;

    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-list-div{
    height: var(--container-full);
    width: var(--container-width-medium);
    border-radius: 0.2rem;
    overflow: hidden;
    border-bottom: 0.1rem solid var(--color-shady_white);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-list-div h3{
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--color-temp-darker);
    font-family: var(--font-family-cursive-1);

    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-list{
    height: var(--container-full);
    width: var(--container-full);
    padding: 2rem;
    font-family: var(--font-family-cursive-1);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;

}

.footer-list li a:link,
.footer-list li a:visited,
.footer-list li a,
.footer-list li {
    color: var(--color-temp-darker);
    font-size: 1.6rem;
    font-weight: initial;

}

.footer-list li a:hover,
.footer-list li a:active,
.footer-list li a:hover
{
    border-bottom: 0.1rem solid var(--color-temp-darker);
}

.footer-sub-section{
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.2rem;
    font-family: var(--font-family-cursive-1);
    color: var(--color-temp-darker);

    width: var(--container-width-medium);
    height: 10rem;
    border-radius: 0.2rem;

    transition: var(--transition);
}

.copyright{
    text-align: center;
}

.copyright a:link,
.copyright a:visited{
    color: var(--color-temp-darker);

}

.copyright a:hover,
.copyright a:active{
    color: var(--color-temp-dark);

}

.footer-brandis-logo{
    height: 6rem;
    width: 6rem;

}










