/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root{
  --primary: #0059f2;
  --primary-hover: #08398e;
  --secondary: #336cd5;
  --secondary-hover: #0f4ec2;
  --white: #ffffff;
  --grey: #c5c5c5;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

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

.footer-bg {
  position: relative;

  background-image: url(../img/bg-footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  z-index: 1;
}

.footer-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 100%;
  background-color: #0059f2d3;
  /* background: linear-gradient(to bottom, #0059f2d3 0%, #002256d3 50%, #002256 70%); */

  z-index: -1;
}

.footer-bg-2 {
  position: relative;

  background-color: var(--primary);
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;

  background: transparent;
  padding: 15px 40px;

  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

#header .header-container {
  justify-content: space-between;

  border-radius: 15px;
  margin-top: 35px;
  padding: 10px 50px;
  background-color: var(--white);

  box-shadow: 0 8pt 10pt 1pt #00000040;
}

#header.header-2 .header-container {
  background-color: var(--primary);
}

#header .logo {
  display: flex;
  justify-content: start;

  font-size: 30px;
  margin: 0;
  margin-bottom: 10px;
  width: 100%;
  max-width: 180px;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: var(--primary);
}

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

#header .cont-btn {
  display: flex;
  justify-content: end;

  width: 100%;
  max-width: 180px;
}
/**
* Get Startet Button 
*/

.access-btn {
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  padding: 6px 12px;
  white-space: nowrap;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  font-size: 20px;
  font-weight: 900;
  display: inline-block;
}

#header.header-2 .access-btn {
  background-color: var(--white);
  color: var(--primary);
}

.access-btn:hover {
  background: var(--primary-hover);
  color: var(--white);
}

#header.header-2 .access-btn:hover {
  background-color: var(--white);
  color: var(--primary-hover);
}

@media (max-width: 1100px) {
  .access-btn {
    font-size: 18px;
  }  
}

@media (max-width: 768px) {
  .access-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

@media (max-width: 600px) {
  .access-btn {
    font-size: 16px;
    padding: 6px 10px;
  }  

  #header {
    padding: 5px 20px;
  }

  #header .header-container {
    margin-top: 15px;
    padding: 8px 25px;
  }  
}

@media (max-width: 400px) {
  #header {
    padding: 0px;
  }

  #header .header-container {
    margin-top: 0px;
    border-radius: 0px;
    padding: 8px 15px;
  }  
}


