/*-- Color table
    Logo Dark green: #1f5a57
    Logo Light green: #34b0a9

--*/
*{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    background-color: #fff;
    font-weight: 300;
}
/*-- Note: H1 by default has padding, on the top + bottom --*/
h1{
    font-size: 44px;
    font-weight: 400;
}
h2{
    font-size: 26px;
    font-weight: 300;
}
h3, h4, h5, h6 {
    font-size: 24px;
    font-weight: 300;
}

p {
    
}
/* -- GLOBAL CSS --*/
.container{
    width: 50%; /*-- 80% of the width of the screen --*/
    max-width: 1140px;
    margin: auto; /*-- moves it to the middle --*/
    overflow: hidden; /*-- avoid scrollbars --*/
}
ul{  /*-- list of the menu (nav) --*/
    margin: 0;  /*-- by default ul items have margins and padding, --*/
    padding: 0; /*-- so here I alter them to zero globally --*/
}
.button_1{  /* -- formatting the default button --*/
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    height: 28px;
    background: #34b0a9; /* -- button background color --*/
    border: 0;
    margin: 8px 0px 40px 0px;
    padding: 0 15px 0 15px; /* -- padding top, right, bottom, left --*/
    color: #ffffff; /* -- button text color  --*/
    cursor: pointer;
    border-radius: 2px;
}
.button_1:hover{
    background: #1f5a57;
    transition: .3s;
}

.button_2{  /* -- formatting the default button --*/
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    height: 35px;
    background: #1f5a57; /* -- button background color --*/
    border: 0;
    margin: auto;
    width: 30%;
    /* --padding: 5px 5px 5px 5px;  padding top, right, bottom, left --*/
    color: #ffffff; /* -- button text color  --*/
    cursor: pointer;
    border-radius: 2px;
}
.button_2:hover{
    background: #fff;
    transition: .3s;
    color: #1f5a57;
    font-weight: 700;
    border: 2px solid #1f5a57;
}
     
.dark{  /* -- global setting of a class to use as background color --*/
    padding: 15px;
    background: #35424a;
    color: #fff;
    margin: 10px 0 10px 0; /* -- padding top, right, bottom, left --*/
    
}
/*- ANIMATED HAMBURGER -*/
#hamburger-wrapper {
    /* display: inline-block; -*/
    display: none;
    border-radius: 0px;
    margin-right: 6px;
    position: relative;
    padding: 0px;
    cursor: pointer;
    z-index: 990;
    float: right;
}
.circle {
    width: 60px;
    height: 28px;
    position: relative;
    z-index: 990;
}
.line{
    position: absolute;
    z-index: 990;
    height: 4px;
    width: 28px;
    background: #34b0a9;
    border-radius: 8px;
    transition: all cubic-bezier(0.26, 0.1, 0.27, 1.55) 0.35s;
    /*-- transition effect cubic-bezier (start point, curve effect, end point, bounce effect) time of duration of effect --*/
}
/*- position the bars -*/
.top { top: 18%; }
.middle { top: 48%; }
.bottom { top: 78%; }
/*- create the bars movement upon click "close" -*/
.hamburger.close .top {
    transform: rotate(45deg);
    top: 48% 
}
.hamburger.close .middle,
.hamburger.close .bottom {
    transform: rotate(-45deg);
    top: 48% 
}
.hamburger.close .line{
    background: #f4f4f4;
}
/*-- end of animated hamburger --*/

/* -- HEADER SECTION --*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    box-sizing: border-box;
    background:#fff;
    color: #000;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 10px; /*-- makes it responsive --*/
    border-bottom: 1px solid #ececec;
    box-shadow: 0 0 19px -20px #000;
    opacity: 0.99;
}

