
body {
  font-family: "Open Sans", sans-serif;
  color: #797979;
}

section{
  /*padding: 10px;*/

}

a {
  color: #0087c5;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgba(20, 30, 48, 1.0);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid rgba(20, 30, 48, 1.0);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: #092a49;
  width: 37px;
  height: 37px;
  border-radius: 2px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #083763;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 40px;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  top: 0px !important;
  background: rgba(15, 23, 37, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

@media (min-width: 100px) and (max-width: 579px) {
  #header .logo img {
    width: 150px;
    margin-left: 10px;
    margin-top: -10px;
  }
 
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

.navbar {
  position: relative;
  transition: .5s;
  z-index: 999;
}
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}


.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgb(197, 193, 193);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
 }

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #ffffff;
}




.navbar .getstarted {
  padding: 8px 20px !important;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #ffffff;
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #1f7ba7;
  border-color: #1f7ba7;
}

.navbar .underline {
  display: inline;
  position: relative;
  /*overflow: hidden;*/
  text-align: center;
  margin-left: 12px !important;
  margin-right: 12px !important;
}
.navbar .underline:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  left: 0;
 
  width: 0;
  padding: 0px;
  bottom: 1px;
  background: #1f7ba7;
  height: 3px;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.navbar .underline:hover:after,
.navbar .underline:focus:after,
.navbar .underline:active:after {
  left: 0;
  width: 100%;
  margin-left: 12px !important;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #0087c5;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
 }

.mobile-nav-toggle.bi-x {
  color: #fff;
  margin-top: 30px !important;

}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

@media (min-width: 100px) and (max-width: 579px) {
  .mobile-nav-toggle {
    font-size: 50px;
    margin: 5px;
    margin-top: -5px !important;

  }

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 30, 48, 0.966) !important;
  transition: 0.3s;
  z-index: 999;
  box-shadow: 0px 5px 30px rgba(19, 20, 20, 0.25);
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px !important;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: rgba(11, 28, 54, 0.87);
  overflow-y: auto;
  transition: 0.3s;
}


.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #9aa9c2;

}

.navbar-mobile li {
  padding-top: 10px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(36, 58, 90);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #0087c5;
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: #9aa9c2;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #0087c5;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}




/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
  position: relative;
  height: 35px;
  background: #031627;
}

.top-bar .top-bar-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  height: 35px;
  padding: 0 10px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text i {
  font-size: 13px;
  color: #ffffff;
  margin-right: 5px;
}

.top-bar .text h2 {
  color: #eeeeee;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0;
}

.top-bar .text p {
  color: #eeeeee;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 0 5px;
}

.top-bar .social {
  display: flex;
  height: 35px;
  font-size: 0;
  justify-content: flex-end;
}

.top-bar .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 100%;
  font-size: 16px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
  color: #092a49;
  background: #ffffff;
}

@media (min-width: 992px) {
  .top-bar {
      padding: 0 60px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 93vh;
  background: linear-gradient(#1d2b42d2, #111d31b9), url("../img/Banners/Banner2.jpg") fixed center center !important;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: 100% 100%;
}
 

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.0em;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #1f7ba7;
}

#hero .btn-get-started:hover {
  background: #14678d;
}

#hero .btn-watch-video {
  font-size: 1.0em;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #0087c5;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (min-width: 100px) and (max-width: 579px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 0.7em;
    padding: 8px 17px 8px 17px;
  }
  #hero .btn-watch-video {
    font-size: 0.7em;
  }

  
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}



/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
  position: relative;
  width: 100%;
  padding: 40px 0 15px 0;
}

.team .team-item {
  position: relative;
  margin-bottom: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .07);
}

.team .team-img {
  position: relative;
  overflow: hidden;
}

.team .team-img img {
  position: relative;
  width: 100%;
  text-align: center;
}

.team .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team .team-social a {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 13px;
  color: #d6d6d6;
  background: #092a49;
  opacity: 0;
}

.team .team-social a:hover {
  color: #f1f1f1;
  background: #11182c;
}

