@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300..900&display=auto");

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    height: 100%;
    background-color: #FFFFFF;
    font-family: "Rubik", sans-serif;
    color: #000000;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* BAR */

.brand {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 148px;
    padding-left: 16px;
    padding-right: 16px;
}

.brand-link {
    display: inline-block;
}

.brand-link img {
    width: auto;
    height: 68px;
}

.social {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    column-gap: 8px;
    width: 100%;
    padding: 16px;
}

.social-link {
    display: inline-block;
}

.social-link img {
    width: 40px;
    height: 40px;
    transition: 0.2s;
}

.social-link:hover img {
    transform: scale(1.15);
}

.touch .social-link:hover img {
    transform: scale(1);
}

.social-link:active img,
.touch .social-link:active img {
    transform: scale(1.15);
}

.bar {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0px 0px 24px -2px rgba(29, 152, 166, 0.5);
    z-index: 10;
}

.bar-compact {
    position: fixed;
    top: 0;
    left: 0;
}

.bar-main {
    display: flex;
    justify-content: center;
    height: 50px;
    background: linear-gradient(to right, #2495D3 0%, #42BDEE 100%);
}

.bar-main-layout {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.bar-main-iso {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar-main-iso-alt {
    display: none;
    flex: auto;
    padding-left: 14px;
}

.bar-main-iso img {
    width: 32px;
    height: 32px;
}

.bar-main-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 17px;
    font-weight: 400;
    text-transform: uppercase;
    transition: 0.35s;
}

.bar-main-link:hover {
    color: #0F5F68;
}

.touch .bar-main-link:hover {
    color: #FFFFFF;
}

.bar-main-link:active,
.touch .bar-main-link:active {
    color: #0F5F68;
}

.bar-main-link-on {
    color: #0D5259;
    font-weight: 500;
}

.bar-main-link-on:hover {
    color: #0D5259;
}

.touch .bar-main-link-on:hover {
    color: #0D5259;
}

.bar-main-link-on:active,
.touch .bar-main-link-on:active {
    color: #0D5259;
}

.bar-main-link-shop {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: calc(100% - 10px);
    padding-left: 17px;
    padding-right: 18px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 8px;
    border: solid 2px transparent;
    background-color: #0F5F68;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 17px;
    font-weight: 400;
    text-transform: uppercase;
    transition: 0.35s;
}

.bar-main-link-shop svg {
    width: 22px;
    height: 20px;
}

.bar-main-link-shop:hover {
    background-color: #F2B90D;
    color: #0F5F68;
}

.touch .bar-main-link-shop:hover {
    background-color: #0F5F68;
    color: #FFFFFF;
}

.bar-main-link-shop:active,
.touch .bar-main-link-shop:active {
    background-color: #F2B90D;
    color: #0F5F68;
}

.bar-main-link-shop path {
    fill: #F2B90D;
    transition: 0.35s;
}

.bar-main-link-shop:hover path {
    fill: #0F5F68;
}

.touch .bar-main-link-shop:hover path {
    fill: #F2B90D;
}

.bar-main-link-shop:active path,
.touch .bar-main-link-shop:active path {
    fill: #0F5F68;
}

.bar-main-divisor {
    width: 1px;
    height: calc(100% - 24px);
    margin-top: 12px;
    margin-bottom: 12px;
    background-color: rgba(255, 255, 255, 0.25);
}

.bar-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 64px;
    height: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 18px;
    padding-right: 18px;
    cursor: pointer;
}

.bar-menu-line {
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: #FFFFFF;
    transition: 0.35s;
}

.bar-menu:hover .bar-menu-line {
    background-color: #0F5F68;
}

.touch .bar-menu:hover .bar-menu-line {
    background-color: #FFFFFF;
}

.bar-menu:active .bar-menu-line,
.touch .bar-menu:active .bar-menu-line {
    background-color: #0F5F68;
}

.bar-sub {
    display: flex;
    justify-content: center;
    background-color: #0F5F68;
}

.bar-sub::-webkit-scrollbar {
    display: none;
}

.bar-sub-layout {
    display: flex;
    justify-content: center;
    column-gap: 24px;
    width: 100%;
    max-width: 800px;
}

.bar-sub-link {
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 12px;
    border-bottom: solid 3px transparent;
    color: #73C8D7;
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    text-transform: uppercase;
    transition: 0.35s;
}

.bar-sub-link:hover {
    color: #FFFFFF;
}

.touch .bar-sub-link:hover {
    color: #73C8D7;
}

.bar-sub-link:active,
.touch .bar-sub-link:active {
    color: #FFFFFF;
}

.bar-sub-link-on {
    border-bottom-color: #42BDEE;
    color: #FFFFFF;
    font-weight: 500;
}

.bar-sub-link-on:hover {
    color: #FFFFFF;
}

.touch .bar-sub-link-on:hover {
    color: #FFFFFF;
}

.bar-sub-link-on:active,
.touch .bar-sub-link-on:active {
    color: #FFFFFF;
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 540px;
    height: 100%;
    background: linear-gradient(45deg, #2495D3 0%, #42BDEE 100%);
    animation: panel-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes panel-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 95, 104, 0.75);
    backdrop-filter: blur(8px);
    animation: panel-bg-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes panel-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.panel-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.panel-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.panel-actions {
    display: flex;
    justify-content: center;
    column-gap: 16px;
}

.panel-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 20px;
    height: 20px;
    transition: 0.5s;
}

.panel-close:hover img {
    transform: rotate(180deg);
}

.touch .panel-close:hover img {
    transform: rotate(0deg);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: rotate(180deg);
}

.panel-actions-buttons {
    flex: none;
    display: flex;
    column-gap: 22px;
    padding-bottom: 16px;
}

.panel-buttons {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.panel-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 100%;
    padding-top: 32px;
}

.panel-networks {
    flex: none;
    display: flex;
    justify-content: center;
    column-gap: 24px;
    padding-bottom: 32px;
}

.panel-link-block {
    position: relative;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    opacity: 0;
    transform: translateY(-32px);
    animation-name: panel-link-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-link {
    display: inline-block;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.35s;
}

.panel-link:hover {
    color: #0F5F68;
}

.touch .panel-link:hover {
    color: #FFFFFF;
}

.panel-link:active,
.touch .panel-link:active {
    color: #0F5F68;
}

.panel-link-on {
    color: #0D5259;
    font-weight: 500;
}

.panel-link-on:hover {
    color: #0D5259;
    font-weight: 500;
}

.touch .panel-link-on:hover {
    color: #0D5259;
    font-weight: 500;
}

.panel-link-on:active,
.touch .panel-link-on:active {
    color: #0D5259;
    font-weight: 500;
}

.panel-link-block:nth-child(1) {
    animation-delay: 0.1s;
}

.panel-link-block:nth-child(2) {
    animation-delay: 0.2s;
}

.panel-link-block:nth-child(3) {
    animation-delay: 0.3s;
}

.panel-link-block:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes panel-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-social {
    width: 32px;
    height: 32px;
    opacity: 0;
    transform: scale(0.75);
    cursor: pointer;
    animation-name: panel-social-anima;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.panel-social img {
    width: 100%;
    height: 100%;
    transition: 0.35s;
}

.panel-social:hover img {
    transform: scale(1.25);
}

.touch .panel-social:hover img {
    transform: scale(1);
}

.panel-social:active img,
.touch .panel-social:active img {
    transform: scale(1.25);
}

.panel-social:nth-child(1) {
    animation-delay: 0.5s;
}

.panel-social:nth-child(2) {
    animation-delay: 0.75s;
}

.panel-social:nth-child(3) {
    animation-delay: 1s;
}

@keyframes panel-social-anima {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* INTRO */

.intro {
    position: relative;
    width: 100%;
    height: 85%;
    background-color: #2495D3;
    overflow: hidden;
}

.intro-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    overflow: hidden;
}

.intro-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #42BDEE 0%, #2495D3 100%);
    opacity: 0.6;
}

.intro-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 48px;
    padding-left: 20%;
}

.intro-content-frame {
    width: 100%;
    max-width: 880px;
    padding-bottom: 7%;
}

.intro-title {
    padding-bottom: 16px;
    color: #FFFFFF;
    font-size: 48px;
    line-height: 56px;
    font-weight: 600;
}

.intro-caption {
    padding-bottom: 32px;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
}

.intro-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: 48px;
    padding-left: 18px;
    padding-right: 17px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 8px;
    background-color: #0F5F68;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.35s;
}

