/**
* Template Name: Maxim - v2.2.0
* Template URL: https://bootstrapmade.com/maxim-free-onepage-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family:"Raleway", sans-serif;
}

a {
  color: #1bac91;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #DA291C;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
  border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 19px;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #c70606;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  /*background: #000;*/
}


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

#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: 992px) {
  #header {
    height: 60px;
    padding: 8px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  /*color: rgba(255, 255, 255, 0.8);*/
  padding: 8px 0 12px 0;
  transition: 0.3s;
      font-size: 15px;
    font-family: "Raleway", sans-serif;
	 text-transform: uppercase;
	 color:#fff;
}

.nav-menu > ul > li + li {
  margin-left: 30px;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
}
/*when scroll*/

.affix a{
  display: block;
  position: relative;
  /*color: rgba(255, 255, 255, 0.8);*/
  padding: 8px 0 12px 0;
  transition: 0.3s;
      font-size: 15px;
    font-family: "Raleway", sans-serif;
	 text-transform: uppercase;
	 color:black;
}
 .affix> ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: black;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.affix a:hover, .affix .active > a, .affix li:hover > a {
  color: black;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow:0px 5px 14px -5px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: #062822;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #DA291C;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #21413c;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  text-transform: uppercase;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #DA291C;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(16, 31, 29, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: calc(100vh - 72px);*/
  height:100vh;
  background: url("../img/BackgroundRed.jpg") center center;
  background-size: cover;
  position: relative;
 /* margin-top: 72px;*/
  padding: 0;
}

#hero:before {
  content: "";
  /*background: rgba(0, 0, 0, 0.4);*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 10px 20px;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: #fff;
letter-spacing: 1px;
text-transform: uppercase;
}

#hero h3 {
  margin: 0 0 10px 80px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
text-align: left!important;
text-transform: uppercase;
}

#hero h4 {
  margin: 0 0 10px 20px;
font-weight: 500;
font-size: 24px;
line-height: 29px;
text-transform: uppercase;

color: #FFFFFF;
}

#hero hr {
margin: 0 0 10px 26px;
    /* border: 1px solid #FFFFFF; */
    /* width: 50px; */
    position: relative;
    width: 38px;
    height: 0px;
    /* right: 150px; */
    top: 22px;
    /* left: 0px; */
    border: 1px solid #FFFFFF;
}

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

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

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

@media (max-width: 992px) {
  #hero {
    /*margin-top: 60px;
    height: calc(100vh - 60px);*/
	height:100vh;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
	text-align: left!important;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

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

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

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

.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #21413c;
}

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 72px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

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

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
padding-top:72px;
background-color:black;

}
.about h3 {
  font-weight: 400;
  font-size: 34px;
  color: #21413c;
}

.about .icon-box {
  margin-top: 44px;
}

.about .icon-box i {
  font-size: 48px;
  float: left;
  color: #1bac91;
}

.about .icon-box h4 {
  font-size: 22px;
  font-weight: 500;
  margin-left: 60px;
  color: #21413c;
}

.about .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}
/*--------------------------------------------------------------
# values
--------------------------------------------------------------*/
.values {
background-color:#fff;

}
/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
  padding: 50px 0 40px 0;
}

.steps .row {
  overflow: hidden;
}

.steps .content-item {
  padding: 40px;
  border-left: 1px solid #d4e9e6;
  border-bottom: 1px solid #d4e9e6;
  margin: -1px;
}

.steps .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #1bac91;
}

.steps .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
  color: #21413c;
}

.steps .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .steps .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 20px;
  transition: 0.3s;
  color: #21413c;
}

.features .nav-link:hover {
  color: #1bac91;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
}

.features .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.features .nav-link.active {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.12);
}

.features .nav-link.active h4 {
  color: #1bac91;
}

.features .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  box-shadow: 0 2px 29px 0 rgba(37, 37, 37, 0.1);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #a8d3cc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #eff7f6;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #1bac91 !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #1bac91;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #4ae3c6;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

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

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

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

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #1bac91 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.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: 50px;
}

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

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

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #1bac91;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

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

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

