@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');
@font-face {
    font-family: 'retro-signature';
    /*a name to be used later*/
    src: url('../fonts/RetroSignature.otf');
    /*URL to font*/
}

* {
    font-family: 'poppins';
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ol,
ul {
    padding-left: 1rem !important;
}

:root {
    --dark: #000;
    --secundary: #01FABF;
    --tertiary: #442898;
    --cuaternary: #00041A;
    --quinary: #F4DA01;
    --body: #F0F1F2;
    --white: #ffffff;
    --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    scroll-behavior: smooth;
    --main-color: #ABA1FF;
    --main-color-dark: #675FB2;
    --ray-color: #FFD6BB;
    --spark-color: #70B268;
    --back-color: #2f2e4e;
}

body {
    letter-spacing: 1px;
    line-height: 1.7;
    word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-weight: 600; */
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: var(--dark);
    transition: all 0.4s ease;
    cursor: pointer;
}

a:hover {
    color: var(--tertiary);
}

.btn {
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}


/* HERO */

.logo-desing {
    /* background-image: url('../img/logotipo-blanco.png'); */
    max-width: 100%;
    width: 80%;
    height: auto;
}

.img-4-slideshow {
    background-image: url('../img/banner/header-services.webp');
    height: 100vh;
    background-size: cover;
    background-position: center !important;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.img-4-slideshow::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/svg/lines-gray-background.png'), url('../img/degrade-wallpaper.png');
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.img-5-slideshow {
    background-image: url('../img/about-us/banner-1.jpeg');
    height: 100vh;
    background-size: cover;
    background-position: center !important;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.img-5-slideshow::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/svg/lines-gray-background.png'), url('../img/degrade-wallpaper.png');
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.img-1-slideshow {
    background-image: url('../img/banner/header-wallpaper.png');
    height: 100vh;
    background-size: cover;
    background-position: left;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.img-1-slideshow::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/svg/lines-gray-background.png'), url('../img/degrade-wallpaper.png');
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}


/* .slideshow__slide-image::before, .slideshow__slide-image::after {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   opacity: 0.35;
} */


/* .slideshow__slide-image::before {
   background-color: #1e1e22;
} */


/* .slideshow__slide-image::after {
   background: linear-gradient(to bottom, transparent 0%, #1e1e22 100%);
} */

.img-2-slideshow {
    background-image: url('../img/banner/header-wallpaper-2.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.img-2-slideshow::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/svg/line-effect.svg'), linear-gradient(to bottom, #1d003dab 0%, #270066e0 100%);
    height: 100vh;
    background-size: 20%, cover;
    background-position-y: bottom, center;
    background-position-x: right, center;
    background-repeat: no-repeat, no-repeat;
    z-index: -1;
}

.img-3-slideshow {
    background-image: url('../img/banner/header-wallpaper-3.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.img-3-slideshow::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/svg/line-effect.svg'), linear-gradient(to bottom, #1d003dab 0%, #270066e0 100%);
    height: 100vh;
    background-size: 20%, cover;
    background-position-y: bottom, center;
    background-position-x: right, center;
    background-repeat: no-repeat, no-repeat;
    z-index: -1;
}

.text-header {
    width: 70%;
    height: auto;
}

.text-header-2 {
    width: 60%;
    height: auto;
}

.text-header-3 {
    width: 60%;
    height: auto;
}

.text-down {
    color: var(--white);
}


/* FINAL HERO */


/* NAVBAR */

.navbar {
    transition: background 0.5s ease, padding .2s ease;
    padding-bottom: 1vh;
    padding-top: 1vh;
}

.navbar-dark .navbar-nav .nav-link {
    font-size: 0.8rem;
    transition: all 0.8s ease;
    font-weight: normal;
    border-radius: 0.8rem;
    border-bottom: 2px solid transparent;
    color: var(--white) !important;
}

.navbar-dark .navbar-nav .nav-link.active {
    background-color: var(--tertiary);
    color: var(--white) !important;
    border-radius: 2rem;
}

.nav-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}


/* SERVICES */

#services {
    background-image: url('../img/svg/lines-blue-left.svg'), url('../img/svg/portal-left.png');
    background-size: contain, 20%;
    background-position-y: bottom, center;
    background-position-x: left, right;
    background-repeat: no-repeat, no-repeat;
    padding-top: 2rem;
    padding-bottom: 10rem;
    display: flex;
    align-items: center;
    text-align: center;
}

.shadow-effect-services {
    background: var(--white);
    text-align: center;
    border-radius: 2rem;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}

.spc {
    margin: 5px 8px 40px 8px;
    width: 100%;
}

.text-planes {
    text-align: left;
}

.design-plans {
    text-align: left;
    display: flex;
    align-items: center;
}

.recomendation {
    z-index: 9999;
    left: 0;
    right: 0;
    top: 20%;
    position: absolute;
}

.text-planes .icon-instagram {
    background-color: var(--quinary);
    border-radius: 3rem;
}

.title-card {
    padding-bottom: 2rem;
}

.feature-box {
    background-color: var(--white);
    padding: 60px 30px;
}

.title-services {
    color: var(--tertiary)
}

.title-plans {
    color: var(--cuaternary)
}

.title-plans-sript {
    color: var(--tertiary);
    font-size: 6rem;
    margin-top: -2rem;
    font-weight: normal !important;
    font-family: 'retro-signature';
}

.feature-card {
    padding-top: 2rem;
    font-size: 1.5rem;
    font-weight: bolder;
}

.card {
    box-shadow: var(--box-shadow);
    background-color: var(--white);
    padding: 25px;
    transition: all 0.35s ease;
    border-radius: 30px;
}

.cards-general {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
}

.img-cards {
    height: 6rem;
}

.about-us-cards {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: var(--tertiary);
    padding: 12px 32px;
    border-radius: 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.about-us-tarjet {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: var(--tertiary);
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 12px 32px;
    border-radius: 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.about-us-tarjet:hover,
.about-us-cards:hover {
    background-color: var(--quinary);
    color: var(--dark);
}

.about-us-services {
    margin: 20px auto 0;
    display: table;
    width: auto;
    background: var(--quinary);
    padding: 12px 32px;
    border-radius: 2rem;
    text-align: center;
    color: var(--cuaternary);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.show-more {}

.icon-show {
    display: flex;
    width: fit-content;
}


/* FINAL SERVICES */


/* INTRO */

.intro .divider {
    width: 94px;
    height: 2px;
    background-color: var(--brand);
    margin: 18px auto;
}

.intro {
    margin-bottom: 4rem;
    margin-top: 5rem;
}

.intro-clients {
    margin-bottom: 4rem;
}

.intro p {
    max-width: 740px;
    margin: auto;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 70px;
    z-index: 9999;
}

nav .navbar {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    /* background: red; */
    padding: 0 50px;
    flex-wrap: nowrap;
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: var(--back-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu,
.navbar .links li .sub-menu .more1-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu,
.links li .sub-menu .more:hover .more1-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .links li .sub-menu .more span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    align-items: center;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }
    nav .navbar .logo a {
        font-size: 27px;
    }
    nav .navbar .links li {
        padding: 0 5px;
        white-space: nowrap;
    }
    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:800px) {
    nav .navbar {
        flex-direction: row-reverse;
        flex-wrap: nowrap;
    }
    .navbar .bx-menu {
        display: block;
    }
    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 100%;
        width: 100%;
        background: var(--cuaternary);
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }
    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }
    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }
    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }
    nav .navbar .links li .arrow {
        line-height: 40px;
    }
    nav .navbar .links li {
        display: block;
    }
    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }
    nav .navbar .links li .sub-menu li {
        border-bottom: none;
    }
    .navbar .links li .sub-menu .more-sub-menu,
    .navbar .links li .sub-menu .more1-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }
    .navbar .links li .sub-menu .more-sub-menu li,
    .navbar .links li .sub-menu .more1-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }
    .navbar .links li .sub-menu .more-sub-menu,
    .navbar .links li .sub-menu .more1-sub-menu {
        display: none;
    }
    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        text-transform: uppercase;
        align-items: center;
        /* justify-content: space-between; */
    }
    .links li .sub-menu .more:hover .more-sub-menu,
    .links li .sub-menu .more:hover .more1-sub-menu {
        display: none;
    }
    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }
    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu,
    .navbar .nav-links.show4 .links .more .more1-sub-menu {
        display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }
    .navbar .nav-links.show2 .links .more-arrow,
    .navbar .nav-links.show4 .links .more1-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}


/* MILESTONE */

.milestone {
    background-image: url('../img/cover.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}

.milestone::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 34, 46, 0.5);
    z-index: -1;
}

.counter .h1 {
    color: var(--brand);
}

.counter .number {
    font-size: 44px;
    font-weight: 300;
    line-height: 1;
}

.counter .divider {
    width: 40px;
    height: 2px;
    background-color: var(--brand);
    margin: 18px auto;
}


/* FINAL MILESTONE */


/* ABOUT-COMPANY */

