/*
Theme Name: Blackdron
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: "Montserrat", serif;
    padding: 0;
    margin:0;
}

:root {
    --color1: #121212;
    --color1rgb: rgba(0,0,0,.5);
    --color2: #ffffff;
    --color3: #101001;
}

::selection{
    color: var(--color1);
    background-color: var(--color2);
}

.wrap{
    width: 90%;
    max-width: 1350px;
    margin:auto;
    background-color: var(--var1);
}

/* header */
header{
    width: 100%;
    position: fixed;
    z-index: 99;
    padding: 0px 0;
    backdrop-filter: blur(10px);
    background-color: var(--color1);
    transition: all .3s ease;
}

header.stick{
    position: fixed;
    transform: translateY(-100%);
}

header.show{
    transform: translateY(0);
    box-shadow: 0 5px 30px rgba(0,0,0,.1);
}

@media(max-width:800px){
    header, header.stick, header.show{
        position: absolute !important;
        top:0;
        transform: translateY(0);
    }
}


header .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;

}

header .wrap .logo{
    width: 250px;
}

header .wrap .logo img{
    width: 100%;
    margin:0 0 -5px 0;
}



#btn-nav{
    display: none;
}

@media(max-width:800px){
    header{
        position: relative;
    }
    header label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:50%;
        transform: translateY(-50%);
		right: 35px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;
		border-radius: 5px;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: var(--color2);
		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;
	}
}

/* nav */
nav ul{
    display: flex;
    justify-content: center;
    gap:15%;
    list-style: none;
}

nav ul li a{
    display: block;
    text-decoration: none;
    color: var(--color2);
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    line-height: 50px;
}

nav ul li a:after{
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: var(--color2);
    left: 50%;
    transform: translateX(-50%);
    top:100%;
    transition: width .3s ease;
}

nav ul li:hover a:after{
    width: 100%;
}



@media(max-width:800px){
    header nav {
        width: 60%;
        position: absolute;
        background: var(--color1);
        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: translateX(0);
        opacity: 1;
        pointer-events: all;
    }
    
    header .wrap nav  ul{
        display: block;
    }
    
    header .wrap nav  ul li a{
        line-height: 50px;
        padding: 0 10px;
    }
    
    header nav  ul li ul{
        position: static;
        width: 100%;
        transform: translateY(0);
        max-height: 0px;
        overflow: hidden;
    }
    
    header nav  ul li:hover ul{
        max-height: 400px;
    }

    header nav  ul li:last-child a{
        border-radius: 0;
    }

    nav ul li a:after{
        display: none;
    }
}
/* top-button */
.top-button{
    width: 200px;
    display: flex;
    justify-content: right;
    line-height: 45px;
}

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

.top-button a{
    display: block;
    text-decoration: none;
    background-color: var(--color2);
    color: var(--color1);
    padding: 0 20px;
    border-radius: 5px;
}

/* home */
.wrap-home{
    overflow: hidden;
    position: relative;
    background-color: var(--color1);
}

.wrap-home svg{
    position: absolute;
    width: 100%;
    bottom: -25px;
    object-fit: cover;
    left: 0;
    z-index: 99;
    transform: rotateX(145deg);
    fill: var(--color1);
}

.wrap-home:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: 2;
    background-color: var(--color1);
    opacity: .4;
}

.home{
    overflow: hidden;
    position: relative;
    height: 100vh;
    display: flex;
    z-index: 3;
    align-items: center;
}

@media(max-width:800px)
{
    .home{
        height: 80vh;
    }
}

.home .wrap{
    position:relative;
    z-index: 2;
    color: var(--color2);
}

.home .wrap h1{
    font-size: 4em;
    margin:100px auto 0 auto;
    font-weight: 900;
    max-width: 80%;
    text-align: center;
}

.home .wrap h2{
    font-size:2em;
    font-weight: 300;
    max-width: 600px;
    margin:20px auto 50px auto;
    text-align: center;
}

.home .wrap .btn-more{
    margin:20px auto 0 auto;
    display: table;
}


@media(max-width:800px){
    .home .wrap{
        text-align: center;
    }

    .home .wrap h1{
        margin:auto;
        font-size: 40px;
        max-width: 90%;
    }

    .home .wrap h2{
        margin:20px auto;
        font-size: 20px;
    }

    .home .wrap .btn-more{
        margin:20px auto 0 auto;
    }
}


