/* Fonts */
@font-face {
  font-family: "montserrat";
  src: url("../fonts/montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
}

@font-face {
  font-family: "montserrat-i";
  src: url("../fonts/montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 600;
  font-style: normal;
}

:root {
  --font-default: "montserrat", "Open Sans", system-ui, -apple-system;
}

/* Colors */
:root {
  --primary: #f29f05;
  --secondary: #ff7244;
  --white: #ffffff;
  --grey: #d9d9d9;
  --black: #404040;
  --rojo: #ff2c04;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
}

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

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

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

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-default);
}

.section-header p span {
  color: var(--primary);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

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

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

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--rojo);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
}

.scroll-top:hover {
  background: var(--secondary);
  color: var(--white);
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: transparent;
  padding: 40px;
  /* background-color: var(--black); */

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

.header.sticked {
  border-color: var(--white);
  border-color: #eee;
}

.header .logo {
  margin-left: 25px;
}

.header .logo img {
  max-height: 50px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-default);
}

.header .logo h1 span {
  color: var(--black);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  border: 2px solid var(--black);
  background: var(--white);
  padding: 16px 24px;
  margin-left: 30px;
  border-radius: 40px;
  
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  text-align: center;

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

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: var(--white);
  background: var(--black);
}

.header .header-box {
  background: var(--secondary);
  border-radius: 40px;
  width: 100%;
  padding: 5px;
  max-width: 1200px;
}

.top-header {
  height: 160px;
  background-color: var(--black);
}

section {
  scroll-margin-top: 90px;
}
@media (max-width: 600px) {
  .header {
    padding: 40px 0 0 0;
  }

  .header .btn-book-a-table,
  .header .btn-book-a-table:focus {
    padding: 12px 18px;
    margin: 0 5px 0 5px;

    font-size: 14px;
  }

  .header .logo {
    margin-left: 0px;
  }

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

  .header .header-box {
    border-radius: 0px;
  }

  .top-header {
    height: 100px;
  }  
}

@media (max-width: 345px) {
  .top-header {
    height: 120px;
  }  
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-default);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    position: relative;
  }

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

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

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    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: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
  }

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

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

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

  .mobile-nav-show {
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: red;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

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

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-color: var(--black);

  color: var(--white);
}

.about .top-about {
  background: url(../img/about/about-2.png);
  background-position: 15% center;
  background-repeat: no-repeat;
  background-size: 50%;

  border: 1px solid var(--secondary);
  border-bottom: 30px solid var(--secondary);
  border-radius: 15px;
  padding: 120px 25px;
}

.about .top-about .row {
  justify-content: center;
  align-items: center;
}

.about .top-about .title {
  margin-bottom: 25px;

  font-size: 34px;
}

.about .top-about .text {
  font-size: 18px;
}

.about .top-about .cont-img {
  display: flex;
  justify-content: flex-end;
}

.about .bottom-about {
  display: flex;
  justify-content: space-evenly;

  margin-top: 60px;
}

.about .bottom-about .box {
  width: 320px;
}

