/* WRITE YOUR CUSTOM CSS CODE. THIS WILL NOT BE DELETED ON UPDATE. */

/* table of contents

1. global styles

2. typography

3. Layout

4. components
   4.1 buttons

*/


/* ===============
    globals styles
   =============== */


:root {
    --base-color: #e1000e;
    --sec-color: #E31E24;
    --light-color: #f6f6f6;
    --dark-color: #1e1f21;
    --dynamic-height: calc(var(--vh, 1vh) * 100);
    --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

main {
    position: relative;
    z-index: 9;
    min-height: initial;
}

.visited_loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 999;
}

.loader_wrapper {
    position: fixed;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.loader-slice {
    height: 100%;
    background-color: #3a3c44;
    transition: all .5s ease-out;
}

.left-slice,
.right-slice {
    width: 10rem;
}

.center-slice {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-rows: 5rem 1fr 5rem;
    grid-template-columns: 1fr minmax(150px, 1fr) 1fr;
    width: calc(100% - 20rem);
}

.center-slice svg {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.loader_logo {
    grid-row: 2/3;
    grid-column: 2/3;
    text-align: center;
    z-index: 9;
}

.loader_logo .logo {
    max-height: 120px;
    opacity: 0;
}

.loader_motto {
    display: flex;
    justify-content: center;
    grid-row: 2/3;
    grid-column: 3/4;
    color: #fff;
    letter-spacing: 2px;
    opacity: 0;
    z-index: 9;
}

.loader_motto p {
    display: flex;
    flex-direction: column;
    margin-bottom: 2px;
    font-size: 16px;
}

/* .loader-circle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc((var(--dynamic-height) - 30rem)/-2);
    transform: translateY(-50%);
    height: calc(100% - 10rem);
    width: calc(var(--dynamic-height) - 10rem);
    z-index: 9;
    border: 1px solid #b6b8b9;
    border-radius: 100%;
    opacity: .5;
} */

.container {
    max-width: calc(100% - 20rem);
}

.language-select {
    display: none !important;
}

.internorm_logo {
    position: fixed;
    display: flex;
    align-items: center;
    top: 50%;
    right: 0px;
    width: auto;
    max-height: 50px;
    transform: rotate(-90deg) translate(50%, -50%);
    transform-origin: right;
    background: #e1000e;
    color: #fff;
    z-index: 99;
    box-shadow: 0 0 20px -5px #000;
}

.internorm_logo span {
    height: 100%;
    width: 100%;
    padding: 10px 0 10px 20px;
    font-size: 14px;
}

.internorm_logo img {
    max-width: 130px;
}

.grid-lines-overlay {
    display: grid;
    grid-template-rows: 5rem 1fr 5rem;
    grid-template-columns: 10rem 1fr 1fr 10rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
}

.k-line {
    background: #b6b8b9;
    opacity: .5;
    pointer-events: none;
}

.k-line.mobile {
    display: none;
}

.k-line.-v {
    width: 1px;
    height: 100%;
}

.k-line.-h {
    width: 100%;
    height: 1px;
}

.k-line.-l {
    grid-column: 2/2;
    grid-row: 1/4;
}

/* .k-line.-m {
    grid-column: 3/3;
    grid-row: 1/4 !important;
    display: none;
    background: transparent;
} */

.k-line.-m-t {
    grid-column: 3/3;
    grid-row: 1/2;
    display: none;
}

.k-line.-m-m {
    /* grid-column: 3/3; */
    /* grid-row: 2/3; */
    position: fixed;
    height: auto;
    top: 5rem;
    left: 50%;
    bottom: 5rem;
    z-index: 1;
    display: none;
}

.k-line.-m-b {
    /* grid-column: 3/3; */
    /* grid-row: 3/4; */
    position: fixed;
    height: 5rem;
    bottom: 0;
    left: 50%;
    z-index: 1;
    display: none;
}

.k-line.-r {
    grid-column: 4/4;
    grid-row: 1/4;
}

.k-line.-t {
    grid-column: 1/5;
    grid-row: 2/2;
}

.k-line.-b.loader_line {
    grid-column: 1/5;
    grid-row: 3/3;
}

.k-line.-b {
    position: fixed;
    bottom: 5rem;
    /* z-index: 9; */
}

.aside-link {
    grid-column: 4/4;
    grid-row: 2/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--base-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    transform: rotate(90deg);
    white-space: nowrap;
    pointer-events: all;
    opacity: 0;
    background: #ffffff00;
    backdrop-filter: blur(10px);
    padding: 5px 10px;
}

.over {
    position: relative;
    z-index: 1;
}


    /* Cookie Notice */

.cookie-consent-popup {
    padding: 20px;
}

.cookie-consent-details {
    margin-top: 0;
}

.cookie-consent-details.open {
    margin-top: 1rem;
}

.cookie-consent-message,
.cookie-consent-popup label,
.cookie-details-item td {
    font-size: 12px;
}

.cookie-consent-message {
    border-bottom: 1px solid #b6b8b9;
    padding-bottom: 10px;
}

.cookie-consent-popup input[type="checkbox"] {
    display: inline-block !important;
}

.cookie-consent-controls {
    padding-top: 0;
}

.cookie-consent-controls.open {
    padding-top: 1rem;
}

.cookie-consent-controls .form-check-input {
    margin-top: 0;
}

.cookie-consent-popup .btn {
    min-width: 120px;
    font-size: 13px;
    border-radius: 0;
    border: none;
    background: #6c757d;
    outline: none;
    box-shadow: none !important;
}

.cookie-consent-accept-all {
    background: var(--base-color) !important;
}

.cookie-details-item {
    height: 100%;
}

.cookie-details-item table {
    margin-bottom: 0;
}



/* ===============
    typography
   =============== */

@font-face {
    font-family: 'Poppins';
    src: url('/css/fonts/Poppins-Thin.ttf');
    font-display: swap;
    font-weight: 100;
}

@font-face {
    font-family: 'Poppins';
    src: url('/css/fonts/Poppins-Light.ttf');
    font-display: swap;
    font-weight: 200;
}

@font-face {
    font-family: 'Poppins';
    src: url('/css/fonts/Poppins-Regular.ttf');
    font-display: swap;
    font-weight: 300;
}

@font-face {
    font-family: 'Poppins';
    src: url('/css/fonts/Poppins-SemiBold.ttf');
    font-display: swap;
    font-weight: 400;
}

body,
a,
p,
span,
h1,
h3,
h4 {
    font-family: 'Poppins';
    font-weight: 300;
}

h2 {
    font-family: 'Poppins';
    font-weight: 300;
    margin-bottom: 20px;
}

h2 strong {
    color: var(--base-color);
}

body p {
    font-size: 18px;
    font-weight: 200;
}

a {
    color: #000;
}

.btn {
    outline: none !important;
    box-shadow: none !important;
    font-weight: 300 !important;
}

.headline-accent {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 15px;
}

.max-width {
  max-width: 800px;
  margin: auto;
}

.highlight {
    color: var(--base-color);
    font-weight: 400;
}

.description ul {
    padding-left: 0;
}

.description ul li {
    /* display: flex; */
    /* align-items: center; */
    position: relative;
    list-style-type: none;
    margin-bottom: 5px;
    font-weight: 400;
}

.description ul li:before {
    position: relative;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    bottom: 1px;
    background: url('/uploads/icons/checkmark.svg');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.floating_section.reverse .description ul li {
    flex-direction: row-reverse;
}

.floating_section.reverse .description ul li:before {
    display: none;
}

.floating_section.reverse .description ul li:after {
    position: relative;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    bottom: 1px;
    background: url('/uploads/icons/checkmark.svg');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.floating_section .label {
    position: absolute;
    top: 0;
    right: 0;
    background: #000000ab;
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
}




/* ===============
    Layout
   =============== */

    /* Header menu */

header {
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    padding: 0 calc(15px + 10rem);
    z-index: 99;
    transition: var(--transition);
}

header #main-navbar {
    width: 100%;
    height: 100%;
    padding: 0;
}

header .container {
    max-width: 100%;
    height: 100%;
    padding: 0;
}

header .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 10rem; */
    height: 100%;
    margin: 0;
}

.logo {
    max-height: 90%;
}

header .header_right {
    display: flex;
    align-items: center;
    height: 100%;
}

header .header_right_menu {
    margin-right: 30px;
    height: 100%;
}

#main_menu,
.main-nav {
    height: 100%;
}

header .nav-item {
    display: flex;
    align-items: center;
    margin-right: 20px !important;
}

header .nav-item:hover .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-menu {
    width: 100%;
    border-radius: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    border-color: #b6b8b9;
    min-width: 220px;
}

header.fixed .dropdown-menu {
    background-color: #fff;
}

header .dropdown-menu .nav-item {
    width: 100%;
    margin-right: 0;
    border-bottom: 1px solid #b6b8b9;
}

header .dropdown-menu .nav-item:last-child {
    border: none;
}

header .dropdown-menu .nav-item:hover {
    background-color: #fff;
}

header .dropdown-menu .nav-item:hover .nav-link {
    color: var(--base-color);
}

header .nav-item:last-child {
    margin-right: 0 !important;
}

header .nav-link {
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 300;
    width: 100%;
}

.header_right_contact {
    /* width: 10rem; */
    height: 100%;
    font-size: 13px;
    color: #fff;
}

.header_right_contact svg {
    fill: #fff;
    margin-right: 5px;
}

.header_right_contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: 300;
}

header.fixed,
.menu-opened header {
    /* background: var(--light-color); */
    background: #ffffff96;
    backdrop-filter: saturate(180%) blur(20px);
}

body:not(.chrome) header.fixed {
    background: #fff;
    backdrop-filter: none;
}

.menu-toggler {
    display: none;
}

/* header.fixed:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: saturate(180%) blur(20px);
} */

header.fixed .nav-link,
body.no-header .nav-link,
header.fixed .header_right_contact a,
body.no-header .header_right_contact a {
    color: #000;
}

header.fixed .header_right_contact a svg,
body.no-header .header_right_contact a svg {
    fill: #000
}

body.no-header .menu-toggler .icon-bar {
    background: #000;
}

header.header-white .menu-toggler .icon-bar {
    background: #fff;
}

header.header-white .nav-link,
header.header-white .header_right_contact a {
    color: #fff;
}

header.header-white .header_right_contact a svg {
    fill: #fff;
}


    /* Header Slider */

.header_slider {
    position: relative;
    height: var(--dynamic-height);
    transition: var(--transition);
    margin-bottom: 0 !important;
}

/* .header_slider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc((var(--dynamic-height) - 30rem)/-2);
    transform: translateY(-50%);
    height: calc(100% - 10rem);
    width: calc(var(--dynamic-height) - 10rem);
    z-index: 9;
    border: 1px solid #b6b8b9;
    border-radius: 100%;
    opacity: .5;
} */

.header_video {
  position: absolute;
  width: 100%;
  height: var(--dynamic-height);
  overflow: hidden;
}

.header_video .col-lg-12,
.header_video .col-lg-12 .module-video,
.header_video .col-lg-12 .module-video .video-js {
  height: 100%;
  width: 100%;
}

.header_video .col-lg-12 .module-video .video-js video {
  object-fit: cover;
}

.header_slider .slick-slide {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding-left: 10rem !important;
}

.header_slider .slick-slide:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-color: #3a3c44; */
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 5%, rgb(0 0 0 / 69%) 80%);
    /* opacity: .5; */
    pointer-events: none;
}