.modal-content h4{
  font-weight: 600;
  font-size: 24px;
  color: #092a49;
  font-family: "Poppins", sans-serif;
}

.team h4{
    font-weight: 600;
    font-size: 24px;
    color: #092a49;
    font-family: "Poppins", sans-serif;
}

.team a.btn {
  position: relative;
  margin-top: 15px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #d3d3d3;
  background: #092a49;
  border-radius: 2px;
  transition: .3s;
}

.team a.btn:hover {
  color: rgb(255, 255, 255);
  background: #074075;
}


.team a.btn-acessar {
  position: relative;
  margin-top: 15px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #d3d3d3;
  background: #074075;
  border-radius: 2px;
  transition: .3s;
}

.team a.btn-acessar:hover {
  color: rgb(255, 255, 255);
  background: #092a49;
}

@media (max-width: 575.98px) {
  .team .team-social a {
      margin: 0 3px;
      margin-top: 100px;
      width: 90px;
      height: 35px;
      border-radius: 40px;
      font-size: 14px;
      color: #d6d6d6;
      background: #092a49;
  }

  team {
     padding: 10px 0 5px 0 !important;
  }
}


 a.link {
  position: relative;
  margin-top: 15px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #d3d3d3;
  background: #092a49;
  border-radius: 2px;
  transition: .3s;
}

 a.link:hover {
  color: rgb(255, 255, 255);
  background: #074075;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .team {
      width: 100%;
      padding: 40px 0 15px 0;
  }
.team .team-img img {
      width: 100%;
  }
  
  .team .team-social {
      width: 50%;
  }
}


.team .team-item:hover .team-social {
  background: rgba(256, 256, 256, .5);
}

.team .team-item:hover .team-social a:first-child {
  opacity: 1;
  margin-top: 0;
  transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .3s;
}

.team .team-text {
  position: relative;
  padding: 15px 15px 10px 15px;
  text-align: center;
  background: #ffffff;
}

.team .team-text h2 {
  font-size: 15px;
  color: #193c5cd3;
  font-weight: 600;
}

.team .team-text p {
  font-size: 14px;
  margin: 0;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 2.0em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #092a49;
}


.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0087c5;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}


@media (max-width: 575px) {
  .section-title h2 {
    font-size: 1.4em;
  }

  .skills .content h4 {
    font-size: 20px !important;
    margin:6px !important;
  }

  .skills{
    padding: 6px !important;
  }

  p {
    margin:5px !important;
    font-size: 0.9em !important;
    /*text-align: justify !important;*/
  }

  /*h4, h3, h2, h1, span{
    margin:20px !important;
  }*/

  
}


.txt-menu {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
}

.txt-menu h2 {
  font-size: 2.0em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #092a49;
}
 
.txt-menu p {
  margin-bottom: 0;
}

.txt-menu h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.txt-menu h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0087c5;
  bottom: 0;
  left: calc(50% - 20px);
}

@media (max-width: 575px) {
  .txt-menu h2 {
    font-size: 2.0em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #092a49;
  }
   
  .txt-menu p {
    margin-bottom: 0;
  }
  
  .txt-menu h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .txt-menu h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #0087c5;
    bottom: 0;
    left: calc(50% - 20px);
  }
  

}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
.cliens {
  padding: 12px 0;
  text-align: center;
}

.cliens img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.cliens img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cliens img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about h3 {
  font-weight: 600;
  font-size: 26px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-left: 28px;
  position: relative;
}

.about ul li + li {
  margin-top: 10px;
}

.about ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #0087c5;
  line-height: 1;
}

.about p:last-child {
  margin-bottom: 0;
  text-align: justify;
}

.about .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #0087c5;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #0087c5;
}

.about .btn-learn-more:hover {
  background: #0087c5;
  color: #fff;
  text-decoration: none;
}


 .about .about-img {
  position: relative;
  top: -130px;
  height: 100%;
  margin-bottom: 0px !important;
}

