/*
Theme Name: Gasfiteriamanriquez
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: "Open Sans", sans-serif;
    padding: 0;
    margin:0;
}

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

/* top-banner */
.top-banner{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    line-height: 50px;
    z-index: 99;
}

@media(max-width:800px){
    .top-banner{
        display: none;
    }
}
.top-banner .wrap{
    display: flex;
    padding: 5px 0;
    justify-content: space-between;
}

.top-banner ul{
    display: flex;
    list-style:none;
}

.top-banner ul:nth-child(1){
    flex: 4;
    gap:2%
}

.top-banner ul:nth-child(1) li a{
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
}

.top-banner ul:nth-child(1) li a i{
    background-color: #256fab;
    display: inline-block;
    line-height: 45px;
    width: 45px;
    text-align: center;
    font-size: 16px;
    border-radius: 50px;
    margin:0 5px 0 0;
    
}

.top-banner ul:nth-child(2){
    flex: 2;
    text-align: right;
    gap:10%;
    justify-content: right;
}

.top-banner ul:nth-child(2) li a{
    color: #ffffff;
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    position: relative;
    transition: color .3s ease;
}

.top-banner ul:nth-child(2) li a:hover{
    color: #256fab;
}


.top-banner ul:nth-child(3){
    flex: 1;
    text-align: right;
    justify-content: right;
}

.top-banner ul:nth-child(3) li a{
    display: block;
    text-decoration: none;
    color: #ffffff;
    width: 30px;
    text-align: center;
    font-size: 14px;
    transition: color .3s ease;
}

.top-banner ul:nth-child(3) li a:hover{
    color: #414141;
}

/* header */
header{
    position: absolute;
    width: 100%;
    top:60px;
    z-index: 99;
}

header .wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
    gap:5%;
    border-radius: 10px;
}

header .wrap .logo{
    max-width: 250px;
    flex: 1.5;
    margin:0 0 0 10px;
    padding: 0 30px;
}

@media(max-width:800px){
    header{
        position: relative;
        top:0;
        background-color: #256fab;
    }

    header .wrap{
        display: block;
        padding: 10px;
    }
    header .wrap .logo{
        width: 250px;
        max-width: 60%;
    }
}

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

#btn-nav{
    display: none;
}

header label{
    display: none;
}

@media(max-width:800px){
    header label{
        display: block;
        position: absolute;
        right: 20px;
        top:30px;
        background-color: #ffffff;
        color: #256fab;
        width: 50px;
        line-height: 50px;
        text-align: center;
        cursor: pointer;
    }
}
/* nav */
header .wrap nav{
    flex: 4.5;
}

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


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


@media(max-width:800px){
    header .wrap nav{
        display: block;
        position: absolute;
        width: 60%;
        top:0;
        left: 0;
        background-color: #212121;
        transform: translateX(-100%);
        transition: all .3s ease;
    }

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

    header .wrap nav ul{
        display: block;
    }

    header .wrap nav ul a{
        display: block;
        text-decoration: none;
        padding: 20px 10px;
    }
}

header .wrap nav ul li a{
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 40px;
}


/* sub-nav */
header .wrap nav ul li ul{
    position: absolute;
    width: 200px;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all .3s ease;
}

header .wrap nav ul li:hover ul{
    pointer-events: all;
    transform: translateY(0px);
    opacity: 1;
}

header .wrap nav ul li ul li a{
    display: block;
    text-decoration: none;
    color: #414141;
    background-color: #ffffff;
    padding: 14px 10px;
    font-size: 14px;
    text-transform: capitalize;
    line-height: 30px;
}


header .wrap nav ul li ul li a:hover{
    background-color: #f0f0f0;
    transition: all .3s ease;
}
/* top-btn */
.top-btn{
    flex: 1.5;
    text-align: center;
    margin:0 10px 0 0;
}

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

.top-btn a{
    text-decoration: none;
    background-color: #256fab;
    line-height: 50px;
    padding: 0 30px;
    display: block;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 500;
    transition: all .3s ease;
}

.top-btn a:hover{
    background-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 0 3px #ffffff;
}

.top-btn a i{
    margin:0 5px 0 0;
}
/* slider */
.slider{
    width: 100%;
    background-color: #000000;
    position: relative;
}


.slider .single > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
    z-index: 1;
    position: absolute;
    top:0;
    left: 0;
}

.slider .single{
    height: 100%;
}

