
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.wow {
    visibility: hidden
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0)
    }
    40% {
        transform: translateY(-30px)
    }
    60% {
        transform: translateY(-15px)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes jello {
    11.1% {
        transform: none
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
    100% {
        transform: none
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scale3d(1, 1, 1)
    }
    30% {
        transform: scale3d(1.25, 0.75, 1)
    }
    40% {
        transform: scale3d(0.75, 1.25, 1)
    }
    50% {
        transform: scale3d(1.15, 0.85, 1)
    }
    65% {
        transform: scale3d(0.95, 1.05, 1)
    }
    75% {
        transform: scale3d(1.05, 0.95, 1)
    }
    100% {
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0)
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px)
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px)
    }
}

.shake {
    animation-name: shake
}

@keyframes swing {
    20%, 40%, 60%, 80%, 100% {
        transform-origin: top center
    }
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    100% {
        transform: rotate(0deg)
    }
}

.swing {
    animation-name: swing;
    transform-origin: top center
}

@keyframes tada {
    0% {
        transform: scale(1)
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg)
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        transform: scale(1) rotate(0)
    }
}

.tada {
    animation-name: tada
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) rotateY(360deg) scale(0.95);
        animation-timing-function: ease-in
    }
    100% {
        transform: perspective(400px) scale(1);
        animation-timing-function: ease-in
    }
}

.flip {
    animation-name: flip;
    -webkit-backface-visibility: visible;
    backface-visibility: visible
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-200deg);
        transform-origin: center center
    }
    100% {
        opacity: 1;
        transform: rotate(0);
        transform-origin: center center
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateOut {
    0% {
        opacity: 1;
        transform: rotate(0);
        transform-origin: center center
    }
    100% {
        opacity: 0;
        transform: rotate(200deg);
        transform-origin: center center
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-200px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-200%)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(200%)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(200px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }
    100% {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes logoEffect {
    100% {
        left: 160%
    }
}

body {user-select: none}

body, input, select, textarea, button, h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", sans-serif
}

html {
    line-height: 1.5;
    font-size: 15px;
    font-weight: 400;
    background: #fff
}

@media (min-width: 1281px)and (max-width: 1440px) {
    html {
        font-size: 16px
    }
}

@media (min-width: 1441px)and (max-width: 1920px) {
    html {
        font-size: 17px
    }
}

@media (min-width: 1921px) {
    html {
        font-size: 18px
    }
}

body {
    font-size: 1em;
    color: #282828
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px;
    line-height: 1.3em;
    font-weight: 600;
    letter-spacing: -0.02em
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit !important;
    text-decoration: none !important
}

p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
    margin-top: 40px
}

h1 {
    font-size: 24px
}

h2 {
    font-size: 22px
}

h3 {
    font-size: 20px
}

h4 {
    font-size: 18px
}

h5 {
    font-size: 16px
}

h6 {
    font-size: 15px
}

a {
    color: #29aee6;
    transition: color .3s linear
}

.section-header {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px
}

.section-header:last-child {
    margin-bottom: 0
}

.section-header .title {
    margin-bottom: 15px;
    line-height: 1.25em;
    font-size: 1.2em;
    color: inherit;
    text-transform: capitalize;
    letter-spacing: -0.04em
}

.section-header .title::before {
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #747273
}

.section-header .title:last-child {
    margin-bottom: 0
}

.section-header .title > span {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    background-color: #fff
}

#home + section .section-header .title::before {
    content: none
}

#home + section .section-header .title > span {
    background: none
}

.section-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 1.15em;
    text-transform: uppercase
}

.section-title:last-child {
    margin-bottom: 0
}

.section-title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    content: "";
    border-radius: 2px;
    background-color: #fff
}

.section-title.small {
    font-size: 1.3em
}

.section-title.short::after {
    width: 6%
}

.section-title.white {
    color: #fff
}

.section-title.white-border::after {
    background-color: #fff
}

.section-title.black {
    color: #282828
}

.section-title.black-border::after {
    background-color: #282828
}

.section-title.blue {
    color: #29aee6
}

.section-title.blue-border::after {
    background-color: #29aee6
}

.section-title.text-right::after, .text-right .section-title::after {
    left: auto;
    right: 0
}

.section-title.text-center::after, .text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%)
}

.section-title.no-margin {
    margin-bottom: 0 !important
}

.section-title.no-border {
    padding-bottom: 0
}

.section-title.no-border::after {
    content: none
}

.section-title > i, .section-title > span {
    display: block;
    flex: 1
}

.section-title > i {
    margin-right: 20px;
    font-size: 1.3em
}

p + .section-title {
    margin-bottom: 20px
}

.image {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    border-radius: 8px;
    background: #f5f5f5 url(../images/loading.svg) no-repeat 50%;
    background-size: 32px auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    transition: all .3s linear
}

.image.loaded {
    background-image: none
}

.image > img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .3s linear
}

.image > span {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
    background: none no-repeat 50%;
    background-size: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    transition: all .3s linear
}

.image > span > img {
    display: none !important
}

.image.white {
    background-color: #fff
}

.image.contain > span {
    background-size: contain
}

.image:not(.no-effect):hover > span, .item:hover .image:not(.no-effect) > span {
    transform: translate3d(0, 0, 0) scale(1.05)
}

.fa-phone:before {
    display: inline-block;
    transform: rotate(160deg)
}

.form {
    position: relative;
    width: 100%
}

