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

a {
  color: #2596be;
  text-decoration: none;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

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

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

  100% {
    transform: rotate(360deg);
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgba(40, 40, 40, 0.7);
  /*
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 40, 40, 0.9);
}

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

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

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

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

/* Get Startet Button */
.get-started-btn {
  background: #2596be;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started-btn:hover {
  background: #51abcb;
  color: #fff;
}

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

@media (max-width: 430px) {
  #header .logo img {
    margin-left: 5px;
    max-height: 30px;
  }
}

/*--------------------------------------------------------------
# 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>ul>li {
  position: relative;
  white-space: nowrap;
  margin: 0 5px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

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

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

.navbar a:hover,
.navbar .active:focus{
  color: #fff;
}

.navbar .active,
.navbar .active:hover{
  color: #2596be;
}

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

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

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

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

.navbar .dropdown ul .active{
  color: #2596be;
}

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

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

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

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

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

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

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

  .navbar ul {
    display: none;
  }
}

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

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero/h4.jpeg") center;
  background-size: cover;
  position: relative;
}

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

#hero .container {
  padding-top: 72px;
  position: relative;
  text-align: center;
}

#hero img{
  width: 450px;
  filter: drop-shadow(0px 0px 6px rgba(0,0,0,0.62));
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 56px;
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.67);
}

#hero h2 {
  color: #eee;
  margin-bottom: 40px;
  padding-top: 20px;
  font-size: 16px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.67);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 500;
  width: 500px;
}

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

#hero .social-links a {
  font-size: 20px;
  display: inline-block;
  background: #2596be;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin: 0px 5px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  filter: drop-shadow(0px 0px 6px rgba(0,0,0,0.62));
  transition: 0.3s;
}

#hero .social-links a:hover {
  background: #51abcb;
  color: #fff;
  text-decoration: none;
}



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

@media (max-width: 768px) {
  #hero img{
    width: 225px;
  }
  
  #hero h1 {
    font-size: 15px;
    line-height: 36px;
    margin: 0px;
  }

  #hero h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

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

.section-bg {
  background-color: #8fffd6;
}

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

.section-title h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2596be;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #2596be;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
  color: #777777;
  font-size: 25px;
  font-weight: light;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about{
  background: linear-gradient(90deg, rgba(37,150,190,1) 0%, rgba(37,150,190,1) 33%, rgba(37,150,190,0.9556197478991597) 50%, rgba(37,150,190,0.6138830532212884) 81%, rgba(37,150,190,0.39539565826330536) 100%), url("../img/about-img1.jpeg") center no-repeat; 
  background-size: cover;
}

#about-page{
  margin-top: 68px;
  background: #fff;
}

#about-page .content{
  padding: 0;
}

.about .content{
  padding: 0px 30px;
  align-items: center;
  font-size: 20px;
}

#about h2{
  color: #e7e7e7;
}

#about h2::after{
  background: #e7e7e7;
}

#about p,
#about ul{
  color: #e7e7e7;
}

.about .content h3 {
  font-weight: bold;
  font-size: 26px;
  color: #2596be;
  letter-spacing: 1px;
}

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

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

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

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

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

.btn-learn-more {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #e7e7e7;
  animation-delay: 0.8s;
  margin-top: 50px;
  border: 2px solid #e7e7e7;
}

.btn-learn-more:hover {
  background: #e7e7e7;
  color: #2596be;
  text-decoration: none;
}

.about-img img{
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 100% 60%;
  box-shadow: 0px 9px 18px 1px rgba(0,0,0,0.24);
}

.about .mision{
  border-right: 3px solid #2596be;
}

.about .mision,
.about .vision {
  padding: 0px 30px;
  margin: 70px 0px 0px 0px;
}

@media (max-width: 991px) {
  .about .mision,
  .about .vision {
    border-left: 3px solid #2596be;
    border-right: none;
    margin-top: 70px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 540px) {
  .about{
    background: #2187ab;
  }
}

/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.projects .card{
  padding: 100px 0px;
}

.projects .card{
  padding: 30px 30px;
  width: 100%;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.2);
  border-radius: 8px;
  border: 1px solid #fff;
}

.projects .card .card-img-top{
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.projects .card .card-img-top:hover{
  transform: scale(1.1);
}

.projects .card .card-body a{
  font-size: 1.1rem;
  font-weight: light;
  color: #777777;
}

.projects .card .card-body b{
  color: #2596be;
  font-weight: 800;
  letter-spacing: 1px;
}

.projects .card .card-body b:hover{
  color: #51abcb;
}

.projects .card:hover {
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.carousel span{
  color: #2596be;
  font-size: 60px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.57);
}

.carousel img{
  height: 500px;
  object-fit: contain;
  filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.3));
}

@media (max-width: 520px) {
  .carousel span{
    color: #fff;
    font-size: 45px;
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.85);
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services{
  background: #f8f8f8;
}

.services .cards{
  padding: 50px 0px;
}

.services .product-card{
  padding: 60px 30px;
  margin: 20px 20px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
}

.services #cfps-card{
  padding: 40px 30px 60px;
}

@media (max-width: 1199px) {
  .services .product-card{
    margin: 20px 0px;
  }
}

.services .product-card .card-img-top{
  height: 82px;
}

.services .product-card .card-body{
  padding-top: 40px;
  height: 200px;
}

.card-body p{
  height: 130px;
}

.services #cfps-card{
  align-self: center;
}

.services #cfps-card .card-img-top{
  height: 102px;
  object-fit: contain;
}

.services #cfps-card h3{
  font-size: 21px;
  font-weight: 600;
  margin: 0;
  padding-left: 10px;
}

.services #novidesa-card:hover {
  transform: translateY(-10px);
  border-color: #0068a5;
}

.services #cempanel-card:hover {
  transform: translateY(-10px);
  border-color: #b5bb15;
}

.services #cilimex-card:hover {
  transform: translateY(-10px);
  border-color: #7592a4;
}

.services #cfps-card:hover {
  transform: translateY(-10px);
  border-color: #d4173d;
}


.go-to-btn{
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border-radius: 50px;
}

#novi-btn{
  background: #0068a5;
}

#cem-btn{
  background: #b5bb15;
}

#cili-btn{
  background: #7592a4;
}

#cfps-btn{
  background: #d4173d;
}

#novi-btn:hover {
  background: #5e91af;
  color: #fff;
}

#cem-btn:hover {
  background: #c4c944;
  color: #fff;
}

#cili-btn:hover {
  background: #91a8b6;
  color: #fff;
}

#cfps-btn:hover {
  background: #f04769;
  color: #fff;
}
/*--------------------------------------------------------------
# Certification
--------------------------------------------------------------*/
.certification {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6)), url("../img/certified-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.certification h2{
  color: #fff;
}

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

