@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    --blue: #234895;
    --cyan: #1EA5DD;
    --red: #EB362B;
}

header {
    background: white;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 30;
}

header.elevated {
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.nav-desktop-menu-item:hover {
    border-bottom: 2px solid var(--red);
}

header .logo {
    max-width: 368px;
    width: 100%;
}

header .spacer {
    flex: 1;
    text-align: left;
}

header div {
    margin: auto;
}

header .content {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    margin: auto;
    max-width: 1200px;
}

header .content .nav-desktop-menu {
    align-items: center;
    border-bottom: 2px solid transparent;
    display: flex;
    flex-direction: row;
    height: 60px;
    margin: 0 20px;
}

header .content .nav-desktop-menu:hover {
    border-bottom: 2px solid var(--red);
}

header a {
    color: gray;
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
}

header a:hover {
    color: black;
}

header button {
    background: transparent;
    border: none;
    margin-right: 12px;
    outline: none;
    padding: 8px;
}

header svg {
    height: 24px;
    width: 24px;
}

header .content .nav-desktop-menu.contact {
    border: 2px solid gray;
    border-radius: 40px;
    height: 40px;
    padding: 0 20px;
}

header .content .nav-desktop-menu.contact:hover {
    border: 2px solid var(--red);
    color: var(--red);
}

header .nav-mobile-menu-button {
    cursor: pointer;
    display: none;
}

.nav-mobile-menu a {
    border-radius: 8px;
    transition-duration: .25s;
}

.nav-mobile-menu a:hover {
    background: #80808040;
}

.logo {
    scale: 85%;
}

footer {
    background: var(--blue);
    color: white;
    font-size: 0.9rem;
    line-height: 1.35rem;
}

footer a {
    color: white;
    text-decoration: none;
}

footer .content {
    align-items: start;
    display: flex;
    flex-direction: row;
    gap: 2%;
    margin: auto;
    padding: 20px 20px calc(16px + env(safe-area-inset-bottom, 0));
    width: 1200px;
}

footer .content-content>svg {
    fill: var(--cyan);
    height: 16px;
    margin-right: 20px;
    width: 16px;
}

footer .content-content .follow-us {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
}

footer .content-content .follow-us svg {
    display: block;
    height: 20px;
    width: 20px;
}

footer .spacer {
    flex: 1;
    min-height: 20px;
    min-width: 20px;
}

footer .content-content {
    align-items: center;
    display: flex;
    flex-direction: row;
}

.hidden {
    display: none;
}

.montserrat {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nav-mobile-menu {
    background: white;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    position: fixed;
    z-index: 25;
}

.section {
    margin: auto;
    width: 1200px;
}

.section-title {
    color: var(--blue);
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
}

.section-divider {
    height: 3px;
    position: relative;
    margin: auto;
    max-width: 1200px;
}

.section-grey-divider {
    background: #00000040;
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: 1px;
}

.section-red-divider {
    background: #EB362B;
    height: 3px;
    margin: auto;
    width: 25%;
}

.section-spacer {
    height: 20px;
    width: 20px;
}

.carousel-slider {
    align-items: center;
    display: flex;
    flex-direction: row;
}

.carousel-button {
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    justify-items: center;
    outline: none;
    width: 40px;
    transition-duration: 0.5s;
}

.carousel-button:hover {
    background: #80808040;
}

.carousel-button.transparent {
    opacity: 0;
}

.carousel-button svg {
    height: 24px;
    width: 24px;
}

.carousel-slider .carousel-items {
    display: flex;
    flex-direction: row;
    flex: 1;
    overflow: scroll;
    scroll-snap-align: center;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.carousel-slider .carousel-item {
    scroll-snap-align: center;
    scroll-snap-type: x mandatory;
}

.noventiq-button-wrapper {
    text-align: center;
}

.noventiq-button {
    background: var(--blue);
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    outline: none;
    padding: 8px 32px;
    text-decoration: none;
    text-transform: uppercase;
}

.learn-more {
    font-weight: bold;
}

.admin-button {
    background: black;
    border: none;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    outline: none;
    padding: 8px 20px;
    text-decoration: none;
}

#promotion {
    padding-top: 52px;
}

#promotion img {
    width: 100%;
}

#unprecedent-experience .summary {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

#unprecedent-experience .summary .spacer {
    flex: 1;
    min-width: 120px;
}

#unprecedent-experience .carousel-slider .carousel-items {
    gap: 1%;
}