.slick-list,
.slick-track,
.header_slider .slick-slide .module-image,
.header_slider .slick-slide .module-image img {
    height: 100%;
}

.header_slider .slick-slide .module-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header_slider .slick-slide .module-image img {
    object-fit: cover;
}

.header_slider .slick-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    top: 50%;
    transform: translateY(-50%);
    fill: #fff;
    z-index: 9;
    cursor: pointer;
}

.header_slider .slick-arrow:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    transform: scale(0);
    z-index: -1;
    transition: transform .3s ease-in-out;
}

.header_slider .slick-arrow:hover:before {
    transform: scale(1);
}

.header_slider .slick-arrow:hover svg polyline,
.header_slider .slick-arrow:hover svg line {
    stroke: #000 !important;
    transition: transform .3s ease-in-out;
}

.header_slider .slick-arrow svg {
    width: 30px;
}

.header_slider .slick-arrow-left {
    left: 2.5rem;
}

.header_slider .slick-arrow-left svg {
    transform: rotate(180deg);
}

.header_slider .slick-arrow-right {
    left: 12.5rem;
}

.header_slider .slick-slide .module-text {
    /* position: absolute; */
    /* top: 50%; */
    /* left: 10rem; */
    /* right: 50%; */
    padding: 20px;
    /* transform: translateY(-50%); */
    z-index: 9;
    overflow: hidden;
    max-width: 700px;
}