.faq .faq-list a {
  display: block;
  position: relative;
       font-family:"Raleway", sans-serif;
  font-size: 20px;
  line-height: 23px;
  font-style: normal;
  padding: 0 30px;
  outline: none;
color: #000000;
}

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

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

.faq .faq-list a.collapsed:hover {
  color: #1bac91;
}

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

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

.contact .info i {
  font-size: 20px;
  color: white;
  float: left;
  width: 44px;
  height: 44px;
  background: #DA291C;
  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: black;
        font-family:"Raleway", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
color: black;
        font-family:"Raleway", sans-serif;
}

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

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

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.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 input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

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

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

.contact .php-email-form button[type="submit"] {
  background: #1bac91;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #22d8b6;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  /*padding: 0 0 30px 0;*/
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
    background: #fff;
    border-bottom: 1px solid #18302c;
  /* padding: 20px 0px 0px 15px;
    margin-top: 10px;*/
}

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

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

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

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

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #4ae3c6;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #34dfbf;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1bac91;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #14806c;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.copyceco{
	font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
	color:#DA291C;
		font-family: "Raleway", sans-serif;
}
.modal-links a{
	font-weight: 500;
    font-size: 12px;
    /*text-transform: uppercase;*/
	color:#DA291C;
	text-decoration: none;
	white-space: nowrap;
		font-family: "Poppins", sans-serif;
}
.modal-links {

}
.social-links-lst{
	 display: inline-flex;
}
.social-links{
	  padding: 0px 10px 0px 0px;
}
.finance{
	display: inline-flex;
    margin-top: 30px;
} 
.finance-links{
	padding: 0px 80px 0px 5px;
	width: 10em;
}  

#container-bottom{
	  display: flex;
  flex-flow: row wrap; /* This is where the magic happens!*/
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-around;
}
#container-bottom>div {
  flex-basis: 22.5%;
  /*Try to take up 22.5% of the space, which would be almost a quarter but with a spacing of 2.5% total*/
  height: 100px;
  min-width: 80px;/* This is also where the magic happens */
}

.column {
  float: left;
  width: 16.33%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
  .column {
    width: 50%;
  }
.column_values{
	width: 100%;
}  
  .footer-links-img{
	  width: 50%;
  }
  
}

/* Create two equal columns that floats next to each other */
.column_hero {
  float: left;
  width: 50%;
  padding: 0px;
  
}
.column_hero_right {
  float: left;
  width: 50%;
  padding: 0px;
  padding-top: 90px;
    padding-left: 30px;

  
}
.column_hero_right_en{
	  float: left;
  width: 50%;
  padding: 0px;
  padding-top: 40px;
    padding-left: 30px;
}

/* Clear floats after the columns */
.row_hero:after {
  content: "";
  display: table;
  clear: both;
}
.paragraph_hero_right{
color: #DA291C;
    font-size: 38px;
    letter-spacing: -0.05em;
		font-family: "Raleway", sans-serif;
}

a.language{

    font-style: normal;
    font-size: 15px;
    line-height: 17px;
    letter-spacing: 0.15em;
    color: white;
font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    top: 7px;
	display: inline;
}

.paragraph_hero{
	text-align: right;
    padding-right: 20px;
    line-height: 30px;
	font-family: "Raleway", sans-serif;
	font-size: 18px;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
  .column_hero {
    width: 100%;
  }
    .column_hero_right {
    width: 100%;
	  float: left;

  padding: 0px;
  padding-top: 10px;
  text-align: right;
  }
      .column_hero_right_en {
    width: 100%;
	  float: left;

  padding: 0px;
  padding-top: 10px;
  text-align: right;
  }
  
  .paragraph_hero{
	text-align: right;
    padding-right: 20px;
    line-height: 30px;
	  font-size: 15px;
}


.paragraph_hero_right{
color: #DA291C;
    font-size: 20px;

}
a.language{

    font-style: normal;
    font-size: 15px;
    line-height: 17px;
    letter-spacing: 0.15em;
    color: black;
font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    top: 7px;
	display: block;
}
}