#unprecedent-experience .carousel-slider .carousel-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    cursor: pointer;
    flex: 1 0 24%;
    justify-self: stretch;
    position: relative;
    scale: .97;
    transition-duration: .2s;
}

#unprecedent-experience .carousel-slider .carousel-item.hover {
    scale: 1;
}

#unprecedent-experience .carousel-slider .carousel-item p.title {
    color: #404040;
    font-size: 1rem;
    font-weight: bold;
    padding: 0 8rem 0 1rem;
}

#unprecedent-experience .carousel-slider .carousel-item p.text {
    color: gray;
    font-size: 0.8rem;
    padding: 0 8rem 0 1rem;
}

#unprecedent-experience .carousel-slider .carousel-item .youtube-logo {
    display: none;
    height: 72px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
}

#unprecedent-experience .carousel-slider .carousel-item .dimmer {
    background: #00000000;
    border-radius: 8px;
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition-duration: .25s;
}

#unprecedent-experience .carousel-slider .carousel-item .dimmer.visible {
    background: #00000040;
    display: block;
}

#unprecedent-experience .carousel-slider .carousel-item .youtube-logo.visible {
    display: block;
}

#top-solution {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(63, 81, 181, 0.2), rgba(63, 81, 181, 0.1));
    /* background: linear-gradient(135deg, #FAD2F800, rgba(63, 81, 181, 0.2), rgba(63, 81, 181, 0.1)); */
    width: 100%;
}

#top-solution .section-content {
    align-items: center;
    display: flex;
    margin: auto;
    max-width: 1200px;
    text-align: center;
}

#top-solution .section-content .left {
    margin-left: 48px;
    flex: 5;
}

#top-solution .section-content .middle {
    flex: 3;
    text-align: center;
}

#top-solution .section-content .right {
    flex: 5;
    margin-right: 48px;
}

#top-solution .section-content img {
    filter: drop-shadow(#80808060 -0.5rem 0.5rem 1px);
    width: 210px;
}

#top-solution .section-content .ms365 {
    color: var(--blue);
    font-size: 1.3rem;
    margin-top: 20px;
}

#top-solution .bottom {
    display: none;
}

.glass-card {
    align-items: center;
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    color: var(--blue);
    display: flex;
    margin: 20px;
    padding: 28px;
    transition-duration: .5s;
    vertical-align: middle;
}

.glass-card:hover {
    scale: 1.05;
}

.save-time {
    margin-left: 70px;
    margin-right: 40px;
    margin-top: 40px;
}

.increase-effeciency {
    margin-bottom: 40px;
    margin-left: 20px;
    margin-right: 90px;
}

.cost-optimized {
    margin-left: 40px;
    margin-right: 90px;
    margin-top: -40px;
    width: 220px;
}

.data-protection {
    margin-left: 90px;
    margin-right: 40px;
}

#suitable-solutions .carousel-slider .carousel-items {
    gap: 1%;
}

#suitable-solutions .carousel-slider .carousel-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px;
    flex: 1 0 19%;
    height: 400px;
    position: relative;
    scale: .97;
    transition-duration: .2s;
}

#suitable-solutions .carousel-slider .carousel-item:hover {
    scale: 1;
}

#suitable-solutions .carousel-slider .carousel-item .content {
    background: linear-gradient(to bottom, #23489580, #234895a0);
    border-radius: 12px;
    bottom: 0;
    color: white;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    padding: 8px;
    position: absolute;
}

#suitable-solutions .carousel-slider .carousel-item .content .spacer {
    display: none;
}

#suitable-solutions .carousel-slider .carousel-item .content.expanded {
    top: 0;
}

#suitable-solutions .carousel-slider .carousel-item .content.expanded .spacer {
    display: block;
    flex: 1;
}

#suitable-solutions .carousel-slider .carousel-item .content .title {
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

#suitable-solutions .carousel-slider .carousel-item .content ul {
    display: none;
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 4px;
    padding-left: 16px;
    padding-right: 8px;
}

#suitable-solutions .carousel-slider .carousel-item .content.expanded ul {
    display: block;
}

#consulting-service {
    background: linear-gradient(to bottom, #e3e3e3, #b6b6b6);
    padding-bottom: 20px;
    width: 100%;
}

#consulting-service .section-content {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: auto;
    width: 1104px;
}

#consulting-service .left {
    width: 40%;
}

#consulting-service .right img {
    width: 100%;
}