/*--------------------------------------------------------------
# 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 45px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary);
  white-space: nowrap;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

#header.header-2 .navbar a,
#header.header-2 .navbar a:focus {
  color: var(--white);
}

.navbar ul > :first-child a {
  padding-left: 0;
}

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

.navbar a:hover,
.navbar li:hover>a {
  color: var(--primary-hover);
}

#header.header-2 .navbar a:hover,
#header.header-2 .navbar li:hover>a {
  color: #ffffffdc;
}

.navbar .active,
.navbar .active:focus {
  font-weight: 600;
  color: var(--primary);
}

#header.header-2 .navbar .active,
#header.header-2 .navbar .active:focus {
  color: var(--white);
}

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

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

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

.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: var(--primary);
}

.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: var(--primary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin-left: 5px;
}

#header.header-2 .mobile-nav-toggle {
  color: var(--white);
}

.mobile-nav-toggle.bi-x {
  color: var(--white);
}

@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(32, 38, 34, 0.9);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-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: 6px;
  background-color: var(--white);
  overflow-y: auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37423b !important;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary) !important;
}

.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: var(--white);
  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: var(--primary);

}

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

@media (max-width: 1100px) {
  .navbar a,
  .navbar a:focus {
    font-size: 18px;
    padding: 10px 0 10px 25px;
  }

  .navbar ul > :first-child a {
    padding-left: 25px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background-color: var(--primary);
  position: relative;
  padding-bottom: 0px;
}

#hero.hero-2 {
  position: relative;
  z-index: 1;

  background: url(../img/presence/bg-2.jpg) center no-repeat;
  background-size: cover;
  background-color: var(--white);
}

#hero.hero-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

  width: 100%;
  height: 100%;
  background-color: #ffffffd1;
}

#hero.charging{
  overflow: hidden;
}

#hero.charging #heroSlider{
  opacity: 0;
  visibility: hidden;
  height: 400px;
}

#heroSlider {
  position: relative;
  min-height: 200px;
}

#hero .contLoader{
  position: absolute;
  z-index: -9999;
  left: 0;
  top: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;
}

#hero .contLoader.show{
  z-index: 1;
}

#hero .contLoader.show .heroLoader {
  display: inline-block;

  overflow: visible;
  width: 80px;
  height: 80px;
}

#hero .contLoader.show .heroLoader::after {
  content: " ";

  display: block;

  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid var(--white);
  border-color: var(--white) transparent var(--white) transparent;

  animation: rotate360 1.2s linear infinite;
  -webkit-animation: rotate360 1.2s linear infinite;
  -moz-animation: rotate360 1.2s linear infinite;
  -o-animation: rotate360 1.2s linear infinite;
}

#hero .container-hero {
  margin-top: 85px;
  padding: 60px;
  padding-bottom: 0px;
  padding-top: 0px;
}

#hero .carousel-inner {
  border-radius: 20px;
  overflow: hidden;
}

#hero .container-hero img {
  width: 100%;
  border-radius: 20px;
}

#hero .cont-spark {
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 100%;
}

#hero .cont-spark img {
  width: 100%;
}

#hero .cont-msg {
  position: absolute;
  left: 0;
  bottom: -27px;

  display: flex;
  justify-content: center;

  width: 100%;
}

#hero .cont-msg .text {
  width: 100%;
  max-width: 400px;
  background-color: var(--white);
  padding: 8px 12px;
  border-radius: 18px;

  text-align: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 24px;
}

#hero .cont-m {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;

  background-color: #eeeded;
  margin-top: 70px;
  padding: 80px 160px;
  border-bottom: 5px solid var(--grey);
}

#hero .cont-m .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 0px;
  border-radius: 30px;
  padding: 35px;
  background-color: var(--primary-hover);
  width: max-content;
}

#hero .cont-m .box.box-start {
  justify-self: flex-start;
}

#hero .cont-m .box.box-end {
  justify-self: flex-end;
}

#hero .cont-m .box img {
  width: 150px;
}

#hero .cont-m .text {
  text-align: center;
}

#hero .cont-text {
  margin: 100px 0 100px 0;
  padding: 30px 28%;

  text-align: center;
  font-size: 26px;
  color: var(--primary);
}

@media (max-width: 1064px) {
  #hero .container-hero {
    margin-top: 85px;
    padding: 0px 35px 0px 35px;
  }

  #hero .cont-m {
    grid-template-columns: 1fr;
  }  

  #hero .cont-m .box {
    margin-top: 15px;
  }

  #hero .cont-m .box.box-start {
    justify-self: center;
  }
  
  #hero .cont-m .box.box-end {
    justify-self: center;
  }
}

@media (max-width: 600px) {
  #hero .container-hero {
    margin-top: 50px;
    padding: 0px 35px 0px 35px;
  }

  #hero .cont-text {
    padding: 30px 15px;
  }

  #hero .cont-m {
    margin-top: 40px;
  }  
}

@media (max-width: 500px) {
  #hero .container-hero {
    margin-top: 45px;
    padding: 0px 10px 0px 10px;
  }

  #hero .cont-m {
    padding: 60px 10px;
  }

  #hero .cont-msg .text {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 400px) {
  #hero .container-hero {
    margin-top: 25px;
    padding: 0px 10px 0px 10px;
  }
}

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

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

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

.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;
  background: #9ae1af;
  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: #37423b;
}

.breadcrumbs {
  margin-top: 73px;
  text-align: center;
  background: var(--primary);
  padding: 30px 0;
  color: var(--white);
}

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

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 500;
}

.breadcrumbs p {
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counters
--------------------------------------------------------------*/

#counters {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

#counters .cont-bg {
  position: relative;

  /* background: url(../img/bg-counters.jpg) no-repeat center; */
  /* background-size: cover; */
  background-color: var(--primary);
  padding: 60px 180px;
}

#counters .cont-bg .line {
  position: absolute;
  left: 8%;
  top: 15%;

  height: 70%;
  width: 6px;
  background-color: var(--white);
}

#counters .title {
  color: var(--white);
  font-size: 32px;
}

#counters .sub-title {
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: 600;
  color: var(--white);
}

#counters .text {
  font-size: 60px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

#counters .cont-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#counters .cont-img img {
  width: 100%;
  height: 100%;
  max-width: 600px;
}

@media (max-width: 1150px) {
  #counters .cont-bg {
    padding: 60px 100px;
  }  

  #counters .cont-bg .line {
    display: none;
  }
}

@media (max-width: 800px) {
  #counters .cont-bg {
    /* background-image: none; */
    /* background-color: #ffffff; */
    padding: 60px;
  }  

  #counters .cont-bg .row {
    justify-content: center;
  }  

  #counters .cont-img {
    margin-top: 20px;
  }
}

@media (max-width: 400px) {
  #counters .cont-bg {
    padding: 30px 10px;
  }  
}

/*--------------------------------------------------------------
# home-about
--------------------------------------------------------------*/

#homeAbout {
  position: relative;
  padding: 0;
  padding-top: 120px;

  overflow: visible;
}

#homeAbout .cont-img1 {
  position: absolute;
  left: 0;
  top: 10%;

  z-index: 2;
}

#homeAbout .cont-img2 {
  position: absolute;
  right: 0;
  bottom: -23%;

  z-index: 2;
}

#homeAbout .cont-img1 img,
#homeAbout .cont-img2 img {
  width: 400px;
}

#homeAbout .container {
  padding: 140px 0;
}

#homeAbout .cont-content {
  position: relative;

  /* background: radial-gradient(#ffffff89 2%, #ffffffc9, #ffffffe5); */
  background-color: #ffffff;
  padding: 40px 90px;

  z-index: 1;
}

