@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,700;1,300;1,400;1,700&display=swap');
body {
    height: 100vh;
    font-family: 'Roboto', sans-serif;
}
:is(input, select, textarea, button):focus {
    outline: none !important;
    box-shadow: none !important;
}
a {
    text-decoration: none;
}
img:not([class]) {
    max-width: 100%;
    height: auto;
}
.nav-link:focus {
    outline: none;
}

.banner {
    min-height: 200px;
    padding: 40px 0;
    margin-bottom: -20px;
}
.banner h6 {
    font-family: 'Roboto Condensed', sans-serif;
}
.upf {
   text-transform: lowercase;
}
.upf::first-letter {
    text-transform: uppercase !important;
}

.no-text {
    color: transparent !important;
    user-select: none;
    display: none;
}
.has-empty:has(>*[style="display: none;"]) {
    display: none;
}
.only-back {
    display: none;
}

.use-template-bg-a {
    background: var(--header-bg, darkblue);
    color: white
}
:is(button, a).use-template-bg-a {
    opacity: .88;
}
:is(button, a).use-template-bg-a:hover {
    background: var(--header-bg, darkblue);
    opacity: 1;
    color: white;
}
.use-template-bg-b {
    background: var(--footer-bg, darkgrey);
    color: white
}
:is(button, a).use-template-bg-b {
    opacity: .88;
}
:is(button, a).use-template-bg-b:hover {
    background: var(--footer-bg, darkgrey);
    opacity: 1;
    color: white;
}
.use-template-bg-c {
    background: var(--yellow-gradient, yellow);
    color: white
}
:is(button, a).use-template-bg-c {
    opacity: .88;
}
:is(button, a).use-template-bg-c:hover {
    background: var(--yellow-gradient, yellow);
    opacity: 1;
    color: white;
}

figure.table table {
    padding: 2px;
    width: 100%;
}
figure.table table :is(th,td) {
    vertical-align: baseline;
    padding-inline: 8px;
}

.image_resized {
    max-width: 100%;
    height: auto;
}

.use-glow-effect {
    position: relative;
}
.use-glow-effect:focus {
    outline: none;
}
.use-glow-effect::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .4s ease-in-out;
    background-color: #3b637f;
    transform: scaleX(0);
    opacity: 0;
}
.use-glow-effect:hover::before {
    animation: glow .5s linear;

}
@keyframes glow {
    from {
        transform: scaleX(0);
        opacity: 1;
    }
    to {
        transform: scaleX(100%);
        opacity: 0;
    }
}

@media (min-width: 1110px) and (max-width: 1190px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1100px;
    }
}

/* Removing the padding from the bottom of the brand link. */
.brand-link {
    --min-w: 100px;
    --max-w: 210px;
    --w: 100%;
    padding-bottom: 0;
    width: clamp(var(--min-w), var(--w), var(--max-w));
    margin-right: clamp(0.3125rem, 1vw, 1rem);
}
.brand-link .brand-logo {
    width: 100%;
}
@media screen and (width <= 1024px) {
    .brand-link {
        --max-w: 152px;
    }
}
/* Styling the header. */
.header {
    padding: 0 !important;
    font-family: 'Roboto Condensed', sans-serif;
    border-bottom: 5px solid #1b3447;
    margin-bottom: 0 !important;
}

.header .navbar-nav {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 10px;
}
.header .menu .nav-item {
    position: relative;
    padding: 14px 0;
    color: white;
}
.header .menu .nav-item a {
    color: inherit;
}
.header .menu > .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 5px solid #1b3447;
    display: none;
}
.header .menu > .nav-item:hover:not(:last-child)::after {
    border-bottom: 5px solid yellow;
    display: block;
}
.header .menu .nav-item:first-child i {
    font-size: 1rem;
}
.header .menu >.nav-item:last-child .nav-link {
    background-color: yellow;
    color: #1b3447 !important;
    padding-left: 10px !important;
    margin-left: 10px;
}
.header .menu >.nav-item:last-child i {
    transform: rotate(-40grad);
    font-size: 1.2rem;
    margin-right: 5px;
}
.header .nav-link {
    padding-right: 5px !important;
    padding-left: 5px !important;
    text-transform: uppercase;
    font-size: 0.9375rem;
    font-weight: bold;
}
@media screen and (width <= 1280px ) {
    .header .nav-link {
        font-size: 0.875rem;
    }
}
@media screen and (width <= 1160px ) {
    .header .nav-link {
        font-size: 12px;
    }
    .brand-logo :is(img, svg) {
        width: 70%;
        height: 100%;
        object-fit: cover;
    }
    .brand-logo :is(img, svg):last-child {
        width: 30%;
    }
}
@media screen and (width <= 568px) {
    .header .nav-link {
        font-size: 0.9375rem;
    }
    .brand-logo :is(img, svg) {
        width: 100%;
        height: 100%;
    }
    .header .menu >.nav-item:last-child .nav-link {
        margin-left: 0;
        width: 50%;
    }
    .brand-logo :is(img, svg):last-child {
        width: auto;
        height: 100%;
    }
}
.header .submenu {
    border-top-width: 5px;
    border-style: solid;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    min-width: 208px;
}
.header .submenu .nav-item {
    position: relative;
    padding: 7px 0;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}
.header .submenu .submenu {
    position: absolute;
    top: -6px;
    bottom: auto;
    left: 100%;
}
@media screen and (min-width:1024px) {
    .header .submenu .nav-item .plus {
        display: block;
        font-weight: 500;
        color: transparent;
    }
    .header .submenu .nav-item .plus::after {
        position: absolute;
        font-family: "Font Awesome 6 Free";
        content:"\f0da";
        font-size: 20px;
        font-weight: 600;
        color: white;
        top: auto;
        right: 6px;
    }
}

/* It's styling the footer. */

