:root {
    --color-black: #000;
    --color-white: #fff;
    --accent-color: #005eb8;
    --accent-color-2: #0b3155;
    --accent-color-3: #a2c9e2;
    --accent-color-4: #f3f6fb;
    --accent-background-color: #f3f6fb;
    --font-family-1: 'Poppins', sans-serif;
    --font-family-2: 'Work Sans', sans-serif;
    --page-max-width: 1920px;
    --container-padding: 80px;
    --container-margin-bottom: 80px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --input-error-background-color: rgb(247, 228, 228);
    --input-error-border-color: #f69595bd;
    --tooltip-background-color: #fff;
    --hs-menu-line-color: #005eb8;
}

@media (max-width: 1600px) {
    :root {
        --container-padding: 5%;
    }
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: 2px solid #f00;
    outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: 0.4;
    pointer-events: none;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

.site-container {
    min-height: 400px;
    overflow: hidden;
}

.is-hidden {
    display: none !important;
}

.btn-reset {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/* || HEADER start|| */
.hc-nav-trigger {
    position: relative;
    display: none;
    padding: 0;
    margin-left: auto;
    margin-right: 5%;
}

.hc-offcanvas-nav .nav-item input[type='text'] {
    padding: 10px 15px;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    background-color: white;
    color: #000;
}
.header.header--scrolled {
    background-color: white;
}
.header.header--scrolled .header__layout {
    padding: 0 var(--container-padding) 0 0;
}
.header__layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 30px;
    column-gap: 30px;
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding) 0 0;
}
.header__layout .header__submenu {
    top: calc(100% - 5px);
}
.header__layout-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 35px 1fr;
    row-gap: 15px;
}
.header__layout-top {
    display: flex;
    justify-content: flex-end;
    -moz-column-gap: 23px;
    column-gap: 23px;
}
.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: var(--container-padding);
    min-width: 250px;
}
@media (max-width: 600px) {
    .header__logo {
        min-width: 0;
    }
}
.header__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    pointer-events: none;
    opacity: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    background-color: var(--accent-color-4);
    width: 100%;
}
.header__submenu-about {
    width: 100%;
    max-width: 1300px;
    padding: 70px var(--container-padding);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    -moz-column-gap: 200px;
    column-gap: 200px;
}
.header__submenu-about__text-title {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 15px;
    padding-left: 45px;
    position: relative;
}
.header__submenu-about__text-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(/img/icons/vi_title-touch.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.header__submenu-about__text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #000000;
}
.header__submenu-about__links {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    position: relative;
}
.header__submenu-about__links::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 1px;
    height: 100%;
    background-color: #c1c1c1;
}
.header__submenu-about__links a {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--accent-color-2);
    padding: 5px 10px;
    transition: 0.3s ease;
    border-radius: 3px;
}
.header__submenu-about__links a:hover {
    background-color: var(--accent-color);
    color: #fff;
}
.header__submenu-services {
    display: flex;
    justify-content: center;
    -moz-column-gap: 100px;
    column-gap: 100px;
    padding: 70px var(--container-padding);
}
.header__submenu-services__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    max-width: 333px;
    color: #000;
    position: relative;
    border-bottom: 5px solid transparent;
    transition: 0.2s ease;
    position: relative;
}
.header__submenu-services__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--accent-color-3);
}
.header__submenu-services__item > div:nth-child(1) {
    font-family: var(--font-accent);
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 50px;
    margin-bottom: 15px;
    position: relative;
}
.header__submenu-services__item > div:nth-child(1) a {
    display: inline-block;
    color: var(--accent-color);
    transition: 0.2s ease;
    padding: 3px 10px;
}
.header__submenu-services__item > div:nth-child(1) a:hover {
    text-decoration: underline;
    /* text-shadow: 0px 0px 5px #005fb84e; */
    /* transform: scale(1.05); */
    background-color: var(--accent-color);
    color: #fff;
}
.header__submenu-services__item > div:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(/img/icons/vi_title-touch.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.header__submenu-services__item > div:nth-child(2) {
    flex: 1;
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
}
.header__submenu-services__item > div:nth-child(2) > img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 55/33;
}
.header__submenu-services__item > p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 180%;
}
.header__submenu-services__item > span {
    display: flex;
    align-items: center;
    padding: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: var(--accent-color-2);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    border-radius: 3px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.header__submenu-services__item:hover {
    border-bottom: 5px solid var(--accent-color);
    box-shadow: 0px 35px 20px -25px rgba(0, 0, 0, 0.1);
}
.header__submenu-services__item-links {
    display: flex;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
/* .header__submenu-services__item-links a:nth-child(odd) {
  display: flex;
  align-items: center;
  padding: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--accent-color-2);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.header__submenu-services__item-links a:nth-child(odd):hover {
  background-color: var(--accent-color);
} */
.header__submenu-services__item-links a {
    display: flex;
    align-items: center;
    padding: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: transparent;
    border: 1px solid var(--accent-color-2);
    color: var(--accent-color-2);
    font-weight: 600;
    font-size: 12px;
    border-radius: 3px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.header__submenu-services__item-links a:hover {
    background-color: var(--accent-color);
    color: #fff;
}
.header__menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    -moz-column-gap: 30px;
    column-gap: 30px;
    color: #000;
}
.header__menu-item:hover .header__menu-link {
    background-color: #fff;
    color: var(--accent-color);
}
.header__menu-item:hover .header__submenu {
    pointer-events: auto;
    opacity: 1;
    -webkit-animation: fade-in 0.3s ease-in-out;
    animation: fade-in 0.3s ease-in-out;
}
@media (max-width: 1050px) {
    .header__menu-item {
        display: none;
    }
}
.header__menu-item-mobile {
    display: none;
}
@media (max-width: 1050px) {
    .header__menu-item-mobile {
        display: block;
    }
}
.header__menu-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 25px 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #000;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    transition: 0.2s ease;
    white-space: nowrap;
}
.header__menu-link:not(.header__menu-link--accent):hover {
    color: var(--accent-color);
}
.header__menu-link.header__menu-link--active {
    color: var(--accent-color);
}
.header__menu-link.header__menu-link--active.header__menu-link--accent {
    color: #fff;
    background-color: var(--accent-color);
}
.header__menu-button {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    background-color: var(--accent-color-2);
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border: 0;
    white-space: nowrap;
    transition: 0.3s ease;
    min-width: 50px;
    cursor: pointer;
}
.header__menu-button img {
    display: none;
    width: 20px;
    height: 20px;
}
@media (max-width: 1450px) {
    .header__menu-button img {
        display: block;
    }
}
@media (max-width: 1450px) {
    .header__menu-button {
        margin-left: 10px;
    }
    .header__menu-button span {
        display: none;
    }
}
.header__menu-button:hover {
    background-color: var(--accent-color);
}
@media (max-width: 1600px) {
    .header__menu {
        -moz-column-gap: 0;
        column-gap: 0;
    }
}
.header__quote-btn {
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: #fff;
    border: 0;
    font-size: clamp(14px, 1.5vw, 18px);
    text-align: center;
    padding: 10px 25px;
    cursor: pointer;
    transition: 0.2s ease;
}
.header__quote-btn svg {
    display: none;
}
.header__quote-btn:hover {
    background-color: var(--accent-color-2);
}
@media (max-width: 1050px) {
    .header__quote-btn {
        margin-left: auto;
    }
}
@media (max-width: 600px) {
    .header__quote-btn {
        padding: 10px;
    }
    .header__quote-btn svg {
        display: block;
    }
    .header__quote-btn span {
        display: none;
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
        max-height: 0;
        overflow: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
        overflow: visible;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
        max-height: 0;
        overflow: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
        overflow: visible;
    }
}
@-webkit-keyframes fade-in-center {
    0% {
        opacity: 0;
        transform: translateY(-20px) translateX(-50%);
        max-height: 0;
        overflow: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
        max-height: 1000px;
        overflow: visible;
    }
}
@keyframes fade-in-center {
    0% {
        opacity: 0;
        transform: translateY(-20px) translateX(-50%);
        max-height: 0;
        overflow: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
        max-height: 1000px;
        overflow: visible;
    }
}
/* || HEADER end || */
/* || HOME SLIDER start || */
.hero-section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
}
.home-slider {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-theme-color: var(--accent-color-2);
}
@media (max-width: 1170px) {
    .home-slider {
        min-height: auto;
    }
}
.home-slider > .swiper-wrapper {
    height: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
}
.home-slider .swiper-slide {
    width: 100%;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    display: flex;
    flex-direction: column;
    padding: 130px var(--container-padding);
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
}
.home-slider .swiper-slide__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    z-index: 1;
}
.home-slider .swiper-slide__content {
    width: 100%;
    max-width: 900px;
    position: relative;
    color: #000;
    z-index: 2;
    padding: 20px 60px;
}
.home-slider .swiper-slide__content__title {
    font-weight: 300;
    font-size: clamp(30px, 4vw, 55px);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -0.04em;
    color: #000;
    position: relative;
}
.home-slider .swiper-slide__content__title > strong {
    font-size: clamp(30px, 4vw, 80px);
}
.home-slider .swiper-slide__content__subtitle {
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.home-slider .swiper-slide__content__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    max-width: 600px;
    margin-top: 40px;
}
@media (max-width: 1000px) {
    .home-slider .swiper-slide__content__text {
        color: #000;
    }
}
.home-slider .swiper-slide__content__actions {
    display: flex;
    margin-top: 40px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.home-slider .swiper-slide__content__actions-link {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    background-color: transparent;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 20px 25px;
    transition: 0.3s ease-in-out;
    justify-content: center;
}
.home-slider .swiper-slide__content__actions-link:nth-child(odd) {
    color: #fff;
    background-color: var(--accent-color);
}
.home-slider .swiper-slide__content__actions-link:nth-child(odd):hover {
    background-color: var(--accent-color-2);
}
.home-slider .swiper-slide__content__actions-link:nth-child(even) {
    color: #333333;
    background-color: transparent;
    box-shadow: 0px 0px 0px 1px #333333 inset;
}
.home-slider .swiper-slide__content__actions-link:nth-child(even):hover {
    color: #fff;
    background-color: var(--accent-color-2);
    box-shadow: 0px 0px 0px 1px var(--accent-color-2) inset;
}
@media (max-width: 700px) {
    .home-slider .swiper-slide__content__actions-link {
        padding: 15px 20px;
        font-size: 16px;
    }
}
@media (max-width: 530px) {
    .home-slider .swiper-slide__content__actions {
        flex-direction: column;
        align-items: stretch;
        row-gap: 20px;
        text-align: center;
    }
}
.home-slider .swiper-slide__content__link {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    margin-top: 35px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 20px 25px;
    transition: 0.3s ease-in-out;
    border-radius: 5px;
}
.home-slider .swiper-slide__content__link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
.home-slider .swiper-slide__content ul {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: none;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.home-slider .swiper-slide__content ul li {
    position: relative;
    padding-left: 40px;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
}
.home-slider .swiper-slide__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 18px;
    background-image: url(/img/icons/as_checkmark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
@media (max-width: 1570px) {
    .home-slider .swiper-slide__content {
        max-width: 720px;
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
        padding: 60px;
        background-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0px 10px 40px -40px #000000;
    }
}
@media (max-width: 500px) {
    .home-slider .swiper-slide__content {
        padding: 60px 20px;
    }
}
@media (max-width: 600px) {
    .home-slider .swiper-slide {
        padding: 20px var(--container-padding) 60px var(--container-padding);
    }
}
.home-slider .swiper-button-next {
    width: 42px;
    height: 66px;
    right: 10vw;
    color: #fff;
    background-color: #000;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-next {
        right: 3%;
    }
}
.home-slider .swiper-button-prev {
    width: 42px;
    height: 66px;
    left: 10vw;
    color: #fff;
    background-color: #000;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-prev {
        left: 3%;
    }
}
.home-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d0d0d0;
}
.home-slider .swiper-pagination-bullet-active {
    border: 2px solid var(--accent-color);
    background-color: var(--accent-color);
}

