/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Carter+One&family=Montserrat:wght@100..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(353, 93%, 50%);
  --first-color-alt: hsl(353, 93%, 46%);
  --first-color-dark: hsl(353, 50%, 15%);
  --title-color: hsl(353, 48%, 12%);
  --text-color: hsl(353, 16%, 32%);
  --text-color-light: hsl(353, 16%, 48%);
  --white-color: hsl(24, 86%, 90%);
  --body-color:#007a3d;
  --container-color: hsl(24, 86%, 92%);
  --shadow-small-img: drop-shadow(0 4px 16px hsla(353, 100%, 8%, .2));
  --shadow-big-img: drop-shadow(0 8px 24px hsla(353, 100%, 8%, .2));

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --second-font: "Carter One", system-ui;
  --biggest-font-size: 2.5rem;
  --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;
  --smaller-font-size: .75rem;

  /*========== 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 (min-width: 1150px) {
  :root {
    --biggest-font-size: 4.25rem;
    --bigger-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button {
  outline: none;
  border: none;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-regular);
  font-family: var(--second-font);
  line-height: 120%;
}

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: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}
.section__title {
  text-align: center;
  font-size: var(--bigger-font-size);
  margin-bottom: 2rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header{
position: fixed;
top: 0;
width: 100%;
left: 0;
background-color: var(--body-color);
transition: box-shadow .4s ;
z-index: var(--z-fixed);
}

.nav{
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.nav__logo{
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-family: var(--second-font);
    color:#fff;
}


.nav__logo img{
    width: 34px;
}

.nav__toggle, 
.nav__close{
display: flex;
font-size: 1.5rem;
color: #fff;
cursor: pointer;

}

/* Navigation for mobile devices */
@media screen  and (max-width: 1150px) {
.nav__menu{
    position:fixed;
    top:-120%;
    left:0;
    background-color:var(--body-color);
    width:100%;
    padding-block:4.5rem 3.5rem;
    box-shadow:0.4px 16px hsla(353,100%,8%,.1);
transition:top .4s;
}


}

.nav__list{
    text-align:center;
    display: flex;
    flex-direction: column;
    row-gap:2rem

}

.nav__link{
    position: relative;
    color:#ffff;
    font-family: var(--second-font);
}

.nav__link:after{
    content: '';
    position: absolute;
    left:0;
    bottom: -.5rem;
    width: 0;
    height: 3px;
    background-color: var(--first-color);
    transition: width .4s;
}

.nav__link:hover::after{
    width: 60%;
    
}

.nav__close{
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}
/* Show menu */
.show-menu{
    top:0;
}

/* Add shadow header */
.shadow-header{
    box-shadow: 0 4px 16px hsla(353, 100%, 8%, .1);
}

/* Active link */


/*=============== HOME ===============*/
.home__container{
  padding-block:2rem 3rem ;
  row-gap: 7rem;
}
.home__data{
  position: relative;
  text-align: center;
}

.home__title{
  font-size: var(--biggest-font-size);
  color: #0a0a0a;
}

.home__title span{
  color:#fff;
}


.home__description{
  margin-block:1rem 2rem;
  color: #fff;
}

.home__sticker-1,
.home__sticker-2,
.home__sticker-3{
  width: 40px;
  position: absolute;
  opacity: .7;
}
.home__sticker-1{
  right: .75rem;
  bottom: 2rem;
  rotate: 30deg;
}

.home__sticker-3{
  left:-.001rem;
  bottom: 20rem;
  rotate: 30deg;
}



.home__sticker-2{
  left: 2.5rem;
  bottom: -4.5rem;
}


.home__images{
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}



.home__ingredient{
  width: 60px;
  filter:var(--shadow-small-img) ;
  position: absolute;
  z-index: 2;
}


.home__board,
.home__pizza{
  filter: var(--shadow-big-img);
}



.home__pizza{
  width: 300px;
  z-index: 2;
}

.home__board{
  width: 300px;
  position: absolute;
  bottom: -.5rem;
  left: -.15rem;

}

.home__leaf-1{
  top: -1rem;
}

.home__pepperoni{
  right:-.5rem;
  top: 2rem;
}

.home__mushroom{
  right: -.5rem;
  bottom: 2rem;
}
.home__olive{
  bottom: -1rem;
}

.home__leaf-2{
left: -.5rem;
bottom: 2rem;
}

.home__tomato{
  left: -.5rem;
  top: 2rem;
}