.header_slider .slick-slide .module-text h2,
.header_slider .slick-slide .module-text h1,
.header_slider p {
    font-size: calc(1.8vh + 1.8vw);
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
    /* font-weight: 400; */
    line-height: 1.2em;
}

.header_slider .slick-slide .module-text h2 strong,
.header_slider .slick-slide .module-text h1 strong,
.header_slider p strong {
    color: #fff;
}

.header_slider .slick-slide.slick-active .module-text h2,
.header_slider .slick-slide.slick-active .module-text h1,
.header_slider .slick-slide.slick-active p,
.header_slider .slick-slide.slick-active .module-button .btn {
    transform: translateX(0);
}

.header_slider .slick-slide.slick-active .module-image {
    animation: 1.5s ease-in-out 0s 1 normal forwards running fadeInBackground;
}
@keyframes fadeInBackground {
    0% {
        transform: scale(1.1) translateY(-4.54%);
        opacity: 0.7;
    }
    100% {
        transform: scale(1) translateY(0px);
        opacity: 1;
    }

}

.header_slider .slick-slide .module-button {
    position: relative;
    /* left: 10rem; */
    /* bottom: 5rem; */
    left: 15px;
    z-index: 9;
    overflow: hidden;
    transition: var(--transition);
}

.header_slider .slick-slide .module-button .btn {
    position: relative;
    padding: 1rem 2rem;
    background-color: rgba(70,70,70,0.25);
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* border: 1px solid #fff; */
    box-shadow: inset 0 0 0 1px #c1c1c1 !important;
    border-radius: 0;
    transform: translateX(-100%);
    backdrop-filter: blur(10px);
}

