.slider{
    margin-top: 39px;
    height: 85vh;
    position: relative;
    border-radius: 13px;
    width: 100%;
    background: #ededed; /* darckblue */
}

.prev, .next{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 50px;
	padding: 15px;
	cursor: pointer;
	color: #fff;
	transition: 0.1s;
	user-select: none;
}
.prev:hover, .next:hover{
	color: #ffffff; /* blue */
}
.next{
	right: 0;
}
.myslide{
	height: 100%;
    border-radius: 13px;
	display: none;
	overflow: hidden;
    background-color: #000000;
    z-index: 11111;
    justify-content: center;
    text-align: center;
}

.myslide.fade{
    background-color: #000000;
    justify-content: center;
}

.prev, .next{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 50px;
	padding: 15px;
	cursor: pointer;
	color: #046ab8;
	transition: 0.1s;
	user-select: none;
}
.prev:hover, .next:hover{
	color: #046ab8; /* blue */
}
.next{
	right: 10;
}
.dotsbox{
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 20px;
	cursor: pointer;
}
.dot{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
}
/* /2 */

/* javascript */
.active, .dot:hover{
	border-color: #046ab8; /* blue */
}
/* /javascript */

/* muslide add fade */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}
/* /muslide add fade */

/* 3 */
.txt{
	position: absolute;
    color: #fff;
    letter-spacing: 1.8px;
    line-height: 25px;
    border-radius: 20px;
    width: 50%;
    top: 44%;
    left: 5%;
    padding: 20px;
    -webkit-animation-name: posi;
    -webkit-animation-duration: 2s;
    animation-name: posi;
    animation-duration: 2s;
    z-index: 1;
    background-color: #046ab8;
    text-align: left;
}

.txt a{
    background-color: #046ab8;
    color: #e2e2e2;
    padding: 15px;
    text-align: center;

}

/*@-webkit-keyframes posi {
  from {left: 29%;}
  to {left: 29%;}
}*/


/*@keyframes posi {
  from {left: 29%;}
  to {left: 29%;}
}*/

.txt h1{
    color: #222222;
    font-size: 34px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 33px;
}

.txt a{
    background-color: red;
    color: #e2e2e2;
    padding: 15px;
    font-size: 10px;
}
.txt a:hover{
    background-color: rgb(255, 255, 255);
    color: red;
}

.txt p{
	font-size: 15px;
    color: #c3c3c3;
}
/* /3 */

/* 4 */
.slider img{
	transform: scale(1, 1);
	-webkit-animation-name: zoomin;
  	-webkit-animation-duration: 40s;
  	animation-name: zoomin;
  	animation-duration: 40s;
    height: 100%;
    background-color: #000000;
}
@-webkit-keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1, 1);}
}


@keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1, 1);}
}
/* /4 */



/* 5 */
@media screen and (max-width: 800px){

    .slider{

        border-radius: 0px;
    }

	.myslide{
		height: 500px;
	}
	.txt{
		letter-spacing: 1px;
        line-height: 21px;
        top: 39%;
        left: 3%;
		width: 71%;
        padding: 5px;
	}

	@-webkit-keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}


	@keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}

	.txt h1{
		font-size: 22px;
        margin-bottom: -3px;
	}
	.txt p{
		font-size: 13px;
        line-height: 22px;
	}

    .slider{
        height: 26vh;
        display: flex;
        flex-flow: column;
        justify-content: center;
    }
    
    .myslide{
        height: auto;
    }

    .myslide{
        background-color: #ff0000;
    }

}
/* /5 */

/* 6 */
@media screen and (max-width: 520px){
	.txt h1{
		font-size: 22px;
        margin-bottom: -3px;
	}

    .txt p{
		font-size: 13px;
        line-height: 22px;
	}

	.sign{
		margin-right: 20px;
	}
	.sign a{
		font-size: 12px;
	}

    .slider img{
        height: 120%;
    }
}

.about{
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    align-items: center;
    justify-content: center;
    background-color: #ededed;
}



.about .box{
    display: flex;
    flex-flow: column;
    width: 45%;
    justify-content: center;
}

.about .box img{
    width: 60%;
    border-radius: 515px;
    margin-left: -100px;
}

.about .box .up .header{
    border-left: 5px solid #046ab8;
    padding-left: 10px;
    margin-bottom: 15px;
}

