* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 font-family: 'Josefin Sans', sans-serif !important;
/* font-family: 'Montserrat', sans-serif !important; */
}

/* HEADINGS */

h1, p {
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  color: #000;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* BASIC SETUP */

.page-wrapper {
  width: 100%;
  height: auto;
}

.nav-wrapper {
  width: 100%;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 9;
}

.widthImage{
  max-width: 50% !important;
  padding: 0 !important;
  border: solid red 4px;
  background-color: transparent !important;
}

.grad-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(-45deg, #CDA350, #575656, #C7C6C6);
  background-size: 400% 400%;
  	-webkit-animation: gradbar 15s ease infinite;
	-moz-animation: gradbar 15s ease infinite;
	animation: gradbar 15s ease infinite;
}

/* NAVIGATION */
#logo {
  height: 100%;
  min-height: 60px;
  max-height: 60px;
}
.navbar {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  height: 100px;
  overflow: hidden;
  background-color: #000;
}

.navbar img {
  height: 16px;
  width: auto;
  justify-self: start;
  margin-left: 20px;
}

.navbar ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  justify-self: end;
  
}

.nav-item a {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease-out;
  margin-right: 0px;
  list-style: none !important;
}

@media(max-width: 800px){
  .nav-item a {
    color: #424242 !important;
  }
}

.nav-item a:hover {
  color: #3498db;
}

/* SECTIONS */

.headline {
  width: 100%;
  height: auto;
background-image: url(../img/vetor-de-fundo-de-padrao-geometrico-branco-e-cinza_53876-136510.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: top left;
  display: flex;
  padding: 10px 10px;
  justify-content: space-around;
}

.features {
  width: 100%;
  height: auto;
  background-color: #f1f1f1;
  display: flex;
  /* padding: 50px 20px; */
  justify-content: space-around;
}

.feature-container {
  flex-basis: 30%;
  margin-top: 10px;
}

.feature-container p {
  color: #000;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 15px;
}

.feature-container img {
  width: 100%;
  margin-bottom: 15px;
}

/* SEARCH FUNCTION */

#search-icon {
  font-size: 0.9rem;
  margin-top: 3px;
  margin-left: 15px;
  transition: color 0.3s ease-out;
}

#search-icon:hover {
  color: #3498db;
  cursor: pointer;
}

.search {
  transform: translate(-35%);
  -webkit-transform: translate(-35%);
  transition: transform 0.7s ease-in-out;
  color: #3498db;
}

.no-search {
  transform: translate(0);
  transition: transform 0.7s ease-in-out;
  float: right
}

.search-input {
  position: absolute;
  top: -4px;
  right: -125px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s ease;
}

.search-active {
  opacity: 1;
  z-index: 0;
}

input {
  border: 0;
  border-left: 1px solid #ccc;
  border-radius: 0; /* FOR SAFARI */
  outline: 0;
  padding: 5px;
}

/* MOBILE MENU & ANIMATION */

.menu-toggle .bar{
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-toggle {
  justify-self: end;
  margin-right: 0px;
  display: none;
}

.menu-toggle:hover{
  cursor: pointer;
}


#mobile-menu.is-active .bar:nth-child(2){
  opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1){
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3){
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes gradbar {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

/* Media Queries */

  /* Mobile Devices - Phones/Tablets */
  @media only screen and (max-width: 2300px) { 
  .menu-toggle, .bar {
    display: block;
    cursor: pointer;
  }
    .navbar ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: start;
    top: 5px;
    background-color: rgb(65 70 75);
    width: 22%;
    height: 100%;
    transform: translate(-101%);
    text-align: center;
    overflow: hidden;
    padding-bottom: 201px;
  }
  
  .navbar li {
    padding: 15px;
  }
    .navbar li:first-child {
    margin-top: 50px;
  }
  
  .navbar li a {
    font-size: 1rem;
  }
    h1 {
    font-size: 1.9rem;
  }
  
  h2 {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.8rem;
  }
    .mobile-nav {
  transform: translate(0%)!important;
}
.nav-item a{
  color: #222;
}
}

@media only screen and (max-width: 720px) { 
  .features {
    flex-direction: column;
    padding: 50px;
  }
  
  /* MOBILE HEADINGS */
  
  /* h1 {
    font-size: 1.9rem;
  }
  
  h2 {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.8rem;
  } */
  
  /* MOBILE NAVIGATION */
     
  /* .navbar ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: start;
    top: 102px;
    background-color: #fff;
    width: 100%;

    transform: translate(-101%);
    text-align: center;
    overflow: hidden;
    padding-bottom: 120px;
  }
  
  .navbar li {
    padding: 15px;
  } */
  
  /* .navbar li:first-child {
    margin-top: 50px;
  }
  
  .navbar li a {
    font-size: 1rem;
  } */
   
  /* .menu-toggle, .bar {
    display: block;
    cursor: pointer;
  } */
  
  .mobile-nav {
  transform: translate(0%)!important;
}
  
  /* SECTIONS */
  
  /* .headline {
    height: 20vh;
  }
     */
  .feature-container p {
    margin-bottom: 25px;
  }
  
  .feature-container {
    margin-top: 20px;
  }
  
  .feature-container:nth-child(2) {
    order: -1;
  }
  
  /* SEARCH DISABLED ON MOBILE */
  
  #search-icon {
    display: none;
  }
  
  .search-input {
  display: none;
 }
  
}