.about-company {
    padding-top: 3rem;
    padding-bottom: 10rem;
    background-image: url('../img/svg/lines-blue-right.svg');
    fill-opacity: 0.3;
    background-size: contain;
    background-position-y: bottom;
    background-position-x: right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.target {
    display: flex;
    justify-content: center;
}

.disposed {
    display: flex;
    flex-wrap: nowrap;
}

.intro-company {
    margin-top: 5rem;
}

.card-company {
    padding: 25px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    margin: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: block;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}

.title-company {
    color: var(--tertiary);
}

.subtitle {
    color: var(--dark);
    font-size: 2rem;
}

.subtitle-script {
    color: var(--tertiary);
    font-size: 6rem;
    margin-bottom: -1rem;
    font-weight: normal !important;
    font-family: 'retro-signature';
}


/* FINAL ABOUT-COMPANY */


/* REVIEWS */

.reviews {
    padding-top: 6rem;
    margin-bottom: -8rem;
    background-image: url('../img/svg/lines-blue-right.svg'), url('../img/portal-right.png');
    background-size: contain, 20%;
    background-position-y: bottom, center;
    background-position-x: right, left;
    background-repeat: no-repeat, no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.internationals {
    padding-top: 6rem;
    background-image: url('../img/internationals.jpg'), url('../img/portal-right.png');
    background-size: cover, 20%;
    background-position-y: center, center;
    background-position-x: center, left;
    background-repeat: no-repeat, no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.text-title {
    color: var(--white);
}

.title-services-s {
    color: var(--quinary)
}

.intro-reviews {
    padding-bottom: 2rem;
}

.shadow-effect {
    background: var(--white);
    padding: 20px;
    border-radius: 2rem;
    text-align: center;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}

.img-circle {
    width: auto !important;
    height: 220px !important;
}

.flag-icon {
    position: absolute;
    top: -40px;
    right: -40px;
    z-index: 999;
    width: 150px;
}

#customers-testimonials {
    margin-top: -5rem;
}

#customers-testimonials .shadow-effect p,
#customers-testimonials-s .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
    width: auto;
    height: 120px;
}

.testimonial-name {
    margin: -0.8rem auto 2rem;
    display: table;
    width: 150px;
    font-size: 16px !important;
    background: var(--secundary);
    padding: 4px 4px 4px 4px;
    border-radius: 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

.item .row {
    justify-content: center;
}

.testimonial-name:hover {
    background: var(--main-color-dark);
    color: var(--white) !important;
}

.testimonial-name a:hover {
    color: var(--white) !important;
}

#customers-testimonials .item,
#customers-testimonials-s .item {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 80px;
    opacity: 1;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item,
#customers-testimonials-s .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    padding: 1rem;
    max-width: 100%;
    margin: 17px auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span,
#customers-testimonials-s.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials-s.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--tertiary) !important;
    border-radius: 20px;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots,
#customers-testimonials-s.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-bottom: 2rem;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot,
#customers-testimonials-s.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span,
#customers-testimonials-s.owl-carousel .owl-dots .owl-dot span {
    background: var(--secundary);
    border-radius: 20px;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

.owl-carousel .nav-button {
    height: 50px;
    width: 50px;
    cursor: pointer;
    position: absolute;
    top: 12rem !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.25;
}

.owl-carousel .owl-prev {
    left: -20px;
    color: #fff !important;
    background-color: #01fac0b6 !important;
    border-radius: 25px;
    font-size: 28px;
}

.owl-carousel .owl-next {
    right: -20px;
    color: #fff !important;
    border-radius: 25px;
    background-color: #01fac0b6 !important;
    font-size: 28px;
}

.owl-carousel .owl-prev:hover {
    left: -20px;
    color: #fff !important;
    background-color: #01fabf !important;
    border-radius: 25px;
    font-size: 28px;
}

.owl-carousel .owl-next:hover {
    right: -20px;
    color: #fff !important;
    border-radius: 25px;
    background-color: #01fabf !important;
    font-size: 28px;
}


/* .owl-theme .owl-nav [class*=owl-] {
    color: var(--quinary);
    background-color: rgba(80, 70, 70, 49%);
    font-size: 40px;
    border-radius: 3px;
} */

.owl-carousel .prev-carousel:hover {
    background-position: 0px -53px;
}

.owl-carousel .next-carousel:hover {
    background-position: -24px -53px;
}


/* FINAL REVIEWS */


/* CONTACT */

.contenedor {
    display: flex;
    flex-direction: row;
    min-height: 100%;
    background-color: var(--cuaternary);
    background-image: url('../img/svg/lines-blue-left.svg');
    background-size: contain;
    background-position-y: bottom;
    background-position-x: left;
    background-repeat: no-repeat;
}

.contenedor>div {
    flex: 1;
    display: flex;
}

.contact-img-responsive {
    display: none;
}

.contact-img {
    display: flex;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    object-fit: scale-down;
}

.contact-form {
    border-radius: 40px 0px 0px 40px;
    background-image: url('../img/degrade-wallpaper.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
}

.title-form {
    color: var(--white);
    font-weight: bold;
    padding-bottom: 5rem;
}

.form-group {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 5px;
}

.form-control {
    width: 100% !important;
    border-radius: 25px !important;
    height: 55px !important;
    border: none !important;
}

.icon {
    background-color: var(--white);
    border-radius: 55px;
    width: 55px;
    height: 55px;
}

.resize {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.button-send {
    background-color: var(--quinary);
}

.button-send:hover {
    background-color: var(--secundary);
    color: var(--dark);
}


/* FINAL CONTACT */


/*CITES*/

.cites {
    background-image: url('../img/p3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.owl-dot.active span {
    background: var(--dark) !important;
}

.cites .lead {
    font-weight: 300;
    margin: 1rem;
    padding: 0 0 2rem;
}

.cites .stars {
    color: var(--dark);
    font-size: 12px;
}

.cites-carousel {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.cite {
    padding: 25px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: block;
    margin: 0 auto;
}

.cite .quote-icon {
    color: var(--dark);
}


/* FINAL CITES*/


/*CARDS*/

.credit-card {
    background-image: url('../img/credit-card/banner-pagos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.credit-card .content-text {
    display: flex;
    justify-content: center;
}

.owl-dot.active span {
    background: var(--dark) !important;
}

.credit-card .lead {
    font-weight: 300;
    width: 100%;
}

.credit-card .stars {
    color: var(--dark);
    font-size: 12px;
}

.credit-card-carousel {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.credit-cards {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* backdrop-filter: blur(5px);
   -webkit-backdrop-filter: blur(5px); */
}

.credit-card .quote-icon {
    color: var(--dark);
}

.img-credit-card {
    height: auto;
    object-fit: cover;
    width: -webkit-fill-available;
}


/* FINAL CARDS*/


/* ABOUT-US */

#about-us {
    background-image: url('../img/svg/lines-blue-right.svg');
    background-size: contain;
    background-position-y: bottom;
    background-position-x: right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 10rem;
    z-index: 1;
}

.icon-services {
    border-radius: 55px;
    margin-left: -10px;
}

.about-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--white);
    font-size: 1.5em;
    color: var(--white) !important;
    text-decoration-line: none !important;
}

.title-about-us {
    color: var(--tertiary);
}

.text-script {
    font-family: 'retro-signature';
    font-size: 10rem;
    color: var(--tertiary);
    font-weight: normal !important;
    margin-top: -4rem;
}

.owl-dot.active span {
    background: var(--dark) !important;
}

.about-carousel {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about-person {
    padding: 25px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin: 0 auto;
}

.about-us-person {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 5px;
    flex-wrap: wrap;
}

.card {
    width: 100%;
    height: 375px;
    background-color: #000;
    border-radius: 5px;
    position: relative;
    bottom: 0;
    transition: bottom 0.8s;
    overflow: hidden;
    padding: 5px;
    padding-right: 7px;
    padding-bottom: 7px;
    box-sizing: border-box;
    box-shadow: 0px 0px 14px -2px rgba(255, 255, 255, .1);
}

.card .inner {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 5px;
}

.card .title {
    color: #fff;
    text-align: center;
    font-size: 1rem;
    position: relative;
    font-weight: bold;
    top: 10px;
    bottom: 10px;
    opacity: 0;
    transition: opacity 0.6s;
}

.style-card {
    padding-bottom: calc(var(--bs-gutter-x) * .5) !important;
    padding-top: calc(var(--bs-gutter-x) * .5) !important;
}

.card .sub-title {
    color: #fff;
    text-align: center;
    font-size: 0.6rem;
    position: relative;
    top: 10px;
    bottom: 10px;
    opacity: 0;
    transition: opacity 0.6s;
}

.card .image {
    width: 90%;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    opacity: 0.8;
    transition: transform 0.7s, left 0.7s, bottom 0.2s;
}

.card .image img {
    width: 100%;
}

.card .items {
    width: 20px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    position: relative;
    top: 140px;
}

.card .item {
    position: relative;
    right: 50px;
}

.card .item svg {
    fill: #fff;
    width: 25px;
    height: auto;
    transition: fill 0.4s;
}

.card .item:hover svg {
    fill: #428cfd;
}

.card:hover {
    bottom: 20px;
}

.card:hover .image {
    transform: scale(1);
    left: 20%;
}

.card:hover .item {
    right: 0;
}

.card:hover .title {
    opacity: 0.85;
}

.card:hover .sub-title {
    opacity: 0.85;
}

.item:nth-child(5) {
    transition: right 0.3s 0.1s;
}

.item:nth-child(4) {
    transition: right 0.3s 0.2s;
}

.item:nth-child(3) {
    transition: right 0.3s 0.3s;
}

.item:nth-child(2) {
    transition: right 0.3s 0.4s;
}

.item:nth-child(1) {
    transition: right 0.3s 0.5s;
}


/* FINAL ABOUT-US */


/* 
.pricing-table {
   background-color: var(--white);
   padding: 60px 30px;
}

.pricing-table.active {
   background-color: var(--brand);
}

.pricing-table ul {
   list-style: none;
   padding: 0;
}

.pricing-table ul li {
   margin-top: 20px;
} */


/* BLOG */

#blogs {
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 10rem;
    z-index: 1;
}

.heading .blog-title {
    text-align: center;
    font-family: 'BebasNeueProBold';
    font-size: 6rem;
    color: var(--black);
}

.thumbnails:hover img {
    opacity: 0.6;
    transform: scale(0.92);
}

.thumbnails:hover img:hover {
    opacity: 1;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}

.blogs .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30%, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 2rem;
}

.blogs .box-container .box {
    position: relative;
}

.blogs .box-container .box:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blogs .box-container .box:hover .image .icons {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.blogs .box-container .box .image {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.blogs .box-container .box .image .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2rem;
    background: var(--black);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    -webkit-transform: translateY(10rem);
    transform: translateY(10rem);
}

.blogs .box-container .box .image .icons a {
    font-size: 1.5rem;
    color: var(--white);
}

.blogs .box-container .box .image .icons a i {
    padding-right: 5rem;
    color: var(--tertiary);
}

.blogs .box-container .box .image .icons a:hover {
    color: var(--tertiary);
}

.blogs .box-container .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blogs .box-container .box .content {
    text-align: center;
    padding: 2rem;
}

.blogs .box-container .box .content h3 {
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--white);
}

.blogs .box-container .box .content p {
    font-size: 2rem;
    line-height: 2;
    color: var(--gray);
    padding: 1.5rem 0;
}


/* BLOG */


/* FOOTER */

footer {
    background-image: url("../img/footer-wallpaper.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    justify-content: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#icon {
    width: 55px !important;
    height: auto !important;
}

.info-digital {
    display: flex;
    align-items: center;
}

.logo-footer {
    display: flex;
    width: 100%;
    object-fit: scale-down;
}

.mx-auto {
    display: flex;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.form-group-text {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 5px;
}

p {
    margin-bottom: 0 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    padding-top: 20px;
}

.footer-img {
    margin-right: auto;
    display: block;
    max-width: 100%;
    width: 50%;
    height: auto;
}

.footer-icon {
    display: flex;
    object-fit: scale-down;
    padding: 1rem 1rem 1rem 1rem;
}

footer p {
    color: #ADB3B9;
}

.footer-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--white);
    font-size: 1.5em;
    color: var(--white) !important;
    text-decoration-line: none !important;
}

.separe-fields {
    text-align: left;
    padding: 1rem 1rem 1rem 1rem;
}


/* FOOTER */


/* PAGE SERVICES */

.intro-company-ser {
    margin-top: 3rem;
}

.title-script,
.title-script-sc {
    color: var(--dark);
    font-family: 'retro-signature';
    margin-bottom: -2rem;
    font-size: 6rem;
    font-weight: normal !important;
    text-align: center;
}

.title-script-photo {
    color: var(--dark);
    font-family: 'retro-signature';
    margin-top: -10rem;
    margin-bottom: -2rem;
    font-size: 10rem;
    font-weight: normal !important;
    text-align: center;
}

.title-br-1,
.title-sc-1 {
    color: var(--dark);
    text-align: center;
}

.title-photo-1 {
    color: var(--quinary);
    text-align: center;
}

.title-br-2,
.title-sc-2 {
    color: var(--tertiary);
    margin-top: -2rem;
    text-align: center;
}

.text-branding,
.text-social {
    text-align: left;
}

.about-us-line {
    margin: 20px auto 0;
    display: table;
    width: auto;
    background: var(--quinary);
    padding: 5px 15px;
    border-radius: 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgb(0 0 0 / 12%), 0 5px 7px rgb(0 0 0 / 5%);
    cursor: pointer;
}

.about-us-line:hover {
    background: var(--secundary);
}

.line-inf {
    display: flex;
    align-items: center;
}

.text-line {
    font-size: 12px !important;
    margin: 0 !important;
}

.text-line:hover {
    color: var(--cuaternary);
}


/* Marketing */

.brandind {
    background-image: url('../img/svg/lines-blue-right.svg');
    background-size: contain;
    background-position-y: bottom;
    background-position-x: right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-bottom: 10rem;
    text-align: center;
}

.social {
    background-image: url('../img/svg/lines-blue-left.svg');
    background-size: contain;
    background-position-y: bottom;
    background-position-x: left;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-bottom: 10rem;
    text-align: center;
}

.photography {
    background-image: url('../img/svg/lines-blue-left.svg');
    background-size: contain;
    background-position-y: bottom;
    background-position-x: left;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-bottom: 10rem;
    text-align: center;
}

.marketing {
    background: var(--cuaternary);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    padding-bottom: 10rem;
    align-items: center;
    text-align: center;
}

.admin {
    background: var(--cuaternary);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    padding-bottom: 10rem;
    align-items: center;
    text-align: center;
}

.marketing::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/svg/lines-blue-left-white.svg');
    background-size: 40%;
    background-position-y: bottom;
    background-position-x: left;
    background-repeat: no-repeat;
    z-index: -1;
}

.admin::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/svg/lines-blue-left-white.svg');
    background-size: 40%;
    background-position-y: bottom;
    background-position-x: left;
    background-repeat: no-repeat;
    z-index: -1;
}

.integration {
    background: url('../img/degrade-wallpaper.png'), linear-gradient(to bottom, #1d003dab 0%, #270066e0 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 8rem;
    margin-bottom: 6rem;
    z-index: 2;
    display: flex;
    align-items: center;
    text-align: center;
}

.landing {
    background: url('../img/degrade-wallpaper.png'), linear-gradient(to bottom, #1d003dab 0%, #270066e0 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 10rem;
    z-index: 2;
    display: flex;
    align-items: center;
    text-align: center;
}

.landing::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/svg/lines-blue-right-white.svg');
    background-size: 40%;
    background-position-y: bottom;
    background-position-x: right;
    background-repeat: no-repeat;
    z-index: -1;
}

.integration::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/svg/lines-blue-right-white.svg');
    background-size: 40%;
    background-position-y: bottom;
    background-position-x: right;
    background-repeat: no-repeat;
    z-index: -1;
}

.title-script-mr,
.title-script-ld,
.title-script-ad {
    color: var(--white);
    font-family: 'retro-signature';
    margin-bottom: -2rem;
    font-size: 6rem;
    font-weight: normal !important;
    text-align: center;
}

.title-script-card {
    color: var(--dark);
    font-family: 'retro-signature';
    margin-bottom: -2rem;
    font-size: 6rem;
    font-weight: normal !important;
    text-align: center;
}

.title-script-blog {
    color: var(--dark);
    font-family: 'retro-signature';
    margin-bottom: -1rem;
    font-size: 6rem;
    font-weight: normal !important;
    text-align: center;
}

.title-script-ld {
    margin-top: -12rem;
}

.title-ld-1 {
    color: var(--white);
    text-align: center;
}

.title-google-1 {
    color: var(--quinary);
    text-align: center;
}

.title-mr-1 {
    color: var(--quinary);
    text-align: center;
}

.title-card-1 {
    color: var(--tertiary);
    text-align: center;
}

.title-ld-2 {
    color: var(--quinary);
    text-align: center;
    margin-top: -2rem;
}

.title-google-2 {
    color: var(--body);
    text-align: center;
    margin-top: -1.5rem;
}

.title-photo-2 {
    color: var(--dark);
    text-align: center;
    margin-top: -1.5rem;
    font-size: 3rem;
}

.text-marketing {
    color: var(--white);
    text-align: left;
}

.number-s {
    color: var(--quinary) !important;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 18px;
    width: 24px;
    line-height: 40px;
    z-index: 99;
    text-align: center;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
    -moz-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
    box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    color: #fff;
    background-color: var(--quinary);
}

.back-to-top:hover {
    color: var(--quinary);
    background-color: #fff;
}


/* END PAGE SERVICES */

.footerbottom_link {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    padding: 20px 0 15px 0;
}

footer .card .ul.list-inline {
    margin: 0;
}

.list-inline {
    display: flex;
}


/* BUTTON WHATSAPP */

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.nav-bottom {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-content: flex-end;
    width: auto;
    height: auto;
    position: fixed;
    z-index: 8;
    bottom: 0px;
    right: 0px;
    padding: 5px;
    margin: 0px;
}

@media (max-width: 360px) {
    .nav-bottom {
        width: 320px;
    }
}

.whatsapp-button {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 60px;
    height: 60px;
    z-index: 8;
    transition: 0.3s;
    margin: 10px;
    padding: 7px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    background-color: #fff;
    /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
    -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.circle-anime {
    display: flex;
    position: absolute;
    justify-content: center;
    align-content: center;
    width: 60px;
    height: 60px;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    transition: 0.3s;
    background-color: #77bb4a;
    animation: pulse 1.2s 4s ease 4;
}

.popup-whatsapp {
    display: none;
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    height: auto;
    padding: 10px;
    bottom: 85px;
    right: 6px;
    transition: 0.5s;
    border-radius: 10px;
    background-color: #fff;
    /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
    -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    animation: slideInRight 0.6s 0s both;
}

.popup-whatsapp>div {
    margin: 5px;
}

@media (max-width: 680px) {
    .popup-whatsapp p {
        font-size: 0.9em;
    }
}

.popup-whatsapp>.content-whatsapp.-top {
    display: flex;
    flex-direction: column;
}

.popup-whatsapp>.content-whatsapp.-top p {
    color: #585858;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 1em;
}

.popup-whatsapp>.content-whatsapp.-bottom {
    display: flex;
    flex-direction: row;
}

.closePopup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: 0px 0px 15px 0px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #f76060;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.closePopup:hover {
    background-color: #f71d1d;
    transition: 0.3s;
}

.send-msPopup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0px 0px 0px 5px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.send-msPopup:hover {
    background-color: #f8f8f8;
    transition: 0.3s;
}

.is-active-whatsapp-popup {
    display: flex;
    animation: slideInRight 0.6s 0s both;
}

input.whats-input[type=text] {
    width: 250px;
    height: 40px;
    box-sizing: border-box;
    border: 0px solid #fff;
    border-radius: 20px;
    font-size: 1em;
    background-color: #fff;
    padding: 0px 0px 0px 10px;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    outline: none;
    transition: 0.3s;
}

@media (max-width: 420px) {
    input.whats-input[type=text] {
        width: 225px;
    }
}

input.whats-input::placeholder {
    color: rgba(68, 68, 68, 0.705);
    opacity: 1;
}

input.whats-input[type=text]:focus {
    background-color: #f8f8f8;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    transition: 0.3s;
}

.icon-whatsapp-small {
    width: 24px;
    height: 24px;
}

.icon-whatsapp {
    width: 45px;
    height: 45px;
}

.icon-font-color {
    color: #fff;
}

.icon-font-color--black {
    color: #333;
}


/* BUTTON WHASAPP */


/* RESPONSIVE */

@media (max-width: 991px) {
    .line-border {
        border-bottom: 1px solid var(--white);
    }
}

@media (max-width: 992px) {
    .pos-icon {
        padding-left: 0 !important;
    }
    /* .logo-desing {
      width: 30%;
   } */
    .disposed {
        flex-wrap: wrap;
    }
    .text-planes {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .line-border {
        border-right: 1px solid var(--white);
    }
}

@media (min-width:180px) and (max-width:280px) {
    /*  .logo-desing {
      width: 65%;
   } */
}

@media (min-width:200px) and (max-width:450px) {
    /* .logo-desing {
      width: 50%;
   } */
}

@media (min-width:200px) and (max-width:766px) {
    .text-script {
        font-size: 5rem;
        margin-top: -2rem;
    }
    .title-services-s {
        font-size: 4rem;
        font-family: 'retro-signature';
        text-transform: lowercase !important;
        font-weight: normal !important;
    }
    .text-title {
        font-size: 3rem;
    }
    .title-card-1 {
        font-size: 4rem;
    }
    .title-services {
        font-size: 2.5rem;
    }
    .marketing::after,
    .admin::after {
        background-size: 70%;
    }
    .landing::after,
    .integration::after {
        background-size: 70%;
    }
    .title-script,
    .title-script-sc {
        font-size: 5rem;
        margin-bottom: -0.8rem;
        font-weight: normal !important;
        text-align: center;
    }
    .title-script-photo {
        font-size: 5rem;
        margin-bottom: -0.8rem;
        font-weight: normal !important;
        text-align: center;
    }
    .title-ld-1,
    .title-google-1 {
        font-size: 45px;
        text-align: center;
    }
    .title-br-1,
    .title-sc-1 {
        font-size: 30px;
        text-align: center;
    }
    .title-br-2,
    .title-sc-2 {
        margin-top: -1.5rem;
        font-size: 35px;
    }
    .text-line {
        font-size: 8.5px !important;
    }
    .text-branding,
    .text-social {
        text-align: left;
    }
    .title-script-mr,
    .title-script-ld,
    .title-script-ad {
        font-size: 4rem;
        margin-bottom: -0.8rem;
        font-weight: normal !important;
        text-align: center;
    }
    .title-mr-1 {
        font-size: 35px;
        text-align: center;
    }
    .title-ld-2 {
        font-size: 50px !important;
        margin-top: -1.6rem;
        text-align: center;
    }
    .title-google-2 {
        font-size: 25px !important;
        margin-top: -1.4rem;
        text-align: center;
    }
    .title-photo-2 {
        font-size: 2rem !important;
        margin-top: -1.4rem;
        text-align: center;
    }
    .title-photo-1 {
        font-size: 2rem !important;
    }
    .landing {
        background-position-x: center;
    }
    .blogs .box-container .box .image {
        height: 100%;
    }
    .blogs .box-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(100%, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        gap: 2rem;
    }
    #contact {
        flex-direction: column;
    }
    h1,
    .h1 {
        font-size: calc(1.375rem + 5.5vw);
    }
    .contact-form {
        border-radius: 40px 40px 0px 0px;
    }
    .contact-img {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
    .contact-img-responsive {
        padding-top: 15rem;
        display: flex;
        width: 100%;
        object-fit: scale-down;
        background-image: url('../img/svg/lines-blue-left.svg'), url('../img/svg/line-down.svg');
        background-size: contain, 20%;
        background-position-y: bottom, center;
        background-position-x: left, center;
        background-repeat: no-repeat, no-repeat;
        display: flex;
        align-items: center;
        text-align: center;
    }
}

@media (min-width: 2000px) {
    .card .image img {
        width: 55% !important;
    }
}

@media (min-width: 1700px) and (max-width: 2000px) {
    .card .image img {
        width: 60%;
    }
}

@media (min-width: 1400px) and (min-width: 1700px) {
    .card .image img {
        width: 80%;
    }
}

@media (min-width: 767px) and (max-width:991px) {
    .card .image img {
        width: 45% !important;
    }
}

@media (min-width:450px) and (max-width:766px) {
    /*  .logo-desing {
      width: 40%;
   } */
    .card .image img {
        width: 55%;
    }
}

@media (min-width:400px) and (max-width:991px) {
    .card .image img {
        width: 80%;
    }
    .style-card {
        padding-bottom: calc(var(--bs-gutter-x) * .5) !important;
        padding-top: calc(var(--bs-gutter-x) * .5) !important;
    }
}

@media (min-width:200px) and (max-width:450px) {
    .title-plans-sript {
        font-size: 5rem;
    }
    .footer-text {
        font-size: 1rem;
    }
    .style-card {
        padding-bottom: calc(var(--bs-gutter-x) * .5) !important;
        padding-top: calc(var(--bs-gutter-x) * .5) !important;
    }
    .img-circle {
        width: auto !important;
        height: auto !important;
    }
    .flag-icon {
        top: -50px;
        right: -30px;
        width: 115px;
    }
    #customers-testimonials .shadow-effect p,
    #customers-testimonials-s .shadow-effect p {
        height: auto !important;
    }
}

@media (min-width:0px) and (max-width:991px) {
    .navbar-dark .navbar-nav .nav-link.active {
        color: var(--white);
        border-radius: 0;
        background-color: transparent;
    }
    .navbar {
        transition: background 0.5s ease, padding .2s ease;
        padding-bottom: 1vh;
        padding-top: 1vh;
    }
}


/* loading */

#lastray {
    margin: auto;
    border-radius: 100%;
    border: 0px solid;
    border-color: var(--ray-color);
    opacity: 1;
    width: 0px;
    height: 0px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

#loading-page {
    background: var(--back-color);
    border-radius: 100%;
    top: 50%;
    left: 50vw;
    align-items: center;
    justify-content: center;
    display: flex;
    transform: translate(-50%, -50%);
    z-index: 10000;
    height: 400%;
    width: 400%;
    position: fixed;
    overflow: hidden;
    transition-duration: 1s;
}

#loader {
    margin: auto;
    width: 100%;
    z-index: 1;
    height: 100%;
    max-width: 200px;
    position: absolute;
    max-height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

.element {
    margin: auto;
    position: absolute;
}

.sphere {
    background: radial-gradient(circle, var(--main-color), var(--main-color-dark));
    width: 50px;
    height: 50px;
    border-radius: 100%;
    animation: pump 4s infinite ease-in-out;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    box-shadow: 0px 0px 15px 0px rgba(200, 230, 255, 0.5);
}

.ray {
    margin: auto;
    border-radius: 100%;
    border: 5px solid;
    border-color: var(--ray-color);
    opacity: 1;
    width: 10px;
    height: 10px;
    animation: ray 4s infinite ease-out;
    animation-delay: 2.5s;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    box-shadow: 0px 0px 15px 0px rgba(255, 230, 200, 0.5);
}

.spark {
    width: 200px;
    height: 200px;
}

.particles {
    transform: translate(-50%, -50%);
}

.particle {
    background-color: var(--spark-color);
    width: 5px;
    height: 5px;
    border-radius: 100%;
    opacity: 0;
    animation: particle 1s infinite ease-in;
    left: 0%;
    top: 0%;
}

.spark1 {
    transform: rotate(20deg);
}

.spark2 {
    transform: rotate(40deg);
}

.spark3 {
    transform: rotate(66deg);
}

.spark4 {
    transform: rotate(172deg);
}

.spark5 {
    transform: rotate(110deg);
}

.spark6 {
    transform: rotate(130deg);
}

.spark7 {
    transform: rotate(-100deg);
}

.spark8 {
    transform: rotate(-50deg);
}

.spark9 {
    transform: rotate(-80deg);
}

.spark10 {
    transform: rotate(-173deg);
}

.spark11 {
    transform: rotate(-7deg);
}

.spark12 {
    transform: rotate(-133deg);
}

.particle1 {
    animation-delay: .5s;
}

.particle2 {
    animation-delay: 0s;
}

.particle3 {
    animation-delay: 2.2s;
}

.particle4 {
    animation-delay: .2s;
}

.particle5 {
    animation-delay: 2s;
}

.particle6 {
    animation-delay: 1.2s;
}

.particle7 {
    animation-delay: 2.5s;
}

.particle8 {
    animation-delay: 1.5s;
}

.particle9 {
    animation-delay: 1s;
}

.particle10 {
    animation-delay: 2.5s;
}

.particle11 {
    animation-delay: .7s;
}

.particle12 {
    animation-delay: 1.7s;
}

.loaded {
    width: 0px !important;
    height: 0px !important;
    transition: 1.2s ease-out;
}

.whitebk {
    background: #fff !important;
}

.opzero {
    opacity: 0;
    transition: 1s ease-out;
}

.finalray {
    animation: ray 2s ease-out;
    animation-delay: .3s;
    border: 1px solid;
}


/*ANIMATIONS*/


/* MODAL */

.img-modal {
    height: 3rem;
}

.modal-footer {
    justify-content: space-around;
}

.modal-dialog {
    margin-top: 0;
    margin-bottom: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-content {
    border-radius: 2rem !important;
}

.modal-body {
    height: auto;
    max-height: 50vh;
    overflow-y: auto;
}

.btn-danger {
    border-color: var(--tertiary) !important;
    background-color: var(--tertiary) !important;
}


/* MODAL */

@keyframes pump {
    0% {
        width: 50px;
        height: 50px;
    }
    83% {
        width: 88px;
        height: 88px;
    }
    85% {
        width: 90px;
        height: 90px;
    }
    100% {
        width: 50px;
        height: 50px;
    }
}

@keyframes ray {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
        border-width: 1px;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
        border-width: 5px;
    }
}

@keyframes particle {
    0% {
        left: 0%;
        top: 0%;
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    100% {
        left: 50%;
        top: 50%;
        opacity: 1;
    }
}


/* end loading */

.pagination {
    position: absolute !important;
    width: 100%;
    text-align: center;
    right: 0;
    padding: 0 !important;
    bottom: 3rem;
    z-index: 999;
}

.pagination__item {
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    font-size: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    margin: 0 5px;
    transition: 0.2s ease-in-out;
}

.pagination__item.is-current,
.pagination__item:hover {
    background-color: #fff;
}

.container {
    position: relative;
    margin: 0 auto;
}

@media (max-width: 699px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (min-width: 700px) and (max-width: 1599px) {
    .container {
        padding-right: 3.5rem;
        padding-left: 3.5rem;
        max-width: 140rem;
    }
}

@media (min-width: 1600px) {
    .container {
        padding-right: 5.5625rem;
        padding-left: 5.5625rem;
        max-width: 144.125rem;
    }
}

.background-absolute {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: left;
    background-size: cover;
}

.slideshow {
    position: relative;
    color: #fff;
    background-color: #1e1e22;
    overflow: hidden;
    height: 100vh;
    min-height: 400px;
}

.slideshow__slide {
    visibility: hidden;
    transition: visibility 0s 1.7s;
}

.slideshow__slide.is-current {
    visibility: visible;
    transition-delay: 0s;
}

@media (max-width: 699px) {
    .slideshow .slideshow__slide {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

@media (min-width: 700px) {
    .slideshow .slideshow__slide {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

.slideshow__slide-background-load-wrap {
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate3d(0, 100%, 0);
    overflow: hidden;
}

@media (min-width: 1200px) {
    .o-scroll {
        height: 100%;
    }
}

.is-loaded .slideshow__slide-background-load-wrap {
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
}

.slideshow__slide.is-prev .slideshow__slide-background-parallax,
.slideshow__slide.is-next .slideshow__slide-background-parallax {
    transform: none !important;
}

.slideshow__slide.is-prev-section .slideshow__slide-background-parallax,
.slideshow__slide.is-next-section .slideshow__slide-background-parallax {
    transform: none !important;
}

.slideshow__slide-background-load {
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate3d(0, -50%, 0);
}

.is-loaded .slideshow__slide-background-load {
    transform: translate3d(0, 0, 0);
}

.slideshow__slide-background-wrap {
    transition: -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.slideshow__slide.is-next .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.slideshow__slide.is-prev-section .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    transition: none;
}

.slideshow__slide.is-next-section .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    transition: none;
}

.slideshow__slide-background {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
    transform: scale(1);
    overflow: hidden;
}

.slideshow__slide.is-prev .slideshow__slide-background,
.slideshow__slide.is-next .slideshow__slide-background {
    transform: scale(0.5);
    transition-delay: 0s;
}

.slideshow__slide.is-prev-section .slideshow__slide-background,
.slideshow__slide.is-next-section .slideshow__slide-background {
    transform: scale(0.5);
    transition-delay: 0s;
    transition: none;
}

.slideshow__slide-image-wrap {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
    transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-image-wrap {
    transform: translate3d(0, 50%, 0);
}

.slideshow__slide-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
    transform: scale(1);
}

.slideshow__slide.is-prev .slideshow__slide-image,
.slideshow__slide.is-next .slideshow__slide-image {
    transform: scale(1.25);
    transition-delay: 0s;
}

.slideshow__slide.is-prev-section .slideshow__slide-image,
.slideshow__slide.is-next-section .slideshow__slide-image {
    transform: scale(1.25);
    transition-delay: 0s;
    transition: none;
}


/* .slideshow__slide-image::before, .slideshow__slide-image::after {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   opacity: 0.35;
} */


/* .slideshow__slide-image::before {
   background-color: #1e1e22;
} */


/* .slideshow__slide-image::after {
   background: linear-gradient(to bottom, transparent 0%, #1e1e22 100%);
} */

.slideshow__slide.is-prev .slideshow_container,
.slideshow__slide.is-next .slideshow_container {
    transform: none !important;
}

.slideshow__slide.is-prev-section .slideshow_container,
.slideshow__slide.is-next-section .slideshow_container {
    transform: none !important;
}

.slideshow__slide-caption-text {
    position: relative;
    height: 100%;
    padding-top: 25vh;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-caption-text {
    transform: translate3d(0, -100%, 0);
}

.slideshow__slide.is-next .slideshow__slide-caption-text {
    transform: translate3d(0, 100%, 0);
}

.slideshow__slide.is-prev-section .slideshow__slide-caption-text {
    transform: translate3d(0, -100%, 0);
    transition: none;
}

.slideshow__slide.is-next-section .slideshow__slide-caption-text {
    transform: translate3d(0, 100%, 0);
    transition: none;
}

.slideshow__slide-caption {
    position: relative;
    height: 100%;
    transform: translate3d(0, 100%, 0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.is-loaded .slideshow__slide-caption {
    transform: translate3d(0, 0, 0);
}

.slideshow__slide-caption-title {
    line-height: 1;
}

@media (max-height: 500px) {
    .slideshow__slide-caption-title {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 699px) {
    .slideshow__slide-caption-title {
        font-size: 40px;
        margin-bottom: 150px;
    }
    .slideshow.-full .slideshow__slide-caption-title {
        margin-bottom: 30px;
    }
    .slideshow__slide-caption-text {
        padding-top: 33vh;
    }
}

@media (min-width: 700px) {
    .slideshow__slide-caption-title {
        font-size: 5.625rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 700px) and (max-width: 749px) {
    .slideshow__slide-caption-title {
        font-size: 4.375rem;
    }
}

@media (min-width: 1600px) {
    .slideshow__slide-caption-title {
        font-size: 6.25rem;
    }
}

.slideshow__slide-caption-title.-full {
    width: 100%;
}

.slideshow__slide-caption-subtitle {
    display: inline-block;
    padding: 1.875rem 0;
}

.slideshow__slide-caption-subtitle.-load {
    transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -webkit-transform: translate3d(0, 3.75rem, 0);
    transform: translate3d(0, 3.75rem, 0);
}

.is-loaded .slideshow__slide-caption-subtitle.-load {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .slideshow__slide-caption-subtitle.-load,
body[data-route-option="next-section"] .slideshow__slide-caption-subtitle.-load {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slideshow__slide-caption-subtitle-label {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    display: inline-block;
}

.o-hsub.-link:hover .slideshow__slide-caption-subtitle-label,
.o-hsub-wrap:hover .slideshow__slide-caption-subtitle-label {
    transform: translateX(20px);
}


/* OLD */

.c-header-home_heading {
    line-height: 1;
}

@media (max-height: 500px) {
    .c-header-home_heading {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 699px) {
    .c-header-home_heading {
        font-size: 40px;
        margin-bottom: 150px;
    }
    .c-header-home.-full .c-header-home_heading {
        margin-bottom: 30px;
    }
}

@media (min-width: 700px) {
    .c-header-home_heading {
        font-size: 5.625rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 700px) and (max-width: 749px) {
    .c-header-home_heading {
        font-size: 4.375rem;
    }
}

@media (min-width: 1600px) {
    .c-header-home_heading {
        font-size: 6.25rem;
    }
}

.c-header-home_heading.-full {
    width: 100%;
}

.c-header-home_subheading {
    display: inline-block;
    padding: 1.875rem 0;
}

.c-header-home_subheading.-load {
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transform: translate3d(0, 3.75rem, 0);
}

.is-loaded .c-header-home_subheading.-load {
    transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .c-header-home_subheading.-load,
body[data-route-option="next-section"] .c-header-home_subheading.-load {
    transform: translate3d(0, 0, 0);
}

.c-header-home_footer {
    z-index: 3;
    position: absolute;
    right: 0;
    bottom: 3rem;
    left: 0;
}

.c-header-home_controls,
.c-header-home_buttons {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
    transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

@media (max-width: 699px) {
    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 40px;
    }
}

@media (min-width: 700px) {
    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 5.625rem;
    }
}

@media (min-width: 700px) and (max-width: 749px) {
    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 3.75rem;
    }
}

.is-loaded .c-header-home_controls,
.is-loaded .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .c-header-home_controls,
body[data-route-option="prev-section"] .c-header-home_buttons,
body[data-route-option="next-section"] .c-header-home_controls,
body[data-route-option="next-section"] .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.c-header-home_controls {
    transition-delay: 0.65s;
}

@media (min-width: 700px) {
    .c-header-home_controls {
        float: left;
    }
}

.c-header-home_buttons {
    transition-delay: 0.75s;
}

@media (max-width: 699px) {
    .c-header-home_buttons {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (min-width: 1000px) {
    .c-header-home_buttons {
        float: right;
    }
}

@media (max-width: 699px) {
    .c-header-home_button {
        width: 50% !important;
    }
    .text-header {
        width: 100%;
    }
    .text-header-2 {
        width: 100%;
    }
    .text-header-3 {
        width: 100%;
    }
}

@media (min-width: 700px) {
    .c-header-home_button {
        width: 15.625rem;
    }
}

button,
.c-header-filters_button,
.o-button {
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    background: none;
    color: inherit;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    font: inherit;
    line-height: normal;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button:hover,
.c-header-filters_button:hover,
.o-button:hover {
    text-decoration: none;
}

::-moz-selection {
    background: #0084c0;
    color: #fff;
}

::selection {
    background: #0084c0;
    color: #fff;
}

img,
svg {
    max-width: 100%;
}


/* a, .o-link {
   color: #1a0dab;
   transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} */


/* a:hover, .o-link:hover {
   color: #13097c;
} */

a.-normal,
.o-link.-normal {
    color: currentColor;
    text-decoration: none;
}

a.-normal:hover,
.o-link.-normal:hover {
    text-decoration: underline;
}

a.-blue:hover,
.o-link.-blue:hover {
    text-decoration: none;
    color: #0084c0;
}

a.-hover,
.o-link.-hover {
    position: relative;
    text-decoration: none;
    color: #fff;
}

a.-hover::after,
.o-link.-hover::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    border-bottom: 1px solid;
    transform: scaleX(0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center left;
}

a.-hover:hover::after,
.o-link.-hover:hover::after {
    transform: scaleX(1);
}

p {
    margin: 0;
}

.o-wrap {
    overflow: hidden;
}

.o-page.-anim {
    transform: translate3d(0, 9.375rem, 0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-loaded .o-page.-anim {
    transform: translate3d(0, 0, 0);
}

.o-barba,
.o-barba_container {
    height: 100%;
}

strong {
    font-weight: 700;
}

.js-parallax {
    transform: translateZ(0);
    will-change: transform;
}

.scroll-content {
    overflow: hidden;
}

.o-blockquote.-nomargin {
    margin: 0;
}

.o-action-link {
    display: block;
    padding-top: 12.8125rem;
    padding-bottom: 7.5rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 699px) {
    .o-action-link {
        font-size: 40px;
        padding-top: 120px;
    }
}

@media (max-width: 1199px) {
    .o-action-link {
        color: #1e1e22;
    }
}

@media (min-width: 700px) {
    .o-action-link {
        font-size: 5.625rem;
    }
}

@media (min-width: 1200px) {
    .o-action-link {
        color: #fff;
    }
}

.o-action-link:hover {
    color: #fff;
}

.o-action-link_label {
    display: inline-block;
    position: relative;
}

.o-action-link_label::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 0.1875rem solid;
    transform: scaleX(0);
    transform-origin: center left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-action-link:hover .o-action-link_label::after {
    transform: scaleX(1);
}

.o-h,
h1,
.o-h1,
h2,
.o-h2,
h3,
.o-h3,
h4,
.o-h4,
h5,
.o-h5,
h6,
.o-h6 {
    font-weight: 700;
    margin-top: 0;
    line-height: 1.1;
}

@media (max-width: 699px) {
    h1,
    .o-h1 {
        font-size: 24px;
    }
}

@media (min-width: 700px) {
    h1,
    .o-h1 {
        font-size: 55px;
    }
}

@media (min-width: 1600px) {
    h1,
    .o-h1 {
        font-size: 4.375rem;
    }
}

@media (max-width: 1599px) {
    h2,
    .o-h2 {
        font-size: 1.5625rem;
    }
}

@media (min-width: 1600px) {
    h2,
    .o-h2 {
        font-size: 2.25rem;
    }
}

h3,
.o-h3 {
    font-size: 1.5625rem;
}

h4,
.o-h4 {
    font-size: 1rem;
}

h5,
.o-h5 {
    font-size: 0.8125rem;
}

h6,
.o-h6 {
    font-size: 0.6875rem;
}

.o-hsub {
    font-size: 0.75rem;
    padding: 1.25rem 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.o-hsub::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border-bottom: 1px solid;
    width: 1.5rem;
    background-color: #1e1e22;
    margin-right: 1.125rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center left;
}

.o-hsub.-link {
    color: #fff;
    text-decoration: none;
}

.o-hsub.-link:hover::before,
.o-hsub-wrap:hover .o-hsub.-link::before {
    transform: scaleX(1.5);
}

.o-hsub.-link.-dark {
    color: #1e1e22;
}

.o-hsub.-link.-dark:hover {
    color: #1e1e22;
}

.o-hsub.-h {
    vertical-align: middle;
}

@media (max-width: 699px) {
    .o-hsub.-h {
        display: block;
        margin-top: 20px;
    }
}

@media (min-width: 700px) {
    .o-hsub.-h {
        margin-left: 2.5rem;
    }
}

.o-hsub_label {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    display: inline-block;
}

.o-hsub.-link:hover .o-hsub_label,
.o-hsub-wrap:hover .o-hsub_label {
    transform: translateX(20px);
}

.is-loaded .o-loader {
    visibility: hidden;
    transition-delay: 0.6s;
}

.o-container {
    position: relative;
    margin: 0 auto;
}

@media (max-width: 699px) {
    .o-container {
        padding-right: 40px;
        padding-left: 40px;
    }
    .o-container.-small {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (min-width: 700px) and (max-width: 1599px) {
    .o-container {
        padding-right: 7.5rem;
        padding-left: 7.5rem;
        max-width: 140rem;
    }
}

@media (min-width: 1600px) {
    .o-container {
        padding-right: 9.5625rem;
        padding-left: 9.5625rem;
        max-width: 144.125rem;
    }
}

.o-section {
    position: relative;
}

.o-section.-offset {
    margin-top: -9.375rem;
    background-color: #f6f6f6;
}

.o-section.-padding {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

.o-section.-padding-top {
    padding-top: 7.5rem;
}

@media (max-width: 699px) {
    .o-section.-bottom {
        padding-bottom: 60px;
    }
}

@media (min-width: 700px) {
    .o-section.-bottom {
        padding-bottom: 7.5rem;
    }
}

.o-section.-left {
    margin-right: 15rem;
}

.o-section.-right {
    margin-left: 15rem;
}

.o-section.-left-large {
    margin-right: 22.5rem;
}

.o-section.-right.-padding {
    padding-left: 9.5625rem;
}

.o-section_image {
    position: relative;
    overflow: hidden;
}

.o-section_image.-small {
    padding-bottom: 57.144%;
}

.o-section_image.-large {
    padding-bottom: 55%;
}

.o-section_image.-padding-left {
    margin-left: 7.5rem;
}

.o-section_image.-left {
    margin-right: 15rem;
}

@media (max-width: 1599px) {
    .o-section_image.-left {
        margin-left: -7.5rem;
    }
}

@media (min-width: 1600px) {
    .o-section_image.-left {
        margin-left: -9.5625rem;
    }
}

.o-section_image.-right {
    margin-left: 15rem;
}

@media (max-width: 1599px) {
    .o-section_image.-right {
        margin-right: -7.5rem;
    }
}

@media (min-width: 1600px) {
    .o-section_image.-right {
        margin-right: -9.5625rem;
    }
}

.o-section_image img {
    width: 100%;
}

.o-grid {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
}

.o-grid.-margin {
    margin-left: -3.75rem;
}

.o-grid_item {
    display: inline-block;
    padding-left: 0;
    width: 100%;
    vertical-align: top;
    font-size: 1rem;
}

@media (max-width: 699px) {
    .o-grid_item.-button {
        width: 100%;
    }
    .img-2-slideshow {
        background-position: center !important;
    }
    .img-2-slideshow::after {
        background: url('../img/svg/line-effect.svg'), linear-gradient(to bottom, #1d003dab 0%, #270066e0 100%);
        background-size: 50%, cover;
        background-position-y: bottom, center;
        background-position-x: right, center;
        background-repeat: no-repeat, no-repeat;
        z-index: -1;
    }
    .img-3-slideshow {
        background-position: center !important;
    }
    .img-3-slideshow::after {
        background: url('../img/svg/line-effect.svg'), linear-gradient(to bottom, #1d003dab 0%, #270066e0 100%);
        background-size: 50%, cover;
        background-position-y: bottom, center;
        background-position-x: right, center;
        background-repeat: no-repeat, no-repeat;
        z-index: -1;
    }
}

@media (min-width: 700px) and (max-width: 999px) {
    .o-grid_item.-button {
        margin-bottom: 60px;
    }
}

@media (min-width: 1000px) {
    .o-grid_item.-button {
        width: 18.75rem;
    }
}

@media (min-width: 768px) and (max-width: 1168px) {
    .navbar-dark .navbar-nav .nav-link {
        font-size: 8px;
    }
}

@media (max-width: 699px) {
    .o-grid_item.-button-content {
        margin-bottom: 30px;
    }
}

@media (min-width: 700px) and (max-width: 999px) {
    .o-grid_item.-button-content {
        margin-bottom: 60px;
    }
}

@media (min-width: 1000px) {
    .o-grid_item.-button-content {
        width: calc(100% - 18.75rem);
    }
}

.o-grid.-margin .o-grid_item {
    padding-left: 3.75rem;
}

@media (min-width: 700px) {
    .o-grid_item.-half {
        width: 50%;
    }
}

@media (min-width: 700px) and (max-width: 1199px) {
    .o-grid_item.-half.-large {
        width: 100%;
    }
}

@media (min-width: 700px) and (max-width: 999px) {
    .o-grid_item.-half.-medium {
        width: 100%;
    }
}

@media (min-width: 700px) and (max-width: 1199px) {
    .o-grid_item.-third {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .o-grid_item.-third {
        width: 33.3333333333%;
    }
}

.o-form {
    padding-bottom: 11.25rem;
}

@media (max-width: 699px) {
    .o-form_item {
        margin-bottom: 35px;
    }
}

@media (min-width: 700px) {
    .o-form_item {
        margin-bottom: 2.9375rem;
    }
}

.o-form_fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

@media (max-width: 699px) {
    .o-form_fieldset {
        margin-bottom: 20px;
    }
}

@media (min-width: 700px) {
    .o-form_fieldset {
        margin-bottom: 3.75rem;
    }
}

.o-form_button {
    text-align: right;
}

.o-label {
    display: block;
    height: 100%;
    color: #b3b3b3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.875rem;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
    .o-label {
        font-size: 9px;
    }
}

@media (min-width: 700px) {
    .o-label {
        font-size: 0.5625rem;
    }
}

.o-input-wrap .o-label {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-input:focus~.o-label,
.o-select:focus~.o-label,
.o-textarea:focus~.o-label,
.o-label.is-active {
    -webkit-transform: translateY(-1.875rem);
    -ms-transform: translateY(-1.875rem);
    transform: translateY(-1.875rem);
}

.o-input.has-error~.o-label,
.has-error.o-select~.o-label,
.has-error.o-textarea~.o-label {
    color: #cc3d3d;
}

.o-input-wrap {
    position: relative;
}

.o-input,
.o-select,
.o-textarea {
    padding: 0.875rem;
    background-color: transparent;
    border-bottom: 1px solid #b3b3b3;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
    .o-input,
    .o-select,
    .o-textarea {
        font-size: 14px;
    }
}

@media (min-width: 700px) {
    .o-input,
    .o-select,
    .o-textarea {
        font-size: 0.875rem;
    }
}

.o-input::-webkit-input-placeholder,
.o-select::-webkit-input-placeholder,
.o-textarea::-webkit-input-placeholder {
    color: #b3b3b3;
}

.o-input:-ms-input-placeholder,
.o-select:-ms-input-placeholder,
.o-textarea:-ms-input-placeholder {
    color: #b3b3b3;
}

.o-input::placeholder,
.o-select::placeholder,
.o-textarea::placeholder {
    color: #b3b3b3;
}

.o-input.-search,
.-search.o-select,
.-search.o-textarea {
    background-color: transparent;
    color: #fff;
    font-weight: 700;
    border-bottom: none;
}

@media (max-width: 699px) {
    .o-input.-search,
    .-search.o-select,
    .-search.o-textarea {
        font-size: 26px;
    }
}

@media (min-width: 700px) {
    .o-input.-search,
    .-search.o-select,
    .-search.o-textarea {
        font-size: 3.75rem;
    }
}

.o-input.-search::-webkit-input-placeholder,
.-search.o-select::-webkit-input-placeholder,
.-search.o-textarea::-webkit-input-placeholder {
    color: #000;
}

.o-input.-search:-ms-input-placeholder,
.-search.o-select:-ms-input-placeholder,
.-search.o-textarea:-ms-input-placeholder {
    color: #000;
}

.o-input.-search::placeholder,
.-search.o-select::placeholder,
.-search.o-textarea::placeholder {
    color: #000;
}

.-mobile .o-input.-search,
.-mobile .-search.o-select,
.-mobile .-search.o-textarea {
    font-size: 26px;
    padding: 0;
}

.o-input.-search.-light,
.-search.-light.o-select,
.-search.-light.o-textarea {
    color: #1e1e22;
}

.o-input.-search.-light::-webkit-input-placeholder,
.-search.-light.o-select::-webkit-input-placeholder,
.-search.-light.o-textarea::-webkit-input-placeholder {
    color: #b3b3b3;
}

.o-input.-search.-light:-ms-input-placeholder,
.-search.-light.o-select:-ms-input-placeholder,
.-search.-light.o-textarea:-ms-input-placeholder {
    color: #b3b3b3;
}

.o-input.-search.-light::placeholder,
.-search.-light.o-select::placeholder,
.-search.-light.o-textarea::placeholder {
    color: #b3b3b3;
}

.o-input.has-error,
.has-error.o-select,
.has-error.o-textarea {
    border-color: #cc3d3d;
}

.o-input:focus,
.o-select:focus,
.o-textarea:focus {
    outline: none;
}

.o-input-line {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #1e1e22;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.o-input:focus~.o-input-line,
.o-select:focus~.o-input-line,
.o-textarea:focus~.o-input-line {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.o-input-lines::before,
.o-input-lines::after {
    content: "";
    position: absolute;
    bottom: 0;
    border-right: 1px solid #b3b3b3;
    height: 0.375rem;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-input.has-error~.o-input-lines::before,
.has-error.o-select~.o-input-lines::before,
.has-error.o-textarea~.o-input-lines::before,
.o-input.has-error~.o-input-lines::after,
.has-error.o-select~.o-input-lines::after,
.has-error.o-textarea~.o-input-lines::after {
    border-color: #cc3d3d;
}

.o-input-lines::before {
    left: 0;
    transition-delay: 0.3s;
}

.o-input-lines::after {
    right: 0;
}

.o-input:focus~.o-input-lines::before,
.o-select:focus~.o-input-lines::before,
.o-textarea:focus~.o-input-lines::before,
.o-input:focus~.o-input-lines::after,
.o-select:focus~.o-input-lines::after,
.o-textarea:focus~.o-input-lines::after {
    border-color: #1e1e22;
}

.o-input:focus~.o-input-lines::before,
.o-select:focus~.o-input-lines::before,
.o-textarea:focus~.o-input-lines::before {
    transition-delay: 0s;
}

.o-input:focus~.o-input-lines::after,
.o-select:focus~.o-input-lines::after,
.o-textarea:focus~.o-input-lines::after {
    transition-delay: 0.3s;
}

.o-checkbox,
.o-radio {
    position: absolute;
    width: 0;
    opacity: 0;
}

.o-checkbox:checked+.o-checkbox-label::after,
.o-radio:checked+.o-checkbox-label::after,
.o-checkbox:checked+.o-radio-label::after,
.o-radio:checked+.o-radio-label::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.o-checkbox-label,
.o-radio-label {
    position: relative;
    display: inline-block;
    margin-right: 0.5em;
    line-height: 1.4;
    margin-right: 4.0625rem;
    cursor: pointer;
    padding-top: 0.125rem;
}

@media (max-width: 699px) {
    .o-checkbox-label,
    .o-radio-label {
        font-size: 12px;
        padding-left: 27px;
    }
}

@media (min-width: 700px) {
    .o-checkbox-label,
    .o-radio-label {
        font-size: 0.875rem;
        padding-left: 1.1875rem;
    }
}

.o-checkbox-label.-uppsercase,
.-uppsercase.o-radio-label {
    text-transform: uppercase;
}

.o-checkbox-label::before,
.o-radio-label::before,
.o-checkbox-label::after,
.o-radio-label::after {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    padding: 0;
    content: "";
    border: 1px solid;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
    .o-checkbox-label::before,
    .o-radio-label::before,
    .o-checkbox-label::after,
    .o-radio-label::after {
        width: 12px;
        height: 12px;
        margin-top: -6px;
    }
}

@media (min-width: 700px) {
    .o-checkbox-label::before,
    .o-radio-label::before,
    .o-checkbox-label::after,
    .o-radio-label::after {
        margin-top: -0.28125rem;
        width: 0.5625rem;
        height: 0.5625rem;
    }
}

.o-checkbox-label::after,
.o-radio-label::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #1e1e22 transparent transparent transparent;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
    .o-checkbox-label::after,
    .o-radio-label::after {
        border-width: 12px 12px 0 0;
    }
}

@media (min-width: 700px) {
    .o-checkbox-label::after,
    .o-radio-label::after {
        border-width: 0.5625rem 0.5625rem 0 0;
    }
}

.o-checkbox-label.has-error::before,
.has-error.o-radio-label::before {
    border-color: #cc3d3d;
}

.o-checkbox-label_text {
    display: inline-block;
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.o-checkbox-label:hover .o-checkbox-label_text,
.o-radio-label:hover .o-checkbox-label_text {
    -webkit-transform: translateX(0.3125rem);
    -ms-transform: translateX(0.3125rem);
    transform: translateX(0.3125rem);
}

.o-radio-label::before,
.o-radio-label::after {
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.o-radio-label::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E");
    background-size: 6px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.o-radio:checked+.o-radio-label::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.o-select {
    position: relative;
    z-index: 1;
    padding-right: 2.5rem;
}

.o-select:focus {
    border-bottom-color: #1e1e22;
}

.o-select-wrap {
    position: relative;
}

.o-select-wrap::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23b3b3b3%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E");
    background-position: center;
    background-size: 10px;
    background-repeat: no-repeat;
    content: "";
    pointer-events: none;
}

.o-textarea-wrap {
    position: relative;
}

.o-textarea {
    min-height: 9.375rem;
}

.o-button {
    position: relative;
    display: inline-block;
    text-align: center;
    border: 1px solid #1e1e22;
    white-space: nowrap;
    font-size: 0;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button:before {
    display: inline-block;
    height: 100%;
    content: "";
    vertical-align: middle;
}

.o-button &gt;
* {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    font-size: 1rem;
}

@media (max-width: 699px) {
    .o-button {
        height: 50px;
        padding: 0 20px;
    }
}

@media (min-width: 700px) {
    .o-button {
        height: 3.75rem;
        padding: 0 1.875rem;
    }
}

.o-button::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1e1e22;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s, -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button:hover {
    color: #fff;
    transition-delay: 0s;
}

.o-button:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    transition-delay: 0s;
}

@media (min-width: 1200px) {
    .o-button.-anim {
        border-color: transparent;
    }
}

.o-button.-left::after {
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}

.o-button.-white {
    border-color: #fff;
}

.o-button.-white::after {
    background-color: #fff;
}

.o-button.-white:hover {
    color: #000;
}

@media (max-width: 699px) {
    .o-button.-width {
        width: 100%;
    }
}

@media (min-width: 700px) {
    .o-button.-width {
        width: 15rem;
    }
}

.o-button.-form {
    width: 11.25rem;
}

.o-button.-form:focus {
    color: #fff;
    transition-delay: 0s;
}

.o-button.-form:focus::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    transition-delay: 0s;
}

.o-button.-square {
    padding: 0;
}

@media (max-width: 699px) {
    .o-button.-square {
        width: 50px;
    }
}

@media (min-width: 700px) {
    .o-button.-square {
        width: 3.75rem;
    }
}

.o-button-group .o-button+.o-button {
    border-left: none;
}

@media (max-width: 699px) {
    .o-button.-padding {
        padding: 1.25rem;
    }
}

@media (min-width: 700px) {
    .o-button.-padding {
        padding: 1.25rem 2.5rem;
    }
}

.o-button_label {
    display: inline-block;
    position: relative;
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    line-height: 1.4;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    font-size: 0.75rem;
}

.o-button:hover .o-button_label {
    -webkit-transform: translateX(0.5rem);
    -ms-transform: translateX(0.5rem);
    transform: translateX(0.5rem);
    transition-delay: 0.075s;
}

.o-button.-left:hover .o-button_label {
    -webkit-transform: translateX(-0.5rem);
    -ms-transform: translateX(-0.5rem);
    transform: translateX(-0.5rem);
}

.o-button.-square:hover .o-button_label {
    -webkit-transform: translateX(0.375rem);
    -ms-transform: translateX(0.375rem);
    transform: translateX(0.375rem);
}

.o-button.-left.-square:hover .o-button_label {
    -webkit-transform: translateX(-0.375rem);
    -ms-transform: translateX(-0.375rem);
    transform: translateX(-0.375rem);
}

.o-button-group {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
}

.o-button_icon {
    position: relative;
    width: 1.1875rem;
    height: 1.1875rem;
    fill: #1e1e22;
    transition: fill 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button.-white .o-button_icon {
    fill: #fff;
}

.o-button:hover .o-button_icon {
    fill: #f6f6f6;
    transition-delay: 0s;
}

.o-button.-white:hover .o-button_icon {
    fill: #1e1e22;
}

.o-button_line::before,
.o-button_line::after {
    content: "";
    position: absolute;
    background-color: #1e1e22;
}

.is-mobile .o-button_line::before,
.is-mobile .o-button_line::after {
    display: none;
}

.o-button_line::before {
    width: 1px;
    top: 0;
    bottom: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-button_line::after {
    height: 1px;
    right: 0;
    left: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-button_line:first-of-type::before {
    left: 0;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

.o-button_line:first-of-type::after {
    top: 0;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}

.o-button_line:last-of-type::before {
    right: 0;
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
}

.o-button_line:last-of-type::after {
    bottom: 0;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}

.o-button.is-inview .o-button_line::before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.o-button.is-inview .o-button_line::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.o-button.is-inview .o-button_line:first-of-type::before {
    transition-delay: 1.15s;
}

.o-button.is-inview .o-button_line:first-of-type::after {
    transition-delay: 0.1s;
}

.o-button.is-inview .o-button_line:last-of-type::before {
    transition-delay: 0.55s;
}

.o-button.is-inview .o-button_line:last-of-type::after {
    transition-delay: 0.7s;
}

.c-header-home_footer {
    z-index: 3;
    position: absolute;
    right: 0;
    bottom: 5rem;
    left: 0;
}

.c-header-home_controls,
.c-header-home_buttons {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
    transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

@media (max-width: 699px) {
    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 40px;
    }
}

@media (min-width: 700px) {
    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 5.625rem;
    }
}

@media (min-width: 700px) and (max-width: 749px) {
    .c-header-home_controls,
    .c-header-home_buttons {
        padding-bottom: 3.75rem;
    }
}

.is-loaded .c-header-home_controls,
.is-loaded .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

body[data-route-option="prev-section"] .c-header-home_controls,
body[data-route-option="prev-section"] .c-header-home_buttons,
body[data-route-option="next-section"] .c-header-home_controls,
body[data-route-option="next-section"] .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.c-header-home_controls {
    transition-delay: 0.65s;
}

@media (min-width: 700px) {
    .c-header-home_controls {
        float: left;
    }
}

.c-header-home_buttons {
    transition-delay: 0.75s;
}

@media (max-width: 699px) {
    .c-header-home_buttons {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (min-width: 1000px) {
    .c-header-home_buttons {
        float: right;
    }
}

@media (max-width: 699px) {
    .c-header-home_button {
        width: 50% !important;
    }
}

@media (min-width: 700px) {
    .c-header-home_button {
        width: 15.625rem;
    }
}


/* test */

.products-list-items {
    display: flex;
    box-shadow: 1px 8px 29px -10px rgba(148, 148, 148, 1);
    background-color: var(--white);
    width: 100%;
    overflow-x: auto;
    border-radius: 5px;
}

.products-list-items::-webkit-scrollbar {
    width: 2px;
    background-color: #ffffffe5;
    border-radius: 5px;
}

.products-list-items::-webkit-scrollbar-thumb {
    background: var(--tertiary);
    border-radius: 5px;
}

.products-list-items .select-list {
    display: flex;
    list-style-type: none;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    position: relative;
    float: left;
}

.products-list-items .select_item {
    display: inline-block;
    list-style-type: none;
    white-space: nowrap;
}

.sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 115px !important;
    z-index: 300 !important;
    margin-bottom: 5rem;
}

.products-list-items .select-list {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.products-list-items .select_item {
    width: max-content;
}

#item-1 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.63), rgba(35, 35, 36, 0.692)) top no-repeat fixed, url(../img/filter/restaurant.jpg) fixed center;
}

#item-2 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.63), rgba(35, 35, 36, 0.692)) top no-repeat fixed, url(../img/filter/supermarket.jpg) fixed center;
}

#item-3 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.63), rgba(35, 35, 36, 0.692)) top no-repeat fixed, url(../img/filter/health.jpg) fixed center;
}

#item-4 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.63), rgba(35, 35, 36, 0.692)) top no-repeat fixed, url(../img/filter/store.jpg) fixed center;
}

#item-5 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.63), rgba(35, 35, 36, 0.692)) top no-repeat fixed, url(../img/filter/tecnology.jpg) fixed center;
}

#item-6 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.63), rgba(35, 35, 36, 0.692)) top no-repeat fixed, url(../img/filter/dealers.jpg) fixed center;
}

#item-7 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.63), rgba(35, 35, 36, 0.692)) top no-repeat fixed, url(../img/filter/toher.jpg) fixed center;
}

.form-lists {
    padding-bottom: 4rem;
}

.select-list .select_item a {
    font-size: 1.5rem !important;
    cursor: pointer;
    margin: 1rem;
    font-weight: bold;
    color: var(--white) !important;
    text-decoration: none !important;
}

.recomendation {
    font-size: 1.5rem !important;
    cursor: pointer;
    margin: 1rem;
    font-weight: bold;
    color: var(--dark) !important;
    text-decoration: none !important;
}

.select-list .select_item a:hover {
    color: var(--white) !important;
    text-decoration: none !important;
}

.select_item:is(:hover,
 :focus,
.active) {
    text-decoration: underline 2px solid #f1f1f1;
    border-bottom: 3px solid var(--white) !important;
    color: var(--white) !important;
    text-underline-offset: 5px;
    opacity: 1;
}

.btn-tertiary {
    background-color: var(--black) !important;
    color: white !important;
}

.select-list li {
    width: auto !important;
    height: 50px !important;
    border: solid !important;
    margin: 0px 7px 0px 7px !important;
    padding: 0px 7px 0px 7px !important;
    line-height: 3rem !important;
    font-weight: bolder !important;
    cursor: pointer !important;
    background-color: var(--tertiary);
    text-align: center !important;
    color: var(--white) !important;
}

.select-list li a {
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 1rem !important;
}

.select.isOpen .select_item:hover {
    background: rgba(204, 204, 204, 0.06);
}

.select-list .select_item .btn:hover {
    background: none !important;
    color: var(--white) !important;
}

.select_item:hover {
    background: linear-gradient(to right, #161616c9, #070707af), ;
    color: var(--white) !important;
    border: solid var(--palet-2) !important;
}

.item.active {
    border: solid 4px var(--palet-2) !important;
}

.select.isOpen .select_item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.select_item--other {
    padding: 0;
}

.select_item--other input {
    color: black;
    outline: 0;
    border: 0;
    display: block;
    min-width: 100%;
    height: 46px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0 0 10px 10px;
}

.select:not(.isOpen) .select_item--other input {
    border-radius: 10px;
}

.select-list .li.active {
    background: #bebcbc;
}

.service-item:hover img {
    margin-top: 0px
}

.service-item:hover .service-text {
    height: calc(100% + 40px)
}

@media (max-width: 768px) {
    .menu__detail {
        height: auto;
    }
    /* .home-2 {
        align-content: space-around !important;
    } */
    .sticky {
        top: 65px !important;
    }
    .reviews-sec {
        flex-direction: column-reverse;
    }
    .products-list-items {
        overflow-x: scroll;
    }
    .products-list-items .select-list {
        display: flex;
        list-style-type: none;
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
        position: relative;
        float: left;
    }
    .products-list-items .select_item {
        display: inline-block;
        list-style-type: none;
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    #carousel-id {
        padding-bottom: 6rem;
    }
}

.service-item .service-text {
    position: absolute;
    width: 100%;
    height: calc(100% + 86px);
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: rgba(33, 30, 28, 0.5);
    transition: .5s;
    z-index: 1;
}

#carousel-id {
    padding-top: 6rem;
}

.service-item:hover img {
    margin-top: 0px;
}

.service-item:hover .service-text {
    height: calc(100% + 40px);
}