header a{ /*-- links from the header --*/
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

header li,
header .dropbtn {  /*-- format each item of the menu list  --*/
    float: left; /*-- transpose from vertical to horizontal and float left --*/
    display: inline; 
    padding: 0 10px 0 15px; /*-- sequence: top right bottom left (clockwise) --*/
    font-size: 11px;
    font-weight: 400;
}

header #nav-logo{  /*-- float nav-logo to the left  --*/
    float: left;   /*-- consequently menu list (nav) falls to the right  --*/
    margin-bottom: -6px;
}
header #nav-logo h1{  /*-- set nav-logo margin to zero  --*/
    margin: 0;   /*--   --*/
}
header nav{  /*-- float nav menu to the right  --*/
    float: right;
    margin-top: 14px;
}
header .highlight, 
header .current a { /*-- formatting the header text  --*/
    color: #34b0a9;
    font-weight: 600;
}
header a:hover{
    color: #ccc;
}
.header-logo{
    width: 550px;
}
/* -- NAVBAR DROPDOWN --*/
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}
/* Dropdown button */
.dropdown .dropbtn {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  border: none;
  outline: none;
  color: #000;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  margin-top: 30px;
  background-color: #f9f9f9;
  /* min-width: 160px; */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  font-size: 10px;
  font-weight: 400;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #34b0a9;
  color: #fff;
}
#nav li a { margin-bottom: 17px; }
#nav li ul a { margin-bottom: 0; }
/* Show the dropdown menu on hover 
.dropdown:hover .dropdown-content { */
 #nav li:hover ul {
  display: block;
} 


/* -- MOBILE SIDE NAVIGATION BAR SECTION --*/
#side-menu {
    padding-top: 90px;
}
.side-nav{
    z-index: 0;
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #1f5a57;
    opacity: 0.97;
    overflow-x: hidden;
    padding-top: 5px;
    transition: 0.5s;
}
.side-nav a {
    margin-top: 0px;
    padding: 0px 0px 25px 40px;
    text-decoration: none;
    font-size: 20px;
    color: #f4f4f4;
    display: block;
    transition: 0.3s;
}
.side-nav a:nth-child(1) {
    padding-top: 0px;
    padding-right: 0px;
}
.side-nav a:nth-child(2) {
    padding-top: 90px;
}
.side-nav a:hover{
    color: #34b0a9;
}
.side-nav .btn-close{
    position: absolute;
    top: -10px;
    right: 26px;
    font-size: 56px;
    margin-left: 0px;
}

/* -- Sidenav Dropdown button --*/
/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 0px 0px 25px 40px;
  text-decoration: none;
  font-family: inherit;
  font-size: 20px;
  font-weight: 300;
  color: #f4f4f4;
  display: block;
  transition: 0.3s;
  border: none;
  background: none;
  width:100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: #34b0a9;
}
/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}
/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    background-color: #34b0a9;
    padding: 0px 0px 0px 0px;
    font-size: 10px;
    font-weight: 300;
    color: #000;
}
.dropdown-container a:hover{
    color: #1f5a57;
    font-weight: 500;
}
.dropdown-container a:nth-child(1) { 
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    border-bottom: 1px;
    border-bottom-style: solid;
    border-bottom-color:#ccc;
}
.dropdown-container a:nth-child(2) { 
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    border-bottom: 1px;
    border-bottom-style: solid;
    border-bottom-color:#ccc;
}
.dropdown-container a:nth-child(3) { 
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0px;
    font-size: 16px;
    border-bottom: 15px;
    border-bottom-style: solid;
    border-bottom-color:#1f5a57;
}

/* Style the caret down icon */
.navbar-nav .fa-caret-down {
    padding-left: 5px;
    color: #34b0a9;
}
/* Don't let the caret down icon wrap when sidebar moves */
.dropdown button {  
    white-space: nowrap;
}
.dropdown:hover .dropdown-container {
  display: block;
}
/* Open and Close side bar */
#side-menu.show-side-menu {
    width: 200px;
    margin-left: 350px;
	/*-- right: 0px;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	transition: all .5s; --*/
}
#side-menu.hide-side-menu {
    width: 0px;
    margin-left: 0px;
	/*-- right: -300px;
	-webkit-clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 100%);
	transition: all .5s; --*/
}
/*-- 
#side-menu.original-side-menu {
	position:fixed;
	width: 300px;
	right: -300px;
	height: 100vh;
	background-color:#22313F;
	color:#FAFAFA;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
	transition: all .5s;
}
--*/
/* -- SHOWCASE "HERO" SECTION --*/

