/*
Theme Name: Muebles Ambienta
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.
*/

* {
  font-family: "Roboto", sans-serif;
  padding: 0;
  margin: 0;
}

.wrap {
  max-width: 1500px;
  margin: auto;
  width: 94%;
}

.no-scroll {
  overflow: hidden;
}

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

@media (max-width: 800px) {
  header label {
    position: absolute;
    width: 45px;
    height: 45px;
    top: 20px;
    right: 25px;
    cursor: pointer;
  }

  header label span {
    position: absolute;
    width: 70%;
    height: 2px;
    left: 15%;
    background-color: #212121;
    transition: all 0.3s ease;
  }

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

  header label span:nth-child(2) {
    top: 20px;
  }

  header label span:nth-child(3) {
    top: 33px;
  }

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

  #btn-nav:checked ~ label span:nth-child(2) {
    transform: scale(0);
    top: 20px;
  }

  #btn-nav:checked ~ label span:nth-child(3) {
    transform: rotate(-45deg);
    top: 20px;
  }
}

/* header */
header {
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 12;
  background: #ffffff;
}

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

header .logo {
  width: 200px;
}

header .logo img {
  width: 100%;
}

@media (max-width: 800px) {
  header .logo {
    max-width: 50%;
  }
}

/* nav */
header .wrap > nav {
  width: 60%;
  text-align: center;
}

header .wrap > nav > ul {
  display: flex;
  justify-content: center;
  align-content: center;
  list-style: none;
  gap: 10%;
}



header .wrap > nav > ul > li > a {
	display: block;
	text-decoration: none;
	color: #242c34;
	font-weight: 300;
	line-height: 100px;
	text-transform: uppercase;
	font-size: 15px;
  }
  

@media (max-width: 800px) {
  header .wrap > nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    background-color: #ffffff;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  #btn-nav:checked ~ nav {
    transform: translateX(0);
    opacity: 1;
  }

  header .wrap > nav > ul {
    display: block;
  }

  header .wrap > nav > ul > li {
    display: block;
	position: relative;
  }

  header .wrap > nav > ul > li > a {
    display: block;
    text-align: left;
    line-height: 45px;
    padding: 0 10px;
  }
}
/* sub-nav */
header .wrap > nav > ul > li > ul{
	position: absolute;
	top:80%;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	background-color: #ffffff;
	z-index: 20;
	padding: 20px;
	width: 100%;
	gap:2%;
	position: none;
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}

header .wrap > nav > ul > li:hover > ul{
	pointer-events: all;
	opacity: 1;
}

header .wrap > nav > ul > li > ul > li{
	width: 23%;
	list-style:none;
}

header .wrap > nav > ul > li > ul > li > a{
	display: flex;
	text-decoration: none;
	text-align: left;
	padding: 5px;
	text-decoration: none;
	gap:5%;
	color: #313131;
	align-items: flex-start;
	transition: all .3s ease;
}

header .wrap > nav > ul > li > ul > li > a:hover{
	opacity: .7;
}

header .wrap > nav > ul > li > ul > li > a img{
	width: 70px;
}


header .wrap > nav > ul > li > ul > li > a > span strong{
	display: block;
	font-size: 15px;
	font-weight: 500;
}


header .wrap > nav > ul > li > ul > li > a > span em{
	font-size: 13px;
	font-style: normal;
}

@media(max-width:800px){
	header .wrap > nav > ul > li > ul{
		position: static;
		padding: 0;
		max-height: 0pc;
		display: block;
		width: 100%;
    top:100%;
		background-color: #f9f9f9;
	}

	header .wrap > nav > ul > li:hover > ul{
		max-height: 500px;
	}

	header .wrap > nav > ul > li > ul > li{
		width: 100%;
		display: block;
	}

	header .wrap > nav > ul > li > ul > li a{
		padding: 20px;
	}
	header .wrap > nav > ul > li > ul > li > a img{
		display: none;
	}

	header .wrap > nav > ul > li > ul > li > a > span{
		width: 100%;

	}

	header .wrap > nav > ul > li > ul > li > a > span > strong{
		width: 100%;
	}

	header .wrap > nav > ul > li > ul > li > a > span > em{
		width: 100%;
		text-align: justify;
	}
}



header .user-info {
  flex: 1;
  text-align: right;
  gap: 5%;
}

header .user-info ul {
  list-style: none;
  display: flex;
  justify-content: end;
  gap: 4%;
}

header .user-info ul li {
  display: block;
  font-size: 15px;
}

