

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: linear-gradient(to bottom, #111 31%, #212121 50%);
  background-size: cover;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #95B842;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #95B842;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.divider{
    background-image: url("../img/formations-divider.svg");
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 26px;
    margin: 0 0 3.875rem ;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #95B842;
  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: #324903;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #95B842;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgba(0, 0, 0, 0.9);
  height: 80px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  height: auto;
  padding: 1rem; 
}

#header .logo {
  font-size: 25px;
  margin: 0;
  padding: 0;
  font-family: "Righteous", Sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  padding-left: 10px;
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
}

#header .logo img {
  max-height: 60px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  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: #95B842;
}

.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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #666666;
}

.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: #95B842;
}

.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(26, 26, 26, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #95B842;
}

.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: #95B842;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal{
  margin: 1rem 0 0 0;
  position: relative;
  background: #fff;
  width: 80%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  border-radius: 1%;
  padding: 1rem;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
@keyframes hover-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1rem);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  51% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes up-down-image {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  53% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#hero .item {
  display: block;
}

#hero .text{
  padding: 0 1rem 0 1rem;
  margin-bottom: 30vh;
}

#hero .text span{
  color: #95b842;
}

#hero .text h3{
  color: #fff;
}

#hero .space{
  height: 15rem;
}

#hero .item:hover {
  animation: hover-up 0.5s ease forwards;
}

#hero .item > .about-col {
  transition: none;
}

.arrows-down{
  position: relative;
  top: 9rem;
}
.arrows-down > img{
  animation: up-down 2s infinite cubic-bezier(0.1, 0.7, 1, 0.7);
}

#hero .about-col {
  position: relative;
  /* top: 13rem; */
  background: #fff;
  border-radius: 1%;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  min-height: 7rem;
  max-width: 23rem;
  align-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#hero .about-col .img {
  position: relative;
}

#hero .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#hero .about-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: #95B842;
  border-radius: 50%;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .about-col i {
  font-size: 28px;
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

#hero .about-col:hover .icon {
  background-color: #fff;
  border: 4px solid #95B842;
}

#hero .about-col:hover i {
  color: #95B842;
}
#hero .about-col:hover h3 {
  color: #95B842;
}

#hero .about-col h2 {
  color: #212121;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#hero .about-col h2 {
  color: #212121;
}

#hero .about-col h2 :hover {
  color: #95B842;
}

#hero .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-container {
  display: flex;
  margin-top: 4rem;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (max-width: 2000px) {
  #hero .text{
    padding: 0 1rem 0 1rem;
    margin-bottom: 15vh;
  }
  /* .arrows-down{
    position: relative;
    bottom: 1rem;
  } */
}

@media (max-width: 1199px) {
  .arrows-down{
    top: 5rem;
  }
}
@media (max-width: 992px) {
  .text{
    padding: 0 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #hero h2 {
    font-size: 28px;
  }
  #hero .about-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
   
  }

  #hero .about-col{
    min-height: 7rem;
    min-width: 21rem;
  }

  #hero {
    height: 100vh;
  }
  #stripes{
    display: none;
  }

}

@media (min-height: 900px) {
  #about .button button{
    display: none;
  }
}

@media (max-width: 800px) {
  #hero .about-col{
    min-height: 7rem;
    min-width: 20rem;
  }
}
@media (max-width: 780px) {
  #hero .about-col{
    min-height: 7rem;
    min-width: 18rem;
  }
}
@media (max-width: 768px) {
  #hero .about-col{
    min-height: 5rem;
    min-width: 14rem;
  }
}
@media (max-width: 610px) {
  #hero .about-col{
    min-height: 5rem;
    min-width: 10rem;
  }
}
@media (max-width: 480px) {
  #hero .about-col{
    display: none;
  }
  #hero .text{
    padding: 0 1rem 0 1rem;
    margin-bottom: 4vh;
  }
}


#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #95B842;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #95B842;
}

.itens{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section{
  position: absolute;
}
/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-header span {
  color: #95B842;
}
.section-header #text {
  display: flex;
  flex-direction: column;
}

.section-header p {
  text-align: left;
  padding-bottom: 30px;
  color: #fff;
}


/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* question-dba Section
--------------------------------*/
#question-dba {
  background: linear-gradient(to bottom,#212121, #0c588e);
  height: auto;
}

#question-dba .box {
  padding: 30px 20px;
}

#question-dba .box-bg {
  background-image: linear-gradient(0deg, #212121 0%, #242323 50%, #212121 100%);
}

#question-dba i {
  color: #fff;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#question-dba h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
}

#question-dba h4 a {
  color: #fff;
}

#question-dba h4 a:hover {
  color: #95B842;
}

#question-dba p {
  font-size: 1rem;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
  display: flex;
  justify-content:center;
  align-items: center;
}

#question-dba h3{
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem;
  color: #fff;
  font-weight: 700;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem; 
}

.grid-item {
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.grid-item > p{
  padding: 0.8rem 2rem 0.5rem 2rem;
}

.grid-item-div {
  width: 30rem;
  max-width: 385.14px;
  height: 30rem;
  max-height: 385.14px;
  position: relative;
  overflow: hidden;
}

.grid-item-image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .grid-container{
    display: flex !important;
    flex-direction: column-reverse;
  } 
}

/* Question postegresql */