#showcase{ /* -- format the showcase area and place hero image --*/
    display: block;
    overflow: hidden;
    max-height: 350px;
    min-height: 350px;
    background-image: url('../imgs/hero-2030px-min.jpg');
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin-top: 75px;
    text-align: center;
    color: #f4f4f4;
}

#showcase h1 { /* -- format the showcase h1 text --*/
    margin: 280px 55px 0px 55px;
    padding: 5px;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 0px;
    background-color: #1f5a57; /* -- 34b0a9 | 1f5a57 --*/
}

/* -- INTRO SECTION --*/

.intro{
    margin-top: 0px;
    padding: 30px 0px 30px 0px;
}
.intro p{
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
}

/* -- JUNTOS SECTION --*/
.juntos h1{
    margin-top: 0px;
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 30px;
    text-align: center;
}
.juntos p{
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    margin: 10px -11px 0px -11px;
    
}
.img-juntos {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* -- brief-solucoes SECTION --*/

#brief-solucoes{  /* -- section top margin --*/
    margin-top: 10px;
}
#brief-solucoes h1{
    margin-top: 0px;
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 30px;
    text-align: center;
}
#brief-solucoes h2{
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}
#brief-solucoes p{
    font-size: 11px;
    line-height: 1.6;
    font-weight: 400;
}

.box{ 
    padding: 10px;
    text-align: center;
}
.box p{
    text-align: center;
}
.fas{  /* -- style font awesome icons --*/
    font-size: 50px;
    color: #34b0a9;
}

/* -- LOGO SLIDER SECTION --*/
.logo-slider h1{
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 30px;
    text-align: center;
}
.logo-slider1 img{
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    opacity: .5;
}
.logo-slider p {
    font-weight: 400;
    margin: 10px -11px 0px -11px;
}
#slider {
    overflow: hidden;
    margin-bottom: 50px;
}

#slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    animation: 20s slider infinite;
}
#slider figure img {
    float: left;
    width: 20%;
    opacity: 0.7;
}

@keyframes slider {
    0% {
        left: 0;
    }
    20% {
        left: 0;
    }
    25% {
        left: -100%;
    }
    45% {
        left: -100%;
    }
    50% {
        left: -200%;
    }
    70% {
        left: -200%;
    }
    75% {
        left: -300%;
    }
    90% {
        left: -300%;
    }
    100% {
        left: -400%;
    }
}

/* -- PROPOSITO SECTION --*/
.proposito{
    margin-bottom: 70px;
}
.proposito h1{
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 30px;
    text-align: center;
}
.proposito p{
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    margin: 10px 0px 0px 0px;
    text-align: justify;
}
.proposito a:link{
    text-decoration: none;
}

/*-- ERROR SECTION --*/
.error-body { background-color: #34b0a9}
.error-page {
    background-color: #34b0a9;
    width: 400px;
    height: 350px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center; /*-- aligns all divs to ceenter --*/
}
.err-1st{
    color: #fff;
    font-size: 20px;
    padding: 0% 10% 0% 10%;
}
.err-2nd{
    color: #fff;
    font-size: 16px;
    padding: 0% 10% 0% 10%;
}
.err-3rd{
    color: #fff;
    text-align: left; /*-- aligns text inside div to left --*/
    display: inline-block /*-- centers div in regards to outer div --*/
}
.err-4th{
    margin-top: 25px;
}


/* -- ABOUT: MAIN COLUMN SECTION --*/

article#main-col{
    float: left;
    width: 65%;  /* -- use % to be responsive --*/
    margin-top: 10px;
}

