*{
   font-family: "Nunito", sans-serif;
}
a{
  text-decoration: none!important;
}
.bg-blue{background-color: rgb(11, 69, 104,0.1);}

.py-60{padding: 60px 0px;}
.ml-auto, .mx-auto {
    margin-left: auto !important;
}
.hero {
  width: 100%;
  height: 100vh;
  background-image: url(../img/main.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;

}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-aqua);
 font-weight: 900;
}

.hero h2 {
  color: var(--color-white);
  margin: 15px 0 0 0;
  font-size: 26px;
  font-weight: 500;
}

.hero .btn-get-started {
  text-decoration: none;
  margin-top: 30px;
 
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-blue);
 font-weight: 500;
}

.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
}
/*
@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}
*/
@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 700px){
  .hero {
 
  background-size: cover;

}
}
.about{margin: 60px auto;}
.about .content {
  background-color: var(--color-blue-rgba);
  padding: 40px;
}

.about h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase;
}

.about h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-blue);
}

.about p {
  margin: 15px 0 30px 0;
  line-height: 24px;
  color: var(--color-black);
  font-weight: 500;
}



.about .btn-read-more span {

  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}
.values .container .section-header h2{
  margin: 60px 0px;
  color: var(--color-blue);
  text-align: center;
  font-weight: 700;
} 

