body {
    font-family: 'Lato', sans-serif;
}

button {
	-webkit-appearance: none;
	-webkit-border-radius: none;
	border-radius: 0;
}


.navbar {
    background-color: #fff;
}

.navbar-brand img {
    width: 260px;
}

@media (max-width:768px) {
	.navbar-brand img {
		width: 240px;
	}
}

a.nav-link:link,
a.nav-link:visited {
    font-size:18px;
    padding:10px 20px;
    margin:0 5px;
    display: inline-block;
    color:#562b2a;
}

button.whatsapp-button, .whatsapp-button {
    text-decoration: none;
    padding:10px 30px;
    background-color: #562b2a;
    border-radius:5px;
    color:#fff;
    margin-left:50px;
    border:none;
}

.whatsapp-button svg {
    fill:#fff;
    margin-right:6px;
}

.whats-float{
	display: none;
}

@media (max-width:768px) {

	.whats-float{
		display: block;
		position:fixed;
		width:60px;
		height:60px;
		bottom:20px;
		right:20px;
		background-color:#25d366;
		color:#FFF;
		border-radius:50px;
		text-align:center;
		font-size:30px;
		box-shadow: 2px 2px 3px #999;
		z-index:100;
	}
	
	.whats-float:visited, .whats-float:hover {
		color: white;
	}

	.my-float{
		margin-top:16px;
	}
	
	
}

/* ========================HERO SECTION======================== */

