/**

Hosbran Template.


*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ef6603;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(42, 44, 57, 0.9);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(42, 44, 57, 0.9);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

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

@media (max-width: 700px) {
  #header {
    background: rgba(42, 44, 57, 0.9) !important; /* Mantém a cor de fundo original */
  }

  #header.header-scrolled {
    background: rgba(42, 44, 57, 0.9) !important; /* Mantém a cor de fundo quando rolado */
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin: 0; /* Adicionada margem 0 para remover a barra branca no topo */
}

.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: 5px 15px 7px 15px;
  margin-left: 5px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 50px;
}

.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 {
  background: #ef6603;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 0; /* Alterada a margem superior para 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: 15px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #2a2c39;
  margin: 0;
  font-size: 14px;
}

.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: #fff;
}

.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: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  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: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: #2a2c39;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.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: #fff;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  background: url(../img/intro-bg.jpg) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  padding: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  padding-top: 60px;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #ef6603;
}

#hero .btn-get-started:hover {
  background: #ef6603;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero .carousel-container {
    height: 90vh;
  }

  #hero h2 {
    font-size: 28px;
  }
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}


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

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
  }

  #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 (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

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

  100% {
    transform: translateY(-10px);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

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

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

.left {
  flex: 1;
  text-align: left;
}

.right {
  flex: 1;
  text-align: right;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 80px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Who We Are
--------------------------------------------------------------*/

.card{
    border-radius: 1rem;
	height: 100%;
    box-shadow: 0px -10px 0px rgb(49, 51, 66);
}

.card-title{
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: bold;
    font-family: 'IM Fell French Canon SC';
}
.card-text{
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    color: rgb(82, 81, 81);
    line-height: 1.4rem;
}
.card-image img{
    width: 200px;
    height: 200px;
    border-radius: 5rem;
    margin: 1.3rem auto 1rem auto;
} 

.footer{
    border-top: none;
    text-align: center;
    line-height: 1.2rem;
    padding: 2rem 0 1.4rem 0;
    font-family: 'Varela Round';
}
#name{
    font-size: 22px;
    font-weight: bold;
}
#position{
    font-size: 0.7rem;
}