.about .box .up p{
    color: #222222;
    font-size: 17px;
    font-weight: 500;
    text-align: justify;
    padding-bottom: 20px;
    margin-bottom: 20px;
    
}

.about .box .up .header h1{
    color: #5c5c5c;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 8px;
}

.about .box .up .header p{
    color: #262626;
    font-size: 30px;
    font-weight: 500;
    
}

.about .box .down{
    width: 100%;
    background-color: #046ab8;
    border-radius: 5px;
    padding: 10px 20px;
}

.servicos{
    padding: 70px 20px 5px 20px;
    text-align: center;
    background-color: #ededed;
}

.servicos h1{
    color: #1e1e1e;
    font-weight: 500;
    font-size: 40px;
}

.services{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.services .box{
    width: 33.3%;
    background: #2c2c2c;
    padding: 25px;
}

.services .box:nth-child(1){
    background: #3b5998;
}

.services .box:nth-child(2){
    background: #25D366;
}

.services .box:nth-child(3){
    background: #E1306C;
}

.services .box:nth-child(4){
    background: #30ace1;
}

.services .box:nth-child(5){
    background: #f15c11;
}

.services .box h1{
    font-size: 90px;
    color: #1d1d1d;
}

.services .box h2{
    font-size: 40px;
    font-weight: 500;
    color: #1d1d1d;
}

.services .box p{
    font-size: 16px;
    text-align: justify;
}

.projects{
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
}

.project{
    background-color: #ffffff;
    padding: 10px;
}

.projects .header{
    border-left: 5px solid rgb(11, 3, 58);
    padding-left: 10px;
    margin-bottom: 15px;
}

.projects .header h1{
    color: #5c5c5c;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 8px;
}

.projects .header p{
    color: #000000;
    font-size: 30px;
    font-weight: 600;
}

.projects .project{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.projects .project .box{
    width: 23%;
    padding: 10px;
    margin: 5px;
    background-color: white;
    box-shadow: 0px 0px 2px 0px #c9c9c9;
}

.projects .project .box h2{
    font-size: 15px;
    position: absolute;  
    margin: 5px;
    padding: 5px;
    background-color: #09193d;
    border-radius: 5px;
    color: #cfcfcf;
}

.projects .project .box img{
    width: 100%;
    height: 150px;
}

.projects .project .box h1{
    font-size: 15px; 
    padding: 8px 0px;
    color: #1d1d1d;
}

.projects .project .box a{
    font-size: 13px;
    padding: 5px;
    margin-bottom: 5px !important;
    background-color: #363636;
    border-radius: 5px;
    color: #ffffff;
}

.projects .project .box a:hover{
    font-size: 13px;
    padding: 5px;
    margin-bottom: 5px !important;
    background-color: #1f1f1f;
    border-radius: 5px;
    color: #cfcfcf;
}

@media (max-width:991px){
    .about{
        display: flex;
        flex-flow: column;
        padding: 7px;
    }

    .about .box{
        width: 100%;
    }

    .about .box img{
        width: 60%;
        border-radius: 515px;
        margin-left: 0px;
        margin: 19px 0px;
    }

    .about .box .up .header{
        border-left: 4px solid #046ab8;
        padding-left: 5px;
        margin-bottom: 0;
        margin-left: 10px;
    }

    .about .box .up p{
        font-size: 15px;
        font-weight: 500;
        padding-bottom: 0;
        margin-bottom: 10px;
        border-bottom: 0px solid black; 
    }

    .about .box .up .header h1{
        font-size: 16px;
        margin-bottom:-16px;
        padding-bottom: 0px;
    }

    .about .box .up .header p{
        font-size: 25px;
        margin-top: 10px;
    }

    .about .box .down{
        width: 40%;
        border-radius: 6px;
        padding: 7px 15px;
        text-align: center;
    }

    .servicos{
        padding: 5px;
        text-align: left;
        background-color: #ededed;
    }
    
    .servicos h1{
        font-weight: 500;
        font-size: 28px;
    }

    .services{
        flex-flow: column;
    }
    
    .services .box{
        width: 100%;
        background: #2c2c2c;
        padding: 10px;
    }

    .services .box h1{
        font-size: 50px;
        line-height: 51px;
        color: #1d1d1d;
    }
    
    .services .box h2{
        font-size: 30px;
        line-height: 32px;
        font-weight: 500;
        color: #1d1d1d;
    }
    
    .services .box p{
        font-size: 16px;
        text-align: justify;
    }
    
}