.home .wrap .btn-more a{
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s ease;
    border-radius: 5px;
}

.home .wrap .btn-more a:hover{
    transition-delay: .3s;
    box-shadow: 0 0 0 1px var(--color2);
}


.home .wrap .btn-more a:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color2);
    top:-0%;
    left: 0;
    z-index: 1;
    transition: top .3s ease;
}

.home .wrap .btn-more:hover a:after{
    top:100%;
}


.home .wrap .btn-more a span{
    padding: 0 30px;
    line-height: 60px;
    display: block;
    color: var(--color1);
    z-index: 2;
    position: relative;
    transition: color .3s ease;
}

.home .wrap .btn-more:hover a span{
    color: var(--color2);
}

/* .wellcome */
.wellcome{
    background-color: var(--color1);
    position: relative;
}


.wellcome .wrap{
    display: flex;
    gap:5%;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

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

.wellcome .wrap article:nth-child(2){
    border-radius: 50%;
    aspect-ratio: 1/1;
    overflow: hidden;
}


.wellcome .wrap article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin:0 0 10px 0;
}

.wellcome .wrap article h2{
    font-size: 3em;
    font-weight:900;
    text-transform: uppercase;
    color: var(--color2);
}

@media(max-width:800px){
    .wellcome .wrap article{
        width: 90%;
        margin:20px auto;
    }

    .wellcome .wrap article:nth-child(2){
        max-width: 80%;
        margin:50px auto;
    }

    .wellcome .wrap article h2{
        font-size: 30px;
    }
}

.wellcome .wrap article h3{
    font-size: 1.2em;
    font-weight:600;
    color: var(--color2);
    margin:20px 0 10px 0
}

.wellcome .wrap article p{
    font-size: 1em;
    line-height: 1.8;
    font-weight:400;
    color: var(--color2);
    opacity: .7;
}


.wellcome .wrap .btn-more{
    margin:50px 0 0 0;
    display: table;
}

.wellcome .wrap .btn-more a{
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s ease;
    border-radius: 5px;
}

.wellcome .wrap .btn-more a:hover{
    transition-delay: .3s;
    box-shadow: 0 0 0 1px var(--color2);
}


.wellcome .wrap .btn-more a:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color2);
    top:-0%;
    left: 0;
    z-index: 1;
    transition: top .3s ease;
}

.wellcome .wrap .btn-more:hover a:after{
    top:100%;
}


.wellcome .wrap .btn-more a span{
    padding: 0 30px;
    line-height: 60px;
    display: block;
    color: var(--color1);
    z-index: 2;
    position: relative;
    transition: color .3s ease;
}

.wellcome .wrap .btn-more:hover a span{
    color: var(--color2);
}



/* showcase */
.showcase{
    padding: 120px 0;
    background-color: var(--color1);
    overflow: hidden;
    position: relative;
}


.showcase::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--color1), transparent);
    pointer-events: none;
    z-index: 1; 
}

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


.showcase > img:nth-child(1){
    position: absolute;
    left: 0%;
    top:0;
    z-index: 1;
    height: 100%;
    opacity: .1;
    pointer-events: none;
}

.showcase > img:nth-child(2){
    position: absolute;
    right: 0%;
    bottom:0;
    z-index: 1;
    height: 70%;
    opacity: .1;
    pointer-events: none;
}

.showcase .wrap:nth-child(3) h2{
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color2);
}

.showcase .wrap:nth-child(3) h3{
    font-size: 45px;
    line-height: 50px;
    color: var(--color2);
    font-weight: 900;
    max-width: 50%;
    margin:0 0 50px 0;
}

.showcase .wrap:nth-child(4) {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:3%;
    position: relative;
    z-index: 2;
}

.showcase .wrap:nth-child(4) article{
    width: 22.7%;
    position: relative;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0 0 50px 0;
    transition: all .3s ease;
}

@media(max-width:800px){
    .showcase .wrap:nth-child(4) article{
        width: 90%;
        margin:20px auto;
    }
}