.form-label, .form-label-group {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.form-label:last-child, .form-label-group:last-child {
    margin-bottom: 0 !important
}

.inline-flex .form-label, .inline-flex .form-label-group {
    margin-top: 2px;
    margin-bottom: 2px
}

.inline-flex .form-label + .form-label, .inline-flex .form-label-group + .form-label {
    margin-left: 20px
}

.form-label-group {
    width: 102%;
    margin-left: -2%;
    margin-bottom: 0
}

.form-label-group .form-label {
    width: 48%;
    margin-left: 2%
}

.form-label > span, .form-label > div, .form-label > label {
    position: relative;
    display: block;
    width: 100%
}

.form-label > span {
    font-size: .9em;
    margin-bottom: 5px
}

select, textarea, input[type=tel], input[type=email], input[type=text] {
    display: block;
    width: 100%;
    height: 49px;
    margin: 0;
    padding: 10px 20px;
    line-height: 28px;
    font-size: .85em;
    font-weight: 400;
    color: #282828;
    border: 1px solid rgba(40, 40, 40, .1);
    background: #f5f5f5;
    transition: all .3s linear
}

select:focus, textarea:focus, input[type=tel]:focus, input[type=email]:focus, input[type=text]:focus {
    color: #2f3032 !important;
    border-color: #80bdff !important;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) !important
}

.error select, .error textarea, .error input[type=tel], .error input[type=email], .error input[type=text] {
    border-color: #dc1f1f !important;
    box-shadow: 0px 0px 4px 4px rgba(255, 0, 0, .17) !important
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-internal-autofill-selected, input:-internal-autofill-selected:hover, input:-internal-autofill-selected:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus, select:-internal-autofill-selected, select:-internal-autofill-selected:hover, select:-internal-autofill-selected:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, textarea:-internal-autofill-selected, textarea:-internal-autofill-selected:hover, textarea:-internal-autofill-selected:focus {
    background-color: #fff !important;
    box-shadow: inset 0 0 0px 1000px #fff
}

textarea {
    min-height: 100px;
    height: 100px
}

.checkbox {
    position: relative;
    width: auto
}

.checkbox label {
    position: relative;
    display: inline-block;
    vertical-align: top;
    line-height: 22px;
    cursor: pointer
}

.checkbox label span {
    position: relative;
    display: inline-block;
    padding-left: 32px;
    pointer-events: none
}

.checkbox label span::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    content: "";
    border-radius: 6px;
    border: 1px solid rgba(40, 40, 40, .1);
    background: #f5f5f5
}

.checkbox label span::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    text-align: center;
    color: #d12ea0;
    opacity: 0;
    content: "";
    line-height: 22px;
    font-family: "Font Awesome 5 Pro";
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    transition: all .3s linear
}

.checkbox label a {
    color: #d12ea0;
    text-decoration: underline;
    pointer-events: auto;
    transition: none
}

.checkbox label input {
    position: absolute;
    left: 10px;
    top: 20px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none
}

.checkbox label input:checked + span::after {
    opacity: 1
}

.text-right .checkbox label span {
    padding-right: 32px;
    padding-left: 0
}

.text-right .checkbox label span::before, .text-right .checkbox label span::after {
    right: 0;
    left: auto
}

.checkbox.error label span {
    color: #dc1f1f
}

.checkbox.error label span::before {
    border-color: #dc1f1f
}

.checkbox.error label span::after {
    color: #dc1f1f
}

.ph-text {
    position: absolute;
    top: 50%;
    left: 21px;
    font-size: .85em;
    color: rgba(40, 40, 40, .5);
    white-space: nowrap;
    pointer-events: none;
    transform: translateY(-50%);
    transition: all .3s linear
}

.placeholder {
    padding-top: 20px !important;
    padding-bottom: 8px !important;
    line-height: 20px !important
}

.placeholder.focus + .ph-text {
    top: 24%
}

textarea.placeholder + .ph-text {
    top: 24%
}

textarea.placeholder.focus + .ph-text {
    top: 12%
}

input::placeholder, textarea::placeholder {
    color: rgba(40, 40, 40, .6)
}

select.placeholder {
    color: rgba(40, 40, 40, .6)
}

select.placeholder + .select2-container .select2-selection--single .select2-selection__rendered {
    color: rgba(40, 40, 40, .6)
}

.btn {
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 42px;
    padding: 5px 20px;
    line-height: 1;
    font-size: 15px;
    font-weight: 400;
    color: #282828;
    text-decoration: none !important;
    white-space: nowrap;
    border-radius: 48px;
    border: 1px solid #fff;
    background: #fff;
    transition: all .3s linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0)
}

.btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, .06);
    transform: scaleX(0);
    transition: all .2s linear
}

.btn.dark-border {
    border-color: rgba(40, 40, 40, .3)
}

.btn.dark {
    color: #fff;
    border-color: #282828;
    background-color: #282828
}

.btn.dark::before {
    background-color: rgba(255, 255, 255, .08)
}

.btn.blue {
    color: #fff;
    border-color: #29aee6;
    background-color: #29aee6
}

.btn.blue::before {
    background-color: rgba(0, 0, 0, .08)
}

.btn.blue2 {
    color: #fff;
    border-color: #91d6f1;
    background-color: #91d6f1
}

.btn.blue2::before {
    background-color: rgba(0, 0, 0, .08)
}

.btn.pink {
    color: #fff;
    border-color: #d12ea0;
    background-color: #d12ea0
}

.btn.pink::before {
    background-color: rgba(0, 0, 0, .08)
}

.btn.green {
    color: #fff;
    border-color: #a1d034;
    background-color: #a1d034
}

.btn.red {
    color: #fff;
    border-color: #dc1f1f;
    background-color: #dc1f1f
}

.btn.live-btn {
    padding-left: 40px;
    color: #fff;
    border-color: #dc1f1f;
    background-color: #dc1f1f
}

.btn.live-btn::before {
    background-color: rgba(0, 0, 0, .08)
}

.btn.live-btn .ls {
    left: 15px;
    margin: 0
}

.btn.disabled {
    color: rgba(40, 40, 40, .5);
    pointer-events: none;
    border-color: #747273;
    background-color: #747273
}

.btn:hover::before, .item:hover .btn:not(.ih)::before {
    transform: scaleX(1);
    transition: transform .6s cubic-bezier(0.08, 0.35, 0.4, 1.02)
}

.btn + .btn {
    margin-left: 10px
}

.btn > span {
    position: relative;
    display: block;
    margin-top: -1px
}

.btn i {
    position: relative;
    display: block;
    font-size: 1em;
    color: inherit !important
}

.btn i:first-child {
    margin-right: 8px
}

.btn i:last-child {
    margin-right: 0;
    margin-left: auto;
    padding-left: 10px
}

.submit-button {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    -webkit-appearance: none;
    appearance: none
}

