@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=Cairo:wght@200..1000&family=Jomhuria&family=Lobster&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --header-height: 10rem;

    --first-color: hsl(358, 54%, 48%);
    --first-color-alt: hsl(358, 54%, 46%);
    --first-color-light: hsl(358, 50%, 58%);
    --title-color: hsl(34, 8%, 16%);
    --text-color: hsl(34, 8%, 40%);
    --white-color: hsl(34, 64%, 98%);
    --gray-color: hsl(34, 8%, 85%);
    --body-color: hsl(34, 100%, 94%);
    --body-color-alt: hsl(34, 70%, 88%);
    --container-color: hsl(34, 32%, 98%);


    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --second-font: "Lora", serif;
    --biggest-font-size: 2rem;
    --bigger-font-size: 1.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (width >= 1150px) {
    :root {
    --biggest-font-size: 3.5rem;
    --bigger-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body,
input,
button {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

body {
    background-color: var(--body-color);
    color: var(--text-color);
}

input,
button {
    border: none;
    outline: none;
}

h1, h2, h3, h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    font-family: var(--second-font);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1120px;
    margin-inline: 1rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding-block: 5rem 1rem;
}

.section__title {
    text-align: center;
    font-size: var(--bigger-font-size);
    margin-bottom: 1rem;
}

.section__title span {
    color: var(--first-color);
}

.section__subtitle {
    display: block;
    text-align: center;
    font: var(--font-semi-bold) var(--small-font-size) var(--second-font);
    color: var(--first-color);
    margin-bottom: .5rem;
}

.main {
    overflow: hidden;
} 

.header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    z-index: var(--z-fixed);
    transition: box-shadow .4s;
    -webkit-transition: box-shadow .4s;
    -moz-transition: box-shadow .4s;
    -ms-transition: box-shadow .4s;
    -o-transition: box-shadow .4s;
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.nav__logo {
    width: 32px;
    height: 32px;
    font-family: var(--second-font);
    font-size: var(--h2-font-size);
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav__list {
    display: flex;
    column-gap: 2rem;
}

.nav__link {
    color: var(--title-color);
    font-weight: var(--font-medium);
}

.nav__link:hover {
    color: var(--first-color);
}
.nav__toggle {
    width: 32px;
    height: 32px;
    background-color: var(--first-color);
    color: var(--white-color);
    border-radius: .5rem;
    display: grid;
    place-items: center;
    cursor: pointer;
}

@media screen and (width <= 1150px) {
    .nav__menu{
        position: fixed;
        top: -120%;
        left: 0;
        background-color: var(--body-color);
        width: 100%;
        box-shadow: 0 0px 8px hsla(0 , 0%, 0%, .15);
        padding-block: 4rem;
        border-radius: 0 0 1rem 1rem;
        -webkit-border-radius: 0 0 1rem 1rem;
        -moz-border-radius: 0 0 1rem 1rem;
        -ms-border-radius: 0 0 1rem 1rem;
        -o-border-radius: 0 0 1rem 1rem;
        transition: top .4s;
        -webkit-transition: top .4s;
        -moz-transition: top .4s;
        -ms-transition: top .4s;
        -o-transition: top .4s;
    }
}

.nav__list{
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.nav__link {
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    transition: color .4s;
    -webkit-transition: color .4s;
    -moz-transition: color .4s;
    -ms-transition: color .4s;
    -o-transition: color .4s;
}

.nav__link:hover {
    color: var(--first-color);
}

.nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    display: inline-flex;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

.show-menu {
    top: 0;
}


@media screen and (width >= 1150px) {
    .container{
        margin-inline: auto;
    }
    .nav__toggle,
    .nav__close {
        display: none;
    }
    .nav__list {
        flex-direction: row;
        column-gap: 4rem;
    }

    .home__container {
        grid-template-columns: 525px 580px;
        align-items: center;
        column-gap: 1rem;
        padding-top: 4rem;
    }
    .home__data {
        text-align: initial;
        margin-bottom: 4rem;
    }
    .home__description {
        margin: 1rem 3.5rem 3.5rem 0;
    }
    .home__flower-1 {
        width: 30px;
        top: -2.5rem;
        left: 1.5rem;
    }
    .home__flower-2 {
        width: 30px;
        left: 17rem;
        bottom: -3rem;
    }
    .home__leaf-1 {
        width: 40px;
        top:.5rem;
        right: 2.5rem;
    }
    .home__leaf-2 {
        width: 40px;
        top: initial;
        left: 2.5rem;
        bottom: -6rem;
    }
    .home__text {
        font-size: 17rem;
        top: -8rem;
    }
    .home__blob {
        width: 580px;
        height: 580px;
    }
    .home__img-1{
        width: 460px;
        left: -5rem;
        bottom: 5rem;
    }
    .home__img-2 {
        width: 240px;
        top: 1rem;
        left: 4rem;
    }
    .home__img-3 {
        width: 180px;
        top: 10.5rem;
        right: 5.5rem;
    }
    .home__img-4 {
        width: 120px;
        top: 3rem;
        right: 8rem;
    }
    .home__img-5 {
        width: 100px;
        right: 2rem;
        bottom: 11rem;
    }
    .home__img-6 {
        width: 300px;
        right: 8rem;
        bottom: -4rem;
    }
    .home__flower-3 {
        width: 30px;
        right:  6.5rem;
    }
    .home__flower-4 {
        width: 30px;
        left: 1rem;
        bottom: 1.5rem;

    }
    .home__leaf-3 {
        width: 35px;
        bottom: 2.5rem;
    }
    .about__container {
        grid-template-columns: 350px 530px;
        column-gap: 13rem;
        align-items: center;
        padding-block: 2rem 5rem;
    }

    .about__data {
        order: 1;
        text-align: initial;
    }
    .about__data :is(.section__title, .section__subtitle){
        text-align: initial;
    }

    .about__description {
        margin-bottom: 3.5rem;
    }
    .about__flower-1 {
        width: 30px;
        right: 9rem;
    }
    .about__flower-2 {
        width: 30px;
        left: 0;
        bottom: -5rem;
    }
    .about__leaf {
        width: 40px;
        top: 0;
        bottom: 0;
        margin-block: auto;
    }
    .about__text {
        font-size: 17rem;
        white-space: nowrap;
        bottom: -9rem;
        left: -1.5rem;
    }

    .about__blob {
        width: 350px;
        height: 560px;
        margin-left: 0;
    }
    .about__img {
        width: 420px;
        right: -6rem;
    }
    .menu__buttons {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .menu__button {
        padding: 0.4rem 1rem;
        font-size: var(--small-font-size);
        min-width: 60px;
        white-space: nowrap;
    }

    .menu__cards {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 1rem;
        padding: 0 1rem;
    }

    .new__container{
        grid-template-columns: 460px 350px;
        align-items: center;
        column-gap: 13rem;
        padding-block: 2rem 7rem;
    }

    .new__data,
    .new__data :is(.section__title,.section__subtitle){
        text-align: initial;
    }

    .new__flower-1{
        width: 30px;
        top: -5rem;
    }

    .new__flower-2{
        width: 30px;
        left: initial;
        right: 8rem;
        bottom: -4rem;
    }

    .new__leaf-1{
        width: 40px;
        top: -5.5rem;
        right: 4rem;
    }

    .new__leaf-2{
        width: 35px;
        bottom: -7rem;
        left: 1rem;
    }

    .new__text-1{
        font-size: 17rem;
        white-space: nowrap;
        bottom: -15rem;
        left: -2.5rem;
    }

    .new__blob{
        width: 350px;
        height: 560px;
        margin-left: 0;
    }

    .new__img-1{
        max-width: initial;
        width: 500px;
        bottom: -1.5rem;
    }

    .new__img-2{
        max-width: initial;
        width: 380px;
        top: 3.5rem;
    }

    .new__img-3{
        width: 350px;
        top: -3.5rem;
        right: 3rem;
    }

    .new__img-4{
        width: 90px;
        top: 15.5rem;
        right: 1rem;
    }

    .new__img-5{
        width: 90px;
        right: 4rem;
    }

    .new__flower-3{
        width: 30px;
        top: -3rem;
        right: .5rem;
    }

    .new__flower-4{
        width: 30px;
        bottom: -5rem;
    }

    .new__leaf-3{
        width: 35px;
        top: 21rem;
        left: -6rem;
    }

    .new__text-2{
        font-size: 9rem;
        white-space: nowrap;
        left: -12rem;
        left: -6rem;
        top: -4rem;
    }
}


.home__container {
    padding-top: 1.5rem;
    row-gap: 3rem;
}

.home__data {
    position: relative;
    text-align: center;

}

.home__title {
    font-size: var(--biggest-font-size);
}

.home__title span {
    color: var(--first-color);
}

.home__description {
    margin-block: 1rem 2rem;
}

.home__data img,
.home__text {
    position: absolute;

}

.home__flower-1{
    width: 20px;
    top: -1.5rem;
    left: 4rem;
}

.home__flower-2{
    width: 20px;
    left: 1.25rem;
    bottom: 3rem;
}

.home__leaf-1{
    width: 30px;
    top: 0;
    right: 0;
}

.home__leaf-2{
    width: 30px;
    left: 4rem;
    bottom: -2rem;
}

.home__text {
    left: 0;
    top: -1.75rem;
    font-size: 12rem;
    font-weight: var(--font-medium);
    color: var(--body-color-alt);
    z-index: -1;
}

.home__images {
    position: relative;
    justify-self: center;
}

.home__blob {
    width: 300px;
    height: 300px;
    background-color: var(--first-color);
    border-radius: 50%;
    justify-self: center;
}

.home__images img {
    position: absolute;
}

.home__img-1 {
    width: 230px;
    left: 1.5rem;
    bottom: 3rem;
}

.home__img-2 {
    width: 120px;
    top: .5rem;
    left: 2rem;
}

.home__img-3 {
    width: 90px;
    top: 5rem;
    right: 3rem;
}

.home__img-4{
    width: 60px;
    top: 1.25rem;
    right: 4.5rem;
}

.home__img-5{
    width: 50px;
    right: 1.5rem;
    bottom: 7rem;

}

.home__img-6 {
    width: 150px;
    right: 4rem;
    bottom: -.75rem;
}

.home__flower-3 {
    width: 20px;
    top: -1rem;
    right: 1rem;
}

.home__flower-4{
    width: 20px;
    left: 0;
    bottom: 0;
}

.home__leaf-3 {
    width: 25px;
    right: 1rem;
    bottom: 1.5rem;
}

@media screen and (width <= 320px) {
    .home__blob {
        width: 280px;
        height: 280px;
    }
    .about__text {
        font-size: 8rem;
    }
}

@media screen and (width <= 540px) {
    .home__container
    .about__container,
    .new__container{
        grid-template-columns: 400px;
        justify-content: center;
    }
        .menu__cards {
        grid-template-columns: 1fr !important;  /* Single column on mobile */
    }
}

.section{
    padding-block: 7rem 5rem;
}

.section__title {
    font-size: var(--biggest-font-size);
}

.section__subtitle {
    font-size: var(--h3-font-size);
}


.nav {
    height: calc(var(--header-height)+2rem);
}

.button{
    display: inline-flex;
    background-color: var(--first-color);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    padding: 1rem 2rem;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    transition: background-color .4s, box-shadow .4s;
    -webkit-transition: background-color .4s, box-shadow .4s;
    -moz-transition: background-color .4s, box-shadow .4s;
    -ms-transition: background-color .4s, box-shadow .4s;
    -o-transition: background-color .4s, box-shadow .4s;
}

.button:hover {
    background-color: var(--first-color-alt);
    box-shadow: 0 0px 8px hsla(358 , 54%, 24%, .3);
}

.scroll-header {
    box-shadow: 0 2px 16px hsla(0 , 0%, 0%, .15);
}


.about__container {
    row-gap: 3rem;
    padding-bottom: 3rem;
}

.about__data {
    text-align: center;
    position: relative;
}

.about__description {
    margin-bottom: 2rem;
}

.about__data img,
.about__text {
    position: absolute;
}

.about__flower-1 {
    width: 20px;
    top: .5rem;
    right: 2rem;
}
.about__flower-2 {
    width: 20px;
    left: 2rem;
    bottom: 2rem;
}
.about__leaf {
    width: 30px;
    right: 2rem;
    bottom: 4rem;
}

.about__text {
    bottom: -4rem;
    left: 0;
    left:0;
    font-size: 10rem;
    font-weight: var(--font-medium);
    color: var(--body-color-alt);
    z-index: -1;
}

.about__images {
    position: relative;
    justify-self: center;
}

.about__blob {
    width: 200px;
    height: 320px;
    background-color: var(--first-color);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    margin-left: 4rem;
}

.about__img{
    position: absolute;
    max-width: initial;
    width: 230px;
    top: 0;
    bottom: 0;
    margin-block: auto;
    right: 2rem;
}

.menu{
    background-color: var(--first-color);
}

.menu .section__title {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.menu__container {
    position: relative;
    padding-bottom: 3rem;
}

.menu__text-1,
.menu__text-2 {
    position: absolute;
    font-size: 10rem;
    font-weight: var(--font-medium);
    color: var(--first-color-alt);
}

.menu__text-1 {
    top: -4rem;
    left: 0;
}

.menu__text-2 {
    bottom: 4rem;
    right: 0;
}

.menu__tabs,
.menu__content {
    position: relative;
    z-index: 10;
}

.menu__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--white-color);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all .3s;
    min-width: 80px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    
}

.menu__button img {
    width: 30px;
    margin-left: .5rem;
    
}

.menu__button:hover {
    background-color: var(--white-color);
    color: var(--first-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.menu__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 1.5rem;
}

.menu__card {
    background-color: hsla(358 , 54%, 98%, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    transition:background-color .4s;
    -webkit-transition:background-color .4s;
    -moz-transition:background-color .4s;
    -ms-transition:background-color .4s;
    -o-transition:background-color .4s;
}

.menu__blob {
    width: 190px;
    height: 190px;
    background-color: hsla(358 , 54%, 98%, 0.2);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    display: grid;
    place-items: center;
    transition: background-color .4s;
    -webkit-transition: background-color .4s;
    -moz-transition: background-color .4s;
    -ms-transition: background-color .4s;
    -o-transition: background-color .4s;
}

.menu__img {
    width: 120px;
}

.menu__name,
.menu__price,
.menu__stock {
    color: var(--white-color);
    transition: background-color .4s;
    -webkit-transition: background-color .4s;
    -moz-transition: background-color .4s;
    -ms-transition: background-color .4s;
    -o-transition: background-color .4s;
}

.menu__name {
    font-size: var(--h2-font-size);
    text-align: center;
    margin-block: 1.25rem .75rem;
}

.menu__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__price {
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi-bold);
}

.menu__stock {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
}

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

.menu__card:hover .menu__blob { 
    background-color:  hsl(34, 8%, 85%);
}

.menu__card:hover .menu__name {
    color: var(--title-color);
}

.menu__card:hover .menu__price
{
    color: var(--first-color);
}

.menu__card:hover .menu__stock {
    color: var(--text-color);
}

.menu__tabs {
    overflow: initial;
}

.menu__buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:.75rem;
}

.menu__tabs .swiper-slide {
    width: initial;
    height: initial;
}

.menu__tabs .swiper-slide-thumb-active {
    background-color: var(--white-color);
    color:  var(--first-color);
}

.menu__tabs{
    margin-bottom:2rem;
}

.menu__buttons{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:.75rem;
margin-bottom:3rem;
}

.menu__cards{
display:grid;
grid-template-columns:repeat(3,240px);
gap:2rem;
justify-content:center;
}

.menu__tabs .swiper-slide-thumb-active .menu__button {
    background-color: var(--white-color);
    color: var(--first-color);
}
/***************************special section style****************************/

.new__container {
    row-gap: 5rem;
    padding-bottom: 6rem;
}

.new__data {
    text-align: center;
    position: relative;
}

.new__data img,
.new__text-1 {
    position: absolute;
}

.new__flower-1 {
    width: 20px;
    top: 2.5rem;
    left: 0;
}

.new__flower-2{
    width: 20px;
    right: 0rem;
    left: 0rem;
    bottom: -2rem;
    margin-inline: auto;
}

.new__leaf-1{
    width: 30px;
    top: .5rem;
    right: 0;
}

.new__leaf-2{
    width: 30px;
    bottom: -4rem;
    left: .5rem;
}

.new__text-1{
    bottom: -8rem;
    right: 0;
    left: 0;
    font-size: 10rem;
    font-weight: var(--font-medium);
    color: var(--body-color-alt);
    z-index: -1;
}

.new__images{
    position: relative;
    justify-self: center;
}

.new__blob{
    width: 200px;
    height: 320px;
    background-color: var(--first-color);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    margin-left: 4rem;
}

.new__images img,
.new__text-2{
    position: absolute;
}

.new__img-1{
    width: 270px;
    right: 0;
    bottom: 0;
}

.new__img-2{
    width: 200px;
    top: 2rem;
    right: 0;
}

.new__img-3{
    width: 200px;
    top: 9rem;
    right: .5rem;
}

.new__img-4{
    width: 50px;
    top: 9rem;
    right: .5rem;
}

.new__img-5{
    width: 50px;
    right: 2.5rem;
    bottom: .5rem;
}

.new__flower-3{
    width: 20px;
    top: 3rem;
    right: -2rem;
}   

.new__flower-4{
    width: 20px;
    bottom: -2rem;
    left: 6rem;
}

.new__leaf-3{
    width: 25px;
    top: 10rem;
    left: .75rem;
}

.new__text-2{
    bottom: -3rem;
    left: 0;
    font-size: 4rem;
    font-weight: font var(--font-medium);
    color: var(--body-color-alt);
    z-index: -1;
}

.contact {
    background-color: var(--first-color);
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.contact .container .contact_title{
    color: var(--white-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: var(--font-semi-bold);
}

.contact_info{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    margin-top: 3rem;
    gap: 6rem;
    text-align: center;
}

.contact_info .contact_card-title{
    color: var(--white-color);
    font-size: 1rem;
    font-weight: var(--small-font-size);
    margin-bottom: 1rem;
    text-align: center;
}

.contact_info .contact_card-data{
    color: var(--white-color);
    font-size: 14px;
    font-weight: var(--small-font-size);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact_card .contact_icons{
    color: var(--white-color);
    margin-top: .7rem;
    font-size: 1rem;
    display: flex;     
    gap: 1rem; 
}

.contact_card {
    display: flex;
    flex-direction: column;
    max-width: 180px;
}

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

.contact_newslatter-text{
    color: var(--white-color);
    font-size: 1rem;
    font-weight: var(--small-font-size);
    margin-bottom: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.contact_form{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

}

.contact_form {
    padding: .5rem;
    border: none;
    outline: none;
    border-radius: 50px;
    font-size: var(--small-font-size);
    color: var(--body-color-alt);
    border: 2px solid var(--white-color);
    background-color: rgba(255, 255, 255, 0.2);
    width: 500px;
    height: 60px;
}

.contact_form .contact_input{
    flex-grow: 1;
    border: none;
    background-color: transparent;
    outline: none;
    color: var(--white-color);
    font-size: 16px;
}

.contact_input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    
}

.contact_button{
    background-color: #ffffff;
    color: var(--first-color);
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.contact_button:hover{
    background-color: var(--first-color);
    color: var(--white-color);
}

.footer_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
}

.footer_addres h3 {
    margin-left: 10px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.footer_p p {
    font-size: 13px;
    text-align: center;
}
.footer_icons{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 10px;
}

::-webkit-scrollbar{
    width: .6rem;
    background-color: hsla(34, 32%, 75%);
}


::-webkit-scrollbar-thumb{
    background-color: hsla(34, 32%, 65%);
}

::-webkit-scrollbar-thumb:hover{
    background-color: hsla(34, 32%, 55%);
}