#consulting-service .group-separator {
    background: linear-gradient(to right, #989898ff, #d0d0d0ff, #e8e8e8ff, #d0d0d0ff, #989898ff);
    height: 1px;
    width: 100%;
}

#consulting-service .group .title {
    align-items: center;
    color: var(--blue);
    cursor: pointer;
    display: flex;
    font-weight: bold;
}

#consulting-service .group .title svg {
    background: transparent;
    display: block;
    height: 24px;
    width: 24px;
}

#consulting-service .group .title svg.expanded-arrow {
    display: none;
}

#consulting-service .group .title svg.collapsed-arrow {
    display: block;
}

#consulting-service .group.expanded .title svg.expanded-arrow {
    display: block;
}

#consulting-service .group.expanded .title svg.collapsed-arrow {
    display: none;
}

#consulting-service .group ul {
    display: none;
}

#consulting-service .group.expanded ul {
    display: block;
}

#consulting-service .group li:nth-child(1)::marker {
    color: var(--cyan);
}

#consulting-service .group li:nth-child(2)::marker {
    color: var(--red);
}

#consulting-service .group li:nth-child(3)::marker {
    color: var(--blue);
}

#global-partner .section-content {
    display: grid;
    font-weight: bold;
    gap: 1%;
    grid-template-columns: repeat(12, 1fr);
    object-fit: cover;
    padding: 20px 40px 40px;
}

#global-partner .section-content .ten-years {
    font-size: 1.15rem;
    grid-column: 1 / 5;
}

#global-partner .section-content .badge-1 {
    grid-column: 5 / 9;
    object-fit: contain;
}

#global-partner .section-content .badge-2 {
    grid-column: 9 / 13;
    object-fit: contain;
}

#global-partner .section-content .badge-1 .msp,
#global-partner .section-content .badge-2 .msp {
    margin-top: 12px;
}

#global-partner .section-content .badge-1 svg,
#global-partner .section-content .badge-2 svg {
    height: 72px;
    width: 72px;
}

#global-partner .section-content .badge-1 .ms-logo,
#global-partner .section-content .badge-2 .ms-logo {
    align-items: center;
    display: flex;
    flex-direction: row;
    font-weight: 500;
    height: 72px;
    justify-content: center;
}

#global-partner .section-content .badge-1 .microsoft,
#global-partner .section-content .badge-2 .microsoft {
    color: #606060;
    display: block;
    font-weight: 500;
    font-size: 1.7rem;
    text-align: left;
}

#global-partner .section-content .badge-1 .partner,
#global-partner .section-content .badge-2 .partner {
    color: gray;
    display: block;
    font-size: 1rem;
    margin-top: 4px;
    text-align: left;
}

#global-partner .section-content .badge-1 img,
#global-partner .section-content .badge-2 img {
    width: 100%;
}

#global-partner .twenty-experts {
    font-size: 1.1rem;
    grid-column: 1 / 5;
    grid-row: 2 / 4;
}

#global-partner .got-cert {
    grid-column: 5 / 13;
    padding-top: 20px;
}

#global-partner .cloud-security {
    grid-column: 5 / 7;
}

#global-partner .threat-protection {
    grid-column: 7 / 9;
}

#global-partner .id-protection {
    grid-column: 9 / 11;
}

#global-partner .info-protection {
    grid-column: 11 / 13;
}

#global-partner .ten {
    color: var(--cyan);
    font-size: 2.4rem;
    font-weight: bold;
}

#global-partner .years {
    color: var(--cyan);
    font-size: 1.5rem;
    font-weight: bold;
}

#global-partner .twenty {
    color: var(--cyan);
    font-size: 2.4rem;
    font-weight: bold;
}

#global-partner .experts {
    color: var(--cyan);
    font-size: 1.5rem;
    font-weight: bold;
}

#global-partner .gray-item {
    align-items: center;
    background: linear-gradient(to bottom, #f0f0f0, #c0c0c0);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: var(--blue);
    display: flex;
    padding: 12px;
    text-align: center;
}

#successful-projects .carousel-item {
    background-image: url("images/successful-project-1.png");
    background-position: 50% 25%;
    background-repeat: no-repeat;
    background-size: 150% cover;
    color: white;
    flex: 1 0 100%;
    overflow: hidden;
}

#successful-projects .carousel-item>div {
    margin: 40px;
}

#successful-projects .carousel-item .big-title {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

#successful-projects .carousel-item .title {
    font-weight: bold;
    text-transform: uppercase;
}