.slide-arrows {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: var(--container-padding);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.1rem;
    height: 200px;
}

.slide-arrows__item {
    position: absolute;
    width: 2.1rem;
    height: 0.3rem;
    opacity: 0;
    transform: scale(0.3);
    -webkit-animation: move-chevron 3s ease-out infinite;
    animation: move-chevron 3s ease-out infinite;
}

.slide-arrows__item:first-child {
    -webkit-animation: move-chevron 3s ease-out 1s infinite;
    animation: move-chevron 3s ease-out 1s infinite;
}

.slide-arrows__item:nth-child(2) {
    -webkit-animation: move-chevron 3s ease-out 2s infinite;
    animation: move-chevron 3s ease-out 2s infinite;
}

.slide-arrows__item:before,
.slide-arrows__item:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #000;
}

.slide-arrows__item:before {
    left: 0;
    transform: skewY(30deg);
}

.slide-arrows__item:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
}

@-webkit-keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }
    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }
    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}

@keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }
    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }
    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}
/* || HOME SLIDER end || */
/* HOME INTRO START */
.home-intro {
    background-color: var(--accent-color-4);
}
.home-intro__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 60px;
}
.home-intro__layout form {
    height: 100%;
    background-color: var(--accent-color-2);
    padding: 55px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 25px;
}
.home-intro__layout form .title {
    grid-column: 1/-1;
}
.home-intro__layout form textarea {
    grid-column: 1/-1;
    height: 125px;
    resize: vertical;
}
.home-intro__layout form .btn {
    grid-column: 1/-1;
    margin: 0 auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
@media (max-width: 650px) {
    .home-intro__layout form {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
}
@media (max-width: 500px) {
    .home-intro__layout form {
        padding: 30px 20px;
    }
}
@media (max-width: 1200px) {
    .home-intro__layout {
        grid-template-columns: 1fr;
    }
}
.home-intro__text {
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 30px;
    padding: 55px 60px;
}
@media (max-width: 1200px) {
    .home-intro__text {
        padding: 0 0 20px 0;
    }
}
.home-intro__ratings-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 35px;
    text-align: center;
}
.home-intro__ratings-items {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 70px;
    column-gap: 70px;
}
.home-intro__ratings-items a {
    position: relative;
    display: flex;
    justify-content: center;
}
.home-intro__ratings-items a:not(:last-of-type)::after {
    content: '';
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #ddd;
}
@media (max-width: 650px) {
    .home-intro__ratings-items {
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
    .home-intro__ratings-items a:not(:last-of-type)::after {
        display: none;
    }
}

/* HOME INTRO END */
/* PORTFOLIO SLIDER START */
.portfolio-slider {
    background-color: var(--accent-color-4);



}
.portfolio-slider__head {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 40px;
    column-gap: 40px;
}
.portfolio-slider__head-nav {
    width: 120px;
    min-width: 120px;
    height: 45px;
    position: relative;
    align-self: center;
}
.portfolio-slider__head-nav .swiper-button-next,
.portfolio-slider__head-nav .swiper-button-prev {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s ease;
    border-radius: 50%;
}
.portfolio-slider__head-nav .swiper-button-next::after,
.portfolio-slider__head-nav .swiper-button-prev::after {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
    background-color: var(--accent-color);
    transition: 0.2s ease;
}
@media (max-width: 450px) {
    .portfolio-slider__head-nav {
        align-self: flex-start;
    }
}
@media (max-width: 450px) {
    .portfolio-slider__head {
        flex-direction: column;
        row-gap: 20px;
        margin-bottom: 20px;
    }
    .portfolio-slider__head .titles-block {
        margin: 0;
    }
}
.portfolio-slider__wrapper {
    padding-left: var(--container-padding);
}
.portfolio-slider__swiper {
    overflow: visible;
    opacity: 0;
    max-height: 340px;
}
.portfolio-slider__swiper .swiper-wrapper {
    overflow: visible;
}

/* PORTFOLIO SLIDER END */
/* PROJECT CARD START */
.project-card {
    display: flex;
    flex-direction: column;
    height: auto;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    background-color: #fff;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.project-card:hover {
    box-shadow: 0px 4px 15px rgba(0, 85, 212, 0.2);
}

.project-card.project-card--webdesign {
    position: relative;
}

.project-card.project-card--webdesign .project-card__content-wrap {
    height: max-content;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
}
.project-card.project-card--webdesign .project-card__image {
    /* aspect-ratio: 3/4; */
    aspect-ratio: 155/207;
    height: 100%;
}
.project-card.project-card--webdesign .project-card__image img{
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.project-card__image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}
.project-card__image > div {
    max-width: 60%;
    padding: 10px;
    background-color: #fff;
}
.project-card__title {
    font-weight: 700;
    font-size: clamp(16px, 1vw, 22px);
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
    margin-top: 5px;
}
.project-card__external {
    font-weight: 400;
    font-size: clamp(12px, 1.5vw, 14px);
    letter-spacing: 0.05em;
    color: #979696;
    margin-top: 5px;
    margin-bottom: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    text-overflow: ellipsis;
}
.project-card__internal {
    margin-top: auto;
    display: flex;
    -moz-column-gap: 5px;
    column-gap: 5px;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* PROJECT CARD END */
/* SOLUTIONs SLIDER START */
.solutions-slider__layout {
    display: grid;
    grid-template-columns: 525px calc(100% - 525px);
    -moz-column-gap: 50px;
    column-gap: 50px;
}
.solutions-slider__layout-text {
    padding-left: var(--container-padding);
}
.solutions-slider__layout-text-title {
    font-weight: 400;
    font-size: clamp(25px, 4vw, 46px);
    line-height: 1;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
}
.solutions-slider__layout-text-text {
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 20px;
}
.solutions-slider__layout-text-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: var(--accent-color-2);
    color: #fff;
    padding: 10px 15px;
    transition: 0.2s ease;
}
.solutions-slider__layout-text-link:hover {
    background-color: var(--accent-color);
}
.solutions-slider__layout-slider {
    display: flex;
    align-items: center;
    justify-content: center;
}
.solutions-slider__layout-slider__wrapper {
    width: 100%;
    display: flex;
    max-height: 360px;
}
@media (max-width: 1200px) {
    .solutions-slider__layout {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
        row-gap: 0px;
        padding-left: var(--container-padding);
    }
    .solutions-slider__layout-text {
        padding-right: 0;
        padding-left: 0;
    }
    .solutions-slider__layout-slider {
        justify-content: center;
    }
}
.solutions-slider__swiper {
    padding: 50px 0 50px 15px;
    opacity: 0;
    max-height: 250px;
}
.solutions-slider__swiper .swiper-wrapper {
    overflow: visible;
}

/* SOLUTIONs SLIDER END */
/* SOLUTIONs CARD START */
.solutions-card {
    font-size: 18px;
    background: #fff;
    height: calc((100% - 30px) / 2);
    /* Center slide text vertically */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 30px 30px 70px;
    font-weight: 500;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1;
    color: #000000;
    background-image: url(/img/icons/vi_title-touch.svg);
    background-repeat: no-repeat;
    background-position: 30px center;
    background-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.solutions-card:hover {
    box-shadow: 0px 4px 15px rgba(0, 85, 212, 0.2);
}

/* SOLUTIONs CARD END */
/* Expert block start */
.expert-form-block {
    background-color: var(--accent-color-4);
}
.expert-form-block .title {
    position: relative;
    z-index: 1;
    font-size: clamp(25px, 3vw, 50px);
    color: var(--accent-dark-2);
}
.expert-form-block form {
    position: relative;
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 55px;
    column-gap: 55px;
    row-gap: 30px;
    align-items: end;
    z-index: 1;
    margin-top: 50px;
}
.expert-form-block form > input {
    padding: 17px 19px;
    border: 0;
}
.expert-form-block form > textarea {
    grid-column: 1/3;
}
.expert-form-block form > .btn {
    width: 200px;
}
@media (max-width: 1200px) {
    .expert-form-block form {
        -moz-column-gap: 15px;
        column-gap: 15px;
        row-gap: 15px;
    }
}
@media (max-width: 825px) {
    .expert-form-block form {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
    .expert-form-block form > textarea {
        grid-column: 1;
    }
    .expert-form-block form > .btn {
        grid-column: 1;
    }
}
@media (max-width: 500px) {
    .expert-form-block form {
        width: 100%;
    }
}
.expert-form-block__image-wrapper {
    position: absolute;
    height: 120%;
    bottom: 0;
    right: 3%;
    z-index: 0;
    pointer-events: none;
}
@media (max-width: 825px) {
    .expert-form-block__image-wrapper {
        right: -20%;
        height: 80%;
        overflow-x: hidden;
        overflow-y: visible;
    }
}
@media (max-width: 500px) {
    .expert-form-block__image-wrapper {
        display: none;
    }
}
.expert-form-block__image {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    pointer-events: none;
}

/* Expert block end */
/* Clients Galaxy Start */
.clients-galaxy {
    display: flex;
    align-items: center;
    justify-content: center;
}
.clients-galaxy .title {
    color: #fff;
}
.clients-galaxy .subtitle {
    color: var(--accent-color-2);
}
.clients-galaxy__text {
    max-width: 540px;
    padding: 110px 30px 110px var(--container-padding);
    background-color: var(--accent-color);
}
@media (max-width: 1000px) {
    .clients-galaxy__text {
        padding: 70px 30px 70px 30px;
    }
}
@media (max-width: 500px) {
    .clients-galaxy__text {
        width: 100%;
        max-width: 100%;
        padding: 30px 5% 30px 5%;
    }
}
.clients-galaxy__body {
    flex: 1;
    background-color: var(--bg-light);
    display: flex;
    align-self: stretch;
    position: relative;
    perspective: 1023px;
    perspective-origin: -80% 1000%;
    overflow: hidden;
}
.clients-galaxy__body-list {
    width: 100%;
    height: 100%;
    background-image: url(/img/backgrounds/vi_clients_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
@media (max-width: 500px) {
    .clients-galaxy__body {
        display: none;
    }
}

/* Clients Galaxy End */
/* GOOGLE REVIEWS START */
.h-google-reviews {
    background-image: url(/img/backgrounds/vi_home-par-bg-left-1.png);
    background-repeat: no-repeat;
    background-blend-mode: lighten;
    background-position: left bottom;
    background-size: auto 100%;
    background-color: var(--accent-color-4);
}
.h-google-reviews__count {
    display: flex;
    align-items: center;
}
.h-google-reviews .titles-block .title {
    display: flex;
    align-items: center;
}
@media (max-width: 460px) {
    .h-google-reviews .titles-block .title {
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
    }
}

.h-google-reviews .google-reviews {
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.h-google-reviews .google-reviews .swiper-pagination {
    bottom: -20px;
}

.h-google-reviews .google-reviews .swiper-pagination .swiper-pagination-bullet {
    margin: 3px;
    width: 10px;
    height: 10px;
}

.h-google-reviews .google-reviews .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.h-google-reviews .g-square-reviews-swiper {
    padding: 0 0 60px 0;
}

.google-reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1680px;
    margin: 0 auto;
}
.google-reviews .swiper {
    padding: 50px 50px 50px 50px;
    margin: -50px -50px 0px -50px;
}
.google-reviews .swiper-wrapper {
    overflow: visible;
}

.google-review-item {
    display: block;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 400px; */
    padding: 40px 30px;
    margin: auto;
    transition: 0.3s ease;
    color: #000;
    filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.1));
    /* box-shadow: rgba(22, 31, 39, 0.42) 0px 40px 40px -25px, rgba(19, 26, 32, 0.05) 0px 25px 45px -35px; */
}

.google-review-item.blur {
    /* filter: blur(4px); */
    transform: rotate3d(0.2, 0.1, 0.1, 5deg) scale(0.95);
    box-shadow: rgba(22, 31, 39, 0.42) 0px 5px 40px -25px, rgba(19, 26, 32, 0.05) 0px 25px 45px -35px;
}

.google-review-avatar {
    width: 70px;
    height: 70px;
}

.google-review-starRate {
    margin-bottom: 15px;
}

.google-review-text {
    margin-top: 15px;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.google-review-userName {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.google-review-date {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #bdbdbd;
}

.google-review-loadMore {
    display: block;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #828282;
}

/* GOOGLE REVIEWS END */
/* ABOUT HEAD START */
.about-head {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.about-head__video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.about-head__video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-head__content {
    padding: 125px 50px;
    background: rgba(255, 255, 255, 0.7);
    max-width: 880px;
    position: relative;
    z-index: 1;
}
.about-head__content .title {
    font-weight: 600;
    line-height: 1;
    font-size: clamp(30px, 5vw, 80px);
    letter-spacing: -0.04em;
}
.about-head__content-links {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 15px;
}
@media (max-width: 767px) {
    .about-head__content-links {
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}
@media (max-width: 767px) {
    .about-head__content {
        padding: 50px 5px;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
    .about-head__content .btn,
    .about-head__content .btn.btn--transparent {
        font-size: 12px;
        padding: 5px 7px;
    }
}
@media (max-width: 767px) {
    .about-head .container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ABOUT HEAD END */
/* ABOUT VISION START */
.about-vision {
    background-image: url(/img/backgrounds/vi_about-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about-vision__content {
    padding-left: var(--container-padding);
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1250px) {
    .about-vision__content {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
}
.about-vision__vision {
    background-color: #fff;
    padding: 80px;
    max-width: 720px;
}
.about-vision__vision .title {
    margin-bottom: 40px;
}
.about-vision__vision-custom {
    margin-top: 50px;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-vision__vision-custom a {
    background-color: var(--accent-color-2);
    color: #fff;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
@media (max-width: 1250px) {
    .about-vision__vision {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .about-vision__vision {
        padding: 60px var(--container-padding);
    }
}
.about-vision__history {
    flex: 1;
    background: #005fb8d5;
    padding: 90px 75px;
    color: #fff;
    max-width: 660px;
}
.about-vision__history .title {
    color: #fff;
    margin-bottom: 40px;
}
.about-vision__history-bl-1 {
    position: relative;
    padding: 60px;
}
.about-vision__history-bl-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100px;
    background: #fff;
}
.about-vision__history-bl-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background: #fff;
}
@media (max-width: 1450px) {
    .about-vision__history-bl-1 {
        padding: 40px;
    }
}
.about-vision__history-bl-2::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 100px;
    background: #fff;
}
.about-vision__history-bl-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 1px;
    width: 100px;
    background: #fff;
}
@media (max-width: 1450px) {
    .about-vision__history {
        padding: 40px;
    }
}
@media (max-width: 1250px) {
    .about-vision__history {
        background-image: url(/img/backgrounds/vi_about-2.jpg);
        background-color: #0058abe0;
        background-blend-mode: multiply;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
@media (max-width: 1250px) {
    .about-vision__history {
        max-width: 100%;
    }
}
@media (max-width: 1250px) {
    .about-vision {
        background: none;
    }
}

/* ABOUT VISION END */
/* ABOUT TEAM SECTION START */
.about-team__layout-custom {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    margin-bottom: 15px;
}
.about-team__layout-custom > :nth-child(1) {
    background-color: var(--accent-color);
    color: #fff;
    padding: 40px;
}
.about-team__layout-custom > :nth-child(1) > :nth-child(1) {
    font-weight: 700;
    font-size: clamp(16px, 2vw, 22px);
    text-transform: uppercase;
    color: var(--accent-color-2);
}
.about-team__layout-custom > :nth-child(1) > :nth-child(2) {
    font-weight: 500;
    font-size: clamp(20px, 2vw, 50px);
    text-transform: uppercase;
}
.about-team__layout-custom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 1250px) {
    .about-team__layout-custom {
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: repeat(2, 400px);
        row-gap: 15px;
    }
}
@media screen and (max-width: 768px) {
    .about-team__layout-custom {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 15px;
    }
}
.about-team__layout-1 {
    display: grid;
    grid-template-columns: 1.5fr 25% 2fr;
    margin-bottom: 15px;
}
.about-team__layout-1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 1250px) {
    .about-team__layout-1 {
        grid-template-columns: repeat(2, 50%);
        row-gap: 15px;
    }
    .about-team__layout-1 > :nth-child(1) {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .about-team__layout-1 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 15px;
    }
}
.about-team__layout-2 {
    display: grid;
    grid-template-columns: 25% 1fr 25% 1fr;
    margin-bottom: 15px;
}
.about-team__layout-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 1250px) {
    .about-team__layout-2 {
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: repeat(2, 400px);
        row-gap: 15px;
    }
}
@media screen and (max-width: 768px) {
    .about-team__layout-2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 15px;
    }
}
.about-team__layout-3 {
    display: grid;
    grid-template-columns: 25% 25% 2fr 1fr;
    margin-bottom: 15px;
}
.about-team__layout-3 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 1250px) {
    .about-team__layout-3 {
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: repeat(2, 400px);
        row-gap: 15px;
    }
}
@media screen and (max-width: 768px) {
    .about-team__layout-3 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 15px;
    }
}
.about-team__layout-4 {
    display: grid;
    grid-template-columns: 2fr 35% 1fr;
    margin-bottom: 15px;
}
.about-team__layout-4 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 1250px) {
    .about-team__layout-4 {
        grid-template-columns: repeat(2, 50%);
        row-gap: 15px;
    }
    .about-team__layout-4 > :last-child {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .about-team__layout-4 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 15px;
    }
}
.about-team__layout-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}
.about-team__layout-title {
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    margin-bottom: 40px;
}
.about-team__layout-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--accent-color);
}

/* ABOUT TEAM SECTION END */
/* EMPLOYMENT SECTION START */
.employment-section {
    padding-bottom: 60px;
}
.employment-section__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
}
@media (max-width: 1150px) {
    .employment-section__layout {
        grid-template-columns: 100%;
    }
}

.job-item {
    position: relative;
    padding: 25px 80px 25px 80px;
    border-bottom: 1px solid var(--accent-light);
    transition: 0.3s ease;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
}
.job-item__title {
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--accent-color-2);
    border-bottom: 1px solid #c1c1c1;
    padding-bottom: 30px;
}
.job-item__subtitle {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: var(--accent-dark);
    margin-top: 30px;
    margin-bottom: 10px;
}
.job-item:hover {
    box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.535);
}
.job-item-hidden-content {
    display: none;
    padding-bottom: 30px;
}
.job-item-hidden-content ul {
    padding-left: 30px;
}
.job-item > a {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent-color-2);
    margin-top: 60px;
    position: relative;
}
.job-item > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: -30px;
    width: 100%;
    height: 1px;
    background-color: #c1c1c1;
}
.job-item__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 30px;
    border-top: 1px solid #c1c1c1;
    padding-top: 30px;
    margin-top: 30px;
}
.job-item__actions a {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 20px;
    transition: 0.2s ease;
    cursor: pointer;
}
.job-item__actions a:nth-child(1) {
    color: #fff;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
}
.job-item__actions a:nth-child(1):hover {
    background-color: var(--accent-color-2);
    color: #fff;
}
.job-item__actions a:nth-child(2) {
    color: #333333;
    background-color: transparent;
    border: 1px solid #333333;
}
.job-item__actions a:nth-child(2):hover {
    background-color: var(--accent-color-2);
    color: #fff;
}
@media (max-width: 1150px) {
    .job-item {
        padding: 25px 30px 25px 30px;
    }
}