#homeAbout .content {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
  color: var(--primary);
  font-size: 18px;
}

#homeAbout .content .logo {
  margin-bottom: 30px;
  width: 80px;
}

#homeAbout .content a {
  font-weight: 600;
  font-size: 20px;
}

#homeAbout .title {
  color: var(--primary);
  font-size: 42px;

}

#homeAbout .imgV {
  position: absolute;
  top: calc(50% - 290px);
  right: 15px;

  height: 560px;
}

@media (max-width: 1199px) {
  #homeAbout .imgV {
    position: absolute;
    top: calc(50% - 280px);
  
    height: 540px;
  }
}

@media (max-width: 991px) {
  #homeAbout .title {
    text-align: left;
  }

  #homeAbout .cont-img1 img,
  #homeAbout .cont-img2 img {
    width: 65%;
  }    

  #homeAbout .cont-img1 {
    top: 10%;
  }

  #homeAbout .cont-img2 {
    display: flex;
    justify-content: end;  
    bottom: -15%;
  }

  #homeAbout .container {
    padding: 80px 0;
  }
}

@media (max-width: 500px) {
  #homeAbout .cont-img1,
  #homeAbout .cont-img2 {
    display: none;
  }    
  
  #homeAbout .cont-content {
    padding: 60px 45px;
    border-radius: 0px;
  }

  #homeAbout .container {
    padding: 0px 0;
  }
}

/*--------------------------------------------------------------
# homeMap
--------------------------------------------------------------*/
#homeMap {
  position: relative;

  padding-bottom: 0px;
  background: linear-gradient(to bottom, transparent 65%, var(--primary) 35%);
}

#homeMap .content {
  display: flex;
  align-items: center;
  flex-direction: column;

  color: var(--white);
  text-align: center;
}

#homeMap .title {
  font-size: 80px;
  line-height: 1;
}

#homeMap .title b {
  font-style: italic;
}

#homeMap .text {
  margin-top: 15px;
  background-color: var(--white);
  width: fit-content;
  padding: 5px 30px;

  color: var(--primary);
  font-size: 20px;
  word-spacing: 5px;
  letter-spacing: 1px;
}

#homeMap .line {
  margin-top: 90px;
}

#homeMap .map {
  position: relative;
  top: -20px;
}

@media (max-width: 991px) {
  #homeMap .line {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  #homeMap .map {
    position: relative;
    top: 0;
    
    margin-top: 10px;
  }
}

@media (max-width: 500px) {
  #homeMap .title {
    font-size: 60px;
  }

  #homeMap .text {
    margin-top: 24px;
    font-size: 18px;  
  }
}

@media (max-width: 400px) {
  #homeMap .title {
    font-size: 50px;
  }

  #homeMap .text {
    margin-top: 24px;
    padding-left: 0px;
    width: 100%;
    font-size: 18px; 
    text-align: center; 
    word-spacing: normal;
  }
}

/*--------------------------------------------------------------
# About Info 1
--------------------------------------------------------------*/

#about-info-1 {
  position: relative;

  padding: 0px;
}

#about-info-1 .out-box {
  background-color: var(--primary);
  padding-left: 0px;
  padding-right: 0px;

  color: var(--white);
}

#about-info-1 .box {
  height: calc(200px + 20em);
}

#about-info-1 .box.img-box.img-1, 
#about-info-1 .box.img-box.img-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#about-info-1 .img-box.img-1 {
  background: url(../img/about/1-1a.jpg);
}

#about-info-1 .img-box.img-2 {
  background: url(../img/about/1-2a.jpg);
}

#about-info-1 .text-box {
  display: flex;
  justify-content: center;
  flex-direction: column;

  height: 100%;
  padding: 30px 32%;

  font-size: 20px;
}

#about-info-1 .text-box h3 {
  margin-bottom: 30px;

  font-size: 80px;
  font-style: italic;
  font-weight: 900;
}

@media (min-width: 1200px) {
  #about-info-1 .text-box {
    font-size: 28px;
  }

  #about-info-1 .text-box h3 {
    font-size: 100px;
  }  
}

@media (max-width: 1400px) {
  #about-info-1 .text-box {
    font-size: 24px;
  }

  #about-info-1 .text-box h3 {
    font-size: 85px;
  }  
}

@media (max-width: 1200px) {
  #about-info-1 .text-box {
    font-size: 20px;
  }

  #about-info-1 .text-box h3 {
    font-size: 80px;
  }  
}

@media (max-width: 500px) {
  #about-info-1 .text-box {
    padding: 30px;
    font-size: 18px;
  }

  #about-info-1 .text-box h3 {
    font-size: 75px;
  }  
}

/*--------------------------------------------------------------
# About Info 2
--------------------------------------------------------------*/

#about-info-2 {
  position: relative;

  background: url(../img/about/2-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 60px;
}

#about-info-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;

  width: 100%;
  height: 100%;
  background-color: #393939c2;
}