#successful-projects .carousel-item .text {
    width: 60%;
}

#successful-projects .carousel-item a {
    background: white;
    border-radius: 20px;
    color: var(--blue);
    display: inline-block;
    margin-bottom: 40px;
    margin-left: 40px;
    padding: 8px 20px;
    text-decoration: none;
}

#successful-projects .indicators {
    display: flex;
    flex-direction: row;
    padding: 8px;
    text-align: center;
}

#successful-projects .indicators .spacer {
    flex: 1;
}

#successful-projects .indicator {
    background: white;
    border: 2px solid var(--blue);
    border-radius: 50%;
    cursor: pointer;
    height: 8px;
    margin: 4px;
    width: 8px;
}

#successful-projects .indicator:hover {
    background: var(--cyan);
    border: 2px solid var(--cyan);
}

#successful-projects .indicator.active {
    background: var(--blue);
}

#successful-projects .indicator.active:hover {
    background: var(--cyan);
}

#noventiq-events .carousel-items {
    gap: 1%;
}

#noventiq-events .carousel-item {
    align-self: stretch;
    border: 1px solid #00000040;
    border-radius: 8px;
    flex: 1 0 32.5%;
    justify-self: stretch;
    overflow: visible;
}

#noventiq-events .carousel-item .image-container {
    aspect-ratio: 16 / 9;
    border-radius: 8px 8px 0 0;
    position: relative;
    width: 100%;
}

#noventiq-events .carousel-item:nth-child(1) .image-container {
    background: url("images/noventiq-event-07.png");
    background-position: center;
    background-size: cover;
}

#noventiq-events .carousel-item:nth-child(2) .image-container {
    background: url("images/noventiq-event-01.jpg");
    background-position: center;
    background-size: cover;
}

#noventiq-events .carousel-item:nth-child(3) .image-container {
    background: url("images/noventiq-event-02.png");
    background-position: center;
    background-size: cover;
}

#noventiq-events .carousel-item:nth-child(4) .image-container {
    background: url("images/noventiq-event-03.png");
    background-position: center;
    background-size: cover;
}

#noventiq-events .carousel-item:nth-child(5) .image-container {
    background: url("images/noventiq-event-04.png");
    background-position: center;
    background-size: cover;
}

#noventiq-events .carousel-item:nth-child(6) .image-container {
    background: url("images/noventiq-event-05.png");
    background-position: center;
    background-size: cover;
}

#noventiq-events .carousel-item:nth-child(7) .image-container {
    background: url("images/noventiq-event-06.png");
    background-position: center;
    background-size: cover;
}

#noventiq-events .carousel-item:nth-child(1) .image-container .date,
#noventiq-events .carousel-item:nth-child(4) .image-container .date,
#noventiq-events .carousel-item:nth-child(7) .image-container .date {
    background: var(--blue);
}

#noventiq-events .carousel-item:nth-child(2) .image-container .date,
#noventiq-events .carousel-item:nth-child(5) .image-container .date,
#noventiq-events .carousel-item:nth-child(8) .image-container .date {
    background: var(--red);
}

#noventiq-events .carousel-item:nth-child(3) .image-container .date,
#noventiq-events .carousel-item:nth-child(6) .image-container .date,
#noventiq-events .carousel-item:nth-child(9) .image-container .date {
    background: var(--cyan);
}

#noventiq-events .carousel-item .image-container .date {
    bottom: -4px;
    color: white;
    padding: 8px;
    position: absolute;
    right: 20px;
    text-align: center;
    z-index: 5;
}

#noventiq-events .carousel-item .image-container .date .day {
    font-size: 2rem;
}

#noventiq-events .carousel-item .image-container .date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

#noventiq-events .carousel-item p {
    display: -webkit-box;
    margin: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

#noventiq-events .carousel-item .title {
    font-size: 1.1rem;
    font-weight: 600;
    max-height: 3lh;
    min-height: 3lh;
    text-transform: uppercase;
    -webkit-line-clamp: 3;
}

#noventiq-events .carousel-item .text {
    color: gray;
    line-clamp: 5;
    -webkit-line-clamp: 5;
}

#noventiq-events .carousel-item a {
    background: var(--blue);
    border-radius: 40px;
    color: white;
    display: inline-block;
    margin: 20px;
    padding: 8px 20px;
    text-decoration: none;
    width: auto;
}