.submit-button[disabled] {
    opacity: .4;
    pointer-events: none;
    filter: grayscale(100%)
}

.all-btn {
    overflow: hidden;
    position: absolute;
    top: 4px;
    right: 0;
    z-index: 1;
    display: inline-flex;
    line-height: 1;
    font-size: .9em;
    font-weight: 600;
    color: #282828;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all .3s linear
}

.all-btn:hover {
    color: #d12ea0
}

.all-btn > span {
    position: relative;
    display: block;
    margin-top: -1px
}

.ftAlert {
    position: relative;
    margin: 10px 0;
    padding: 10px 10px 10px 40px;
    font-size: 14px;
    font-weight: 400;
    color: #2b2b2b;
    text-align: left;
    border-radius: 21px;
    border: 1px solid #fff;
    background: none no-repeat 10px 50%;
    background-size: 20px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .2)
}

.ftAlert.success {
    color: #398b03;
    border-color: #75b975;
    background-color: #dff0d8;
    background-image: url(../images/ft_alerts/success.png)
}

.ftAlert.warning {
    color: #b17a01;
    border-color: #ffd293;
    background-color: #fcf8e3;
    background-image: url(../images/ft_alerts/warning.png)
}

.ftAlert.error {
    color: #833;
    border-color: #c39595;
    background-color: #f2dede;
    background-image: url(../images/ft_alerts/error.png)
}

.ftAlert.info {
    color: #1a4773;
    border-color: #80d0e8;
    background-color: #d9edf7;
    background-image: url(../images/ft_alerts/info.png)
}

.ftAlert.loading {
    color: #1a4773;
    border-color: #cacaca;
    background-color: #f5f5f5;
    background-image: url(../images/ft_alerts/loading.gif)
}

.ftAlert .close {
    float: right;
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 1;
    font-size: 21px;
    font-weight: 700;
    color: #000;
    opacity: .2;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0 1px 0 #fff;
    background: rgba(0, 0, 0, 0);
    -webkit-appearance: none;
    appearance: none;
    transition: all .3s linear
}

.ftAlert .close:hover, .ftAlert .close:focus {
    opacity: .5
}

.socials a {
    overflow: hidden;
    position: relative;
    display: inline-flex;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin-left: 5px;
    color: #fff;
    border-radius: 12px;
    background-color: #282828;
    align-items: center;
    justify-content: center;
    transition: all .3s linear
}

.socials a > i {
    font-size: 16px
}

.owl-carousel .owl-dots {
    width: 100%;
    padding: 40px 0 0;
    text-align: center;
    pointer-events: none
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 4px;
    cursor: pointer;
    vertical-align: top;
    border-radius: 50%;
    background: #29aee6;
    pointer-events: auto;
    transition: all .3s linear
}

.owl-carousel .owl-dot.active {
    background-color: #a1d034
}

.cookie-policy {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 600;
    width: 100%;
    font-size: 13px;
    background: #a1d034;
    background: linear-gradient(to right, rgb(57, 181, 226) 0%, rgb(161, 208, 52) 100%);
    box-shadow: 0px -6px 16px 0px rgba(0, 0, 0, .15)
}

.cookie-policy .btns {
    position: absolute;
    top: 50%;
    right: 3em;
    color: #fff;
    cursor: pointer;
    transform: translate(0, -50%)
}

.cookie-policy .btns .fas {
    font-size: 28px;
    pointer-events: none;
    vertical-align: top
}

.cookie-policy .cookie-accept, .cookie-policy .cookie-close {
    display: inline-block;
    padding: 5px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    vertical-align: top
}

.cookie-policy .cookie-accept > span, .cookie-policy .cookie-close > span {
    display: block
}

.cookie-policy .cookie-accept {
    margin-right: 20px
}

.cookie-policy .cookie-content {
    padding: 20px 40px;
    font-size: 1.15em;
    color: #fff;
    text-align: center
}

.cookie-policy .cookie-content a {
    display: inline-block;
    color: inherit;
    text-decoration: underline
}

@media (max-width: 1200px) {
    .cookie-policy {
        padding-bottom: 60px
    }

    .cookie-policy .btns {
        top: auto;
        right: auto;
        left: 50%;
        bottom: 10px;
        transform: translate(-50%, 0)
    }

    .cookie-policy .btns .fas {
        font-size: 24px
    }
}

@media (max-width: 991px) {
    .cookie-policy {
        padding-bottom: 50px
    }

    .cookie-policy .btns .fas {
        font-size: 20px
    }

    .cookie-policy .cookie-content {
        padding: 15px 20px;
        font-size: .9em
    }
}

#site-wrap > section {
    position: relative
}

section {
    position: relative
}

section > .inner {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    background: none no-repeat 50%;
    background-size: cover
}

#site-wrap {
    padding-top: 0
}

#navigation {
    display: none
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    width: 100vw;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: none
}

#header .container, #header .row, #header .pull-right {
    height: 100%
}

#header .top-bar {
    overflow: hidden;
    width: 100%;
    height: 50px;
    transition: none
}

#header .top-bar .col-4 {
    max-width: 279px;
    flex: 0 0 279px
}

#header .top-bar .col-8 {
    width: auto;
    max-width: 100%;
    flex: 1
}

#header .top-bar .pull-right {
    padding-left: 50px;
    border-radius: 0px 0px 0px 54px;
    background-color: #29aee6
}

#header .top-bar .pull-right::before {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100%;
    content: "";
    pointer-events: none;
    background-color: #29aee6
}

#header .bottom-bar {
    position: relative;
    z-index: 2;
    height: 46px;
    transition: none
}

#header .bottom-bar .col-4 {
    max-width: 279px;
    flex: 0 0 279px
}

#header .bottom-bar .col-8 {
    width: auto;
    max-width: 100%;
    flex: 1
}

#header .bottom-bar .langs {
    display: none
}

#header .logo {
    margin: 0;
    line-height: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit
}

#header .logo a {
    position: relative;
    display: block;
    width: 259px;
    height: 40px;
    cursor: pointer;
    text-decoration: none;
    /*background: url(../images/logo2.png) no-repeat;*/
    background-size: auto 100%
}

