@font-face {
    font-family: 'Miriam Libre';
    src: url('../fonts/MiriamLibre-Regular.ttf');
}

@font-face {
    font-family: 'Horta';
    src: url('../fonts/horta.ttf');
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'RobotoBold';
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: 'RobotoCondensed';
    src: url('../fonts/RobotoCondensed-Regular.ttf');
}

@font-face {
    font-family: 'RobotoCondensedBold';
    src: url('../fonts/RobotoCondensed-Bold.ttf');
}

:root {
    --textColorDark: #301616;
    --linkHoverColor: #177DB2;
    --textLight: #808080;
    --accentColorLight: #3AA9E2;
    --accentColor: #177DB2;
    --accentColorDark: #014366;
    --accentColorDarker: #0E233E;
    --borderLightColor: #e0e0e0;

    font-family: Roboto, sans-serif;
}

*, :after, :before {
    box-sizing: border-box
}

a {
    text-decoration: none;
    color: var(--accentColor);
}

a:hover {
    color: var(--linkHoverColor);
}

body, html {
    height: 100%
}

body {
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    position: relative;
    visibility: visible;
    overflow-x: hidden;
    color: var(--textColorDark);
    background-color: #fff;
    padding-right: 0 !important;
}

.header-container {
    max-width: 1280px;
    align-items: center;
}

.header-container h3,
.header-container h2,
.header-container h4,
.header-container a {
    text-decoration: none;
}

@media (max-width: 450px) {
    h5 {
        font-size: 1rem;
    }
}

.header-container h3 {
    font-weight: bold;
    color: var(--accentColor);
}

.logo,
.sticky-header.sticky .logo {
    width: 150px;
    margin-top: 0;
    margin-bottom: 0;
}