.certification p {
  color: #fff;
  font-size: 20px;
}

.certification img{
  width: 120px;
}

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

.certification .certification-btn:hover {
  background: #51abcb;
}

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

@media (max-width: 478px) {
  .certification h2{
    font-size: 27px;
  }
}

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

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products{
  margin-top: 68px;
  padding-bottom: 0px;
}

.products p{
  color: #fff;
  font-size: 26px;
  font-weight: 200;
}

.products b{
  font-weight: 600;
}

.products .novidesa{
  background: #0068a5;
}

.products .cempanel{
  background: #b5bb15;
}

.products .cilimex{
  background: #7592a4;
}


.products .img-logo{
  margin-top: 80px;
  margin-bottom: 60px;
  /*margin-left: 120px;*/
  width: 450px;
  filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.32));
}


.products .product{
  padding-top: 20px;
  padding-left: 55px;
  padding-bottom: 20px;
  border-left: 3px solid #fff;
}

.products .cempanel .product{
  padding-left: 20px;
  padding-right: 55px;
  border-right: 3px solid #fff;
  border-left: none;
}

.products .btn-learn-more{
  margin-bottom: 60px;
}

.products .cempanel .btn-learn-more:hover{
  color: #b5bb15;
}

.products .cilimex .btn-learn-more:hover{
  color: #7592a4;
}

.products .product .image{
  width: 100%;
  margin-bottom: 60px;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.42);
}

@media (max-width: 575px) {
  .products .product{
    padding: 20px 0px;
    border: none;
  }

  .products .cempanel .product{
    padding: 20px 0px;
    border: none;
  }
}

/*--------------------------------------------------------------
# Products-Novidesa
--------------------------------------------------------------*/
#products-novidesa{
  padding: 0px;
}

#products-novidesa .bag{
  background: linear-gradient(180deg, rgba(126, 126, 126, 0.796) 0%, rgba(39, 39, 39, 0.804) 100%), url("../img/products/novidesa/novidesa-bg2.jpg") bottom center;
  background-size: cover;
}