.hero {
    background:url('../img/hero-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width:100%;
    height:100vh;
}

.hero-heading {
    font-size:100px;
    padding-top:-30%;
    color:#fff;
    font-family: 'minerva-modern', serif;
    /*animation: fadeIn .5s ease-in-out .6s ;*/
    animation: fadeIn 1.5s;
    animation-fill-mode: forwards;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

@media (max-width:768px) {
	
	.hero-container {
		padding-top:40%;
	}
	
    .hero-heading {
        font-size:50px;
        padding-top:0%;
        text-align: center;
        animation: fadeInMobile 1.5s;
		animation-fill-mode: forwards;
    }

    .hero {
        background:linear-gradient(to right bottom, rgba(0, 0, 0, 0.582),rgba(0, 0, 0, 0.726)),url('../img/hero-bg-mobile.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width:100%;
        height:100vh;
    }

    button.whatsapp-button {
        margin-left: 0px;
    }
    
}

/* ========================ABOUT SECTION======================== */

.about-content-upper-heading {
    font-family: 'sofia-pro', sans-serif;
	font-size:40px;
    font-weight:200;
    color:#562b2a;
}

.about-content-main-heading {
    font-size:62px;
    font-weight:400;
    font-family: 'minerva-modern', serif;
	color: #382F2D;
}

.pad-50-120 {
	padding-left: 50px;
	padding-right: 120px;
}

.about-content-para, .about-content-para p {
    font-size:20px;
    line-height:1.6;
    color:#3d3d3d;
}

@media (max-width:768px) {
	
	.pad-20-mob {
		padding: 20px;
	}
	
    .about .row {
        flex-direction: column-reverse;
    }

    .about-img {
        padding-top:0;
        margin-bottom:0px;
    }

    .about-content-upper-heading {
        font-size:20px;
    }

    .about-content-main-heading {
        font-size:35px;
    }
	
	.about-content-para {
		font-size: 18px;
		line-height: 1.4;
	}
}



/* ========================SERVICES SECTION======================== */

.services {
    padding:60px 0;
    background:linear-gradient(to right bottom, rgb(255, 207, 192), rgb(255, 231, 180));
}

.services-heading-main {
	font-family: 'sofia-pro', sans-serif;
	font-weight: 200;
    font-size:40px;
	color: #562b2a;
}

.services-heading-sub {
	font-family: 'sofia-pro', sans-serif;
	font-weight: 200;
    font-size:20px;
    color:#7b7b7b;
}

.service-title {
    text-decoration: none;
    display: block;
	-webkit-appearance: none;
	-webkit-border-radius: none;
    margin:25px 0;
    text-align: left;
    font-size:24px;
    color:#3d3d3d;
    padding:10px 20px;
    border-radius:3px;
}

.service-title:hover {
    background-color: #f5f5f550;
    cursor: pointer;
}

.modal-header {
    border:none;
	padding: 0;
	margin: 0;
}

.modal-body {
    font-size:14px;
    line-height: 1.8;
}

.modal-heading {
	font-family: 'sofia-pro', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom:10px;
	margin-top: -40px;
}

.modal-dialog {
    max-width:600px;
    display: flex;
    justify-content: center;
    align-items: center;
    height:100%;
}

.modal-content {
    padding:20px;
}

@media (max-width:768px) {
    .services-heading-main {
        font-size:30px;
    }
	.services-heading-sub {
		font-size:16px;
	}
	
	.service-title {
		margin: 5px 0;
	}
}

/* ========================CAROUSEL SECTION======================== */

.carousel {
    padding: 70px 0;
}

.carousel img {
    padding:60px;
    border-radius: 5px;
    
}

.slick-slide:focus {
    outline: none;
}

.slick-active img {
    padding:0px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    
}

.prev-btn {
    display: inline-block;
    position: absolute;
    top: 45%;
    z-index: 11;
    left: 18%;
    border: none;
    background-color: #fff;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    border-radius: 100px;
}

.next-btn {
    display: inline-block;
    position: absolute;
    top: 45%;
    z-index: 11;
    right: 18%;
    border: none;
    background-color: #fff;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    border-radius: 100px;
}

/* ========================CONTACT US======================== */

.contact-us {
    background:url('../img/contact-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    padding:60px 0;
}

.contact-us-heading {
    color:rgb(236 191 175);
    font-family: 'sofia-pro', sans-serif;
	font-weight: 200;
	font-size:40px;
    margin-bottom:50px;
}

.contact-item {
    display: flex;
    color: #fff;
/*    align-items: center;
    margin-top:20px;*/
    align-items: top;
    margin-top: 10px;
}

.contact-item-left {
    fill:rgb(44,31,31);
    background-color:#fff;
    width:55px;
    height:55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:50%;
    margin-right:20px;
	cursor: pointer; 
}

.contact-item-title {
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin-bottom:0;
}

.contact-item-data {
    color:rgb(187,142,111);
    font-size:16px;
}

.social-icons {
    display: flex;
    margin-top:20px;
    margin-bottom:30px;
}

.link-insta {
	text-decoration: none;
	color:rgb(187,142,111);
    font-size:16px;
}

@media (max-width:768px) {
    .contact-item-left {
        width:40px;
        height:40px;
        margin-right: 10px;
        margin-top: 6px;
    }

    .contact-item-left svg {
        width:18px;
        height: 18px;
    }

    .contact-us-left{
        margin-bottom: 30px
    }

    .contact-item-data {
        font-size:15px;
    }
}

/* ========================FOOTER======================== */

.footer {
    padding:30px 0;
    text-align: center;
    font-size:20px;
    position:relative;
}

.footer-to-top {
    position: absolute;
    right:5%;
    bottom:20px;
    background-color: #562b2a;
    width:55px;
    height:55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:3px;
    cursor: pointer;
}

.footer-to-top svg {
    fill:#fff;
}

.footer-txt {
    margin-bottom: 0px;
}

@media (max-width:768px) {
    .footer-txt {
        margin-bottom: 0px;
        font-size:16px;
    }
}


@keyframes fadeIn {
    0% {
        opacity:0;
        padding-top:-10%;
    }
    100% {
        opacity: 1;
        padding-top:30%;
    }
}

@keyframes fadeInMobile {
    0% {
        opacity:0;
        padding-top:-10%;
    }
    100% {
        opacity: 1;
        padding-top:70%;
    }
}

.depoimento-individual{
    padding: 0 15px 15px;
}

.imagem-depoimento{
    background-color: #00A982;
    z-index: 1;
    position: relative;
    width: 96px;
    height: 96px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    margin: 0 0 -30px 30px;
}

.sem-imagem-depoimentos{
    background-image: url(../img/sem-imagem-depoimentos.png);
}

.texto-depoimento{
    -webkit-box-shadow: 0 0 10px 10px rgba(0,0,0,0.05);
    box-shadow: 0 0 10px 10px rgba(0,0,0,0.05);
    background-color: #FFFFFF;
    padding: 50px 30px 30px;
    min-height: 250px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.texto-depoimento span{
    font-size: 18px;
    font-weight: 700;
    color: #562b2a;
    line-height: 24px;
}

.bg-galeria{
    background: linear-gradient(to right bottom, rgb(255, 207, 192), rgb(255, 231, 180));
}

.espaco-topo-solucao{
    height: 140px;
}

.espaco{
    height: 60px;
}

.whatsapp-button.whats-servico{
    background-color: #25d366;
    margin-left: 0;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 30px;
}

.galeria-individual{
    display: block;
    position: relative;
    height: 250px;
    margin: 0 15px;
}

.galeria-individual img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next{
    position: absolute;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    background-size: auto 14px;
    width: 30px;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-position: center;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

.owl-carousel .owl-nav .owl-prev{
    background-image: url('../img/chevron-left-solid.svg');
    left: 10px;
}

.owl-carousel .owl-nav .owl-next{
    background-image: url('../img/chevron-right-solid.svg');
    right: 10px;
}

.slick-slide img{
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:768px) {
    .espaco-topo-solucao{height: 60px;}
    .espaco{height: 30px;}
    .galeria-individual{margin: 0;}
    .whatsapp-button.whats-servico{margin-bottom: 0;}
    .bg-galeria .espaco{height: 15px;}
}