/*
Theme Name: bits
Author: Marcos Genolet
Author URI: https://weare.uy/
Description: Soluciones IT.
Requires at least: 5.9
Tested up to: 6.0
Requires PHP: 5.6
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentytwo
Tags: IT Solutions, Soluciones IT, Consultoria IT, IT Consulting

Twenty Twenty-Two WordPress Theme, (C) 2021 WordPress.org
Twenty Twenty-Two is distributed under the terms of the GNU GPL.
*/
/*
 * Font smoothing.
 * This is a niche setting that will not be available via Global Styles.
 * https://github.com/WordPress/gutenberg/issues/35934
 */
* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Regular.eot");
  src: url("assets/fonts/Outfit-Regular.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Outfit-Regular.woff2") format("woff2"), url("assets/fonts/Outfit-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Medium.eot");
  src: url("assets/fonts/Outfit-Medium.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Outfit-Medium.woff2") format("woff2"), url("assets/fonts/Outfit-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Bold.eot");
  src: url("assets/fonts/Outfit-Bold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Outfit-Bold.woff2") format("woff2"), url("assets/fonts/Outfit-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}
nav .logo {
  float: left;
}
nav .logo a.nav-link {
  padding: 0;
}
nav .logo a.nav-link img {
  display: block;
  width: 240px;
  transition: all 0.5s ease;
}
nav.scroll {
  background: #242424;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.17);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.17);
}
nav.scroll ul li a.nav-link {
  color: white;
}
nav.scroll .logo a.nav-link img {
  width: 170px;
}
nav ul {
  list-style: none;
  float: right;
  margin: 0;
  display: flex;
}
nav ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
nav ul li:last-child a.nav-link::after {
  display: none;
}
nav ul li a.nav-link {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  padding: 14px 25px;
  display: block;
  letter-spacing: 0.1rem;
  border-radius: 0;
  margin: 0;
  position: relative;
  transition: all 0.5s ease;
}
nav ul li a.nav-link:hover, nav ul li a.nav-link.active {
  color: white;
}
nav ul li a.nav-link:hover:before, nav ul li a.nav-link.active:before {
  content: "";
  position: absolute;
  display: block;
  right: 20%;
  left: 20%;
  bottom: 0;
  border-top: 1px solid white;
  opacity: 1;
}
nav ul li a.nav-link:before {
  content: "";
  position: absolute;
  display: block;
  right: 40%;
  left: 40%;
  bottom: 0;
  border-top: 1px solid white;
  transition: all 0.3s ease;
  opacity: 0;
}
nav ul li a.nav-link:after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  margin-top: -2px;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
}
nav #mostrar-menu {
  position: relative;
  z-index: 5;
}
nav #mostrar-menu, nav .cerrar-menu {
  display: none;
}
@media all and (max-width: 767px) {
  nav {
    background: #242424;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.17);
  }
  nav .logo a.nav-link img {
    width: 170px;
  }
  nav .menu-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 250px;
    background-color: #6b00b3;
    background-image: url(assets/images/bg-nav.jpg);
    background-size: cover;
    padding: 0;
    transform: translateY(-250px);
    transition: all 0.3s;
    z-index: 4;
    opacity: 0;
  }
  nav .menu-nav.visible {
    opacity: 1;
    transform: translateY(0);
    padding-top: 45px;
  }
  nav .menu-nav ul {
    display: block;
    padding: 0;
    margin: 0;
    float: none;
  }
  nav .menu-nav ul li {
    display: block;
    padding: 0;
    margin: 0;
  }
  nav .menu-nav ul li a.nav-link {
    text-align: center;
    color: white;
  }
  nav .menu-nav ul li a.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  nav .menu-nav ul li a.nav-link:last-child {
    border-radius: 0;
  }
  nav .menu-nav ul li a.nav-link:after {
    display: none;
  }
  nav #mostrar-menu {
    display: inline-block;
    float: right;
  }
  nav .cerrar-menu {
    display: block;
    background-color: transparent;
    border: 0;
    padding: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0;
  }
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 25px;
  height: 2px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

#hero {
  height: 120vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 100px;
  padding-right: 100px;
}
#hero:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
#hero video, #hero .mobile {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#hero .content {
  position: relative;
  top: -100px;
  z-index: 3;
  color: white;
  max-width: 940px;
  text-align: center;
}
#hero .content h2 {
  font-size: 30px;
  font-weight: normal;
  padding-bottom: 1rem;
}
#hero .content h2 span, #hero .content h2 strong {
  font-size: 40px;
  font-weight: normal !important;
}
#hero .content h2 small {
  font-size: 18px;
}
#hero .content .btn {
  font-size: 14px;
  padding: 10px 30px;
}
#hero.error404 p {
  font-size: 26px;
  font-weight: normal;
}
@media all and (max-width: 980px) {
  #hero {
    height: auto;
  }
  #hero.error404 {
    height: 100vh;
  }
  #hero .content {
    grid-template-columns: 1fr;
    height: auto;
  }
}
@media all and (max-width: 767px) {
  #hero {
    padding-top: 250px;
  }
}

#topics {
  padding: 60px;
  background: #9900FF;
  position: relative;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}