#about-info-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;

  width: 100%;
  height: 15%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.99));
  box-shadow: 0 -10px 25px 30px rgba(255, 255, 255, 0.78);
}

#about-info-2 .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

#about-info-2 .cont-content {
  position: relative;

  background: radial-gradient(#ffffff89 2%, #ffffffc9, #ffffffe5);
  /* background-color: #ffffffca; */
  border-radius: 40px;
  padding: 60px 90px;

  z-index: 10;
}

#about-info-2 .content {
  font-size: 22px;
}

#about-info-2 .content strong {
  color: var(--primary);
}

#about-info-2 .content .cont-lines {
  width: 100%;
  margin-top: 30px;
}

#about-info-2 .content .line {
  width: 60%;
  margin-top: 15px;
  height: 5px;
  background-color: var(--primary);
}

#about-info-2 .title {
  color: var(--primary);
  font-size: 60px;
  font-weight: 900;
}

#about-info-2 .imgV {
  position: absolute;
  bottom: -3px;
  right: -25px;

  height: 36em;
}

@media (max-width: 1400px) {
  #about-info-2 .title {
    font-size: 50px;
  }

  #about-info-2 .content {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  #about-info-2 .cont-content {
    padding: 20px 45px;
    border-radius: 0px;
  }

  #about-info-2 .container {
    padding: 0px 0;
  }

  #about-info-2 .title {
    font-size: 36px;
  }

  #about-info-2 .content {
    font-size: 18px;
  }

  #about-info-2::before {
    height: 6%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.99));
    box-shadow: 0 -5px 15px 20px rgba(255, 255, 255, 0.78);
  }
}

/*--------------------------------------------------------------
# About Info 3
--------------------------------------------------------------*/

#about-info-3 {
  position: relative;
  padding-bottom: 0px;
}

#about-info-3 .title {
  color: var(--primary);
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  font-style: italic;

  margin-bottom: 5px;
  padding-bottom: 0px;
}

#about-info-3 .sub-title {
  font-size: 20px;
  text-align: center;
}

#about-info-3 .cont-box {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;

  margin-top: 60px;
}

#about-info-3 .box {
  height: 200px;
  width: 150px;
}

#about-info-3 .box .cont-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

#about-info-3 .box .text {
  margin-top: 15px;

  color: var(--primary);
  text-align: center;
  font-size: 20px;
}

/*--------------------------------------------------------------
# About Info 4
--------------------------------------------------------------*/

#about-info-4 {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 60px;
}

#about-info-4 .cont-text {
  position: absolute;
  top: 5%;
  left: 5%;

  color: var(--primary);
}

#about-info-4 .cont-text .title {
  font-size: 90px;
  font-weight: 600;
  line-height: 1;
  font-style: italic;
}

#about-info-4 .cont-text .sub-title {
  font-size: 24px;
}

#about-info-4 .cont-img {
  padding-left: 20%;
  display: flex;
  justify-content: end;

  width: 100%;
}

@media (max-width: 1100px) {
  #about-info-4 .cont-text .title {
    font-size: 70px;
  }

  #about-info-4 .cont-text .sub-title {
    font-size: 20px;
  }  
}

@media (max-width: 900px) {
  #about-info-4 .cont-text {
    top: 2%;
    left: 2%;
  }

  #about-info-4 .cont-text .title {
    font-size: 54px;
  }

  #about-info-4 .cont-text .sub-title {
    font-size: 18px;
  }  
}

@media (max-width: 680px) {
  #about-info-4 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Products Hero Section
--------------------------------------------------------------*/
#productsHero {
  width: 100%;
  padding-top: 145px;
  padding-bottom: 0px;
  background-color: var(--grey);
  position: relative;
}

#productsHero .cont-spark {
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 100%;
}

#productsHero .cont-spark img {
  width: 100%;
}

/*--------------------------------------------------------------
# Catalogue
--------------------------------------------------------------*/

