:root {
    font-size: 16px;
    --white: #ffffff;
    --dark-blue: #223148;
    --blue: #304A72;
    --black: #39424F;
    --dark-grey: #7B7F85;
    --grey: #EAEDF1;
    --middle-grey: #F5F6F8;
    --light-grey: #FAFBFC;
}

@font-face {
    font-family: "Gilroy-Regular";
    src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
} 

body {
    color: var(--dark-blue);
    font-size: 1.125rem;
    font-family: "Gilroy-Regular", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.5;
}

h1,
h2,
h3,
h4 {
    line-height: 1.5;
}

h1 {
    font-size: 4.6875rem;
    font-weight: 600;
}

h2 {
    font-size: 3.75rem;
    font-weight: 600;
}

h3 {
    font-size: 1.375rem;
    font-weight: 700;
}

h4 {
    font-size: 1.375rem;
    font-weight: 500;
}

a {
    color: var(--black);
    text-decoration: none;
}

.btn-prim {
    display: block;
    height: max-content;
    color: var(--white);
    background-color: var(--dark-blue);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0;
    padding: 0.75em 4em;
    cursor: pointer;
    -webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
    transition: all .1s ease;
}

.btn-prim.alt {
    width: 100%;
    background-color: var(--blue);
    padding: 0.75em 1.5em;
}

.btn-prim:hover,
.btn-prim:active {
    color: var(--white);
    background-color: var(--blue);
    text-decoration: none;
}

.btn-prim.alt:hover,
.btn-prim.alt:active {
    color: var(--dark-blue);
    background-color: var(--white);
}

.btn-neg {
    position: relative;
    display: block;
    color: var(--dark-blue);
    background-color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0;
    padding: 1em 1.4em 1em 4.9em;
    cursor: pointer;
    -webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
    transition: all .1s ease;
}

.btn-neg::before {
    content: '\e80e';
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    aspect-ratio: 1;
    color: var(--dark-blue);
    background-color: var(--grey);
    font-family: "papadom";
    font-style: normal;
    font-size: 0.75rem;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn-neg:hover,
.btn-neg:active,
.btn-neg.active {
    color: var(--dark-blue);
    background-color: var(--grey);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
select,
textarea {
    width: 100%;
	color: var(--dark-blue);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--light-grey);
    border: none;
    border-radius: 0;
    padding: 0.75em 1.5em;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
select:focus,
textarea:focus {
	outline: none !important;
    box-shadow: none !important;
    background-color: var(--middle-grey);
}

.form-check-input {
    float: left;
    width: 1em;
    height: 1em;
    background-color: var(--dark-blue);
    border: 2px solid var(--white);
    margin-right: 0.5rem;
    outline: none !important;
    box-shadow: none !important;
}

.form-check-input:checked,
.form-check-input:focus {
    background-color: var(--dark-blue);
    border: 2px solid var(--white);
    outline: none !important;
    box-shadow: none !important;
}

form .agreement {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 400;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="range"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="week"]::placeholder,
input[type="time"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
select::placeholder,
option:disabled,
textarea::placeholder {
    color: var(--black);
    opacity: 0.75;
}

a[name] {
    --padd: calc( var(--padding) * -1 )
    display: block;
    transform: translateY(var(--padding));
}

/* header */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid #c5c5c580;
}

.navbar {
    padding: 1.5rem 0;
}

.navbar .navbar-collapse {
    column-gap: 4.5rem;
}

.navbar .navbar-nav {
    width: 100%;
    column-gap: 3.875rem;
    row-gap: 0.5rem;
    justify-content: flex-end;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    display: block;
    color: var(--dark-blue);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
    border: none;
    transition: none;
    padding: 0.3em 0;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--dark-blue);
    opacity: 0;
    -webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
    transition: all .2s ease;
}

.navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
    opacity: 1;
}