@media(max-width:767px){
    .card{
		height: auto;
        margin-bottom: 20px;
        max-width: 80vw;
    }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

:root{
    --timeline-color1: #313342;
    --timeline-color2: #313342;
}
.main-timeline{ font-family: 'Poppins', sans-serif; }
.main-timeline:after{
    content: '';
    display: block;
    clear: both;
}
.main-timeline .timeline{
    width: calc(50% + 1px);
    padding: 0 75px 0 0;
    float: left;
}
.main-timeline .timeline-content{
    color: #fff;
    background: linear-gradient(to right,var(--timeline-color1),var(--timeline-color2));
    padding: 20px;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 1;
}
.main-timeline .timeline-content:hover{ text-decoration: none; }
.main-timeline .timeline-icon{
    font-size: 45px;
    line-height: 35px;
    margin: 0 0 10px;
}
.main-timeline .title{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.main-timeline .description{
    color: rgba(255,255,255);
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0;
}
.main-timeline .timeline-year{
    color: #313342;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    width: 150px;
    border-bottom: 3px solid var(--timeline-color2);
    transform: translateY(-50%);
    position: absolute;
    right: -150px;
    top: 50%;
}
.main-timeline .timeline-year:before,
.main-timeline .timeline-year:after{
    content: '';
    background-color: var(--timeline-color2);
    height: 8px;
    width: 8px;
    transform: rotate(45deg);
    position: absolute;
    left: -5px;
    bottom: -5px;
}
.main-timeline .timeline-year:after{
    border-radius: 50%;
    left: auto;
    right: -1px;
}
.main-timeline .timeline:nth-child(even){
    float: right; 
    padding: 0 0 0 75px;
}
.main-timeline .timeline:nth-child(even) .timeline-year{ 
    left: -150px;
    right: auto;
    border-color: var(--timeline-color1);
}
.main-timeline .timeline:nth-child(even) .timeline-year:before, 
.main-timeline .timeline:nth-child(even) .timeline-year:after{
    background-color: var(--timeline-color1);   
    right: -5px;
    left: auto;
}
.main-timeline .timeline:nth-child(even) .timeline-year:after{
    right: auto;
    left: 0;
}
.main-timeline .timeline:nth-child(4n+2){
    --timeline-color1: #313342;
    --timeline-color2: #313342;
}
.main-timeline .timeline:nth-child(4n+3){
    --timeline-color1: #313342;
    --timeline-color2: #313342;
}
.main-timeline .timeline:nth-child(4n+4){
    --timeline-color1: #FE7F25;
    --timeline-color2: #F9412B;
}
@media screen and (max-width:767px){
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        width: 100%;
        padding: 0 100px 0 0;
        margin: 0 0 30px;
    }
    .main-timeline .timeline:nth-child(even){ padding: 0 0 0 100px; }
    .main-timeline .timeline-year,
    .main-timeline .timeline:nth-child(even) .timeline-year{
        font-size: 25px;
        width: 100px;
        right: -100px;
    }
    .main-timeline .timeline:nth-child(even) .timeline-year{ left: -100px; }
}
@media screen and (max-width:479px){
    .main-timeline .timeline{ padding: 0 40px 0 0; }
    .main-timeline .timeline:nth-child(even){ padding: 0 0 0 40px; }
    .main-timeline .timeline-year{
        border: none;
        transform: translateY(-50%) rotate(90deg);
        right: -70px;
    }
    .main-timeline .timeline:nth-child(even) .timeline-year{ left: -70px; }
    .main-timeline .timeline-year:before,
    .main-timeline .timeline-year:after{
        display: none;
    }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog .botaoblog {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ef6603;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ef6603;
}

.blog .botaoblog:hover {
  background: #ef6603;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 700px) {
  .blog .botaoblog {
    font-size: 10px; /* Reduz o tamanho da fonte do botão para dispositivos móveis */
    padding: 8px 20px; /* Reduz o preenchimento do botão para dispositivos móveis */
    margin-top: 4px; /* Altera a margem superior do botão para dispositivos móveis */
  }

  .blog p {
    font-size: 12px; /* Reduz o tamanho da fonte para parágrafos em dispositivos móveis */
  }

  .blog h2 {
    font-size: 18px; /* Reduz o tamanho da fonte para cabeçalhos h2 em dispositivos móveis */
    margin-bottom: 10px; /* Adiciona espaçamento abaixo do h2 em dispositivos móveis */
    line-height: 1.5; /* Adiciona espaçamento entre linhas para os cabeçalhos h2 em dispositivos móveis */
  }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #2a2c39;
  padding: 80px 0;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #ef6603;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #ef6603;
}

@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;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

.wrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, minmax(350px, 1fr)); /* Altera para 3 colunas */
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 700px) {
  .wrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr; /* Alterada para 1 coluna para dispositivos móveis */
    font-family: 'Poppins', sans-serif;
    margin: 0 auto; /* Centraliza a grade */
  }

  .wrapper .box {
      margin-bottom: 20px; /* Adicionada margem inferior para separar as caixas */
  }

  .wrapper .box:last-child {
      margin-bottom: 0; /* Remove a margem inferior da última caixa */
  }
}