@media screen and (max-width: 320px) {
  .column_hero {
    width: 100%;
  }
    .column_hero_right {
    width: 100%;
	  float: left;
  padding: 0px;
  padding-top: 10px;
  }
      .column_hero_right_en {
    width: 100%;
	  float: left;
  padding: 0px;
  padding-top: 10px;
  }
  
  .paragraph_hero{
	text-align: right;
    padding-right: 20px;
    line-height: 30px;
	  font-size: 8px;
}


.paragraph_hero_right{
color: #DA291C;
    font-size: 20px;

}
a.language{

    font-style: normal;
    font-size: 15px;
    line-height: 17px;
    letter-spacing: 0.15em;
    color: black;
font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    top: 7px;
	display: inline;
}
}



.paragraph_hero_right_small{
	color: #DA291C;
    font-size: 13px;
    letter-spacing: -0.05em;
		font-family: "Raleway", sans-serif;
}



a.sel_lang{
	font-weight: bold;
}

.nav-menu > ul > li.selection > a:before {
-webkit-transition:none !important;
  -moz-transition:none !important;
  -o-transition:none !important;
  transition:none !important;
  visibility: hidden;
}

.affix a.language{
    font-style: normal;
    font-size: 15px;
    line-height: 17px;
    letter-spacing: 0.15em;
    color: black;

    text-transform: uppercase;
    text-decoration: none;
    top: 7px;
	display: inline;
}

    .modal-dialog-full-width {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width:none !important;

    }

    .modal-content-full-width  {
        height: auto !important;
        min-height: 100% !important;
        border-radius: 0 !important;
        background-color: #fff !important 
    }

    .modal-header-full-width  {
        border-bottom: 1px solid #9ea2a2 !important;
    }
.right_title{
	    font-family:"Raleway", sans-serif;
    color: white;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    padding-top: 20px;
    text-align: right;
	margin-right: 25px;
}
.v-line{
    border: 1px solid #FFFFFF;
    /* transform: rotate(90deg); */
    height: 60px;
    width: 0px;
    display: inline-block;
    /* margin: 0 10px; */
    position: absolute;
    top: 0px;
    right: 0px;
}

.right_description{
	font-weight: bold;
font-size: 250px;
line-height: 293px;
    font-family:"Raleway", sans-serif;
color: #FFFFFF;
}
.row_about{
	
}
.column_about_left{

}

.paragraph_about{
    font-family:"Raleway", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 198.9%;
    text-align: right;
    color: #FFFFFF;
	margin-top:90px;
}
.paragraph_about_justified{
	    font-family:"Raleway", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 198.9%;
    text-align: justify;
    color: #FFFFFF;
	padding-left: 10px;
    padding-right: 15px;
}

.left_title{
	    font-family:"Raleway", sans-serif;
font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    /* padding-top: 20px; */
    text-align: left;
    margin-left: 25px;
    color: black;
	position: absolute;
    top: -25px;
}
.v-line_left{
    border: 1px solid black;
    /* transform: rotate(90deg); */
    height: 66px;
    width: 0px;
    display: inline-block;
    /* margin: 0 10px; */
    position: absolute;
    top: -50px;
    left: 0px;
}

.right_title_black{
	    font-family:"Raleway", sans-serif;
	    color: black;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    padding-top: 20px;
    text-align: right;
	margin-right: 25px;
	position: absolute;
    right: 0px;
    top: -55px;
}

.v-line-black{
    border: 1px solid black;
    /* transform: rotate(90deg); */
    height: 66px;
    width: 0px;
    display: inline-block;
    /* margin: 0 10px; */
    position: absolute;
    top: -60px;
    right: 0px;
}

.os_titles_right{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 145%;

color: #000000;
text-align: right;
text-transform:uppercase;
}
.os_titles_left{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 145%;

color: #000000;
text-align: left;
text-transform:uppercase;
}
.p_os_left{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 199.9%;
/* or 32px */
text-align: left;

color: #000000;
}
.p_os_right{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 199.9%;
/* or 32px */
text-align: right;

color: #000000;
}
.column_os_left{
	padding-top:40px;
}

