/*
Theme Name: La Nonnita
Author: SA Publicidad
Author URI: https://www.sapublicidad.cl/
Description: Este diseño ha sido creado por SA Publicidad de manera exclusiva para usted.
Version: 1.0
License: Privada
Tags: minimalista, responsive, modern, full width

Este tema tiene una licencia privada y el uso de esta es exclusiva de SA Publicidad.
*/


*{
  padding: 0;
  margin:0;
}

html, body{
    font-family: "Noto Serif", serif;
}

.wrap{
    width: 90%;
    margin:auto;
    max-width: 1300px;
}

/* top-banner */
.top-banner{
    position: absolute;
    width: 100%;
    line-height: 30px;
    padding: 10px 0;
    top:0;
    z-index: 10;
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    border-bottom: solid 1px rgba(255,255,255,.3);
}

@media(max-width:800px){
    .top-banner{
        display: none;
    }
}

.top-banner .wrap{
    justify-content: space-between;
    justify-content: center;
    display: flex;
}

.top-banner .contact-top{
    width: 70%;
}

.top-banner .contact-top ul{
    display: flex;
    list-style-type: none;
    font-size: 15px;
    gap:2%
}

.top-banner .contact-top ul li a{
    display: block;
    text-decoration: none;
    color: #ffffff;
}

.top-banner .right-top{
    width: 30%;
}

.top-banner .right-top ul{
    list-style-type: none;
    display: flex;
    justify-content: right;
    font-size: 15px;
    gap:3%
}

.top-banner .right-top ul li a{
    color: #ffffff;
    text-decoration: none;
    display: block;
    min-width: 30px;
    text-align: center;
}

.top-banner .right-top ul li:last-child a{
    padding: 0 20px;
    border-radius: 10px;
    font-weight: bold;
    position: relative;
    color: #F2A7A7;
}

.top-banner .right-top ul li:last-child a:after{
    content: "";
    position: absolute;
    width: 1px;
    height: 10px;
    background-color: #F2A7A7;
    top:50%;
    transform: translateY(-50%);
    left: 0;
}

/* header */
header{
    position: absolute;
    top:51px;
    width: 100%;
    z-index: 10;
    background-color: #ffffff;
}

@media(max-width:800px){
    header{
        top:0;
    }
}

.stick-hide {
    top:0;
    position: fixed;
    backdrop-filter: blur(3px);
}
.stick-show {
    position: absolute;
}

header .wrap{
    justify-content: space-between;
    justify-content: center;
    display: flex;
    align-items: center;
    gap:5%;
}

header .logo{
    width: 150px;
}

header .logo img{
    width: 100%;
}

/* btn-header nav */
#btn-nav{
	display: none;
}

header label{
	display: none;
}


@media(max-width:800px){
	header{
		position: relative;
	}

	header .wrap{
		justify-content: left;
	}

	header label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:50%;
		transform: translateY(-50%);
		right: 25px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;
		border-radius: 5px;
        background-color: #212121;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: #F2A7A7;
		border-radius: 5px;
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all .3s ease;
	}

	header label span:nth-child(1){
		top:14px;
	}

	header label span:nth-child(2){
		bottom:14px;
	}

	#btn-nav:checked ~ label span:nth-child(1){
		transform: translateX(-50%) rotate(-45deg);
		top:21px;
	}

	#btn-nav:checked ~ label span:nth-child(2){
		transform: translateX(-50%) rotate(45deg);
		top:21px;
	}
}


/* header nav */
header nav{
    flex-grow: 1;
    line-height: 45px;
}

header nav ul{
    display: flex;
    list-style: none;
    justify-content: right;
    gap:3%;
}

header nav ul li a{
    display: block;
    text-decoration: none;
    color: #212121;
    font-size: 16px;
}

header nav ul li:last-child a{
    background-color: #F2A7A7;
    color: #212121;
    padding: 0 20px;
    border-radius: 50px;
    transition:background-color .3s ease;
    position: relative;
}

header nav ul li:last-child a em{
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50px;
    line-height: 20px;
    font-size: 12px;
    background-color: #212121;
    font-style: normal;
    color: #ffffff;
}

header nav ul li:last-child a:hover{
    background-color: #ffffff;
}

@media(max-width:800px){
	nav{
		width: 60%;
		position: absolute;
		background: #ffffff;
		z-index: 999;
		left: 0;
		top:0;
		margin:0 0 0 0;
		transform: translateY(-50%);
		opacity: 0;
		pointer-events: none;
		transition: all .3s ease;
	}

	#btn-nav:checked ~ nav{
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
	}

	header nav ul{
		display: block;
		margin:0 0 0 0;
	}

	header nav ul li a,
	header nav ul li:last-child a{
		display: block;
		padding: 0 20px;
		border-radius: 0;
	}
}