.wrapper .box {
    height: 330px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.wrapper .box .front-face {
    background: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.box .front-face .icon {
    height: 80px;
}

.box .front-face .icon img {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto;
}

.box .front-face span,
.box .back-face span {
    font-size: 22px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    padding-top: 50px;
}

.box .front-face .icon img,
.box .front-face span {
    background: linear-gradient(-135deg, #313342, #252737);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box .back-face {
    position: absolute;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    line-height: 1.4rem;
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    background: linear-gradient(to right, #ff512f, #f09819);
    transform: translateY(110px) rotateX(-90deg);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.box .back-face span {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.box .back-face p {
    margin-top: 10px;
    text-align: justify;
}

.box:hover .back-face {
    opacity: 1;
    transform: rotateX(0deg);
}

.box:hover .front-face {
    opacity: 0;
    transform: translateY(-110px) rotateX(90deg);
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ef6603;
  float: left;
  width: 44px;
  height: 44px;
  background: #ffecde;
  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 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2a2c39;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555974;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #ffffff;
  padding: 30px;
}
.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #ef6603;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #555974;
  font-weight: 700;
  margin: 20px 0 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.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 input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #4154f1;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



.fcf-button, .fcf-file {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fcf-button, .fcf-input, .fcf-textarea, .fcf-select select, .fcf-file-cta, .fcf-file-name {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: none;
  display: inline-flex;
  font-size: 1rem;
  height: 2.5em;
  justify-content: flex-start;
  line-height: 1.5;
  padding-bottom: calc(0.5em - 1px);
  padding-left: calc(0.75em - 1px);
  padding-right: calc(0.75em - 1px);
  padding-top: calc(0.5em - 1px);
  position: relative;
  vertical-align: top;
}

.fcf-button:focus, .fcf-input:focus, .fcf-textarea:focus, .fcf-select select:focus, .fcf-file-cta:focus, .fcf-file-name:focus, .fcf-button:active, .fcf-input:active, .fcf-textarea:active, .fcf-select select:active, .fcf-file-cta:active, .fcf-file-name:active {
  outline: none;
}

.fcf-button[disabled], .fcf-input[disabled], .fcf-textarea[disabled], .fcf-select select[disabled], .fcf-file-cta[disabled], .fcf-file-name[disabled] {
  cursor: not-allowed;
}

.fcf-body, .fcf-button, .fcf-input, .fcf-select select, .fcf-textarea {
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.fcf-body {
  color: #4a4a4a;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
}

.fcf-input input[type="checkbox"], .fcf-input input[type="radio"] {
  vertical-align: baseline;
}

.fcf-strong {
  color: #363636;
  font-weight: 700;
}

.fcf-legend legend, .fcf-textarea textarea {
  margin: 0;
  padding: 0;
}

.fcf-button, .fcf-input, .fcf-select select, .fcf-textarea {
  margin: 0;
}

.fcf-form-class * {
  box-sizing: border-box;
}

.fcf-button {
  background: #f82249;
  border: 0;
  padding: 10px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
  justify-content: center;
  padding-bottom: calc(0.5em - 1px);
  padding-left: 1em;
  padding-right: 1em;
  padding-top: calc(0.5em - 1px);
  text-align: center;
  white-space: nowrap;
}

.fcf-button strong {
  color: inherit;
}

.fcf-button:hover {
  border-color: #b5b5b5;
  color: #363636;
}

.fcf-button:focus {
  border-color: #3273dc;
  color: #363636;
}

.fcf-button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.fcf-button:active {
  border-color: #4a4a4a;
  color: #363636;
}

.fcf-button.is-text {
  background-color: transparent;
  border-color: transparent;
  color: #4a4a4a;
  text-decoration: underline;
}

.fcf-button.is-text:hover, .fcf-button.is-text:focus {
  background-color: whitesmoke;
  color: #363636;
}

.fcf-button.is-text:active {
  background-color: #e8e8e8;
  color: #363636;
}

.fcf-button.is-text[disabled] {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.fcf-button.is-link {
  background-color: #14151c;
  border-color: transparent;
  color: #fff;
}

.fcf-button.is-link:hover {
  background-color: #ef6603;
  border-color: transparent;
  color: #fff;
}

.fcf-button.is-link:focus {
  border-color: transparent;
  color: #fff;
}

.fcf-button.is-link:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.fcf-button.is-link:active {
  background-color: #2366d1;
  border-color: transparent;
  color: #fff;
}

.fcf-button.is-link[disabled] {
  background-color: #3273dc;
  border-color: transparent;
  box-shadow: none;
}

.fcf-button.is-normal {
  font-size: 1rem;
}

.fcf-button.is-medium {
  font-size: 1.25rem;
}

.fcf-button button[disabled] {
  background-color: white;
  border-color: #dbdbdb;
  box-shadow: none;
  opacity: 0.5;
}

.fcf-button.is-fullwidth {
  display: flex;
  width: 100%;
}

.fcf-buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.fcf-buttons .fcf-button {
  margin-bottom: 0.5rem;
}

.fcf-buttons .fcf-button:not(:last-child):not(.is-fullwidth) {
  margin-right: 0.5rem;
}

.fcf-buttons .fcf-button:last-child {
  margin-bottom: -0.5rem;
}

.fcf-buttons .fcf-button:not(:last-child) {
  margin-bottom: 1rem;
}

.fcf-buttons.are-small .fcf-button:not(.is-normal):not(.is-medium):not(.is-large) {
  border-radius: 2px;
  font-size: 0.75rem;
}

.fcf-buttons.are-medium .fcf-button:not(.is-small):not(.is-normal):not(.is-large) {
  font-size: 1.25rem;
}

.fcf-buttons.are-large .fcf-button:not(.is-small):not(.is-normal):not(.is-medium) {
  font-size: 1.5rem;
}

.fcf-buttons.has-addons .fcf-button:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.fcf-buttons.has-addons .fcf-button:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-right: -1px;
}

.fcf-buttons.has-addons .fcf-button:last-child {
  margin-right: 0;
}

.fcf-buttons.has-addons .fcf-button:hover, .fcf-buttons.has-addons .fcf-button.is-hovered {
  z-index: 2;
}

.fcf-buttons.has-addons .fcf-button:focus, .fcf-buttons.has-addons .fcf-button.is-focused, .fcf-buttons.has-addons .fcf-button:active, .fcf-buttons.has-addons .fcf-button.is-active, .fcf-buttons.has-addons .fcf-button.is-selected {
  z-index: 3;
}

.fcf-buttons.has-addons .fcf-button:focus:hover, .fcf-buttons.has-addons .fcf-button.is-focused:hover, .fcf-buttons.has-addons .fcf-button:active:hover, .fcf-buttons.has-addons .fcf-button.is-active:hover, .fcf-buttons.has-addons .fcf-button.is-selected:hover {
  z-index: 4;
}

.fcf-buttons.has-addons .fcf-button.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}

.fcf-buttons.is-centered {
  justify-content: center;
}

.fcf-buttons.is-centered:not(.has-addons) .fcf-button:not(.is-fullwidth) {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.fcf-buttons.is-right {
  justify-content: flex-end;
}

.fcf-buttons.is-right:not(.has-addons) .fcf-button:not(.is-fullwidth) {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.fcf-input, .fcf-textarea, .fcf-select select {
  background-color: white;
  border-color: #dbdbdb;
  border-radius: 4px;
  color: #363636;
}

.fcf-input::-moz-placeholder, .fcf-textarea::-moz-placeholder, .fcf-select select::-moz-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

.fcf-input::-webkit-input-placeholder, .fcf-textarea::-webkit-input-placeholder, .fcf-select select::-webkit-input-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

.fcf-input:-moz-placeholder, .fcf-textarea:-moz-placeholder, .fcf-select select:-moz-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

.fcf-input:-ms-input-placeholder, .fcf-textarea:-ms-input-placeholder, .fcf-select select:-ms-input-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

.fcf-input:hover, .fcf-textarea:hover, .fcf-select select:hover {
  border-color: #b5b5b5;
}

.fcf-input:focus, .fcf-textarea:focus, .fcf-select select:focus, .fcf-input:active, .fcf-textarea:active, .fcf-select select:active {
  border-color: #3273dc;
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.fcf-input[disabled], .fcf-textarea[disabled], .fcf-select select[disabled] {
  background-color: whitesmoke;
  border-color: whitesmoke;
  box-shadow: none;
  color: #7a7a7a;
}

.fcf-input[disabled]::-moz-placeholder, .fcf-textarea[disabled]::-moz-placeholder, .fcf-select select[disabled]::-moz-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

.fcf-input[disabled]::-webkit-input-placeholder, .fcf-textarea[disabled]::-webkit-input-placeholder, .fcf-select select[disabled]::-webkit-input-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

.fcf-input[disabled]:-moz-placeholder, .fcf-textarea[disabled]:-moz-placeholder, .fcf-select select[disabled]:-moz-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

.fcf-input[disabled]:-ms-input-placeholder, .fcf-textarea[disabled]:-ms-input-placeholder, .fcf-select select[disabled]:-ms-input-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

.fcf-input, .fcf-textarea {
  box-shadow: inset 0 0.0625em 0.125em rgba(10, 10, 10, 0.05);
  max-width: 100%;
  width: 100%;
}

.fcf-input[readonly], .fcf-textarea[readonly] {
  box-shadow: none;
}

.is-link.fcf-input, .is-link.fcf-textarea {
  border-color: #3273dc;
}

.is-link.fcf-input:focus, .is-link.fcf-textarea:focus, .is-link.fcf-input:active, .is-link.fcf-textarea:active {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.is-medium.fcf-input, .is-medium.fcf-textarea {
  font-size: 1.25rem;
}

.is-fullwidth.fcf-input, .is-fullwidth.fcf-textarea {
  display: block;
  width: 100%;
}

.fcf-textarea {
  display: block;
  max-width: 100%;
  min-width: 100%;
  padding: calc(0.75em - 1px);
  resize: vertical;
}

.fcf-textarea:not([rows]) {
  max-height: 40em;
  min-height: 8em;
}

.fcf-textarea[rows] {
  height: initial;
}

.fcf-checkbox, .fcf-radio {
  cursor: pointer;
  display: inline-block;
  line-height: 1.25;
  position: relative;
}

.fcf-checkbox input, .fcf-radio input {
  cursor: pointer;
  margin: 0;
}

.fcf-checkbox[disabled], .fcf-radio[disabled] {
  color: #7a7a7a;
  cursor: not-allowed;
}

.fcf-radio+.fcf-radio {
  margin-left: 0.5em;
}

.fcf-select {
  display: inline-block;
  max-width: 100%;
  position: relative;
  vertical-align: top;
}

.fcf-select:not(.is-multiple) {
  height: 2.5em;
}

.fcf-select:not(.is-multiple):not(.is-loading)::after {
  box-sizing: inherit;
  border: 3px solid transparent;
  border-radius: 2px;
  border-right: 0;
  border-top: 0;
  content: " ";
  display: block;
  height: 0.625em;
  margin-top: -0.4375em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  transform-origin: center;
  width: 0.625em;
}

.fcf-select:not(.is-multiple):not(.is-loading)::after {
  border-color: #3273dc;
  right: 1.125em;
  z-index: 4;
}

.fcf-select select {
  cursor: pointer;
  display: block;
  font-size: 1em;
  max-width: 100%;
  outline: none;
}

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

.fcf-select select[disabled]:hover {
  border-color: whitesmoke;
}

.fcf-select select:not([multiple]) {
  padding-right: 2.5em;
}

.fcf-select select[multiple] {
  height: auto;
  padding: 0;
}

.fcf-select select[multiple] option {
  padding: 0.5em 1em;
}

.fcf-select.is-link:not(:hover)::after {
  border-color: #3273dc;
}

.fcf-select.is-link select {
  border-color: #3273dc;
}

.fcf-select.is-link select:hover {
  border-color: #2366d1;
}

.fcf-select.is-link select:focus, .fcf-select.is-link select:active {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.fcf-select.is-medium {
  font-size: 1.25rem;
}

.fcf-select.is-fullwidth {
  width: 100%;
}

.fcf-select.is-fullwidth select {
  width: 100%;
}

.fcf-file {
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.fcf-file.is-link .fcf-file-cta {
  background-color: #3273dc;
  border-color: transparent;
  color: #fff;
}

.fcf-file.is-link:hover .fcf-file-cta {
  background-color: #276cda;
  border-color: transparent;
  color: #fff;
}

.fcf-file.is-link:focus .fcf-file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(50, 115, 220, 0.25);
  color: #fff;
}

.fcf-file.is-link:active .fcf-file-cta {
  background-color: #2366d1;
  border-color: transparent;
  color: #fff;
}

.fcf-file.is-medium {
  font-size: 1.25rem;
}

.fcf-file.has-name .fcf-file-cta {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.fcf-file.has-name .fcf-file-name {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.fcf-file.is-fullwidth .fcf-file-label {
  width: 100%;
}

.fcf-file.is-fullwidth .fcf-file-name {
  flex-grow: 1;
  max-width: none;
}

.fcf-file-label {
  align-items: stretch;
  display: flex;
  cursor: pointer;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

.fcf-file-label:hover .fcf-file-cta {
  background-color: #eeeeee;
  color: #363636;
}

.fcf-file-label:hover .fcf-file-name {
  border-color: #d5d5d5;
}

.fcf-file-label:active .fcf-file-cta {
  background-color: #e8e8e8;
  color: #363636;
}

.fcf-file-label:active .fcf-file-name {
  border-color: #cfcfcf;
}

.fcf-file-input {
  height: 100%;
  left: 0;
  opacity: 0;
  outline: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.fcf-file-cta, .fcf-file-name {
  border-color: #dbdbdb;
  border-radius: 4px;
  font-size: 1em;
  padding-left: 1em;
  padding-right: 1em;
  white-space: nowrap;
}

.fcf-file-cta {
  background-color: whitesmoke;
  color: #4a4a4a;
}

.fcf-file-name {
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px 1px 1px 0;
  display: block;
  max-width: 16em;
  overflow: hidden;
  text-align: inherit;
  text-overflow: ellipsis;
}

.fcf-label {
  color: #363636;
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.fcf-label:not(:last-child) {
  margin-bottom: 0.5em;
}

.fcf-label.is-medium {
  font-size: 1.25rem;
}

.fcf-field:not(:last-child) {
  margin-bottom: 0.75rem;
}

.fcf-field-label .fcf-label {
  font-size: inherit;
}

.fcf-attribution {
  color: #363636;
  text-align: right;
}

.fcf-attribution-link {
  color: #363636;
}

@media screen and (max-width: 768px) {
  .fcf-field-label {
      margin-bottom: 0.5rem;
  }
}

@media screen and (min-width: 769px), print {
  .fcf-field-label {
      flex-basis: 0;
      flex-grow: 1;
      flex-shrink: 0;
      margin-right: 1.5rem;
      text-align: right;
  }
  .fcf-field-label.is-normal {
      padding-top: 0.375em;
  }
  .fcf-field-label.is-medium {
      font-size: 1.25rem;
      padding-top: 0.375em;
  }
}

.fcf-field-body .fcf-field .fcf-field {
  margin-bottom: 0;
}

@media screen and (min-width: 769px), print {
  .fcf-field-body {
      display: flex;
      flex-basis: 0;
      flex-grow: 5;
      flex-shrink: 1;
  }
  .fcf-field-body .fcf-field {
      margin-bottom: 0;
  }
  .fcf-field-body>.fcf-field {
      flex-shrink: 1;
  }
  .fcf-field-body>.fcf-field:not(:last-child) {
      margin-right: 0.75rem;
  }
}

.fcf-control {
  box-sizing: border-box;
  clear: both;
  font-size: 1rem;
  position: relative;
  text-align: inherit;
}

.has-text-link {
  color: #3273dc !important;
}

.has-text-weight-normal {
  font-weight: 400 !important;
}

.has-text-weight-medium {
  font-weight: 500 !important;
}

.is-hidden {
  display: none !important;
}

@media screen and (max-width: 1023px) {
  .is-hidden-touch {
      display: none !important;
  }
} 

.fcf-status {
  color: crimson;
  font-size: 0.9em;
}

.js-validate-error-label {
  color: crimson;
  font-size: 0.9em;
}

.js-validate-error-field {
  border: 1px solid #dc3545 !important;
}

.js-validate-error-field:focus {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  margin-top: 70px;
  background: #f7f8f9;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #404356;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #14151c;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ef6603;
  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 .social-links a:hover {
  background: #bd5102;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}