.foot_simple {
    display: flex;
    flex-direction: column;
    background-color: var(--footer-bg);
    color: white;
    margin-top: 20px;
}
.foot_simple a {
    color: inherit !important;
}
.foot_simple .menu-boxes {
    --gap: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--gap);
    justify-content: space-between;
    padding-top: 30px;
}
.foot_simple .menu-boxes > div {
    --wd: 25%;
    flex: 1 1 auto;
    width: calc(var(--wd) - var(--gap));
    padding-inline: 12px;
}
.foot_simple .menu-boxes  > *:first-child {
    --wd: 50%;
    padding-inline: 0;
}
.foot_simple .menu-boxes .logo {
    margin-bottom: 20px;
}
.foot_simple .menu-boxes .about {
    color: lightgray;
    font-size: clamp(0.875rem, 1rem - 0.5vw, 1rem);
    text-align: justify;
}
.foot_simple .menu-boxes .about > div {
    margin-bottom: 8px;
}
.foot_simple .menu-boxes .about > div:first-child {
    margin-bottom: 16px;
}
.foot_simple .menu-boxes .title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: clamp(0.875rem, 1rem - 0.5vw, 1rem);
    margin-bottom: 16px;
}
.foot_simple .menu-boxes ul {
    padding-left: 0;
    list-style: none;
    font-size: clamp(0.875rem, 1rem - 0.5vw, 1rem);
}
.foot_simple .menu-boxes ul > li {
    margin-bottom: 10px;
}
.foot_simple .menu-boxes ul ul {
    padding-left: 0;
    font-size: clamp(0.75rem, 0.875rem - 0.5vw, 0.875rem);
    list-style: none;
    color: lightgray;
}

.foot_simple .info-boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}
.foot_simple .info-boxes > div {
    --wd: calc(100% / 2);
    flex: 1 1 auto;
    width: calc(var(--wd) - 20px);
    display: inline-flex;
    flex-direction: column;
}
.foot_simple .info-boxes h5 {
    width: 100%;
    font-size: clamp(0.875rem, 1rem - 0.5vw, 1rem);
    text-align: center;
}
.foot_simple .info-boxes .content {
    display: inline-flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}
.foot_simple .info-boxes .img-box {
    display: inline-flex;
    flex-direction: column;
}
.foot_simple .info-boxes .img-box span {
    font-size: clamp(0.625rem, 0.75rem - 0.5vw ,0.875rem);
    text-align: center;
}
.foot_simple .info-boxes .social-links a {
    display: inline-flex;
    flex-direction: column;
}
.foot_simple .info-boxes .social-links a > span:first-child {
    display: block;
    width: 32px;
    height: 32px;
    background-color: white;
    color: #162348;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px white inset;
}
.foot_simple .info-boxes .social-links a > span:last-child {
    font-size: clamp(0.625rem, 0.75rem - 0.5vw ,0.875rem);
    text-align: center;
}
.foot_simple .info-boxes .social-links a:hover > span:first-child {
    border: 2px yellow inset;
    box-shadow: 0px 0px 4px 2px rgb(255 255 255 / 18%);
    transform: scale(1.115);
}

.foot_simple .copyright {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    font-size: clamp(0.875rem, 1rem - 0.5vw, 1rem);
    align-items: baseline;
    color: lightgray;
    padding-top: 8px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(211, 211, 211, 0.4);
}
.foot_simple .copyright > *:is(div, ul) {
    flex: 1 0 auto;
}
.foot_simple .copyright > *:last-child {
    text-align: end;
}
.foot_simple .copyright ul {
    display: inline-flex;
    gap: 12px;
    list-style: none;
    padding-left: 2px;
    margin-bottom: 0;
    color: white;
}

