html,
body {
  margin: 0;
  padding: 0;
  font-family: "Tajawal", serif;
  color: #25282a;
}

.base {
  position: relative;
  float: left;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.gap-40 {
  gap: 40px !important;
}

.title {
  color: #ffffff;
  font-family: "Tajawal", Sans-serif;
  font-size: 7.8em;
  font-weight: 600;
  text-transform: lowercase;
  line-height: 0.8em;
  letter-spacing: -5px;
  z-index: 1;
}

.paragraph {
  color: #727982;
  font-family: "Tajawal", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0px;
  margin-bottom: 0px;
}

.btn-custom,
.btn-custom:hover {
  background-color: #110c23fa;
  font-family: "Work Sans", Sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2.92px;
  border-radius: 0px 0px 0px 0px;
  color: #fff;
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  padding-left: 30px;
  text-decoration: none;
}

@media (max-width: 768px) {
}
#loader {
  background-color: #fff;
  top: 0px;
  left: 0px;
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url(../../template3_octopus/img/LoadingGif.gif);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35px 35px;
  z-index: 1050;
}
.btn-custom.blue {
  background: #000b75;
  color: #fff !important;
}
.btn-custom.blue:hover {
  background: #dbdeed;
  color: #000b75 !important;
}

.btn-custom.green {
  background: #91b208;
  color: #fff;
}
.btn-custom.green:hover {
  background: #e0e8d6;
  color: #91b208;
}

.font-18 {
  font-size: 18px;
}

@media (max-width: 768px) {
  .font-xs-16 {
    font-size: 16px !important;
  }
}
/****************************************/

.color-white,
.color-white:hover {
  color: #fff;
}
.color-black {
  color: #25282a;
}

.color-blue {
  color: #000b75;
}
.color-blue-2 {
  color: #03062d;
}
.color-blue-3 {
  color: #0a0b52;
}
.color-blue-4 {
  color: #19158d;
}
.color-blue-5 {
  color: #221cb1;
}
.color-orange {
  color: #f29a57;
}
.color-green {
  color: #9ec412;
}
.color-green-2 {
  color: #91b208;
}
.color-green-3 {
  color: #6b8800;
}
.color-green-4 {
  color: #acd625;
}
.color-green-5 {
  color: #4cb432;
}
.color-green-6 {
  color: #379024;
}

.bg-light-blue {
  background: #f2f4f8;
}

.bg-1 {
  background: #eef1f7;
}

.bg-2 {
  background: #dbdeed;
}

.bg-3 {
  background: #e0e8d6;
}

.bg-4 {
  background: #f2f5ee;
}

/**************estilos menu mobile****************************/
.hamburger-menu {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 19px;
  cursor: pointer;
  justify-content: center;
  display: flex;
  align-items: center;
  display: none;
}

.bar {
  position: absolute;
  background: #fff;
  border-radius: 30px;
  height: 4px;
  right: 0px;
  width: 24px;
  transition: all 1s ease;
}

.bar.animate {
  animation: animationBar3 1s ease 0s 1 normal none;
  right: 12px;
  width: 0px;
}

.bar1 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 12px;
  height: 4px;
  border-radius: 30px;
  transition: all 1s ease;
}

.bar1.animate {
  animation: animationBar 1s ease 0s 1 normal none;
  left: 0px;
  width: 24px;
  transform: rotate(135deg);
  top: 7px;
}

.bar2 {
  position: absolute;
  border-radius: 30px;
  height: 4px;
  right: 0;
  bottom: 1px;
  width: 12px;
  transition: all 1s ease;
}

.bar2.animate {
  animation: animationBar2 1s ease 0s 1 normal none;
  transform: rotate(45deg);
  right: 0;
  bottom: 8px;
  width: 24px;
}

@keyframes animationBar {
  0% {
    top: 0px;
    left: 0;
    width: 12px;
    transform: rotate(0deg);
  }

  50% {
    left: 12px;
    width: 3px;
    transform: rotate(0deg);
    top: 0px;
  }

  100% {
    left: 0px;
    width: 24px;
    transform: rotate(135deg);
    top: 7px;
  }
}