#topics .grid-three {
  grid-gap: 60px;
}
#topics .grid-three .item p:first-child {
  position: relative;
}
#topics .grid-three .item p:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  height: 1px;
  z-index: 1;
}
#topics .grid-three .item p:first-child strong {
  font-size: 20px;
  letter-spacing: 0.02em;
  background-color: #9900FF;
  z-index: 2;
  position: relative;
  padding-right: 5px;
}

#overview {
  padding: 50px 0 20px 0;
  background: #9900FF url(assets/images/bg-overview.jpg) no-repeat scroll 100% 100%;
  background-size: cover;
}
@media all and (max-width: 767px) {
  #overview {
    background-position: 80% 0;
  }
}
#overview .item {
  position: relative;
  padding: 15px 75px 15px 120px;
  margin-bottom: 15px;
}
#overview .item.center {
  justify-content: center;
  display: flex;
}
#overview .item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}
#overview .item:last-child {
  padding-top: 50px;
  margin-bottom: 0;
}
#overview .item:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  right: 50px;
  height: 1px;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}
#overview .item .inn {
  position: relative;
}
#overview .item .inn .icon {
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  left: -75px;
  top: -10px;
}
#overview .item .inn h3 {
  font-size: 28px;
}
@media all and (max-width: 767px) {
  #overview .item {
    padding: 40px;
  }
  #overview .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    right: 50px;
    height: 1px;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }
  #overview .item .inn h3 {
    text-align: center;
  }
  #overview .item .inn .icon {
    position: relative;
    left: inherit;
    margin: 0 auto;
  }
}

#news h3 {
  display: inline-block;
  padding-right: 30px;
}
#news .more {
  display: inline-block;
}
#news .btn-news {
  float: right;
}
#news .btn-news a {
  display: inline-block;
  margin: 5px;
  cursor: pointer;
}
#news .btn-news a:hover {
  opacity: 0.8;
}
#news .news-reel .slick-slide {
  height: auto;
}
#news .news-reel .slick-list {
  padding: 0 0 !important;
  margin: 0 !important;
  width: 100%;
}
#news .news-reel .item {
  padding: 20px;
}
#news .news-reel .item article {
  position: relative;
}
#news .news-reel .item article a {
  color: white;
  text-decoration: none;
}
#news .news-reel .item article a:hover figure img {
  transform: scale(1.08);
}
#news .news-reel .item article h4 {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 0;
  margin: 0;
  z-index: 2;
}
#news .news-reel .item article figure {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}
#news .news-reel .item article figure img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.5 ease;
}
#news .news-reel .item article figure::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4542191877) 0%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}

/* PAGE NEWS */
.news-page {
  padding-top: 100px;
  background: transparent url(assets/images/bg-top-internas.png) no-repeat scroll 0 0;
  background-size: cover;
}
.news-page .deco {
  opacity: 0.7;
}
.news-page h1 {
  font-size: 36px;
  font-weight: normal;
  padding-bottom: 60px;
  display: block;
  text-align: center;
}
.news-page #contact {
  margin-top: 60px;
}
.news-page.single .head, .news-page.single .body {
  background-color: white;
}
.news-page.single .head {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: auto;
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.news-page.single .head img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.news-page.single .head::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4542191877) 0%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
.news-page.single .container .row:last-child .body {
  border-radius: 0 0 10px 10px;
}
.news-page.single .body {
  color: #333333;
}
.news-page.single .body h2 {
  font-size: 36px;
  font-weight: normal;
  padding-bottom: 60px;
  display: block;
  margin: 0;
  padding: 0;
}
.news-page.single .body .inn {
  padding: 60px;
}
@media all and (max-width: 991px) {
  .news-page.single .body .inn {
    padding: 30px;
  }
}
.news-page.single .body .inn.pad-0 {
  padding-bottom: 0;
}
.news-page.single .body .inn a {
  word-break: break-all;
}

.grid-news {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
@media all and (max-width: 991px) {
  .grid-news {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 580px) {
  .grid-news {
    grid-template-columns: 1fr;
  }
}
.grid-news article {
  position: relative;
}
.grid-news article a {
  text-decoration: none;
  color: white;
}
.grid-news article:hover {
  cursor: pointer;
}
.grid-news article:hover figure img {
  transform: scale(1.08);
}
.grid-news article figure {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}
.grid-news article figure::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4542191877) 0%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0) 100%);
}
.grid-news article figure img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}
.grid-news article h3 {
  position: absolute;
  display: block;
  left: 10px;
  right: 10px;
  bottom: 10px;
  color: white;
  z-index: 2;
  font-size: 18px;
  margin: 0;
  padding: 0;
  min-height: 45px;
  padding-bottom: 10px;
}

#cv {
  color: #9900FF;
  background: #e8e8e8;
  border-radius: 0 0 20px 20px;
  min-height: 355px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}
