/**
* Template Name: Arsha - v2.0.0
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

a {
  color: #027ae8;
}

a:hover {
  color: #73c5eb;
  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: #37517e;
}

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #444444;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #000000;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
}

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

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

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

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

@media (max-width: 768px) {
  #header .logo img {
    max-height: 50px;
  }
}

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

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #47b2e4;
}

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

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

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

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

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

/* Get Startet Button */
.get-started-btn {
  margin-left: 0px;
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px 10px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  display: inline-block;
  background: #000;
  font-weight: 100;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}

.get-started-btn i{
  font-size: 10px;
  padding-right: 5px;
}

.get-started-btn:hover {
  background: #4f568d;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 0px 0 0;
    padding: 6px 20px 7px 20px;
    font-size: 14px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 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: #37517e;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #47b2e4;
  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(40, 58, 90, 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: auto;
  margin-top: 123px;
  padding: 0;
}

#hero .container {
  padding-top: 0px;
}

#hero .banner-desktop {
  display: block;
}

#hero .banner-mobile {
  display: none;
}
#hero a {
  cursor: pointer;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  font-weight: 100;
  line-height: 56px;
  color: #fff;
  text-transform: uppercase;
}

#hero h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: 100;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 0 8px 40px;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  position: relative;
}

#hero .btn-watch-video i {
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-top: 95px;
  }
  #hero .banner-desktop {
    display: none;
  }

  #hero .banner-mobile {
    display: block;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
  #hero .btn-watch-video {
    font-size: 16px;
    padding: 10px 0 8px 40px;
    margin-left: 20px;
  }
  #hero .btn-watch-video i {
    font-size: 32px;
    top: 7px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

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

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  color: #fff;
}

.section-title h2 span{
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #013088;
}

.section-title p {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 100;
  color: #fff;
}
@media (max-width: 575px) {
  .section-title h2{
    font-size: 25px;
  }
}


/*--------------------------------------------------------------
# Search Box
--------------------------------------------------------------*/

form.nosubmit {
  border: none;
  padding: 0;
}

input.nosubmit {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  display: block;
  padding: 9px 4px 9px 40px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
}

.suggesstion-box{
  margin-top: -10px;
  border:1px solid #e2e2e2;
  border-radius: 5px;
  padding: 10px;
  display: none;
  width: 100%;
}
.suggesstion-box ul{
  padding: 0;
  list-style: none;
}
.suggesstion-box li a{
  font-size: 13px !important;
  text-align: left;
  line-height: 14px;
  color: #000;
}
.suggesstion-box li a:hover{
  color: rgba(227,74,99,1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
  background: #ffffff url("../img/back_morado_lck_03.jpg") top left no-repeat;
  background-size: cover;
  padding: 60px 0px;
}
.contact h3 {
  font-size: 18px;
  color: #000;
  padding-bottom: 15px;
}
.contact .instrucciones{
  border:2px solid #2c0e37;
  padding: 10px;
  margin-bottom: 20px;
}
.contact .instrucciones p {
  color: #2c0e37;
  text-align: center;
  font-weight: 300;
  font-size: 22px;
}

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

.contact .php-email-form-adobe .form-group {
  padding-bottom: 5px;
  margin-bottom: 0px;
}

.contact #encuesta p{
  font-weight: 600;
}
.contact #encuesta p span{
  color: red;
}