/* home */
.home{
    height: 100vh;
    width: 100%;
    position: relative;
}

.home:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
}

.home .wrap{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100vh;
    max-width: 900px;
    margin:auto;
}

.home .wrap .content-home{
    text-align: center;
    width: 100%;
}

.home .wrap .content-home h1{
    font-family: "Herr Von Muellerhoff", cursive;
    color: #F2A7A7;
    font-size: 55px;
    font-weight: 400;
    margin:100px 0 0 0;
}

.home .wrap .content-home h2{
    font-size: 55px;
    color: #ffffff;
    margin:40px 0;
    font-weight: 300;
    position: relative;
    text-transform: uppercase;
}

.home .wrap .content-home h2:before{
    content: "";
    width: 1px;
    height: 30px;
    background-color: #F2A7A7;
    position: absolute;
    left: 50%;
    top:-30px;
}

.home .wrap .content-home h3{
    font-family: "Raleway", sans-serif;
    color:#ffffff;
    font-weight: 300;
    font-style: italic;
    font-size: 24px;
    position: relative;
    display: inline;
}

@media(max-width:800px){
    .home{
        height: 80vh;
    }
    .home .wrap .content-home h1{
        font-size: 30px;
        margin:50px 0 0 0;
    }
    .home .wrap .content-home h2{
        font-size: 20px;
    }


    .home .wrap .content-home h3{
        font-size: 17px;
    }
}

.home .wrap .content-home h3:before{
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #ffffff;
    left: -50px;
    top:50%
}

.home .wrap .content-home h3:after{
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #ffffff;
    right: -50px;
    top:50%
}

.home .wrap .content-home p a{
    font-family: "Raleway", sans-serif;
    display: inline-block;
    color: #F2A7A7;
    text-decoration: none;
    border:solid 1px #F2A7A7;
    margin:40px 0 0 0;
    line-height: 50px;
    padding: 0 30px;
    transition:background-color .3s ease;
}

.home .wrap .content-home p a:hover{
    background-color: #F2A7A7;
    color: #313131;
}

/* wellcome */
.wellcome{
    padding: 100px 0;
}

.wellcome .wrap{
    display: flex;
    flex-wrap: wrap;
    gap:4%;
    align-items: center;
}

.wellcome .wrap article{
    width: 47%;
}

.wellcome .wrap article:nth-child(2){
    background-color: #f9f9f9;
    padding: 5%;
    width: 39%;
}

.wellcome .wrap article .images{
    display: flex;
    gap:4%;
}

.wellcome .wrap article img{
    width: 50%;
    height: 470px;
    object-fit: cover;
}

.wellcome .wrap article img:nth-child(2){
    transform: translateY(30px);
}

@media(max-width:800px){
    .wellcome .wrap{
        display: block;
    }

    .wellcome .wrap article{
        width: 100%;
    }

    .wellcome .wrap article .images{
        display: block;
        width: 100%;
        gap:5%;
        height: 250px;
    }

    .wellcome .wrap article img:nth-child(2),
    .wellcome .wrap article img{
        transform: none;
        height: 250px;
    }

    .wellcome .wrap article:nth-child(2){
        width: 90%;
        text-align: center;
    }
}

.wellcome .wrap article h2{
    font-size: 50px;
    font-weight: 400;
    font-family: "Herr Von Muellerhoff", cursive;
    color: #F2A7A7;
}

.wellcome .wrap article h3{
    font-size: 30px;
    font-weight: 400;
    color: #212121;
    margin:0 0 20px 0;
    text-transform: uppercase;
}

.wellcome .wrap article p{
    font-weight: 400;
    font-size: 16px;
    font-family: "Raleway", sans-serif;
    line-height: 20px;
    color: #777777;
    line-height: 24px;

}

.wellcome .wrap article p a{
    color: #212121;
    text-decoration: none;
    border:solid 1px #212121;
    padding: 0 40px;
    display: inline-block;
    margin:50px 0 0 0;
    line-height: 45px;
    transition: all .3s ease;
}

.wellcome .wrap article p a:hover{
    background-color: #212121;
    color: #ffffff;
}

/* title-section */
.title-section{
    text-align: center;
    margin:0 0 50px 0;
}
.title-section h2{
    font-family: "Herr Von Muellerhoff", cursive;
    font-weight: 300;
    color: #F2A7A7;
    font-size: 50px;
}
.title-section h3{
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
    margin:0 0 20px 0;
}
.title-section h4{
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    color: #414141;
    max-width: 700px;
    margin:auto;
}

