/* Version 2.0 */

/* Vars */
:root {
  --white: #ffffff;
  --black: #000000;
  --blue: #1e90ff;
  --yellow: #e0ae00;
  --yellowVariant: #ffe67d;
  --blue: #244e9b;
  --blueVariant: #2c4174;
  --grey: #706f6f;
  --bgMainGrey: #71706f;
  --greyVariant: #575756;
  --bgGrey: #ededed;
}

/* Globals */
* {
     font-family: 'raleway', sans-serif;
}

.btn:hover {
  color: var(--blue);
}

body,
html {
    height: 100%;
    margin: 0;
}

section {
  padding-top: 77px;
}

.offSection {
  padding-top: 10px;
}

/* Fonts Colors */
.white {
  color: var(--white) !important;
}

.black {
  color: var(--black) !important;
}

.yellow {
  color: var(--yellow);
}

.yellowVariant {
  color: var(--yellowVariant);
}

.blue {
  color: var(--blue);
}

.blueVariant {
  color: var(--blueVariant);
}

.grey {
  color: var(--grey);
}

.greyVariant {
  color: var(--greyVariant);
}

/* Backgorun Colors */
.bgWhite {
  background-color: var(--white);
}

.bgBlue {
  background-color: var(--blue);
}

.bgBlueVariant {
  background-color: var(--blueVariant);
}

.bgYellow {
  background-color: var(--yellow);
}

.bgYellowVariant {
  background-color: var(--yellowVariant);
}

.bgGrey {
    background-color: var(--bgGrey);
}

.bgMainGrey {
  background-color: var(--bgMainGrey);
}

/* Text Size */
.titleBanner {
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
}

.subTitleBanner {
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
}

.shadow {
  text-shadow: 2px 2px 4px #000000;
}

.sliderTitle {
  font-size: 24px;
  font-weight: 700;
}

.sliderTitle2 {
  font-size: 14px;
  font-weight: 700;
}

.sectionTitle {
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
}

.sectionSubTitle {
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
}


.mainText {
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
}

.pTitle {
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
}

.subTitleComoTrabalhamos {
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
}

.btnTexts {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
}

.iconText {
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
}

.iconTextBold {
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
}

.contactText {
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
}

/* Nav */ 
nav ul {
  align-items: center;
}

nav ul li {
  text-align: center;
  text-transform: uppercase;
  align-items: center;
  padding: 0 10px;
}

.nav-social {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.item-social {
  display: inline;
  margin: 0;
}

#brand {
  padding-right: 80px;
}

/* Components */

.bg {
  top: 0;
  background-image: url("./../img/EA_BannerSite.png");
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slideContent {
  display: flex;
  padding-top: 45vh;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.carousel-caption {
  top: 50%;
  margin: 0 auto;
  transform: translateY(-50%);
  width: 27%;
}

.btnGroup {
  display: flex;
  justify-content: space-evenly;
}

.btnSlider {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  margin: 0 25px;
  padding: 12px 20px;
  border-radius: 8px;
  width: 180px;
  height: 60px;
  border: 0px;
}

.spacer {
  margin: 0 auto;
  width: 25%;
  height: 4px;
}

.cardTrab {
  display: flex;
  align-items: center;
  padding: 10px;
  height: 100%;
  background-color: var(--white);
}

.cardContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.gallery { 
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.gallery a {
  border: 2px solid #fff;
}

.gallery a:hover {
  box-shadow: 0 0 10px rgb(0, 0, 0,.1);
}

/* Form */

#feedback {
  display: none !important;
}

input, select {
  width: 100%;
  height: 45px;
  background-color: var(--bgGrey) !important;
  color: var(--blueVariant) !important;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  resize: vertical;
  cursor: inherit;
  line-height: inherit;
  outline: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  background-color: var(--bgGrey) !important;
  color: var(--blueVariant) !important;
}

#contact button{
  margin: 15px 0 20px 0;
  width: 100%;
  background-color: var(--blue);
}

#contact i {
  color: var(--blue);
}

#contact p {
  margin-left: 1rem
}

.input-wrapper label {
  background-color: var(--blue);
  border-radius: 5px;
  color: var(--white);
  margin: 10px 0;
  padding: 6px 20px
}

.input-wrapper label i {
  margin-right: 10px;
}

.input-wrapper label:hover {
  background-color: var(--blue)
}

.titleContact h3{
  margin-bottom: 120px;
}

.loader {
  display: none;
  border: 10px solid var(--white);
  border-radius: 50%;
  border-top: 10px solid var(--yellow);
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1.5s linear infinite; /* Safari */
  animation: spin 1.5s linear infinite;
}

#processo img {
  max-width: 150px;
}


/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 575.98px) {  
  
  .bg {
    height: 70vh;
  }

  .btnSlider {
    margin: 0 10px;
    padding: 10px 5px;
    width: 160px;
    height: 60px;
    border: 0px;
  }

  .slideContent {
    display: flex;
    padding-top: 25%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }

  .spacingSubTitle {
    padding-top: 35px;
  }

  .spacingTitle {
      padding-bottom: 35px;
  }

  .nav-inline {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
  }
  
  #dot-nav {
    margin-right: 0;
  }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .cardTrab {
    text-align: center;
    margin: 0 auto;
  }

  .cardTrab i {
    margin: 20px auto;
  }  

  .iconTextBold {
    font-size: 14px;
  }

  .sectionTitle {
    font-size: 40px;
    font-weight: 700;
  }
  
  .sectionSubTitle {
    font-size: 20px;
    font-weight: 300;
  }
  
  .mainText {
    font-size: 14px;
    font-weight: 300;
  }
  
  .pTitle {
    font-size: 12px;
    font-weight: 300;
  }
  
  .subTitleComoTlhamos {
    font-size: 12px;
    font-weight: 300;
  }
  
  .btnTexts {
    font-size: 12px;
    font-weight: 500;
  }
  
  .iconText {
    font-size: 14px;
    font-weight: 300;
  }
  
  .contactText {
    font-size: 10px;
    font-weight: 300;
  }
  
  .titleContact h3{
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) and (min-width: 575.99px) {
  .nav-inline {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) and (min-width: 767.99px) {
  .nav-inline {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1199.98px) and (min-width: 991.99px) {

}

@media (min-width: 1199.99px) {

}