#contact-us {
    background:
        linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
        url("images/contact-0.png");
    background-position: center;
    background-size: cover;
    padding-bottom: 20px;
    width: 100%;
}

#contact-us .section-title {
    color: white;
    /* text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; */
}

#contact-us form {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 8px;
    margin: auto;
    max-width: 360px;
}

#contact-us input {
    background: white;
    border: 1px solid gray;
    border-radius: 20px;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 12px 20px;
    outline: none;
}

#contact-us input::placeholder {
    color: #202020;
}

#contact-us input[type="submit"] {
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    padding: 12px 40px;
    text-transform: uppercase;
}

#messenger {
    align-items: center;
    bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: fixed;
    right: 20px;
    z-index: 20;
}

#messenger-text {
    background: #0078FF;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    color: #ffffff;
    font-size: 1.1rem;
    margin-right: 12px;
    padding: 8px 12px;
}

#messenger-text a {
    color: #ffffff;
    text-decoration: none;
}

#messenger-button {
    background: #0078FF;
    border: none;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    cursor: pointer;
    fill: #ffffff;
    height: 60px;
    outline: none;
    padding: 12px;
    width: 60px;
}

.hide-on-desktop {
    display: none;
}

.hide-on-mobile {
    display: block;
}

.hide-on-1200 {
    display: unset;
}

.show-on-1200 {
    display: none;
}

.overlay {
    background: #00000080;
    display: none;
    height: 0;
    inset: 0;
    position: fixed;
    width: 0;
    z-index: 5;
}

.youtube-modal {
    display: none;
    height: 0;
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    top: 30%;
    width: 0;
    z-index: 20;
}

.overlay.open {
    display: block;
    height: 100vh;
    width: 100vw;
}

.youtube-modal.open {
    aspect-ratio: 16 / 9;
    display: block;
    max-width: 640px;
    width: 50%;
}

.youtube-video {
    aspect-ratio: 16 / 9;
    max-width: 640px;
    width: 75vw;
}

#customers-section {
    margin: auto;
    padding-top: 80px;
    width: 95%;
}

table,
th,
td {
    border: 1px solid gray;
    border-collapse: collapse;
}

table {
    width: 100%;
}

th,
td {
    padding: 8px;
}

.nothing-here {
    text-align: center;
}

@media screen and (min-width: 1200px) {

    #global-partner .section-content .ten-years {
        transform: translateY(10%);
    }

    #global-partner .section-content .twenty-experts {
        transform: translateY(25%);
    }
}

@media screen and (max-width: 1200px) {

    footer {
        padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0));
    }

    footer .content {
        padding: 0 0 calc(0 + env(safe-area-inset-bottom, 0));
        width: 100%;
    }

    .section {
        width: 100%;
    }

    .hide-on-1200 {
        display: none;
    }

    .show-on-1200 {
        display: unset;
    }

    #consulting-service .section-content {
        flex-direction: column;
        width: 100%;
    }

    #consulting-service .left {
        width: 90%;
    }

    #global-partner .section-content .ten-years {
        grid-column: 1 / 13;
    }

    #global-partner .section-content .badge-1 {
        grid-column: 1 / 7;
    }

    #global-partner .section-content .badge-2 {
        grid-column: 7 / 13;
    }

    #global-partner .twenty-experts {
        grid-column: 1 / 13;
        grid-row: 3 / 4;
    }

    #global-partner .got-cert {
        grid-column: 1 / 13;
    }

    #global-partner .cloud-security {
        grid-column: 1 / 4;
    }

    #global-partner .threat-protection {
        grid-column: 4 / 7;
    }

    #global-partner .id-protection {
        grid-column: 7 / 10;
    }

    #global-partner .info-protection {
        grid-column: 10 / 13;
    }
}