.aat{
	background-color:black;
}

.left_title_white{
	    font-family:"Raleway", sans-serif;
font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    /* padding-top: 20px; */
    text-align: left;
    margin-left: 25px;
    color: white;
	    position: absolute;
    top: -33px;
}
.v-line-white{
    border: 1px solid white;
    /* transform: rotate(90deg); */
    height: 66px;
    width: 0px; 
    display: inline-block;
    /* margin: 0 10px; */
    position: absolute;
    top: -60px;
    left: 0px;
}

.doted{
	background-image: linear-gradient(to right, black 50% , rgba(255,255,255,0) 0%);
background-position: bottom;
background-size: 4px 8px;
background-repeat: repeat-x;
}
.h_values{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 24px;
line-height: 28px;

color: #000000;
text-align:center;
}
.p_aat_center{
    font-family:"Raleway", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 217.9%;
    text-align: center;
    color: #FFFFFF;
    margin-top: 80px;
}

.p_aat_img{
	    font-family:"Raleway", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    color: #FFFFFF;
}

.accordion {
  color: #444;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  padding-top: 60px;
}

.card {
	background: none;
	border: none;
	padding-top: 15px;
}
.card-header {
background: #F5F5F5;
    border: none;
    padding: 0.4rem 1rem;
    font-family: "Raleway", sans-serif;
	
}
.card-header h2 span {
	float: left;
	margin-top: 10px;
}
 .card-header .btn {
	
    font-size: 1.04rem;
    text-align: left;
    position: relative;
    /* font-weight: 500; */
    padding-left: 2rem;
    width: 100%;
        font-family:"Raleway", sans-serif;
    font-style: normal;
    /* font-weight: bold; */
    font-size: 16px;
    line-height: 23px;
    color: #000000;
	height: auto;
}
.card-header i {
	font-size: 1.2rem;
	position: absolute;
	right: 0;
	top: 9px;
}
.card-header .btn:hover {
font-family:"Raleway", sans-serif;
    
    font-weight: bold; 
    font-size: 16px;
    line-height: 23px;
    color:#DA291C;
}
 .card-body {
    padding: 0.5rem 3rem;
        font-family:"Raleway", sans-serif;
    font-style: normal;
    /* font-weight: bold; */
    font-size: 16px;
    line-height: 199.9%;
    color: #000000;
}
}

.highlight .btn {

}
.highlight i {
	transform: rotate(180deg);
}

.button2{
color: black;
    background: white;
    border: 1px solid #fff;
    /* min-width: 164px; */
    padding: 0px 20px;
    border-radius: 30px;
    height: 40px;
    font-size: 12px!important;
	    font-weight: bold;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
}
.button2:hover{
    opacity: 0.8;
}
.button2:active {
  border-style: outset;
}
.button2:focus {outline:0;}

.button3{
color: black;
    background: white;
    border: 1px solid #fff;
    /* min-width: 164px; */
    padding: 0px 20px;
    border-radius: 30px;
    height: 40px;
    font-size: 12px!important;
	    font-weight: bold;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
	margin-left: 65px;
}
.button3:hover{
    opacity: 0.8;
}
.button3:active {
  border-style: outset;
}
.button3:focus {outline:0;}

.redes{
	background:#F5F5F5;
}

.p_redes_center{
    font-family:"Raleway", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 217.9%;
    text-align: center;
    color: black;
    margin-top: 80px;
}

.v-line_left_redes{
	    border: 1px solid black;
    /* transform: rotate(90deg); */
    height: 66px;
    width: 0px; 
    display: inline-block;
    /* margin: 0 10px; */
    position: absolute;
    top: -60px;
    left: 0px;
}

.left_title_redes{
	    font-family:"Raleway", sans-serif;
	font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    /* padding-top: 20px; */
    text-align: left;
    margin-left: 25px;
    color: black;
	position: absolute;
    top: -35px;
}