.intro-button svg {
    width: auto;
    height: 15px;
}

.intro-button:hover {
    background-color: #42BDEE;
}

.touch .intro-button:hover {
    background-color: #0F5F68;
}

.intro-button:active,
.touch .intro-button:active {
    background-color: #42BDEE;
}

.intro-button path {
    fill: #42BDEE;
    transition: 0.35s;
}

.intro-button:hover path {
    fill: #FFFFFF;
}

.touch .intro-button:hover path {
    fill: #42BDEE;
}

.intro-button:active path,
.touch .intro-button:active path {
    fill: #FFFFFF;
}

/* SERVICES */

.services {
    padding-top: 62px;
}

.services-title {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    color: #2495D3;
    font-size: 48px;
    line-height: 56px;
    font-weight: 600;
    text-align: center;
}

.services-caption {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 32px;
    color: #42BDEE;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 24px;
    row-gap: 24px;
    padding-left: 24px;
    padding-right: 24px;
}

.services-item {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.services-picture {
    flex: none;
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    background-color: #B3DFE7;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.35s;
}

.services-picture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #42BDEE 0%, #2495D3 100%);
    opacity: 0.25;
}

.services-item:hover .services-picture {
    filter: brightness(80%);
}

.touch .services-item:hover .services-picture {
    filter: brightness(100%);
}