.sticky-header .logo {
    width: 200px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.logo-block {
    display: flex;
    align-items: center;
}

.logo-block p {
    margin-left: 30px;
    margin-bottom: 0;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    color: #606060;
}

.header-mobile .logo-block p {
    margin-left: 15px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.2;
}

.header-mobile-logo-row .col-9 {
    padding-right: 0;
}

.header-contacts-row {
    height: 50px;
    align-items: center;
}

.header1 {
    background-color: #F5F5F5;
}

.header2 {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1050px) {
    .header-contacts {
        gap: 20px;
    }
}

.header-contacts p,
.header-contacts a {
    color: var(--accentColorDark);
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-weight: bold;
}

@media (max-width: 1280px) {
    .header-contacts p,
    .header-contacts a {
        font-size: 17px;
    }
}

@media (max-width: 1100px) {
    .header-contacts p,
    .header-contacts a {
        font-size: 16px;
    }
}

@media (max-width: 450px) {
    .header-contacts p,
    .header-contacts a {
        font-size: 14px;
    }
}

.header-contacts a:hover {
    color: var(--accentColor);
}

.header-contacts p img,
.header-contacts a img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.header-social img {
    width: 40px;
    height: 40px;
}

.header-navigation {
    height: 80px;
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    align-items: center;
}

.header-icons {
    height: 100px;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-icons img {
    width: 28px;
    height: 28px;
}

.header-navigation a {
    color: #404040;
    font-size: 24px;
    text-decoration: none;
    font-family: 'RobotoCondensedBold', sans-serif;
}

.header-navigation a:hover {
    color: var(--accentColorDark);
}

.main-content {
    padding-bottom: 100px;
}

.main-content-sticky {
    padding-top: 175px;
}

.main-content-back {
    background: url("../images/back/blueprint-back2.png") no-repeat;
    background-size: auto;
}

.hero.container {
    max-width: 100%;
    height: 800px;
    background: url("../images/back/back10.jpg") no-repeat center;
    background-size: cover;
}

.hero.container section {
    height: 100%;
}

.hero.container section .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-frame {
    background-color: #ffffffe0;
    padding: 40px;
}

@media (max-width: 450px) {
    .hero-frame {
        padding: 10px;
    }
}

.hero-frame h5,
.hero-frame p {
    color: #202020;
    font-weight: 600;
    /*max-width: 600px;*/
}

.hero-frame h1 {
    font-weight: bold;
    color: var(--accentColorDark);
    margin-bottom: 20px;
    font-family: "Horta", sans-serif;
    font-size: 60px;
    line-height: 1.0;
}

@media (max-width: 991px) {
    .hero-frame h1 {
        font-size: 45px;
    }
}

@media (max-width: 450px) {
    .hero-frame h1 {
        font-size: 40px;
    }
}

.hero-frame h1 b {
    color: var(--accentColor);
}

.hero-frame h5 {
    font-weight: 100;
    font-family: Roboto, sans-serif;
    margin-bottom: 10px;
    font-size: 20px;
}

@media (max-width: 450px) {
    .hero-frame h5 {
        font-size: 16px;
    }
}

.hero-frame ul {
    padding-left: 1rem;
    margin-bottom: 20px;
}

.hero-frame ul li {
    font-size: 18px;
    list-style: square;
    margin-bottom: 5px;
}

@media (max-width: 450px) {
    .hero-frame ul li {
        font-size: 15px;
    }
}

.button-accent,
.button-light {
    padding: 15px 36px;
    text-decoration: none;
    font-size: 18px;
    /*font-weight: 600;*/
}

@media (max-width: 450px) {
    .button-accent,
    .button-light {
        padding: 10px 20px;
        font-size: 16px;
    }
}

.button-accent {
    border: 0;
    background-color: var(--accentColor);
    color: #ffffff;
    border-bottom: 2px solid #005F94;
}

.button-accent:hover {
    background-color: var(--accentColorDark);
    color: #ffffff;
}

.button-light {
    border: 1px solid #c0c0c0;
    background-color: transparent;
    color: var(--accentColorDark);
}

.button-light:hover {
    background-color: #fff;
}

.button-accent-dark {
    border: 0;
    background-color: var(--accentColorDark);
    padding: 15px 36px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.button-accent-dark:hover {
    background-color: var(--accentColorDarker);
    color: #ffffff;
}

.header-button {
    padding: 10px 20px;
    display: flex;
    height: 50px;
    align-items: center;
    font-size: 16px;
    border-radius: 0;
}

.header-transparent {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9
}

.hero-button:hover {
    background-color: #ABCCEC;
    color: black;
}

.container {
    max-width: 1280px;
}

.section {
    margin-top: 50px;
}

.section-portfolio {
    margin-top: 80px;
}

.bag-photo {
    display: flex;
    align-items: flex-end;
    height: 800px;

    transform-origin: center;
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);

    grid-area: overlap;
    align-self: center;
    justify-self: center;
}

.bag-photo:hover {
    transform: scale(1.06);
}

.section .big-image {
    height: 900px;
}

.bag-name-white,
.bag-name {
    font-size: 46px;
    font-family: "Miriam Libre", sans-serif;
    margin-bottom: 30px;
    margin-left: 30px;
    text-decoration: none;
    z-index: 50;

    grid-area: overlap;
    align-self: flex-end;
    justify-self: flex-start;
}

.bag-name,
.bag-name:hover {
    color: black;
}

.bag-name-white,
.bag-name-white:hover {
    color: white;
}

.bag-photo-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "overlap";

    overflow: hidden;
    /*noinspection CssInvalidPropertyValue*/
    overflow-wrap: anywhere;
}

.sticky-header {
    transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    /*noinspection CssUnknownProperty*/
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out
}

.sticky-header.sticky-show {
    animation-name: a !important
}

.sticky-header.sticky {
    box-shadow: 0 8px 8px -6px rgba(0, 0, 0, .06);
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0 !important;
    width: 100%;
    z-index: 59;
    /*animation-name: b;*/
    /*animation-duration: .5s;*/
    /*animation-fill-mode: both;*/
    transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    /*noinspection CssUnknownProperty*/
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out
}

.advantages {
    padding: 0 15px;
}

.advantages .inner {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    border-radius: 4px;
}

.advantages .inner2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 770px) {
    .advantages .inner2 {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 770px) {
    .advantages .inner {
        padding: 10px 10px;
        flex-direction: row;
    }
}

.advantages .icon-wrapper {
    width: 120px;
    height: 120px;
    min-width: 120px;
    margin-bottom: 15px;
    background-color: var(--accentColor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
}

.advantages img {
    width: 70px;
    height: 70px;
}

@media (max-width: 770px) {
    .advantages .icon-wrapper {
        width: 70px;
        min-width: 70px;
        height: 70px;
        margin-bottom: 0;
        margin-right: 15px;
    }
}

@media (max-width: 770px) {
    .advantages img {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        margin-right: 0;
    }
}

.section-advantages {
    background-color: #f5f5f5;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 0;
}

.section-advantages .inner h4 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
    color: var(--accentColorDark);
}

@media (max-width: 450px) {
    .section-advantages .inner h4 {
        margin-bottom: 5px;
    }
}

.section-advantages .inner p {
    color: #666666;
    margin-bottom: 0;
}

.section-advantages .advantages {
    margin-top: 20px;
}

.section h2.title {
    font-size: 40px;
    color: var(--accentColorDark);
    font-weight: bold;
}

@media (max-width: 450px) {
    .section h2.title {
        font-size: 30px;
    }
}

.section h2.title strong {
    color: var(--accentColor);
    font-size: 42px;
}

@media (max-width: 450px) {
    .section h2.title strong {
        font-size: 34px;
    }
}

.section .section-title {
    padding-bottom: 20px;
}

.section-services .section-title {
    padding-bottom: 0;
}

.section-services .section-title h4 {
    color: #666666;
    font-size: 20px;
}

.section-title h5 {
    color: #606060;
}

@media (max-width: 557px) {
    .section-contacts .section-title h5 {
        color: #606060;
        font-size: 16px;
    }
}

.section-services img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media (max-width: 450px) {
    .section-services img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
}

.section-services h4 {
    margin-top: 15px;
    font-size: 22px;
    padding-right: 10px;
}

.section-services p {
    font-size: 24px;
    color: var(--accentColorDark);
    padding-right: 10px;
}

.section-services .service-single {
    margin-top: 30px;
}

.service-single a {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "overlap";
    background-color: #000;
    border-radius: 5px;
}

.service-single a img {
    display: flex;
    align-items: flex-end;
    grid-area: overlap;
    /*align-self: center;*/
    /*justify-self: center;*/
    opacity: 0.7;
}

.service-single a h4 {
    margin-bottom: 0;
    margin-left: 0;
    padding: 10px 5px 10px 25px;
    background-color: #000000a0;
    width: 100%;
    color: white;
    text-decoration: none;
    z-index: 51;
    grid-area: overlap;
    align-self: flex-end;
    justify-self: flex-start;
    font-family: 'RobotoCondensedBold', sans-serif;
    text-transform: uppercase;
}

.foreground-black {
    margin: 0 0 0 0;
    background-color: #00000060;
    width: 100%;
    height: 100%;
    z-index: 50;
    grid-area: overlap;
    align-self: flex-end;
    justify-self: flex-start;
}

.service-photo {
    overflow: hidden;
    /*noinspection CssInvalidPropertyValue*/
    overflow-wrap: anywhere;
}

.service-photo img {
    display: flex;
    align-items: flex-end;

    transform-origin: center;
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);

    grid-area: overlap;
    align-self: center;
    justify-self: center;
}