.navbar .navbar-text {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.navbar .navbar-text .phone {
    display: block;
    color: var(--dark-blue);
    font-size: 1.375rem;
    font-weight: 700;
}

.navbar .navbar-toggler {
    border: none;
}

.navbar .navbar-toggler:hover,
.navbar .navbar-toggler:active {
    border: none;
    outline: none;
    box-shadow: none;
}

/* page title */
.page-title {
    padding: 3rem 0 2rem;
}

.page-title .title {
    line-height: 1.125;
    margin: 0;
}

.page-title .sub-title {
    display: block;
    width: 30%;
    color: var(--black);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.25;
    margin-left: auto;
}

.page-title .title-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.page-title .title-wrap .title {
    font-size: 3.75rem;
    line-height: 1;
}

.page-title .title-wrap .btn-neg {
    flex-shrink: 0;
}

.page-title .title-wrap .btn-neg::before {
    content: '\e811';
    font-size: 0.875rem;
}

/* main slider*/
.slider {
    position: relative;
    margin-bottom: var(--padding);
    padding: 0;
}

.slider .slider-list .item {
    display: block;
    aspect-ratio: 8 / 3;
}

.slider .slider-list .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider .overlay-wrap {
    position: absolute;
    inset: 0;
}

.slider .overlay-wrap .container {
    width: 100%;
    height: 100%;
}

.slider .overlay-wrap .butt-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.slider .overlay-wrap .butt-wrap .btn-prim {
    position: absolute;
    top: 0;
    right: 0;
}

.slider .overlay-wrap .butt-wrap .btn-neg {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* slick slider */
.slick-slider {
    overflow: hidden;
}

.slick-slider .slick-list {
    margin: 0 -0.75rem;
}

.slick-slider .slick-list .slick-slide {
    margin: 0 0.75rem;
}

.slick-slider.slick-dotted {
    margin-bottom: 3rem;
}

.slick-slider .slick-dots {
    left: 0;
    bottom: -3rem;
    z-index: 1000;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li:only-of-type {
    display: none;
}

.slick-dots li button::before {
    color: var(--blue);
    font-size: 0.5rem;
    opacity: .5;
}

.slick-dots li.slick-active button::before {
    color: var(--blue);
    font-size: 0.625rem;
    opacity: 1;
}

.slick-prev,
.slick-next {
    width: 2.75rem;
    height: 2.75rem;
    background-color: var(--grey);
}

.slick-prev {
    left: -10%;
    transform: translateX(-50%);
}

.slick-next {
    right: -10%;
    transform: translateX(50%);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: var(--dark-blue);
}

.slick-prev::before,
.slick-next::before {
    color: var(--dark-blue);
    font-family: 'papadom';
    font-size: 0.875rem;
    line-height: 1;
    opacity: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev::before {
    content: '\e811';
}

.slick-next::before {
    content: '\e810';
}

.slick-prev:hover::before,
.slick-prev:focus::before,
.slick-next:hover::before,
.slick-next:focus::before {
    color: var(--white);
}

/* sections */
section {
    --padding: 7.5rem;
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: var(--padding);
}

section .title {
    display: block;
    color: var(--dark-blue);
    line-height: 1.125;
    word-break: break-word;
    margin: 0 0 0.5rem;
}

section .hd-wrap {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 0.5rem;
}

section .hd-wrap .title {
    margin: 0;
}

section .hd-wrap .btn-prim {
    font-size: 0.9375rem;
}

section .hd-wrap .arrows-wrap {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-shrink: 0;
}

section .hd-wrap .arrows-wrap .slick-prev,
section .hd-wrap .arrows-wrap .slick-next {
    position: unset;
    transform: none;
}

section p {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
}

section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

section ul > li {
    display: block;
    list-style: none;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.75em;
    padding: 0;
}

section > .num {
    position: absolute;
    top: auto;
    left: 2.25rem;
    display: block;
    color: var(--black);
    font-size: 1.375rem;
    opacity: 0.5;
}

/* about */
.about {
    position: relative;
    background-image: url("/vendor/img/bg1.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

.about .txt {
    display: block;
    color: var(--black);
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1;
}

.about .items-list {
    display: block;
    padding-top: 5.5rem;
}

.about .item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding-left: 1.6875rem;
}

.about .item::before {
    content: '\e80e';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    color: var(--dark-blue);
    font-family: "papadom";
    font-style: normal;
    font-size: 0.75rem;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    margin-top: 0.375em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.about .item h3 {
    color: var(--dark-blue);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}

.about .item span {
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 400;
}

/* tabs 1 */
.tabs-1 {
    background-color: var(--light-grey);
    padding-top: var(--padding);
    padding-bottom: 0;
}

.tabs-1 .title {
    margin-bottom: 2rem;
}

.tabs-1 .tab-content .img-wrap {
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 2rem;
}

.tabs-1 .tab-content .img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.tabs-1 .text {
    display: block;
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 400;
    text-align: justify;
}

.tabs-1 .nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 2.5rem;
    column-gap: 0.9375rem;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.tabs-1 .nav .nav-item .nav-link {
    position: relative;
    display: block;
    padding: 0 0 0 4.625rem;
}

.tabs-1 .nav .nav-item .nav-link .num {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.75rem;
    aspect-ratio: 1;
    color: var(--dark-blue);
    background-color: var(--grey);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}

.tabs-1 .nav .nav-item .nav-link:hover .num,
.tabs-1 .nav .nav-item .nav-link.active .num {
    color: var(--white);
    background-color: var(--dark-blue);
}

.tabs-1 .nav .nav-item .nav-link .hd {
    display: block;
    color: var(--dark-blue);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5em;
}

.tabs-1 .nav .nav-item .nav-link .txt {
    display: block;
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.25;
}

/* proof */
.proof {
    background-image: url(/vendor/img/bg2.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto;
    padding-top: var(--padding);
    padding-bottom: 0;
}

.proof .title {
    margin-bottom: 4.25rem;
}

.proof .proof-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.proof .proof-list .item {
    position: relative;
    display: block;
    border: 1px solid transparent;
    padding: 2.5rem 2.5rem 2.5rem 5.25rem;
    -webkit-transition: border .2s ease;
	-moz-transition: border .2s ease;
    transition: border .2s ease;
}

.proof .proof-list .item:hover,
.proof .proof-list .item.slick-active {
    border: 1px solid var(--dark-blue);
}

.proof .proof-list .item::before,
.proof .proof-list .item.slick-active::before {
    content: '\e80e';
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.75rem;
    aspect-ratio: 1;
    color: var(--white);
    background-color: var(--dark-blue);
    font-family: "papadom";
    font-style: normal;
    font-size: 0.75rem;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    -webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
    transition: all .2s ease;
}

.proof .proof-list .item:hover::before,
.proof .proof-list .item.slick-active::before {
    opacity: 1;
}

.proof .proof-list .item .num {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    color: var(--dark-grey);
    font-size: 2rem;
    font-weight: 400;
    padding: 2.5rem;
}

.proof .proof-list .item .content-wrap {
    border-left: 1px solid var(--grey);
    padding-left: 2.5rem;
}

.proof .proof-list .item .hd {
    display: block;
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75em;
}

.proof .proof-list .item .txt,
.proof .proof-list .item .txt p {
    color: var(--dark-blue);
    font-size: 1.375rem;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.proof .proof-list .item .txt p strong {
    display: inline-block;
    background-color: #637CA340;
    font-weight: 300;
    padding: 0 0.125em;
}

/* projects */
.projects {
    background-color: var(--light-grey);
    padding-top: var(--padding);
}

.projects .hd-wrap {
    margin-bottom: 2rem;
}

.projects .item .img-wrap {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.projects .item .img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.projects .item .img-wrap .btn-neg {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
	-moz-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.projects .item .capt {
    display: block;
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 400;
    margin-top: 0.6em;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
	-moz-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.projects .item.slick-current .img-wrap .btn-neg,
.projects .item.slick-current .capt {
    opacity: 1;
}

/* slider 2 */
.slider-2 {
    background-image: url(/vendor/img/bg2.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto;
    padding-top: var(--padding);
    padding-bottom: 0;
}

.slider-2 .text-wrap {
    display: flex;
    gap: 2rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.75rem;
}

.slider-2 .text-wrap .btn-prim {
    flex-shrink: 0;
}

.slider-2 .text-wrap .text {
    flex-basis: 30%;
    flex-shrink: 0;
    color: var(--black);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.25;
}

.slider-2 .slider-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.slider-2 .overlay-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.slider-2 .overlay-wrap .container {
    width: 100%;
    height: 100%;
}

.slider-2 .overlay-wrap .main-wrap {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}

.slider-2 .overlay-wrap .main-wrap .slick-prev,
.slider-2 .overlay-wrap .main-wrap .slick-next {
    position: unset;
    transform: none;
}

.slider-2 .overlay-wrap .main-wrap .arrows-wrap {
    display: flex;
    flex-direction: row;
}

.slider-2 .slick-prev,
.slider-2 .slick-next {
    background-color: var(--white);
}

.slider-2 .slick-prev:hover,
.slider-2 .slick-prev:focus,
.slider-2 .slick-next:hover,
.slider-2 .slick-next:focus {
    background-color: var(--grey);
}

.slider-2 .slick-prev::before,
.slider-2 .slick-next::before {
    color: var(--dark-blue);
}

.slider-2 .slick-prev:hover::before,
.slider-2 .slick-prev:focus::before,
.slider-2 .slick-next:hover::before,
.slider-2 .slick-next:focus::before {
    color: var(--dark-blue);
}

.slider-2 .slider-2-list .item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 3;
}

.slider-2 .slider-2-list .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-2 .slider-2-list .item .caption {
    display: block;
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 400;
    margin-top: 0.6em;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.slider-2 .slider-2-list .item.slick-active .caption {
    opacity: 1;
}

/* tabs 2 */
.tabs-2 {
    background-image: url(/vendor/img/bg2.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
    padding-top: var(--padding);
    padding-bottom: var(--padding);
}

.tabs-2 .title {
    margin-bottom: 1em;
}

.tabs-2 .nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 2.5rem;
    column-gap: 0.9375rem;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.tabs-2 .nav .nav-item .nav-link {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 1.875rem;
    align-items: flex-start;
    cursor: pointer;
    padding: 0;
}

.tabs-2 .nav .nav-item .nav-link .hd {
    display: block;
    color: var(--dark-blue);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.5em;
}

.tabs-2 .nav .nav-item .nav-link .icon-wrap {
    display: flex;
    width: 3.375rem;
    height: auto;
    background-color: var(--grey);
    aspect-ratio: 1;
    overflow: hidden;
    flex-shrink: 0;
}

.tabs-2 .nav .nav-item .nav-link:hover .icon-wrap,
.tabs-2 .nav .nav-item .nav-link.active .icon-wrap {
    background-color: var(--dark-blue);
}

.tabs-2 .nav .nav-item .nav-link img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    filter: brightness(0) saturate(100%) invert(17%) sepia(6%) saturate(3747%) hue-rotate(178deg) brightness(96%) contrast(94%);
}

.tabs-2 .nav .nav-item .nav-link:hover img,
.tabs-2 .nav .nav-item .nav-link.active img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7472%) hue-rotate(14deg) brightness(110%) contrast(94%);
}

.tabs-2 .tab-content .item .img-wrap {
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 2rem;
}

.tabs-2 .tab-content .item .img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* callus */
.callus {
    position: relative;
    padding: var(--padding) 0;
    background-color: var(--dark-blue);
}

.callus::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 45%;
    height: 100%;
    background-image: url('/vendor/img/form-back.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

.callus .title {
    color: var(--white);
    margin-bottom: 1.375rem;
}

.callus .text {
    display: block;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 3.25rem;
}

/* contact */
.contact {
    padding-top: var(--padding);
    padding-bottom: 0;
}

.contact .navbar {
    height: 100%;
    padding: 0;
}

.contact .navbar .navbar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 1rem;
    align-items: center;
    justify-content: space-between !important;
    height: 100%;
}

.contact .navbar .navbar-nav .nav-item {
    margin: 0;
}

.contact .vcard {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--middle-grey);
    padding: 2rem;
}

.contact .vcard .vcard-header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 5rem;
    flex-grow: 1;
}

.contact .vcard .vcard-header .social-wrap {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.contact .vcard .vcard-header .social-wrap a {
    display: flex;
    color: var(--dark-grey);
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.9375rem;
    background-color: var(--white);
    justify-content: center;
    align-items: center;
}

.contact .vcard .vcard-header .social-wrap a:hover {
    color: var(--dark-blue);
}

.contact .vcard .vcard-header .social-wrap a.vk {
    font-size: 0.875rem;
}

.contact .vcard .vcard-header .social-wrap a.ig {
    font-size: 1.125rem;
}

.contact .vcard .vcard-header .social-wrap a i::before {
    width: 1.5em;
    margin: 0;
}

.contact .vcard .phone {
    display: block;
    width: max-content;
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.contact .vcard .address,
.contact .vcard .hours {
    display: block;
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 500;
}

.contact .vcard .address span {
    display: inline-block;
}

.contact .call-request {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    background-image: url(/vendor/img/request.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact .call-request .btn-neg {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* page content */
.page-content {
}

.page-content .content {
    font-size: 1rem;
    margin: 0 0 2em;
}

.page-content .content a {
    color: var(--blue);
    text-decoration: underline;
}

.page-content .content a:hover {
    color: var(--blue);
    text-decoration: none;
}

/* project info */
.project-info {
    padding-bottom: 3rem;
}

.project-info .gallery-wrap {
    position: relative;
}

.project-info .gallery-wrap .arrows-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
}

.project-info .gallery-wrap .slick-prev,
.project-info .gallery-wrap .slick-next {
    position: unset;
    transform: none;
    background-color: var(--white);
}

.project-info .gallery-wrap .slick-prev:hover,
.project-info .gallery-wrap .slick-prev:focus,
.project-info .gallery-wrap .slick-next:hover,
.project-info .gallery-wrap .slick-next:focus {
    background-color: var(--grey);
}

.project-info .gallery-wrap .slick-prev:hover::before,
.project-info .gallery-wrap .slick-prev:focus::before,
.project-info .gallery-wrap .slick-next:hover::before,
.project-info .gallery-wrap .slick-next:focus::before {
    color: var(--dark-blue);
}

.project-info .meta-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 2.5rem;
    column-gap: 0.9375rem;
}

.project-info .meta-wrap .meta-item {
    position: relative;
    display: block;
    padding: 0 0 0 4.625rem;
}

.project-info .meta-wrap .meta-item .icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.75rem;
    aspect-ratio: 1;
    color: var(--dark-blue);
    background-color: var(--grey);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1;
}

.project-info .meta-wrap .meta-item .icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.75rem;
    aspect-ratio: 1;
    color: var(--dark-blue);
    background-color: var(--grey);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1;
}

.project-info .meta-wrap .meta-item .hd {
    display: block;
    color: var(--dark-blue);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5em;
}

.project-info .meta-wrap .meta-item .txt {
    display: block;
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.25;
}

/* footer */
.site-footer {
    padding: 3rem 0;
}

.site-footer .footer-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: 1rem;
}

.site-footer .footer-wrap .copyright,
.site-footer .footer-wrap .footer-link {
    color: var(--dark-grey);
    font-size: 0.9375rem;
}

.site-footer .footer-wrap .footer-link:hover {
    text-decoration: underline;
}

.site-footer .footer-wrap .codes-wrap {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-left: auto;
}

.site-footer .footer-wrap .codes-wrap .reg-code {
    color: var(--dark-grey);
    font-size: 0.9375rem;
    opacity: 0.75;
}

/* modal form */
.modal .modal-cst {
    max-width: 560px;
}

.modal .modal-cst .modal-content {
    position: relative;
    border: none;
    border-radius: var(--border-radius);
    padding: 3rem;
}

.modal .modal-cst .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--dark-blue);
    font-size: 1rem;
}

.modal .modal-cst .modal-title {
    display: block;
    color: var(--orange);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5em;
}

.modal .modal-cst .modal-text {
    display: inline-block;
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1em;
}

.modal .modal-cst form label {
    display: inline;
    color: var(--black);
    font-size: 0.875rem;
}

.modal .modal-cst form label a {
    display: inline;
    color: var(--black);
    text-decoration: underline;
}

.modal .modal-cst .btn-prim {
    width: 100%;
}

.modal-open .container {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

/* animations */
.lazyload {
    opacity: 0;
    transform: translateY(30px);
    -webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
    transition: all .2s ease;
}

.lazyload.doit {
    opacity: 1;
    transform: translateY(0);
}

.appear-top {
    opacity: 0;
    transform: translateY(50%);
    -webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
    transition: all .2s ease;
}

.appear-top.doit {
    opacity: 1;
    transform: translateY(0);
}

.appear-left {
    opacity: 0;
    transform: translateX(50%);
    -webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
    transition: all .2s ease;
}

.appear-left.doit {
    opacity: 1;
    transform: translateX(0);
}


@media (max-width: 1399.98px) {
}

@media (max-width: 1199.98px) {
    .navbar-text {
        display: none;
    }
    .page-title .sub-title {
        width: 50%;
    }
    .slider .slider-list .item {
        display: block;
        aspect-ratio: 2 / 1;
    }
    section > .num {
        display: none;
    }
    .slider-2 .text-wrap .text {
        flex-basis: 50%;
    }
    .contact .navbar .navbar-nav {
        justify-content: flex-start !important;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 3.75rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    .site-header .navbar .navbar-nav {
        padding-top: 2rem;
    }
    .page-title .sub-title {
        width: 100%;
        margin: 0;
    }
    .slider .slider-list .item {
        display: block;
        aspect-ratio: 4 / 3;
    }
    .slider-2 .text-wrap {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .slider-2 .text-wrap .text {
        flex-basis: 100%;
    }
    .callus::after {
        display: none;
    }
    .site-footer .footer-wrap {
        flex-direction: column;
    }
    .site-footer .footer-wrap .codes-wrap {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .btn-prim {
        width: 100%;
        font-size: 1rem;
    }
    .btn-neg {
        font-size: 0.75rem;
    }
    .page-title .title {
        margin: 0 0 1.5rem;
    }
    section {
        --padding: 3rem;
    }
    section .title {
        margin: 0 0 1.5rem;
    }
    .slider {
        margin-bottom: 3rem;
    }
    .about {
        padding-bottom: 1.5rem;
    }
    .about .items-list {
        padding-top: 3rem;
    }
    .tabs-1,
    .projects {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .slider-2 {
        padding-top: 1.5rem;
    }
    .slider-2 .slider-2-list .item {
        aspect-ratio: 3 / 2;
    }
    .tabs-2 .nav .nav-item .nav-link .hd {
        font-size: 1.125rem;
        font-weight: 400;
    }
    .callus {
        padding: 3rem 0;
    }
    .contact {
        padding: 3rem 0 0;
    }
    .proof {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }
    .proof .title {
        margin-bottom: 3rem;
    }
    .proof .proof-list .item {
        padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    }
    .proof .proof-list .item .num {
        font-size: 1.5rem;
        padding: 1.5rem 1.25rem;
    }
    .proof .proof-list .item .content-wrap {
        padding-left: 1.5rem;
    }
    .proof .proof-list .item .hd {
        font-size: 1.5rem;
    }
    .proof .proof-list .item .txt,
    .proof .proof-list .item .txt p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    
}