/* services */
.services{
    position: relative;
    padding: 80px 0;
}

.services:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    background-color: #F2A7A750;
    background-image: url(img/lineas-1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    opacity: .2;
    top:0;
}

.services .wrap{
    position: relative;
    z-index: 2;
}

.services .content-services{
    display: flex;
    flex-wrap: wrap;
    gap:2%;

    width: 90%;
    margin:auto;
    max-width: 1300px;
}

.services .content-services article{
    width: 21.5%;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    padding: 1% 1% 30px 1%;
}

@media(max-width:800px){
    .services{
        padding: 40px 0;
    }

    .services .content-services{
        display: block;
    }

    .services .content-services article{
        width: 98%;
        margin:20px auto;
    }
}

.services .content-services article .image{
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.services .content-services article .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.services .content-services article:hover .image img{
    transform: scale(1.1);
}

.services .content-services article h2{
    font-size: 18px;
    margin:20px 0 0 0;
}

.services .content-services article p{
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin:10px 10%;
}

.services .content-services article .divider{
    width: 90%;
    margin:20px auto;
    border-top: dotted 2px #F2A7A7;
    height: 1px;
}

.services .content-services article  button{
    display: block;
    text-decoration: none;
    outline: none;
    border:none;
    cursor: pointer;
    background-color: transparent;
    color: #F2A7A7;
    transition: all .3s ease;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    font-size: 18px;
}

.services .content-services article:hover button{
    color: #313131;
}

/* banner-1 */
.banner-1{
    padding: 100px 0;
}

.banner-1 .wrap{
    display: flex;
    flex-wrap: wrap;
    gap:4%;
    align-items: center;
}

.banner-1 .wrap article{
    width: 47%;
}

.banner-1 .wrap article:nth-child(1){
    background-color: #f9f9f9;
    padding: 5%;
    width: 39%;
}

.banner-1 .wrap article .images{
    display: flex;
    gap:4%;
}

.banner-1 .wrap article img{
    width: 50%;
    height: 470px;
    object-fit: cover;
}

.banner-1 .wrap article img:nth-child(2){
    transform: translateY(30px);
}

@media(max-width:800px){
    .banner-1 .wrap{
        display: block;
    }

    .banner-1 .wrap article{
        width: 100%;
    }

    .banner-1 .wrap article .images{
        display: block;
        width: 100%;
        gap:5%;
        height: 250px;
    }

    .banner-1 .wrap article img:nth-child(2),
    .banner-1 .wrap article img{
        transform: none;
        height: 250px;
    }

    .banner-1 .wrap article:nth-child(1){
        width: 90%;
        text-align: center;
    }
}

.banner-1 .wrap article h2{
    font-size: 50px;
    font-weight: 400;
    font-family: "Herr Von Muellerhoff", cursive;
    color: #F2A7A7;
}

.banner-1 .wrap article h3{
    font-size: 30px;
    font-weight: 400;
    color: #212121;
    margin:0 0 20px 0;
    text-transform: uppercase;
}

.banner-1 .wrap article p{
    font-weight: 400;
    font-size: 16px;
    font-family: "Raleway", sans-serif;
    line-height: 20px;
    color: #777777;
    line-height: 24px;

}

.banner-1 .wrap article p a{
    color: #212121;
    text-decoration: none;
    border:solid 1px #212121;
    padding: 0 40px;
    display: inline-block;
    margin:50px 0 0 0;
    line-height: 45px;
    transition: all .3s ease;
}

.banner-1 .wrap article p a:hover{
    background-color: #212121;
    color: #ffffff;
}

/* banner-2 */
.banner-2{
    background-image: url(img/img1.jpg);
    padding: 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.banner-2:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background-image: url(img/bg-1.jpg);
    opacity: .7;
    backdrop-filter: blur(12px);
    background-size: 100%;
}

.banner-2 h2{
    max-width: 1100px;
    margin:auto;
    font-size: 3em;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.3em;
}

@media(max-width:800px){
    .banner-2{
        background-attachment: scroll;
        padding: 50px 0;
        background-size: 150%;
        background-position: top center;
    }

    .banner-2 h2{
        font-size: 2em;
    }
}

.banner-2 .wrap{
    position: relative;
    z-index: 2;
}

/* news */
.news{
    padding: 80px 0;
}

.news .content-news{
    margin:50px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap:3%;
    max-width: 1100px;
}

.news .content-news article{
    width: 47%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin:20px 0;
    gap:2%;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    align-items: center;
}

@media(max-width:800px){
    .news{
        padding: 40px 0;
    }

    .news .content-news{
        display: block;
    }
    
    .news .content-news article{
        width: 100%;
    }
}

.news .content-news article .image{
    width: 38%;
    height: 250px;
    overflow: hidden;
}

.news .content-news article .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.news .content-news article:hover .image img{
    transform: scale(1.1);
}


.news .content-news article .info{
    width: 56%;
    padding: 20px 2%;
}

.news .content-news article .info h2{
    font-size: 20px;
    font-weight: 400;
    color: #313131;
}

.news .content-news article .info p{
    font-family: "Raleway", sans-serif;
    margin:20px 0;
    line-height: 20px;
    font-size: 14px;
    color: #666666;
}

.news .content-news article .btn-more a{
    display: block;
    text-decoration: none;
    color: #F2A7A7;
    transition: all .3s ease;
}

.news .content-news article:hover .btn-more a{
    color: #313131;
}

.news .content-news article .btn-more a i{
    font-size: 10px;
    transform: translateY(-1px);
    margin:0 0 0 10px;
    transition: margin .3s ease;
}

.news .content-news article .btn-more a:hover i{
    margin:0 0 0 20px;
}


/* page-banner */
.page-banner{
    background: #F2A7A7;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .page-banner h1{
      margin:300px 0 100px 0;
      font-size: 30px;
      color: #212121;
      position: relative;
  }
  
  .page-banner .image{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    z-index: 1;
    opacity: .1;
  }
  
  .page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F2A7A7; 
    mix-blend-mode: color;
  }
  
  .page-banner .image img{
      top: 50%;
      height: auto;
      width: 100%;
      position: absolute;
      transform: translateY(-50%);
  }
  
  @media(max-width:800px){
        .page-banner{
            height: auto;
            padding: 100px 0 30px 0;
        }

      .page-banner h1{
        font-size: 30px;
        margin:0;
      }
      .page-banner .image img{
          width: 120%;
      }
  }
  
  
  
  /* content */
  .content{
      padding: 80px 0 80px 0;
  }
  
  @media(max-width:800px){
      .content{
          padding: 40px 0;
      }
  }
  
  .content input[type="text"],
  .content input[type="email"],
  .content input[type="tel"],
  .content input[type="number"],
  .content input[type="file"],
  .content input[type="date"],
  .content textarea,
  .content select{
      font-family: 'Roboto', sans-serif;
      background-color: #ffffff;
      padding: 8px 2%;
      width: 96%;
      border:solid 1px #f0f0f0;
      border-radius: 5px;
      outline: none;
      resize: none;
      margin:0 0 10px 0;
      font-size: 15px;
      -webkit-appearance: none;
  }
  
  .content select{
      color: #313131;
      cursor: pointer;
  }
  
  .content label{
      font-size: 14px;
      font-weight: bold !important;
      color: #777777 !important;
  }
  
  .content input[type="text"]:focus,
  .content input[type="email"]:focus,
  .content input[type="tel"]:focus,
  .content input[type="number"]:focus,
  .content input[type="date"]:focus,
  .content textarea:focus,
  .content select:focus{
      box-shadow: 0 5px 10px rgba(0,0,0,.1);
      transition: all .3s ease;
  }
  
  .content input[type="text"]::placeholder,
  .content input[type="email"]::placeholder,
  .content input[type="tel"]::placeholder,
  .content input[type="number"]::placeholder,
  .content input[type="date"]::placeholder,
  .content textarea::placeholder{
      color: #313131;
  }
  
  .content input[type="submit"]{
      background-color: #F2A7A7;
      color: #212121;
      border:none;
      outline: none;
      cursor: pointer;
      border-radius: 3px;
      font-size: 15px;
      font-weight: 600;
      padding: 12px 30px;
      margin:0 0 20px 0;
      transition: all .3s ease;
      -webkit-appearance: none;
  }
  
  .content input[type="submit"]:hover,
  .content input[type="submit"]:focus{
      color: #ffffff;
      background-color: #313131;
  }
  
  .not-found{
      padding: 100px 0;
  }
  
  .not-found h2{
      font-size: 100px;
      text-align: center;
      color: #313131;
      font-weight: 900;
  }
  
  .not-found h3{
      font-size: 24px;
      text-align: center;
      color: #313131;
      margin:auto;
      max-width: 500px;
      font-weight: 300;
  }
  
  @media(max-width:800px){
      .not-found{
          padding: 50px 0;
      }
  
      .not-found h2{
          font-size: 50px;
      }
  
      .not-found h3{
          font-size: 17px;
          width: 80%;
      }
  }
  
  
  