.service-photo img:hover {
    transform: scale(1.06);
}

.section-portfolio img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.section-mini-samples img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.section-portfolio .portfolio-row {
    padding: 0 15px;
}

.section-portfolio .col-lg-3 {
    padding: 3px 3px;
}

.section-mini-samples .col-lg-2 {
    padding: 3px 3px;
}

.footer-area {
    background-color: #f5f5f5;
    /*margin-top: 100px;*/
}

.footer-area h4 {
    font-family: Roboto, sans-serif;
    color: #184863;
    font-weight: bold;
}

.horizontal {
    display: flex;
    align-items: center;
}

.footer-area ul li .horizontal {
    display: flex;
    align-items: center;
}

.footer-area ul li .horizontal img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.footer-area ul {
    padding-left: 0;
}

.footer-area li {
    list-style: none;
}

.footer-area li {
    padding-bottom: 10px;
}

.contacts-list p,
.contacts-list a,
.footer-area li p,
.footer-area li a {
    color: #202020;
    text-decoration: none;
}

.contacts-list a:hover,
.footer-area li a:hover {
    color: var(--accentColorDark);
}

.footer-area li p img,
.contacts-list p img,
.contacts-list a img,
.footer-area li a img {
    height: 28px;
    width: 28px;
    margin-right: 6px;
}