.about .bottom-about .box .title {
  background-color: var(--white);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 30px;

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

.about .bottom-about .cont-line {
  display: flex;
  flex-direction: column;
}

.about .bottom-about .cont-line .title {
  background-color: var(--white);
  padding: 6px 0px;
  border-radius: 40px;
  margin-bottom: 30px;
  opacity: 0;

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

.about .bottom-about .cont-line .line {
  width: 4px;
  margin: 0 30px;
  border-radius: 4px;
  height: 100%;
  background-color: var(--secondary);
}

@media (max-width: 991px) {
  .about .top-about {
    padding: 25px;
  }  

  .about .top-about .cont-img {
    display: flex;
    justify-content: center;
  }

  .about .top-about {
    background-position: center;
    background-size: 80%;
  }  

  .about .bottom-about {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .about .bottom-about .box {
    width: 100%;
    max-width: 320px;
  }

  .about .bottom-about .cont-line {
    display: block;

    width: 100%;
  }
  
  .about .bottom-about .cont-line .line {
    width: 100%;
    margin: 30px 0;
    border-radius: 4px;
    height: 4px;
    background-color: var(--secondary);
  }

  .about .bottom-about .cont-line .title {
    display: none;
  }

}

/*--------------------------------------------------------------
# Contacto Rápido Section
--------------------------------------------------------------*/

.fast-contact {
  position: relative;

  background: url(../img/fc/fc-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0px;
}

.fast-contact .cont-box {
  display: flex;
  justify-content: space-evenly;

  margin: 120px 0;
}

.fast-contact .box {
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #ffffff20;
  border: 4px solid var(--white);
  border-radius: 40px;
  width: 300px;
  height: 80px;
  padding: 10px 12px;

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

  pointer-events: none;
}

.fast-contact .box:hover {
  background-color: #ffffff40;
}

.fast-contact .box .cont-icon {
  margin-right: 15px;
}

.fast-contact .box .cont-text {
  color: var(--white);
  text-align: center;
  line-height: 1;
}

.fast-contact .box .cont-text .big {
  font-size: 32px;
}

@media (max-width: 991px) {
  .fast-contact .cont-box {
    display: flex;
    flex-direction: column;
    justify-content: unset;
    align-items: center;
  
    margin: 60px 0;
  }

  .fast-contact .cont-box > :not(:last-of-type) {
    margin-bottom: 30px;
  }
}

@media (max-width: 320px) {
  .fast-contact .cont-box a {
    width: 100%;
  }

  .fast-contact .box {
    display: flex;
    justify-content: center;
    align-items: center;
  
    background-color: #ffffff20;
    border: 4px solid var(--white);
    border-radius: 0px;
    width: 100%;
    height: 80px;
    padding: 10px 0px;
  }
}

/*--------------------------------------------------------------
# Productos
--------------------------------------------------------------*/

.products {
  position: relative;

  padding: 0px;
}

.products .top-products {
  position: relative;

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

.products .top-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

  width: 100%;
  height: 100%;
  background-color: var(--grey);
}

.products .top-products .cont-box {
  display: flex;
  flex-direction: column;

  margin-top: 100px;
  margin-bottom: 100px;
}

.products .top-products .box {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: transparent;
  border: 1px solid var(--black);
  height: 100px;
  width: 350px;
  border-radius: 10px;
  background-color: #ffffff73;
}

.products .top-products .box:not(:last-of-type) {
  margin-bottom: 40px;
}

.products .top-products .box .cont-icon {
  width: 32px;
  margin-right: 30px;
}

.products .top-products .box .cont-icon i {
  font-size: 32px;
  color: var(--rojo);
}

.products .top-products .box .cont-text {
  width: 220px;

  font-weight: 600;
  color: var(--black);
}

.products .bottom-products {
  background-color: var(--grey);
  padding-top: 60px;
  padding-bottom: 30px;
}

.products .bottom-products .title {
  position: relative;

  padding-top: 20px;

  text-align: center;
  color: #121212;
}

.products .bottom-products .title h2 {
  font-weight: 700;
}

.products .bottom-products .title::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 10%);

  width: 20%;
  height: 4px;
  background-color: var(--black);
}

.products .products-slider {
  position: relative;

  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0px 60px;
}

.products .products-slider .cont-dir {
  position: absolute;
  top: 0;
  z-index: 1;

  display: flex;
  justify-content: center;

  height: 100%;
  width: 50px;
  background-color: var(--grey);
}

.products .products-slider .cont-dir.prev {
  left: 0;
}

.products .products-slider .cont-dir.next {
  right: 0;
}

.products .products-slider .swiper-button-next, 
.products .products-slider .swiper-button-prev {
  left: auto;
  right: auto;

  border: 2px solid #121212;
  padding: 20px;
  border-radius: 50%;
}

.products .products-slider .swiper-button-next::after, 
.products .products-slider .swiper-button-prev::after {
  font-size: 22px;
  color: #121212;
}

.products .products-slider .swiper-slide {
  border: 4px solid #121212;
  border-radius: 20px;
  overflow: hidden;
}

.products .bottom-products .text {
  padding: 20px 0px;

  color: #121212;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 400px) {
  .products .top-products .box {
    width: 100%;
    border-radius: 0px;
  }

  .products .top-products .box .cont-icon {
    margin-right: 20px;
  }

  .products .top-products .container {
    padding: 0px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 0px;
}

.hero.charging{
  overflow: hidden;
}

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

#homeSlider {
  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(--secondary);
  border-color: var(--secondary) transparent var(--secondary) 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;
}

#homeSlider .carousel-indicators {
  align-items: center;
}

#homeSlider .carousel-indicators button {
  height: 8px;

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

#homeSlider .carousel-indicators button.active {
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  font-size: 16px;
  background-color: var(--black);
  padding: 0;
  color: var(--white);
}

