/*
Theme Name: Arkos
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: "Red Hat Display", sans-serif;
    padding: 0;
    margin:0;
}

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

::selection{
    background-color: #F25C05;
    color: #ffffff;
}

/* header */
header{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #000000;
    transition: all .3s ease;
    overflow: hidden;
}

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

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

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

header .wrap .logo{
    width: 120px;
    transition: all .3s ease;
    position: relative;
}

header .wrap .logo:after{
    content: "ARQUITECTURA & CONSTRUCCIÓN";
    position: absolute;
    left: 120%;
    bottom: 0;
    color: #ff8000;
    font-size: 22px;
    font-weight: 200;
    width: 1000px;
    pointer-events: none;
}


@media(max-width:800px){
    header,
    header.stick{
        position: relative;
        z-index: 999;
    }
    header .wrap{
        display: block;
    }

    header .wrap .logo{
        max-width: 50%;
    }

    header .wrap .logo:after{
        font-size: 14px;
    }
}


header.stick .logo{
    width: 80px;
}

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



#btn-nav{
    display: none;
}

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

    header label span{
        width: 50%;
        left: 25%;
        height: 2px;
        position: absolute;    
        transition: all .3s ease;
        background-color: #F25C05;
    }

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

    header label span:nth-child(2){
        top:30px;
        transition-delay: .3s;
    }

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

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


}



header nav{
    width: 80%;
}

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

header nav ul li a{
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-size: 17px;
    line-height: 45px;
    position: relative;
}

header nav ul li a:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #F25C05;
    left: 0;
    bottom: -2px;
    transform: rotateY(90deg);
    transition: all .3s ease;
    opacity: 0;
}

header nav ul li:hover a:after{
    transform: rotateY(0);
    opacity: 1;
}

header nav ul li:last-child a{
    background-color: #F25C05;
    padding: 0 20px;
    text-align: center;
    border-radius: 50px;
    color: #ffffff;
}

header nav ul li:last-child a:after{
    display: none;
}


@media(max-width:800px){
    header nav{
        width: 60%;
        position: fixed;
        top:0;
        left: 0;
        background-color: #000000;
        transform: translateX(-100%);
        transition: all .3s ease;
        z-index: 99999 !important;
    }

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

    header nav ul{
        display: block;
    }

    header nav ul li a{
        display: block;
        padding: 0 20px;
    }

    header nav ul li:last-child a{
        border-radius: 0;
        width: 100%;
        padding: 0;
    }

    header nav ul li a:after{
        display: none;
    }

    header nav ul li a:hover{
        background-color: #F25C05;
        color: #ffffff;
        transition: all .3s ease;
    }
}


/* slider */
.slider{
    position: relative;
}
.slider .single{
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #212121;
}

.slider .single img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left: 0;
    opacity: .7;
}

.slider .single .single-content{
    position:relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 50px 0 0 0;
    box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0.5);
}

.slider .single .single-content .wrap{
    max-width: 900px;
    color: #ffffff;
}

.slider .single .single-content h2{
    font-size: 5em;
    font-weight: 900;
}

.slider .single .single-content p{
    font-size: 1.4em;
    font-weight: 400;
    padding: 0 0 0 100px;
    position: relative;
}

.slider .single .single-content p:before{
    content: "";
    position: absolute;
    left: 0;
    top:50%;
    transform: translateY(-50%);
    width: 80px;
    height:2px;
    background-color: #ffffff;
}

.slider .slidesjs-previous,
.slider .slidesjs-next{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 30px;
    text-decoration: none;
    color: #ffffff;
    margin:60px 0 0 0;
    opacity: .4;
    transition: all .3s ease;
}

.slider .slidesjs-previous:hover,
.slider .slidesjs-next:hover{
    opacity: 1;
}

.slider .slidesjs-previous{
    left: 5%;
}

.slider .slidesjs-next{
    right: 5%;
}