.slider .single .containt-slider{
    height: 100%;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.slider .single .containt-slider .inter-slider{
    position: relative;
    z-index: 10;
    width: 90%;
}

.slider .single .containt-slider .inter-slider h1{
    max-width: 70%;
    font-size: 3.5em;
    color: #ffffff;
    margin:100px 0 0 0;
}

.slider .single .containt-slider .inter-slider h2{
    max-width: 40%;
    font-size: 1.5em;
    font-weight:500;
    color: #ffffff;
}

.slider .single .containt-slider .inter-slider p a{
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    margin:50px 0 0 0;
    background-color: #256fab;
    line-height: 55px;
    padding: 0 50px;
    border-radius: 50px;
    transition: all .3s ease;
}

@media(max-width:800px){
    .slider .single .containt-slider .inter-slider h1{
        font-size: 20px;
        margin:0;
        max-width: 100%;
    }

    .slider .single .containt-slider .inter-slider h2{
        font-size: 15px;
        max-width: 100%;
    }

    .slider .single .containt-slider .inter-slider p a{
        display: none;
    }
}

.slider .single .containt-slider .inter-slider p a:hover{
    background-color: #ffffff;
    color: #256fab;
}

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

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

.wellcome .wrap section{
    flex: 1;
    overflow: hidden;
}

.wellcome .wrap section:nth-child(1){
    display: flex;
    flex:3;
    justify-content:space-around;
    align-items: center;
}


.wellcome .wrap section article{
    width: 0px;
    height: 500px;
    flex-grow: 1;
    transition:all .5s ease;
}


.wellcome .wrap section article:hover{
	width: 400px;
    height: 500px;
	opacity: 1;
	filter: contrast(120%);
}

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



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

    .wellcome .wrap section article,
    .wellcome .wrap section article:hover{
        height: 100px;
        max-height: 100px;
        margin:20px 0;
    }
}

.wellcome .wrap section article:nth-child(1) img{
    border-radius: 500px 0 0 500px;
}

.wellcome .wrap section article:nth-child(2) img{
    border-radius: 0 500px 500px 0;
}

.wellcome .wrap section:nth-child(2){
    padding: 0 5%;
    flex:2;
}

.wellcome .wrap section:nth-child(2) h2{
    font-size: 1em;
    font-weight: 600;
    color: #414141;
    text-transform: uppercase;
}

.wellcome .wrap section:nth-child(2) h3{
    font-size: 2em;
    color: #212121;
}

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

.wellcome .wrap section:nth-child(2) ul{
    background-color: #256fab;
    display: block;
    justify-content: space-around;
    list-style: none;
    border-radius: 10px;
}

.wellcome .wrap section:nth-child(2) ul li{
    padding:30px;
    color: #ffffff;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wellcome .wrap section:nth-child(2) ul li:after{
    content: "";
    position: absolute;
    width: 1px;
    height: 50%;
    background-color: #ffffff;
    right: -33%;
    opacity: .4;
    top:50%;
    transform: translateY(-50%);
}

.wellcome .wrap section:nth-child(2) ul li:last-child:after{
    display: none;
}

.wellcome .wrap section:nth-child(2) ul li span{
    font-weight: 900;
    font-size: 20px;
    padding: 0 10px;
    display: block;
}

.wellcome .wrap section:nth-child(2) ul li em{
    font-style: normal;
    display: block;
}

.wellcome .wrap section:nth-child(2) .button{
    display: inline-block;
    margin:50px 0 0 0;
    color: #ffffff;
}

.wellcome .wrap section:nth-child(2) .button a{
    display: block;
    text-decoration: none;
    background-color: #414141;
    color: #ffffff;
    line-height: 55px;
    padding: 0 50px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

.wellcome .wrap section:nth-child(2) .button a:hover{
    background-color: #414141;
}


/* banner-1 */
.banner-1{
	padding: 100px 0;
}
.banner-1 .wrap{
	display: flex;
	flex-wrap: wrap;
	gap:5%;
}

.banner-1 .wrap article{
	position: relative;
	width: 47.5%;
}

.banner-1 .wrap article:nth-child(1) .image{
	width: 80%;
	height: 650px;
	margin:0 0 0 10%;
	object-fit: cover;
	position: relative;
	z-index: 2;
}

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

	.banner-1 .wrap article:nth-child(1) .image{
		height: 200px;
		margin:0 auto 20px auto;
		border-radius: 20px;
		overflow: hidden;
	}

	.banner-1 .wrap article:nth-child(1) .image:before{
		display: none;
	}
}

.banner-1 .wrap article:nth-child(1) .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.banner-1 .wrap article:nth-child(1) .image:before{
	content: "MANRÍQUEZ";
	position: absolute;
	transform: rotate(-90deg) translateY(0%) translateX(10%);
	background: #414141;
	top:50%;
	left: -150px;
	font-size: 30px;
	font-weight: bold;
	padding:10px 50px;
	color: #ffffff;
}