@media (max-width: 800px) {
  header .user-info {
    text-align: left;
  }

  header .user-info ul {
    justify-content: start;
    gap: 2%;
    text-align: center;
  }
}

header .user-info ul li a {
  color: #242c34;
  text-decoration: none;
  position: relative;
  width: 50px;
  display: block;
  text-align: center;
}

header .user-info ul li a span {
  font-weight: 200;
  font-size: 25px;
}

header .user-info ul li a em {
  position: absolute;
  font-style: normal;
  background: #242c34;
  color: #ffffff;
  display: inline-block;
  width: 17px;
  line-height: 17px;
  text-align: center;
  border-radius: 40px;
  font-size: 12px;
  right: -10px;
  top: -15px;
}

/* search-box */
.search-box {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(113, 113, 113, 0.588);
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.search-box.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.search-box .close {
  position: fixed;
  top: 20px;
  right: 20px;
  line-height: 100px;
  width: 100px;
  font-size: 90px;
  text-align: center;
  color: #ff0000;
  cursor: pointer;
}

.search-box .close span {
  font-weight: 100;
  font-size: 100px;
  text-align: center;
  line-height: 100px;
  width: 100px;
}

.search-box form {
  display: flex;
}

.search-box form input[type="text"] {
  padding: 16px 20px;
  border: none;
  min-width: 300px;
  outline: none;
}

.search-box form button {
  padding: 19px 50px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #212121;
  color: #ffffff;
}

/* slider */
.slider {
  max-width: 1500px;
  margin: 88.7px auto 0 auto;
  width: 94%;
  position: relative;
}

.slider .slidesjs-previous {
  width: 50px;
  height: 80px;
  background: #f2b705;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  transform: translateY(-50%);
  border-radius: 0 5px 5px 0;
  transition: all 0.3s ease;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 30px;
}

.slider .slidesjs-previous::after {
  font-family: "FontAwesome";
  content: "\f053";
}

.slider .slidesjs-next {
  width: 50px;
  height: 80px;
  background: #f2b705;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 10;
  transform: translateY(-50%);
  border-radius: 5px 0 0 5px;
  transition: all 0.3s ease;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 30px;
}

.slider .slidesjs-next::after {
  font-family: "FontAwesome";
  content: "\f054";
}

.slider .slidesjs-previous:hover,
.slider .slidesjs-next:hover {
  background: #ffffff;
  color: #242c34;
}

.slider .single {
  width: 100%;
  position: relative;
  height: 100%;
}

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

.slider .single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.slider .single .info-slider {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: auto;
  max-width: 1500px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.slider .single .info-slider .inter {
  padding: 30px;
  max-width: 50%;
  color: #ffffff;
}

.slider .single .info-slider .inter h2 {
  font-size: 60px;
  font-weight: 100;
}

.slider .single .info-slider .inter h3 {
  font-size: 20px;
  font-weight: 100;
  line-height: 30px;
  margin: 20px 0 0 0;
}

@media (max-width: 800px) {
  .slider .slidesjs-next,
  .slider .slidesjs-previous {
    display: none;
  }

  .slider .single .info-slider {
    align-items: center;
  }

  .slider .single .info-slider .inter {
    max-width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .slider .single .info-slider .inter h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
  }

  .slider .single .info-slider .inter h3 {
    font-size: 14px;
    margin: 10px 0 0 0;
    line-height: 19px;
  }
}

/* wellcome */
.wellcome {
  padding: 200px 0 150px 0;
}

@media (max-width: 800px) {
  .wellcome {
    padding: 40px 0;
  }
  .products li {
    width: 48%;
  }
}

.wellcome h2 {
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.wellcome p {
  max-width: 700px;
  margin: 20px auto;
  line-height: 35px;
  font-weight: 200;
  font-size: 22px;
  text-align: justify;
}

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

.banner-1 .wrap {
  position: relative;
  padding: 160px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.banner-1 .wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
  transform: scale(1.1);
  filter: blur(2.2px);
}

.banner-1 .wrap h3 {
  z-index: 2;
  position: relative;
  max-width: 700px;
  text-align: center;
  margin: auto;
  font-size: 30px;
  font-weight: 300;
}

@media (max-width: 800px) {
  .banner-1 .wrap {
    padding: 30px 0;
  }
  .banner-1 .wrap h3 {
    font-size: 20px;
  }
}

/* banner-2 */
.banner-2 {
  padding: 50px 0 0 0;
}

.banner-2 .wrap {
  position: relative;
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
  align-items: center;
}

.banner-2 .wrap article {
  width: 47.5%;
  overflow: hidden;
}
.banner-2 .wrap article h3 {
  font-size: 50px;
  line-height: 60px;
  margin: 0 0 20px 0;
  color: #212121;
  text-transform: uppercase;
  max-width: 600px;
}

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

  .banner-2 .wrap article h3 {
    font-size: 30px;
  }
}

.banner-2 .wrap article p {
  line-height: 40px;
  font-weight: 300;
  font-size: 20px;
}

.banner-2 .wrap article img {
  width: 100%;
  object-fit: cover;
}

/* icons */
.icons {
  padding: 90px 0 0;
}

.icons .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2%;
}

.icons .wrap article {
  text-align: center;
  padding: 20px 2%;
  width: 14.4%;
}

@media (max-width: 800px) {
  .icons .wrap article {
    width: 45%;
  }
}

.icons .wrap article .icon span {
  font-weight: 100;
  font-size: 60px;
  color: #242c34;
}

.icons .wrap article h3 {
  color: #242c34;
  font-size: 20px;
  margin: 0 0 10px 0;
}

.icons .wrap article p {
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  color: #666666;
}

/* banner-video */
.banner-video {
  position: relative;
  overflow: hidden;
  background-image: url(img/logo.svg);
  background-size: 200px;
}

.banner-video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 1;
  transform: scale(1.1);
  transition: all 30s linear;
  opacity: 0.95;
}