#catalogue {
  position: relative;

  /* background: url(../img/products/cat-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  background-color: var(--grey);
}

#catalogue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;

  width: 100%;
  height: 100%;
  background-color: #c5c5c5b7;
}

#catalogue .cont-title {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center ;
}

#catalogue .cont-title .title {
  padding: 12px 120px;
  border-radius: 50px;
  background-color: var(--white);
  width: fit-content;
  margin-bottom: 80px;
  box-shadow: -4px 4px 4px 2px #1212125f;
  -webkit-box-shadow: -4px 4px 4px 2px #1212125f;

  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
}

#catalogue .cont-content {
  position: relative;
  z-index: 2;

  padding: 60px 80px;
  background-color: var(--primary);

  color: var(--white);
}

#catalogue .cont-content .title {
  font-weight: 900;
  font-size: 32px;
}

#catalogue .cont-content .content {
  display: flex;
  flex-direction: column;

  padding-left: 8px;
}

#catalogue .cont-content .content .box {
  display: grid;
  grid-template-columns: 50% 50%;

  width: 100%;
  margin-bottom: 20px;
}

#catalogue .cont-content .content .box .text {
  font-size: 22px;
}

#catalogue .cont-content .content .box .inp {
  background-color: transparent;
  border: 2px solid transparent;
  border-bottom: 2px solid var(--white);

  font-size: 22px;
  color: var(--white);

  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}

#catalogue .cont-content .content .box .inp:focus {
  outline: 0px;
  box-shadow: none;
  border: 2px solid var(--white);
}

#catalogue .cont-content .btn-send {
  background-color: var(--white);
  border-radius: 50px;
  padding: 2px 40px;
  box-shadow: -4px 4px 4px 2px #12121225;
  -webkit-box-shadow: -4px 4px 4px 2px #12121225;
  margin-left: 8px;
  margin-top: 14px;
  border: 0px;

  color: var(--primary);
  font-weight: 900;
  font-size: 22px;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#catalogue .cont-content .btn-send:hover {
  opacity: 0.8;
}

#catalogue .imgV {
  position: absolute;
  top: -100px;
  right: -13em;

  width: 600px;
}

@media (max-width: 1200px) {
  #catalogue .imgV {
    right: -17em;
  } 
}

@media (max-width: 600px) {
  #catalogue .cont-content .content .box {
    grid-template-columns: 100%;
  }

  #catalogue .cont-content {
    padding: 30px 40px;
  }
}

/*--------------------------------------------------------------
# Catalogue
--------------------------------------------------------------*/

#products {
  position: relative;
  background-color: var(--grey);
  padding-bottom: 20px;
}

#products .cont-title2 {
  display: flex;
  justify-content: center;

  margin-top: 50px;
}

#products .cont-title2 .title2 {
  padding: 12px 120px;
  border-radius: 50px;
  background-color: var(--white);
  width: fit-content;
  margin-bottom: 20px;
  box-shadow: -4px 4px 4px 2px #1212125f;
  -webkit-box-shadow: -4px 4px 4px 2px #1212125f;

  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
}

#products .cont-title {
  width: 100%;
}

#products .cont-title .title {
  font-size: 42px;
  color: var(--primary);
  text-align: center;
  font-weight: 600;
}

#products .cont-search {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  padding: 20px 0px;
  width: 100%;
}

#products .cont-search .title {
  margin-right: 15px;
  color: #1c1c1c;
}

#products .cont-search .search {
  background-color: var(--primary);
  border: 2px solid var(--secondary);
  border-radius: 15px;
  padding: 5px 10px;
  margin-right: 10px;

  text-align: center;
  color: var(--white);

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#products .cont-search .search:focus {
  border: 2px solid var(--white);
  outline: none;
}

#products .cont-search .search::placeholder {
  opacity: 1;

  text-align: center;
  color: var(--white);
  font-weight: 500;
}

#products .cont-search .icon {
  background-color: var(--primary);
  padding: 11px;
  border-radius: 50%;

  color: var(--white);

  cursor: pointer;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#products .cont-search .icon:hover {
  background-color: var(--primary-hover);
}

#products #loaderCatalogue{
  height: 0px;
  overflow: hidden;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#products #loaderCatalogue.show {
  display: inline-block;
  overflow: visible;
  width: 80px;
  height: 80px;
}

#products #loaderCatalogue.show:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid var(--primary);
  border-color: var(--primary) transparent var(--primary) transparent;
  animation: rotate360 1.2s linear infinite;
}

#products #cont-drop .cont-empty {
  margin: 10px 0 20px 0;
}

#products #cont-drop .cont-empty h4 {
  font-size: 25px;
  color: var(--primary);
  font-style: italic;
}

#products .cont-pagination {
  display: flex;
  justify-content: center;

  width: 100%;
  padding-bottom: 20px;
}

#products .cont-pagination.hide {
  height: 0;
  opacity: 0;
  overflow: hidden;

  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

#products .cont-pagination .page-item {
  position: relative;
  z-index: 50;

  font-size: 15px;
  color: var(--primary);
  cursor: pointer;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#products .cont-pagination .page-item.disabled {
  cursor: default;
}

#products .cont-pagination .page-item.disabled .page-link {
  color: var(--grey);
}

#products .cont-pagination .page-item.active .page-link {
  color: var(--white);
  background-color: var(--primary);
}

#products .cont-pagination .page-item .page-link {
  position: relative;
  z-index: 20;

  color: var(--primary);
  padding: 5px 12px;

  pointer-events: none;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#products .cont-pagination .page-item .page-link i {
  position: relative;
  z-index: -1;

  pointer-events: none;
}

#products #drop-catalogue { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* place-items: center; */
  gap: 5px;

  padding: 30px;
}

#products #drop-catalogue .box .cont-img {
  display: flex;
  justify-content: center;

  margin-bottom: 10px;
  border-bottom: 5px solid var(--grey);
  background-color: #848484;

  cursor: pointer;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#products #drop-catalogue .box .cont-img img {
  opacity: 1;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#products #drop-catalogue .box:hover .cont-img {
  border-bottom: 5px solid var(--primary);
}

#products #drop-catalogue .box:hover .cont-img img {
  opacity: 0.8;
}