.banner-1 .wrap article:nth-child(1) .image:hover:after{
	transform: translateX(-50%) translateY(-50%) scale(3);
	transition: all .3s ease;
}

h2.title-section{
	display: flex;
	line-height: 45px;
	gap:2%;
	color: #212121;
	font-size: 17px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}
h2.title-section img{
	width: 45px;
	height: 45px;
	object-fit: cover;
}

h2.title-section.white{
	color: #ffffff;
}

@media(max-width:800px){
	h2.title-section{
		display: block;
		text-align: center;
	}

	h2.title-section img{
		display: block;
		margin:auto;
	}
}

h2.title-section-2{
	display: flex;
	line-height: 30px;
	gap:1%;
	color: #212121;
	font-size: 17px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	justify-content: center;
}

h2.title-section-2 img{
	width: 30px;
	height: 30px;
	object-fit: cover;
}

h2.title-section-2 b{
	text-transform: lowercase;
}

h3.sub-title-section-2{
	font-size: 40px;
	text-align: center;
	text-transform: capitalize;
	margin:0 0 50px 0;
	color: #313131;
}

.banner-1 .wrap article:nth-child(2) h1{
	font-size: 55px;
	color: #313131;
	max-width: 600px;
	font-weight: 900;
}

.banner-1 .wrap article:nth-child(2) > p{
	color: #555555;
	font-size: 18px;
	line-height: 30px;
	margin:0 0 30px 0;
}

@media(max-width:800px){
	.banner-1 .wrap article:nth-child(2){
		text-align: center;
		padding: 20px 0;
	}
	.banner-1 .wrap article:nth-child(2) h1{
		font-size: 24px;
		text-align: center;
	}
}

.banner-1 .wrap article .columns-2{
	display: flex;
	flex-wrap: wrap;
}

.banner-1 .wrap article .columns-2 .column-1{
	width: 48%;
	padding: 1%;
}

.banner-1 .wrap article .columns-2 .column-1 .single-column{
	display: flex;
	margin:0 0 50px 0;
}

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

.banner-1 .wrap article .columns-2 .column-1 .single-column .icon{
	width: 80px;
	line-height: 80px;
}

.banner-1 .wrap article .columns-2 .column-1 .single-column .icon span{
	font-weight: 300;
	color: #BF5656;
	font-size: 30px;
	line-height: 80px;
}

.banner-1 .wrap article .columns-2 .column-1 .single-column .info h2{
	font-size: 20px;
	color: #313131;
	margin:0 0 5px 0;
}

.banner-1 .wrap article .columns-2 .column-1 .single-column .info p{
	color: #888888;
	font-weight: 500;
	line-height: 30px;
}

.banner-1 .wrap article .columns-2 .column-1 .ceo-image{
	text-align: center;
	background: #f0f0f0;
	max-width: 150px;
	margin:auto;
	padding: 30px;
	border-top: solid 4px #212121;
}

.banner-1 .wrap article .columns-2 .column-1 .ceo-image img{
	width: 100%;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin:0 0 10px 0;
}

.banner-1 .wrap article .columns-2 .column-1 .ceo-image h3{
	color: #313131;
	font-size: 18px;
}

.banner-1 .wrap article .columns-2 .column-1 .ceo-image p{
	font-size: 14px;
	color: #555555;
}

.banner-1 .wrap article .btn-1 a{
	display: inline-block;
	text-decoration: none;
	color: #ffffff;
	background: #212121;
	padding: 0 50px;
	line-height: 60px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 5px;
}


/* showcase */
.showcase{
    padding: 120px 0;
    background-color: #f9f9f9;
    overflow: hidden;
    position: relative;
}

.showcase .wrap:nth-child(1) h2{
    font-size: 20px;
    text-transform: uppercase;
    color: #414141;
}

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

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

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

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

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

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

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


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

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

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

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

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

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

.showcase .wrap:nth-child(2) article .btn-more a:hover{
    background-color: #414141;
}


/* banmner-3 */
.banner-3 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #efe8d9;
    cursor: grab !important; 
    position: relative;
}

.banner-3 img {
    margin-right: 20px; /
}

/* team */
.team{
    position: relative;
    overflow: hidden;
    background-color: #414141;
}

.team:before{
    content: "";
    position: absolute;
    border-bottom:solid 1000px #414141;
    border-left: solid 250px transparent;
    z-index: 2;
    right: 35%;
    bottom: 0;
}

.team:after{
    content: "";
    position: absolute;
    width: 35%;
    height: 100%;
    background-color: #414141;
    z-index: 2;
    right: 0%;
    top:0;
}

.team > img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top:0;
    left: 0;
    z-index: 1;
    opacity: .3;
    pointer-events: none;
}