.card{
  background-color: #575656 !important;
  color: #fff;
}
.card-subtitle{
  color: #fff;
}
.adjustImage{
  width: auto;
}

/*carousel*/
.container {
  /* padding: 4rem 2rem; */
  margin: 0 auto;
  max-width: 75rem;
  /* width: 90%; */
}

.main .container .glider-contain .glider .card-image {
  margin-right: 0.2rem;
  /* background: #ffffff; */
  border: none;
  outline: none;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); */
  /* border-radius: 2px; */
}
.main .container .glider-contain .glider .card-image .imageW1 {
  display: block;
  position: relative;
  left: 0;
  bottom: 0;
  width: auto;
  height: 250px;
  object-fit: cover;
  size-adjust: auto;
  /* -o-object-fit: cover;
     object-fit: cover;
     size-adjust: auto; */
}
.main .container .glider-contain .glider-prev,
.main .container .glider-contain .glider-next {
  font-size: 1.5rem;
  background: #454545;
  color: #ffffff;
  margin-top: 1rem;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 50%;
}
.main .container .glider-contain .glider-prev .fas,
.main .container .glider-contain .glider-next .fas {
  margin-left: 1rem;
}

@media only screen and (max-width: 768px) {
  .main .glider-contain .glider-prev,
.main .glider-contain .glider-next {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .main .glider-contain .dots {
    display: none;
  }
}

.grey {
  background-color: #565656;
  padding: 10px;
}

/*arrow svg*/

.svg-inline--fa {
    display: inline-block;
    margin-left: 17px !important;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}

.footer {
  padding-top: 60px;
  padding-bottom: 60px;
}

.icons {
  height: 60px !important;
  width: 55px !important;
  margin-left: 10px;
}

.glider-slide{
  width: 100%;
}

.glider-slide:nth-child(1) {
    min-width: 20%;
}
.glider-slide:nth-child(2) {
    min-width: 20% !important;
}
.glider-slide:nth-child(3) {
    min-width:  35%;
}
.glider-slide:nth-child(4) {
    min-width:  20%;
}
.glider-slide:nth-child(5) {
    min-width:  45%;
}
.glider-slide:nth-child(6) {
    min-width:  25%;
}

.gliderIconsUS a:nth-child(1){
  min-width: 20%;
}

.gliderIconsUS a:nth-child(2){
  min-width: 20%;
}

.gliderIconsUS a:nth-child(3){
  min-width: 20%;
}
.gliderIconsUS a:nth-child(4){
  min-width: 15%;
}
.gliderIconsUS a:nth-child(5){
  min-width: 25%;
}
.gliderIconsUS a:nth-child(6){
  min-width: 20%;
}


.gliderIconsES a:nth-child(1){
  min-width: 20%;
}

.gliderIconsES a:nth-child(2){
  min-width: 20%;
}

.gliderIconsES a:nth-child(3){
  min-width: 35%;
}
.gliderIconsES a:nth-child(4){
  min-width: 20%;
}
.gliderIconsES a:nth-child(5){
  min-width: 46%;
}
.gliderIconsES a:nth-child(6){
  min-width: 30%;
}

.gliderIconsCN a:nth-child(1){
  min-width: 10%;
}

.gliderIconsCN a:nth-child(2){
  min-width: 10%;
}

.gliderIconsCN a:nth-child(3){
  min-width: 16%;
}
.gliderIconsCN a:nth-child(4){
  min-width: 16%;
}
.gliderIconsCN a:nth-child(5){
  min-width: 18%;
}
.gliderIconsCN a:nth-child(6){
  min-width: 30%;
}

.form-label {
  margin-top: 10px;
  margin-bottom: 5px;
}
.shadown {
-webkit-box-shadow: 1px 17px 31px -16px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 17px 31px -16px rgba(0,0,0,0.75);
box-shadow: 1px 17px 31px -16px rgba(0,0,0,0.75);
}
.btn-primary{
  background-color: #CDA350 !important;
  border: none !important;
}
.boxCard {
  height: 100%;
  min-height: 200px;
  min-width: 350px !important;
  
  /* max-height:  300px; */
}
.svg-inline--fa {
    display: inline-block;
    margin-left: 16px !important;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}
.anchorColor:hover{
  color: #CDA350 !important;
}



/*zoom*/

.gallery {
  width: 600px;
  margin: auto;
  border-radius: 3px;
  overflow: hidden;
  /* position: relative; */
}
.img-c {
  width: 200px;
  height: 200px;
  float: left;
  position: relative;
  overflow: hidden;
}

.img-w {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform ease-in-out 300ms;
}

.img-w img {
  display: none;
}

.img-c {
    transition: width ease 400ms, height ease 350ms, left cubic-bezier(0.4, 0, 0.2, 1) 420ms, top cubic-bezier(0.4, 0, 0.2, 1) 420ms;
}

.img-c:hover .img-w {
  transform: scale(1.08);
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
}

.img-c.active {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  z-index: 2;
  /* transform: translateX(-50%); */
}

.img-c.postactive {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.img-c.active.positioned {
  left: 0 !important;
  top: 0 !important;
  transition-delay: 50ms;
}

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 75%;
    /* max-width: 75%; */
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.out {
  animation-name: zoom-out;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(1)}
    to {-webkit-transform:scale(2)}
}

@keyframes zoom {
    from {transform:scale(0.4)}
    to {transform:scale(1)}
}

@keyframes zoom-out {
    from {transform:scale(1)}
    to {transform:scale(0)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

a{
  color: #Fff;
  text-decoration: none;
}


/*lightbox*/
.lightbox-toggle {
  color: black;
}
.backdrop {
  z-index: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000;
}
.box {
  z-index: 2;
  position: fixed;
  opacity: 1;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  width: 600px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  -moz-box-shadow: 0px 0px 5px #444444;
  -webkit-box-shadow: 0px 0px 5px #444444;
  box-shadow: 0px 0px 5px #444444;
}
.box * {
  z-index: 3;
}
.box .close {
  float: right;
  cursor: pointer;
}


.bgText{
  background-color: #ffffffc1;
}

.colorText{
  color: #222;
  text-align: left;
}

@media(max-width: 768px){
  .bgPetroquimico{
    min-height: 100vw !important;
  }
  .bgRenovaveis{
    min-height: 100vw !important;
  }
  .textPadding{
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.bgPetroquimico{
  background-image: url(../img/carousel/imagem15.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height:45vw;
}

.bgRenovaveis{
  background-image: url(../img/carousel/imagem14.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height:45vw;
}

.bgCorrida{
  background-image: url(../img/carousel/imagem11.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height:45vw;
}

.bgSolidos{
  background-image: url(../img/carousel/imagem12.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height:45vw;
}

.bgOleos{
  background-image: url(../img/carousel/imagem6.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height:45vw;
}
.bgPetrolifero{
  background-image: url(../img/carousel/imagem10.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height:45vw;
}



.formHeight{
  padding-top: 50px;
  padding-bottom: 50px;
}

.card-body {
    flex: inherit !important;
}


/*carousel header*/
.gallery {
  /* background: #EEE; */
}

.gallery-cell {
  width: 66%;
  /* height: 350px !important; */
  /* margin-right: 10px; */
  object-fit: cover;
}
.text-center{
  text-align:center
}
 


/*slick carousel*/
.slide {
  height: 300px !important;
  background-size: cover;
  background-position:center center;
  /* background-repeat: no-repeat; */
  /* width: 100% !important; */
}

/* .slick-slide{
  width: 100% !important;
} */

.textHide{
  display: none !important;
}
.slideHeight {
  height: 100px !important;
  width: auto !important;
}


/*owl carousel*/
.carousel-wrap {
  /* margin: 90px auto; */
  padding: 0 5%;
  width: 100%;
  position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}

/* end fix */
.owl-nav > div {
  margin-top: -14px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 52px;
}
.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}

.active {
  width: auto !important;
}