@media(max-width:800px){
    .slider .single .single-content{
        padding: 0;
    }
    .slider .single .single-content h2{
        font-size: 40px;
        max-width: 80%;
    }

    .slider .single .single-content p{
        font-size: 20px;
        padding: 20px 0;
        line-height: 2;
    }

    .slider .single .single-content p:before{
        display: none;
    }

    .slider .slidesjs-previous,
    .slider .slidesjs-next{
        display: none;
    }

        .slidesjs-container, 
        .slidesjs-control {
          width: 100% !important;
          height: 80vh !important;
        }
        .slidesjs-slide {
          height: 80vh !important;
        }
      }
    

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

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

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

.wellcome .wrap article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    min-height: 400px;;
}

.wellcome .wrap article h2{
    font-size: 16px;
    text-transform: uppercase;
    color: #F25C05;
    font-weight: 600;
    position: relative;
}

.wellcome .wrap article h2:after{
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: #F25C05;
    left: 0;
    bottom: -10px;
}

.wellcome .wrap article h1{
    font-size: 3em;
    line-height: 1.2;
    color: #313131;
    font-weight: 900;
    margin:20px 0;
}

.wellcome .wrap article p{
    font-size: 1.2em;
    line-height: 2;
    color: #313131;
    font-weight: 400;
    margin:20px 0;
}

.wellcome .wrap article ul{
    display: flex;
    margin:20px 0 0 0;
    flex-wrap: wrap;
    gap:2%;
}

.wellcome .wrap article ul li{
    width: 40%;
    max-width: 150px;
    text-align: center;
    list-style: none;
}

.wellcome .wrap article ul li a{
    display: block;
    line-height: 50px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    border-bottom: solid 3px #F25C05 !important;
    transition: all .3s ease;
}

.wellcome .wrap article ul li:nth-child(1) a{
    background-color: #F25C05;
}

.wellcome .wrap article ul li:nth-child(2) a{
    color: #F25C05;
    border:solid 1px #F25C05;
}

.wellcome .wrap article ul li a:hover{
    background-color: #F25C05;
    color: #ffffff;
}



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

    .wellcome .wrap{
        display: block;
    }

    .wellcome .wrap article{
        width: 100%;
        margin:40px 0;
        text-align: center;
    }

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

    .wellcome .wrap article h2:after{
        left: 50%;
        transform: translateX(-50%);
    }

    .wellcome .wrap article ul{
        justify-content: center;
    }
}


/* valors */
.valors{
    padding: 50px 0 100px 0;
}
.valors .wrap{
    display: flex;
    justify-content: space-between;
    gap:3%;
    flex-wrap: wrap;
}

.valors .wrap article{
    width: 20%;
}

.valors .wrap article .icon span{
    color: #F25C05;
    font-size: 40px;
}

.valors .wrap article h2{
    font-size: 1.7em;
    font-weight: 800;
    color: #212121;
    margin:10px 0;
}

.valors .wrap article p{
    font-size: 1.1em;
    color: #414141;
    line-height: 1.6;
}


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

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

    .valors .wrap article{
        width: 90%;
        margin:40px auto;
    }
}

/* banner-1 */
.banner-1{
    position: relative;
    background-color: #000000aa;
}

.banner-1 img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: .4;
}

.banner-1 .wrap{
    position:relative;
    z-index: 2;
    padding: 100px 0 150px 0;
    display: flex;
    gap:5%;
    flex-wrap: wrap;
}

.banner-1 article:nth-child(1){
    width: 60%;
}

.banner-1 article h3{
    font-size: 16px;
    text-transform: uppercase;
    color: #F25C05;
    font-weight: 600;
    position: relative;
}

.banner-1 article h3:after{
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: #F25C05;
    left: 0;
    bottom: -10px;
}

.banner-1 article h2{
    font-size: 3em;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 900;
    margin:20px 0;
}

.banner-1 article p{
    font-size: 1.2em;
    line-height: 2;
    color: rgba(255,255,255,.7);
    font-weight: 400;
    margin:20px 0;
}