#products-novidesa .section-title p{
  color: #fff;
  margin: 15px 0px;
}

#products-novidesa .section-title img{
  width: 400px;
  margin-bottom: 60px;
  margin-top: 148px;
}

.products-novidesa .content{
  padding: 0px 30px 55px 30px;
  align-items: center;
  font-size: 20px;
}

.products-novidesa .content p{
  color: #fff;
}

.products-novidesa .content ul {
  list-style: none;
  padding: 0px 30px;
  color: #fff;
}

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

.products-novidesa .content ul li+li {
  margin-top: 20px;
}

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

.products-novidesa .container-fluid{
  background: #0068a5;
}

.products-novidesa .panels .product{
  border-bottom: 2px solid #fff;
}

.products-novidesa .panels .product .text,
.products-novidesa .panels .product-last .text{
  padding: 30px 0px;
}

.products-novidesa .panels .logo{
  margin-top: 120px;
  filter: drop-shadow(0px 0px 4px rgba(0,0,0,0.42));
}

.products-novidesa .panels .logo span{
  font-size: 90px;
  font-weight: 700;
  color: #ffffff;
  font-family: open sans;

}

.products-novidesa .panels p{
  color: #fff;
}

.products-novidesa .panels .img-border{
  border: 2px solid #fff;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  margin-bottom: 60px;
  margin-left: 15px;
  margin-right: 15px;
}

.products-novidesa .panels .img-bg{
  border-radius: 50%;
  width: 350px;
  height: 350px;
  background: linear-gradient(0deg, rgba(0,94,149,1) 0%, rgba(0,73,115,1) 100%);
}

.products-novidesa .panels .img-bg img{
  object-fit: contain;
  filter: drop-shadow(0px 0px 4px rgba(0,0,0,0.42));
  transform: scale(1.2);
  transition: all ease-in-out 0.3s;
}

@media (max-width: 1199px) {
  .products-novidesa .panels .img-border{
    width: 300px;
    height: 300px;
  }
  
  .products-novidesa .panels .img-bg{
    border-radius: 50%;
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 991px){
  .products-novidesa .panels .logo{
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
  }
  
}

@media (max-width: 530px){
  .products-novidesa .content{
    padding: 0px 0px 55px 0px;
  }
  
  .products-novidesa .content ul {
    list-style: none;
    padding: 0px 0px;
    color: #fff;
  }
}

/*--------------------------------------------------------------
# Products-Cempanel
--------------------------------------------------------------*/
#products-cempanel{
  padding-top: 0;
}

#products-cempanel .container-fluid{
  background: linear-gradient(180deg, rgba(130,148,4,0.7987570028011204) 0%, rgba(130,148,4,0.804359243697479) 100%), url("../img/products/cempanel/cempanel-bg.jpg") center center;
  background-size: cover;
}

#products-cempanel .title{
  padding-bottom: 65px;
}

#products-cempanel .section-title h2{
 color: #bad406;
}

#products-cempanel .section-title h2::after{
 background: #bad406;
}

#products-cempanel .section-title p{
  color: #fff;
  margin: 15px 0px;
}

#products-cempanel .section-title img{
  width: 400px;
  padding-bottom: 60px;
  margin-top: 148px;
}

#products-cempanel .panels .section-title{
  margin-top: 100px;
}

.panels .cards .card{
  padding: 0 15px;
  padding-top: 30px;
  padding-bottom: 5px;
  width: 100%;
  margin-bottom: 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.2);
  border-radius: 8px;
  border: none;
  border-bottom: 5px solid #fff;
}

.panels .cards .card .card-img-top{
  transition: all ease-in-out 0.3s;

}

.panels .cards .card .card-info h2{
  font-size: 1.1rem;
  font-weight: bold;
  color: #777777;
}

.panels .cards .card .card-info p{
  font-size: 14px;
  font-weight: 500;
  padding-top: 15px;
}

.panels .cards .card .card-info b{
  color: #bad406;
  font-weight: 800;
  letter-spacing: 1px;
}

.panels .cards .card:hover {
  transform: translateY(-10px);
  border-color: #bad406;
}



/*--------------------------------------------------------------
# Products-Cilimex
--------------------------------------------------------------*/
#products-cilimex{
  padding: 0px;
}

#products-cilimex .bag{
  background: linear-gradient(180deg, rgba(255,255,255,0.7959558823529411) 0%, rgba(255,255,255,0.804359243697479) 100%), url("../img/products/cilimex/cilimex-bg.jpg") center center;
  background-size: cover;
}