.showcase .wrap:nth-child(4) article:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.showcase .wrap:nth-child(4) article .image{
    width: 100%;
    height: 200px;
    overflow: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.showcase .wrap:nth-child(4) article .image > img:nth-child(1){
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.showcase .wrap:nth-child(4) article .image > img:nth-child(2){
	position: absolute;
	bottom:0px;
	left: 0;
	width: 100%;
	height: 200px;
    object-fit: cover;
	background: #fff;
	font-size: 30vw;
	text-align: center;
	color:#000;
	mix-blend-mode: screen;
	pointer-events: none;
}

.showcase .wrap:nth-child(4) article .icon{
    width: 70px;
    line-height: 70px;
    background-color: var(--color1);
    text-align: center;
    position: absolute;
    top:155px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    color: #ffffff;
}

.showcase .wrap:nth-child(4) article h2{
    margin:35px 0 0 0;
    color: var(--color1);
    font-size: 17px;
    font-weight: 900;
}

.showcase .wrap:nth-child(4) article p{
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #777777;
    margin:10px auto;
    max-width: 90%;
}

.showcase .wrap:nth-child(4) article .btn-more{
    width: 50px;
    line-height: 50px;
    left: 50%;
    position: absolute;
    bottom: -25px;
    transform: translateX(-50%);
}

.showcase .wrap:nth-child(4) article .btn-more a{
    display: block;
    text-decoration: none;
    color: var(--color1);
    background-color: var(--color2);
    border-radius: 50px;
    transform: rotate(-45deg);
    transition: all .3s ease;
}

.showcase .wrap:nth-child(4) article:hover .btn-more a{
    transform: rotate(-45deg) scale(1.2);
}

.showcase .wrap:nth-child(4) article .btn-more a:hover{
    background-color: var(--color2);
}

/* banner-2 */
.banner-2{
    position: relative;

}
.banner-2 .wrap{
    justify-content: space-between;
}

.banner-2 .wrap section:nth-child(1){
    width: 45%;
    padding: 200px 10% 200px 0;
}

.banner-2 .wrap section:nth-child(1) h2{
    font-size: 20px;
    color: var(--color1);
    text-transform: uppercase;
}

.banner-2 .wrap section:nth-child(1) h3{
    font-size: 3em;
    line-height: 1em;
    margin:20px 0;
}

@media(max-width:800px){
    .banner-2 .wrap{
        display: block;
    }
    .banner-2 .wrap section:nth-child(1){
        width: 100%;
        padding: 50px 0;
    }
    .banner-2 .wrap section:nth-child(1) h3{
        font-size: 30px;
    }
}

.banner-2 .wrap section:nth-child(1) p{
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin:0 0 20px 0;
    color: #777777;
    text-align: justify;
}


.banner-2 .wrap section:nth-child(1) article{
    display: flex;
    flex-wrap: wrap;
}

.banner-2 .wrap section:nth-child(1) article h4{
    font-size: 30px;
    font-weight: 800;
    color: var(--color1);
}

.banner-2 .wrap section:nth-child(1) article ul{
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    align-items: center;
    margin:30px 0 0 0;
    align-items: center;
    gap:2%;
}

.banner-2 .wrap section:nth-child(1) article ul li{
    color: var(--color1);
    border:solid 2px var(--color1);
    font-size:16px;
    font-weight: 600;
    line-height: .5em;
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: space-around;
}

.banner-2 .wrap section:nth-child(1) article ul li a{
    display: block;
    text-decoration: none;
    padding: 20px 40px;
    color: inherit;
}

.banner-2 .wrap section:nth-child(1) article ul li:nth-child(2){
    background-color: var(--color1);
    border-color: var(--color1);
    color: #ffffff;
}

.banner-2 .wrap section:nth-child(1) article ul li span{
    font-size: 14px;
    padding: 0 5px;
}

.banner-2 .image{
    width: 45%;
    position: absolute;
    right: 0;
    top:0%;
    height: 100%;
    padding:0 0;
    display: flex;
    justify-content: left;
    align-items: center;
}


.banner-2 .image:before{
    content: "";
    width: 70%;
    height: 100%;
    position: absolute;
    top:0;
    right: 0;
    background-color: var(--color1);
    background-attachment: fixed;
    background-image: url(img/bg-3.svg?2);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}


.banner-2 .image img{
    width: 70%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin:5% 0 0 0;
    object-fit: cover;
    position: relative;
    z-index: inherit;
}


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

    .banner-2 .image:before{
        width: 100%;
        height: 100%;
    }

    .banner-2 .image img{
        width: 50%;
        margin:30px auto ;
    }
}

/* banner-1 */
.banner-1{
    overflow: hidden;
    position: relative;
    background-color: var(--color1);
    
}

.banner-1 svg{
    position: absolute;
    width: 100%;
    bottom: -25px;
    object-fit: cover;
    left: 0;
    z-index: 99;
    transform: rotateX(145deg);
    fill: var(--color1);
}

.banner-1 video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: .5;
    position: absolute;
    pointer-events: none;
}