#header .logo .fixed {display: none;}
.fixed #header .logo .idle {display: none;}
.fixed #header .logo .fixed {display: block;}



/*.r2x #header .logo a {*/
/*    background-image: url(../images/logo2@2x.png)*/
/*}*/

/*.r3x #header .logo a {*/
/*    background-image: url(../images/logo2@3x.png)*/
/*}*/

#header .logo a > span {
    display: none
}



#header .info {
    position: relative
}

#header .info > div {
    display: flex
}

#header .info a, #header .info .divider {
    display: block;
    line-height: 24px;
    font-size: .8em;
    font-weight: 600;
    color: #282828;
    text-decoration: none;
    transition: all .3s linear
}

#header .info .divider {
    width: 1px;
    height: 20px;
    margin: 2px 15px;
    background-color: rgba(0, 0, 0, .4)
}

#header .info .mdi {
    font-size: 1.1em;
    opacity: .8;
    vertical-align: middle
}

#header .info .mdi-email {
    margin-right: 4px
}

#header .langs {
    position: relative;
    z-index: 1;
    margin-left: 30px
}

#header .langs > a, #header .langs > span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 5px 16px;
    line-height: 22px;
    font-size: .8em;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 20px;
    background-color: #282828;
    transition: all .3s linear
}

#header .langs > a:hover, #header .langs > span:hover {
    color: #282828;
    background-color: #fff
}

#header .langs > a i, #header .langs > span i {
    margin-left: 6px
}

#header .main-nav {
    float: left
}

#header .main-nav > ul {
    float: left
}

#header .main-nav > ul > li {
    position: relative;
    float: left;
    margin-left: 30px
}

#header .main-nav > ul > li:first-child {
    margin-left: 0
}

#header .main-nav > ul > li > a {
    position: relative;
    display: flex;
    height: 40px;
    line-height: 1em;
    font-size: .85em;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    align-items: flex-end;
    transition: all .3s linear
}

#header .main-nav > ul > li > a::before {
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    margin-left: 0;
    content: "";
    border-bottom: 2px solid #29aee6;
    transition: all .3s linear .6s
}

#header .main-nav > ul > li > a > span {
    display: block
}

#header .main-nav > ul > li:hover > a::before, #header .main-nav > ul > li.selected > a::before {
    width: 66%;
    margin-left: -34%;
    transition: all .3s linear
}

.fixed #header {
    position: fixed;
    background-color: #fff;
    box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, .15);
    transition: transform .5s linear
}

.fixed #header .top-bar {
    display: none
}

.fixed #header .bottom-bar {
    height: 70px
}

.fixed #header .bottom-bar .row.align-items-end {
    align-items: center
}

.fixed #header .logo img {display: none;}

@media (max-width: 767px) {
    #header .logo .idle {display: none;}
    #header .logo .fixed {display: block;}
}

/*.fixed #header .logo a {*/
/*    background-image: url(../images/logo.png)*/
/*}*/

/*.r2x .fixed #header .logo a {*/
/*    background-image: url(../images/logo@2x.png)*/
/*}*/

/*.r3x .fixed #header .logo a {*/
/*    background-image: url(../images/logo@3x.png)*/
/*}*/

.fixed #header .main-nav > ul > li > a {
    color: inherit;
    align-items: center
}

#home {
    z-index: 1;
    height: 650px;
}


@media (max-width: 767px) {
    #home {
        height: 500px;
    }
}


#home .digidea-i {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 18px;
    height: 112px;
    background: url(../images/digidea_i.png) no-repeat 50%;
    background-size: 100% auto;
    transform: translate3d(-50%, 0, 0)
}

#home .rev_slider {
    max-width: 2560px;
    max-height: 630px;
    margin: 0 auto
}

#home .rev_slider, #home .forcefullwidth_wrapper_tp_banner {
    z-index: 0;
    margin: 0 auto
}

#home .rev_slider {
    background-color: #747273
}

#home .tp-bullets {
    counter-reset: sc
}

#home .tp-bullets .tp-bullet {
    width: auto;
    height: auto;
    font-size: 1em;
    color: #fff;
    opacity: .7;
    background: none;
    pointer-events: auto;
    transition: all .3s linear
}

#home .tp-bullets .tp-bullet::before {
    counter-increment: sc;
    content: counter(sc)
}

#home .tp-bullets .tp-bullet:nth-child(-n+9)::before {
    content: "0" counter(sc)
}

#home .tp-bullets .tp-bullet::after {
    margin-right: 8px;
    margin-left: 4px;
    content: "/"
}

#home .tp-bullets .tp-bullet:last-child::after {
    content: none
}

#home .tp-bullets .tp-bullet.selected {
    opacity: 1
}

#home .tparrows {
    display: none !important;
    top: 50%;
    width: 60px;
    height: 60px;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    font-size: 24px;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-flex;
    color: #282828;
    visibility: visible;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, .13);
    transition: all .3s linear
}

#home .tparrows:hover {
    color: #fff;
    background-color: #282828
}

#home .tparrows::before {
    content: none
}

#home .tparrows::after {
    display: block;
    content: ""
}

#home .tp-leftarrow {
    left: 0px;
    transform: matrix(1, 0, 0, 1, -30, -30)
}

#home .tp-leftarrow::after {
    content: ""
}

#home .tp-rightarrow {
    left: 100%;
    transform: matrix(1, 0, 0, 1, -30, -30)
}

#home .tp-arr-subtitleholder {
    display: none
}

#home .tp-caption.slidelink {
    left: 0 !important;
    top: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important
}

#home .tp_text {
    max-width: 720px
}

.slider-container {
    background-image: url('../images/slider.jpg');
    height: 100%;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;


}

.slider-container .description {
    text-align: right;
    margin: 0 210px 120px 0;
}