/* EMPLOYMENT SECTION END */
/* SOLUTIONs ACCORDION START */
.solutions-accordion {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
}
.solutions-accordion .solutions-card {
    height: auto;
}
.solutions-accordion .solutions-card:not(:nth-child(-n + 8)) {
    display: none;
}
.solutions-accordion .btn {
    grid-column: 1/-1;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
@media (max-width: 1250px) {
    .solutions-accordion {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 800px) {
    .solutions-accordion {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .solutions-accordion {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
}

/* SOLUTIONs ACCORDION END */
/* CONTACT FORM SECTION START */
.contact-form-section {
    background-color: var(--accent-color);
}
.contact-form-section__title {
    color: var(--white, #fff);
    text-align: center;
    font-size: clamp(22px, 3vw, 35px);
    font-weight: 600;
    margin-bottom: 45px;
}
.contact-form-section__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 30px;
}
.contact-form-section__layout .btn {
    background-color: transparent;
    border: 1px solid #fff;
    margin: 0 auto;
}
@media screen and (max-width: 1250px) {
    .contact-form-section__layout {
        -moz-column-gap: 25px;
        column-gap: 25px;
        row-gap: 20px;
    }
}
@media screen and (max-width: 900px) {
    .contact-form-section__layout {
        grid-template-columns: repeat(2, 1fr);
        -moz-column-gap: 25px;
        column-gap: 25px;
        row-gap: 20px;
    }
}
@media screen and (max-width: 500px) {
    .contact-form-section__layout {
        grid-template-columns: 1fr;
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 20px;
    }
}

/* CONTACT FORM SECTION END */
/* TECH LIST START */
.tech-list__layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
    margin-top: 45px;
}
.tech-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.tech-list__item-tltle {
    text-align: center;
    color: red;
}

/* TECH LIST END */
/* BANNER START */
.banner {
    background-color: var(--accent-color);
    color: #fff;
}
.banner__layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
}
@media screen and (max-width: 768px) {
    .banner__layout {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}
.banner__title {
    font-size: clamp(25px, 4vw, 46px);
}
.banner .btn {
    border-color: white;
    color: #fff;
    white-space: nowrap;
}

/* BANNER END */
/* BRIEF FAQ START */
.brief-faq__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 35px;
    column-gap: 35px;
    margin-top: 35px;
}
.brief-faq__layout .ui-accordion .ui-accordion-header {
    padding: 10px 60px 10px 20px;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    margin-top: 25px;
    background-color: #fff;
}
.brief-faq__layout .ui-accordion .ui-accordion-header::before {
    content: '';
    background-image: url(/img/icons/vi_plus-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s ease;
}
.brief-faq__layout .ui-accordion .ui-accordion-header.ui-state-active {
    background-color: #f5f5f5;
}
.brief-faq__layout .ui-accordion .ui-accordion-header.ui-state-active::before {
    background-image: url(/img/icons/vi_minus-icon.svg);
}
.brief-faq__layout .btn {
    grid-column: 1/-1;
    margin: 30px auto 0 auto;
}
@media screen and (max-width: 767px) {
    .brief-faq__layout {
        grid-template-columns: 1fr;
    }
}

/* BRIEF FAQ END */
/* DESIGN MOBILE SECTION START */
.design-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--accent-background-color);
}
.design-mobile__content {
    padding: 60px 60px 60px var(--container-padding);
    font-size: 16px;
    line-height: 180%;
}
.design-mobile__content-inner {
    max-width: 700px;
}
.design-mobile__content .title {
    margin-bottom: 50px;
}
.design-mobile__content .btn {
    margin-top: 50px;
}
.design-mobile__img {
    background-color: var(--accent-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.design-mobile__img-float {
    position: absolute;
    bottom: -100px;
    right: var(--container-padding);
}
@media (max-width: 768px) {
    .design-mobile {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr -webkit-max-content;
        grid-template-rows: 1fr max-content;
    }
    .design-mobile__content {
        padding: 60px var(--container-padding) 60px var(--container-padding);
        font-size: 14px;
        line-height: 180%;
    }
    .design-mobile__img-float {
        position: absolute;
        bottom: -100px;
        right: var(--container-padding);
    }
}

/* DESIGN MOBILE SECTION END */
/* DESIGN POINTS SECTION START */
.design-points .title {
    max-width: 970px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.design-points__layout {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 30px;
}
.design-points__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 25px 20px 20px;
    position: relative;
    max-width: 360px;
    text-align: center;
}
.design-points__item-title {
    text-align: center;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 500;
}
.design-points__item-text {
    font-size: 16px;
    line-height: 180%;
}
.design-points__item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 35px;
    height: 35px;
    background-image: url(/img/icons/vi_par-checkmark-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: translateX(-50%);
}

/* DESIGN POINTS SECTION END */
/* DESIGN DESIGN SECTION START */
.design-design-section {
    background-image: url(/img/backgrounds/vi_design-design-section-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* DESIGN DESIGN SECTION END */
/* MARKETING SEO SECTION START */
.marketing-seo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--accent-background-color);
}
.marketing-seo-section__image {
    background-color: var(--accent-color);
    display: flex;
    align-items: flex-end;
}
.marketing-seo-section__image img {
    display: block;
}
.marketing-seo-section__content {
    padding: 60px var(--container-padding) 60px 60px;
}
.marketing-seo-section__content-text {
    margin: 30px 0;
    line-height: 180%;
}
@media (max-width: 768px) {
    .marketing-seo-section {
        grid-template-columns: 100%;
        grid-template-rows: -webkit-max-content 1fr;
        grid-template-rows: max-content 1fr;
        row-gap: 0;
    }
    .marketing-seo-section__content {
        padding: 30px var(--container-padding) 30px var(--container-padding);
    }
}

/* MARKETING SEO SECTION END */
/* MARKETING SEO POINTS START */
.marketing-seo-points__layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 40px;
    padding-top: 60px;
}
.marketing-seo-points__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 260px;
}
.marketing-seo-points__item-title {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0 15px 0;
}
.marketing-seo-points__item-text {
    font-size: 16px;
    line-height: 130%;
}

/* MARKETING SEO POINTS END */
/* MARKETING SEO SOCIAL START */
.marketing-seo-social__layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
    .marketing-seo-social__layout {
        grid-template-columns: 100%;
        grid-template-rows: -webkit-max-content 1fr;
        grid-template-rows: max-content 1fr;
        row-gap: 0;
    }
}
.marketing-seo-social__image {
    position: relative;
}
.marketing-seo-social__image img {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    display: block;
}
.marketing-seo-social__content {
    padding: 60px var(--container-padding) 60px 60px;
}
.marketing-seo-social__content-text {
    margin: 30px 0;
    line-height: 180%;
}
@media (max-width: 768px) {
    .marketing-seo-social__content {
        padding: 30px var(--container-padding) 30px var(--container-padding);
    }
}