.banner-1 .wrap{
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0px 0;
    overflow: hidden;
}

.banner-1 .wrap img{
    width: 500px;
    pointer-events: none;
    opacity: .7;
    margin:0 0 100px 0;
}

@media(max-width:800px){
    .banner-1 .wrap img{    
        max-width: 70%;
    }

    .banner-1 .wrap img{
        margin:0 0 0 0;
    }
}


/* page-banner */
.page-banner{
    background-color: var(--color1);
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; 
}


.page-banner h1{
    margin:240px 0 100px 0;
    font-size: 30px;
    background-color: var(--color2);
    color: var(--color1);
    position: relative;
    text-align: center;
    z-index: 29;
    padding: 20px 50px;
    border-radius: 10px;
}


.page-banner h1 span{
    display: block;
    font-size: 20px;
}

.page-banner .image{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    z-index: 1;
    opacity: .2;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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: 160px 0 50px 0;
        }

        .page-banner h1{
        font-size: 20px;
        margin:0;
        font-weight: 400;
        }
        .page-banner .image img{
            width: 120%;
        }
}



/* content */
.content{
    background-color: var(--color1);
    padding: 80px 0 80px 0;
    color: var(--color2);
}

@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 input[type="password"],
.content textarea,
.content select{
    background-color: transparent;
    padding: 15px 2%;
    width: 96% !important;
    border:solid 1px var(--color2);
    border-radius: 5px;
    outline: none;
    resize: none;
    color: var(--color2);
    margin:0 0 10px 0;
    font-size: 15px;
    -webkit-appearance: none;
    z-index: 1 !important;
}

.content input[type="password"]{
    max-width: 90% !important;
}

.content select{
    color: var(--color12);
    cursor: pointer;
}

.content label{
    font-size: 14px;
    font-weight: bold !important;
    color: var(--color2) !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 input[type="password"]:focus,
.content textarea:focus,
.content select:focus{
    transition: all .3s ease;
    border:solid 1px var(--color2) !important;

}

.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: var(--color2);
}

.content input[type="submit"]{
    background-color: var(--color2);
    color: var(--color1);
    border:none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    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: var(--color1);
    background-color: var(--color2);
}

.not-found{
    padding: 100px 0;
}

.not-found h2{
    font-size: 100px;
    text-align: center;
    color: var(--color1);
    font-weight: 900;
}

.not-found h3{
    font-size: 24px;
    text-align: center;
    color: var(--color1);
    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%;
    }
}



/* category */
.category .wrap{
    display: flex;
    gap:2%;
    flex-wrap: wrap;
}

.category .wrap article{
    width: 23.5%;
    overflow: hidden;
    margin:0 0 40px 0;
    position: relative;
}
.category .wrap article .image{
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.category .wrap article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.category .wrap article:hover img{
    transform: scale(1.2);
}

.category .wrap article h2{
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    position: relative;
}

.category .wrap article h2:after
{
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--color1);
    bottom: -1px;
    left: 10px;
}
.category .wrap article p{
    font-size: 14px;
    line-height: 25px;
    color: #777777;
    padding: 10px;
    text-align: justify;
}

.category .wrap article .btn-more{
    display: table;
}

.category .wrap article .btn-more a{
    position: absolute !important;
    background-color: var(--color1);
    color: var(--color1);
    line-height: 50px;
    padding: 0 30px;
    text-decoration: none;
    left: 50%;
    bottom: 50%;
    border-radius: 0 !important;
    transform:translateX(-50%) translateY(20px);
    transition: all .3s ease;
    opacity: 0;
    z-index: 9;
    pointer-events: cursor;
}


.category .wrap article:hover .btn-more a{
    transform: translateY(0px) translateX(-50%);
    opacity: 1;
}