.p_redes_center_bold{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 22px;
line-height: 199.9%;
/* or 48px */

text-align: center;

color: #000000;
}

.p_redes_right_bold{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 22px;
line-height: 199.9%;
/* or 48px */

text-align: left;

color: #000000;
}
.p_redes{
padding-left: 40px;
        font-family:"Raleway", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 199.9%;
}

.ref_redes{
color: black;
    padding-left: 40px;
        font-family:"Raleway", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 199.9%;
}

.ref_redes:hover{
	color:#DA291C;
}

.box{
	padding-top:40px;
	width: 100%;
}
.box_img{
	
		max-width: 100%;
    max-height: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
     height: 50%;
}

.p_tech_center{
    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 20px;
line-height: 199.9%;
/* or 40px */

text-align: center;

color: #000000;
    margin-top: 80px;
}

.left_title_black{
	    font-family:"Raleway", sans-serif;
	    color: black;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    padding-top: 20px;
    text-align: left;
	margin-left: 25px;
	position: absolute;
    left: 0px;
    top: -55px;
}

.v-line-black-left{
    border: 1px solid black;
    /* transform: rotate(90deg); */
    height: 66px;
    width: 0px;
    display: inline-block;
    /* margin: 0 10px; */
    position: absolute;
    top: -60px;
    left: 0px;
}

.quote-wrapper {
  width: 300px;
  height: 300px;
  position: relative;
  margin: 10vh auto 0; /*OPTIONAL MARGIN*/
}

.text {
  width: 100%;
  height: 100%;
  /*BLUE BG*/
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0) 70.3%
  );
  /*RED BG
  background: radial-gradient(
    ellipse at center,
    rgba(210, 20, 20, 1) 0%,
    rgba(210, 20, 20, 1) 70%,
    rgba(210, 20, 20, 0) 70.3%
  );*/
  position: relative;
  margin: 0;
  color: white;
}

.text p {
  height: 100%;
  padding: 0;

  text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
  	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 199.9%;
/* or 32px */

text-align: center;

color: #FFFFFF;
}

.text::before {
  content: "";
  width: 50%;
  height: 100%;
  float: left;
  shape-outside: polygon(
    0 0,
    98% 0,
    50% 6%,
    23.4% 17.3%,
    6% 32.6%,
    0 50%,
    6% 65.6%,
    23.4% 82.7%,
    50% 94%,
    98% 100%,
    0 100%
  );
  shape-margin: 7%;
}

.text p::before {
  content: "";
  width: 50%;
  height: 100%;
  float: right;
  shape-outside: polygon(
    2% 0%,
    100% 0%,
    100% 100%,
    2% 100%,
    50% 94%,
    76.6% 82.7%,
    94% 65.6%,
    100% 50%,
    94% 32.6%,
    76.6% 17.3%,
    50% 6%
  );
  shape-margin: 7%;
}

.right_title_left{
	    font-family:"Raleway", sans-serif;
color: white;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    padding-top: 20px;
    text-align: right;
    margin-right: 25px;
    position: absolute;
    right: 0px;
    top: -55px;
}
.v-line-black-right{
border: 1px solid white;
    /* transform: rotate(90deg); */
    height: 66px;
    width: 0px;
    display: inline-block;
    /* margin: 0 10px; */
    position: absolute;
    top: -60px;
    right: 0px;
}
.investidores{
	background-color:black;
	background-image:url('../img/Investidores.jpg');
}

.os_titles_right_white{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 145%;

color: white;
text-align: right;
text-transform:uppercase;
}
.os_titles_left_white{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 145%;

color: white;
text-align: left;
text-transform:uppercase;
}
.p_os_left_white{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 199.9%;
/* or 32px */
text-align: left;

color: white;
}
.p_os_right_white{
	    font-family:"Raleway", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 199.9%;
/* or 32px */
text-align: right;

color: white;
}
.doted_white{
	background-image: linear-gradient(to right, white 50% , rgba(255,255,255,0) 0%);
background-position: bottom;
background-size: 4px 8px;
background-repeat: repeat-x;
}