.banner-1 article p a{
    color: #ffffff;
    font-size: .9em;
    line-height: 1;
    font-weight: 700;
    padding: 15px 50px;
    border:solid 1px #ffffff;
    border-radius: 5px;
    display: inline-block;
    border-bottom-width: 3px;
    text-decoration: none;
    transition: all .3s ease;
}

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

.banner-1 article:nth-child(2){
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.banner-1 article:nth-child(2) a{
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    background-color: #F25C05;
    line-height: 50px;
    padding: 0 30px;
    border-radius: 5px;
    transition: all .3s ease;
    font-weight: 700;
    font-size: 1.1em;
}

.banner-1 article:nth-child(2) a:hover{
    background-color: #ffffff;
    color: #F25C05;
}

@media(max-width:800px){
    .banner-1 .wrap{
        padding: 40px 0 100px 0;
        text-align: center;
        display: block;
    }

    .banner-1 article:nth-child(1),
    .banner-1 article:nth-child(2){
        width: 100%;
    }

    .banner-1 article h3:after{
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-1 article h2{
        font-size: 30px;
    }
}


/* proyects */
.proyects{
    padding: 100px 0 50px 0;
}

.proyects h3{
    font-size: 16px;
    text-transform: uppercase;
    color: #F25C05;
    font-weight: 600;
    position: relative;
    text-align: center;
    margin:0 0 20px 0;
}

.proyects h3:after{
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: #F25C05;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.proyects h2{
    font-size: 3em;
    line-height: 1.2;
    color: #212121;
    font-weight: 900;
    text-align: center;
    margin:0 0 100px 0;
}


.proyects .gallery{
    display: flex;
    justify-content: space-between;
    gap:2%;
    flex-wrap: wrap;
}

.proyects .gallery article{
    width: 32%;
    overflow: hidden;
    height: 0px;
    padding: 0 0 32% 0;
    position: relative;
    margin:0 0 20px 0;
}

.proyects .gallery article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left: 0;
    transition: all .5s ease;
    border-radius: 5px;
}

.proyects .gallery article:hover img{
    filter: blur(3px);
    transform:scale(1.1);
    transition-delay: .2s;
}

.proyects .gallery article .masc{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    top:0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .2s ease;
    transform:scale(0);
}

.proyects .gallery article:hover .masc{
    opacity: 1;
    transform: scale(1);
}

.proyects .gallery article .masc a{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    
}

.proyects .gallery article .masc a span{
    transform: rotate(-45deg);
}

@media(max-width:800px){
    .proyects h2{
        font-size: 30px;
    }

    .proyects .gallery article{
        width: 48%;
        padding: 0 0 48% 0;
    }
}



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

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

.banner-2 .wrap article{
    width: 48%;
}

.banner-2 .wrap article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    min-height: 400px;;
}

.banner-2 .wrap article h2{
    font-size: 16px;
    text-transform: uppercase;
    color: #F25C05;
    font-weight: 600;
    position: relative;
}

.banner-2 .wrap article h2:after{
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: #F25C05;
    left: 0;
    bottom: -10px;
}

.banner-2 .wrap article h1{
    font-size: 3em;
    line-height: 1.2;
    color: #313131;
    font-weight: 900;
    margin:20px 0;
}

.banner-2 .wrap article p{
    font-size: 1.2em;
    line-height: 2;
    color: #313131;
    font-weight: 400;
    margin:20px 0;
}

.banner-2 .wrap article ul{
    display: flex;
    margin:20px 0 0 0;
    flex-wrap: wrap;
    gap:2%;
}

.banner-2 .wrap article ul li{
    width: 40%;
    max-width: 150px;
    text-align: center;
    list-style: none;
}

.banner-2 .wrap article ul li a{
    display: block;
    line-height: 50px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    border-bottom: solid 3px #F25C05 !important;
    transition: all .3s ease;
}

.banner-2 .wrap article ul li:nth-child(1) a{
    background-color: #F25C05;
}