@keyframes animationBar2 {
  0% {
    transform: rotate(0deg);
    right: 0;
    bottom: 0px;
    width: 12px;
  }

  50% {
    transform: rotate(0deg);
    right: 0;
    bottom: 0px;
    width: 3px;
  }

  100% {
    transform: rotate(45deg);
    right: 0;
    bottom: 8px;
    width: 24px;
  }
}

@keyframes animationBar3 {
  0% {
    right: 0;
    width: 24px;
  }

  50% {
    right: 0;
    width: 0px;
  }

  100% {
    right: 12px;
    width: 0px;
  }
}

nav.bg-white > div > div > .hamburger-menu > .bar,
nav.open > div > div > .hamburger-menu > .bar {
  background: #000b75;
}

nav.bg-secondary-blue.open > div > div > .hamburger-menu > .bar {
  background: #fff;
}

/****************Menu*************************/

nav {
  width: 100%;
  position: fixed;
  float: left;
  top: 0;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease-in;
  z-index: 1050;
}

nav > div > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bg-white {
  /*background: #fff;*/
  background: rgba(238, 241, 247, 0.9) !important;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.bg-secondary-blue {
  /* background: #000b75;*/
  background: rgba(0, 11, 117, 0.9) !important;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

#logo {
  position: relative;
  float: left;
  width: 130px;
  height: 49px;
  margin: 0px 30px;
  background: url("../img/logo-menu-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

/*nav.bg-white {
  background: rgba(238, 241, 247, 0.9);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}*/

nav.bg-white > div > div > #logo {
  background: url("../img/logo-menu.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

#menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  position: relative;
  float: left;
  width: auto;
}

#menu > a,
.submenu > a,
.submenu > p {
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

#menu > a.activo,
#menu > p.activo,
.submenu > p.activo {
  border-bottom: 5px solid #91b208;
  margin-bottom: -7px !important;
}

.submenu > a > i,
.submenu > a > i {
  fill: #fff;
  transition: all 0.1s ease-in;
  margin-left: 5px;
  line-height: 0px;
}

nav.bg-white > div > div > #menu > a,
nav.bg-white > div > div > #menu > .submenu > a,
nav.bg-white > div > div > #menu > .submenu > p {
  color: #000b75;
  transition: all 0.5s ease-in;
}

nav.bg-secondary-blue > div > div > #menu > a,
nav.bg-secondary-blue > div > div > #menu > .submenu > a,
nav.bg-secondary-blue > div > div > #menu > .submenu > p {
  color: #fff;
  transition: all 0.1s ease-in;
}

nav > div > div > #menu > a.contacto {
  min-width: 133px;
  min-height: 48px;
}
nav.bg-secondary-blue > div > div > #menu > a.contacto {
  background: #91b208 !important;
}

.submenu > div {
  position: absolute;
  left: 0px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border-radius: 5px;
  width: 200px;
  margin-top: 5px;
  display: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.submenu > div.open {
  display: flex;
}

.rotate180deg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.1s ease-in;
}

.submenu > div > a {
  font-size: 15px;
  padding: 6px 24px;
  width: 100%;
  position: relative;
  float: left;
  color: #25282a;
  text-decoration: none;
  font-weight: 400;
}

.submenu > div > a.activo {
  background: #000b75;
  color: #fff;
  font-weight: 500;
}