.box_visual{
	width: 100%;
}
.box_visual_right{
	width: 100%;
	/*border: 1px white solid;*/
	    background: black;
    height: 52%;
}

.card1 {
	background: #fff;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.card1:hover{
  transform: scale(1.05);
  box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}

.card1 img{
	width: 100%;
}
.card-title a{
    font-size: 15px;
        font-family:"Raleway", sans-serif;
    font-style: normal;
    font-weight: bold;
    /* font-size: 20px; */
    color: #000000;
    padding-left: 5px;
}
.card_p_date{
        font-family:"Raleway", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 10px;
    text-align: left;
    padding-left: 5px;
    padding-top: 15px;
}

.card-text{
        font-family:"Raleway", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    padding-left: 5px;
    /* padding-top: 10px; */
    color: black;
	height: 62px;
	    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.row-top{
	height:45px;
	padding-top: 10px;
}

@media screen and (max-width: 500px) {
 
.row-top{
	height:auto;
	padding-top: 10px;
}  
}

.media-carroussel-p{
	    font-family:"Montserrat", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    padding-top: 10px;
	
}
.media-p-id{
		    font-family:"Montserrat", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
	    color: white;
    padding-top: 10px;
}
.values-p{
	font-family:"Montserrat", sans-serif;
	text-align: center;
	font-size: 18px;
	line-height: 199.9%;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.modal-dialog {
  position: fixed;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

.modal-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid black;
  border-radius: 0;
  box-shadow: none;
     background: black;
    opacity: 0.6;
}

.modal-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  padding: 10px;
  background: #6598d9;
  border: 0;
}

.modal-title {
  font-weight: 300;
  font-size: 2em;
  color: #fff;
  line-height: 30px;
}

.modal-body {
  position: absolute;
  top: 50px;
  bottom: 60px;
  width: 100%;
  overflow: auto;

}

.modal-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  padding: 10px;
  background: #f1f3f5;
}

.btn {
  height: 40px;
  border-radius: 0;

  // focus
  &:focus,
  &:active,
  &:active:focus {
    box-shadow: none;
    outline: none;
  }
}

.btn-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -100px;
  width: 200px;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  font-weight: 300;
  font-size: 1.6rem;
  color: #fff;
  color: lighten(#484b5b, 20%);
  color: #fff;
  text-align: center;
  background: #60cc69;
  border: 1px solid #36a940;
  border-bottom: 3px solid #36a940;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);

  // active
  &:active {
    border-bottom: 1px solid #36a940;
  }
}

.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  font-weight: 300;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  background: darken(#dcdfe4, 10%);
  border: 1px solid darken(#dcdfe4, 20%);
  border-bottom: 3px solid darken(#dcdfe4, 20%);

  // active
  &:active {
    border-bottom: 1px solid darken(#dcdfe4, 20%);
  }
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  color: #cc7272;
  background: transparent;
  border: 0;
}

h1,
h2,
h3 {

    font-family: Raleway;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    color: #FFFFFF;
text-transform:uppercase;
  // first
  &:first-child {
    margin-top: 0;
  }
}

p {
  font-size: 1.4em;
  line-height: 1.5;
  color: lighten(#5f6377, 20%);

  // last
  &:last-child {
    margin-bottom: 0;
  }
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width:0px;
  background: #f1f3f5;
  border-left: 1px solid darken(#f1f3f5, 10%);
}

::-webkit-scrollbar-thumb {
  background: darken(#f1f3f5, 20%);
}
@media (min-width: 576px){
.modal-dialog {
    max-width: 100%;
   
}
}

#close {
    float:right;
    display:inline-block;
    padding:2px 5px;
        color: white;
    font-size: 40px;
    font-style: bold;
    font-weight: bold;
    cursor: pointer;
}
.p-modal-text{
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 15px;
line-height: 136.9%;
/* or 21px */

    text-align: justify;

padding-top: 50px;
    padding-right: 15px;
color: #FFFFFF;
}

/*Cookie Consent Begin*/
#cookieConsent {
    background-color: rgba(76,76,76,0.8);
    min-height: 26px;
    font-size: 12px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: "Trebuchet MS",Helvetica,sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}
#cookieConsent a {
    color: #4B8EE7;
    text-decoration: none;
}

#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    
}
#closeCookieConsent:hover {
    color: #FFF;
}
#cookieConsent a.cookieConsentOK {
   
    color: #ccc;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
    color: white;
	font-weight: bold;
	display: inline-block;

}