.header_slider .slick-slide .module-button .btn:hover {
    box-shadow: inset 0 0 0 3px #c1c1c1 !important;
}

.slick-dots {
    bottom: 30px;
    padding: 0 calc(15px + 10rem);
    text-align: left;
}

.slick-dots li {
    width: auto;
    height: auto;
    margin: 0 6px;
}

.slick-dots li button {
    width: 20px;
    height: 1px;
    padding: 10px;
}

.slick-dots li button:before {
    content: '';
    width: 20px;
    height: 1px;
    top: 10px;
    background: #fff;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #000;
}

/* .header_slider .slick-slide .module-button .btn:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 100%;
    transform: translateX(100%);
    background-color: var(--base-color);
    transform-origin: left;
    transition: all .3s ease-in-out;
} */

/* .header_slider .slick-slide .module-button .btn:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0px;
    width: 54px;
    height: 100%;
    background-image: url(/uploads/icons/icons-all.png);
    transform: translateX(100%) scale(.7,.7);
    transition: all .3s ease-in-out;
    background-position: -622px -78px;
    background-repeat: no-repeat;
    filter: invert(1);
    z-index: 1;
} */


    /* Section */

.intro_door_section-text {
    position: relative;
    z-index: 1;
    margin-top: 15vh;
}

.intro_door_section-text .module-text {
    background: #fff;
}



.intro_door_section-image {
    position: relative;
    height: calc(var(--dynamic-height) - 15rem);
    margin-bottom: 50vh;
    z-index: 9;
}

.intro_door_section-image .intro_door_col,
.intro_door_section-image .intro_door_col .module-image,
.intro_door_section-image .intro_door_col .module-image img {
    height: 100%;
}

.intro_door_section-image .intro_door_col .module-image {
    text-align: center;
    right: 0;
    margin-left: auto;
}

.intro_door_section-image .intro_door_col .module-image img {
    position: relative;
    width: auto;
    object-fit: contain;
    box-shadow: 2px 5px 20px -5px #000;
}

.intro_door_section-secondary-image {
    position: relative;
    height: calc(var(--dynamic-height) - 15rem);
    margin-bottom: 30vh;
    z-index: 9;
}

.intro_door_section-secondary-image .secondary_image_col {
    display: flex;
    justify-content: space-between;
}

.intro_door_section-secondary-image .secondary_image_col,
.intro_door_section-secondary-image .secondary_image_col .secondary_image,
.intro_door_section-secondary-image .secondary_image_col .secondary_image img {
    height: 100%;
}

.intro_door_section-secondary-image .secondary_image_col .secondary_image {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.intro_door_section-secondary-image .secondary_image_col .secondary_image img {
    width: auto;
    object-fit: contain;
}

.intro_door_section-secondary-image .secondary_image_col .security_image {
    position: absolute;
    height: 100%;
}

.intro_door_section-secondary-image .secondary_image_col .security_image img {
    height: 100%;
    object-fit: cover;
}

.section_a {
    padding-top: 15vh;
    /* padding-bottom: 10vh; */
}

.section h2 {
    font-size: calc(1.8vh + 1.8vw);
}

.subheader {
    font-size: 40px;
}

.section_a_desc_col {
    margin-top: 20px;
}

.section_a_desc_col .module-text {
    max-width: 800px;
    margin: auto;
}

.door_image_col {
    height: calc(var(--dynamic-height) - 15rem);
    display: flex;
    justify-content: center;
}

.category_slider {
    width: 100%;
}

.category_row .image_full .slick-slide-inner,
.category_row .image_full .slide-slick-image {
    height: 100%;
}

.door_image_col .full_categ_image img {
    width: 100% !important;
}

.category_row .image_full .slide-slick-image img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.category_slider .title,
.category_slider .slide-slick-content {
    text-align: center;
}

.category_slider .slick-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    width: 26%;
    height: 100%;
    z-index: 9;
    cursor: pointer;
}

.category_slider .slick-arrow-left {
    left: 0;
}

.image_full .slick-arrow-left {
    justify-content: flex-start;
}

.category_slider .slick-arrow-right {
    right: 0;
}

.image_full .slick-arrow-right {
    justify-content: flex-end;
}

.image_full .arrow {
    background: #fff;
    padding: 10px;
}

.door_image_col .module-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: auto !important;
}

.door_image_col .slick-slide {
    display: flex;
    align-items: center;
}