#products #drop-catalogue .box .name {
  text-align: center;
  color: #1c1c1c;
}

#products #drop-catalogue .box .name .code {
  color: var(--primary);
  font-weight: 600;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#products #drop-catalogue .box:hover .name .code {
  color: var(--primary-hover);
}

.modal-products .modal-header {
  background-color: var(--primary-hover);
}

.modal-products .modal-header h5 {
  font-weight: 600;
  color: #fff;
}

.modal-products .modal-header .btn-close {
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 1;
  background: none;
}

.modal-products .modal-header .btn-close i {
  color: #ff2d2d;
  font-size: 30px;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.modal-products .modal-header .btn-close i:hover {
  color: #ffffff;
}

.modal-products .modal-body {
  background-color: var(--grey);
}

#catalogue .content .invalidMsg{
  width: 100%;
  height: 0;
  opacity: 0;
  overflow: hidden;
  background-color: var(--white);
  border: 2px solid #fb6565;
  margin: 0;
  padding: 0;

  color: #c20606;
  font-size: 17px;
  text-transform: uppercase;

  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

#catalogue .content .invalidMsg p{
  margin: 0;
  padding: 0;
}

#catalogue .content .invalidMsg.show{
  height: auto;
  opacity: 1;
  width: 100%;
  background-color: var(--white);
  border: 2px solid #fb6565;
  margin: 10px 0;
  padding: 10px 12px;

  text-align: center;
  font-weight: 600;
  color: #c20606;
  font-size: 15px;
  text-transform: uppercase;
}

@media (max-width: 500px) {
  #products #drop-catalogue { 
    grid-template-columns: 1fr;
    padding: 30px 5px;
  }  

  #products .cont-pagination .page-item .page-link {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  #products .cont-title2 .title2 {
    padding: 12px 5px;
    width: 100%;
    border-radius: 0px;
  }
}

/*--------------------------------------------------------------
# Build Dreams
--------------------------------------------------------------*/

#builDreams {
  position: relative;

  background: url(../img/products/bg-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-color: var(--grey); */
  padding-bottom: 260px;
}

#builDreams .content {
  /* background-color: var(--grey); */
  height: 60vh;

  color: var(--primary);
}

#builDreams .content .out-box {
  display: flex;
  flex-direction: column;
}

#builDreams .content .out-box.left {
  align-items: flex-start;
}

#builDreams .content .out-box.right {
  align-items: flex-end;
}

#builDreams .content .box {
  max-width: 350px;
  margin-top: 30px;
}

#builDreams .content .out-box.left .box .title,
#builDreams .content .out-box.left .box .text {
  padding-left: 60px;
}

#builDreams .content .out-box.right .box .title,
#builDreams .content .out-box.right .box .text {
  padding-right: 60px;
}

#builDreams .content .box .title {
  font-weight: 900;
  font-size: 32px;
}

#builDreams .content .box .text {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

#builDreams .content .box .line {
  width: 100%;
  height: 3px;
  margin: 15px 0;
  background-color: var(--primary);
}

#builDreams .content .box .btn-more {
  background-color: var(--white);
  border-radius: 6px;
  border: 0px;
  padding: 2px 8px;
  box-shadow: -4px 4px 4px 2px #12121225;
  -webkit-box-shadow: -4px 4px 4px 2px #12121225;
  margin-left: 0px;

  color: var(--primary);
  font-weight: 900;
  font-size: 22px;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#builDreams .content .box .btn-more:hover {
  opacity: 0.8;
}

#builDreams .content .out-box.left .box .btn-more {
  margin-left: 60px;
}

@media (max-width: 1200px) {
  #builDreams, 
  #catalogue .cont-title {
    display: none;
  }

  #catalogue {
    padding-bottom: 60px;
  }
}

/*--------------------------------------------------------------
# Hero Presence
--------------------------------------------------------------*/
#heroPresence {
  position: relative;

  padding-top: 220px;
  padding-bottom: 0px;
  background-color: var(--grey);
}

#heroPresence .container-fluid {
  position: relative;

  background: url(../img/presence/bg-1.jpg);
  background-size: cover;
  background-position-y: center;
  background-position-x: -100px;
  background-repeat: no-repeat;
}

#heroPresence .cont-title {
  position: relative;
  z-index: 2;
  top: 0px;

  display: flex;
  justify-content: center ;

  padding-top: 60px;
}

#heroPresence .cont-title .title {
  padding: 12px 25px;
  border-radius: 50px;
  background-color: var(--white);
  width: fit-content;
  box-shadow: -4px 4px 4px 2px #1212125f;
  -webkit-box-shadow: -4px 4px 4px 2px #1212125f;

  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
}

#heroPresence .imgV {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;

  width: 100%;
  padding: 220px;
  height: 100%;
}

#heroPresence .imgO {
  opacity: 0;
  visibility: hidden;
  width: 95%;
}

@media (max-width: 1200px) {
  #heroPresence .imgV {
    padding: 100px;
    padding-top: 150px;
  }  
}