.p-modal-text-title{
	font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    /* line-height: 136.9%; */
    text-align: justify;
    padding-top: 30px;
    padding-right: 15px;
    color: #FFFFFF;
}
.p-modal-text-midle{
font-family: Raleway;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 136.9%;
    text-align: justify;
    /* padding-top: 50px; */
    padding-right: 15px;
    color: #FFFFFF;
}
.box_img_chains{
max-width: 100%;
    max-height: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}



/*--------------------------------------------------------------
# Hero - Events Section
--------------------------------------------------------------*/
#hero-events {
  width: 100%;
  /*height: calc(100vh - 72px);*/
  height:100vh;
  background: url("../img/BackgroundRed.jpg") center center;
  background-size: cover;
  position: relative;
 /* margin-top: 72px;*/
  padding: 0;
}

#hero-events:before {
  content: "";
  /*background: rgba(0, 0, 0, 0.4);*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-events .container {
  z-index: 2;
}

#hero-events h1 {
  margin: 0 0 10px 20px;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: #fff;
letter-spacing: 1px;
text-transform: uppercase;
}

#hero-events h3 {
  margin: 0 0 10px 80px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
text-align: left!important;
text-transform: uppercase;
}

#hero-events h4 {
  margin: 0 0 10px 20px;
font-weight: 500;
font-size: 24px;
line-height: 29px;
text-transform: uppercase;

color: #FFFFFF;
}

#hero-events hr {
margin: 0 0 10px 26px;
    /* border: 1px solid #FFFFFF; */
    /* width: 50px; */
    position: relative;
    width: 38px;
    height: 0px;
    /* right: 150px; */
    top: 22px;
    /* left: 0px; */
    border: 1px solid #FFFFFF;
}

#hero-events h2 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 24px;
}

#hero-events .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero-events .btn-get-started:hover {
  border-color: #1bac91;
  background: #1bac91;
}

@media (min-width: 1024px) {
  #hero-events {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero-events {
    /*margin-top: 60px;
    height: calc(100vh - 60px);*/
	height:100vh;
  }
}

@media (max-width: 768px) {
  #hero-events h1 {
    font-size: 28px;
    line-height: 36px;
	text-align: left!important;
  }
  #hero-events h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}
.propriedadeintelectual{
    padding-top: 72px;
    background-color: black;
}

.left_title_investors {
    font-family: "Montserrat", sans-serif;
    color: white;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    padding-top: 20px;
    text-align: left;
    margin-left: 25px;
    position: absolute;
    left: 0px;
    top: -55px;
}

.v-line-white-left {
    border: 1px solid white;
    /* transform: rotate(90deg); */
    height: 66px;
    width: 0px;
    display: inline-block;
    /* margin: 0 10px; */
    position: absolute;
    top: -60px;
    left: 0px;
}

.values-p1{
	font-family:"Montserrat", sans-serif;
	text-align: center;
	font-size: 16px;
	line-height: 199.9%;
}

#mask {
  position:absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color:#26262c;
  display:none;
}  
#boxes .window {
  position:absolute;
  left:0;
  top:0;
  width:440px;
  height:850px;
  display:none;
  z-index:9999;
  padding:20px;
  border-radius: 5px;
  text-align: center;
}
#boxes #dialog {
    padding: 10px 10px 10px 10px;
    /* background-color: #ffffff; */
    font-size: 15pt;
    position: absolute;
    top: 50%;
    left: 58%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
}

