@import './theme.css';

body,
html {
  font-family: "Open Sans", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: var(--paragraph-color);
  font-weight: 400;
  width: 100% !important;
  height: 100% !important;
}
h2,
h3,
h4 {
  font-family: "Raleway", sans-serif;
}
h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 36px;
  color: var(--paragraph-color);
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--paragraph-color);
}
h4 {
  font-size: 18px;
  color: var(--paragraph-color);
  font-weight: 600;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}
a {
  color: var(--primary-text);
  font-weight: 400;
}
a:hover,
a:focus {
  text-decoration: none;
  color: var(--primary-text);
}
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}
hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: #1e7a46;
  margin-bottom: 20px;
  border: 0;
}

#form{
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

#form .upp{
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  margin: 0;
}

#form .upp-color{
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0;
}


/* scrollbar personalize */
body::-webkit-scrollbar {
  width: 5px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--menu-header-color);        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);    /* color of the scroll thumb */
  border-radius: 100px;       /* roundness of the scroll thumb */
  border: 1px solid var(--primary-color);  /* creates padding around scroll thumb */
}

.pt-2{
  padding-top: 2%;
}

/* Container site */
#rootApp{
  display: flex;
  flex-direction: column;
}

/* Navigation */
#menu {
  padding: 15px;
  transition: all 0.8s;
}
#menu.navbar-default {
  background-color: var(--menu-header-color);
  border-color: rgba(231, 231, 231, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#menu a.navbar-brand {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--menu-header-text);
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
#menu.navbar-default .navbar-nav > li > a {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: var(--menu-header-text);
  font-size: 15px;
  font-weight: 400;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0;
}
#menu.navbar-default .navbar-nav > li > a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  content: "";
  transition: width 0.2s;
}
#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
  border-bottom: 3px solid var(--primary-color);
  transition: ease-in 1s;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 2px !important;
  content: "" !important;
  transition: width 0.2s !important;
}
.navbar-toggle {
  border-radius: 0;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: var(--white-color);
  border-color: var(--primary-color);
}
.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: var(--background-color);
}
.section-title {
  margin-bottom: 70px;
}
.section-title h2 {
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.section-title h2::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
.section-title p {
  font-size: 18px;
}

.btn-white{
  background-color: white!important;
  color: var(--btn-color)!important;
}

.btn-outlined-white{
  border: 1px solid white!important;
  background-color: transparent!important;
  color: var(--white-color)!important;
}

.btn-outlined-white:hover{
  background-color: var(--white-background)!important;
  color: var(--btn-color)!important;
}

.btn-outlined{
  border: 1px solid var(--btn-color)!important;
  background-color: transparent!important;
  color: var(--btn-color)!important;
}

.btn-outlined:hover {
  color: var(--white-color)!important;
  background: var(--primary-color)!important;
}

.btn-custom {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 10px 20px;
  letter-spacing: 1px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.5s linear;
  border: 0;
}

.ul-limited{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}

.mr-2{
  margin-right: 10px;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: var(--white-color);
  background-image: none;
  background-color: var(--btn-hover);
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}
/* Header Section */
.intro {
  display: table;
  width: 100%;
  padding: 0;
  background-color: var(--background-color);
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  background: url(../img/header.png) center center no-repeat;
  -o-background-size: cover!important;
}

.intro .overlay {
  background: var(--background-linear-color);
}

@media (max-width: 768px) {
  .intro h1 {
    font-size: 3rem;
  }
}

@media (min-width: 769px) {
  .intro h1 {
    font-size: 5rem;
  }
}


.intro h1 {
  font-family: "Raleway", sans-serif;
  color: var(--white-color);
  font-weight: 200;
  padding: 0;
  margin: 0;
  font-weight: 900;
}

.intro .upp{
  text-transform: uppercase;
}

.intro .color-header{
  color: var(--primary-text);
}

.intro .m-top{
  margin-top: 2vh;
}

.intro .m-bottom{
  margin-top: 2vh;
}

.intro h1 span {
  font-weight: 800;
  color: #5ca9fb;
}
.intro p {
  color: var(--white-color);
  color: var(--white-color);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

header .intro-text {
  padding-top: 200px;
  padding-bottom: 200px;
  text-align: left;
  margin: 0;
}

/* prox header  */
.img-slider {
  display: table;
  width: 100%;
  padding: 0;
  background-color: var(--background-color);
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  background-size: cover!important;
  background: url(../img/bank-metta.jpg) center center no-repeat;
  -o-background-size: cover!important;
}

.img-slider .overlay {
  background: var(--background-linear-color);
}
@media (max-width: 768px) {
  .img-slider h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .img-slider h1 {
    font-size: 5rem;
  }
}

.img-slider h1 {
  font-family: "Raleway", sans-serif;
  color: var(--white-color);
  font-weight: 200;
  padding: 0;
  margin: 0;
  font-weight: 900;
}

.img-slider .upp{
  text-transform: uppercase;
}

.img-slider .color-header{
  color: var(--primary-text);
}

.img-slider .m-top{
  margin-top: 2vh;
}

.img-slider .m-bottom{
  margin-top: 2vh;
}

.img-slider h1 span {
  font-weight: 800;
  color: #5ca9fb;
}
.img-slider p {
  color: var(--white-color);
  color: var(--white-color);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

/* page title Section */

#titlepage {
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.intro3 {
  display: table;
  width: 100%;
  padding: 0;
  background: transparent;
}

.intro3 .overlay {
  background: var(--background-linear-color);
}
.intro3 h1 {
  font-family: "Raleway", sans-serif;
  color: var(--white-color);
  font-size: 40px;
  font-weight: 200;
  padding: 0;
  margin: 0;
  font-weight: 900;
}

.intro3 .upp{
  text-transform: uppercase;
}

.intro3 .color-header{
  color: var(--primary-text);
}

.intro3 .m-top{
  margin-top: 2vh;
}

.intro3 .m-bottom{
  margin-top: 2vh;
}

.intro3 h1 span {
  font-weight: 800;
  color: #5ca9fb;
}
.intro3 p {
  color: var(---paragraph-color);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

.intro3 .sub2{
  font-size: 15px;
  padding-top: 5%;
}

/* Header 2 Section */
.intro2 {
  display: table;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  background: url(../img/16050.jpg) center center no-repeat;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.intro2 img{
  position: sticky;
}
.intro2 .overlay {
  background: var(--background-overlay);
}
.intro2 h1 {
  font-family: "Raleway", sans-serif;
  color: var(--white-color);
  font-size: 50px;
  font-weight: 200;
  padding: 0;
  margin: 0;
}

.intro2 .upp{
  text-transform: uppercase;
  font-weight: 700;
}

.intro2 h1 span {
  font-weight: 800;
  color: #5ca9fb;
}
.intro2 p {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
}
header .intro2-text {
  padding: 80px;
  padding-left: 0;
  text-align: left;
  display: flex;
  margin: 0;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}


/* About Section */
#about {
  padding: 100px 0;
}
#about h3 {
  font-size: 22px;
  margin: 0 0 20px;
  color: var(--primary-text);
  padding-top: 1%;
}
#about h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  color: var(--primary-text);
  text-transform: none;
}
#about h2::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}
#about p{
  font-family: "Montserrat", Sans-serif;
  font-size: 28px;
}

#about .paragraph{
  font-family: "Montserrat", Sans-serif;
  font-size: 15px;
}