@media (max-width: 678px) {
  #heroPresence .imgV {
    padding: 20px;
    padding-top: 180px;
  }  

  #heroPresence .cont-title .title {
    padding: 12px 10px;
    width: 100%;
    border-radius: 0px;
  }
}

@media (max-width: 457px) {
  #heroPresence .imgV {
    padding: 5px;
    padding-top: 180px;
  } 
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  position: relative;

  padding-left: 10%;
  padding-right: 10%;
  background: url(../img/presence/bg-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;

  width: 100%;
  height: 100%;
  background-color: #c5c5c5b7;
}

#contact .container {
  position: relative;
  z-index: 2;

  background: url(../img/presence/form-2a.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#contact .contact-form {
  background-color: #0059f2cd;
  padding: 40px;

  color: var(--white);
}

#contact .contact-form .title {
  margin-bottom: 30px;

  font-weight: 900;
  font-size: 24px;
}

#contact .contact-form .sub-title {
  margin-bottom: 45px;
  padding-bottom: 0px;

  font-size: 18px;
}

#contact .contact-form .form-group {
  margin-bottom: 30px;
}

#contact .contact-form .inp-title {
  background-color: var(--white);
  width: 100%;
  border-radius: 4px;
  padding: 4px 8px;

  color: var(--primary-hover);
  font-size: 20px;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  cursor: pointer;
}

#contact .contact-form .inp-title:hover {
  color: var(--primary);
}

#contact .contact-form input.form-control {
  background-color: transparent;
  border: 0px solid transparent;
  border-bottom: 3px solid var(--white);
  border-radius: 1px;

  font-size: 22px;
  color: var(--white);

  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}

#contact .contact-form input.form-control:focus {
  outline: 0px;
  border-bottom: 3px solid #ffffff8f;
  box-shadow: none;
}

#contact .contact-form .cont-reason {
  margin-bottom: 15px;
}

#contact .contact-form .reason {
  display: grid;
  grid-template-columns: 1fr 1fr;
} 

#contact .contact-form .reason .form-check {
  padding: 0px;
  margin: 10px;
}

#contact .contact-form .reason .form-check-input {
  visibility: hidden;
  opacity: 0;
  height: 0px;
  padding: 0px;
  margin: 0px;
  width: 0px;
  overflow: hidden;
}

#contact .contact-form .reason .form-check-label {
  padding: 8px 12px;
  width: 100%;
  border-radius: 3px;

  cursor: pointer;  
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


#contact .contact-form .reason .form-check-label:hover {
  background-color: #ffffff28;
}

#contact .contact-form .reason .form-check-label.active {
  background-color: var(--primary-hover);
}

#contact #cf-message {
  border-radius: 0px;
  box-shadow: -4px 4px 4px 2px #12121225;
  -webkit-box-shadow: -4px 4px 4px 2px #12121225;
}

#contact #cf-send {
  background-color: var(--white);
  border-radius: 50px;
  padding: 2px 40px;
  box-shadow: -4px 4px 4px 2px #12121225;
  -webkit-box-shadow: -4px 4px 4px 2px #12121225;
  margin-left: 8px;
  margin-top: 14px;
  border: 0px;

  color: var(--primary);
  font-weight: 900;
  font-size: 22px;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#contact #cf-send:hover {
  opacity: 0.8;
}

#contact .formularioContacto input[type=number]::-webkit-inner-spin-button, 
#contact .formularioContacto input[type=number]::-webkit-outer-spin-button { 
  appearance: none; 
  -webkit-appearance: none; 
  margin: 0; 
}

#contact .formularioContacto input[type=number] { 
  appearance: textfield; 
  -moz-appearance: textfield; 
}

#contact .formularioContacto .loaderForm{
  height: 0px;
  margin-bottom: 0px;
  overflow: hidden;

  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

#contact .formularioContacto .loaderForm.show {
  display: inline-block;
  overflow: visible;
  width: 80px;
  height: 80px;
  margin: 20px 0px;
}

#contact .formularioContacto .loaderForm.show:after {
  content: " ";

  display: block;

  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid var(--white);
  border-color: var(--white) transparent var(--white) transparent;

  animation: rotate360 1.2s linear infinite;
  -webkit-animation: rotate360 1.2s linear infinite;
  -moz-animation: rotate360 1.2s linear infinite;
  -ms-animation: rotate360 1.2s linear infinite;
  -o-animation: rotate360 1.2s linear infinite;
}

#contact .formularioContacto .invalidMsg{
  padding: 0;
  margin: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#contact .formularioContacto .invalidMsg.show{
  visibility: visible;
  opacity: 1;
  background-color: #fff;
  margin: 20px 0px;
  border-radius: 5px;
  box-shadow: 0 0 0 1.8pt #ff4646;
  -webkit-box-shadow: 0 0 0 1.8pt #ff4646;
  padding: 5px 10px;
  min-height: 35px;
  height: 100%;
}