#products-cilimex .product-list{
  background: linear-gradient(90deg, rgba(117,146,164,0.7) 0%, rgba(117,146,164,1) 100%);
}

#products-cilimex .section-title h2{
  margin-top: 100px;
  color: #252855;
}

#products-cilimex .section-title h2::after{
  background: #252855;
  width: 100%;
}

#products-cilimex .section-title p{
  margin-top: 15px;
  margin-bottom: 30px;
}

#products-cilimex .section-title img{
  width: 400px;
  margin-bottom: 60px;
  margin-top: 148px;
}

.products-cilimex .panels .img-border{
  border: 4px solid #252855;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 60px;
}

.products-cilimex .panels .img-bg{
  border-radius: 50%;
  width: 350px;
  height: 350px;
  background: linear-gradient(180deg, rgba(37,40,85,1) 0%, rgba(59,62,102,1) 100%);
}


.products-cilimex .panels .product .img-fluid{
  transform: scale(1.3);
}

.products-cilimex .panels .product .texto{
  padding: 0 50px;
}

.products-cilimex .panels ul {
  list-style: none;
  color: #fff;
  font-size: 17px;
}

.products-cilimex .panels ul li {
  padding-left: 28px;
  position: relative;
}

.products-cilimex .panels ul li+li {
  margin-top: 10px;
}

.products-cilimex .panels ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: #252855;
  line-height: 1;
}

.products-cilimex .panels .product .texto,
.products-cilimex .panels .product-last .texto{
  padding: 30px 0px;
}

.products-cilimex .panels p{
  font-size: 20px;
  color: #fff;
}

@media (max-width: 1199px) {
  .products-cilimex .panels .img-border{
    width: 300px;
    height: 300px;
  }
  
  .products-cilimex .panels .img-bg{
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 991px){
  .products-cilimex .panels .img-border{
    margin-bottom: 0;
  }
}

@media (max-width: 425px){
  .products-cilimex .panels .img-border{
    width: 230px;
    height: 230px;
  }
  
  .products-cilimex .panels .img-bg{
    width: 180px;
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Cfps
--------------------------------------------------------------*/
.cfps{
  padding-bottom: 0;
}

.cfps .section-title img{
  width: 200px;
}

.cfps .section-title p{
  padding: 50px 0;
}

.cfps .services-list{
  border-left: solid 5px #d4173d;
  padding-top: 1px;
  padding-bottom: 80px;
}

.cfps .services-list ul{
  list-style: none;
}

.cfps .services-list li{
  padding: 30px 20px 15px 20px;
  margin: 40px 0;
  border-radius: 16px;
  -webkit-box-shadow: 0px 29px 32px -17px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 29px 32px -17px rgba(0,0,0,0.3);
  box-shadow: 0px 29px 32px -17px rgba(0,0,0,0.3);
  border-radius: 8px;
  transition: all .3s ease;
}

.cfps .services-list li:hover{
  translate: 0 -3px;
}

.cfps .services-list li h3{
  font-size: 27px;
  color: #0f0f0f;
  font-weight: 800;
  transition: color .3s;
}

.cfps .services-list li:hover > h3{
  color: #d4173d;
}

.cfps .services-list li p{
  font-size: 20px;
  padding-top: 5px;
  color: #777777;
}

.cfps .services-list .holder{
  color: #0f0f0f;
  font-size: 17px;
  font-weight: 500;
  padding-left: 30px;
  padding-top: 60px;
}

@media (max-width: 575px) {
  .cfps .services-list ul{
    padding-left: 15px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact{
  margin-top: 68px;
}

.contact .section-title b{
  color: #2596be;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 32px;
  color: #2596be;
  float: left;
  line-height: 1;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2596be;
}

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

.contact .info p a{
  color: #5b5b5b;
  transition: color .3s;
}

.contact .info p a:hover{
  color: #2596be;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

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

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

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

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

.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 #2596be;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

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

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

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

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

.contact .php-email-form button[type=submit] {
  background: #2596be;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #51abcb;
}

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

  100% {
    transform: rotate(360deg);
  }
}

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

#footer img{
  width: 80px;
  margin-bottom: 15px;
}

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

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

#footer .get-started-btn{
  margin: 0;
}

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

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

#footer .social-links a:hover {
  background: #51abcb;
  color: #fff;
  text-decoration: none;
}

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