.services-item:active .services-picture,
.touch .services-item:active .services-picture {
    filter: brightness(80%);
}

.services-info {
    flex: auto;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding: 16px;
    background-color: #42BDEE;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}

.services-info>div:nth-child(1) {
    flex: auto;
    height: 100%;
}

.services-info>div:nth-child(2) {
    flex: none;
}

.services-name {
    transition: 0.35s;
}

.services-item:hover .services-name {
    color: #0F5F68;
}

.touch .services-item:hover .services-name {
    color: #FFFFFF;
}

.services-item:active .services-name,
.touch .services-item:active .services-name {
    color: #0F5F68;
}

.services-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: 48px;
    padding-left: 18px;
    padding-right: 17px;
    border-radius: 8px;
    background-color: #0F5F68;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.35s;
}

.services-item .services-button svg {
    width: auto;
    height: 15px;
}

.services-item:hover .services-button {
    background-color: #2495D3;
}

.touch .services-item:hover .services-button {
    background-color: #0F5F68;
}

.services-item:active .services-button,
.touch .services-item:active .services-button {
    background-color: #2495D3;
}

.services-item .services-button path {
    fill: #42BDEE;
    transition: 0.35s;
}

.services-item:hover .services-button path {
    fill: #FFFFFF;
}

.touch .services-item:hover .services-button path {
    fill: #42BDEE;
}

.services-item:active .services-button path,
.touch .services-item:active .services-button path {
    fill: #FFFFFF;
}

/* COMPANY */

.company {
    padding: 24px;
}

.company-grid {
    display: grid;
    grid-template-columns: 0.6fr 0.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    height: 640px;
    margin: 0 auto;
}