@media screen and (width <= 768px ) {
    .foot_simple .logo {
        width: 40%;
    }
    .foot_simple .menu-boxes {
        --gap:10px;
    }
    .foot_simple .menu-boxes > div {
        --wd: 50%;
        padding-inline: 0;
    }
    .foot_simple .menu-boxes  > div:first-child {
        --wd: 100%;
    }
    .foot_simple .menu-boxes .about {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }
    .foot_simple .menu-boxes ul > li {
        margin-bottom: 5px;
    }
    .foot_simple .menu-boxes .title {
        margin-bottom: 10px;
    }
    .foot_simple .copyright > div {
        font-size: 0.75rem;
        width: 50%;
    }
    .foot_simple .copyright > ul {
        gap: 8px;
        padding-left: 0;
        margin-bottom: 0;
        justify-content: center;
        width: 100%;
    }
    .foot_simple .copyright div:first-child {
        order: 1;
        width: auto;
        margin-right: 0;
    }
    .foot_simple .copyright {
        gap: 4px;
    }
}
@media screen and (width <= 568px) {
    .foot_simple .info-boxes > div {
        width: 100%;
    }
    .foot_simple .copyright {
        gap: 4px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    .foot_simple .copyright div {
        font-size: 0.75rem;
        text-align: center !important;
    }
}


/* 🅸🆃❜🆂 🆂🆃🆈🅻🅸🅽🅶 🆃🅷🅴 🅳🅾🆄🅱🅻🅴 🆂🅴🅲🆃🅸🅾🅽 🅸🅽 🅷🅾🅼🅴🅿🅰🅶🅴. */
.double {
    overflow: hidden;
}

.double .block-bg-img {
    position: relative;
    width: 100%;
    height: calc(100vh - 137px);
}
.double .block-bg-img > img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.double .wide-block {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.double .l-side {
    border-right: 2px solid yellow;
}
.double .r-side {
    border-left: 2px solid yellow;
}
.double .l-side .wide-block {
    justify-content: end;
}
.double .l-side .link-block {
    flex-direction: row-reverse;
}
.double .link-block {
    display: inline-flex;
    background-color: white;
    border: 1px solid yellow;
    max-height: 102px;
    overflow: hidden;
    position: relative;
    width: min(600px, 100%);
    align-items: center;
    justify-content: space-between;
}
.double .l-side .link-block p:first-of-type {
    padding: 20px;
    border-left: 1px solid yellow;
}
.double .r-side .link-block p:first-of-type {
    padding: 20px;
    border-right: 1px solid yellow;
}
.double .link-block p {
    margin-bottom: 0;
}
.double .link-block span:nth-child(1) {
    padding: 25px 20px;
}
.double .link-block span:nth-child(2) {
    color: #3a1f48;
    font-size: 24px;
    text-decoration: none;
    padding: 0;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    width: auto;
    visibility: visible;
    opacity: 1;
    transition: width 1s ease-in, opacity 0.5s ease-in;
}
.double .link-block span:nth-child(3) {
    padding: 0;
}
.double .link-block span:nth-child(3) {
    width: auto;
    visibility: visible;
    opacity: 1;
    position: relative;
    transition: width 1s ease-in, opacity 0.5s ease-in;
}
.double .link-block:hover span:nth-child(1) {
    background-color: yellow;
}

/* 🅸🆃❜🆂 🆂🅴🆃🆃🅸🅽🅶🆂 🅵🅾🆁 🅿🅰🅶🅴🆂 */
.page {
    font-family: 'Roboto', sans-serif;
    min-height: 76vh;
}
.page :is(h3.section-title, h1.title:first-of-type) {
    color: #3a1f48;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    border-left: 12px solid yellow !important;
    padding: 1.25rem 0.9375rem;
    margin-bottom: 0.9375rem;
}
.page .content {
    margin-bottom: 20px;
    overflow-x: hidden;
}
.page .head {
    position: relative;
    padding-top: 0.9375rem;
}
.page .presentation {
    position: relative;
    padding: 50px 30vh;
}
:is(.post, .page) .image-align-left {
    float: left;
    margin-right: 1.25rem;
    width: auto;
}
:is(.post, .page) .image-align-right {
    float: right;
    margin-left: 1.25rem;
    width: auto;
}
:is(.post, .page) .image-align-center {
    float: none;
    text-align: center;
    margin: .5rem 0;
}
/* 🅸🆃❜🆂 🆂🅴🆃🆃🅸🅽🅶🆂 🅵🅾🆁 🅿🅾🆂🆃🆂 */
.post {
    font-family: 'Roboto', sans-serif;
}
.post :is(h3.section-title, h1.title:first-of-type) {
    color: #3a1f48;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    border-left: 12px solid yellow;
    padding: 1.25rem 0.9375rem;
    margin-bottom: 0.9375rem;
}
.post .content {
    margin-bottom: 20px;
}
.post .content img {
    max-width: 100%;
}
.post .head {
    position: relative;
    padding-top: 0.9375rem;
}
.post .image-align-left {
    float: left;
    margin-right: 1.25rem;
    max-height: 20rem;
    width: auto;
}
.post .image-align-right {
    float: right;
    margin-left: 1.25rem;
    max-height: 20rem;
    width: auto;
}
.post .image-align-center {
    float: none;
    text-align: center;
    margin: .5rem 0;
    width: auto;
    width: 100%;
    height: 100%;
}
.post .image-align-center img:not([width]):not([height]) {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.post .feat-img {
    position: relative;
    height: 22.5rem;
    margin-bottom: 1.875rem;
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.post .feat-img img:not(:first-of-type) {
    margin-left: 10px;
}
.post .feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.post .feat-img img.img-thumbnail {
    width: max(20%, 275px);
    height: 275px;
}
.post .clear-fix {
    padding: 40px;
}
.post .presentation {
    position: relative;
}
.post .meta-date {
    position: absolute;
    top: 0;
    left: 0;
    width: max(12%, 170px);
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    background-color: #4e82ac;
    padding: 8px 12px;
    color: white;
    font-weight: bold;
}
.post .share {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 20px;
    padding: 14px 0;
    font-size: 1.125rem;
    color: #4d4d4d;
    font-weight: bold;
}
.post .share .l-side {
    text-align: start;
    display: inline-flex;
    justify-content: start;
    align-items: center;
}
.post .share .r-side {
    text-align: end;
    display: inline-flex;
    justify-content: end;
    align-items: center;
}
.post .share i {
    font-size: 2.25rem;
}
.post .share a {
    margin-left: 12px;
    text-decoration: none;
}
.post .share span {
    display: none;
}
.fa-square-twitter {color: #50abf1;}
.fa-square-facebook {color: #3a559f;}

/* 🅸🆃❜🆂 🆂🅴🆃🆃🅸🅽🅶🆂 🅵🅾🆁 🅰🆁🅲🅷🆅🅴🆂 */
.archive {
    font-family: 'Roboto', sans-serif;
    padding-top: 0.9375rem;
}
.archive .content {
    margin-bottom: 20px;
}
.post-group .card {
    border: none;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.post-group .card-img-top {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.post-group .card-body {
    height: auto;
    overflow: hidden;
}
.post-group .card-title {
    color: #3a1f48;
    font-size: 1.375rem;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
}
.post-group .card-meta {
    position: absolute;
    top: 0;
    left: 0;
    width: max(12%, 170px);
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    background-color: #4e82ac;
    padding: 8px 12px;
    color: white;
    font-weight: bold;
}
.post-group a:hover .card-title {
    color: #6b0077;
}

/* 🅸🆃❜🆂 🆂🅴🆃🆃🅸🅽🅶🆂 🅵🅾🆁 🆃🅷🅴 🅱🆁🅴🅰🅳🅲🆁🆄🅼🅱 */
.breadcrumb {
    color: #778297;
    font-weight: bold;
    height: auto;
    background: var(--footer-bg, #11273c);
    padding-top: 4px;
    padding-bottom: 2px;
    margin-bottom: 0;
    font-family: 'Roboto Condensed', sans-serif;
}
.breadcrumb ul {
    display: inline-flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    list-style: none;
    font-style: normal;
    align-items: baseline;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}
.breadcrumb li {
    line-height: inherit;
    display: inline;
    color: #778297;
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: bold;
    padding-right: 8px;
}
.breadcrumb li:not(:first-child) {
    padding-left: 8px;
}
.breadcrumb a {
    text-decoration: none;
    color: currentColor;
    font-weight: 600;
    font-size: 0.875rem;
}
.breadcrumb a:hover {
    color: yellow;
}
.breadcrumb .current {
    color: yellow;
}
.breadcrumb li+li:before {
    margin: 0px 6px 0px -6px;
    color: #778297;
    font-weight: normal;
    content: "|";
}

@media screen and (width <= 768px) {
    /* Make the breadcrumbs stack on mobile */
    .breadcrumb ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }
    .breadcrumb li {
        padding-right: 2px;
    }
    .breadcrumb li+li:before {
        margin: 0px 2px 0px -6px;
    }
    .breadcrumb a {
        font-size: 10px;
    }
}

/* 🅸🆃❜🆂 🆂🅴🆃🆃🅸🅽🅶🆂 🅵🅾🆁 🅿🅰🅶🅸🅽🅰🆃🅸🅾🅽 */
.pagination > div {
    width: 100%;
}
.pagination ul {
    background: transparent;
}
.pagination .page-item .page-link {
    color: #4d4d4d;
    font-size: 1.25rem;
}
.pagination .page-item.active .page-link {
    color: white;
    background-color: #601673;
    border-color: #601673;
}
.pagination .page-link {
    font-size: 1.25rem;
}
.pagination .page-link:focus {
    box-shadow: none;
}

/* ｓｅｔｔｉｎｇｓ ｃｕｓｔｏｍ ｐａｇｅ ：
ｒｏｚｕｍｎｉｉ－ｄｉｍ*/

/* It's styling the `.onetouch` class. */
.onetouch {
    position: relative;
}
.onetouch .container {
    position: relative;
}
.onetouch .l-side {
    padding-right: 110px;
    padding-top: 40px;
    padding-left: 25px;
}
.onetouch .r-side {
    padding-left: 0px;
}
.onetouch :is(.ud-title, .tab-pane.active>h5) {
    color: yellow;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6875rem;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0;
}
.onetouch :is(.ud-content, .tab-pane.active>p) {
    color: white;
    font-size: 1rem;
    text-align: center;
}
.onetouch .smphone {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    overflow: hidden;
}
.onetouch .smphone img {
    width: 100%;
    height: 100%;
}
.onetouch .nav-pills {
    align-items: center;
    justify-content: space-around;
}
.onetouch :is(.nav-pills,.nav-pills .show > ) .nav-link {
    color: currentColor;
    background: transparent;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    padding: 0;
    margin-right: 5px;
}
.onetouch :is(.nav-pills,.nav-pills .show > ) .nav-link img {
    width: 100%;
    height: 100%;
}
.onetouch :is(.nav-pills,.nav-pills .show > ) .nav-link.active {
    color: white;
    background: #662e71;
}

/* It's styling the house  layouts with animations. */
.housemain {
    margin: 15px 120px;
    position: relative;
}
.animate-house {
    position: absolute;
    top: 0;
    left: 0;
}
.animate-house img {
    position: absolute;
}
.animate-house img:is(.day, .party, .night, .lightinside) {
    z-index: 10;
    top: 0;
    left: 0;
}
/* It's styling the house parts with animations. */
.house-parts {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.house-parts img {
    position: absolute;
}
.house-parts img.slide-curtain2 {
    top: 185px;
    right: 508px;
}
.house-parts .party.active {
    bottom: 149px;
    right: 206px;
    height: 158px;
    width: 175px;
}
.house-parts img.slide-garage {
    top: 364px;
    left: 230px;
}
.house-parts img.slide-roll-door {
    top: 351px;
    right: 396px;
    width: 54px;
    height: 127px;
}
.house-parts img.slide-roll-window2 {
    top: 324px;
    right: 204px;
    z-index: 2;
}
.house-parts img.slide-roll-window1 {
    top: 320px;
    right: 314px;
    z-index: 2;
}
.house-parts img.slide-curtain1-1 {
    bottom: 158px;
    left: 475px;
    z-index: 1;
    height: 138px;
    width: 60px;
}
.house-parts img.slide-curtain1-2 {
    bottom: 153px;
    left: 538px;
    z-index: 1;
    width: 55px;
    height: 137px;
}
.house-parts img.slide-curtain1-3 {
    bottom: 166px;
    left: 595px;
    z-index: 1;
    width: 55px;
    height: 127px;
}

/* It's styling the buttons for animations. */
.animate-house-btns {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
}
.animate-house-btns .btn {
    position: relative;
    background-color: transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 0px;
    margin-inline: 28px;
    animation: border-pulsate 2s infinite;
}
@keyframes border-pulsate {
    0%{box-shadow:0 0 0 0 yellow;}
    70%{box-shadow:0 0 0 10px rgba(255, 252, 0, 0);}
    100%{box-shadow:0 0 0 0 rgba(255, 252, 0, 0);}
}
.animate-house-btns .btn img {
    width: 100%;
    height: 100%;
    user-select: none;
    -webkit-user-modify: read-only;
    pointer-events: none;
}
.animate-house-btns .btn .action {
    display: none;
}
.animate-house-btns .btn .action.show {
    display: block;
}
.animate-house-btns span:first-of-type {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #1b3447;
    color: #ffffff;
    font-size: 0.875rem;
    text-align: center;
    border: 1px solid #1b3447;
    border-radius: 3px;
    display: none;
    width: max-content;
    padding: 10px 8px;
}
.animate-house-btns span:first-of-type::after {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #1B3447 transparent transparent transparent;
    position: absolute;
    bottom: -15px;
    left: 50%;
    content: ' ';
    transform: translateX(-50%) rotate(0deg);
}
.animate-house-btns .btn:hover span:first-of-type{
    display: block;
}

/* The above code is creating a card with a background image and a text overlay. */
.needed-smart {
    padding: 55px 0;
}
.needed-smart .card {
    border-radius: 1px;
    position: relative;
    background: transparent;
}
.needed-smart .card img:not(.card-img-top) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    opacity: 0;
}
.needed-smart .card img {
    object-fit: cover;
    object-position: left center;
    opacity: 1;
}
.needed-smart .card-body {
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    text-align: center;
    margin: auto 0;
    padding: 6px;
    height: 56px;
    vertical-align: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid;
    border-color: inherit;
}
.needed-smart .card-body p {
    margin-bottom: 0;
}
.needed-smart [class*="col-"]:nth-child(-1n+4) .card {
    border: 1px solid;
    border-color: yellow;
}
.needed-smart [class*="col-"]:nth-child(1n+4) .card {
    border: 1px solid;
    border-color: white;
}
.needed-smart .card:hover img:is(.card-img-top) {
    opacity: 0;
    transition: opacity .15s ease-in-out linear;
}
.needed-smart .card:hover img:not(.card-img-top) {
    opacity: 1;
    transition: opacity .15s ease-in-out linear;
}
.needed-smart [class*="col-"]:nth-child(-1n+4) .card:hover {
    border-color: white;
}
.needed-smart [class*="col-"]:nth-child(1n+4) .card:hover {
    border-color: yellow;
}

/* The above code is creating a navigation bar with icons. */
.interface {
    margin-top: -20px;
    padding-top: 20px;
    padding-bottom: 40px;
}
.interface .nav-pills {
    justify-content: center;
}
.interface .nav-link {
    width: 93px;
    height: 93px;
    opacity: .5;
    background: #662e71;
    border-radius: 50%;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px;
}
.interface .nav-link.active {
    opacity: 1;
    background: #662e71;
}
.interface .nav-link:hover {
    opacity: 1;
    background: #662e71;
}
.interface .nav-link img {
    width: 100%;
    height: 100%;
    filter: invert(1);
}
.interface .tab-pane {
    width: 52%;
    margin: auto;
    text-align: center;
    height: 165px;
    padding-top: 30px;
}
.interface .tab-pane span:first-of-type {
    color: #2c2b2b;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}
.interface .tab-pane p {
    color: #2c2b2b;
    font-size: 1rem;
    line-height: 1.25rem;
    padding-top: 25px;
}

/* The above code is creating a carousel with a tabbed interface. */
.scenarios .nav-pills {
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid;
    padding-bottom: 20px;
}
.scenarios :is(.nav-pills,.nav-pills .show > ) .nav-link {
    color: currentColor;
    background: transparent;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    padding: 0;
    margin-right: 5px;
}
.scenarios :is(.nav-pills,.nav-pills .show > ) .nav-link img {
    width: 100%;
    height: 100%;
}
.scenarios :is(.nav-pills,.nav-pills .show > ) .nav-link.active {
    color: white;
    background: #662e71;
}
.scenarios .l-side img {
    width: 100%;
    height: 100%;
}
.scenarios .r-side {
    background-color: #7f5992;
    color: white;
    padding: 20px 20px;
}
.scenarios :is(.carousel-control-next, .carousel-control-prev, ) {
    top: -5px;
    bottom: auto;
    left: auto;
    background-color: #b39bbd;
    width: auto;
}
.scenarios .carousel-control-prev {
    right: 35px;
}
.scenarios .carousel-control-next {
    right: 0;
}
.scenarios .carousel-item {
    height: 100%;
    max-height: 280px;
}
.scenarios .carousel-item h5 {
    max-width: 85%;
}
.scenarios .carousel-item p {
    font-size: 0.875rem;
}
.scenarios .tab-pane.active {
    display: block;
}

/* The above code is creating a section for partners. */
.partners {
    min-height: 174px;
    padding-top: 35px;
    margin-bottom: -24px;
}
.partners h5 {
    font-size: 1.125rem;
    font-weight: bold;
    padding-bottom: 30px;
}
.partners ul {
    list-style: none;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.partners ul li {
    border-right: 1px solid #c0c0c0;
    display: inline-block;
    height: 55px;
    line-height: 3.4375rem;
    padding-right: 12px;
    padding-left: 12px;
    text-align: center;
}

/* Styling the div with the class of consult. */
.consult {
    padding: 40px 0;
    margin-bottom: -50px;
    color: white;
}
.consult h6 {
    margin-top: 30px;
    color: yellow;
    font-weight: bold;
    font-size: 1.25rem;
}
.consult .link-block {
    background: yellow;
    margin-top: 20px;
    padding: 10px 20px;
    color: black;
    font-weight: bold;
    font-size: 1.125rem;
    border: 1px solid #acacac;
    text-transform: uppercase;
}
.consult .link-block img {
    margin-right: 10px;
}
.consult .link-block:hover {
    color: #1a3347;
    text-decoration: none;
}

/* ｓｅｔｔｉｎｇｓ ｃｕｓｔｏｍ ｐａｇｅ ：
ｋｅｒｕｖａｎｎｉａ－ｒｏｚｕｍｎｉｍ－ｂｕｄｉｎｋｏｍ */

.management-lists {
    column-count: 2;
    column-fill: balance;
    column-gap: 30px;
    color: #2c2b2b;
    font-family: 'Roboto', sans-serif;
}
.list-card {
    border: 1px solid #d0d0d0;
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    display: inline-block;
}

.list-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 20px;
    display: table-cell;
    vertical-align: middle;
    height: 70px;
    text-align: left;
}
.list-card-img {
    display: block;
    float: left;
    background: #662e71;
    border-radius: 50%;
}
.list-card ul {
    padding-top: 20px;
    padding-left: 10px;
    list-style: '\203A';
    list-style-position: outside;
}
.list-card ul li {
    padding-left: 10px;
}
.list-card ul li::marker {
    font-size: 1.8rem;
    color: #687a87;
}

.list-card .link-block {
    height: 42px;
    width: 345px;
    line-height: 42px;
    display: block;
    margin: 0 auto;
    border: 1px solid #c4c4c4;
    background-color: yellow;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(0 0 0);
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

/* The above code is creating a banner with a contact form. */
.banner-contact {
    padding: 25px 0;
    margin-top: 50px;
    margin-bottom: -20px;
    position: relative;
}
.banner-contact .image-align-right {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.banner-contact h4 {
    color: #3a1f48;
    font-size: 1.25rem;
}
.banner-contact p {
    width: 90%;
}
.banner-contact .r-side {
    text-align: center;
    height: 100%;
    vertical-align: middle;
    padding: 10px;
}
.banner-contact .link-block {
    width: 345px;
    line-height: 1.875rem;
    display: block;
    margin: 0 auto;
    border: 1px solid #c4c4c4;
    background-color: yellow;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(0 0 0);
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

/* The above code is setting the height of the image to 300px and the margin-bottom to 40px. */
.move-img {
    height: 300px;
    margin-bottom: 40px;
}

/* The above code is creating a card with a product image, product name, product description, and
product price. */
.card.prod {
    border-radius: 0;
}
.card.prod .row {
    padding: 20px;
}
.card.prod h5 {
    font-weight: bold;
    color: #2c2b2b;
    font-size: 1.125rem;
    line-height: 1.3125rem;
    font-weight: bold;
    height: 50px;
    overflow: hidden;
}
.card.prod .card-body {
    color: #2c2b2b;
    padding-top: 10px;
    font-size: 14px;
    line-height: 18px;
    height: 200px;
    text-align: left;
    overflow: hidden;
}
.card.prod .card-footer {
    height: 45px;
}
.card.prod .card-footer img {
    height: 13px;
    width: auto;
    margin-right: 10px;
}

/* Setting the height, padding, color, display, justify-content, and align-items for the divs inside
the divs inside the midd-menu div. */
.midd-menu > div > div {
    height: 100px;
    padding: 20px 40px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The above code is creating a modal form that will be used to collect information from the user. */
.consult-modal .modal-content {
    border: 1px solid #b4b4b4;
    background: rgb(102, 60, 119);
    padding: 10px;
    padding-bottom: 15px;
    position: relative;
}
.consult-modal .modal-header {
    border: 0px;
}
.consult-modal .modal-title h5 {
    text-align: center;
    width: 100%;
}
.consult-modal .modal-title {
    text-align: center;
    width: 100%;
    font-size: 1rem;
    color: white;
}
.consult-modal .modal-body label {
    display: none;
}
.consult-modal .modal-body :is(input, textarea) {
    margin-bottom: 20px;
    border-radius: 0;
    background: #472a53;
    color: white;
}
.consult-modal .modal-body textarea {
    height: 200px;
}
.consult-modal .modal-body :is(input, textarea)::placeholder {
    font-size: 1.125rem;
    color: white;
}
.consult-modal input[type="file"] {
    font-size: 1.125rem;
    color: white;
}
.consult-modal .modal-footer {
    padding: 0;
    border: 0;
}
.consult-modal .modal-header .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    filter: invert(1);
    border: 1px solid black;
    border-radius: 50%;
}
.consult-modal .modal-footer .submit {
    width: 100%;
    background-color: yellow;
    border-radius: 25px;
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    color: black;
    border: 1px solid #472a53;
}
.form-modal .form-group label {
    padding-top: 10px;
}
.form-modal label.no-text {
    color: transparent !important;
    user-select: none;
    font-size: 10px;
    margin-bottom: -5px;
    padding-top: 5px !important;
}

/* Ｓｅｔｔｉｎｇｓ ｃｏｏｐｅｒａｔｉｏｎ ｐａｇｅ */

.presentation.coop h1 {
    color: yellow;
    font-size: 2.75rem;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.presentation.coop h4 {
    color: white;
    font-size: 1.375rem;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.presentation.coop p {
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 2rem;
    color: white;
}
.presentation.coop .box {
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    color: #fffc00;
    text-transform: uppercase;
    padding: 20px;
    margin-bottom: 35px;
}
.presentation.coop .box p {
    margin-bottom: 0;
}

.coop-section h2 {
    font-size: 1.875rem;
    line-height: 2.1875rem;
    color: #2b2b2b;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.why-us .card {
    border: 0;
}
.why-us .card h5 {
    font-size: 1.125rem;
    line-height: 1.375rem;
    font-weight: bold;
    color: #2c2b2b;
    text-align: left;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}
.why-us .card h5 img {
    margin-right: 20px;
}
.plans .card {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 0;
}
.plans .card {
    border-top: 1px solid #9328c5 ;
    border-left: 0;
    border-bottom: 0;
    border-right: 1px solid #9328c5;
}

.block-form {
    padding: 40px 0;
    margin-bottom: -20px;
}
.block-form h2 {
    max-width: 580px;
    margin: 0 auto 30px auto;
    text-align: center;
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    line-height: 1.75rem;
    font-weight: bold;
    text-transform: uppercase;
}
.block-form h5 {
    max-width: 753px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.25rem;
    text-align: justify;
    margin: 0 auto 30px auto;
}
.block-form label {
    display: none;
}
.block-form .brd-yellow {
    padding: 20px;
}
.block-form :is(input, textarea) {
    margin-bottom: 20px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.6);
    color: white;
    overflow: hidden;
}
.block-form :is(input, textarea)::placeholder {
    font-size: 1.125rem;
    color: #302e41 ;
}
.block-form textarea {
    width: 100%;
    height: 210px !important;
    overflow: hidden;
}
.block-form textarea::-webkit-scrollbar {
    display: none;
}
.block-form .submit {
    width: 100%;
    background-color: yellow;
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    color: black;
    border: 1px solid #472a53;
}

.banner-quote {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 100px;
    justify-content: center;
    align-items: center;
}
.banner-quote img {
    margin-right: 40px;
}
.banner-quote h3 {
    font-size: 28px;
    line-height: 42px;
    width: 80%;
}
.benefits :is(.l-side,.r-side) h5 {
    padding: 20px 0;
}
.benefits :is(.l-side,.r-side) h5 img {
    margin-right: 10px;
}
.presentation.contact .container {
    padding: 0px 110px;
}
.presentation.contact .box {
    padding: 30px;
    border-radius: 0;
    background: transparent;
    color: white;
}
.presentation.contact ul {
    list-style: none;
}
.presentation.contact li img {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.presentation.contact li.card-text {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    line-height: 26px;
}
.presentation.contact li.card-text p {
    margin-bottom: 0;
}

.our-work .row {
    margin-bottom: 20px;
}
.our-work .card {
    width: 100%;
    height: 100%;
}
.our-work .card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-coop {
    padding: 30px 0;
}
/* Styling the accordion button and the accordion item. */
.accordion-item {
    margin-bottom: 10px;
}
.accordion-button:focus {
    outline: none;
    box-shadow: none;
    border: none;
}
.accordion-button,
.accordion-button:not(.collapsed) {
    background-color: #663c77;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}
.accordion-button::after {
    background-image: url("../../../js/ckeditor/ck_imgs/spoiler-plus.png");
}
.accordion-button:not(.collapsed)::after {
    background-image: url("../../../js/ckeditor/ck_imgs/spoiler-icon.png");
    transform: translate(0,5px) rotate(360deg);
}
/* filter with accordion */
.accordion-item.is-filter {
    font-size: 1rem;
    border-radius: 0 !important;
    border: none;
    box-shadow: 0px 2px 4px -4px;
}
.accordion-item.is-filter .accordion-button {
    background-color: white;
    font-size: 1rem;
    color: var(--body-text);
    position: relative;
    padding: 0.625rem;
    color: #575560;
}
.accordion-item.is-filter .accordion-button span {
    display: inline-block;
    width: 96%;
}
.accordion-item.is-filter .accordion-button span::first-letter {
    text-transform: capitalize;
    display: inline-block;
}
.accordion-item.is-filter .accordion-button::after {
    background-image: var(--bs-accordion-btn-icon);
    position: absolute;
    right: 10px;
}
.accordion-item.is-filter .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
    filter: grayscale(1);
}
.accordion-item.is-filter .accordion-button::before {
    content:'';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: .5;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%,
     rgba(213,213,213,1) 50%, rgba(255,255,255,1) 100%);
    display: block;
}
.accordion-item.is-filter .accordion-button.collapsed::before {
    display: none;
}
.accordion-item.is-filter .accordion-body {
    padding: 1rem 0.625rem;
    height: 100%;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: auto;
    scrollbar-color: #97999b #ffffff;
}
.accordion-item.is-filter .accordion-body::-webkit-scrollbar {
    width: 10px;
}
.accordion-item.is-filter .accordion-body::-webkit-scrollbar-track {
    background: #ffffff;
}
.accordion-item.is-filter .accordion-body::-webkit-scrollbar-thumb {
    background-color: #97999b;
    border-radius: 10px;
    border: 4px solid #ffffff;
}
/* end filter with accordion */

/* Rotating the button 270 degrees. */
#to-top-btn {
     transform: rotate(270deg);
}
/* Creating a microphone icon that will be used to activate the speech recognition. */
.has-mic {
    position: relative;
}
.mic {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 6px;
    cursor: pointer;
    border: 2px solid red;
}
.mic.active {
    background: red;
    border: 2px solid white;
    animation-name: blink;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-delay: .10s;
    animation-iteration-count: infinite;
    animation-direction: alternate;

}
@keyframes blink {
    from {background: red;}
    to {background: white;}
}
.mic:is(.active, :hover, :focus, :target) .tool-mic {
    display: block;
}
.tool-mic {
    position: absolute;
    background: white;
    width: 100px;
    top: 0;
    right: 100%;
    transform: translateX(-10px);
    display: none;
}
.tool-mic::after {
    position: absolute;
    left: 100%;
    top: 7px;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 4px 0 4px 6.9px;
    border-color: transparent transparent transparent white;
    transform: rotate(0deg);
}

/*----------------------------------
░█▀▄▀█ ░█▀▀▀█ ░█▀▀█ ▀█▀ ░█─── ░█▀▀▀
░█░█░█ ░█──░█ ░█▀▀▄ ░█─ ░█─── ░█▀▀▀
░█──░█ ░█▄▄▄█ ░█▄▄█ ▄█▄ ░█▄▄█ ░█▄▄▄
 -----------------------------------*/
@media screen and (max-width:940px) {
body {
    font-size: 0.875rem;
}
h2, h3, h4 {
    font-size: 1rem;
    text-align: center;
}
nav .navbar-toggler {
    color: var(--header-text);
    filter: invert(1);
    position: relative;
    z-index: 3;
}
.navbar-toggler-icon {
    width: 2rem;
    height: 2rem;
}
.header .menu {
    padding-top: 30px;
}
.header .menu > .nav-item:first-child {
    display: none;
}
.header .menu > .nav-item:not(:last-child)::after {
    display: none;
}
.header .menu > .nav-item:hover:not(:last-child)::after {
    border-bottom: 0;
}
.header .nav-item {
    position: relative;
    padding: 12px 0 0 0;
}
.header .nav-item:hover .submenu { display: none;}
.header :is(.menu, .submenu) .nav-item {
    width: 100%;
    padding: 7px 0;
}
.header .submenu {
    border-top-width: 0;
    border-style: solid;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    background-color: #00000029;
    border-radius: 6px;
}
.submenu {
    position: relative;
    padding-left: 0px;
    list-style: none;
    display: block;
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    display: none;
}
.header .nav-item .plus {
    position: absolute;
    top: 5px;
    right: 0px;
    content: '+';
    font-weight: 600;
    font-size: 25px;
    z-index: 10;
    width: 25px;
    text-align: center;
}
.header .nav-item:hover .plus {
    color: yellow;
    cursor: pointer;
}
.header .submenu .submenu {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
}
.header .submenu .nav-item {
    position: relative;
    display: initial;
    justify-content: unset;
    align-items: unset;
}

#to-top-btn {
    bottom: 110px;
    right: -1rem;
}

/* .nav-clear-fix {
    height: 68px !important;
} */
.double .block-bg-img {
    position: relative;
    width: 100%;
    height: 40vh;
}
.double .link-block span:nth-child(1) {
    padding: 10px 15px;
}
.double .link-block {
    max-height: 82px;
}
.double .link-block span:nth-child(2) {
    font-size: 1.15rem;
}
.double .link-block:hover span:nth-child(2) {
    padding: 10px 15px;
}
.double .link-block:hover span:nth-child(3) img {
    width: 110%;
}
.footer div:first-child {
    height: auto;
    width: 100%;
}

.onetouch {
    background-position: top center !important;
}
.onetouch > .container {
    padding: 0;
}
.onetouch .l-side {
    padding-right: 0;
    padding-top: 20px;
    padding-left: 0;
    width: 100%;
}
.onetouch :is(.nav-pills,.nav-pills .show > ) .nav-link {
    width: 60px;
    height: 60px;
    margin-right: 0px;
}
.onetouch :is(.ud-title, .tab-pane.active>h5) {
    font-size: 1.125rem;
}
.onetouch .smphone {
    top: auto;
    left: 0;
    transform: translateY(30px);
    width: 150px;
    bottom: 0;
}
.page :is(h3.section-title, h1.title:first-of-type) {
    font-size: 1rem;
}
.onetouch :is(.ud-content, .tab-pane.active>p) {
    font-size: 0.875rem;
}
.onetouch .r-side {
    padding-left: 0px;
    width: 100%;
}
.tab-content>.active img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.housemain {
    margin: 15px auto;
    position: relative;
    height: 300px;
}
.housemain > img {
    width: 100%;
    height: 100%;
}
.animate-house {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.animate-house img {
    position: absolute;
    width: 100%;
    height: 100%;
}
.animate-house-btns .btn {
    width: 40px;
    height: 40px;
    margin-inline: 0px;
}
.animate-house-btns {
    transform: translateY(30px);
}
.house-parts .party.active {
    bottom: 64px;
    right: 48px;
    height: 90px;
    width: 89px;
}
.house-parts img.slide-curtain2 {
    top: 88px;
    right: 172px;
    width: 46px;
    height: 54px;
}
.house-parts img.slide-garage {
    top: 176px;
    left: 82px;
    height: 83px;
    width: 35px;
    transform: scaleX(1) scaleY(1) scaleZ(1) ;
}
.house-parts img.slide-roll-window1 {
    top: 154px;
    right: 106px;
    z-index: 2;
    height: 72px;
    width: 20px;
}
.house-parts img.slide-curtain1-1 {
    bottom: 78px;
    left: 162px;
    z-index: 1;
    height: 68px;
    width: 20px;
}
.house-parts img.slide-curtain1-2 {
    bottom: 79px;
    left: 186px;
    z-index: 1;
    width: 32px;
    height: 64px;
}
.house-parts img.slide-curtain1-3 {
    bottom: 83px;
    left: 203px;
    z-index: 1;
    width: 18px;
    height: 60px;
}
.house-parts img.slide-roll-door {
    top: 179px;
    right: 134px;
    width: 20px;
    height: 52px;
}
.house-parts img.slide-roll-window2 {
    top: 157px;
    right: 61px;
    z-index: 2;
    width: 44px;
    height: 66px;
}
.management-lists {
    column-count: 1;
    column-gap: 0;
    color: #2c2b2b;
}
.list-card {
    padding: 14px;
    overflow-x: hidden;
}
.list-card-img {
    float: none;
    width: 70px;
    height: 70px;
    margin: auto;
}
.list-card-title {
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    height: auto;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}
.list-card .link-block {
    width: 100%;
}
.banner-contact .link-block {
    line-height: 1.475rem;
    width: 100%;
}
.banner-contact .image-align-right {
    width: 55px;
    height: 55px;
}
.interface {
    margin-top: -20px;
    padding-top: 20px;
    padding-bottom: 0px !important;
}
.interface .nav-link {
    width: 70px;
    height: 70px;
    opacity: .5;
    background: #662e71;
    border-radius: 50%;
    margin-left: 4px;
    margin-right: 4px;
    padding: 20px;
}
.interface .tab-pane {
    width: 100%;
    margin: auto;
    text-align: center;
    height: 200px;
    padding-top: 10px;
}
.interface .tab-pane span:first-of-type {
    font-size: 1.2rem;
}
.interface .tab-pane p {
    line-height: 1.25rem;
}
.scenarios :is(.nav-pills,.nav-pills .show > ) .nav-link {
    width: 50px;
    height: 50px;
    margin-right: 2px;
}
.scenarios .carousel-item h5 {
    max-width: 85%;
    font-size: 1rem;
}
.partners {
    padding-top: 20px;
}
.partners h5 {
    font-size: 1rem;
    padding-bottom: 10px;
}
.partners ul {
    justify-content: flex-start;
}
.partners ul li {
    height: 50px;
    padding-right: 5px;
    padding-left: 5px;
    width: 104px;
}
.consult {
    background-size: cover !important;
}
.consult .l-side img {
    width: 100%;
    height: auto;
}
.consult .link-block {
    margin-top: 0;
    padding: 10px 10px;
    font-size: 0.9375rem;
}
.move-img {
    height: 200px;
    margin-bottom: 20px;
}
.midd-menu > div > div {
    background-size: cover !important;
    margin-bottom: 15px;
}
.product .slider-v .carousel-panel .bord {
    width: 70px;
    height: 70px;
    border: 1px solid #B9B9B9;
    border-radius: 10px;
    overflow: hidden;
    opacity: 1;
}
.form-modal .form-control {
    margin-bottom: 5px;
    font-size: 0.875rem;
}
.form-modal label {
    font-size: 1rem !important;
    line-height: 16px;
    margin-bottom: 0;
}
.form-modal .form-group label {
    padding-top: 5px;
}

.page .presentation {
    position: relative;
    padding: 20px 0;
    background-size: cover !important;
}
.presentation.coop h1 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}
.presentation.coop h4 {
    font-size: 1rem;
    margin-bottom: 25px;
}
.presentation.coop .box {
    font-size: 1rem;
    margin-bottom: 25px;
}
.presentation.coop p {
    font-size: 1rem;
    line-height: 1.25rem;
}
.coop-section h2 {
    font-size: 1.25rem;
    line-height: 1.375rem;
    margin-bottom: 25px;
}
.why-us .card h5 img {
    width: 60px;
    height: 60px;
}
.plans .card h5 {
    font-size: 1rem;
    text-align: center;
}
.plans .card img {
    width: 100%;
    height: 180px;
}
.banner-quote {
    padding: 20px 0;
    justify-content: center;
    align-items: center;
}
.banner-quote h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    width: 100%;
}
.banner-quote img {
    margin-right: auto;
    margin-left: auto;
    width: 75px;
    height: 75px;
}
.benefits :is(.l-side,.r-side) h5 {
    padding: 20px 0;
    font-size: 1.2rem;
}
.presentation.contact .container {
    padding: 0px 20px;
}
.presentation.contact .box {
    padding: 5px;
}
.presentation.contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.presentation.contact li img {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.presentation.contact li.card-text {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.our-work .card h5{
    font-size: 1rem;
}
.our-work .card h5 img {
    font-size: 1rem;
    margin-right: 5px;
}
.consult-modal .modal-body :is(input, textarea) {
    margin-bottom: 15px;
    border-radius: 0;
    background: #472a53;
    color: white;
}
.consult-modal .modal-title {
    font-size: 0.875rem;
}
.consult-modal .modal-title h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.consult-modal .modal-body :is(input, textarea) {
    margin-bottom: 15px;
    line-height: 1;
}
.consult-modal .modal-body textarea {
    height: 80px;
}
.post-group .card-title {
    font-size: 1.1rem;
}
.page :is(h3.section-title, h1.title:first-of-type) {
    font-size: calc(1rem + 1.5vw);
}
.post :is(h3.section-title, h1.title:first-of-type) {
    font-size: calc(1rem + 1.5vw);
}
}/* end mobile */


@media screen and (min-width:1500px) {
    div#house-container {
        background-position: 30% center !important;
    }
}
@media screen and (min-width:1500px) {
    div#house-container {
        background-position: 30% center !important;
    }
}


.product button:is(.carousel-control-prev,.carousel-control-next){
    width: 5%;
}
.product button:is(.carousel-control-prev,.carousel-control-next):hover {
    background: #00000073;
}
.product .carousel-indicators [data-bs-target] {
    background-color: #953d87;
    border: 1px solid #953d87;
}
.product .carousel-ads {
    position: absolute;
    bottom: 40px;
    right: 0;
}
.product .carousel-image img {
    width: 90%;
    height: 90%;
}
.product .carousel-ads p:first-of-type {
    background-color: #40A230;
}
.product .carousel-ads p {
    background-color: #953D87;
    border-radius: 38px;
    width: 160px;
    height: auto;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    color: white;
    text-align: center;
}
span:is([data-widget="selector"], [data-widget="datalink"]) {
    display: none;
    visibility: hidden;
    user-select: none;
}

/* LESSON CONTENT */
.lesson-main {
    display: grid;
    grid-template-areas: "menu intro" "menu content";
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 4fr;
}
.lesson-main img {
    max-width: 300px;
    object-fit: contain;
    aspect-ratio: 4/3;
}
.lesson-intro {
    grid-area: intro;
    padding: 0 20px;
}
.lesson-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 6rem;
    left: 0;
    z-index: 2;
    height: calc(100vh - 7rem);
    overflow-y: auto;
    grid-area: menu;
}
.lesson-menu :is(ol, ul) {
    background-color: #ebebff;
    padding: 20px 10px;
    list-style-position: inside;
    text-decoration: auto;
    color: darkblue;
    font-size: 14px;
    border-radius: .35rem;
}
.lesson-menu :is(ol, ul) li {
    margin-bottom: 6px;
}
.lesson-menu :is(ol, ul) li.active {
    color: black;
}
.lesson-content {
    grid-area: content;
    min-width: 1px;
    padding: 0 20px;
}
.lesson-intro > .active {
    margin-top: 3rem;
    padding-top: 6.25rem;
}
.lesson-content > .active {
    margin-top: 3rem;
    padding-top: 6.25rem;
}
@media screen and (width <= 568px){
   .lesson-main {
        display: grid;
        grid-template-areas: "menu menu" "intro intro" "content content";
    }
    .lesson-menu {
        top: 4.8rem;
        left: 0;
        z-index: 2;
        height: auto;
    }
    .lesson-menu :is(ol, ul) {
        padding: 10px;
        font-size: 12px;
    }
    .lesson-menu :is(ol, ul) li {
        margin-bottom: 4px;
    }
    .lesson-intro, .lesson-content {
        padding: 0 10px;
    }
    .lesson-intro > .active, .lesson-content > .active  {
        margin-top: 7rem;
        padding-top: 15rem;
    }
}