.about .about-img img {
  position: relative;
  width: 90%;
  height: 100%;
  margin-bottom: 0px !important;
  object-fit: cover;
}

@media (min-width: 100px) and (max-width: 579px) {

  .about .about-img img {
    float: right;
    width: 60%;
    margin-top: -55px;
  }

  .about .btn-learn-more{
    font-size: 12px;
    padding: 8px 12px;
    margin:20px !important;
  }

  .about   .btn-learn-more:hover {
    background: #0087c5;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
  }
  

  #modulos .class-img img{
    text-align: center;
    width: 55%;
  }

}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h4 {
  font-weight: 500;
  font-size: 24px;
  color: #092a49;
}

/*.why-us .content h4 { 
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}*/

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #0087c5;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  font-size: 14px;
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #0087c5;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h4 {
  font-weight: 600;
  font-size: 24px;
  color: #092a49;
  font-family: "Poppins", sans-serif;
}

.tit {
  font-weight: 600;
  font-size: 24px;
  color: #092a49;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 579px) {
  .tit {
    font-weight: 600;
    font-size: 24px;
    text-align: center !important;
    color: #092a49;
    margin-left: 5px !important;
    font-family: "Poppins", sans-serif;
  }
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #0087c5;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #092a49;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  height: 300px;
  max-height: 400px !important;
  transition: all ease-in-out 0.4s;
  background: #fff;
  cursor: pointer;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #63c7f5;
  padding: 30px;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  background-color: #083763;
  transition: 0.3s;
}

.services .icon-box .icon img {
  padding: 30px;
  border-radius: 50%;
  text-align: center;
  background-color: #083763;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.3em;
}

.services .icon-box h4 {
  color: #00284d !important;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box h4:hover {
  color: #143ba8;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
#cta {
  background: linear-gradient(rgba(13, 17, 22, 0.9), rgba(9, 16, 29, 0.9)), url("../img/Palestras/20191019_131525.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

#contact {
  background: linear-gradient(rgba(13, 17, 22, 0.9), rgba(9, 16, 29, 0.9)), url("../img/Palestras/20191227_082839.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #0087c5;
  border: 2px solid #0087c5;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

}

@media (max-width: 579px) {
  .cta .cta-btn {
    margin-top: 30px !important;
    padding: 7px 19px !important;
    font-size: 0.8em !important;
  }
  
  .services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    height: 320px;
    max-height: 400px !important;
    transition: all ease-in-out 0.4s;
    background: #fff;
    cursor: pointer;
  }

  
  .team .mentoriasimg .pic img {
    position: relative;
    top: -35px;  
  }

  .services .icon-box h4 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1.1em;
  }

  .services .icon-box p {
     font-size: 0.9em !important;
   }
  
  
}
.msg-erro {
  font-size: 0.8em;
  color: rgb(230, 0, 0);
  margin-bottom: 5px !important;
  padding-bottom: 0px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  text-align: center;
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

@media (min-width: 100px) and (max-width: 579px) {
  .portfolio #portfolio-flters li {
    padding: 6px 10px;
    font-size: 0.8em;
  }

}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #0087c5;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #0087c5;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}




/*=============== ACCORDION ===============*/
.accordion {
  display: grid;
  align-content: center;
  height: 100vh;
}

.accordion__container {
  display: grid;
  row-gap: .80rem;
  padding: 2rem 1rem;
  background-color: var(--container-color);
  border-radius: .5rem;
  box-shadow: 0px 10px 12px rgba(51, 51, 51, 0.1);
}

.accordion__title {
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: 400;
  margin-top: .15rem;
  transition: .2s;
}

.accordion__header {
  display: flex;
  column-gap: .5rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  cursor: pointer;
}

.accordion__description {
  padding: 0 1.25rem 1.25rem 3rem;
  font-size: 0.9em;
  text-align: justify;
}

.accordion__icon {
  font-size: 1.5rem;
  height: max-content;
  color: var(--title-color);
  transition: .3s;
}