.company-item-1 {
    position: relative;
    grid-column: 1;
    grid-row: 1 / span 2;
    border-radius: 12px;
    background-color: #E2E2E2;
    background-image: url(../assets/dante-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.company-item-2 {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 2;
    border-radius: 12px;
    background-color: #E2E2E2;
    background-image: url(../assets/dante-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.company-item-3 {
    position: relative;
    grid-column: 3;
    grid-row: 1;
    border-radius: 12px;
    background-color: #E2E2E2;
    background-image: url(../assets/dante-3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.company-item-4 {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(-45deg, #3EBBD0 0%, #1D98A6 100%);
    text-align: center;
}

.company-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #42BDEE 0%, #2495D3 100%);
    opacity: 0.25;
}

.company-caption {
    padding-bottom: 16px;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
}

.company-name {
    color: rgba(15, 95, 104, 0.5);
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.company-name strong {
    color: #0F5F68;
    font-weight: 500;
}

.company-quality {
    padding-left: 24px;
    padding-right: 24px;
    background: linear-gradient(-45deg, rgba(62, 188, 209, 0.9) 45%, rgba(29, 152, 166, 1) 0%);
}

.company-quality-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 72px;
    padding-bottom: 148px;
}

.company-quality-title {
    padding-bottom: 20px;
    padding-top: 48px;
    color: #FFFFFF;
    font-size: 36px;
    line-height: 42px;
    font-weight: 500;
}

.company-quality-title-alt {
    padding-top: 0px;
    color: #0D5259;
    font-size: 50px;
    line-height: 56px;
    font-weight: 600;
}

.company-quality-text {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
}

.company-quality-text strong {
    color: #0D5259;
    font-weight: 600;
}

.company-quality-text p {
    padding-bottom: 16px;
}

.company-quality-text p:last-of-type {
    padding-bottom: 0;
}

/* CLIENTS */

.clients {
    padding-top: 64px;
    padding-left: 10%;
    padding-right: 10%;
}

.clients-alt {
    padding-top: 0px;
}

.clients-title {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 16px;
    color: #1D97A5;
    font-size: 48px;
    line-height: 56px;
    font-weight: 600;
    text-align: center;
}

.clients-title-alt {
    max-width: 480px;
    padding-bottom: 32px;
    font-size: 32px;
    line-height: 40px;
}

.clients-caption {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 32px;
    color: #3EBBD0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    text-align: center;
}

.clients-swiper {
    width: 100%;
    padding-bottom: 40px !important;
    --swiper-theme-color: #3EBBD0;
    --swiper-navigation-size: 20px;
    --swiper-navigation-sides-offset: 0px;
    --swiper-pagination-right: 0px;
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-width: 8px;
    --swiper-pagination-bullet-height: 8px;
    --swiper-pagination-bullet-inactive-color: rgb(62, 187, 208);
    --swiper-pagination-bullet-inactive-opacity: 0.5;
}

.clients-swiper .swiper-button-prev {
    left: 2px;
    width: 30px;
    height: 30px;
    margin-top: -5%;
}

.clients-swiper .swiper-button-next {
    right: 2px;
    width: 30px;
    height: 30px;
    margin-top: -5%;
}

.clients-slide {
    position: relative;
}

.clients-layout {
    padding: 32px;
    border-radius: 12px;
    background-color: #EDEDED;
}

.clients-picture {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 10px;
    background-color: #E2E2E2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.clients-picture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #42BDEE 0%, #2495D3 100%);
    opacity: 0.25;
}

.clients-info {
    display: flex;
    padding-top: 12px;
}

.clients-logo {
    flex: none;
    width: 108px;
    height: 72px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clients-name {
    flex: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #1D98A6;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    text-align: right;
}

/* MARQUEE */

.certified {
    display: flex;
    justify-content: center;
    column-gap: 24px;
    margin-top: 96px;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: #EFEFEF;
}

.certified-title {
    display: flex;
    align-items: center;
    color: #3EBCD1;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    text-align: right;
}

.certified-logo {
    display: flex;
    align-items: center;
}

.certified-logo img {
    width: auto;
    height: 40px;
}

.marquee {
    display: flex;
    flex-direction: column;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    max-width: 100vw;
    margin: auto;
    margin-bottom: 96px;
    padding-top: 16px;
    padding-bottom: 16px;
    background: linear-gradient(45deg, #2495D3 0%, #42BDEE 100%);
}

.marquee-frame {
    display: flex;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    overflow: hidden;
    mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
    -webkit-mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
}

.marquee-logos {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    min-width: 100%;
    animation: marquee-anima 120s linear infinite;
}

@keyframes marquee-anima {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14)));
    }
}

.marquee-logos div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 64px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* SERVICE */

.service-intro {
    position: relative;
    width: 100%;
    height: 70%;
    background-color: #0E525A;
    overflow: hidden;
}

.service-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: service-bg-anima;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes service-bg-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #42BDEE 0%, #2495D3 100%);
    opacity: 0.75;
}

.service-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
}

.service-name {
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 32px;
    border-bottom: solid 3px #0F5F68;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}

.service-title {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 16px;
    color: #FFFFFF;
    font-size: 48px;
    line-height: 56px;
    font-weight: 600;
    text-align: center;
}

.service-caption {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 32px;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    text-align: center;
    opacity: 0.75;
}

.service-frame {
    background: linear-gradient(to bottom, #EDEDED 0%, #FFFFFF 100%);
}

.service-grid {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: 24px;
    padding-right: 24px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    padding: 20px;
    border-radius: 14px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 24px -2px rgba(0, 0, 0, 0.15);
}

.service-item:nth-child(even) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
}

.service-image {
    order: 1;
}

.service-img {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 9px;
    background-color: #0E525A;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #42BDEE 0%, #2495D3 100%);
    opacity: 0.25;
}

.service-info {
    order: 2;
    padding: 32px;
    padding-bottom: 48px;
}

.service-item:nth-child(even) .service-image {
    order: 2;
}

.service-item:nth-child(even) .service-info {
    order: 1;
}

.service-header {
    padding-bottom: 16px;
    color: #3EBBD0;
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
}

.service-text {
    color: #0D5259;
    font-size: 16px;
    line-height: 24px;
}

.service-text strong {
    font-weight: 600;
}

.service-text p {
    padding-bottom: 16px;
}

.service-text p:last-child {
    padding-bottom: 0;
}

.service-text-img {
    width: auto;
    height: 64px;
}

.service-text-img-alt {
    width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0.85;
}

.service-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: 48px;
    padding-left: 16px;
    padding-right: 18px;
    margin-top: 24px;
    border-radius: 8px;
    background-color: #2495D3;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.35s;
}

.service-button svg {
    width: auto;
    height: 23px;
}

.service-button:hover {
    background-color: #42BDEE;
}

.touch .service-button:hover {
    background-color: #2495D3;
}

.service-button:active,
.touch .service-button:active {
    background-color: #42BDEE;
}

.service-button path {
    fill: #5BCFFD;
    transition: 0.35s;
}

.service-button:hover path {
    fill: #FFFFFF;
}

.touch .service-button:hover path {
    fill: #5BCFFD;
}

.service-button:active path,
.touch .service-button:active path {
    fill: #FFFFFF;
}

/* CONTACT */

.banner-frame {
    padding: 24px;
    padding-top: 72px;
}

.banner {
    position: relative;
    width: 100%;
    max-width: 1300px;
    padding: 24px;
    padding-top: 124px;
    padding-bottom: 124px;
    margin: 0 auto;
    border-radius: 12px;
    background-color: #2495D3;
    box-shadow: 3px 3px 24px 0px rgba(36, 149, 211, 0.5);
    overflow: hidden;
}

.banner-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: banner-picture-anima;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes banner-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 82, 89, 1) 0%, rgba(13, 82, 89, 0) 100%);
    opacity: 0.75;
}