.banner-video:after {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.banner-video .wrap {
  position: relative;
  z-index: 3;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.banner-video .wrap article {
  width: 40%;
}

@media (max-width: 800px) {
  .banner-video:after {
    width: 100%;
    opacity: 0.8;
  }
  .banner-video .wrap article {
    width: 100%;
  }
}

.banner-video .wrap article img {
  display: block;
  max-width: 180px;
  margin: auto;
}

.banner-video .wrap article p {
  font-weight: 300;
  font-size: 18.5px;
  margin: 20px 0;
  line-height: 35px;
  text-align: justify;
  text-indent: 40px;
  font-style: italic;
  color: #666666;
}

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

.testimonios .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.testimonios .wrap article {
  width: 16%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  padding: 1% 1.2%;
}

@media (max-width: 800px) {
  .testimonios .wrap article {
    width: 97%;
    margin: 20px 0;
    text-align: center;
    padding: 40px 1.5%;
  }
}

.testimonios .wrap article h3 {
  font-size: 16px;
  font-weight: 500;
}

.testimonios .wrap article h4 {
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0 0 0;
  color: #f2b705;
}

.testimonios .wrap article p {
  font-weight: 300;
  font-size: 14px;
  line-height: 25px;
  margin: 10px 0 0 0;
  color: #666666;
}

.testimonios .wrap article .rate {
  font-size: 12px;
  margin: 10px 0 0 0;
  color: #999;
}

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

.categorias .wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1%;
}

.categorias .wrap article {
  width: 24%;
  overflow: hidden;
  position: relative;
  height: 500px;
}

@media (max-width: 800px) {
  .categorias .wrap article {
    width: 100%;
    height: 300px;
  }
}

.categorias .wrap article a {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
}

.categorias .wrap article a h3 {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-weight: 200;
  font-size: 40px;
  margin: 20px 0 0 0;
}

.categorias .wrap article a p {
  position: relative;
  line-height: 30px;
  margin: 10px 0 -50px 0;
  display: inline-block;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease;
}

.categorias .wrap article a:hover p {
  opacity: 1;
  transform: translateY(0px);
}

.categorias .wrap article a p:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  top: 100%;
}

.categorias .wrap article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 0.7s ease;
}

.categorias .wrap article:hover img {
  transform: scale(1.2);
  filter: grayscale(100%);
}

/* page-banner */
.page-banner {
  padding: 350px 0 0px 0;
  background-color: #f9f9f9;
  position: relative;
  text-align: center;
}

.page-banner img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top:0;
  left: 0;
  pointer-events: none;
}

.page-banner h1 {
  font-size: 30px;
  font-weight: 300;
  color: #313131;
  text-transform: uppercase;
  text-align: center;
  z-index: 10;
  position: relative;
  letter-spacing: 3px;
  display: inline-block;
  padding: 20px 50px 10px 50px;
  background-color: #ffffff;
}

.page-banner h1:before{
  content: "";
  position: absolute;
  left: -50px;
  border-right: solid 50px #ffffff;
  border-top:solid 100px transparent;
  top:0;
}

.page-banner h1:after{
  content: "";
  position: absolute;
  right: -50px;
  border-left: solid 50px #ffffff;
  border-top:solid 100px transparent;
  top:0;
}