.slider-container h2 {font-size: 25px; margin: 0 32px 0 0;}
.slider-container h1 {font-size: 100px; color: #2aaee6; font-weight: bold; margin: 0; line-height: 1}
.slider-container p {font-size: 13px; margin: 20px 32px 0 0;}

@media (max-width: 980px) {
    .slider-container .description {margin-right: 30px;}
}

@media (max-width: 767px) {
    .slider-container {align-items: flex-start; background-image:url("../images/slider-mobile.jpg")}
    .slider-container .description {margin: 40px 0 0 ;}
    .slider-container h1 {font-size: 50px;}
    .slider-container h2 { margin-right: 15px; font-size: 22px;}
    .slider-container p { margin-right: 15px}
}


#home .tp_text .item-title {
    white-space: nowrap;
    margin: 0;
    /*line-height: 1em;*/
    /*font-size: 3.5em;*/
    font-weight: 700;
    color: #fff;
    /*text-transform: uppercase*/
}

/*#home h1 {font-size: 80px; font-weight: bold; color: #2aaee6;}*/

#home .tp_text .item-title > span {
    display: block;
    color: #29aee6
}

#home .tp_text p {
    text-wrap:balance;
    /*max-width: 480px;*/
    margin: 20px 0 0 auto;
    line-height: 1.2;
    font-size: 1.3em;
    opacity: .7
}

#home .tp_text {
    white-space: normal;
    line-height: 1.3;
    color: #fff !important
}

.services {
    background: #2aaee6;
    text-align: center;
    color: #fff;
    font-size: 25px;
}

.services > .inner {
    background: none
}

.services .boxes {
        display: grid; grid-template-columns: 1fr 1fr 1fr;
}

.services .item {
    position: relative;
    /*margin-top: 50px;*/
    /*padding-right: 20px;*/
    /*padding-left: 20px*/
}
.services .item h3 {margin: 20px 0; font-size: 30px; font-weight: bold;}

.services .item .image {
    /*width: 100px;*/
    /*height: 100px;*/
    border-radius: 0;
    background: none
}

.services .item .image > img {

    width: auto;
    height: 150px;
    margin: auto;
}

.services .item .title {
    margin: 20px 0 0;
    font-size: .9em;
    font-weight: 600;
    text-transform: uppercase
}

.services .item p {
    margin: 10px 0 0;
    line-height: 1.35;
    font-size: .85em
}

.services .item:hover .image > img {
    transform: translate3d(0, 0, 0) scale(0.95)
}

.numbers .container > .row {
    min-height: 680px
}

.numbers .section-header {
    margin-bottom: 40px
}

.numbers .section-header p {
    margin: 10px 0 0;
    font-size: .85em;
    color: rgba(0, 0, 0, .7)
}

.numbers .boxs {
    margin-top: 20px;
    margin-bottom: 30px;
    padding-right: 60px;
    padding-left: 60px
}

.numbers .boxs .item {
    position: relative;
    margin-top: 10px;
    padding: 20px
}

.numbers .boxs .circle {
    position: relative;
    padding: 15px;
    border-radius: 50%;
    border: 1px solid #ccc
}

.numbers .boxs .circle canvas {
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px) !important;
    height: calc(100% + 6px) !important;
    pointer-events: none
}

.numbers .boxs .circle > div {
    position: relative;
    padding-bottom: 100%;
    border-radius: 50%;
    background-color: #38373b;
    flex: 1
}

.numbers .boxs .circle > div > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center
}

.numbers .boxs .icon {
    position: relative;
    width: 100%;
    height: 66px;
    background: none no-repeat 50%;
    background-size: contain
}

.numbers .boxs .icon svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    transition: all .3s linear
}

.numbers .boxs .counter {
    margin: 5px 0 0;
    line-height: 1em;
    font-family: "PT Sans", sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #fff
}

.numbers .boxs .counter > i {
    font-style: normal;
    color: #29aee6
}

.numbers .boxs .title {
    margin: 5px 0 0;
    font-size: .85em;
    font-weight: 400;
    color: rgba(255, 255, 255, .4)
}

.about {
    position: relative;
}