/*=============== BUTTON ===============*/

.button{
  display: inline-flex;
  color:#fff;
  padding: 1rem 1.5rem;
  justify-content: center;
  border-radius: 4rem;
  font-weight: var(--font-semi-bold);
  background-color:#0a0a0a;
  box-shadow: 0 8px 9px #000;
  transition: background-color .4s;
  border-radius: .75rem;
}


.button:hover{
background-color:#0a0a0a;
}







/*=============== ABOUT ===============*/
.about{
  background-color:var(--body-color);
}
.about__container{
  row-gap: 2rem;
  padding-bottom: 2rem;

}

.about__data{
  position: relative;
  text-align: center;
}
.about__data .section__title{
  margin-bottom: 1rem;
  font-family: var(--second-font);
}
 .a-title{
  color:  hsl(48, 90%, 90%);
}

.about__description{
  margin-bottom: 2rem;
  color: #fff;
}

.about__sticker{
  width: 40px;
  position: absolute;
  right: 0;
  bottom: 2rem;
}

.about__img{
  justify-self: center;
  filter: var(--shadow-big-img);
  width: 320px;

}







/*EVENT*/
.event{
  background-color:#fff;
}
.event__container{
  row-gap: 2rem;
  padding-bottom: 2rem;

}

.event__data{
  position: relative;
  text-align: center;
}
.event__data .section__title{
  margin-bottom: 1rem;
  font-family: var(--second-font);
}

.c-title{
  color:#007a3d;
}

.event__description{
  margin-bottom: 2rem;
  color: #000;
}

.event__sticker{
  width: 40px;
  position: absolute;
  right: 0;
  bottom: 2rem;
}

.event__img{
  justify-self: center;
  filter: var(--shadow-big-img);
  width: 320px;

}





.testimonial h1, h2, h3, h4 {
  font-family: "Unbounded", sans-serif;
  color: hsl(220, 20%, 8%);
}

.testimonial a {
  text-decoration: none;
}

.testimonial img {
  display: block;
  max-width: 100%;
  height: auto;
}



/*=============== TESTIMONIAL CARD ===============*/
.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.testimonial__swiper {
  padding-bottom: 7rem;
}

.testimonial__title {
  font-size:1.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color:#000;
  font-family: var(--second-font);
}

.testimonial__card {
  width: 280px;
  background-color:hsl(48, 80%, 90%);
  padding: 2rem 1.5rem 3rem;
  border-radius: 1.5rem;
  text-align: center;
}

.testimonial__img {
  width: 100px;
  border-radius: 4rem;
  border: 4px solid  hsl(265, 75%, 48%);
  margin: 0 auto .5rem;
}

.testimonial__name {
  font-size:1rem;
  margin-bottom: 2rem;
}

.testimonial__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: .75rem;
}