.accordion__item {
  box-shadow: 0 2px 6px rgba(38, 38, 38, 0.1);
  background-color: var(--container-color);
  border-radius: .25rem;
  position: relative;
  transition: all .25s ease;
}

.accordion__item::after {
  content: '';
  background-color: var(--first-color);
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .25rem 0 0 .25rem;
}

.accordion__item:nth-child(1) {
  background-color: #e7e7e798;
}

.accordion__item:nth-child(1)::after {
  background-color: #0f073d;
}

.accordion__item:nth-child(2) {
  background-color: #e7e7e798;
}

.accordion__item:nth-child(2)::after {
  background-color: #0f073d;
}

.accordion__item:nth-child(3) {
  background-color: #e7e7e798;
}

.accordion__item:nth-child(3)::after {
  background-color: #0f073d;
}


.accordion__content {
  overflow: hidden;
  height: 0;
  transition: all .25s ease;
}

/*Rotate icon and add font weight to titles*/
.accordion-open .accordion__icon {
  transform: rotate(45deg);
}

.accordion-open .accordion__title {
  font-weight: 600;
}

/*=============== MEDIA QUERIES ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
  .accordion__container {
    width: 550px;
    padding: 2.5rem;
    justify-self: center;
    border-radius: .75rem;
  }
  .accordion__header {
    padding: 1.5rem;
  }
  .accordion__title {
    padding-right: 3.5rem;
  }
  .accordion__description {
    padding: 0 4rem 1.25rem 3.5rem;
  }
}





/*******************************/
/********** Class CSS **********/
/*******************************/
.class {
  position: relative;
  padding: 45px 0 15px 0;
}
.class a.btn {
  position: relative;
  margin-top: 15px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #d3d3d3;
  background: #092a49;
  border-radius: 0;
  transition: .3s;
}

.class a.btn:hover {
  color: rgb(255, 255, 255);
  background: #074075;
}
.class #class-filter {
  padding: 0;
  margin: -15px 0 25px 0;
  list-style: none;
  font-size: 0;
  text-align: center;
}

.class #class-filter li {
  cursor: pointer;
  display: inline-block;
  margin: 5px;
  padding: 6px 12px;
  color: #092a49;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0;
  background: none;
  border: 1px solid #092a49;
  transition: .3s;
}

.class #class-filter li:hover,
.class #class-filter li.filter-active {
  background: #092a49;
  color: #acacac;
}

.class .class-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  transition: .3s;
}

.class .class-wrap {
  position: relative;
  width: 100%;
}

.class .class-img {
  position: relative;
}

.class .class-img img {
  position: relative;
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

.class .class-text {
  position: relative;
  padding: 30px 30px 25px 30px;
  border-right: 1px solid rgba(0, 0, 0, .07);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  border-left: 1px solid rgba(0, 0, 0, .07);
}

.class .class-text h2 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.class .class-text p {
  font-size: 15px !important;
}

.class .class-teacher {
  position: relative;
  height: 40px;
  margin-top: -50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.226);
  border-radius: 40px;
}

.class .class-teacher img {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #acacac;
}

.class .class-teacher h3 {
  width: calc(100% - 95px);
  font-size: 16px;
  color: #003c74;
  font-weight: 600;
  margin: 0 0 0 15px;
  white-space: nowrap;
  overflow: hidden;
}

.class .class-teacher a {
  width: 40px;
  height: 40px;
  padding: 0 0 3px 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 100;
  color: #092a49;
  background: #acacac;
  border-radius: 40px;
  transition: .3s;
}

.class .class-wrap:hover .class-teacher a {
  color: #acacac;
  background: #092a49;
}

.class .class-meta {
  position: relative;
  display: flex;
  align-items: center;
}

.class .class-meta p {
  margin: 0;
  font-size: 14px;
}

.class .class-meta p i {
  margin-right: 5px;
  color: #092a49;
}

.class .class-meta p:first-child {
  margin-right: 10px;
}



/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0087c5;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0087c5;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  padding-bottom: 25px;
 }