.about > .inner {
    /*min-height: 800px;*/
    color: #fff;
    padding: 0;
    background-color: #282828;
    background-image: url("../images/about-us.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.about .astronot {
    position: absolute;
    right: 30px;
    top: -50px;
    z-index: 1;

}

.about .description {padding: 50px 10px; width: 50%; font-size: 18px;}

.about .astronot img {height: 280px; width: auto;}

@media(max-width: 1490px) {
    .about .astronot {display: none;}
}

.about .container {
    z-index: 1
}

@media (min-width: 992px) {
    .about .about-map {
        position: absolute;
        /*top: 50%;*/
        top: -200px;
        right: 0;
        max-width: 100%;
        /*height: auto;*/
        /*padding: 20px;*/
        opacity: .5;
        z-index: 1;
        height: 300px;
        object-fit: contain;
        /*transform: translate3d(0, -50%, 0)*/
    }
}

@media (max-width: 767px) {
    .about > .inner {
        background-size: 200%;
        background-position: right 20% top;

    }

    .about .description {width: 100%; margin: 150px 0 0 ; text-align: left;}
    .about .description p { text-align: left;}
}

.about .wow + .wow, .ideas .wow + .wow {
    margin-top: 30px
}

.about h3, .ideas h3 {
    font-size: .95em
}

.about p  {
    font-size: .85em;
    text-align: justify
}

.ideas p {
    font-size: 17px; text-align: justify;
}

.about img, .ideas img {
    /*max-width: 220px;*/
    height: auto;
    pointer-events: none
}

.ideas .container > .row {
    /*padding-top: 60px;*/
    /*padding-bottom: 60px;*/
    color: #fff
}

.ideas .col-6:last-child {
    padding-left: 50px;
}

.ideas .col-9 {
    max-width: 100%;
    flex: 1
}

.ideas .col-3 {
    min-width: 320px;
    max-width: 320px;
    flex-basis: 320px
}

.ideas figure {
    float: right;
    width: 250px;
    margin-left: 50px;
    margin-top: 50px
}

.ideas figure figcaption {
    margin-top: 10px;
    line-height: 1.2;
    font-size: .9em;
    text-align: center
}

.ideas figure figcaption span {
    display: block;
    font-size: 1.2em;
    font-weight: 700
}

.ideas img {
    display: block;
    max-width: 100%;
    height: auto;
    /*margin-right: auto;*/
    /*margin-left: auto;*/
    /*border-radius: 50px;*/
    /*border: 5px solid #fff;*/
    /*box-shadow: 0px 0px 28px 16px rgba(0, 0, 0, .5)*/
}

.ideas h2 {font-size: 30px; font-weight: bold;}

.year-of-foundation {
    h2 {position: absolute; width: 100%; text-align: center; margin: 30px 0 0; color: #2aaee6; font-size: 30px; font-weight: bold; }
}
.year-of-foundation img {width: 100%; object-fit: cover;}
.year-of-foundation h2 {}


@media (max-width: 1100px) {
    .year-of-foundation h2 {margin-top: 0;}
    .year-of-foundation img {
        height: 200px;
    }
}

.products {

}

.products .boxes {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}

.products > .inner {
    padding-right: 40px;
    padding-left: 40px;
    background: #282828
}

.products .section-header {
    margin-bottom: 40px
}

.products .item img {width: 100%;}


@media (max-width: 767px) {
    .products .boxes {grid-template-columns: 1fr}
}

.references > .inner {
    overflow: hidden;
    padding: 0
}

.references .boxs .item {
    max-width: 14.2857142857%;
    flex: 0 0 14.2857142857%;
    border-right: 1px solid rgba(0, 0, 0, .15);
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    background-color: #fff
}

.references .boxs .image {
    padding-bottom: 56.25%;
    border-radius: 0;
    background-color: #fff;
    background-size: 28px auto
}

.references .boxs .image::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(255, 255, 255, .7)
}

.references .boxs .image > img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    padding: 25px;
    opacity: .5;
    filter: grayscale(1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    transition: all .3s linear
}

.references .boxs .item:hover .image > img {
    opacity: 1;
    filter: grayscale(0)
}

.contact > .inner {
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact .container > .row > .col-12 {
    max-width: 60%;
    color: #fff
}

.contact .section-title {
    margin-bottom: 40px
}

.contact .infos h5 {
    font-size: 1em;
    font-weight: 600;
    color: rgba(255, 255, 255, .8)
}

.contact .infos h5 i {
    margin-right: 5px;
    font-size: 1.1em;
    color: #29aee6
}

.contact .infos p {
    margin: 10px 0 0;
    font-size: .85em;
    color: rgba(255, 255, 255, .5)
}

.contact .infos p a {
    color: inherit
}

.contact .form {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, .2)
}

.contact .form-label {
    margin-bottom: 30px
}

.contact .form-label > span {
    opacity: .7;
    font-weight: 600
}

.contact textarea, .contact input[type=tel], .contact input[type=email], .contact input[type=text] {
    height: 32px;
    line-height: 24px;
    padding: 3px 0;
    font-size: .85em;
    color: rgba(255, 255, 255, .8) !important;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    background: none !important;
    box-shadow: none !important;
    transition: none !important
}

.contact textarea:focus, .contact input[type=tel]:focus, .contact input[type=email]:focus, .contact input[type=text]:focus {
    box-shadow: none !important
}

.contact textarea:-webkit-autofill, .contact textarea:-webkit-autofill:hover, .contact textarea:-webkit-autofill:focus, .contact textarea:-internal-autofill-selected, .contact textarea:-internal-autofill-selected:hover, .contact textarea:-internal-autofill-selected:focus, .contact input[type=tel]:-webkit-autofill, .contact input[type=tel]:-webkit-autofill:hover, .contact input[type=tel]:-webkit-autofill:focus, .contact input[type=tel]:-internal-autofill-selected, .contact input[type=tel]:-internal-autofill-selected:hover, .contact input[type=tel]:-internal-autofill-selected:focus, .contact input[type=email]:-webkit-autofill, .contact input[type=email]:-webkit-autofill:hover, .contact input[type=email]:-webkit-autofill:focus, .contact input[type=email]:-internal-autofill-selected, .contact input[type=email]:-internal-autofill-selected:hover, .contact input[type=email]:-internal-autofill-selected:focus, .contact input[type=text]:-webkit-autofill, .contact input[type=text]:-webkit-autofill:hover, .contact input[type=text]:-webkit-autofill:focus, .contact input[type=text]:-internal-autofill-selected, .contact input[type=text]:-internal-autofill-selected:hover, .contact input[type=text]:-internal-autofill-selected:focus {
    color: rgba(255, 255, 255, .8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .8) !important;
    background-color: #161616 !important;
    box-shadow: inset 0 0 0px 1000px #161616 !important
}

.contact .error textarea, .contact .error input[type=text] {
    color: #dc1f1f !important;
    border-bottom-color: #dc1f1f !important
}

.contact textarea::placeholder, .contact input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.contact .ph-text {
    left: 0;
    color: rgba(255, 255, 255, .5) !important
}

.contact .placeholder {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    line-height: 28px !important
}

.contact .placeholder.focus + .ph-text {
    top: -10px;
    font-size: .75em
}

.contact textarea.placeholder + .ph-text {
    top: 17px
}

.contact textarea.placeholder.focus + .ph-text {
    top: -10px
}

.contact .submit-button {
    margin-right: 0
}

.contact .ftAlert {
    max-width: 100%;
    flex: 0 0 100%
}

#footer {
    position: relative;
    z-index: 0
}

#footer .inner {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    color: #282828;
    background-color: #fff
}

#footer .copyright {
    padding: 6px 0;
    line-height: 20px;
    font-size: 15px
}

#footer .copyright a:hover {
    text-decoration: underline
}

#footer .socials {
    text-align: right
}

@media (max-width: 1200px) {
    #header {
        transition: none
    }

    #header .bottom-bar {
        height: 42px
    }

    #header .bottom-bar .col-4 {
        max-width: 253px;
        flex-basis: 253px
    }

    #header .logo a {
        width: 233px;
        height: 36px
    }

    .products .container {
        width: auto;
        margin-right: -20px;
        margin-left: -20px
    }

    .references .boxs .item {
        max-width: 12.5%;
        flex-basis: 12.5%
    }
}