.contact .footer-top {
  position: relative;

  background: url(../img/bg-footer_top.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* margin-bottom: 50px; */
  padding: 60px 10px;
}

.contact .footer-top .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  font-size: 20px;
  text-align: center;
}

.contact .footer-top .content .big {
  font-size: 68px;
  line-height: 1;
}

.contact .footer-top .content .icon {
  font-size: 105px;
}

.contact .footer-top .content .btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;

  margin-top: 20px;
}

.contact .footer-top .content .btns .btn {
  display: flex;
  justify-content: center;

  background-color: #ffffff20;
  border: 4px solid var(--white);
  border-radius: 40px;
  width: 250px;
  height: 80px;
  padding: 10px 12px;
  margin: 10px 15px;

  color: var(--white);
  font-weight: 600;
  text-align: start;
  
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.contact .footer-top .content .btns .btn:hover {
  background-color: #ffffff40;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login {
  position: relative;

  padding: 80px 10px;
  background: url(../img/login/bg-login.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.login .cont-login {
  text-align: center;
}

.login .cont-login .title {
  margin-bottom: 0;
  padding-bottom: 0;

  font-size: 50px;
  font-weight: 700;
}

.login .cont-login .subtitle {
  margin-bottom: 40px;
}

.login .cont-login .form-control {
  margin-bottom: 25px;
  border: 2px solid var(--secondary);
  max-width: 400px;
  width: 100%;
}

.login .cont-login .form-control:focus {
  box-shadow: 0 0 .1em .25em #ff73448b;
}

.login .cont-login .form-group {
  display: flex;
  justify-content: center;

  width: 100%;
}

.login .cont-login .btn-access {
  background-color: var(--secondary);
  border: 0;
  padding: 8px 18px;
  border-radius: 4px;

  font-weight: 500;
  color: var(--white);

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

.login .cont-login .btn-access:hover {
  opacity: 0.8;
}

.login .cont-login .loaderFormAccess {
  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;
}

.login .cont-login .loaderFormAccess.show {
  display: inline-block;
  overflow: visible;
  width: 80px;
  height: 80px;
  margin-top: 20px;
}

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

.login .cont-login .invalidMsg.show {
  margin-top: 20px;
  opacity: 1;
}

.login .cont-login .invalidMsg p {
  margin: 0;
  padding: 10px;
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 5px;
  text-transform: uppercase;
}

.login .cont-login .invalidMsg.ok p {
  border: 2px solid #198754;
}

.login .cont-login .invalidMsg.notok p {
  border: 2px solid #dc3545;
}

.login .cont-login .invalidMsg {
  text-align: center;
  color: #000000;
  font-weight: 600;
  font-size: 20px;

  opacity: 0;
  overflow: hidden;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);

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

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

@media (max-width: 400px) {
  .login .cont-login .title {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 16px;
  background-color: var(--black);
  padding: 50px 0 50px 0;
  color: var(--white);
}

.footer .f-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding-right: 30px;
}

.footer .f-1 .cont-img {
  max-width: 200px;
  margin-bottom: 10px;
}

.footer .f-1 .text {
  text-align: center;
}

.footer .f-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .f-2 .list {
  list-style: none;
  padding: 0;
  margin: 20px auto 30px 25px;
}

.footer .f-2 .list li {
  margin-bottom: 10px;
}

.footer .f-2 .list a {
  color: var(--white);

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

.footer .f-2 .list a:hover {
  color: var(--secondary);
}

.footer .f-2 .line {
  width: 6px;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 6px;
}

.footer .f-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.footer .f-3 .box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .f-3 .cont-img {
  margin-right: 30px;
}

.footer .f-3 .cont-img img {
  width: 50px;
}

.footer .f-3 .text {
  font-weight: 500;
}

.footer .f-3 .text a {
  color: var(--white);

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

.footer .f-3 .text a:hover {
  color: var(--secondary);
}

/* 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);
  }
}