/* content */
.content {
  padding: 100px 0 150px 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, 0.1);
  transition: all 0.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: #bf064a;
  color: #ffffff;
  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 0.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%;
  }
}

/* banner-bottom */
.banner-bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  background: #f2b705;
  border-radius: 10px;
  margin: 0 auto -75px auto;
  position: relative;
  z-index: 10;
}

@media (max-width: 800px) {
  .banner-bottom .wrap {
    display: block;
    margin: 20px auto;
  }
}

.banner-bottom .wrap article {
  flex: 1;
  text-align: center;
  padding: 40px 5%;
}

.banner-bottom .wrap article img {
  max-width: 150px;
}

.banner-bottom .wrap article:nth-child(2) {
  background: #ffffff;
  border-radius: 10px;
  margin: -20px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.banner-bottom .wrap article a {
  display: flex;
  text-decoration: none;
  gap: 5%;
}

.banner-bottom .wrap article:nth-child(1) a {
  justify-content: star;
  text-align: left;
}

.banner-bottom .wrap article:nth-child(3) a {
  justify-content: end;
  text-align: right;
}

@media (max-width: 800px) {
  .banner-bottom .wrap article:nth-child(1) a {
    text-align: left;
    justify-content: center;
  }

  .banner-bottom .wrap article:nth-child(2) {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .banner-bottom .wrap article:nth-child(3) a {
    text-align: right;
    justify-content: center;
  }
}

.banner-bottom .wrap article a span {
  width: 50px;
  color: #ffffff;
  line-height: 50px;
  border: solid 2px #ffffff;
  border-radius: 50px;
  font-weight: 300;
  font-size: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.banner-bottom .wrap article a:hover span {
  transform: rotateY(-180deg);
}

.banner-bottom .wrap article a b {
  display: block;
  color: #ffffff;
}

.banner-bottom .wrap article a em {
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  color: #ffffff;
}

/* sub-footer */
.sub-footer {
  background: #f9f9f9;
  padding: 190px 0 50px 0;
}

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

.sub-footer .wrap article:nth-child(1) {
  width: 28%;
}

.sub-footer .wrap article:nth-child(2) {
  width: 15%;
}

.sub-footer .wrap article:nth-child(3) {
  width: 15%;
}

.sub-footer .wrap article:nth-child(4) {
  width: 30%;
}

.sub-footer .wrap article .mgt-20 {
  margin-top: 40px;
}

.sub-footer .wrap article:nth-child(1) img {
  max-width: 150px;
  border-radius: 10px;
  margin: 0 0 20px 0;
  padding: 10px;
}

.sub-footer .wrap article p {
  font-size: 15px;
  line-height: 30px;
  color: #777777;
  max-width: 90%;
}

.sub-footer .wrap article h2 {
  color: #f2b705;
  font-size: 18px;
  margin: 0 0 20px 0;
}

.sub-footer .wrap article ul li {
  list-style: none;
  padding: 5px 0;
}

.sub-footer .wrap article ul li a {
  color: #666666;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.sub-footer .wrap article ul li a:hover {
  color: #313131;
}

.sub-footer .wrap article ul.social {
  display: flex;
  gap: 3%;
}

@media screen and (max-width: 800px) {
  .sub-footer {
    padding: 50px 0;
  }

  .sub-footer .wrap {
    display: block;
    text-align: center;
  }

  .sub-footer .wrap article:nth-child(1),
  .sub-footer .wrap article:nth-child(2),
  .sub-footer .wrap article:nth-child(3),
  .sub-footer .wrap article:nth-child(4),
  .sub-footer .wrap article:nth-child(5) {
    text-align: center;
    width: 100%;
    margin: 0 0 50px 0;
  }

  .sub-footer .wrap article:nth-child(5) {
    margin-bottom: 0;
  }

  .sub-footer .wrap article p {
    max-width: 100%;
  }

  .sub-footer .wrap article ul.social {
    justify-content: center;
  }
}

.sub-footer .wrap article ul.social li a {
  display: block;
  line-height: 55px;
  width: 55px;
  text-align: center;
  background: #f2b705;
  border-radius: 55px;
  color: #ffffff;
}

.sub-footer .wrap article ul.social li a:hover {
  background: #313131;
  color: #ffffff;
}

/* footer */
footer {
  background: #f9f9f9;
  padding: 40px 0;
  text-align: center;
  color: #666666;
  font-size: 16px;
}

footer span {
  display: block;
}

footer a {
  color: #313131;
  text-decoration: none;
  font-weight: 500;
}

.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;
}

.go-top-btn.active {
  opacity: 1;
}

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