@media (max-width: 991px) {
    #header .top-bar {
        height: 46px
    }

    #header .bottom-bar {
        height: 42px
    }

    #header .bottom-bar .col-4 {
        max-width: 253px;
        flex-basis: 253px
    }

    #header .logo a {
        width: 207px;
        height: 32px
    }

    #header .main-nav > ul > li {
        margin-left: 20px
    }

    #home .digidea-i {
        bottom: -20px;
        width: 14px;
        height: 87px
    }

    #home .tp_text p {
        font-size: 1rem
    }

    .numbers .container {
        max-width: 600px
    }

    .numbers .boxs .item {
        max-width: 50%;
        flex-basis: 50%
    }

    .numbers .boxs .circle {
        max-width: 260px;
        margin-right: auto;
        margin-left: auto
    }

    .references .boxs .item {
        max-width: 16.6666666667%;
        flex-basis: 16.6666666667%
    }

    .references .boxs .image > img {
        padding: 20px;
        opacity: 1;
        filter: grayscale(0)
    }

    .contact .container > .row > .col-12 {
        max-width: 80%
    }

    .about > .inner {
        padding-bottom: 0
    }

    .about .col-6 {
        max-width: 100%;
        flex-basis: 100%
    }

    .about h3 {
        font-size: 1.15em
    }

    .about p {
        font-size: 1em
    }

    .about .about-map {
        max-width: 100%;
        height: auto;
        padding: 50px 20px 20px;
        opacity: .8
    }
}

@media (max-width: 840px) {
    #header .top-bar .col-4 {
        display: none
    }

    #header .top-bar .col-8 {
        max-width: 100%;
        flex-basis: 100%
    }

    #header .bottom-bar .col-4 {
        max-width: 201px;
        flex-basis: 201px
    }

    #header .logo a {
        width: 181px;
        height: 28px
    }

    #header .main-nav > ul > li {
        margin-left: 15px
    }
}

@media (max-width: 767px) {
    #navigation {
        overflow: hidden;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100vw;
        height: 100vh;
        padding-top: 70px;
        padding-bottom: 20px;
        opacity: 0;
        font-size: 15px;
        visibility: hidden;
        pointer-events: none;
        background-color: #fff
    }
}

@media (max-width: 767px)and (min-width: 768px) {
    #navigation {
        padding-top: 40px;
        padding-bottom: 40px
    }
}

@media (max-width: 767px) {
    #navigation .mobile-nav {
        position: relative;
        height: 100%;
        padding: 0 20px;
        overflow-x: hidden;
        overflow-y: auto;
        perspective: 1000px;
        -webkit-overflow-scrolling: touch;
        transform: translate3d(0, 0, 0)
    }
}

@media (max-width: 767px)and (min-width: 768px) {
    #navigation .mobile-nav {
        margin-right: -5%;
        margin-left: -5%
    }
}

@media (max-width: 767px) {
    #navigation .mobile-nav > div {
        pointer-events: auto;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (max-width: 767px) {
    #navigation .mobile-nav > div > ul > li {
        position: relative;
        opacity: 0;
        transform: scale(0.3);
        transition: all .2s linear
    }

    #navigation .mobile-nav > div > ul > li:nth-child(1) {
        transition-delay: 0s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(2) {
        transition-delay: 0.075s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(3) {
        transition-delay: 0.15s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(4) {
        transition-delay: 0.225s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(5) {
        transition-delay: 0.3s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(6) {
        transition-delay: 0.375s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(7) {
        transition-delay: 0.45s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(8) {
        transition-delay: 0.525s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(9) {
        transition-delay: 0.6s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(10) {
        transition-delay: 0.675s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(11) {
        transition-delay: 0.75s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(12) {
        transition-delay: 0.825s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(13) {
        transition-delay: 0.9s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(14) {
        transition-delay: 0.975s
    }

    #navigation .mobile-nav > div > ul > li:nth-child(15) {
        transition-delay: 1.05s
    }

    .open-nav #navigation .mobile-nav > div > ul > li {
        opacity: 1;
        transform: scale(1)
    }

    #navigation .mobile-nav > div > ul > li > a {
        position: relative;
        display: block;
        line-height: 1.5;
        font-size: 2em;
        font-weight: 400;
        color: inherit;
        text-align: center;
        text-decoration: none;
        letter-spacing: .05em;
        transition: all .3s linear
    }

    #navigation .mobile-nav > div > ul > li > a > span {
        display: inline-block;
        padding: 10px 20px;
        border-bottom: 1px solid rgba(40, 40, 40, .2)
    }

    #navigation .mobile-nav > div > ul > li:last-child > a > span {
        border-bottom: 0
    }

    #navigation .mobile-nav > div > ul > li:hover > a, #navigation .mobile-nav > div > ul > li.selected > a {
        color: #29aee6
    }
}

@media (max-width: 767px) {
    #navigation .socials {
        padding-top: 40px
    }

    #navigation .socials a {
        opacity: 0;
        border-radius: 50%;
        transform: translate3d(0, 30px, 0);
        transition: all .2s linear
    }

    #navigation .socials a:nth-child(1) {
        transition-delay: 0s
    }

    #navigation .socials a:nth-child(2) {
        transition-delay: 0.075s
    }

    #navigation .socials a:nth-child(3) {
        transition-delay: 0.15s
    }

    #navigation .socials a:nth-child(4) {
        transition-delay: 0.225s
    }

    #navigation .socials a:nth-child(5) {
        transition-delay: 0.3s
    }

    .open-nav #navigation .socials a {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }

    #navigation .socials .fb {
        background-color: #3b5998
    }

    #navigation .socials .tw {
        background-color: #00acee
    }

    #navigation .socials .in {
        background-color: #de1b85
    }

    #navigation .socials .yt {
        background-color: #c4302b
    }

    #navigation .socials .li {
        background-color: #0e76a8
    }
}

@media (max-width: 767px) {
    .open-nav #navigation {
        opacity: 1;
        visibility: visible
    }

    .open-nav #navigation .main-nav > ul > li > a {
        pointer-events: all
    }

    .open-nav #navigation .main-nav > ul > li > a > span {
        border-bottom-color: rgba(255, 255, 255, .5)
    }
}

@media (max-width: 767px) {
    .socials {
        text-align: center !important
    }

    .socials a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-right: 4px;
        margin-left: 4px
    }

    .socials a > i {
        font-size: 18px
    }
}