.contacts-list p img,
.contacts-list a img {
    height: 32px;
    width: 32px;
    margin-right: 10px;
}

.contacts-list .horizontal a img {
    height: 48px;
    width: 48px;
    margin-right: 20px
}

@media (max-width: 557px) {
    .contacts-list p img,
    .contacts-list a img {
        height: 24px;
        width: 24px;
        margin-right: 10px;
    }
}

.footer-area .footer-main .footer1 .col-12 {
    padding-top: 30px;
}

.footer-area .logo {
    margin-bottom: 20px;
}

.footer-menu {
    font-size: 20px;
}

.footer-buttons-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 450px) {
    .footer-buttons-block {
        gap: 20px;
        border-top: 0;
        padding-top: 0;
        padding-bottom: 30px;
    }
}

.example-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "overlap";
    overflow: hidden;
    /*noinspection CssInvalidPropertyValue*/
    overflow-wrap: anywhere;
    height: 200px;
}

.example-container .service-photo {
    display: flex;
    align-items: flex-end;
    transform-origin: center;
    grid-area: overlap;
    align-self: center;
    justify-self: center;
    width: 100%;
    height: 100%;
}

.example-container img {
    display: flex;
    align-items: flex-end;
    /*height: 100%;*/
    object-fit: cover;
    transform-origin: center;
    grid-area: overlap;
    align-self: center;
    justify-self: center;

    /*noinspection CssOverwrittenProperties*/
    transform-origin: center;
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);
}

.example-container img:hover {
    transform: scale(1.06);
}

.example-before-caption {
    margin-top: 15px;
    text-decoration: none;
    z-index: 9;
    line-height: 1.2;
    grid-area: overlap;
    align-self: flex-start;
    justify-self: flex-end;
    background-color: #fff;
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 0 20px;
    font-size: 18px;
    font-weight: bold;
    color: #808080;
}

.example-after-caption {
    margin-top: 15px;
    text-decoration: none;
    z-index: 9;
    line-height: 1.2;
    grid-area: overlap;
    align-self: flex-start;
    justify-self: flex-start;
    background-color: #fff;
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 20px 20px 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--accentColorDark);
}

.input-field {
    padding: 16px 32px;
    background-color: white;
    border-radius: 2px;
    border: 1px solid var(--borderLightColor);
    max-width: 300px;
}

.request-call-form {
    text-align: center;
    text-align: -webkit-center;
}

.request-call-form input,
.request-call-form button {
    width: 240px;
}

.modal-body {
    padding: 1.5rem;
}

/* Photo Modal styles*/
#photoModal {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

/*#photoModal:hover {opacity: 0.7;}*/