/* go-top */
.go-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    opacity: 0; 
    text-align: center;
    border: none;
    z-index: 99;
    color: #ffffff;
    line-height: 50px;
    font-size: 30px;
    transition: opacity 0.5s ease; 
    transform: rotate(-90deg);
}

@media(max-width:800px){
    .go-top-btn{
        display:none;
    }
}
  
.go-top-btn.active {
    opacity: 1;
}
  

.go-top-btn svg {
    cursor: pointer;
    width: 60px;
    height: 60px;
    fill: #A6867B;
}

/* suscribe */
.suscribe{
    background-color: #F2A7A750;
    padding: 100px 0;
    text-align: center;
    background-image: url(img/lineas-2.svg?2);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.suscribe .image{
    width: 200px;
    margin:0 auto 20px auto
}

.suscribe .image img{
    width: 100%;
    mix-blend-mode: multiply;
}

.suscribe h3{
    font-size: 30px;
    font-weight: 400;
    margin:0 0 20px 0
}

.suscribe form{
    background-color: rgba(255,255,255,.7);
    width: 50%;
    margin:auto;
    max-height: 39px;
    overflow: hidden;
    max-width: 500px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.suscribe form input[type="email"]{
    font-family: "Raleway", sans-serif;
    padding: 10px;
    border:none;
    width:55%;
    font-size:15px;
    font-weight:400;
    outline: none;
    background-color: transparent;
}


.suscribe form input[type="submit"]{
    font-family: "Raleway", sans-serif;
    padding: 10px;
    border:none;
    width:40%;
    background-color: #F2A7A7;
    border-radius: 5px;
    cursor: pointer;
    font-size:15px;
    font-weight:400;
    outline: none;
}



@media(max-width:800px){
    .suscribe form{
        max-height: 90px;
        display: block;
        width: 70%;
        padding: 5px;
    }


    .suscribe form input[type="submit"],
    .suscribe form input[type="email"]{
        width: 90%;
        padding: 10px 5%;
    }
}

/* sub-footer */
.sub-footer{
    background-color: #F2A7A750;
    padding: 60px 0;
    border-top:solid 1px rgba(0,0,0,.1)
;}

.sub-footer .wrap{
    display: flex;
    flex-wrap: wrap;
    gap:5%
}

.sub-footer .wrap article{
    width: 26%;
    position: relative;
    padding:0 2%;
}
.sub-footer .wrap article:after{
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: rgba(0,0,0,.1);
    top:0;
    right: -10%;   
}

@media(max-width:800px){
    .sub-footer .wrap article{
        width: 100%;
        text-align: center;
    }

    .sub-footer .wrap article:after{
        display: none;
    }
}


.sub-footer .wrap article:last-child:after{
    display: none;
}

.sub-footer .wrap article h2{
    font-size: 20px;
    font-weight: 400;
    margin:0 0 30px 0;
}

.sub-footer .wrap article p{
    font-size: 15px;
    color: #313131;
    font-family: "Raleway", sans-serif;
    line-height: 28px;
}

.sub-footer .wrap article ul.contact-footer li{
    position: relative;
    font-family: "Raleway", sans-serif;
}

.sub-footer .wrap article ul.contact-footer li:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,.1);
    left: 0;
    bottom: 0;
}

.sub-footer .wrap article ul.contact-footer li:last-child:after{
    display: none;
}

.sub-footer .wrap article ul li{
    list-style-type: none;
}

.sub-footer .wrap article ul li a{
    padding: 10px 0;
    display: block;
    text-decoration: none;
    color: #313131;
}


/* footer */
footer{
    background-color: #F2A7A750;
    padding: 30px 0;
    border-top:solid 1px rgba(0,0,0,.1);
    text-align: center;
    font-size: 16px;
    color: #313131;
    font-weight: 300;
}

footer a{
    text-decoration: none;
    color: #212121;
    font-weight: 600;
}




/* add-to-cart-message */
.add-to-cart-message{
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color:#F2A7A7;
    padding: 20px 20px;
    text-align: center;
    transition: all .3s ease;
    z-index: 99;
  }
  
  .add-to-cart-message i{
    display: inline-block;
    width: 40px;
    border-right: solid 1px #313131;
    margin:0 10px 0 0;
  }
  
  .add-to-cart-message a{
    text-decoration: underline;
    color: #313131;
    font-weight: 900;
  }
  