.door_image_col .slick-slide-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.door_image_col img {
    width: 100% !important;
    object-fit: contain;
    /* top: 7.5rem; */
    /* height: calc(var(--dynamic-height) - 15rem); */
    height: auto;
    margin: auto;
    cursor: zoom-in;
}

.floating_section {
    /* margin-bottom: var(--dynamic-height); */
    margin-bottom: 20vh;
    margin-top: 10vh;
    padding: 0 0 5vh 0;
}

.floating_section.reverse .module-text {
    text-align: right;
}

.gallery_section {
    position: relative;
    display: grid;
    grid-template-rows: 10rem 1fr 5rem;
    padding-top: 5rem !important;
    height: calc(var(--dynamic-height));
    margin-bottom: 5vh;
    z-index: 9;
    margin-left: auto !important;
    margin-right: auto !important;
    /* min-height: calc(var(--dynamic-height) - 3.7rem); */
}

/* .gallery_section:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: calc(var(--dynamic-height));
        width: calc(var(--dynamic-height));
        z-index: 9;
        border: 1px solid #b6b8b9;
        border-radius: 100%;
        opacity: .5;
        pointer-events: none;
        z-index: -1;
} */

.gallery_lines_col {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50vh;
    z-index: -1;
    opacity: .5;
}

.gallery_lines_col .gallery_lines {
    height: 100%;
    z-index: -1;
}

.gallery_lines_col .gallery_lines svg {
    width: 100%;
    height: 100%;
}

.gallery_lines_col svg .line--from-top {
    transform-origin: center;
}

.gallery_section h3 {
    font-size: calc(1.8vh + 1.8vw);
    font-family: Poppins;
    font-weight: 400;
    margin-bottom: 0;
}

.gallery_section .dark-btn {
    text-align: center;
}

.gallery_section .btn {
    margin-top: 0;
}

.gallery_section .col-lg-12:first-child {
    display: flex;
    align-self: center;
    justify-content: center;
}

.gallery_section .col-lg-12:first-child h2 {
    margin-bottom: 0;
}

.gallery_section .col-lg-12:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery_section .slide-slick-content {
    display: none;
}

.gallery_section .slick-slide-inner,
.gallery_section .slide-slick-image {
    height: 100%;
}

.gallery_section .slide-slick-image img {
    width: 100%;
    height: 100%;
    max-height: 60vh;
    object-fit: contain;
}

.doors-slider {
    /* height: calc(var(--dynamic-height) - 20rem); */
    height: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.doors-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.doors-slider .slick-arrow svg {
    fill: #000;
}

.doors-slider .slick-arrow-left {
    left: -50px;
}

.doors-slider .slick-arrow-left svg {
    transform: rotate(180deg);
}

.doors-slider .slick-arrow-right {
    right: -50px;
}

.doors-slider .slick-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doors-slider .slick-slide .slick-slide-inner {
    display: flex;
    flex-direction: column;
}

.door_image_col .slick-slide .slick-slide-inner .slide-slick-image {
    order: 1;
    width: 60%;
}

/* .doors-slider .slick-slide img {
    height: calc(var(--dynamic-height) - 25rem);
    max-height: 510px;
    object-fit: contain;
    width: 100%;
    margin: 0 auto;
    transition: var(--transition);
} */

/* .doors-slider .slick-center {
    position: relative;
    z-index: 9;
} */

/* .doors-slider .slick-slide:not(.slick-center) img {
    filter: blur(3px);
    padding: 20px;
} */

.door_image_col .slick-slide .title {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    color: #000;
    letter-spacing: 2px;
    font-size: 14px;
    opacity: 0;
    transition: var(--transition);
    margin-top: 10px;
    padding-top: 5px;
    min-height: 20px;
    order: 2;
}

.door_image_col .slick-slide .title h4 {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
}

.door_image_col .slick-slide.slick-center .title {
    opacity: 1;
}

.door_image_col .slick-slide .slide-slick-content {
    order: 3;
    height: 55px;
}


.door_image_col .slick-slide .slide-slick-content {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  width: 60%;
  margin: 0 auto;
}

.door_image_col .slick-slide .slide-slick-content div {
  margin-right: 5px;
  width: 25%;
  height: 100%;
}

.door_image_col .slick-slide .slide-slick-content div:last-of-type {
  margin-right: 0 !important;
}

.door_image_col .slick-slide .slide-slick-content svg {
  width: 100%;
  height: 100%;
  background-color: #000;
  padding: 8px 25px;
}

.door_image_col .slick-slide .slide-slick-content .studio svg {
  background-color: #789db5;
}
.door_image_col .slick-slide .slide-slick-content .homepure svg {
  background-color: #728c65;
}
.door_image_col .slick-slide .slide-slick-content .homesoft svg {
  background-color: #718b65;
}
.door_image_col .slick-slide .slide-slick-content .ambiente svg {
  background-color: #7d5c62;
}


.door_image_col .slick-slide .slide-slick-content p {
    margin-bottom: 0;
    font-size: 13px;
    text-align: center;
    font-weight: 400;
    opacity: 0;
    transition: var(--transition);
}

.door_image_col .slick-slide.slick-center .slide-slick-content p {
    opacity: 1;
}

.arguments_section .module-fickle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgb(245, 245, 247);
  padding: 15px;
  margin-bottom: 20px;
  min-height: 220px;
  transition: var(--transition);
}
.arguments_section .module-fickle:hover {
    box-shadow: inset 0 0 15px -5px var(--base-color);
}