#question-postgresql {
  background: linear-gradient(to bottom, #0c588e 0%, #212121 100%);
  height: auto;
}

#question-postgresql .box {
  padding: 30px 20px;
}

#question-postgresql .box-bg {
  background-image: linear-gradient(0deg, #212121 0%, #242323 50%, #212121 100%);
}

#question-postgresql i {
  color: #fff;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#question-postgresql h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
}

#question-postgresql h4 a {
  color: #fff;
}

#question-postgresql h4 a:hover {
  color: #95B842;
}

#question-postgresql p {
  font-size: 1rem;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
  display: flex;
  justify-content:center;
  align-items: center;
}

#question-postgresql h3{
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem;
  color: #fff;
  font-weight: 700;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem; 
}

.grid-item {
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.grid-item > p{
  padding: 0.8rem 2rem 0.5rem 2rem;
}

.grid-item-div {
  width: 30rem;
  max-width: 385.14px;
  height: 30rem;
  max-height: 385.14px;
  position: relative;
  overflow: hidden;
}

.grid-item-image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  object-fit: cover;
}

/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0 40px 0;
  position: relative;
}

#about .container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#about .image{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

#about .image #stripes{
  position: relative;
  left: 11rem;
}

#about .image #image{
  max-width: 80%;
  animation: up-down-image 2s infinite cubic-bezier(0.1, 0.7, 1, 0.7);
}

#about .button{
  display: flex;
  justify-content: center;
  align-items: center;
}
#about .button a{
  width: 20rem;
  height: 3rem;
  color: #212121;
  font-weight: bold;
  border: none;
  background-color: #95B842;
  transition: background-color 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about .button a:hover{
    background-color: #496E00;
    color: #dedede;
}

@media (max-width: 992px) {
  #about .container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  #about .image #stripes{
    left: 8rem;
    margin: 1rem 0;
  }
  #about .image {
    gap: 0;
  }
}


/* Services Section
--------------------------------*/
#services {
  padding: 60px 0 40px 0;
  position: relative;
  width: 80%;
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #fff;
  font-size: 36px;
  line-height: 0;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title {
  color: #fff;
}

#title{
  color: #fff;
}

#services .box:hover .title a {
  color: #95B842;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#services .item {
  position: relative;
    padding: 0rem 1rem 0 1rem;
    height: 25rem;
    width: 31%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 1rem;
    transition: 0.5s;
}

#services .item:hover{
  transform: scale(1.1);
}

#services .item i{
  font-size: 3rem;
}

#services .infos{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#services .infos h3{
  margin: 0;
}

#services .item img{
  width: 5rem;
  height: auto;
  justify-content: center;
  align-items: center;
  display: flex;

}

#services .itens {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  gap: 1.5rem;
  color: #fff;
}

@keyframes gradient-animate {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400% 0;
  }
}

#services .item > div:first-child::before {
  z-index: -2;
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(to right, #496E00, #111, #496E00, #111, #496E00);
  background-size: 400%;
  animation: gradient-animate 20s linear infinite;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

#services .item > div:first-child::after {
  z-index: -2;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 98%;
  height: 98%;
  background-color: #243502;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

#services .grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 992px) {
  #services .itens {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #services .item {
    width:100%;
    min-height: 465px;
  }
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 7rem 0 0 0;
  position: relative;
  background-color: #fff;
  width: 100%;
}

#clients .section-header h3 {
  font-size: 32px;
  color: #212121;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#clients::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 93px;
  background: url("../img/divisor-section-down.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

#clients img {
  opacity: 0.5;
  transition: 0.3s;
}

#clients img:hover {
  opacity: 1;
}

#clients .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #496E00;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #496E00;
}


/* Contact Section
--------------------------------*/
#contact {
  background-color: #212121;
  padding: 13rem 0;
  position: relative;
  width: 100%;
}

#contact::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 93px;
  background: url("../img/divisor-section-contacts.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

#contact .container {
  position: relative;
  z-index: 10;
}
#contact .sub-container {
  display: grid;
  grid-template-columns: 30% 70%; 
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #fff;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #212121;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}

#contact .contact-info a {
  color: #fff;
}

#contact .contact-info a:hover {
  color: #95b842;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#contact .circuit{
  width: 13rem;
  height: 2rem;
}

#contact .flex{
  display: flex;
  justify-content: space-between;
}

.imgclass{
  display: inline-block;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  #contact .sub-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #contact .flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #contact .circuit{
    display: none;
  }
}


@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

#contact .php-email-form {
  box-shadow: 0 0 50px rgba(149, 184, 66, 0.1);
  padding: 30px;
  background: #333333;
}

#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: #95B842;
  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 #95B842;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form .form-group {
  margin-bottom: 20px;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #95B842;
}

#contact .php-email-form button[type=submit] {
  background: #95B842;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .php-email-form button[type=submit]:hover {
  background: #13a456;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #212121;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
  justify-content: center;
  display: flex;
}

#footer .logo {
  font-size: 25px;
  margin: 0;
  padding: 0;
  font-family: "Righteous", Sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
}

#footer .logo img {
  max-height: 40px;
}

#footer .footer-top {
  background: #212121;
  padding: 60px 0 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #95B842;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #95B842;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #95B842;
  width: 60px;
}

#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: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #95B842;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #95B842;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}