.banner-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding-left: 10%;
    padding-right: 10%;
    z-index: 2;
}

.banner-title {
    color: #5BCFFD;
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
}

.banner-caption {
    padding-top: 18px;
    padding-bottom: 40px;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
}

.banner-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: 48px;
    padding-left: 18px;
    padding-right: 17px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 8px;
    background-color: #2495D3;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.35s;
}

.banner-button svg {
    width: auto;
    height: 15px;
}

.banner-button:hover {
    background-color: #42BDEE;
}

.touch .banner-button:hover {
    background-color: #2495D3;
}

.banner-button:active,
.touch .banner-button:active {
    background-color: #42BDEE;
}

.banner-button path {
    fill: #5BCFFD;
    transition: 0.35s;
}

.banner-button:hover path {
    fill: #FFFFFF;
}

.touch .banner-button:hover path {
    fill: #5BCFFD;
}

.banner-button:active path,
.touch .banner-button:active path {
    fill: #FFFFFF;
}

/* FOOTER */

.footer {
    width: 100%;
}

.footer-title {
    padding-top: 22px;
    padding-bottom: 22px;
    background-color: #FFFFFF;
    color: #1D98A6;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0px 0px 24px -2px rgba(29, 152, 166, 0.25);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer-left {
    display: flex;
    justify-content: center;
    padding-top: 48px;
    padding-bottom: 56px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: #3EBCD1;
    text-align: right;
}