#contact .formularioContacto .invalidMsg p{
  padding: 0;
  margin: 0;

  color: #ff4646;
  font-weight: 600;
  text-transform: uppercase;
  white-space: pre-wrap;

  cursor: default;
}

#contact .formularioContacto .invalidMsg.show.send{
  box-shadow: 0 0 0 1.8pt #1ba342;
  -webkit-box-shadow: 0 0 0 1.8pt #1ba342;
}

#contact .formularioContacto .invalidMsg.send p{
  color: #1ba342;
}

#contact .formularioContacto .linksgrc {
  color: #ffffffd9;
}

#contact .formularioContacto .linksgrc a {
  color: #ffffff;
  font-weight: 600;

  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#contact .formularioContacto .linksgrc a:hover {
  opacity: 0.8;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (max-width: 600px) {
  #contact {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  #contact .contact-form {
    padding: 20px;
  }
  
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--primary);
  overflow: hidden;
  padding-bottom: 100px;
}

.footer-bg-2 #footer {
  padding-top: 60px;
}

#footer .footer-top{
  display: flex;
  align-items: center;

  background: transparent;
}

#footer .cont {
  padding: 0 120px;
  width: 100%;
}

#footer .cont .row {
  align-items: center;
}

#footer .block {
  width: 120px;
  height: 60px;
  background-color: #fff;
}

#footer .block.block-left {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

#footer .block.block-right {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

#footer .cont-logos {
  display: flex;
  flex-wrap: nowrap;

  margin-bottom: 20px;
  margin-top: 10px;
}

#footer .cont-logos .cont-img {
  max-width: 100%;
  width: 100%;
}

#footer .cont-logos img {
  width: auto;
  height: 100%;
  max-height: 100px;
  padding-right: 30px;
}

#footer .cont-text {
  color: var(--white);
  font-size: 24px;
}

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

#footer ul li {
  margin-bottom: 20px;
}

#footer ul.list-contact li {
  display: flex;
  align-items: center;
}

#footer ul.list-contact li .cont-icon {
  width: 30px;
  margin-right: 5px;
}

#footer ul.list-contact li .cont-icon img {
  width: 100%;
}

#footer ul a {
  color: var(--white);
  font-weight: 600;
  font-size: 24px;

  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}


#footer ul a:hover {
  color: #ffffff72;
}

#footer .btn-portal {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--white);
  border-radius: 5px;
  padding: 8px 12px;
  
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}

#footer .btn-portal:hover {
  opacity: 0.8;
}

#footer .btn-portal .text {
  color: var(--primary);
  font-weight: 900;
  font-size: 26px;
  text-align: center;
  line-height: 1;
}

#footer .cont-btn {
  display: flex;
  justify-content: center;

  width: 100%;
  padding: 30px 0 40px 0;
}

#footer .cont-btn .cont-img {
  display: flex;
  justify-content: center;

  max-width: 100px;
  width: 100%;
}

#footer .cont-btn .cont-img img {
  width: 40px;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

#footer .cont-btn .cont-img img:hover {
  opacity: 0.8;
}

#footer .cont-btn :not(:last-child) {
  margin-right: 10px;
}

#footer .footer-hat{
  padding: 0 35%;
  margin-bottom: 60px;
  margin-top: 30px;

  color: var(--white);
  text-align: center;
}

#footer .footer-hat .title {
  font-size: 38px;
  font-weight: 900;
  font-style: italic;

  margin-bottom: 20px;
}

#footer .footer-hat .text {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1400px) {
  #footer ul a {
    font-size: 16px;
  }

  #footer .cont-text {
    font-size: 15px;
  }
  

  #footer ul.list-contact li .cont-icon {
    width: 25px;
  }
}

@media (max-width: 1200px) {
  #footer ul a {
    font-size: 16px;
    word-wrap: break-word;
    word-break: break-all;
  }

  #footer ul.list-contact li .cont-icon {
    width: 25px;
  }

  #footer .cont {
    padding: 0 50px;
  }
}

@media (max-width: 991px) {
  #footer .footer-hat{
    padding: 0 30px;
  }
}

@media (max-width: 600px) {
  #footer .cont {
    padding: 0px;
    display: flex;
    justify-content: center;
  }
  
  #footer .cont-logos img {
    padding-right: 10px;
  }  

  #footer .block {
    width: 60px;
  }

  #footer ul.list-contact li {
    display: grid;
    grid-template-columns: 30px 1fr;
  }

  #footer ul.list-contact li .cont-icon {
    justify-self: start;
  }
}

@media (max-width: 400px) {
  #footer .block {
    display: none;
  }

  #footer .footer-hat{
    padding: 0 15px;
  }
}

/*=============================================
=            keyframes
=============================================*/

/* rotate360 */

@-moz-keyframes rotate360 {
  0% {
    -moz-transform: rotate(0);
  }
  50% {
    -moz-transform: rotate(180deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate360 {
  0% {
    -webkit-transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-o-keyframes rotate360 {
  0% {
    -o-transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
  } 
  100% {
    -o-transform: rotate(360deg);
  }
}

@keyframes rotate360 {
  0% {
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}