/* Version 2.0 */

/* Vars */
:root {
  --white: #ffffff;
  --black: #000000;
  --blue: #003857;
  --red: #750008;
  --grey: #706f6f;
  --bgGrey: #ededed;
  --bgGrey2: #fafafa;
  
}

* {
    font-family:'Oswald', sans-serif;
}

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

/* COLORS */ 
.white {
  color: var(--white);
}

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

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

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

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

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

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

/* NAV */
#navbarFixed {
    background-color: var(--white);
}

nav img {
  margin-right: 5rem;
}

nav ul li {
  margin: auto 1rem;
  text-align: center;
  text-transform: uppercase;
}

.nav-item a object {
  pointer-events: none;
}
/* END NAV */

/* SLIDE */
.slide {
  margin-top: 60px;
}

.bg {
  padding-top: 50px;
  height: 800px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bgContent {
  padding-top: 5rem;
  width: 30%;
  margin: 0 auto;
  text-align: center;
  z-index: 8888;
}

.accent {
  color: cyan;
}

.btnServico {
  padding-top: 17px;
  margin: 0 5px;
  width: 160px;
  height: 60px;
  color: var(--blue);
  background-color: var(--white);
  border: 0px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-appearance: none;

}

.btnContato {
    margin: 0 5px;
    width: 160px;
    height: 60px;
    line-height: 22px;
    color: var(--white);
    background-color: var(--red);
    border: 0px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-appearance: none;
}

.bgCampanha {
  background-image: url(./../img/Banner_Desktop_Campanha.png);
}

.btnServico:hover {
  color: var(--white);
  background-color: var(--blue);
}

.btnContato:hover {
  color: var(--white);
  background-color: #400105;
}

.bgPrevidencia {
  background-image: url(./../img/Banner_Desktop_Previdencia.png);
}

.bgVida {
  background-image: url(./../img/Banner_Vida_Desktop.png);
}
/* END SLIDE */


/* SERVICO */
.bgIcon {
    display: inline-block;
    background-color: var(--blue);
    border-radius: 50%;
    padding: 1rem;
}
/* END SERVICO */


/* FONTS */
.titleBanner {
  font-size: 60px;
  font-weight: bold;
}

.subTitleBanner {
  font-size: 24px;
  font-weight: normal;
}

.btnTexts {
  font-size: 18px;
  font-weight: bold;
}

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

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

.iconText {
  font-size: 20px;
  font-weight: 500;
}

.mainText {
  font-size: 20px;
  font-weight: normal;
}

.aboutUsSubTitle {
  font-size: 24px;
  font-weight: lighter;
}

.pTitle {
  font-size: 18px;
  font-weight: 500;
}

.subTitleComoTlhamos {
  font-size: 18px;
  font-weight: 500;
}

.spacingSubTitle {
    padding-top: 70px;
}

.spacingTitle {
    padding-bottom: 70px;
}
/* END FONTS */

/* CARDS */
.cardTrab {
  padding: 20px;
  height: 100%;
  background-color: var(--white);
}

/* WAPP */
.float {
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color: var(--white);
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 1px 1px 2px rgb(202, 202, 202);
  z-index:100;
}

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

.float:hover {
  background-color:#005c4b;
  color: var(--white);
}


/* GALLERY */
.gallery { 
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content:space-between;
}

.gallery img{
  width: 20%;
  border: 2px solid var(--bgGrey2);
}

/* FORM */
#contact input, select {
  width: 100%;
  height: 45px;
  background-color: var(--bgGrey);
  color: var(--grey);
  margin: 15px 0;
  border: none;
  border-radius: 4px;
  resize: vertical;
}

#contact select {
  background-color: var(--bgGrey);
  color: var(--grey);
  border: none;
  width: 100%;
  cursor: inherit;
  line-height: inherit;
  outline: none;
}

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

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

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

.modall {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding: 100px 0; /* 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.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  width: 50%;
}

.close {
  color: #aaaaaa;
  float: right !important;
  font-size: 28px;
  font-weight: bold;
}

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

#loaderModal {
  margin: 0 auto;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icons a {
  margin: 10px;
}

.form-group-main{
  display: none;
}

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

button:disabled,
button[disabled]{
  border: 1px solid #c0c0c0 !important;
  background-color: #cccccc !important;
  color: #666666 !important;
}

/* 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: 480px;
  }

  .modal-content {
    width: 85%;
  }

  .nav-inline {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
  }

  .bgVida {
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bgContent {
    padding: 80px 20px;
    width: 100vw;
  }
  
  .float {
    bottom: 10px;
    right: 15px;
  }
  
  .gallery img {
    width: 50%;
  }

  .titleBanner {
    font-size: 35px;
    font-weight: bold;
  }
  
  .subTitleBanner {
    padding-top: 20px;
    font-size: 16px;
    font-weight: normal;
  }

  .btnServico {
    margin-top: .5rem !important;
    width: 120px;
    height: 50px;
    color: var(--blue);
    background-color: var(--white);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-appearance: none;
  }

  .btnContato {
    margin-top: .5rem !important;
    width: 120px;
    height: 50px;
    line-height: 18px;
    color: var(--white);
    background-color: var(--red);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-appearance: none;
  }

  .btnServico:hover {
    color: var(--white);
    background-color: var(var(--blue));
  }

  .btnContato:hover {
    color: var(--white);
    background-color: #400105;
  }

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

  .cardTrab i {
    margin: 0 auto;
  }

  footer {
    padding-top: 1.1rem;
  }
}

@media (max-width: 767.98px) and (min-width: 575.99px) {
  .bg {
    height: 720px;
  }

  .slide {
    margin-top: 80px;
  }

  .modal-content {
    width: 85%;
  }

  .nav-inline {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
  }

  .bgVida {
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bgContent {
    width: 75%;
  }
  
  .gallery img {
    width: 30%;
  }

  footer {
    padding-top: 1.1rem;
  }
}

@media (max-width: 991.98px) and (min-width: 767.99px) {
  .bg {
    height: 720px;
  }

  .slide {
    margin-top: 80px;
  }
  
  .modal-content {
    width: 85%;
  }

  .nav-inline {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
  }

  .bgVida {
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bgContent {
    width: 55%;
  }

  .gallery img {
    width: 30%;
  }

  footer {
    padding-top: 1.1rem;
  }
}

@media (max-width: 1199.98px) and (min-width: 991.99px) {
  .bg {
    height: 720px;
  }

  .modal-content {
    width: 85%;
  }

  .bgVida {
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bgContent {
    padding-top: 120px;
    width: 55%;
  }

  nav img {
    margin-right: 0;
  }

  nav ul li {
    margin: auto .9rem;
  }
}

@media (min-width: 1199.99px) {
  .bgContent {
    padding-top: 150px;
  }
}