/* -- ABOUT: SIDEBAR SECTION --*/

aside#sidebar{
    float: right;
    width: 30%;  /* -- use % to be responsive --*/
    margin-top: 10px;
}

/* -- SERVICES: MAIN COLUMN SECTION --*/

ul#services li {
    list-style: none;
    padding: 20px;
    border: blue solid 1px;
    margin-bottom: 5px;
    background: orange;
}


/*-- SECTION FILLER --*/
.filler{
    margin-top: 0px;
    padding: 8px 10px 50px 10px;
}
.filler h1{
    font-size: 24px;
    font-weight: 400;
    font-family: Montserrat, sans-serif;
    text-align: center;
}
.filler p{
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    /*--font-style: italic; --*/
}

#contact{
    background-color: #34b0a9;
    margin: 0px;
    font-size: 13px;
    font-weight: 400;
}
#contact .contact-left-side{
    float: left;
    display: inline; 
    width: 50%;
}
#contact .contact-right-side{
    float: right;
    display: inline; 
    width: 50%;
    padding: 5px 20px 0px 20px;
}
.contact-right-side-paragraph {
    color: #fff;
    font-size: 13px;
}
.contact-left-side img{
    width: 100%;
    height: auto;
    padding: 22px 40px 20px 20px;
}
.contact-list{
    text-decoration: none;
    list-style-type: none;
    color: #fff;
}
.contact-list i{
    color: #fff;
    vertical-align: middle;
}
.fa-whatsapp{
    margin: 4px 10px 4px 0px;
    vertical-align: middle;
    text-decoration: none;
}
.fa-sms{
    margin: 4px 10px 4px 0px;
    vertical-align: middle;
    text-decoration: none;
}
.fa-at{
    margin: 4px 10px 4px 0px;
    vertical-align: middle;
    text-decoration: none;
}


/* -- FOOTER SECTION --*/

footer {
    padding: 5px;
    margin-top: 0px;
    color: white;  /* -- footer text color --*/
    background-color: #1f5a57; /* -- footer background color --*/
    text-align: center;
    font-size: 12px;
}
/*-- STICKY FOOTER CSS --*/
html, body {
/*--  height: 100%; --*/
}
body {
  display: flex;
    min-height: 100vh;
  flex-direction: column;
}
.content {
  flex: 1;
  /*-- flex: 1 0 auto; --*/
}

.footer {
  flex-shrink: 0;
}



/* -- MEDIA QUERIES --*/
/* -- media query tip.. to test breakpoint use body{display:none;} and test size of screen. 
      A blank page will be displayed until breaking point is reached --*/

/* -- body{display:none;} --*/