.values .box {
  padding: 30px;
  box-shadow: 0px 0 5px var(--color-blue-rgba);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.values .box img {
  padding: 30px 0px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .box h3 {
  font-size: 24px;
  color: var(--color-blue);
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box p {
  font-size: 16px;
  color: var(--color-black);
  font-weight: 500;

}

.values .box:hover {
  box-shadow: 0px 0 30px var(--color-blue-rgba);
}

.values .box:hover img {
  transform: scale(1);
}

.values .container .row .col .value-text{text-align: center;color: var(--color-black);font-weight: 500;margin-top: 20px;}

.services .service-box {
  box-shadow: 0px 0 30px var(--color-blue-rgba);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-box .icon {
  font-size: 36px;
  padding:20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services{
  margin: 60px auto;
  color: var(--color-blue);
  text-align: center;
  font-weight: 700;
} 
.services .container .section-header h2{
 
  color: var(--color-blue);
  text-align: center;
  font-weight: 700;
} 

.services .container .section-header p{
  margin: 30px 0px 60px 0px;
  color: var(--color-black);
  text-align: center;
  font-weight: 500;
} 

.services .service-box h3 {
  color: var(--color-black);
  font-weight: 700;
}

.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-box.blue {
  border-bottom: 3px solid var(--color-blue);
}

.services .service-box.blue .icon {
  color: var(--color-blue);
  background: var(--color-blue-rgba);
}

.services .service-box.blue .read-more {
  color: var(--color-blue);
}

.services .service-box.blue:hover {
  background: var(--color-blue);
}

.services .service-box.yellow {
  border-bottom: 3px solid var(--color-yellow);
}

.services .service-box.yellow .icon {
  color: var(--color-yellow);
  background: var(--color-yellow-rgba);
}

.services .service-box.yellow .read-more {
  color: var(--color-yellow);
}

.services .service-box.yellow:hover {
  background: var(--color-yellow);
}

.services .service-box.aqua {
  border-bottom: 3px solid var(--color-aqua);
}

.services .service-box.aqua .icon {
  color: var(--color-aqua);
  background: var(--color-aqua-rgba);
}

.services .service-box.aqua .read-more {
  color: var(--color-aqua);
}

.services .service-box.aqua:hover {
  background: var(--color-aqua);
}



.services .service-box:hover h3,
.services .service-box:hover p,
.services .service-box:hover .read-more {
  color: #fff;
}

.services .service-box:hover .icon {
  background: #fff;
}


.contact .container .section-header h2{
 
  color: var(--color-blue);
  text-align: center;
  font-weight: 700;
} 

.contact .container .section-header p{
  margin: 30px 0px 60px 0px;
  color: var(--color-black);
  text-align: center;
  font-weight: 500;
}
.contact .info-box {
  color: var(--color-black);
  background: var(--color-blue-rgba);
  padding: 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: var(--color-blue);
}

.contact .info-box h3 {
  font-size: 20px;
  color: var(--color-blue);
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: var(--color-blue-rgba);
  padding: 30px;
  height: 100%;
}

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

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

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

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-blue);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  padding: 10px 15px;
}

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

.contact .php-email-form #btnOk {
  background: var(--color-blue);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form #btnOk:hover {
  background: var(--color-blue);
}

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

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



.icon-footer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
 
  display: flex;
  justify-content: center;
  align-items: center;

  margin-right: 15px;
}
.mail{background-image:url('../img/mail.png')!important;}
.phone{background-image:url('../img/phone.png')!important;}

#navbar{background-color: var(--color-white);height: 80px;}
#navbar .container .navbar{background-color: var(--color-white);height: 80px;    -webkit-box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);-moz-box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);}
#navbar .container .navbar .container .navbar-collapse .navbar-nav .nav-item .nav-link{color: var(--color-blue);font-weight: 700;}

#navbar .container .navbar .container .navbar-collapse .navbar-nav .nav-item .nav-link:hover{color: var(--color-aqua);}
#navbar .container .navbar .container .navbar-collapse .navbar-nav .active .nav-link{color: var(--color-aqua);}
#navbar .container .navbar .container .navbar-collapse .navbar-nav .nav-item .nav-link i{margin-right: 10px;}

.navbar-toggler{color:var(--color-aqua);font-size: 36px;}
.navbar-toggler:focus {text-decoration: none!important;outline: 0;box-shadow: none!important;}

@media (max-width: 1205px){
  .contactLink{display: none!important;}
}
@media (max-width: 991px){
  .contactLink{display: block!important;}
  #ftco-nav {padding: 20px;z-index: 2;background-color: var(--color-white);}
}

@media (max-width: 420px){
  .contactLink{display: none!important;}
}

.error-label{font-size: 15px;color:var(--color-red);margin: 5px 2px;}
.success-form{font-size: 15px;color: var(--color-aqua); margin: 5px 2px;}

#loading{width: 100%;}
#loading .spinner-border{border:var(--color-aqua) solid;border-right-color: transparent;margin: 0px auto;display: block;}
footer > *{color: var(--color-blue);font-weight: 700;}
/*** INFO ***/
.info {padding-top: 60px;}
.info .section-title{margin: 60px auto;}
.info h2{color: var(--color-blue);text-align: center;font-weight: 700;}
.info div span{color: var(--color-black);text-align: center;display: block;}
.info .info-image {border-radius: 8px;overflow: hidden;}
.info .info-content p {margin-bottom: 1rem;color: var(--color-black);}
/*** WORK PROCESS ***/
.work-process{padding: 60px 0px;}
.work-process .steps-content {padding-right: 30px;margin-bottom: 40px;}

@media (max-width: 992px) {
  .work-process .steps-content {padding-right: 0;}
}

.work-process .steps-content h2 {font-size: 2.5rem;font-weight: 700;margin-bottom: 1.5rem;color: var(--color-blue);}

@media (max-width: 768px) {
  .work-process .steps-content h2 {font-size: 2rem;}
}

.work-process .steps-content .lead {font-size: 1.2rem;font-weight: 500;margin-bottom: 1.5rem;color: var(--default-color);}
.work-process .steps-content p {margin-bottom: 2rem;color: var(--dcolor-black);}
.work-process .steps-content .steps-cta {display: flex;gap: 15px;}

@media (max-width: 576px) {
  .work-process .steps-content .steps-cta {flex-direction: column;}
}

.work-process .steps-content .steps-cta .btn {padding: 12px 30px;font-weight: 600;border-radius: 5px;transition: all 0.3s ease;}
.work-process .steps-content .steps-cta .btn-primary {background-color: var(--color-yellow);border-color: var(--color-yellow);color: var(--color-white);}
.work-process .steps-content .steps-cta .btn-primary:hover {background-color: color-mix(in srgb, var(--color-yellow), #FFF 15%);border-color: color-mix(in srgb, var(--color-yellow), #FFF 15%);transform: translateY(-3px);box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);}
.work-process .steps-list {position: relative;}
.work-process .steps-list::before {content: "";position: absolute;top: 0;bottom: 0;left: 25px;width: 2px;background-color: color-mix(in srgb, var(--color-aqua), transparent 70%);}

@media (max-width: 576px) {
  .work-process .steps-list::before {left: 20px;}
}

.work-process .steps-list .step-item {display: flex;margin-bottom: 30px;position: relative;}
.work-process .steps-list .step-item:last-child {margin-bottom: 0;}
.work-process .steps-list .step-item:hover .step-number {background-color: var(--color-aqua);color: var(--color-white);transform: scale(1.1);}
.work-process .steps-list .step-item .step-number {flex-shrink: 0;width: 50px;height: 50px;border-radius: 50%;background-color: color-mix(in srgb, var(--color-aqua) 10%, white 90%);color: var(--color-aqua);display: flex;align-items: center;justify-content: center;font-size: 1.2rem;font-weight: 700;margin-right: 20px;z-index: 1;transition: all 0.3s ease;}

@media (max-width: 576px) {
  .work-process .steps-list .step-item .step-number {width: 40px;height: 40px;font-size: 1rem;}
}

.work-process .steps-list .step-item .step-content {padding-top: 5px;}
.work-process .steps-list .step-item .step-content h3 {font-size: 1.3rem;font-weight: 700;margin-bottom: 10px;color: var(--color-black);}

@media (max-width: 576px) {
  .work-process .steps-list .step-item .step-content h3 {font-size: 1.1rem;}
}

.work-process .steps-list .step-item .step-content p {font-size: 0.95rem;color: var(--color-black);margin-bottom: 0;}
.whatsapp-float {position: fixed;bottom: 30px;left: 10px;z-index: 1000;}
.whatsapp-float .btn {background-color: var(--color-aqua);border-radius: 50%;width: 60px;height: 60px;font-size: 28px;display: flex;align-items: center;justify-content: center;}
.whatsapp-float .btn i{color: var(--color-white);}