.agree:hover{
  background-color: #D1D1D1;
}
.popupoption:hover{
	background-color:#D1D1D1;
	color: green;
}
.popupoption2:hover{
	color: red;
}
#san{
    width: 630px;

}
.bannercc{
	    height: 235px;
    width: 100%;
}

.top-right {
    position: absolute;
  top: 75px;
    right: 22%;
    color: #254E47;
    font-size: 40px;
    /* font-family: 'Raleway'; */
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

.x{
  position: relative;
  text-align: center;
  color: white;
}

.v-line-cc{
	border: 1px solid #254E47;
	    height: 60px;
    width: 0px;
    display: inline-block;
    /* margin: 0 10px; */
    /* position: absolute; */
    top: 0px;

}

.cc {
padding-top:72px;
background-color:white;

}

.cc_card_green{
border: 1px solid #254E47;
    width: 50%;
    margin-left: 25%;
    margin-top: 25px;
    /* color: white; */
    background-color: #254E47;
	height: 50px;
}

.cc_card_body{
	    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: white;
    text-transform: uppercase;
	    padding: 10px 0;
		text-align:left;
		margin-left: 15px;
}
.cc_proj_div{
text-align: justify;
    margin-top: 30px;
    width: 75%;
}

.cc_title_main{
    color: #254E47;
    font-size: 25px;
	text-transform: none;
}

.cc_p{
	color: gray;
    font-size: 16px;
}

        .menu-container {
            
            position: fixed;
            top: 0;
            display: flex;
            flex-direction: column;
            width: 150px;
			float: left;
			    margin-top: 250px;
        }

        .menu-item-1 {
padding: 10px 20px;
            transition: background-color 0.3s ease;
			
			    border: 1px solid #254E47;
    width: 276px;
    margin-left: 90%;
    margin-top: 25px;
    /* color: white; */
    background-color: #254E47;
    height: 50px;
        }

		.menu-item-1:hover,
        .menu-item-1.active {
            background-color: #DFDE69;
			border:none;
        }
        .menu-item-2 {
padding: 10px 20px;
            transition: background-color 0.3s ease;
			
			    border: 1px solid #254E47;
    width: 276px;
    margin-left: 90%;
    margin-top: 25px;
    /* color: white; */
    background-color: #254E47;
    height: 50px;
        }

		.menu-item-2:hover,
        .menu-item-2.active {
            background-color: #DFDE69;
			border:none;
        }
		
		        .menu-item-3 {
padding: 10px 20px;
            transition: background-color 0.3s ease;
			
			    border: 1px solid #254E47;
    width: 276px;
    margin-left: 90%;
    margin-top: 25px;
    /* color: white; */
    background-color: #254E47;
    height: 50px;
        }

		.menu-item-3:hover,
        .menu-item-3.active {
            background-color: #DFDE69;
			border:none;
        }
		
        .content {
            flex-grow: 1; /* O conteúdo ocupa o restante da largura */
            padding: 20px;
            box-sizing: border-box;
        }

        .content-section {
            margin-bottom: 50px;
        }

.span_red{
	color:red;
}
.form-check-label{
	font-size: 15px;
    font-family: "Poppins", sans-serif;
}

.btn_submit{
background-color:#254E47;
}
		.btn_submit:hover {
            background-color: #DFDE69;
			border:none;
        }


.drag-area {
  height: 290px;
  border: 3px dashed #e0eafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 10px auto;
}

.drag-area .icon {
  font-size: 50px;
  color: #254E47;
}
.drag-area .header {
  font-size: 20px;
  font-weight: 500;
  color: #34495e;
}
.drag-area .support {
  font-size: 12px;
  color: gray;
  margin: 10px 0 15px 0;
}
.drag-area .button {
  font-size: 20px;
  font-weight: 500;
  color: #254E47;
  cursor: pointer;
}

.drag-area img {
  width: 30%;
  height: 100%;
  object-fit: cover;
}
.drag-area.active {
  border: 2px solid #1683ff;
}