#about .pd{
  padding-top: 15px;
}

#about img {
  width: 400px;
  margin-top: 10px;
  background: #fff;
  border-right: 0;
}

#about .about-text li {
  margin-bottom: 6px;
  margin-left: 6px;
  list-style: none;
  padding: 0;
}
#about .about-text li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: var(--primary-text);
  font-size: 11px;
  font-weight: 300;
  padding-right: 8px;
}

/* Service Section */
#serv {
  padding: 10px 0;
}

#serv h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
#serv h2 {
  position: relative;
  color: var(--primary-text);
  text-transform: none;
}
#serv h2::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}
#serv p{
  font-family: "Montserrat", Sans-serif;
  font-size: 28px;
}

#serv img {
  margin-top: 10px;
  background: #fff;
  border-right: 0;
  transform: scaleX(-1)!important;
}

/* App Section */
#app {
  padding: 10px 0;
}

#app h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
#app h2 {
  position: relative;
  color: var(--primary-text);
  text-transform: none;
}
#app h2::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}
#app p{
  font-family: "Montserrat", Sans-serif;
  font-size: 28px;
}

#app img {
  margin-top: 10px;
  background: #fff;
  border-right: 0;
}

/* Gallery Section */
#gallery {
  background: var(--background-gallery);
  color: white;
}

#gallery h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
#gallery h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-transform: none;
  color: var(--white-color);
  font-family: "Montserrat", Sans-serif;
  font-size: 50px;
  font-weight: 100;
  line-height: 53px;
}

#gallery h2::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}

#gallery img {
  margin-top: -30%;
  border-right: 0;
}

/* Features Section */
#features {
  background: #f6f6f6;
}
#features i.fa {
  font-size: 38px;
  margin-bottom: 20px;
  transition: all 0.5s;
  color: var(--white-color);
  width: 100px;
  height: 100px;
  padding: 30px 0;
  border-radius: 50%;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