/* MARKETING SEO SOCIAL START */
/* MARKETING SEO CHARTS START */
@media (max-width: 500px) {
    .marketing-seo-charts {
        display: none;
    }
}

.chart-block {
    width: 90%;
    margin: 40px auto 0 auto;
}

.chart-tab {
    padding: 0 15px;
    border-bottom: 1px solid #cbcbcb;
}

.chart-tab span {
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 11px;
    border: 1px solid #cfcfcf;
    border-bottom: 1px solid var(--bg-light);
    margin-bottom: -1px;
    font-weight: 500;
    cursor: default;
}

.chart-overview {
    margin: 2em 1em;
    padding-left: 20px;
    /* background: url('/images/blue-dot-icon.png') 0 40% no-repeat; */
    position: relative;
}

.chart-overview::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #2e86c4;
}

.small-charts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.chart-large {
    display: flex;
    /* display: grid;
  grid-template-columns: 2fr 1fr; */
    width: 100%;
}

.chart-large > div:first-of-type {
    width: 70%;
}

.chart-large > div:last-of-type {
    width: 30%;
}

.chart-item {
    width: 100%;
    max-width: 247px;
}

.chart-item:not(.chart-item:last-of-type) {
    display: inline-block;
    vertical-align: top;
    /* width: 247px; */
    margin-bottom: 30px;
    padding-right: 10px;
    border-right: 1px solid #c9c9c9;
}

.chart-item svg {
    height: 150px;
}

.chart-label {
    margin-left: 15px;
    font-weight: 700;
    font-size: 16px;
}

.chart-num {
    font-weight: 300;
    font-size: 25px;
    margin-left: 15px;
}

.chart-descr {
    margin-top: 85px;
}

.chart-descr h2 {
    font-size: 30px;
    color: #2f2f2f;
}

.chart-sep {
    height: 1px;
    background: #e0e0e0;
    max-width: 450px;
    margin: 1em 0;
}