@media (max-width: 767px) {
    #site-wrap {
        padding-top: 60px
    }
}

@media (max-width: 767px) {
    #header {
        position: fixed;
        background-color: #fff;
        box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, .15)
    }

    #header .top-bar {
        display: none
    }

    #header .bottom-bar {
        height: 60px
    }

    #header .bottom-bar .row.align-items-end {
        align-items: center
    }

    #header .bottom-bar .col-4 {
        max-width: 240px;
        flex: 0 0 240px
    }

    #header .bottom-bar .langs {
        display: block
    }

    /*#header .logo a {*/
    /*    width: 220px;*/
    /*    height: 34px;*/
    /*    background-image: url(../images/logo.png)*/
    /*}*/

    /*.r2x #header .logo a {*/
    /*    background-image: url(../images/logo@2x.png)*/
    /*}*/

    /*.r3x #header .logo a {*/
    /*    background-image: url(../images/logo@3x.png)*/
    /*}*/

    #header .langs {
        margin-right: 10px;
        padding-right: 10px
    }

    #header .langs::after {
        position: absolute;
        top: 50%;
        right: 0;
        height: 16px;
        content: "";
        border-right: 1px solid rgba(0, 0, 0, .4);
        transform: translate3d(0, -50%, 0)
    }

    #header .langs > a {
        padding: 3px 5px;
        font-size: 1.05em;
        font-weight: 700;
        color: #747273;
        border-radius: 0;
        background: none
    }

    #header .main-nav {
        display: none
    }

    #header .nav-button {
        display: flex;
        margin-right: 0
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.4em;
        font-weight: 700
    }
}

@media (max-width: 767px) {
    .services .boxes {
        gap: 30px;
        /*margin-top: 20px*/
        grid-template-columns: 1fr;
    }

    .services .boxes .item {
        /*max-width: 50%;*/
        /*flex-basis: 50%;*/
        /*margin-top: 30px;*/
        /*padding-right: 30px;*/
        /*padding-left: 30px;*/
        text-align: center
    }

    .services .boxes .image {
        margin-right: auto;
        margin-left: auto
    }

    .services .boxes .title {
        font-size: 1.15em
    }

    .services .boxes p {
        font-size: 1em
    }
}

@media (max-width: 767px) {
    .services > .inner, .numbers > .inner, .ideas > .inner, .contact > .inner {
        background-attachment: fixed
    }
}

@media (max-width: 767px) {
    .ideas .container > .row {
        min-height: 0;
        padding-top: 0;
        padding-bottom: 0
    }

    .ideas .col-6 {
        max-width: 100%;
        flex-basis: 100%
    }
    .ideas .row {
        gap: 50px;
    }
    .ideas .col-6:last-child {padding-left: 10px;}

    .ideas figure {
        float: none;
        width: 100%;
        margin-left: 0;
        padding-right: 20px;
        padding-left: 20px
    }

    .ideas .section > .inner {background-size: auto; background-attachment: scroll}

    .ideas p {text-align: left;}
}

@media (max-width: 767px) {
    .products > .inner {
        padding-right: 20px;
        padding-left: 20px
    }
}

@media (max-width: 767px) {
    .references .boxs .item {
        max-width: 20%;
        flex-basis: 20%
    }
}

@media (max-width: 767px) {
    .contact > .inner {
        background-position: 72% 50%
    }

    .contact > .inner::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: rgba(0, 0, 0, .7)
    }

    .contact .container {
        position: relative
    }

    .contact .container > .row > .col-12 {
        max-width: 100%
    }

    .contact .infos .col-6 {
        max-width: 100%;
        flex-basis: 100%;
        margin-bottom: 30px
    }

    .contact .infos .col-3 {
        margin: 30px 0 0;
        max-width: 50%;
        flex-basis: 50%
    }

    .contact .infos h5 {
        font-size: 1.2em
    }

    .contact .infos p {
        font-size: 1em
    }
}

@media (max-width: 767px) {
    #footer .inner .col-5, #footer .inner .col-7 {
        padding-top: 5px;
        padding-bottom: 5px;
        text-align: center;
        max-width: 100%;
        flex-basis: 100%
    }

    #footer .inner .col-7 {
        order: -1
    }

    #footer .inner .copyright {
        margin-bottom: 20px;
        line-height: 18px
    }

    #footer .inner .copyright > span {
        display: block
    }

    #footer .inner .copyright > span > span {
        display: none
    }
}

@media (max-width: 575px) {
    #header .bottom-bar .col-4 {
        max-width: 227px;
        flex: 0 0 227px
    }

    #header .logo a {
        width: 207px;
        height: 32px
    }

    #home .digidea-i {
        width: 10px;
        height: 62px
    }

    #home .tp-parallax-wrap {
        left: 0 !important
    }

    #home .tp_text {
        width: 100vw !important;
        padding: 0 20px !important
    }

    #home .tp_text p {
        max-width: none
    }

    .numbers .container {
        max-width: 100%
    }

    .numbers .boxs .item {
        max-width: 100%;
        flex-basis: 100%;
        margin-top: 30px
    }

    .numbers .boxs .circle {
        max-width: 280px
    }

    .numbers .boxs .title {
        font-size: .95em
    }

    .references .boxs .item {
        max-width: 25%;
        flex-basis: 25%
    }

    .contact .form .col-6 {
        max-width: 100%;
        flex-basis: 100%
    }

    .contact .form-label {
        margin-bottom: 30px
    }
}

@media (max-width: 440px) {
    .references .boxs .item {
        max-width: 33.3333333333%;
        flex-basis: 33.3333333333%
    }
}

@media (max-width: 390px) {
    #header .bottom-bar .col-4 {
        max-width: 214px;
        flex: 0 0 214px
    }

    #header .logo a {
        width: 194px;
        height: 30px
    }

    .references .boxs .item {
        max-width: 50%;
        flex-basis: 50%
    }
}

@media (max-width: 359px) {
    #header .bottom-bar .col-4 {
        max-width: 201px;
        flex: 0 0 201px
    }

    #header .logo a {
        width: 181px;
        height: 28px
    }
}