.banner-2 .wrap article ul li:nth-child(2) a{
    color: #F25C05;
    border:solid 1px #F25C05;
}

.banner-2 .wrap article ul li a:hover{
    background-color: #F25C05;
    color: #ffffff;
}


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

    .banner-2 .wrap{
        display: block;
    }

    .banner-2 .wrap article{
        width: 100%;
        margin:40px 0;
        text-align: center;
    }

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

    .banner-2 .wrap article h2:after{
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-2 .wrap article ul{
        justify-content: center;
    }
}
/* banner-3 */
.banner-3{
    position: relative;
    background-color: #0e0e1d75;
}

.banner-3 .wrap{
    position: relative;
    z-index: 2;
    padding: 140px 0;
}

.banner-3 h3{
    font-size: 1.2em;
    font-weight: 600;
    color: #F25C05;
    text-transform: uppercase;
    text-align: center;
}

.banner-3 h2{
    font-size: 3em;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin:auto;
}


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

    .banner-3 h2{
        font-size: 30px;
    }
}



/* page-banner */
.page-banner{
    background-color: #F25C05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='974' height='811.7' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.08'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/svg%3E");    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-banner h1{
    margin:190px 0 80px 0;
    font-size: 30px;
    color: #ffffff;
    position: relative;
    text-align: center;
    z-index: 10;
}

.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%);
    pointer-events: none;
}

@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;
    appearance: none;
    -webkit-appearance: none;
    -moz-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: #F25C05;
    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 .3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.content input[type="submit"]:hover,
.content input[type="submit"]:focus{
    color: #ffffff;
    background-color: #313131;
}

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

.not-found svg{
    fill: #ff8000;
    max-width: 200px;
    margin:20px auto;
    display: block;
}

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



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

.category .wrap article{
    width: 23.5%;
    overflow: hidden;
    margin:0 0 40px 0;
}

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

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

.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: #F25C05;
    bottom: -1px;
    left: 10px;
}
.category .wrap article p{
    font-size: 14px;
    line-height: 25px;
    color: #777777;
    padding: 10px;
    text-align: justify;
}



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

    .category .wrap article p{
        text-align: left;
    }
}

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

.category .wrap article .btn-more a{
    display: block;
    text-decoration: none;
    background-color: #F25C05;
    color: #ffffff;
    line-height: 45px;
    padding: 0 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: all .3s ease;
    border-radius: 5px;
}

.category .wrap article .btn-more a:hover{
    background: #212121;
    color: #ffffff;
}


/* sub-footer */
.sub-footer{
    padding: 80px 0;
    background-color: #212121;
}

.sub-footer h5{
    font-size: 14px;
    font-weight: 300;
    color: #999999;
}

.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 h2{
    color: #ffffff;
    font-size: 1.4em;
    font-weight: 800;
    margin:0 0 30px 0;
}

.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.menu{
    line-height: 40px;
    list-style-type: none;
}

.sub-footer .wrap article ul.menu li a i{
    color: #F25C05;
}

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

.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;
    background-color: #f9f9f9;
    color: #121212;
    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: #F25C05;
    color: #ffffff;
}

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

.sub-footer .wrap article input[type="submit"]{
    background-color: #F25C05;
    color: #ffffff;
    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: #F2A950;
    color: #212121;
}



@media(max-width:800px){
    .sub-footer{
        padding: 40px 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){
        width: 100%;
        padding: 50px 0;
    }

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

    .sub-footer .wrap article input[type="email"]{
        display: block;
        margin:auto;
        max-width:60%;
    }

    .sub-footer .wrap article input[type="submit"]{
        display: block;
        margin:20px auto 0 auto;;
    }

}


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

footer a{
    color: #ffffff;
    text-decoration: none;
    transition: all .3s ease;
}

footer a:hover{
    color: #F2A950;
}

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


@media(max-width:800px){
    footer{
        font-size: 16px;
    }
}


.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    z-index: 99;
    cursor: pointer;
}

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

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