#cv .avatar {
  position: relative;
}
#cv .avatar dl {
  position: absolute;
  right: 50px;
  top: 50%;
  margin-top: -30px;
}
@media all and (max-width: 991px) {
  #cv .avatar dl {
    right: inherit;
    left: 60%;
  }
}
@media all and (max-width: 480px) {
  #cv .avatar dl {
    position: relative;
    top: inherit;
    margin: 20px auto;
    left: inherit;
    display: block;
    text-align: center;
  }
}
#cv .avatar dl dt {
  font-weight: bold;
  font-size: 24px;
}
#cv .avatar dl dd {
  font-size: 18px;
  color: #242424;
}
@media all and (max-width: 480px) {
  #cv .avatar img {
    object-fit: cover;
    width: 100%;
  }
}
#cv .info {
  padding: 0 100px 0 35px;
  display: flex;
  align-items: center;
}
#cv .info p {
  color: #333333;
}
@media all and (max-width: 991px) {
  #cv .info {
    padding: 50px;
  }
}
@media all and (max-width: 480px) {
  #cv .info {
    padding: 0 30px 30px 30px;
  }
}
#cv .info .btn {
  border: 1px solid #9900FF;
  color: #9900FF;
  margin-top: 20px;
  font-size: 14px;
  transition: all 0.5s ease;
}
#cv .info .btn:hover {
  letter-spacing: 0.3em;
}
#cv .info .btn i {
  margin-right: 8px;
}
#cv p {
  font-size: 18px;
}

#clients {
  position: relative;
  overflow: hidden;
}
#clients .inn {
  min-height: 400px;
  position: relative;
}
#clients .inn h2 {
  font-size: 30px;
  position: relative;
  z-index: 2;
  letter-spacing: normal;
}
#clients .inn ul.world {
  padding: 80px 0 0 0;
  z-index: 1;
  list-style: none;
  margin: 0 auto;
}
#clients .inn ul.world li {
  font-weight: bold;
  font-size: 20px;
  padding: 5px 0;
  text-align: center;
  transition: all 0.5s ease;
  letter-spacing: 0.1rem;
  position: relative;
}
#clients .inn ul.world li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 33%;
  right: 33%;
  height: 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.5s ease;
}
#clients .inn ul.world li:hover {
  letter-spacing: 0.3rem;
}
#clients .inn ul.world li:hover::before {
  left: 0;
  right: 0;
  border-top: 3px solid white;
}

#contact {
  background-image: url(assets/images/bg-contact.png);
  background-repeat: no-repeat;
  background-position: left top;
}
#contact h2 {
  font-size: 36px;
  font-weight: normal;
  padding-bottom: 60px;
}
#contact input, #contact textarea {
  background: none;
  border: none;
  margin-bottom: 30px;
  color: white;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
#contact textarea {
  max-height: 190px;
}
#contact .column ul {
  list-style: none;
}
#contact .column ul li {
  list-style: none;
  padding: 5px;
}
#contact .column ul li .btn {
  font-size: 11px;
}
#contact .column ul li .btn i {
  margin-right: 5px;
}
#contact .column #send {
  border: 1px solid white;
  border-radius: 5px;
}
#contact .column #send:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media all and (max-width: 767px) {
  #contact .col-lg-4 {
    text-align: center;
    padding-top: 40px;
  }
}

.wpcf7-response-output {
  text-align: center;
}

.pagination {
  padding-top: 30px;
  text-align: center;
  display: block;
}
.pagination a, .pagination span {
  font-size: 20px;
  color: white;
  padding: 0 10px;
  opacity: 0.7;
}
.pagination a:hover, .pagination a.current, .pagination span:hover, .pagination span.current {
  opacity: 1;
}

body, html {
  padding: 0;
  margin: 0;
  background-color: #9900ff;
}
body a, html a {
  text-decoration: none;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: white;
}

nav {
  z-index: 10;
}

#cv {
  z-index: 5;
}

#clients {
  z-index: 4;
}

section-bottom {
  overflow: hidden;
}

h2 {
  text-align: center;
  font-size: 2.8rem;
}

p {
  line-height: 1.5rem;
  text-align: justify;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}

@media all and (max-width: 600px) {
  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }
}
.btn {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1rem;
}
.btn.outline {
  border: 1px solid white;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s ease;
  color: white;
}
.btn.outline:hover {
  background: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.2rem;
}

.grid-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media all and (max-width: 991px) {
  .grid-three {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 767px) {
  .grid-three {
    grid-template-columns: 1fr;
  }
}

.topsite {
  background: #9900FF url(assets/images/bg-top.jpg) no-repeat scroll 50% 0;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.deco {
  position: absolute;
  z-index: 1;
}
.deco#deco1 {
  left: 50%;
  top: 0;
}
.deco#deco2 {
  left: 0;
  top: 30%;
}
.deco#deco3 {
  right: 0;
  top: 40%;
}
.deco#deco4 {
  left: 0;
  bottom: 0;
}

section {
  padding: 60px 0;
}
section h2 {
  letter-spacing: 0.2rem;
  color: white;
}

.zone-grey {
  background-color: #242424;
}

.section-bottom {
  background: url(assets/images/bg-bottom.jpg) no-repeat scroll 50% 100%;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.section-bottom:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(assets/images/dott.png) repeat;
  z-index: 1;
}

/*# sourceMappingURL=style.css.map */