.arguments_section .module-fickle .fickle-image {
  order: 1;
  width: 60px;
  height: 60px;
  background-color: var(--base-color);
  padding: 10px;
  border-radius: 100%;
}
.arguments_section .module-fickle .fickle-image img {
  width: 100%;
  filter: invert(1);
}
.arguments_section .module-fickle .fickle-header {
  order: 2;
}
.arguments_section .module-fickle .fickle-header .fickle-title {
  font-size: 18px;
  font-weight: 400;
}
.arguments_section .module-fickle .fickle-content {
  order: 3;
}
.arguments_section .module-fickle .fickle-content p {
  margin-bottom: 0;
  font-size: 17px;
}


h2,
.sisteme_headings {
    font-size: calc(1.8vh + 1.8vw);
    font-family: Poppins;
    /* font-weight: 400; */
    margin-bottom: 20px;
}

.sisteme_headings strong {
    color: var(--base-color);
}


.glass_doors_row {
    position: relative;
    min-height: 70vh;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 15vh;
    padding: 3rem 10rem;
    background-attachment: fixed;
}

.glass_doors_row:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 10%, rgba(255,255,255,0) 100%);
}

.glass_doors_row h2 {
    color: #fff !important;
    font-weight: 400;
}

.glass_doors_row .specs .module-text {
    display: grid;
    grid-template-columns: 50px auto;
    grid-template-rows: auto auto;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #b6b8b9;
    padding-bottom: 20px;
}

.glass_doors_row .module-text {
    margin-bottom: 20px;
}

.glass_doors_row .module-text:last-child {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
}

.glass_doors_row .specs h3 {
    grid-column: 2/3;
    grid-row: 1/2;
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
    padding-left: 15px;
    font-weight: 400;
}

.glass_doors_row .module-text p {
    margin-bottom: 0;
    font-weight: 300;
}

.glass_doors_row .module-text p:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-bottom: 0;
}

.glass_doors_row .module-text p:last-child {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-top: 10px;
}

.glass_doors_row svg {
    width: 50px;
    height: auto;
    background-color: var(--base-color);
    fill: #fff;
    padding: 10px;
    border-radius: 100%;
}

.glass_doors_row .base-btn .btn {
    background: transparent;
    border-color: #fff;
}

.glass_doors_row .base-btn .btn:hover {
    background: #fff;
}

/* Reviews Section */

.reviews_section h2 {
    margin-bottom: 50px;
}

.reviews_section h5 {
    margin-bottom: 20px;
    font-size: calc(1.8vh + 1.8vw);
    font-family: Poppins;
    font-weight: 400;
}

.reviews_section h5 strong {
    color: var(--base-color);
}

.reviews_section h6 {
    color: var(--base-color);
    font-size: 20px;
    margin-bottom: 30px;
}

.review_item {
    display: grid;
    grid-template-rows: 35px 35px 1fr;
    grid-template-columns: 70px 1fr;
}

.review_item .fickle-image {
    grid-column: 1/2;
    grid-row: 1/3;
    margin-right: 0;
    border-radius: 100%;
    overflow: hidden;
}

.review_item .fickle-title {
    display: flex;
    align-self: flex-end;
    grid-column: 2/3;
    grid-row: 1/2;
    font-size: 13px;
    margin-bottom: 0;
}

.review_item > .fickle-title {
    margin-left: 10px;
}

.review_item .fickle-additional-html-code {
    display: flex;
    align-self: flex-start;
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 3px;
    margin-left: 10px;
}

.review_item .fickle-text-content {
    grid-column: 1/3;
    grid-row: 3/4;
    margin-top: 10px;
    padding-right: 10px;
    max-height: 150px;
    overflow: auto;
}

.review_item .fickle-text-content::-webkit-scrollbar {
    width: 2px;
    background: #dbdcdc;
}

.review_item .fickle-text-content::-webkit-scrollbar-thumb {
    background: #000;
}

.review_item .fickle-text-content p {
    font-size: 14px;
    margin-bottom: 0;
    text-align: justify;
}