.testimonial__stars {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.testimonial__stars i {
  font-size: 1rem;
  color: hsl(18, 88%, 58%);
}

.testimonial__number {
  font-size: var(--h3-font-size);
}

/* Swiper class */
.testimonial .swiper-pagination-bullets {
  bottom: 4rem;
}

.testimonial .swiper-pagination-bullet {
  background-color: black;
  transition: opacity .4s;
}

.testimonial .swiper-button-prev {
  left: calc(50% - 3rem);
}

.testimonial .swiper-button-next {
  right: calc(50% - 3rem);
}

.testimonial .swiper-button-prev::after, 
.testimonial .swiper-button-next::after {
  content: "";
}

.testimonial :is(.swiper-button-prev, .swiper-button-next) {
  top: initial;
  bottom: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color:black;
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .testimonial__title {
    font-size: 1.25rem;
  }
  .testimonial__card {
    width: 240px;
    padding-inline: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 640px) {
  .testimonial__swiper {
    max-width: 640px;
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .testimonial__swiper {
    max-width: 760px;
  }
  .testimonial__title {
    margin-bottom: 4rem;
  }
  .testimonial__card {
    width: 330px;
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
  }
  .testimonial__number {
    font-size:.938rem;
  }
}






















































/*=============== POPULAR ===============*/

.popular__container{
  grid-template-columns: 100%;
  row-gap: 3rem;
  padding-bottom:2rem;
}

.popular__data .section__title{
  margin-bottom: 1rem;

}

.popular__description{
  text-align: center;
}

.popular__swiper{
  position: relative;
}

.popular__dish{
  width: 220px;
  filter: var(--shadow-big-img);
  position: absolute;
  top: -.85rem;
  margin-inline: auto;
  inset: 0;
}

.popular__card, 
.popular__img{
  width: 200px;
}

.popular__img{
  transform: scale(.8) rotate(-90deg);
  transition: transform .4s;
}

.popular__title{
  font-size: var(--h3-font-size);
  color: var(--first-color);
  margin-top: 2rem;
  text-align: center;
  opacity: 0;
  transition: opacity .4s;
}



/* Swiper class */
.swiper{
  margin-inline: initial;
  overflow: visible;
}

:is(.swiper-slide-active, .swiper-slide-duplicate-active) .popular__img{
  transform: scale(1) rotate(0);
}


:is(.swiper-slide-active, .swiper-slide-duplicate-active) .popular__title{
  opacity: 1;
}

/*=============== RECIPE ===============*/
.recipe{
  background-color:var(--body-color);
}

.recipe__container{
  padding: 2rem ;
  padding-bottom: 2rem;
}

.recipe .section__title{
  font-family: var(--second-font);
  color:#fff;
}

.recipe__image{
  width: 250px;
  filter: var(--shadow-small-img);
  border-radius:10px;
  place-self:center;
}
.recipe__name{
  font-size: var(--normal-font-size);
  margin-bottom: .25rem;
  font-family: var(--second-font);
  color: #fff;
}

.recipe__description{
font-size: var(--small-font-size);
color: #fff;

}

.recipe__ingredient{
  display: flex;
  align-items: center;
  column-gap: .75rem;
}

.recipe__img{
  width: 320px;
  justify-self: center;
  filter: var(--shadow-big-img);

}



/*=============== PRODUCTS ===============*/


.products__container{
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 1.5rem;
  padding-top: 3.5rem;
}

.products .section__title{
  color:var(--container-color);
  font-family: var(--second-font);
}

.products__card{
  position: relative;
  background-color: var(--container-color);
  padding: 5rem .75rem 1.25rem .75rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px hsla(353, 100%, 8%, .1);
  font-weight: 700;
}

.products__img{
  width: 120px;
  position: absolute;
  top: -3.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  filter: var(--shadow-small-img);
  transition: transform .4s;
}

.products__name{
  font-size: var(--h3-font-size);
  margin: .5rem;
  color: #000;
  font-weight: 1000ss;
}

.products__price{
  color: var(--first-color);
  line-height: 120%;
  font-family: var(--second-font);
  font-size: var(--h1-font-size);
}

.products__button{
  position: absolute;
  right: .75rem;
  bottom: 1.25rem;
  background-color:black;
  color: var(--white-color);
  padding: 4px;
  border-radius: .5rem;
  font-size: 1.5rem;
  display: inline-flex;
  box-shadow: 0 4px 16px hsla(353, 100%, 40%, .4);
  cursor: pointer;
  transition: background-color .4s;
}

.products__button:hover{
  background-color: var(--first-color-alt);
}
.products__card:hover .products__img{
  transform: translateY(-.5rem)
}










/*=============== CONTACT ===============*/
.contact__container{
  position: relative;
  background-color:#0a0a0a;
  padding-top: 3.5rem;
  border-radius: 3rem;
  overflow: hidden;
  row-gap: 3rem;

}


.highlight{
  color: hsl(30, 100%, 58%);
  font-weight: 700;
}
.contact__container .section__title{
  font-family: var(--second-font);
}

.contact__container .section__title,
.contact__title,
.contact__address{
  color:#fff;
}

.contact__info{
  row-gap: 2rem;
  text-align: center;
}

.contact__title{
  margin-bottom: 1rem;
  font-family: var(--second-font);
}

.contact__social{
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}


.contact__social-link{
  font-size: 1.5rem;
  color: hsl(30, 100%, 58%);
  transition: transform .4s;
}

.contact__social-link:hover{
  transform: translateY(-.25rem);
}

.contact__address{
  font-style: normal;
}



.contact__map{
  color: var(--first-color);
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  margin-top: .5rem;
  font-size: 1rem;
}

.contact__map span{
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
}

.contact__image{
justify-self: center;
}

.contact__img{
  width: 300px;
}
.contact__sticker-1,
.contact__sticker-2,
.contact__sticker-3{
  width: 40px;
  position: absolute;
  opacity: .7;
}

.contact__sticker-1{
  top: 8rem;
  left: 1.5rem;
}


.contact__sticker-2{
  right: 1.5rem;
  bottom: 23rem;
}

.contact__sticker-3{
  left: 2rem;
  bottom: 6rem;
}















/*=============== FOOTER ===============*/
.footer{
  padding-block: 4rem 2rem;
}

.footer__container,
.footer__content{
  row-gap: 3rem;
}

.footer__logo{
  justify-self:center;
  font-size: var(--h1-font-size);
  font-family: var(--second-font);
  color:#fff;
}

.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  font-family: var(--second-font);
  color: #fff;
}

.footer__social,
.footer__pay,
.footer__form{
  display: flex;
  column-gap: 1rem;
}

.footer__social-link{
  font-size: 1.5rem;
  color: #000;
  transform: transform .4s;
}





.footer__social-link:hover{
  transform: translateY(-.25rem);
}


.footer__pay-img{
  width: 30px;
  filter: var(--shadow-small-img);
}


.footer__form{
  padding: .5rem;
  background-color: var(--container-color);
  box-shadow: 0 4px 16px hsla(353, 100%, 8%, .1);
  border-radius:4rem
}

.footer__input{
  width: 100%;
background-color: transparent;
padding-left: .75rem;
color: var(--title-color);
font-weight: var(--font-semi-bold);
}

::placeholder{
  color: var(--text-color);
}
.footer__button{
  padding-block: .75rem;
  cursor: pointer;
  border-radius: 2rem;
  background-color:hsl(353, 93%, 50%);
}

.footer__policy{
  display: flex;
  column-gap: 2rem;
  justify-content: center;
  margin-top: 5rem;
}

.footer__link{
  font-size: var(--small-font-size);
  color: #fff;
}
.whatsapp{
  color: green;
}

.footer__copy{
  display: block;
  margin-top: 2rem;
  text-align: center;
  color: #fff;
  font-size: var(--small-font-size);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background-color: hsl(24, 32%, 75%);
}
::-webkit-scrollbar-thumb{
  background-color:hsl(24, 32%, 65%)
}

::-webkit-scrollbar-thumb:hover{
  background-color:hsl(24, 32%, 55%)
}


/*=============== SCROLL UP ===============*/

.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(353, 100%, 8%, .2);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  border-radius: .5rem;
  z-index: var(--z-tooltip);
  transform: bottom .4s, transform .4s;
}
/* Show Scroll Up */
.scrollup:hover{
  transform: translateY(-.5rem);
}


.show-scroll{
  bottom:3rem ;
}





/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width:320px){
  .container{
    margin-inline: 1rem ;
  }

.products__container{
  grid-template-columns: 150px;
  justify-content: center;

}




.footer__form{
  background-color: transparent;
  box-shadow: none;
  flex-direction: column;
  row-gap: 1rem;
  padding: 0;
}


.footer__input{
  background-color: var(--container-color);
  box-shadow: 0 4px 16px hsla(353, 100%, 8%, .1);
  padding: .75rem 1rem;
  border-radius: 4rem;
}










}

