@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Open Sans", sans-serif !important;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

p {
    margin-bottom: 0 !important;
}

header {
    width: 100%;
    position: relative;
}

header .container {
    position: relative;
}

header h1 {
    position: absolute;
    padding: 40px 30px;
    z-index: 99;
    transform: translateY(-100%);
    color: #FFF;
    font-weight: 700;
    background: #ef7c1b;
    font-size: 32px;
    text-wrap: normal;
    border-radius: 10px 10px 0 0;
}

@media screen and (max-width: 1200px) {
    header h1 {
        width: 80%;
        transform: translate(-50%, -50%);
        top: 300px;
        left: 50%;
        border-radius: 10px;
        background: rgba(239, 124, 27, 0.8);
    }
}

header .item {
    width: 100vw;
    height: 80vh;
}

header .item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

header .owl-dots {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF;
    border-radius: 4px;
    padding: 6px;
    display: flex;
    align-items: center;
}

header .owl-dots .owl-dot.active span {
    background: #EF7C1B !important;
}

header .owl-dots .owl-dot span {
    margin: 2px 4px !important;
    width: 10px !important;
    height: 10px !important;
}

nav {
    position: absolute !important;
    top: 40px;
    width: 100%;
    z-index: 9999;
    padding: 8px !important;
    background: rgba(255,255,255,0.9) !important;
    border-radius: 10px !important;
}

nav .navbar-brand {
    height: 48px;
}

nav .navbar-brand img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

nav .nav-item {
    margin: 0 5px;
}

nav .nav-item a {
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    color: #000 !important;
    padding: 6px 10px !important;
}

nav .nav-item:hover a {
    background: #EF7C1B !important;
    color: #FFF !important;
}

nav .contacts {
    padding: 0 40px;
}

nav .contacts a {
    text-decoration: none !important;
    margin-left: 8px;
}

nav .lang button {
    background: none !important;
    color: #000;
    border: none !important;
}

nav .lang .dropdown .dropdown-menu {
    background: #EF7C1B !important;
    border: none !important;
}

nav .lang .dropdown .dropdown-menu a {
    color: #FFF !important;
}

nav .lang .dropdown .dropdown-menu a:hover {
    background: #dc7219 !important;
}

nav .side {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media screen and (max-width: 970px) {
    nav .nav-item {
        margin: 0;
    }

    nav .contacts {
        padding: 0 10px;
    }
}

.main-section .card-dark {
    color: #FFF;
    padding: 40px 30px;
    background: #000;
    border-radius: 0 0 6px 6px;
    font-size: 20px;
    font-weight: 300;
}

.main-section .card-next-text {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 970px) {
    .main-section .card-next-text {
        height: initial !important;
    }

    .main-section .card-next-text p {
        padding: 24px 0 !important;
    }
}

.main-section .card-next-text p {
    margin: auto 0 !important;
    font-size: 20px;
    font-weight: 700;
}

.main-section .card-next-text a {
    width: fit-content;
    padding: 20px 30px;
}

.introduction {
    margin: 80px 0;
    background: #F1F1F1;
    border-radius: 10px;
}

.introduction .title {
    padding-left: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.introduction h4 {
    font-weight: 700;
    color: #000;
    font-size: 32px;
}

.introduction .text {
    justify-content: center;
    align-items: center;
    color: #000;
    padding: 40px 0;
}

.introduction .prop-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    gap: 1px;
}

@media screen and (max-width: 970px) {
    .introduction .prop-cards {
        border-radius: 0 0 10px 10px;
    }

    .introduction .text {
        padding: 40px 20px;
    }

    .introduction h4 {
        text-align: center;
    }

    .introduction a {
        width: 100%;
    }

    .introduction .title {
        padding: 20px 30px;
    }
}

.introduction .prop-cards .prop {
    width: calc(50% - 1px);
    background: #000;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    transition: .2s ease-in-out;
}

.introduction .prop-cards .prop:hover {
    cursor: pointer;
    background: #EF7C1B;
}

.introduction .prop-cards .prop .name {
    color: #FFF;
    margin-top: 16px;
}

.introduction .prop-cards .prop img {
    height: 60px;
}

.parameters {
    margin: 80px 0;
}

.parameters h4 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    padding-left: 60px;
}

.parameters p {
    font-size: 18px;
    font-weight: 300 !important;
    margin-bottom: 16px !important;
    color: #000 !important;
}

.parameters .list .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.parameters .list ul {
    padding-left: 1.5rem !important;
}

.parameters .list ul li {
    font-size: 16px !important;
    list-style-image: url("../../assets/img/dot.svg");
    color: #888;
    margin-bottom: 12px;
}

.parameters .list ul .pictures {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style-type: none !important;
    gap: 20px;
}

.parameters .list ul li::marker {
    font-size: 1.8em;
    line-height: 0.1;
}

.parameters .manual {
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

.parameters .manual img {
    height: 40px;
}

@media screen and (max-width: 970px) {
    .parameters h4 {
        padding: 20px;
    }

    .parameters h4, .parameters p {
        text-align: center;
    }
}

.decors {
    margin: 80px 0;
}

.decors h4 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.decors .decor-types {
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.decors .decor-types .type {
    width: 33%;
    padding: 10px;
}

.decors .decor-types .type .pic {
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.decors .decor-types .type .pic img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.decors .decor-types .type .name {
    font-size: 16px;
    margin-top: 16px;
}

@media screen and (max-width: 970px) {
    .decors h4 {
        text-align: center;
    }

    .decors .decor-types {
        padding: 12px 0;
    }
}

.photogallery {
    padding: 40px;
    background: #F1F1F1;
    border-radius: 10px;
    margin: 80px 0;
}

.photogallery h4 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.photogallery p {
    margin: auto 0;
}

.photogallery .photos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1px;
    border-radius: 10px;
    overflow: hidden;
}

.photogallery .photos .photo {
    width: calc(33.3% - 1px);
    height: 140px;
}

.photogallery .photos .photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 970px) {
    .photogallery p {
        margin-bottom: 24px !important;
    }

    .photogallery h4 {
        text-align: center;
    }
}

footer {
    padding: 60px 0 20px 0;
    color: #FFF;
    background: #000;
    font-weight: 300;
    font-size: 18px;
}

footer .flex-footer {
    display: flex;
    flex-direction: row;
}

footer .copy {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    margin-top: 60px;
    border-top: 2px solid #2a2a2a;
    padding-top: 24px;
    color: #7e7e7e;
}

footer .copy .rights {
    margin-right: auto;
}

footer .copy .creator img {
    height: 20px;
}

footer .content-right {
    width: 30%;
    text-align: right;
    display: flex;
    flex-direction: column;
}

footer .content-right a {
    width: fit-content;
    margin-left: auto;
}

footer .content .contacts {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

footer .content .contacts a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none !important;
    color: #ef7c1b !important;
    font-weight: 700 !important;
}

footer .content .contacts a img {
    margin-right: 10px;
}

footer .content .contacts a:hover {
    color: #D26B16 !important;
}

@media screen and (max-width: 970px) {
    footer .flex-footer {
        flex-direction: column;
    }

    footer .content-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        margin-top: 24px;
        text-align: left;
    }

    footer .content-right a {
        margin-left: 0;
    }

    footer .copy {
        flex-direction: column;
        justify-content: center;
    }

    footer .copy .rights {
        margin-right: 0;
    }
}