#contact {
  background: var(--background-contact);
  color: var(--paragraph-color);
  bottom: 0;
  width: 100%;
}
#contact .section-title {
  margin-bottom: 40px;
}
#contact .section-title p {
  font-size: 16px;
}
#contact h2 {
  color: var(--white-color);
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 30px;
}
#contact h3 {
  color: var(--white-color);
  margin-top: 80px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-weight: 400;
}
#contact form {
  padding-top: 20px;
}
#contact .text-danger {
  color: #cc0033;
  text-align: left;
}
#contact .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 2px solid #fff;
}
#contact .btn-custom:hover {
  color: #1f386e;
  background: #fff;
}
label {
  font-size: 12px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  float: left;
}
#contact .form-control {
  display: block;
  width: 100%;
  /* padding: 6px 12px; */
  font-size: 16px;
  line-height: 1.42857143;
  color: var(--paragraph-color);
  background-color: var(--white-color);
  background-image: none;
  /* border: 1px solid #ddd; */
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
#contact .form-control:focus {
  border-color: var(--paragraph-color);
  outline: 0;
  -webkit-box-shadow: transparent;
  box-shadow: transparent;
}
.form-control::-webkit-input-placeholder {
  color: var(--paragraph-color);
}
.form-control:-moz-placeholder {
  color: var(--paragraph-color);
}
.form-control::-moz-placeholder {
  color: var(--paragraph-color);
}
.form-control:-ms-input-placeholder {
  color: var(--paragraph-color);
}

#contact .contact-item span {
  color: var(--paragraph-color);
  margin-bottom: 10px;
  display: block;
}

#contact a {
  color:var(--paragraph-color);
}

#contact a:hover{
  color: var(--primary-color);
}

#contact p{
  margin: 0;
}
#contact .contact-item i.fa {
  margin-right: 10px;
}

.contact-info{
  display: flex;
    flex-direction: row;
    align-items: center;
    gap: 35px;

}
#contact .social {
  /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
  padding-top: 50px;
  /* margin-top: 50px; */
  text-align: center;
}
#contact .social ul li {
  display: inline-block;
  margin: 0 20px;
}
#contact .social i.fa {
  font-size: 22px;
  width: 48px;
  height: 48px;
  padding: 12px 0;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s;
}
#contact .social i.fa:hover {
  color: var(--primary-text);
  background: #fff;
}

.lei{
  margin: 0;
  padding: 20px 0px;
}

.lei p {
  font-size: 10px;
}

/* Footer Section*/
#footer {
  background: #f6f6f6;
  padding: 30px 0;
  bottom: 0;
  width: 100%;
}
#footer p {
  color: var(--paragraph-color);
  font-size: 14px;
}
#footer a {
  color: var(--primary-text);
}
#footer a:hover {
  border-bottom: 2px solid #608dfd;
}

@media (max-width: 768px) {

  #gallery img, .about-text{
    margin-top: 10%;
  }

  .intro h1{
    font-size: 4rem;
  }

  #header .intro2-text{
    padding: 10%;
  }

 
  #app .about-text{
    margin-top: 10%;
  }

  .d-flex-start{
   display: inline!important;
  }

  .d-flex{
    display: inline!important;
  }

  #about img {
    margin: 50px 0;
  }

 button.btn-custom{
    width: 100%;
    margin-right: 0!important;
  }

  .nav.navbar-nav.navbar-right{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-content: center;
    align-items: center;
  }
}

.styled-logo{
  height: 11vh;
}

.d-flex{
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: row;
  justify-content: center;
}

.d-flex-start{
  display: flex;
  align-items: flex-start;
  align-content: center;
  flex-direction: row;
  justify-content: center;
}

/* Services Section */
#services {
  padding: 100px 0;
  background: var(--background-color);
  color: var(--paragraph-color);
}
#services .service-desc {
  margin: 10px 10px 20px;
}
#services h2 {
  color: var(--primary-text);
}
#services .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
#services i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  color: var(--primary-color);
}
#services h3 {
  font-weight: 900;
  padding: 5px 0;
  color: var(--paragraph-color);
}
#services p {
  color: var(--paragraph-color);
}
#services .service-desc {
  margin-bottom: 40px;
}

/* gridElements Section */

#gridElements {
  padding: 50px 0;
  color: var(--paragraph-color);
}

#gridElements .color-primary{
  background-color: var(--background-color);
}

#gridElements .color-light{
  background: #cccc!important;
}

#gridElements .service-desc {
  margin: 10px 10px 20px;
}
#gridElements h2 {
  color: var(---paragraph-color);
}
#gridElements .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}

#gridElements .color-clara{
  background-color: #f6f6f6;
}

#gridElements i.fa {
  font-size: 42px;
  color: var(--primary-color);
}
#gridElements h3 {
  font-weight: 900;
  padding: 5px 0;
  color: var(--paragraph-color);
}
#gridElements p {
  color: var(--paragraph-color);
}
#gridElements .service-desc {
  margin-bottom: 40px;
}


.w-100{
  width: 100%!important;
}

#bodyContrato .text-just{
  width: 90%;
  text-align: justify;
  padding-right: 15vh;
  padding-left: 15vh;
}

.text-just{
  width: 90%;
  text-align: justify;
  padding-right: 15vh;
  padding-left: 15vh;
}

/* slidershow page */
.each-slide-effect > div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  height: 350px;
}

.each-slide-effect span {
  padding: 20px;
  font-size: 20px;
  text-align: center;
}

.react-slideshow-container .default-nav{
  background: transparent!important;
  color: transparent!important;
}

.react-slideshow-container svg{
  color: white;
  fill: white;
}