.ratings__stars {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.ratings__stars li {
    display: flex;
}

.ratings__stars li i {
    font-size: 11px;
    margin-right: 2px;
}

/* Contact Section */
.contact_section {
    margin-bottom: 10vh;
    padding-top: 15vh;
}

.contact-desc p {
    max-width: 600px;
}

.contact_form .form-group {
    position: relative;
    margin-bottom: 35px;
}

.contact_form .container {
    max-width: 100%;
    padding: 0;
}

.contact_form .form-group label {
    font-size: 14px;
}

.contact_form .form-group:not(.item-acceptance) label {
    position: absolute;
    margin-bottom: 0;
    bottom: 7px;
    transition: var(--transition);
    left: 0;
    white-space: nowrap;
}

.contact_form .form-group:not(.item-acceptance).focus label {
    left: 100%;
    transform: translateX(-100%);
}

.contact_form .form-group:not(.item-acceptance) input,
.contact_form .form-group:not(.item-acceptance) textarea {
    border: none;
    border-bottom: 1px solid #b6b8b9;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    height: calc(1.5em + 0.75rem + 2px);
    background: transparent;
}

.contact_form .acceptance label input {
    margin-right: 10px;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + .checkbox-text:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--base-color);
    position: absolute;
    left: 0;
    top: 2px;
    transition: all 0.12s, border-color 0.08s;
}

input[type="checkbox"]:checked + .checkbox-text:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
}

input[type="checkbox"] + .checkbox-text {
    cursor: pointer;
    padding-left: 27px;
}

.contact_form button[type="submit"] {
    background: var(--base-color);
    border: none;
    border-radius: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact_form .text-danger {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 12px;
}

    /* Footer */

.display-none {
    display: none;
}

.bg-dark {
    position: relative;
    /* height: calc(var(--dynamic-height)); */
    /* background-color: var(--dark-color) !important; */
    background-color: #01194a !important;
}

/* .bg-dark:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: calc(var(--dynamic-height) - 10rem);
    width: calc(var(--dynamic-height) - 10rem);
    z-index: 9;
    border: 1px solid #b6b8b9;
    border-radius: 100%;
    opacity: .5;
    pointer-events: none;
} */

.bg-dark {
    display: grid;
    grid-template-rows: 2rem 1fr 5rem;
    grid-template-columns: 1fr 1fr;
    padding: 0 !important;
}

.bg-dark .container:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-row: 2/3;
    grid-column: 1/3;
    padding: 0;
    margin-bottom: 2rem;
}

.bg-dark .links_row {
    width: 100%;
    height: 100%;
    align-self: center;
}

.bg-dark .links_row a:first-child {
    margin-bottom: 10px;
}

.bg-dark .links_row p:last-child a {
    margin-bottom: 0;
}

.bg-dark .container:last-child {
    grid-row: 3/4;
    grid-column: 1/3;
}

.bg-dark .copyright_row {
    height: 100%;
    align-items: center;
    border-top: 1px solid #ffffff4a;
}

.bg-dark .copyright_row a {
    letter-spacing: 0;
}


.bg-dark p,
.bg-dark a {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
}

.bg-dark a {
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

.bg-dark a svg {
    fill: #fff;
    margin-right: 10px;
}

.info_col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.socials ul {
    display: flex;
}


.socials ul li:last-child {
    margin-right: 0;
}

.socials ul li a {
    font-size: 0;
}

.socials ul li a:before {
    font-size: 22px;
    font-family: FontAwesome;
    color: #fff;
}

.s-facebook a:before {
    content: "\f230";
}

.s-instagram a:before {
    content: "\f16d";
}

.s-youtube a:before {
    content: "\f16a";
}

.s-whatsapp a:before {
    content: "\f232";
}

.s-twitter a:before {
    content: "\f099";
}

.map_col {
    display: flex;
    justify-content: flex-end;
    padding: 0 15px;
}

.map_col .module-code {
    position: relative;
    width: 100%;
}

.map_col .module-code:hover:before {
    background: transparent;
}

.map_col .module-code p {
    height: 100%;
}

.map_col iframe {
    display: block;
    height: 100%;
}



/* Lightbox */
.lb-outerContainer {
    background-color: #f2e9da !important;
    border-radius: 0 !important;
}

#lightbox {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%);
}

.lightbox {
    z-index: 99999 !important;
}

.lightbox .lb-image {
    border: none !important;
}

.lb-prev,
.lb-next {
    background: none !important;
    display: flex !important;
    align-items: center;
    width: 50% !important;
}

.lb-prev {
    margin-left: -90px;
}

.lb-next {
    margin-right: -90px;
}

.lb-prev:before,
.lb-next:before {
    content: '';
    padding: 5px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(-45deg);
    margin-left: 15px;
}

.lb-next:before {
    transform: rotate(135deg);
     margin-left: auto;
     margin-right: 15px;
}