.team .wrap{
    position: relative;
    z-index: 3;
    max-width: 1900px;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    align-items: center;
}


.team .wrap .left{
    width: 40%;
}

.team .wrap .left h3{
    font-size: 3em;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
}

.team .wrap .left h4{
    font-size: 1.5em;
    font-weight:300;
    color: #ffffff;
    margin:20px 0 30px 0;
}

.team .wrap .left .btn-more a{
    display: inline-block;
    line-height: 60px;
    background-color: #ffffff;
    color: #414141;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 50px;
    border-radius: 50px;
}


.team .tags{
    width: 50%;
    display: flex;
    gap:5%;
    justify-content: space-between;
}

.team .tags article{
    opacity: 1;
    transition: all .3s ease;
}

.team .tags article img{
    transition: all .3s ease;
}

.team .tags article.blur img{
    filter: grayscale(100%);
}

.team .tags article.blur{
    transform: translateY(20px);
}


.team .tags article h3{
    font-weight: 300;
    font-size: 1.5em;
    color: #ffffff;
}

.team .tags article p{
    font-weight: 300;
    font-size: 1em;
    color: #ffffff;
}

/* banner-5 */
.banner-5{
    padding: 120px 0;
}

.banner-5 .wrap{
    text-align: center;
}

.banner-5 h2{
    font-size: 30px;
    font-weight: 400;
}


.banner-5 h3{
    color: #414141;
    font-size: 40px;
    font-weight: 600;
    margin:20px 0;
}

.banner-5 .wrap p{
    max-width: 800px;
    margin:auto;
    line-height: 30px;
    color: #555555;
}

/* suscribe */
.suscribe{
	background: #414141;
	padding: 180px 0;
	text-align: center;
    position: relative;
}

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

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

.suscribe > img{
    position:absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    object-fit: cover;
    opacity: .4;
    z-index: 1;
}

.suscribe h2{
	color: #ffffff;
	font-size: 20px;
}

.suscribe form{
	display: flex;
	justify-content: center;
	padding: 20px 0;
}

.suscribe form input[type="email"]{
	padding: 14px 2%;
	width: 60%;
	border:none;
	background: #dedede;
	font-size: 14px;
	border-radius: 30px 0 0 30px;
	outline: none;
}

.suscribe form  input[type="submit"]{
	padding: 14px 2%;
	border:none;
	font-size: 14px;
	background: #414141;
	border-radius: 0 30px 30px 0;
	font-weight: 600;
	color: #ffffff;
	outline: none;
	cursor: pointer;
}

.suscribe p{
	font-weight: 300;
	font-size: 15px;
	color: #dedede;
}


/* page-banner */
.page-banner{
    background: #256fab;
    height: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.page-banner h1{
    padding: 200px 0 0 0;
    font-size: 1.5em;
    color: #ffffff;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin:auto;
    text-align: center;
}
@media(max-width:800px){
    .page-banner{
        max-height: 200px;
    }

    .page-banner h1{
        padding:40px 0 0 0;
    }
}

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

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #256fab; 
    mix-blend-mode: color;
}

.page-banner .image img{
    top: 50%;
    height: auto;
    width: 120%;
    position: absolute;
    transform: translateY(-50%);
    pointer-events: none;
}

/* content */
.content{
    padding: 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 input[type="password"],
.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 input[type="password"]: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 input[type="password"]::placeholder,
.content textarea::placeholder{
    color: #313131;
}

.content input[type="submit"]{
    background-color: #256fab;
    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;
    -webkit-appearance: none;
}

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

.not-found{
    padding: 100px 0;
    text-align: center;
    width: 100%;
}

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

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

.category .wrap article{
    width: 23%;
    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 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: #256fab;
    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;
    margin:10px;
}

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

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

/* sub-footer */
.sub-footer{
	background: #212121;
	padding: 100px 0 100px 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: 130px;
	margin:0 0 20px 0;
    padding: 5px 10px;
}

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

.sub-footer .wrap article h2{
	color: #ffffff;
	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: #f0f0f0;
	text-decoration: none;
	font-size: 15px;
	transition: all .3s ease;
}

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

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

@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: 50px;
	width: 50px;
	text-align: center;
	color: #414141;
	border-radius: 50px;
	background: #ffffff;
    transition: all .3s ease;
}

.sub-footer .wrap article ul.social li a:hover{
	background: #414141;
	color: #ffffff;
    box-shadow: 0 0 0 3px #ffffff;
}

/* footer */
footer{
	background: #212121;
	text-align: center;
	color: #ffffff;
	font-size: 16px;
}
footer .wrap{
    border-top:solid 1px #555555;
    padding: 40px 0;
}

footer span{
	display: block;
}

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