/* -- MQ 1 -- Extra small devices (phones, 600px and down) */
    @media only screen and (max-width: 599px) {
    .container{ width: 90%; }
    .header-logo{ width: 130px; }
    
    header #nav-logo,
    header nav,
    header nav li {
        float: none;
        text-align: center;
        width: 100%;
    }
    header{ 
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    #showcase{ 
        margin-top: 67px; 
        min-height: 250px; 
        background-position: 42% 58%;
    }
    
    #showcase h1{ 
        font-size: 15px;
        padding: 5px 10px;
        margin: 180px 60px 0 60px;;
        }
    .intro{
        margin-top: 0px;
        padding: 30px 15px;
    }
    .intro p{
        font-size: 13px;
        line-height: 1.6;
        font-style: italic;
    }
    
    .juntos h1 { font-size: 19px; }
    
    .filler{
        margin: 0px 0px 30px 0px;
        padding: 0px 15px 0px 15px;
    }
    .filler h1 { font-size: 18px; }
    .filler p {
        font-size: 13px;
        text-align: justify;
    }
        
    #brief-solucoes h1{  /* -- section top margin --*/
        margin-top: 5px;
        margin-bottom: 20px;
        font-size: 19px;
    }
    .fas{ font-size: 40px; }
    
    .grid-wrapper{
        display: grid;
        grid-template-columns: auto auto;
        width: 100%;
            /*--end grid specs--*/
    }    
    #brief-solucoes { padding: 5px 15px 5px 15px; }
    #brief-solucoes .box { padding: 5px 5px 5px 5px; }
    #brief-solucoes .box h2 { font-size: 13px; font-weight: 500; }
    #brief-solucoes .box p { font-size: 11px; font-weight: 400; text-align: center; }

    .proposito h1{  /* -- section top margin --*/
        margin-top: 5px;
        margin-bottom: 20px;
        font-size: 19px;
    }
    .proposito p {
        font-size: 12px;
        font-weight: 400;
        text-align: justify;
    }
    #contact .contact-left-side { display: none; }
    #contact .contact-right-side { float:none; }
    .contact-right-side-paragraph {
        color: #fff;
        font-size: 13px;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }
    .contact-list{
        align-content: center;
    }
    .contact-right-side-contact-list{
        margin-left: auto;
        margin-right: auto;
        width: 200px;
    }
        
    /*-- nav bar --*/
    .navbar-nav{ display: none; }
    .header-logo { 
        float: left; ;
        display:inline;
        margin-bottom: 0px;
    }
    #hamburger-wrapper {
        display: inline-block; 
    }
    /*- .open-slide{ 
        float: right;
        display:inline;
        margin-top: 1px;
        margin-right: 5px;
    } --*/
        
    footer{
        font-size: 10px;
        padding: 5px;
    }
}

/* -- MQ 2 -- Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    /* .open-slide{display:none} */
    #hamburger-wrapper {display:none;} 
    .container{ width: 80%; }
    .header-logo{ width: 130px; }
    #showcase { margin-top: 67px; min-height: 250px; }
    #showcase h1{ font-size: 0.9em; padding: 5px 5px; margin: 205px 70px 0 70px; }
    header a{ font-size: 11px; margin-top: 0px; } 
    header li{ margin-top: 0px; padding: 0 5px 0 5px; }  
    
    /* Show the dropdown menu on hover */
/*.dropdown:hover .dropdown-content {
  display: block;
} */

.dropdown:hover > input[type="checkbox"] + .dropdown-content {
  display: block;
}
    
    
    .intro{ margin-top: 0px; padding: 30px 4px; }
    .intro p{ font-size: 0.8em; font-style: italic; }
    .box{ padding: 10px; }
    .box img{ width: 100px; }
    .box h1 { font-size: 14px; }
    .box p { font-size: 10px; text-align: center; }
    .filler{ padding: 0px 10px 30px 10px; }
    .filler h1 { font-size: 18px; }
    .filler p {  font-size: 11px; text-align: justify; }
    
    .juntos h1 { font-size: 19px; }
    
    
    #brief-solucoes h1{  /* -- section top margin --*/
        margin-top: 5px;
        margin-bottom: 20px;
        font-size: 19px;
    }
    .fas{ font-size: 40px; }
    
    .grid-wrapper{
        display: grid;
        grid-template-columns: auto auto auto;
        width: 100%;
            /*--end grid specs--*/
    }    
    #brief-solucoes .box { padding: 10px 5px 10px 5px; }
    #brief-solucoes .box h2 { font-size: 13px; font-weight: 500; }
    #brief-solucoes .box p { font-size: 11px; font-weight: 400; text-align: center; }

    .proposito h1{  /* -- section top margin --*/
        margin-top: 5px;
        margin-bottom: 20px;
        font-size: 19px;
    }
    .proposito p {
        font-size: 12px;
        font-weight: 400;
        text-align: justify;
    }
    #contact .contact-left-side { 
        display: block; 
        padding-bottom: 20px;
    }
     #contact .contact-right-side {
        float: right;
        display: inline;
        width: 50%;
        padding: 10px 0px 15px 10px;
        font-size: 13px
    }
    .contact-left-side img {
        width: 295px;
        height: auto;
        float: right;
        padding: 28px 20px 5px 0px;
    }
    #contact .contact-right-side p{
        margin-bottom: 5px;
    }
    footer{ font-size: 11px; padding: 5px;}
}