.category .wrap article .btn-more a:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0px;
    left: 0px;
    top:0px;
    border:solid 1px var(--color1);
    transition: all .3s ease;
    opacity: 0;
}

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

    .category .wrap article .btn-more a,
    .category .wrap article:hover .btn-more a{
        opacity: 1;
        transform: translate(0);
        position: relative !important;
        line-height: 50px;
        left: 0;
        bottom: 0;
        margin:auto;
        line-height: 50px;
        padding: 0 20px;
        display: inline-block;
    }

    .category .wrap article .btn-more a:after{
        display: none;
    }

    .category .wrap article:hover img{
        transform: none;
    }
}

.category .wrap article .btn-more a:hover:after{
    padding: 10px;
    left: -11px;
    top:-11px;
    opacity: 1;
}

/* sub-footer */
.sub-footer{
    padding: 120px 0;
    background-color: var(--color1);
    position: relative;
    z-index: 9;
}

.sub-footer .wrap{
    display: flex;
    justify-content: space-between;
    gap:3%;
    flex-wrap: wrap;
}

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

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

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

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

.sub-footer .wrap article img{
    color: var(--color2);
    max-width: 150px;
    font-size: 1.4em;
    font-weight: 800;
    margin:0 0 0px 0;
}

.sub-footer .wrap article h2{
    color: var(--color2);
    max-width: 150px;
    font-size: 1.4em;
    font-weight: 800;
    margin:0 0 40px 0;
}

.sub-footer .wrap article h5{
    color: var(--color2);
    max-width: 100%;
    font-size: 15px;
    font-weight: 400;
    margin:0 0 40px 0;
}

@media(max-width:800px){
    .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){
        width: 100%;
        padding: 30px 0;
        text-align: center;
    }

    .sub-footer .wrap article h2{
        text-align: center;
        display: block;
        max-width: 100%;
    }
}

.sub-footer .wrap article p,
.sub-footer .wrap article a{
    color: #f9f9f9;
    text-decoration: none;
    font-size: 16px;
    line-height: 30px;
    transition: color .3s ease;
}

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

.sub-footer .wrap article ul.menu{
    line-height: 40px;
    list-style-type: none;
}

.sub-footer .wrap article ul.menu li a i{
    color: var(--color2);
}

.sub-footer .wrap article ul.menu li a:hover{
    color: var(--color2);
}

.sub-footer .wrap article ul.social{
    display: flex;
    gap:3%;
    list-style-type: none;
    margin:20px 0 0 0;
}

.sub-footer .wrap article ul.social li a{
    display: block;
    line-height: 50px;
    width: 50px;
    border:solid 1px var(--color2);
    color: var(--color2);
    text-align: center;
    font-size: 20px;
    border-radius: 50px;
    line-height: 50px;
    transition: all .3s ease;
}

.sub-footer .wrap article ul.social li a:hover{
    background-color: var(--color2);
    color: var(--color1);
}

.sub-footer .wrap article input[type="email"]{
    padding: 10px 2%;
    width: 96%;
    border:none;
    background-color: var(--color2);
    outline: none;
    font-size: 16px;
    border-radius: 20px;
}

.sub-footer .wrap article input[type="submit"]{
    background-color: var(--color2);
    color: var(--color1);
    padding: 10px 20px;
    border-radius: 20px;
    border:none;
    font-size: 16px;
    cursor: pointer;
    margin:10px 0 20px 0;
    transition: all .3s ease;
}

.sub-footer .wrap article input[type="submit"]:hover,
.sub-footer .wrap article input[type="submit"]:focus{
    background-color: var(--color2);
    color: #212121;
}


/* footer */
footer{
    background-color: var(--color1);
    padding: 0 0 50px 0;
    text-align: center;
    font-size: 18px;
    color: #dedede;
}

footer a{
    color: var(--color2);
    text-decoration: none;
    transition: all .3s ease;
}

footer a:hover{
    color: var(--color2);
}

footer em{
    font-style: normal;
    display: inline;
    margin:0 10px;
}

.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    color: var(--color2);
    border:solid 1px var(--color2);
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease; 
    visibility: hidden;
    z-index: 99;
    line-height: 35px;
    width: 35px;
    text-align: center;
    cursor: pointer;
}

.go-top  i{
    transform: rotate(-90deg);
    display: inline-block;
}

.go-top.visible {
    opacity: .5;
    visibility: visible;
}

.go-top:hover {
    opacity: 1;
}