@media (max-width: 600px) {
    .small-charts {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .chart-item {
        width: 100% !important;
    }

    .chart-large {
        display: block;
    }

    .chart-large > div {
        width: 100% !important;
    }
}
/* MARKETING SEO CHARTS END */
/* MARKETING SEO QUESTIONS START */
.marketing-seo-questions .title {
    margin-bottom: 50px;
}
.marketing-seo-questions__layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
@media (max-width: 991px) {
    .marketing-seo-questions__layout {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 550px) {
    .marketing-seo-questions__layout {
        grid-template-columns: 1fr;
    }
}
.marketing-seo-questions__item {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    border-top: 12px solid #c1c1c1;
    padding: 30px 0;
}
.marketing-seo-questions__item > div:not(.marketing-seo-questions__item-title) {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    flex: 1 1 auto;
}
.marketing-seo-questions__item-title {
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 500;
    flex: 1;
}
.marketing-seo-questions__item-image img {
    aspect-ratio: 16/8;
}
.marketing-seo-questions__item-text {
    font-size: 16px;
    line-height: 180%;
}
@media (max-width: 991px) {
    .marketing-seo-questions__item:last-of-type {
        grid-column: 1/-1;
    }
}

/* MARKETING SEO QUESTIONS END */
/* FAQ ACCORDION START */
.faq-accordion__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
}

/* FAQ ACCORDION END */
/* CONTACT SECTION 1 START */
.contact-section-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contact-section-1__info {
    padding: 50px 50px 50px var(--container-padding);
}
.contact-section-1__info-block {
    padding-left: 60px;
}
.contact-section-1__info-block__title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 50px;
}
.contact-section-1__info-block__link {
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 500;
    line-height: normal;
    color: #000;
}
.contact-section-1__form {
    background-color: var(--accent-color);
    padding: 90px;
}
.contact-section-1__form-inner {
    max-width: 570px;
}
.contact-section-1__form-inner .title {
    color: #fff;
    text-align: center;
    font-size: clamp(24px, 4vw, 55px);
    font-style: normal;
    font-weight: 300;
    letter-spacing: -2.2px;
    margin-bottom: 50px;
}
.contact-section-1__form-inner form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.contact-section-1__form-inner form .btn {
    grid-column: 1/-1;
    background-color: #333333;
    margin: 0 auto;
}
@media screen and (max-width: 1200px) {
    .contact-section-1 {
        grid-template-columns: 1fr;
    }
    .contact-section-1__info {
        padding: 0px 50px 50px var(--container-padding);
    }
    .contact-section-1__form {
        padding: 50px;
    }
    .contact-section-1__form-inner {
        max-width: 100%;
    }
    .contact-section-1__form form {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 500px) {
    .contact-section-1__info {
        padding: 0px var(--container-padding) 50px;
    }
    .contact-section-1__info-block {
        padding-left: 30px;
    }
    .contact-section-1__form {
        padding: 50px var(--container-padding);
    }
    .contact-section-1__form-inner {
        max-width: 100%;
    }
}

/* CONTACT SECTION 1 END */
/* CONTACT SECTION 2 START */
.contact-section-2__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contact-section-2__layout a {
    display: block;
    width: 100%;
    height: 100%;
}
.contact-section-2__layout img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 1200px) {
    .contact-section-2__layout {
        grid-template-columns: 1fr;
    }
}

/* CONTACT SECTION 2 END */
/* SOFTWARE PORTFOLIO START */
.soft-portfolio {
    background-image: url(/img/backgrounds/vi_portfolio-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left top;
}

.soft-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    padding: 50px 0px;
}
@media (max-width: 850px) {
    .soft-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
}
@media (max-width: 359px) {
    .soft-layout {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* SOFTWARE PORTFOLIO END */
/* PORTFOLIO FILTER START */
.filter-section {
    background-color: var(--accent-color);
    padding: 50px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    color: #fff;
}
.filter-section select {
    max-width: 300px;
    padding: 10px 20px;
}
.filter-section a {
    color: #fff;
}
@media (max-width: 600px) {
    .filter-section {
        flex-direction: column;
        row-gap: 10px;
        padding: 20px var(--container-padding);
    }
}

/* PORTFOLIO FILTER END */
/* PROJECT HEAD START */
.project-head {
    padding: 0 var(--container-padding) 60px var(--container-padding);
    display: grid;
    grid-template-columns: 300px 1fr;
    -moz-column-gap: 100px;
    column-gap: 100px;
}
.project-head p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}
@media (max-width: 1200px) {
    .project-head {
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}
@media (max-width: 768px) {
    .project-head {
        grid-template-columns: 1fr;
        row-gap: 30px;
        padding: 0 var(--container-padding) 30px var(--container-padding);
    }
}

/* PROJECT HEAD END */
/* PROJECT FEATURES START */
.project-features {
    background-color: var(--accent-background-color);
}
.project-features__layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    -moz-column-gap: 100px;
    column-gap: 100px;
}
.project-features__layout ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 10px;
}
.project-features__layout ul li {
    position: relative;
    padding-left: 35px;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 400;
    line-height: 1;
}
.project-features__layout ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/vi_sm-checkmark.png);
    background-repeat: no-repeat;
    background-size: contain;
}
@media (max-width: 700px) {
    .project-features__layout ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .project-features__layout ul {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1200px) {
    .project-features__layout {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}

/* PROJECT FEATURES END */
/* PROJECT DESCRIPTION START */
.project-description__layout {
    display: grid;
    grid-template-columns: 1fr 55%;
}
@media (max-width: 950px) {
    .project-description__layout {
        grid-template-columns: 100%;
    }
}
.project-description__content {
    padding: 60px 60px 60px var(--container-padding);
}
.project-description__content .btn {
    margin-top: 50px;
}
.project-description__slider {
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 180px 100px 120px;
}
@media (max-width: 1600px) {
    .project-description__slider {
        padding: 60px 60px 100px 60px;
    }
}
@media (max-width: 500px) {
    .project-description__slider {
        padding: 60px 20px 100px 20px;
    }
}

.project-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background-color: var(--accent-background-color);
    position: relative;
    --swiper-pagination-color: #fff;
    --swiper-navigation-color: #fff;
    --swiper-navigation-sides-offset: -40px;
}
.project-slider__head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 15px;
    column-gap: 15px;
    padding: 20px 20px 5px 20px;
}
.project-slider__head-buttons-1 {
    display: flex;
    -moz-column-gap: 5px;
    column-gap: 5px;
    align-items: center;
}
.project-slider__head-buttons-1 span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
.project-slider__head-buttons-1 span:nth-child(1) {
    background-color: #ff5f5a;
}
.project-slider__head-buttons-1 span:nth-child(2) {
    background-color: #ffbd2e;
}
.project-slider__head-buttons-1 span:nth-child(3) {
    background-color: #28ca41;
}
.project-slider__head-title {
    background-color: #f0eaec;
    padding: 5px 20px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    max-width: 350px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    text-overflow: ellipsis;
}
.project-slider__head-buttons-2 {
    display: flex;
    -moz-column-gap: 15px;
    column-gap: 15px;
    align-items: center;
}
.project-slider__head-buttons-2 span {
    display: block;
    width: 25px;
    height: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.project-slider__head-buttons-2 span:nth-child(1) {
    background-image: url(/img/icons/vi_swiper-ui-1.png);
    background-size: 15px 15px;
}
.project-slider__head-buttons-2 span:nth-child(2) {
    background-image: url(/img/icons/vi_swiper-ui-2.png);
}
@media (max-width: 550px) {
    .project-slider__head-buttons-2 {
        display: none;
    }
}
.project-slider__body {
    padding: 10px 20px 20px 20px;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #f8f9fe;
    aspect-ratio: 25/22;
    border-radius: 0 0 20px 20px;
}
.project-slider .swiper {
    width: 100%;
    height: 100%;
}
.project-slider .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}
.project-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.project-slider .swiper-pagination {
    bottom: -30px;
}
@media (max-width: 500px) {
    .project-slider {
        --swiper-navigation-sides-offset: -10px;
        --swiper-navigation-color: #000;
    }
}