/* -- MQ 3 -- Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .container{ width: 70%; } 
    .header-logo{ width: 130px; }
    #showcase { margin-top: 67px; min-height: 250px; }
    header a{ font-size: 11px; margin-top: 0px; } 
    header li{ margin-top: 0px; padding: 0 10px 0 5px; }
    #brief-solucoes h1{  /* -- section top margin --*/
        margin-top: 5px;
        margin-bottom: 20px;
        font-size: 19px;
    }
    .fas{ font-size: 42px; }
        
    #brief-solucoes .box { 
        padding: 10px 5px 10px 5px; 
    }
    #brief-solucoes .box h2 { font-size: 14px; font-weight: 500; }
    #brief-solucoes .box p { font-size: 12px; font-weight: 400; text-align: center; }
    #contact .contact-left-side { 
        display: block; 
        padding-bottom: 20px;
    }
    #contact .contact-right-side {
        float: right;
        display: inline;
        width: 50%;
        padding: 10px 0px 15px 10px;
        font-size: 13px
    }
    .contact-left-side img {
        width: 295px;
        height: auto;
        float: right;
        padding: 28px 20px 5px 0px;
    }
    #contact .contact-right-side p{
        margin-bottom: 5px;
    }
    .error-page { width: 70%}
    footer{ font-size: 11px; padding: 5px;}
} 

/* -- MQ 4 -- Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .container{ width: 60%; } 
    .header-logo{ width: 140px; }
    header a { font-size: 13px; margin-top: 0px; } 
    /* .dropdown .dropbtn { font-size: 14px; margin-top: 0px; } */
    header .dropbtn { font-size: 13px; margin-top: 0px; } 
    header li{ font-size: 13px; margin-top: 0px; padding: 0 5px 0 20px; }
    .dropdown .dropbtn { margin: -2px 0px 0px 6px; padding: 0 5px 0 20px; }
    .dropdown-content a { font-size: 13px; }
    #showcase { margin-top: 71px; min-height: 300px; }
    #showcase h1{ font-size: 17px; padding: 5px 5px; margin: 250px 90px 0 90px; }
    .intro{ margin-top: 0px; padding: 30px 4px; }
    .intro p{ font-size: 0.9em; font-style: italic; }
    .box{ padding: 10px; }
    .box img{ width: 100px; }
    .box h1 { font-size: 14px; }
    .box p { font-size: 10px; text-align: justify; }
    .filler{ padding: 0px 10px 30px 10px; }
    .filler h1 { font-size: 18px; }
    .filler p {  font-size: 13px; text-align: justify; }
    
    #brief-solucoes h1{  /* -- section top margin --*/
        margin-top: 5px;
        margin-bottom: 20px;
        font-size: 19px;
    }
    .fas{ font-size: 42px; }
        
    #brief-solucoes .box { padding: 10px 5px 10px 5px; }
    #brief-solucoes .box h2 { font-size: 15px; font-weight: 500; }
    #brief-solucoes .box p { font-size: 13px; font-weight: 400; text-align: center; }

     .proposito h1{  /* -- section top margin --*/
        margin-top: 10px;
        margin-bottom: 30px;
        font-size: 19px;
    }
    .proposito p {
        font-size: 13px;
        font-weight: 400;
        text-align: justify;
    }
    .error-page { width: 70%}
    footer{ font-size: 11px; padding: 5px;}
}