.submenu > div > a:hover {
  background: #000b75;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 1150px) {
  #menu > a,
  .submenu > a,
  .submenu > p {
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  #menu {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  #menu > a,
  .submenu > a,
  .submenu > p {
    font-size: 17px;
  }

  .title {
    font-size: 4.3em;
  }

  nav {
    height: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    align-items: flex-start;
    backdrop-filter: none !important;
  }

  nav div > div {
    align-items: flex-start;
  }

  .hamburger-menu {
    position: absolute;
    top: 30px;
    right: 24px;
    bottom: auto;
    z-index: 1050;
    display: flex;
  }

  #menu {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1050;
    top: 0px;
    right: -100%;
    display: flex;
    flex-direction: column;
    text-align: right;
    align-items: flex-start;
    padding: 30px 16px;
    gap: 0px;
    justify-content: flex-start;
    transition: all 0.5s ease-in;
    margin-top: 0px;
  }

  #menu > a,
  .submenu > a,
  .submenu > p {
    padding: 16px 8px;
    width: 100%;
    text-align: left;
  }

  #menu > a.activo,
  #menu > p.activo,
  .submenu > p.activo {
    margin-bottom: 0px !important;
  }
  #menu > a.contacto {
    position: absolute;
    bottom: 30px;
    left: 0px;
    border-radius: 0px;
    width: 92%;
    margin: 0px 4%;
  }

  nav > div > div > #menu {
    background: #fff;
  }

  nav.bg-white > div > div > #menu > a,
  nav.open > div > div > #menu.open > a,
  .submenu > a,
  .submenu > p {
    color: #000b75;
  }

  nav.bg-secondary-blue > div > div > #menu {
    background: #000b75;
  }

  nav.bg-secondary-blue > div > div > #menu > a,
  nav.bg-secondary-blue.open > div > div > #menu.open > a {
    color: #fff;
  }

  nav.open {
    transition: all 0.5s ease-in;
  }

  #menu.open {
    right: 0px;
    transition: all 0.5s ease-in;
  }

  .submenu > div,
  .submenu,
  .submenu > a,
  .submenu > p {
    position: relative;
    float: left;
    width: 100%;
    text-align: left;
    margin-top: 0px;
  }
  .submenu > div {
    box-shadow: none;
  }
}

/*******breadcrumbs****** */
.breadcrumbs {
  margin-top: 90px;
  margin-bottom: 40px;
  color: #697077;
  font-size: 16px;
  padding-left: 7%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 1400px) {
  .breadcrumbs {
    margin-top: 145px;
    padding-left: 0px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs {
    margin-top: 90px;
    padding-left: 20px;
  }
}

/************************footer******************************/
footer {
  background: #000;
  padding: 50px 20px;
  position: relative;
  float: left;
  width: 100%;
  color: #fff;
}

.title-footer {
  color: #ffffff;
  font-family: "Tajawal", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: 0.87px;
  word-spacing: 0px;
}
.submenu-footer {
  position: relative;
  float: left;
  width: 100%;
  max-width: 170px;
}

.submenu-title-footer {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  float: left;
  width: 100%;
  padding-bottom: 28px;
}

.link-footer,
.link-footer:hover {
  font-family: "Tajawal", Sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  line-height: 22px;
  letter-spacing: 0.76px;
  word-spacing: 0px;
  color: #fff;
  margin-bottom: 5px;
}

.submenu-title-footer > i {
  fill: #fff;
  display: none;
}

#footer-option-menu {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 20px;
}

.footer-icon-social,
.footer-icon-social:hover {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}
@media (max-width: 768px) {
  .divider-line-footer {
    display: none;
  }

  #footer-option-menu > div:nth-child(1) > div > div.submenu-title-footer {
    border-top: 1px solid #fff;
  }

  .submenu-title-footer {
    font-size: 16px;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    padding-top: 20px;
    cursor: pointer;
  }

  .submenu-title-footer > i {
    display: block;
  }

  .submenu-footer {
    max-width: 100%;
  }

  #footer-option-menu {
    display: block;
  }

  .submenu-footer > .options {
    display: none;
  }

  .submenu-footer > .options.open {
    display: block;
  }

  .submenu-title-footer.open {
    color: #9ec412;
  }

  .submenu-title-footer.open > i {
    fill: #9ec412;
  }

  .rotate-90deg {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-900deg);
    transform: rotate(-90deg);
    transition: all 0.1s ease-in;
  }
}

/*************************************************/

.nav-link,
.nav-link:hover,
.nav-link:active,
.nav-link:visited,
.nav-link:link {
  color: #fff;
  font-family: "Tajawal", Sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin: 0px 10px;
}

/**************header******************/

.link-top,
.link-top:hover {
  color: #fff;
  text-decoration: none;
  float: left;
  width: auto;
  text-shadow: 0px 2px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .link-top,
  .link-top:hover {
    width: 100%;
    text-align: center;
  }
}