/* PROJECT DESCRIPTION END */
/* PROJECT SYSTEM TYPES START */
.project-system-types .pa-block {
    padding-bottom: 0;
}
.project-system-types .title {
    font-size: clamp(22px, 3vw, 30px);
}
.project-system-types__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 75px;
    column-gap: 75px;
    padding-top: 20px;
}
.project-system-types__layout .ui-accordion .ui-accordion-header {
    padding: 25px 60px 25px 20px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    margin: 0;
    border: 0;
    border-bottom: 1px solid #dde4ef;
    background: var(--lighter-secondary, #f3f6fb);
}
.project-system-types__layout .ui-accordion .ui-accordion-header::before {
    content: '';
    background-image: url(/img/icons/vi_plus-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s ease;
}
.project-system-types__layout .ui-accordion .ui-accordion-header.ui-state-active {
    background-color: #f5f5f5;
}
.project-system-types__layout .ui-accordion .ui-accordion-header.ui-state-active::before {
    background-image: url(/img/icons/vi_minus-icon.svg);
}
@media screen and (max-width: 1350px) {
    .project-system-types__layout {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}
@media screen and (max-width: 950px) {
    .project-system-types__layout {
        grid-template-columns: 1fr;
    }
}

/* PROJECT SYSTEM TYPES END */
/* SOLUTION HEAD START */
.solution-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 60px;
}
.solution-head__content {
    line-height: 180%;
    padding: 55px 60px 55px 0;
}
@media (max-width: 1200px) {
    .solution-head__content {
        padding: 0 0 20px 0;
    }
}
.solution-head__content-title {
    font-size: clamp(24px, 2.5vw, 30px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.solution-head__content ul {
    list-style: none;
    padding: 30px 0 30px 50px;
}
.solution-head__content ul li {
    position: relative;
}
.solution-head__content ul li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 3px;
    width: 15px;
    height: 15px;
    background-image: url(/img/icons/vi_sm-checkmark.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.solution-head__content .btn {
    margin-top: 50px;
}
.solution-head__form {
    background-color: var(--accent-color-2);
}
.solution-head__form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 60px;
    height: 100%;
    background-color: var(--accent-color-2);
    padding: 55px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 25px;
}
.solution-head__form form .title {
    grid-column: 1/-1;
    color: #fff;
    font-weight: 300;
}
.solution-head__form form textarea {
    grid-column: 1/-1;
    height: 125px;
    resize: vertical;
}
.solution-head__form form .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
@media (max-width: 650px) {
    .solution-head__form form {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
}
@media (max-width: 500px) {
    .solution-head__form form {
        padding: 30px 20px;
    }
}
@media (max-width: 1200px) {
    .solution-head {
        grid-template-columns: 1fr;
    }
}

/* SOLUTION HEAD END */
/* SOLUTION ABOUT START */
.solution-about__layout {
    display: grid;
    grid-template-columns: 40% 1fr;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 40px;
}
.solution-about__layout-left {
    border-left: 5px solid var(--accent-color);
    padding-left: 30px;
}
.solution-about__layout-left .title {
    margin-bottom: 30px;
}
.solution-about__layout-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
}
@media (max-width: 1200px) {
    .solution-about__layout {
        grid-template-columns: 1fr;
        grid-template-rows: -webkit-max-content -webkit-max-content;
        grid-template-rows: max-content max-content;
        row-gap: 40px;
    }
    .solution-about__layout-left {
        border-left: none;
        padding-left: 0px;
    }
    .solution-about__layout-right {
        grid-template-columns: 1fr;
        grid-template-rows: -webkit-max-content -webkit-max-content;
        grid-template-rows: max-content max-content;
        -moz-column-gap: 0px;
        column-gap: 0px;
        row-gap: 20px;
    }
}
.solution-about__item {
    background-color: #fff;
    padding: 20px;
}
.solution-about__item-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-bottom: 17px;
}
.solution-about__item-head > div:nth-child(1) {
    color: var(--accent-color, #005eb8);
    font-size: clamp(20px, 2vw, 38.455px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.923px;
}
.solution-about__item-head > div:nth-child(2) {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}
.solution-about__item-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

/* SOLUTION ABOUT END */
/* BLOG LAYOUT START */
.blog-layout {
    display: grid;
    grid-template-columns: minmax(200px, 250px) 1fr;
    -moz-column-gap: 75px;
    column-gap: 75px;
    padding-top: 45px;
    padding-bottom: 60px;
}
.blog-layout__menu-mobile {
    display: none;
}
.blog-layout__menu-mobile__item {
    margin-bottom: 30px;
}
@media (max-width: 800px) {
    .blog-layout__menu-mobile {
        display: block;
    }
    .blog-layout__menu-mobile .blog-layout__menu-title {
        margin-bottom: 10px;
    }
}
.blog-layout__menu-item {
    margin-bottom: 60px;
}
.blog-layout__menu-item ul {
    list-style: none;
    max-height: 150vh;
    overflow-y: auto;
}

/* style scrollbar */
.blog-layout__menu-item ul::-webkit-scrollbar {
    width: 10px;
}
.blog-layout__menu-item ul::-webkit-scrollbar-track {
    background: #d2e9ff65;
}
.blog-layout__menu-item ul::-webkit-scrollbar-thumb {
    background: #005eb8;
}
.blog-layout__menu-item ul::-webkit-scrollbar-thumb:hover {
    background: #00529f;

}
/* style scrollbar end */

.blog-layout__menu-item ul li {
    position: relative;
    margin-bottom: 20px;
    transition: 0.3s ease;
}
.blog-layout__menu-item ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
    background-color: var(--accent-color);
    transition: 0.3s ease;
    z-index: 0;
}
.blog-layout__menu-item ul li:hover::after {
    width: 100%;
}
.blog-layout__menu-item ul li:hover a {
    color: #fff;
}
.blog-layout__menu-item ul a {
    position: relative;
    display: block;
    z-index: 1;
    padding: 5px 10px;
    padding-left: 20px;
    color: #000;
    transition: 0.3s ease;
}
.blog-layout__menu-title {
    font-size: clamp(18px, 1.5vw, 30px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}
@media (max-width: 800px) {
    .blog-layout__menu {
        display: none;
    }
}
.blog-layout__body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    grid-gap: 20px;
}
.blog-layout__body > .title {
    margin-bottom: 20px;
}
.blog-layout__body-date,
.blog-layout__body :is(a) {
    font-size: 12px;
    color: #666464;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 1200px) {
    .blog-layout__body {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .blog-layout__body {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 450px) {
    .blog-layout__body {
        grid-template-columns: 1fr;
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 30px;
    }
}
.blog-layout.blog-layout--single .blog-layout__body {
    display: block;
}
@media (max-width: 800px) {
    .blog-layout {
        grid-template-columns: 1fr;
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 50px;
    }
}

.blog-item {
    border-radius: 15px;
    margin: 1%;
    box-shadow: 0px 3px 15px 1px rgba(127, 164, 199, 0.1);
    background-color: #fff;
    color: #000;
    overflow: hidden;
    transition: 0.3s ease;
}
.blog-item:hover {
    box-shadow: 0px 3px 15px 1px rgba(127, 164, 199, 0.3);
}
.blog-item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.blog-item__content {
    padding: 20px;
}
.blog-item__title {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.2;
    margin-bottom: 15px;
}
.blog-item__date {
    text-transform: uppercase;
    font-size: 8pt;
    letter-spacing: 1px;
    color: #666464;
}

/*BLOG PAR START*/
.blog-par {
    padding: 50px 0;
}

.blog-par .blog-par__title {
    font-size: clamp(25px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.3;
}

.blog-par-C .blog-par__title {
    margin-top: 30px;
}

.blog-par * {
    box-sizing: border-box;
}

.video-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-par.img-L .bl-img,
.blog-par.img-L .video-container {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.blog-par.img-L .bl-img {
    max-width: 50%;
}
@media (max-width: 1150px) {
    .blog-par.img-L .bl-img {
        max-width: 100%;
    }
}

.blog-par.img-R .bl-img,
.blog-par.img-R .video-container {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.blog-par.img-R .bl-img {
    max-width: 50%;
}
@media (max-width: 1150px) {
    .blog-par.img-R .bl-img {
        max-width: 100%;
    }
}

.blog-par.img-C .bl-img,
.blog-par.img-C .video-container {
    float: initial;
    margin-left: 20px;
    margin-bottom: 20px;
    display: block;
    margin: 0 auto;
}

.blog-par::after {
    content: '';
    display: block;
    clear: both;
}

@media (max-width: 1100px) {
    .blog-par.img-L .bl-img,
    .blog-par.img-R .bl-img,
    .blog-par.img-L .video-container {
        float: initial;
        margin: 0 auto 20px;
    }
}
/*BLOG PAR END*/
/* BLOG LAYOUT END */
/* PORTFOLIO WEB DESIGN CARDS START */
.portfolio-cards {
    margin: 0 auto;
    min-height: 90vh;
}

.portfolio-cards a {
    display: block;
    width: 330px;
    /* width: 250px; */
    min-height: 50px;
    margin: 10px;
    position: relative;
    box-shadow: 0px 0px 9px 0px rgba(12, 37, 71, 0.278);
    padding: 15px;
    background-color: #fff;
    /* transition: 0.4s ease !important; */
    /* transition-property: all !important;
  will-change: left, top;
  will-change: transform;
  will-change: box-shadow; */
}

.portfolio-cards a img {
    display: block;
    width: 100%;
    transition: 0.3s ease;
}

.portfolio-cards a:hover {
    box-shadow: 0px 0px 9px -5px rgba(12, 37, 71, 0.278);
    /* transform: scale(0.95) !important; */
}

.ajax-loader {
    text-align: center;
    display: none;
}

/* PORTFOLIO WEB DESIGN CARDS END */
/* PORTFOLIO PHOTO - VIDEO CARDS START */
.photo-video-grid {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.photo-video-grid a {
    display: inline-block;
    vertical-align: top;
    width: calc(24% - 2px);
    max-width: 400px;
    min-width: 200px;
    height: 206px;
    color: #fff;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    margin: 0.5%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 1px 16px 0px rgba(13, 48, 82, 0.308);
    transition: box-shadow 0.5s;
}

@media (max-width: 500px) {
    .photo-video-grid {
        row-gap: 15px;
    }

    .photo-video-grid a {
        width: 100%;
    }
}
.photo-video-grid a .fade {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.5s ease;
    border-radius: 15px;
    opacity: 0;
}

.photo-video-grid a .fade > div:not(.play-btn) {
    border: 1px solid #fff;
    padding: 15px 25px;
    font-weight: 700;
}

.photo-video-grid a:hover .fade {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
    z-index: 2;
}

.photo-video-grid a .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    padding: 3% 0%;
    position: relative;
    z-index: 1;
    text-align: center;
    height: inherit;
    background: #020024;
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(16, 16, 16, 0.693) 100%);
}

.photo-video-grid a .short-descr {
    color: #fff;
    margin-top: 10px;
    font-size: 16px;
}

.photo-video-grid a h4 {
    font-size: 24px;
    margin-bottom: 3px;
    word-spacing: inherit;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: radial-gradient(rgba(255, 183, 0, 0.104) 60%, white 62%);
    border-radius: 50%;
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    box-shadow: 0px 0px 25px 3px rgba(255, 183, 0, 0.254);
}

/* triangle */
.play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.fade .play-btn:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.75);
    top: -25%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
    0% {
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
}
@keyframes pulsate1 {
    0% {
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
}
/* PORTFOLIO PHOTO - VIDEO CARDS END */
/* Breadcrumbs start */
.breadcrumbs {
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
}
.breadcrumbs li {
    line-height: 1;
    display: inline-block;
}
.breadcrumbs li:not(:last-child) a:before,
.breadcrumbs li:not(:last-child) p:before {
    content: '/';
    position: absolute;
    right: 8px;
    top: 0;
    color: #000;
}
.breadcrumbs li a,
.breadcrumbs li p {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-right: 20px;
}
.breadcrumbs li a .breadcrumbs li a:hover,
.breadcrumbs li a .breadcrumbs li p:hover,
.breadcrumbs li p .breadcrumbs li a:hover,
.breadcrumbs li p .breadcrumbs li p:hover {
    color: #000;
}
.breadcrumbs li:last-child a,
.breadcrumbs li:last-child p {
    color: #000;
    /* pointer-events: none; */
    font-weight: 700;
}
@media (max-width: 767px) {
    .breadcrumbs {
        margin-top: -35px;
        margin-bottom: 15px;
    }
    .breadcrumbs a,
    .breadcrumbs p {
        font-size: 12px !important;
        line-height: 1;
    }
}

/*  Breadcrumbs end*/
/* FOOTER  */
.socials {
    margin-top: 10px;
}

.socials a,
.socials img {
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials a:hover img {
    transform: scale(1.2);
}
.socials a:hover {
    text-decoration: none !important;
}

.socials img {
    display: inline-block;
    width: 36px;
    padding-right: 5px;
}

.footer {
    background: #fff;
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer .global-wrapper {
    max-width: unset;
    width: 90%;
}

.google-badges {
    margin-block: 1em;
    /* overflow: hidden; */
}

.footer * {
    color: var(--accent-dark-2);
}

.footer .tm-itemS {
    color: #427b96;
    font-weight: 700;
}

.ft-item {
    display: inline-block;
    vertical-align: top;
    width: 19%;
    margin-right: 6%;
    position: relative;
    text-align: left;
}
.ft-item img {
    max-width: 100%;
}
.ft-item ul li a {
    /* font-weight: 400; */
    line-height: 1;
}

.ft-item:first-child {
    width: 16%;
}

.ft-item:nth-child(2) {
    width: 11%;
}

.ft-item:nth-child(3) {
    width: 11%;
}

.ft-item:nth-child(4) {
    width: 13%;
}

.ft-item:last-child {
    margin-right: 0;
}

.ft-sep {
    position: absolute;
    right: 46px;
    top: 0;
}

.ft-descr {
    margin-top: 10px;
    font-size: 16px;
    line-height: 30px;
}

.ft-item ul {
    list-style: none;
}

.ft-label {
    top: 0;
    line-height: 1;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.ft-item li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 150%;
}

.ft-item a:hover {
    text-decoration: underline;
}

.ft-phone {
    font-size: 24px;
    color: var(--accent-color);
    line-height: 1;
    font-weight: 700;
}

.ft-b {
    margin-top: 160px;
}

.ft-copy {
    float: right;
    width: 55%;
}

.ft-copy .ft-label {
    margin-bottom: 20px;
}

.ft-copy .ft-copy-text {
    font-size: 24px;
    color: #36cdff;
}

@media (max-width: 1250px) {
    .ft-item:first-child {
        width: 100%;
        margin-bottom: 30px;
    }

    .ft-item:nth-child(2) {
        width: 18%;
        margin-bottom: 30px;
    }

    .ft-item:nth-child(3) {
        width: 18%;
        margin-bottom: 30px;
    }

    .ft-item:nth-child(4) {
        width: 25%;
        margin-bottom: 30px;
    }
}
@media (max-width: 900px) {
    .ft-item:first-child {
        width: 100%;
        margin-bottom: 30px;
    }

    .ft-item:nth-child(2) {
        width: 40%;
        margin-bottom: 30px;
    }

    .ft-item:nth-child(3) {
        width: 40%;
        margin-bottom: 30px;
    }

    .ft-item:nth-child(4) {
        width: 40%;
        margin-bottom: 30px;
    }

    .ft-item:last-child {
        width: 40%;
        margin-bottom: 30px;
    }
}
@media (max-width: 500px) {
    .ft-item:first-child {
        width: 100%;
        margin-bottom: 30px;
    }

    .ft-item:nth-child(2) {
        width: 100%;
        margin-bottom: 30px;
    }

    .ft-item:nth-child(3) {
        width: 100%;
        margin-bottom: 30px;
    }

    .ft-item:nth-child(4) {
        width: 100%;
        margin-bottom: 30px;
    }

    .ft-item:last-child {
        width: 100%;
        margin-bottom: 30px;
    }

    .ft-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .ft-sep {
        position: relative;
        right: 0;
        top: 0;
    }

    .ft-b {
        margin-top: 30px;
    }

    .ft-copy {
        width: 100%;
    }
}
/* FOOTER END */
/* QUOTE POPUP START */
.quote-popup {
    padding: 0;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.283);
}
.quote-popup > form {
    width: 100%;
    background-color: var(--accent-color-2);
}
@media (max-width: 700px) {
    .quote-popup > form {
        grid-template-columns: 100%;
    }
}
.quote-popup__form-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    justify-content: flex-start;
    grid-gap: 40px 35px;
    padding: 50px 50px 50px 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.quote-popup__form-block * {
    font-family: var(--font-style-3);
}
.quote-popup__form-block__head {
    grid-column: 1/-1;
    text-align: center;
    color: #fff;
}
.quote-popup__form-block .title {
    color: #fff;
    font-weight: 300;
    margin-bottom: 15px;
}
.quote-popup__form-block .jfilestyle {
    background-color: transparent;
}
.quote-popup__form-block > input,
.quote-popup__form-block .jfilestyle input,
.quote-popup__form-block > textarea {
    border: none;
    padding: 17px;
    width: 100%;
    background-color: white;
    transition: 0.2s ease;
}
.quote-popup__form-block .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 5px;
    margin: 0 auto;
}
.quote-popup__form-block__checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.quote-popup__form-block__checkboxes-wrapper {
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
@media (max-width: 1550px) {
    .quote-popup__form-block__checkboxes-wrapper {
        flex-direction: column;
        row-gap: 10px;
    }
}
.quote-popup__form-block input[type='file'] {
    display: none;
}
.quote-popup__form-block .file-label {
    color: #fff;
}
.quote-popup__form-block .quote-file {
    width: auto;
    position: relative;
    padding-right: 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.quote-popup__form-block .quote-upload {
    display: inline-block;
    padding: 10px 12px;
    cursor: pointer;
    /* text-transform: uppercase; */
    background-color: #e0e0e0;
    color: #000;
    font-weight: 400;
    transition: 0.3s ease;
    position: relative;
}
.quote-popup__form-block .quote-upload.active {
    background-color: rgba(0, 128, 0, 0.589);
    color: #fff;
    border: 1px solid #ffffff47;
}
.quote-popup__form-block .remove-file {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    margin-left: 10px;
    cursor: pointer;
}
@media (max-width: 1000px) {
    .quote-popup__form-block {
        padding: 45px;
    }
}
@media (max-width: 700px) {
    .quote-popup__form-block {
        grid-template-columns: 100%;
        row-gap: 15px;
    }
}
@media (max-width: 550px) {
    .quote-popup__form-block {
        padding: 50px 5%;
    }
}
.quote-popup__image-block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 700px) {
    .quote-popup__image-block {
        display: none;
    }
}
.quote-popup.fancybox__content {
    --carousel-button-svg-width: 14px;
    --carousel-button-svg-height: 14px;
}
.quote-popup.fancybox__content > .carousel__button.is-close {
    top: 10px;
    right: 10px;
    border: 3px solid #fff;
}

/* QUOTE POPUP END */
/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__img par__txt';
    grid-gap: 5%;
    max-width: var(--page-max-width);
    margin: auto;
}
.par.par--bg-accent .par__txt {
    background-color: var(--accent-color);
    color: #fff;
}
.par.par--bg-accent .par__txt ul li {
    color: #fff;
}
.par.par--bg-accent .par__txt p {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__txt-footer a {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link {
    color: #fff;
    border-color: #fff;
}
.par.par--bg-accent .par__txt .par__text-link:hover {
    background-color: #fff;
    color: var(--accent-color);
}
.par.par--bg-accent .par__txt .par__subttl {
    color: #fff;
}
.par.par--bg-accent .par__txt .par__subttl::after {
    background-color: var(--accent-color-2);
}
.par.par--bg-accent .par__txt ul li::after {
    background-color: #fff;
}
.par.par--bottom-margin {
    margin-bottom: 50px;
}
.par__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    /* padding: 50px 0; */
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
}
.par__txt ul:not(.styled-list) {
    list-style: none;
    padding-left: 30px;
}
.par__txt ul:not(.styled-list) li {
    font-weight: 500;
    position: relative;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 150%;
    color: #000000;
    padding-left: 45px;
    margin-bottom: 15px;
}
.par__txt ul:not(.styled-list) li::after {
    content: '';
    position: absolute;
    top: clamp(3px, 3vw, 6px);
    left: 0;
    width: 33px;
    height: 33px;
    background-image: url(/img/icons/vi_par-checkmark-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.par__txt-footer {
    border-top: 1px solid #bdbdbd;
    margin-bottom: 25px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 20px;
}
.par__txt-footer__item {
    text-transform: uppercase;
    font-size: clamp(12px, 1vw, 18px);
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.par__txt-footer__item a {
    color: #000;
}
.par__txt-footer__item svg {
    color: var(--accent-color-2);
}
.par__img {
    grid-area: par__img;
    position: relative;
    display: flex;
    align-items: flex-start;
}
.par__img img {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
.par__ttl {
    font-weight: 400;
    font-size: clamp(25px, 4vw, 46px);
    line-height: 1;
    font-weight: 500;
    color: #000000;
}
.par__subttl {
    font-weight: 700;
    font-size: clamp(16px, 2vw, 22px);
    text-transform: uppercase;
    color: var(--accent-color);
}
.par__subttl--center {
    text-align: center;
}
.par__subttl--center::after {
    left: 50%;
    transform: translateX(-50%);
}
.par__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #000000;
    margin-top: 30px;
}
.par__text > img {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.par__text-link {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    border: 1px solid #333333;
    padding: 5px 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: #333333;
    transition: 0.3s ease-in-out;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.par__text-link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--color-white);
}
.par__actions {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 15px;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .par {
        grid-template-columns: 100% !important;
        grid-template-rows: -webkit-max-content 1fr;
        grid-template-rows: max-content 1fr;
        row-gap: 0;
        grid-template-areas: 'par__img' 'par__txt' !important;
    }
    .par .par__img {
        display: block;
        margin: 0 auto;
    }
    .par .par__img img {
        display: block;
        margin: 0 auto;
    }
    .par .par__img.par__img--video {
        margin: 0;
    }
}

.par.par--left {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__img par__txt';
}

.par.par--right {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__txt par__img';
}

.par.par--center {
    grid-template-columns: 100%;
    grid-template-areas: 'par__img' 'par__txt ';
}
.par.par--center .par__img {
    display: block;
    margin: 0 auto;
}
.par.par--center .par__img img {
    display: block;
    margin: 0 auto;
}
.par.par--center .par__txt {
    padding: 5% 0;
}

.par__txt.par__txt--center {
    justify-content: center;
}

/* [_paragraph end] */
/* [MAIN CSS START] */
.main-container--margin {
    margin-top: 67px;
}

.first-padding {
    padding-top: 220px;
}
@media (max-width: 1375px) {
    .first-padding {
        padding-top: 170px;
    }
}

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

.container {
    margin: 0 auto;
    max-width: var(--page-max-width);
}
.container.container--block {
    display: block;
    margin: 0;
}
.container--mar-b-80 {
    margin-bottom: var(--container-margin-bottom);
}

.pa-inline {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.pa-block {
    padding-top: 60px;
    padding-bottom: 60px;
}
.pa-block--small {
    padding-top: 20px;
    padding-bottom: 20px;
}

.relative {
    position: relative;
}

.pa-before-footer {
    padding-bottom: 200px;
}

.bg-accent {
    background-color: var(--accent-background-color);
}

input.error,
select.error,
textarea.error {
    border-color: var(--input-error-border-color) !important;
    background-color: var(--input-error-background-color) !important;
}

input,
select,
textarea {
    border: none;
    padding: 15px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #fff;
    transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border: 1px solid #fff;
    background-color: #fff;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #eee;
    border: 1px solid #bdbdbd;
    opacity: 0.8;
}

.titles-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
}
.titles-block--center {
    align-items: center;
}

.title {
    font-weight: 400;
    font-size: clamp(25px, 4vw, 46px);
    line-height: 1;
    font-weight: 500;
    color: #000000;
}
.title > span {
    color: var(--accent-color);
}
.title--center {
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
}
.title--center::after {
    left: 50%;
    transform: translateX(-50%);
}
.title--head {
    font-weight: 600;
    font-size: clamp(30px, 4vw, 80px);
}
.title--large {
    font-size: clamp(40px, 2vw, 52px);
}
.title--small {
    font-size: clamp(20px, 2vw, 36px);
    margin-bottom: 5px;
}

.subtitle {
    font-weight: 700;
    font-size: clamp(16px, 2vw, 22px);
    text-transform: uppercase;
    color: var(--accent-color);
}
.subtitle--center {
    margin: 0 auto;
    text-align: center;
}

.title-text {
    max-width: 1150px;
    text-align: center;
    margin: 0 auto 40px auto;
    font-size: 16px;
    line-height: 130%;
}

.fc-accent {
    color: var(--accent-color);
}

.fc-white {
    color: var(--color-white);
}

.fc-black {
    color: var(--color-black);
}

.nowrap {
    white-space: nowrap;
}

.custom-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #333333;
    margin-top: 10px;
    transition: 0.3s ease;
}
.custom-link > svg {
    color: var(--accent-color);
    transition: 0.3s ease;
}
.custom-link:hover {
    text-decoration: underline;
    color: var(--accent-color);
}
.custom-link:hover > svg {
    transform: translateX(5px);
}

.btn {
    display: inline-block;
    border: 1px solid var(--accent-color);
    color: #fff;
    background: var(--accent-color);
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn:hover {
    background: var(--accent-color-2);
    border-color: var(--accent-color-2);
}
.btn.btn--light-hover:hover {
    background: var(--accent-color-3);
    border-color: var(--accent-color-3);
    color: #000;
}
.btn.btn--small {
    padding: 10px 20px !important;
    font-size: 14px;
    border: 2px solid var(--accent-color);
}
.btn.btn--small:hover {
    background: var(--accent-color-2);
    border-color: var(--accent-color-2);
}
@media (max-width: 500px) {
    .btn {
        padding: 10px 15px;
    }
}
@media (max-width: 767px) {
    .btn {
        font-size: 12px;
        line-height: 1.1;
    }
}

.btn.btn--flex {
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.btn.btn--transparent {
    border: 1px solid #000;
    color: #000;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}
.btn.btn--transparent:hover {
    background: var(--accent-color);
    color: var(--color-white);
}
@media (max-width: 767px) {
    .btn.btn--transparent {
        font-size: 12px;
        line-height: 1.1;
    }
}

.btn.btn--color-black,
.btn.btn--transparent.btn--color-black {
    color: #000;
    border-color: #000;
}
.btn.btn--color-black:hover,
.btn.btn--transparent.btn--color-black:hover {
    transform: translateY(-2px) scale(1.02);
    background: #696767;
    color: #fff;
    border-color: #696767;
}

.btn.btn--light {
    border: 1px solid var(--accent-color);
    color: #fff;
    background: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--light:hover {
    background: var(--accent-color-2);
    color: var(--color-white);
    border: 1px solid var(--accent-color-2);
    box-shadow: 0 0 5px -2px #464646;
}

.btn.btn--light2 {
    border: 1px solid var(--accent-color-3);
    color: #000;
    background: var(--accent-color-3);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--light2:hover {
    background: var(--accent-color);
    color: var(--color-white);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 5px -2px #464646;
}

.btn.btn--disabled {
    background: #ccc;
    color: #fff;
    border: 1px solid #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

.btn.btn--loading {
    position: relative;
    pointer-events: none;
}
.btn.btn--loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1em;
    height: 1em;
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
.btn.btn--loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: inherit;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@-webkit-keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.line-clamp {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    position: relative;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
    height: 1.2em;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    height: 2.4em;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
    height: 3.6em;
}

.line-clamp-4 {
    -webkit-line-clamp: 4;
    height: 4.8em;
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
    height: 6em;
}

/* End required CSS. */
/* [Pretty checkbox adjustments] */
.pretty {
    white-space: normal;
}
.pretty .state label {
    text-indent: 0;
    padding-left: 31px;
}
.pretty .state label:after,
.pretty .state label:before {
    top: 0;
    background-color: #fff;
    border-radius: 3px;
}
.pretty input:checked ~ .state.p-primary label:after {
    background-color: var(--accent-color) !important;
}
.pretty.p-default input:checked ~ .state label:after {
    background-color: var(--accent-color) !important;
}

.divider {
    border: none;
    border-bottom: 1px solid #979696;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 35px;
    width: 100%;
}

.select2.select2-container .select2-choice {
    padding: 5px 10px;
}

.select2-container--default .select2-selection--single {
    border: none;
    height: 100%;
    padding: 15px;
}

.select2-container--default .select2-selection--single.select2--small {
    padding: 11px 15px;
}

.select2-container--default .select2-selection--single.select2--bordered {
    border: 1px solid #bdbdbd;
    border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    font-size: 14px;
    line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: linear-gradient(#e0e0e0, #e0e0e0);
    width: 28px;
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #222222 #222222 #222222 #222222;
    border: 1px solid #222222;
    border-width: 0px 2px 2px 0px;
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #222222 #222222 #222222 #222222;
    border: 1px solid #222222;
    border-width: 0px 2px 2px 0px;
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    transform: rotate(-135deg);
    transition: 0.3s ease;
}

.not-found-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.not-found-page__title {
    font-weight: 500;
    font-size: clamp(25px, 4vw, 38px);
    color: var(--accent-color-4);
    line-height: 100%;
    margin-bottom: 15px;
    padding-left: 20px;
    line-height: 100%;
    position: relative;
    color: var(--accent-color);
}
.not-found-page__subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

.text-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    padding-left: var(--container-padding);
    color: #fff;
}
@media (max-width: 900px) {
    .text-layout {
        grid-template-columns: 100%;
        row-gap: 20px;
        padding-left: 0;
        padding-right: 0;
    }
    .text-layout__title {
        padding: 0 var(--container-padding);
    }
}

.ptl-wrapper {
    padding: 45px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 15px;
}
.ptl-sm-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 15px;
    padding-bottom: 45px;
}
.ptl__sm-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #000000;
}
.ptl__sm-link.ptl__sm-link--active {
    font-weight: 600;
}
.ptl__sm-link:not(:first-of-type) {
    padding-left: 20px;
    position: relative;
}
.ptl__sm-link:not(:first-of-type):before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #000;
}
.ptl__link {
    background-color: transparent;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding: 10px 30px;
    border: 1px solid #000;
    border-radius: 10px;
    color: #000;
    transition: 0.2s ease;
    cursor: pointer;
}
.ptl__link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}
.ptl__link.ptl__link--active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    position: relative;
}
.ptl__link.ptl__link--active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--accent-color);
}

.top-content {
    margin-bottom: 50px;
}
.top-content.top-content--margin-top {
    margin-top: 50px;
}

/* [MAIN CSS END] */
/* [TOOLTIPS START] */
.tippy-box {
    background-color: #fff;
    color: #000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.tippy-box__inner {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
}
.tippy-box__image {
    margin-bottom: 15px;
}
.tippy-box__text {
    text-align: center;
}

.tippy-arrow {
    color: #fff;
}

.tippy-box[data-placement^='left'] > .tippy-arrow:before {
    border-width: 14px 0 14px 14px;
    right: -13px;
    filter: drop-shadow(4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='right'] > .tippy-arrow:before {
    left: -13px;
    border-width: 14px 14px 14px 0;
    filter: drop-shadow(-4px 0px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='top'] > .tippy-arrow:before {
    border-width: 14px 14px 0;
    bottom: -13px;
    filter: drop-shadow(0px 4px 5px rgba(0, 0, 0, 0.1));
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow:before {
    border-width: 0 14px 14px;
    top: -13px;
    filter: drop-shadow(0px -4px 5px rgba(0, 0, 0, 0.1));
}

/* [TOOLTIPS END] */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* [JQUERY ACCORDION START] */
.ui-accordion .ui-accordion-header {
    padding: 24px 50px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
}
.ui-accordion .ui-accordion-header::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-image: url('/img/icons/fl_accordion.png');
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.2s ease;
}
.ui-accordion .ui-accordion-header.ui-accordion-header-active::after {
    background-image: url('/img/icons/fl_accordion-active.png');
}

.ui-widget-content {
    border: 0;
    background-color: transparent;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}
.ui-widget-content ul {
    padding-left: 25px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 0;
    border-top: 1px solid #c1c1c1;
    background-color: transparent;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    color: #000;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-radius: 0;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-radius: 0;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-radius: 0;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-radius: 0;
}

/* [JQUERY ACCORDION END] */
.text-section__text {
    text-align: center;
    max-width: 1450px;
    margin: 0 auto;
    line-height: 150%;
}

/* SERVICE INTRO START */
.service-intro {
    background-size: 50% 100%;
    /* margin-top: -50px; */
}
@media (max-width: 991px) {
    .service-intro {
        background-size: cover;
    }
}

/* SERVICE INTRO END */
.contact-container {
    background-image: url(/img/backgrounds/vi_contact-bg.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left center;
}