.contact .php-email-form-adobe .validate {
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

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

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

.contact .php-email-form-adobe .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-adobe label{
   font-family: "Montserrat", sans-serif;
   font-size: 16px;
}
.contact .php-email-form-adobe label span{
  color: #ff0000;
}

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

.contact .php-email-form-adobe input:focus, .contact .php-email-form-adobe textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form-adobe input[type="text"],
.contact .php-email-form-adobe input[type="email"] {
  height: 44px;
}

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

.contact .php-email-form-adobe button[type="submit"],
.contact .php-email-form-adobe button[type="button"] {
  background: #f73760;
  border: 2px solid #f73760;
  padding: 5px 34px 7px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  font-size: 18px;
}

.contact .php-email-form-adobe button[type="submit"]:hover,
.contact .php-email-form-adobe button[type="button"]:hover {
  background: #4f568d;
  border: 2px solid #4f568d;
  color: #fff;
}

 /* The alert message box */
.alert {
    padding: 20px;
  margin-top:20px;
    background-color: #f44336; /* Red */
    color: white;
    margin-bottom: 15px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.warning {
    padding: 20px;
  margin-top:20px;
    background-color: #ffffcc; /* Yellow */
    color: 000;
    margin-bottom: 15px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.warning .btn-whats {
  font-size: 18px;
  padding: 0px 20px 5px 20px;
  margin: 12px auto;
  display: block;
  background-color: #4BB543;
  border-radius: 50px;
  width: fit-content;
  color: #fff !important;
}

.warning .btn-whats i {
  font-size: 25px;
  top: 4px;
  color: #fff !important;
  position: relative;
}

 /* The alert message box */
.success {
  padding: 20px;
  margin-top:20px;
  background-color: #4BB543; /* Red */
  color: white;
  margin-bottom: 15px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}

/* The close button */
.closebtn-black {
    margin-left: 15px;
    color: black;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn-black:hover {
    color: gray;
} 

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

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


@media (max-width: 768px) {
  .contact .instrucciones p {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .contact .instrucciones p {
    font-size: 16px;
    line-height: 22px;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background:#2c0e37;
  background-size: cover;
  padding: 0px 0;
  padding-top: 120px;
}

.cta .cta-column{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta img {
  max-width: 200px;
}
.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: #7a98c7;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.cta .cta-btn:hover {
  background: #414668;
}

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

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cta .cta-column{
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .cta h3{
    font-size: 20px;
  }
  .cta img {
    max-width: 130px;
  }
}

/*--------------------------------------------------------------
# Diploma
--------------------------------------------------------------*/
.diploma{
  background: #ffffff url("../img/back_morado_lck_03.jpg") top left no-repeat;
  background-size: cover;
  padding: 60px 0px;
}
.diploma .diploma-wrapper{
  background: #ffffff url("../img/reconocimiento-bg.jpg") center center no-repeat; 
  background-size: cover;
  padding: 30px;
}

.diploma p{
  font-size: 16px;
  color: #000;
}

.diploma h3{
  font-size: 30px;
  color: #000;
  font-weight: 700;
}

.diploma h3 span{
  font-size: 18px;
  color: #000;
  font-weight: 100;
  display: block;
  padding-top: 20px;
}

.diploma h1{
  font-size: 50px;
  color: #000;
  font-weight: 700;
  padding-bottom: 30px;
}

.diploma .diploma-wrapper .diploma-container{
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.diploma .diploma-wrapper .diploma-container .logo-diploma{
  max-width: 120px;
  padding: 20px 0px;
}
.diploma .diploma-wrapper .diploma-container .firma-diploma{
  max-width: 300px;
  padding:20px 0 ;
}

@media print{@page {size: landscape}}
@media print
{   
  .no-print, .no-print *
    {
        display: none !important;
    }
  .diploma{
    padding: 0px 0px;
  }
  .diploma h3, .diploma h3 span{
    padding-top: 0px;
  }

  .diploma h1{
    padding-bottom: 0px;
  }
}

@media (max-width: 575px) {
  .diploma h3{
    font-size: 22px;
  }
  .diploma h1{
    font-size: 34px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #23112c;
}

#footer .footer-bottom {
  padding-top: 50px;
  padding-bottom: 50px;
  color: #fff;
}

#footer .copyright {
  text-align: center;
}
#footer .copyright a{
  color: rgba(227,74,99,1);
  transition: 0.3s;
}
#footer .copyright a:hover{
  color: rgba(227,74,99,0.7);
  text-decoration: underline;
}


@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}