/* For medium devices */


@media screen and (min-width:576px){

  .home__container,
  .about__container,
  .popular__container,
  .recipe__container{
    grid-template-columns: 380px;
    justify-content: center;
  }

  .products__container{
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
  }



  .contact__container{
    width: 450px;
    margin-inline: auto;

  }

  .footer__form{
    width: 360px;
  }


}




@media screen and (min-width:768px){

.popular__swiper{
  width: 600px;
  overflow-x: clip;
  justify-self: center;
}



.products__container{
  grid-template-columns: repeat(3, 160px);
}

.footer__content{
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
}

.footer__content div:nth-child(3){
  grid-column: 1 / 3;
}

.footer__title{
  text-align: center;
}
  

.footer__social,
.footer__pay{
  column-gap: 1.5rem;
}
}

















/* For large devices */

@media screen and (min-width:1150px){


.container{
  margin-inline: auto;
}

.section{
  padding-block: 7rem 2rem;
}

.section__title{
  margin-bottom: 4rem;
}

.nav{
  height: calc(var(--header-height) + 2rem );
}

.nav__toggle,
.nav__close{
  display: none;
}

.nav__list{
  flex-direction: row;
  column-gap: 4rem;
}

.home__container{
  grid-template-columns: 515px 555px;
  column-gap: 3rem;
  align-items: start;
  padding-block: 10rem 4rem;
}

.home__data{
  text-align: initial;
  margin-top: 2rem;
}

.home__description{
  margin-top: 3.5rem;
  padding-right: 6rem;
}




.home__sticker-1,
.home__sticker-2,
.home__sticker-3{
  width: 50px;
}


.home__sticker-1{
  right: 3rem;
  bottom: 0;
  top: 1rem;
}






.home__sticker-2{
  left: 16rem;
  bottom: 3rem;
}


.home__board,
.home__pizza{
  width: 520px;
}



.home__board{
  bottom:-1rem;
}


.home__ingredient{
  width: 100px;
}



.home__leaf-1{
  top: -2rem;
}

.home__pepperoni{
  right: -1rem;
  top: 3.5rem;
}


.home__mushroom{
  right: -1rem;
  bottom: 3.5rem;
}

.home__olive{
  bottom: -2rem;
}

.home__leaf-2{
  left: -1rem;
  bottom: 3.5rem;
}


.home__tomato{
  left: -1rem;
  top: 3.5rem;
}



.about__container{
grid-template-columns: 450px 440px;
align-items: center;
column-gap: 6rem;
}

.about__img{
  order: -1;
  width: 450px;
}



.about__data{
  text-align: initial;
}

.about__data .section__title{
  margin-bottom: 1.5rem;
  text-align: initial;
}



.about__description{
  margin-bottom: 3.5rem;
}

.about__sticker{
  width: 50px;
  right: 6rem;
  bottom: 4rem;

}


.popular__container{
  grid-template-columns: 470px;
row-gap: 5rem;
padding-bottom: 3rem;
}

.popular__data .section__title{
  margin-bottom: 1.5rem;
}


.popular__swiper{
  
  width: 1000px;
}

.popular__card{
  width: 350px;
}
.popular__img{
  width: 350px;
}

.popular__dish{
  width: 390px;
  top: -1.5rem;
}
.popular__title{
  margin-top: 3rem;
  font-size: var(--h2-font-size)
  
}

.recipe__container{
  grid-template-columns: 360px 550px;
  align-items: center;
  column-gap: 6rem;
  padding-bottom: 3rem;
}
.recipe__ingredient{
  column-gap: 1.5rem;

}
.recipe__image{
  width: 80px;
}

.recipe__name{
  font-size: var(--h3-font-size);
}

.recipe__description{
  font-size: var(--normal-font-size);
}


.recipe__img{
  width: 550px;
}


.products__container{
grid-template-columns: repeat(3, 250px);
gap: 7.5rem 4rem;


}



.products__card{
  padding: 10rem 1.5rem 1.5rem;
  border-radius: 2rem;

}

.products__img{
  width: 200px;
  top: -4rem;
}


.products__name{
  font-size: var(--h2-font-size);

}

.products__button{
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 6px;
}



.contact__container{
width: initial;
grid-template-columns: 370px 350px;
justify-content: center;
column-gap: 6rem;
  background-color: #000;
  border-radius: 4rem;

}

.contact__img{
  width: 400px;
}

.contact__image{
  order: -1;
}

.contact__info,
.contact__data .section__title{
  text-align: center;
}

.contact__data{
  margin-top: 2rem;

}

.contact__info{
  grid-template-columns: repeat(2, max-content);
}


.contact__title{
  font-size: var(--h2-font-size);

}

.contact__social{
  justify-content: initial;
}

.contact__sticker-1,
.contact__sticker-3,
.contact__sticker-2{
  width: 50px;
}

.contact__sticker-1{
  left: 4rem;
}

.contact__sticker-2{
  right: 4rem;
  top: 8rem;
  bottom: 0;
}
.contact__sticker-3{
  left: 10rem;
  bottom: 4rem;
}


.footer{
  padding-bottom: 3rem;
}


.footer__content{
  grid-template-columns: repeat(3, 1fr);
}


.footer__content div:nth-child(3){
 grid-column: initial;


}


.footer__content div:nth-child(2){
  order: 1;
  justify-self: end;
}



.footer__content div:nth-child(1){
  justify-self: start;
}


.scrollup{
  right: 3rem;
}


.event__container{
grid-template-columns: 450px 440px;
align-items: center;
column-gap: 6rem;
}

.event__img{
  order: -1;
  width: 450px;
}



.event__data{
  text-align: initial;
}

.event__data .section__title{
  margin-bottom: 1.5rem;
  text-align: initial;
}



.event__description{
  margin-bottom: 3.5rem;
}

.about__sticker{
  width: 50px;
  right: 6rem;
  bottom: 4rem;

}






}