@media screen and (max-width: 1024px) {

    header .content .nav-desktop-menu {
        display: none;
    }

    header .nav-mobile-menu-button {
        display: inline;
    }

    .nav-mobile-menu {
        padding-bottom: 20px;
        padding-top: 60px;
        width: 100%;
    }

    .nav-mobile-menu a {
        display: block;
        border-bottom: 2px solid transparent;
        color: gray;
        font-weight: bold;
        margin: 0 12px;
        padding: 8px 20px;
        text-decoration: none;
    }

    .carousel-button {
        display: none;
    }

    .carousel-slider .carousel-items {
        padding: 0 2%;
    }

    #unprecedent-experience .carousel-slider .carousel-item {
        flex: 1 0 30%;
        min-height: 160px;
    }

    #suitable-solutions .carousel-slider .carousel-item {
        flex: 1 0 18%;
        min-width: 160px;
    }

    #top-solution .section-content {
        align-items: center;
        flex-direction: column;
        justify-content: stretch;
    }

    #top-solution .section-content .left {
        display: none;
        margin: 0;
    }

    #top-solution .section-content .right {
        display: none;
        margin: 0;
    }

    #top-solution .bottom {
        display: grid;
        gap: 3%;
        grid-template-columns: 1fr 1fr;
        padding: 3%;
        padding-bottom: 32px;
    }

    #top-solution .bottom div {
        column-span: 1;
    }

    #noventiq-events .carousel-item {
        flex: 1 0 30%;
    }

    #successful-projects .carousel-slider .carousel-items {
        padding: 0;
    }
}

@media screen and (max-width: 768px) {

    .section-title {
        font-size: 1.35rem;
    }

    #unprecedent-experience .carousel-slider .carousel-item {
        background-position: center 25%;
        flex: 1 0 40%;
        min-height: 180px;
    }

    #unprecedent-experience .summary {
        flex-direction: column;
        gap: 20px;
    }

    #unprecedent-experience .summary .text {
        padding: 0 20px;
    }

    #consulting-service .section-content .right {
        padding: 0;
        width: 98%;
    }

    #consulting-service .section-content .right img {
        padding: 0;
        width: 100%;
    }

    #suitable-solutions .carousel-slider .carousel-item {
        flex: 1 0 28%;
    }

    #noventiq-events .carousel-item {
        flex: 1 0 45%;
    }

    #contact-us {
        background:
            linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
            url("images/contact-0.png");
        background-position: center;
    }

    footer .content {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {

    footer .content-content {
        font-size: 0.85rem;
    }

    .hide-on-desktop {
        display: block;
    }

    .hide-on-mobile {
        display: none;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .glass-card {
        margin: 0;
    }

    #unprecedent-experience .summary {
        font-size: 0.9rem;
    }

    #unprecedent-experience .carousel-slider .carousel-item {
        background-position: center 25%;
        flex: 1 0 84%;
        min-height: 180px;
    }

    #unprecedent-experience .carousel-slider .carousel-item p.text {
        font-size: 0.8rem;
        padding: 0 12rem 0 1rem;
    }

    #top-solution .section-content img {
        width: 160px;
    }

    .glass-card {
        box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.1) 0px 25px 50px -20px, rgba(0, 0, 0, 0.1) 0px 10px 20px;
        font-size: 0.9rem;
        padding: 16px;
    }

    #suitable-solutions .carousel-slider .carousel-item {
        flex: 1 0 45%;
    }

    #global-partner .section-content .ten-years {
        font-size: 1rem;
        grid-column: 1 / 13;
    }

    #global-partner .section-content .badge-1 {
        /* grid-column: 1 / 13; */
        scale: 1.1;
    }

    #global-partner .section-content .badge-2 {
        /* grid-column: 1 / 13; */
        scale: 1.1;
    }

    #global-partner .twenty-experts {
        grid-column: 1 / 13;
        /* grid-row: 4 / 5; */
    }

    #global-partner .got-cert {
        font-size: 1rem;
        grid-column: 1 / 13;
    }

    #global-partner .cloud-security {
        grid-column: 1 / 7;
    }

    #global-partner .threat-protection {
        grid-column: 7 / 13;
    }

    #global-partner .id-protection {
        grid-column: 1 / 7;
    }

    #global-partner .info-protection {
        grid-column: 7 / 13;
    }

    #global-partner .gray-item {
        font-size: 0.9rem;
    }

    #consulting-service .group .title {
        font-size: 0.9rem;
    }

    #consulting-service .group li {
        font-size: 0.9rem;
    }

    #successful-projects .carousel-item .big-title {
        font-size: 1.2rem;
    }

    #successful-projects .carousel-item .title {
        font-size: 1rem;
    }

    #successful-projects .carousel-item .text {
        font-size: 0.85rem;
    }

    #noventiq-events .carousel-item {
        flex: 1 0 84%;
    }

    #noventiq-events .carousel-item .text {
        font-size: 0.8rem;
    }

    #messenger-text {
        font-size: 0.9rem;
    }

    #messenger-button {
        height: 48px;
        width: 48px;
    }

    .noventiq-button {
        font-size: 1rem;
    }

    .learn-more {
        font-size: 0.8rem;
    }
}