.modal-photo {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 60; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.modal-photo-content {
    margin: auto;
    display: block;
    width: 80%;
    /* max-width: 700px; */
    object-fit: contain;
    height: 90%;
}

.clickable-img {
    cursor: pointer;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-photo-content {
        width: 100%;
    }
}

.prices-table tr,
.prices-table td {
    border: 1px solid #CDD8E0;
}

.prices-table td {
    padding: 10px 20px;
}

@media (max-width: 450px) {
    .prices-table td {
        padding: 10px 10px;
    }
}

.prices-table tr td:nth-child(2) {
    background-color: #f6f8fA;
}

.prices-table tr td:nth-child(3) {
    background-color: #EAF3F9;
    font-weight: bold;
    color: var(--accentColorDarker);
}

.table-header {
    font-weight: bold;
}

.table-header td {
    padding-top: 40px;
}

tr.table-header,
.table-header td {
    border: 0;
    background-color: transparent !important;
}

.contacts-list {
    display: flex;
    flex-direction: column;
}

.contacts-list p,
.contacts-list a {
    font-size: 20px;
    margin-bottom: 15px;
}

@media (max-width: 557px) {
    .contacts-list p,
    .contacts-list a {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

.section-contacts .section-title {
    margin-bottom: 20px;
}

.request-call-contacts-form {
    text-align: left;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    padding: 40px;
    border: 1px solid #e0e0e0;
    width: fit-content;
    box-shadow: 0 10px 10px -6px rgba(0, 0, 0, .06);
}

.request-call-contacts-form input {
    margin-top: 20px;
}

.request-call-contacts-form button {
    display: block;
    margin-top: 20px;
    min-width: 200px;
}

.request-call-contacts-form h5 {
    line-height: 1.3;
    width: fit-content;
}

@media (max-width: 557px) {
    .request-call-contacts-form h5 {
        font-size: 15px;
    }
}

.section-contacts .request-call-form {
    text-align: start;
}

.stages-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accentColor);
    border-radius: 30px;
}

@media (max-width: 575px) {
    .stages-circle {
        margin-right: 20px;
    }
}

@media (max-width: 575px) {
    .section-single-service .stages-circle {
        margin-right: 0;
    }
}

.stages-circle img {
    width: 32px;
    height: 32px;
}

.section-stages .stages-item {
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-top: 20px;
}

@media (max-width: 575px) {
    .section-stages .stages-item {
        display: flex;
        flex-direction: row;
        justify-items: start;
        justify-content: start;
        text-align: left;
        align-items: flex-start;
        padding-top: 20px;
    }
}

.section-stages .stages-item h4 {
    margin-top: 10px;
    font-size: 18px;
    font-family: RobotoCondensedBold, sans-serif;
    font-weight: bold;
    color: var(--accentColorDark);
}

.section-stages .stages-item h5 {
    margin-top: 20px;
    font-size: 19px;
    font-family: RobotoCondensedBold, sans-serif;
    color: var(--accentColorDark);
}

@media (max-width: 575px) {
    .section-stages .stages-item h5 {
        margin-top: 0;
    }
}

.section-stages .stages-item p {
    font-size: 15px;
    color: #606060;
}

@media (max-width: 575px) {
    .section-stages .stages-item p {
        margin-bottom: 0;
    }
}

.section-stages .col-lg-2 {
    padding-left: 10px;
    padding-right: 10px;
}

.section-stages {
    margin-top: 80px;
}

.header-menu-btn {
    background-color: transparent;
    border: none;
    margin: 0 20px 0 20px;
    padding: 0;
    display: none
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .header-menu-btn {
        display: inline-block
    }
}

.header-menu-btn span {
    background-color: #000;
    width: 20px;
    height: 2px;
    display: block;
    margin-bottom: 4px;
    border-radius: 50px
}

.header-menu-btn span:last-child {
    margin-bottom: 0
}

@media (max-width: 450px) {
    .hide-on-mobile {
        display: none !important;
    }
}

.show-on-mobile {
    display: none;
}

@media (max-width: 450px) {
    .show-on-mobile {
        display: block !important;
    }
}

.offcanvas {
    z-index: 110;
}

.btn-menu-close {
    background-color: white;
    padding: 10px 20px;
    border: 0;
    font-size: 18px;
}

.btn-menu-close i {
    margin-left: 10px;
}

.offcanvas-body ul li {
    list-style: none;
}

.offcanvas-nav-parent,
.offcanvas-nav-parent a {
    text-decoration: none;
    color: #404040;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-mobile {
    background-color: white;
    text-align: left;
}

.header-mobile .logo {
    width: 100px !important;
    margin: 0 0 0 20px;
}

.header-mobile .justify-content-end {
    display: flex;
    justify-content: flex-end;
}

.header-mobile .header-button {
    padding: 8px 16px;
    font-size: 15px;
    height: auto;
    margin-right: 0;
}

.header-mobile .header-contacts {
    padding-left: 20px;
    gap: 15px;
    justify-content: flex-end;
}

.header-mobile .header-contacts a img {
    width: 20px;
    height: 20px;
}

.d-sm-none {
    display: inherit !important;
}

@media (max-width: 991px) {
    .d-sm-none {
        display: none !important;
    }
}

.section-single-service img.service-photo {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.section-single-service img.service-photo2 {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

@media (max-width: 995px) {
    .section-single-service img.service-photo {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }
}

.section-single-service h5 {
    color: #404040;
    line-height: 1.3;
}

.section-single-service h4 {
    margin-top: 30px;
    color: #000000;
}

.section-stages ul,
.section-single-service ul {
    list-style-image: url("../images/icons/icon-arrow-right.svg");
}

.section-stages li,
.section-single-service li {
    font-size: 18px;
    color: #404040;
    margin: 10px 0;
    padding-left: 10px;
}

@media (max-width: 450px) {
    .section-stages li,
    .section-single-service li {
        font-size: 15px;
        color: #404040;
        margin: 10px 0;
        padding-left: 10px;
    }
}

.bottom-line {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.section-single-service .floating {
    position: absolute;
    right: 0;
}

@media (max-width: 995px) {
    .section-single-service .floating {
        position: inherit;
        right: auto;
    }
}

.section-stages p,
.section-single-service p {
    margin-top: 30px;
    font-size: 18px;
}

@media (max-width: 450px) {
    .section-stages p,
    .section-single-service p {
        margin-top: 30px;
        font-size: 15px;
    }
}

.section-stages p strong,
.section-single-service p strong {
    font-weight: bold;
    color: var(--accentColor);
}

.section-single-service .line p {
    margin: 0 0 0 20px;
}

.section-single-service li p {
    margin: 0 0 0 0;
}

.section-single-service .line {
    display: flex;
    margin-top: 20px;
    align-items: center;
}

@media (max-width: 450px) {
    .section-single-service .line {
        align-items: flex-start;
    }
}

.section-single-service .line .icon-wrapper {
    background-color: var(--accentColor);
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 450px) {
    .section-single-service .line .icon-wrapper {
        width: 48px;
        min-width: 48px;
        height: 48px;
        border-radius: 24px;
    }
}

.section-single-service .line .icon-wrapper img {
    width: 40px;
    min-width: 40px;
    height: 40px;
}

@media (max-width: 450px) {
    .section-single-service .line .icon-wrapper img {
        width: 24px;
        min-width: 24px;
        height: 24px;
    }
}

.section-single-service .line h5 {
    margin-left: 20px;
}

.srv-buttons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

@media (max-width: 450px) {
    .srv-buttons-row {
        gap: 20px;
    }
}

.finishing-out-samples h4,
.krovlya-samples h4 {
    padding-bottom: 10px;
}

.finishing-out-samples h5,
.krovlya-samples h5 {
    padding-top: 10px;
    margin-bottom: 25px;
    color: var(--accentColorDark);
    font-weight: bold;
}

.finishing-out-samples img,
.krovlya-samples img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.finishing-out-samples img {
    height: 200px;
}

@media (max-width: 450px) {
    .finishing-out-samples .col-4,
    .krovlya-samples .col-4 {
        padding: 0 5px 0 5px;
    }
}

@media (max-width: 770px) {
    .finishing-out-samples img,
    .krovlya-samples img {
        height: 150px;
    }
}

@media (max-width: 450px) {
    .finishing-out-samples img,
    .krovlya-samples img {
        height: 150px;
    }
}

@media (max-width: 450px) {
    .finishing-out-samples h5,
    .krovlya-samples h5 {
        font-size: 14px;
    }
}

.footer-copyright {
    text-align: end;
    margin-top: 40px;
    color: #00000080;
    font-size: 14px;
}
.footer-copyright a {
    color: #00000080;
    text-decoration: underline;
}