.team .member .pic {
  overflow: hidden;
  border-radius: 50%;
}

.team .member .pic img {
  position: relative;
  transition: ease-in-out 0.3s;
  width: 150px !important;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
  width: 90% !important;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #092a49;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #092a49;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #0087c5;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}



/*MENTORIAS*/

.team .mentorias {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}


.team .mentoriasimg .pic {
  overflow: hidden;
  width: 18em !important;
}

.team .mentoriasimg .pic img {
  margin-top: 70px !important;
  transition: ease-in-out 0.3s;
}

.team .mentorias .mentorias-info {
  padding-left: 30px;
}

.team .mentorias h3 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 28px;
  color: #092a49;
}

.team .mentorias h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 20px;
  color: #092a49;
}

.team .mentorias span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .mentorias span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .mentorias p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .mentorias .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .mentorias .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .mentorias .social a i {
  color: #092a49;
  font-size: 16px;
  margin: 0 2px;
}

.team .mentorias .social a:hover {
  background: #0087c5;
}

.team .mentorias .social a:hover i {
  color: #fff;
}

.team .mentorias .social a + a {
  margin-left: 8px;
}



/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #092a49;
}

.pricing h4 {
    font-weight: 600;
    font-size: 24px;
    color: #092a49;
    font-family: "Poppins", sans-serif;
  }
  

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #0087c5;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #0087c5;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #0087c5;
}

.pricing .buy-btn:hover {
  background: #0087c5;
  color: #fff;
}

.pricing .featured {
  border-top-color: #0087c5;
}

.pricing .featured .buy-btn {
  background: #0087c5;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #0087c5;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #092a49;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #0087c5;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
  position: relative;
  padding: 25px 0;
}

.testimonial .container {
  padding: 0;
}

.testimonial .testimonial-item {
  position: relative;
  margin: 0 15px;
  text-align: center;
}

.testimonial .testimonial-img {
  position: relative;
  margin-bottom: 15px;
  z-index: 1;
}

.testimonial .testimonial-item img {
  margin: 0 auto;
  width: 120px;
  padding: 13px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, .07);
  background: #ffffff;
  transition: .5s;
}

.testimonial .testimonial-text {
  position: relative;
  text-align: justify;
  margin-top: -70px;
  padding: 75px 25px 25px 25px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .07);
}

.testimonial .testimonial-item p {
  font-size: 13px;
  color: #666666;
}

.testimonial .testimonial-text h3 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center !important;

}

.testimonial .testimonial-text h4 {
  color: #666666;
  font-size: 12px;
  margin-bottom: 0;
  text-align: center !important;

}

.testimonial .owl-item.center img {
  border-color: transparent;
}

.testimonial .owl-item.center .testimonial-text {
  background: #092a49;
}

.testimonial .owl-item.center .testimonial-text h3 {
  color: #acacac;
}

.testimonial .owl-item.center .testimonial-text p,
.testimonial .owl-item.center .testimonial-text h4 {
  color: #ffffff;
}

.testimonial .owl-dots {
  margin-top: 15px;
  text-align: center;
}

.testimonial .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #acacac;
}

.testimonial .owl-dot.active {
  background: #092a49;
}
.testimonial .owl-prev{
  float: left;
  position: relative;
  margin-top: -190px;
  margin-left:3px;

}

.testimonial .owl-next{
  float: right;
  position: relative;
  margin-top: -190px;
  margin-right:3px;

}


.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 3px;
  align-items: center;
  justify-content: center;    
  color: #092a49;
  background: #8a8989;                                                                   
  font-size: 22px;
  transition: .3s;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
  color: #acacac;
  background: #092a49;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
  /*box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);*/
}

.text-ctt-form h2{
  color: #d3d3d3 !important;
}

.contact .section-title p {
  color: #d3d3d3cc ;
}

.contact .info i {
  font-size: 20px;
  color: #094764;
  float: left;
  width: 55px;
  height: 55px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 0px;
  font-size: 1.4em !important;
  font-weight: 600;
  margin-bottom: 4px !important;
  color: #ddd !important;
}