/* -- MQ 5 -- Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .container{ width: 60%; } 
    .header-logo{ width: 150px;}
    header a{ font-size: 14px; margin-top: 0px; } 
    header .dropbtn{ font-size: 14px; margin-top: 0px; } 
    header li{ margin-top: 0px; padding: 0 5px 0 20px; }
    .dropdown .dropbtn { margin: -2px 0px 0px 6px; padding: 0 5px 0 20px; }
    .dropdown-content a { font-size: 13px; }
    #showcase { margin-top: 74px; min-height: 400px; }
    #showcase h1{ font-size: 20px; padding: 10px 10px; margin: 320px 130px 0 130px; }
    .intro{ margin-top: 0px; padding: 30px 54px 30px 54px;}
    .intro p{ font-size: 1.2em; font-style: italic; }
    .box{ padding: 10px; }
    .box img{ width: 130px; }
    .box h1 { font-size: 20px; }
    .box p { font-size: 16px; text-align: justify; }
    .filler{ padding: 0px 10px 30px 10px; }
    .filler h1 { font-size: 22px; }
    .filler p {  font-size: 18px; text-align: justify; }
    
    #brief-solucoes{  /* -- section top margin --*/
        margin-top: 10px;
    }
    #brief-solucoes h1{
        margin-top: 0px;
        margin-bottom: 30px;
        font-size: 21px;
        line-height: 30px;
        text-align: center;
    }
    #brief-solucoes h2{
        font-size: 20px;
        line-height: 1.6;
        font-weight: 400;
    }
    #brief-solucoes p{
        font-size: 13px;
        line-height: 1.6;
        font-weight: 400;
        text-align: justify;
    }

     #brief-solucoes .box{ padding: 20px; }
     #brief-solucoes .box p{ text-align: justify; }
    .fas{  /* -- style font awesome icons --*/
        font-size: 60px;
        color: #34b0a9;
    }

    /* -- PROPOSITO SECTION --*/
    .proposito{
        margin-bottom: 70px;
    }
    .proposito h1{
        margin-top: 10px;
        margin-bottom: 30px;
        font-size: 21px;
        line-height: 30px;
        text-align: center;
    }
    .proposito p{
        font-size: 14px;
        line-height: 1.6;
        font-weight: 400;
        margin: 10px 0px 0px 0px;
        text-align: justify;
    }
    .proposito a:link{
        text-decoration: none;
    }
    .error-page { width: 70%}
    footer{ font-size: 11px; padding: 5px;}
}
/* -- MQ 6 -- Very wide devices (large monitors, 1920px and up) */
@media only screen and (min-width: 1920px) {
    .container{ width: 55%; } 
    .header-logo{ width: 200px; padding: 5px;}
    header a{ font-size: 16px; margin-top: 0px; } 
    header li{ margin-top: 10px; padding: 0 15px 0 20px; }
    header .dropbtn{ font-size: 16px; }
    .dropdown-content a { font-size: 15px;}
    #showcase { margin-top: 100px; min-height: 490px; }
    #showcase h1{ font-size: 27px; padding: 10px 10px; margin: 400px 190px 0 190px; }
    .intro{ margin-top: 0px; padding: 30px 54px 30px 54px;}
    .intro p{ font-size: 1.2em; font-style: italic; }
    .box{ padding: 10px; }
    .box img{ width: 130px; }
    .box h1 { font-size: 20px; }
    .box p { font-size: 16px; text-align: justify; }
    .filler{ padding: 0px 10px 30px 10px; }
    .filler h1 { font-size: 22px; }
    .filler p {  font-size: 16px; text-align: justify; }
    .contact-right-side-paragraph p{
        color: #fff;
        font-size: 14px;
        font-weight: 400;
    }
    footer{ font-size: 12px; padding: 3px;}
}

/*-- 
    
    full breakpoint
.product_image {
    display: block;
    overflow: visible;
    max-height: 500px;
    min-height: 400px;

@media (max-width: 991px)
.product_image {
    min-height: 300px;

@media (max-width: 767px)
.product_image {
    min-height: 250px;
}

/*-- https://www.youtube.com/watch?v=Wm6CUkswsNw --*/
/*-- 28:05 --*/