.lb-prev:after,
.lb-next:after {
    content: '';
    position: absolute;
    /* left: 13px; */
    left: calc(-90px + 13px);
    height: 1px;
    width: 25px;
    background: #fff;
}

.lb-next:after {
    left: auto;
    /* right: 13px; */
    right: calc(-90px + 13px);
}

.lb-data {
    padding: 0 !important;
}

.lb-number {
    font-size: 10px !important;
}

.lb-close {
    position: relative;
    background: none !important;
    opacity: 1 !important;
}

.lb-close:before,
.lb-close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
}

.lb-close:after {
    transform: rotate(45deg);
}


    /* =======
    components
    ========== */

    /* buttons */

.btn {
    border-radius: 0;
    transition: var(--transition);
    text-decoration: none;
}

.dark-btn a {
    background: #000;
    color: #fff;
    /* border-radius: 0; */
    margin-top: 20px;
    /* transition: var(--transition); */
    border: 1px solid #000;
}

.dark-btn a:hover {
    background: #fff;
    color: #000;
}

.base-btn a {
    background: var(--base-color);
    color: #fff;
    margin-top: 20px;
    border: 1px solid var(--base-color);
}

.base-btn a:hover {
    background: #fff;
    color: #000;
}





.section_door_categories {
    height: calc(var(--dynamic-height) - 15em);
    margin-top: 20vh;
    /*margin-bottom: 20vh !important;*/
    margin: auto !important;
}

.section_door_categories .col-lg-6,
.section_door_categories .col-lg-6 .module-image,
.section_door_categories .col-lg-6 .module-image img {
    height: 100%;
}

.section_door_categories .col-lg-6 .module-image img {
    width: auto;
    object-fit: contain;
    margin: auto;
    box-shadow: 2px 5px 20px -10px #000;
}

.section_door_categories h3 {
    font-size: 16px;
}

.category_col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.category_col .module-image {
    z-index: 1;
}

#left_category_col h3 {
    margin-right: 20px;
}

#right_category_col {
    flex-direction: row-reverse;
}

#right_category_col .module-text {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

#right_category_col h3 {
    margin-left: 20px;
}

.subhead_accent {
    font-size: 25px;
    font-weight: 400;
    color: #000;
}

.door_config {
    position: absolute;
    padding-left: 20px;
    width: 100%;
    bottom: 0;
    left: 0;
}

.door_config p {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px solid #00000017;
    margin-bottom: 5px;
    padding-bottom: 5px;
    width: 100%;
}

.door_config p:last-child {
    margin-bottom: 0;
}

.door_config p span {
    font-weight: 400;
}

.thank-you-row {
    margin-bottom: 10vh;
}

.thank-you-row h1 {
    font-weight: 400;
}

#designStyles {
    padding-bottom: 0;
    margin-top: 20vh;
}

#designStyles .full_categ_image {
    position: relative;
}

.bg_square {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* transform: rotate(45deg); */
    background-color: #f5f5f5;
    box-shadow: 0 0 20px -20px #000;
}

#designStyles .col-lg-6:first-child {
    z-index: 9;
}

#designStyles .full_categ_image a {
    position: relative;
    z-index: 9;
}

#designStyles .module-fickle {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #b6b8b94d;
}

#designStyles .module-fickle:last-child {
    border-bottom: none;
}

#designStyles .fickle-text-content p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 300;
}

#designStyles .module-fickle .fickle-additional-html-code {
    margin-right: 15px;
}

#designStyles .module-fickle .fickle-additional-html-code svg {
    width: 60px;
    padding: 5px;
}

#designStyles .module-image {
    align-items: center;
    background: #f5f5f5;
}

#studio svg {
    background: #789db5;
}

#homepure svg {
    background: #728c65;
}

#homesoft svg {
    background: #718b65;
}

#ambiente svg {
    background: #7d5c62;
}

.design_images .module-fickle {
  display: flex;
  flex-direction: column;
  border: 1px solid #00000014;
  padding: 15px;
  margin-bottom: 15px;
}

.design_images .module-fickle .fickle-header {
  order: 2;
}
.design_images .module-fickle .fickle-image {
  order: 1;
  border-bottom: 1px solid #00000014;
}
.design_images .module-fickle .fickle-content {
  order: 3;
}

.design_images .module-fickle .fickle-text-content p {
  font-size: 15px;
  margin-bottom: 0;
  display: none;
}

.design_images .fickle-title {
    font-size: 20px;
    margin-bottom: 0;
}

.design_images .studio .fickle-title {
  color: #789db5;
  font-weight: 200;
}

.design_images .homepure .fickle-title,
.design_images .homesoft .fickle-title {
  color: #728c65;
  font-weight: 300;
}

.design_images .ambiente .fickle-title {
  color: #7d5c62;
}