.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 10px;
  font-size: 0.9em !important;
  color: #e2e2e2e1;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #0087c5;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #0087c5;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #0087c5;
  padding: 30px;
  background: rgba(255, 255, 255, 0);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  background-color: #66666600;
}

.contact label{
  color: #bbbbbbda !important;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #0087c5;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.btn-envio {
  background: #052c52;
  border: 0;
  font-size: 0.9em;
  padding: 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.btn-envio:hover {
  background: #04203d;
  color: rgb(223, 223, 223);
}

@media (min-width: 100px) and (max-width: 579px) {
  .btn-envio{
    font-size: 0.8em;
    padding: 8px 15px;
  }

}




/*--------------------------------------------------------------
# Contact2
--------------------------------------------------------------*/
.contact2 .info {
 
  padding: 30px;
  width: 100%;
  /*box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);*/
}

.contact2  .text-ctt-form h2{
  color: #092a49 !important;
  font-size: 1.5em !important;
}

.contact2 .section-title p {
  color: #092a49af  ;
}

.contact2 .info i {
  font-size: 20px;
  color: #094764;
  float: left;
  width: 46px;
  height: 46px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact2 .info h4 {
  padding: 0 0 0 60px;
  font-size: 1.4em !important;
  font-weight: 600;
  margin-bottom: 4px !important;
  color: #092a49 !important;
}


.contact2 .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 10px;
  font-size: 0.9em !important;
  color: #092a49af ;
}

.contact2 .info .email p {
  padding-top: 5px;
}

.contact2 .info .social-links {
  padding-left: 60px;
}

.contact2 .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact2 .info .social-links a:hover {
  background: #0087c5;
  color: #fff;
}

.contact2 .info .email:hover i, .contact2 .info .address:hover i, .contact2 .info .phone:hover i {
  background: #0087c5;
  color: #fff;
}

.contact2 .php-email-form {
  width: 100%;
  border-top: 3px solid #0087c5;
  padding: 30px;
  background: rgba(255, 255, 255, 0);
}

.contact2 .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact2 .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact2 .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact2 .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact2 .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact2 .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact2 .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact2 .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact2 .php-email-form label {
  padding-bottom: 8px;
}

.contact2 .php-email-form input, .contact2 .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  background-color: #66666600;
}

.contact2 label{
  color: #092a49af !important;
}

.contact2 .php-email-form input:focus, .contact2 .php-email-form textarea:focus {
  border-color: #0087c5;
}

.contact2 .php-email-form input {
  height: 44px;
}

.contact2 .php-email-form textarea {
  padding: 10px 12px;
}

.contact2 .php-email-form button[type="submit"] {
  background: #092a49;
  border: 0;
  padding: 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact2 .php-email-form button[type="submit"]:hover {
  background: #0b3358;
}

@media (min-width: 100px) and (max-width: 579px) {
  .contact2 .php-email-form button[type="submit"]{
    font-size: 0.8em;
    padding: 8px 15px;
  }

}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
#breadcrumbs{
  width: 100%;
  height: 50vh;
  position: relative;
  background: linear-gradient(#1d2b42d2, #111d31b9), url("../img/Banners/Banner3.jpg") fixed center center !important;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: 100% 100% !important;
}
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  /*margin-top: 72px;*/
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

@media (min-width: 100px) and (max-width: 579px) {
  #breadcrumbs{
    width: 100%;
    height: 55vh;
    position: relative;
    background: linear-gradient(#1d2b42d2, #111d31b9), url("../img/Banners/Banner22.jpg") fixed center center !important;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: 100% 100% !important;
  }

}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #0a0f16;
}
#footer  ul li {
  display: inline-block;
  float: left;
  width: 20%;
  margin-bottom: 12px;
}

#footer .footer-newsletter {
  padding: 30px 0;
  background: #132044c7;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #0087c5;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #0087c5;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0087c5;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}


@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

}