.pulse {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.pulse-button-02 {
  position: fixed;
  width: 80px;
  height: 80px;
  box-shadow: rgba(100, 177, 97, 0.7) 0px 0px 0px 0px;
  background-color: transparent;
  background-image: url("img/icons/icon-whats.png");
  background-size: 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  border-radius: 50%;
  background-position: center center;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  z-index: 999;
  right: 20px;
  bottom: 20px;
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}

@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}

@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}

/*************contact**********************/

.portada {
  background-image: url(../img/portada-contact.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img {
  background-image: url(../img/portada-contact.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.overlary {
  background-color: #000000;
  opacity: 0.3;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.mw-1220 {
  max-width: 1220px;
}

.title-contact {
  color: #000000;
  font-family: "Tajawal", Sans-serif;
  font-size: 2em;
  font-weight: 300;
  text-transform: lowercase;
  line-height: 1.4em;
  letter-spacing: -1.2px;
}

.link-contact,
.link-contact:hover {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #000;
  text-decoration: none;
}

.btn-form-contact,
.btn-form-contact:hover {
  background-color: #122b41;
  color: #ffffff;
  width: 100%;
  font-size: 20px;
  padding: 20px;
}

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

.title-primary {
  font-family: "Tajawal", Sans-serif;
  font-size: 3.4em;
  font-weight: 600;
  text-transform: lowercase;
  line-height: 0.9em;
  letter-spacing: -1.2px;
}

.title-secondary {
  font-family: "Tajawal", Sans-serif;
  font-size: 2.5em;
  font-weight: 600;
  text-transform: lowercase;
  line-height: 0.9em;
  letter-spacing: -1.2px;
}

@media (max-width: 768px) {
  .title-primary {
    font-size: 30px;
  }

  .title-secondary {
    font-size: 26px;
  }
}

#menu.bg-gray {
  background: rgba(116, 116, 116, 0.9);
  transition: all 0.5s ease;
}

#menu {
  transition: all 0.5s ease;
}

.portada-index {
  background-image: url(../img/portada-contact.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1000px) {
  .portada-index {
    height: 57vh;
  }
}

.font1 {
  color: #ffffff;
  font-family: "Arizonia", Sans-serif;
  font-size: 84px;
  line-height: 1em;
  font-weight: 700;
}

.font3 {
  color: #ffffff;
  font-family: "Tajawal", Sans-serif;
  font-size: 2em;
  font-weight: 300;
  text-transform: lowercase;
  line-height: 1.4em;
  letter-spacing: -1.2px;
}

@media (max-width: 768px) {
  .font1 {
    font-size: 3em;
  }

  .font3 {
    font-size: 1.3em;
  }
}

.background-video-container {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  z-index: 0;
  direction: ltr;
}

.background-video-embed {
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background: no-repeat center;
  user-select: none;
  pointer-events: none;

  /*additional tweaks for positioning, read more in the link above*/
  height: 100%;
  width: 100vh;
  /* 100 * 16 / 9 */
  min-width: 100%;
  min-height: 56.25vw;
  /* 100 * 9 / 16 */
}

.dark-overaly {
  background-color: transparent;
  background-image: radial-gradient(
    at center center,
    rgba(0, 0, 0, 0.13) 15%,
    #000000 86%
  );

  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.bg-img:hover > .dark-overaly {
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  opacity: 0.9;
}

.bg-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  position: relative;
  flex-wrap: wrap;
  align-content: flex-start;
  min-height: 500px;
}

.img1 {
  background-image: url("../img/img-index1.jpg");
}

.img2 {
  background-image: url("../img/img-index2.jpg");
}

.img3 {
  background-image: url("../img/img-index3.jpg");
}

.img4 {
  background-image: url("../img/img-index4.jpg");
}

.img5 {
  background-image: url("../img/img-index5.jpg");
}

.bg-img > div > .title {
  color: #ffffff;
  font-family: "Tajawal", Sans-serif;
  font-size: 2.8em;
  font-weight: 500;
  text-transform: lowercase;
  line-height: 1.25em;
  letter-spacing: -1.2px;
  text-align: left;
}

.bg-img > div {
  position: absolute;
  left: 0px;
  bottom: 0px;
  padding: 30px;
}

.font-2em {
  font-size: 2em;
}

.z-1 {
  z-index: 1;
}