.footer-contact {
    color: #0D5259;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
}

.footer-contact-link {
    display: inline-flex;
    column-gap: 8px;
    margin-top: 6px;
    margin-bottom: 14px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.35s;
}

.footer-contact-link:hover {
    color: #0F5F68;
}

.touch .footer-contact-link:hover {
    color: #FFFFFF;
}

.footer-contact-link:active,
.touch .footer-contact-link:active {
    color: #0F5F68;
}

.footer-contact-link img {
    width: 20px;
    height: 20px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 56px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: #1D98A6;
    text-align: center;
}

.footer-networks {
    display: flex;
    justify-content: center;
    column-gap: 32px;
    padding-top: 24px;
}

.footer-social {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.footer-social img {
    width: 100%;
    height: 100%;
    transition: 0.35s;
}

.footer-social:hover img {
    transform: scale(1.25);
}

.touch .footer-social:hover img {
    transform: scale(1);
}

.footer-social:active img,
.touch .footer-social:active img {
    transform: scale(1.25);
}

/* WHATSAPP */

.whatsapp {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 40px;
    text-decoration: none;
    cursor: pointer;
    transform: translateY(0px);
    animation: whatsapp-anima 5s ease-in-out infinite;
    z-index: 20;
}

@keyframes whatsapp-anima {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.whatsapp-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 1000px;
    background: linear-gradient(45deg, #2495D3 0%, #42BDEE 100%);
    box-shadow: 0px 0px 16px -3px rgba(36, 149, 211, 0.75);
    transition: 0.25s;
    z-index: 2;
}

.whatsapp:hover .whatsapp-icon {
    transform: scale(1.16);
}

.touch .whatsapp:hover .whatsapp-icon {
    transform: scale(1);
}

.whatsapp:active .whatsapp-icon,
.touch .whatsapp:active .whatsapp-icon {
    transform: scale(1.16);
}

.whatsapp svg {
    display: block;
    width: 40px;
    height: 40px;
}

.whatsapp svg path {
    fill: #FFFFFF;
    transition: 0.25s;
}

/* RESPONSIVE */

@media (max-width: 1024px) {

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 840px) {

    .intro-content {
        padding: 24px;
    }

    .clients {
        padding-left: 24px;
        padding-right: 24px;
    }

}

@media (max-width: 780px) {

    .brand-link img {
        width: 100%;
        height: auto;
    }

    .bar-menu {
        display: flex;
    }

    .bar-main-link {
        display: none;
    }

    .bar-main-divisor {
        display: none;
    }

    .bar-main-layout {
        max-width: unset;
        justify-content: flex-end;
    }

    .bar-main-iso {
        display: none;
    }

    .bar-main-iso-alt {
        display: flex;
    }

    .social {
        display: none;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }

    .footer-left {
        text-align: center;
    }

    .footer-right {
        padding-bottom: 124px;
    }

    .company-quality-layout {
        grid-template-columns: 1fr;
    }

    .company-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: unset;
        height: unset;
    }

    .company-item-1 {
        order: 1;
        grid-column: unset;
        grid-row: unset;
        padding-bottom: 100%;
    }

    .company-item-2 {
        order: 3;
        grid-column: unset;
        grid-row: unset;
        padding-bottom: 100%;
    }

    .company-item-3 {
        order: 4;
        grid-column: unset;
        grid-row: unset;
        padding-bottom: 100%;
    }

    .company-item-4 {
        order: 2;
        grid-column: unset;
        grid-row: unset;
    }

    .service-grid {
        row-gap: 24px;
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(even) .service-image {
        order: 1;
    }

    .service-item:nth-child(even) .service-info {
        order: 2;
    }

    .service-img {
        padding-bottom: 66%;
    }

    .service-info {
        padding: 0px;
        padding-top: 26px;
        padding-bottom: 48px;
    }

}

@media (max-width: 700px) {

    .banner-content {
        padding-left: 0%;
        padding-right: 0%;
    }

}

@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 570px) {

    .bar-main-link-shop {
        padding-left: 11px;
        padding-right: 12px;
    }

    .bar-sub {
        justify-content: unset;
        overflow: auto;
    }

    .bar-sub-layout {
        justify-content: unset;
        column-gap: 16px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .company-grid {
        grid-template-columns: 1fr;
    }

    .company-item-2 {
        padding-bottom: 70%;
    }

    .company-item-3 {
        padding-bottom: 70%;
    }

    .company-item-4 {
        padding-top: 120px;
        padding-bottom: 120px;
    }

}

@media (max-width: 490px) {

    .panel-bg {
        opacity: 0 !important;
    }

    .banner {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .whatsapp {
        bottom: 30px;
        right: 30px;
    }

    .whatsapp-icon {
        width: 64px;
        height: 64px;
    }

    .whatsapp svg {
        width: 36px;
        height: 36px;
    }

    .intro-title {
        font-size: 32px;
        line-height: 40px;
    }

    .intro-caption {
        font-size: 18px;
        line-height: 26px;
    }

    .intro-button {
        height: 44px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 15px;
        line-height: 15px;
    }

    .intro-button svg {
        height: 12px;
    }

    .services-title {
        font-size: 36px;
        line-height: 44px;
    }

    .services-caption {
        font-size: 18px;
        line-height: 26px;
    }

    .services-info {
        font-size: 20px;
        line-height: 28px;
    }

    .services-button {
        height: 44px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 15px;
        line-height: 15px;
    }

    .services-item .services-button svg {
        height: 12px;
    }

    .clients-title {
        font-size: 36px;
        line-height: 44px;
    }

    .clients-caption {
        font-size: 18px;
        line-height: 26px;
    }

    .clients-layout {
        padding: 18px;
    }

    .clients-swiper .swiper-button-prev {
        display: none;
    }

    .clients-swiper .swiper-button-next {
        display: none;
    }

    .clients-name {
        font-size: 16px;
        line-height: 24px;
    }


    .banner-title {
        font-size: 36px;
        line-height: 46px;
    }

    .banner-caption {
        font-size: 18px;
        line-height: 28px;
    }

    .banner-button {
        height: 44px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 15px;
        line-height: 15px;
    }

    .banner-button svg {
        height: 12px;
    }

    .service-button {
        height: 44px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 15px;
        line-height: 15px;
    }

    .service-button svg {
        height: 19px;
    }

    .certified-title {
        font-size: 16px;
        line-height: 18px;
    }

    .footer-contact {
        font-size: 22px;
        line-height: 26px;
    }

    .company-quality-title-alt {
        font-size: 40px;
        line-height: 46px;
    }

    .service-name {
        padding-bottom: 4px;
        font-size: 18px;
        line-height: 26px;
    }

    .service-title {
        font-size: 32px;
        line-height: 40px;
    }

    .service-caption {
        font-size: 20px;
        line-height: 28px;
    }

    .service-header {
        font-size: 22px;
        line-height: 30px;
    }

}