/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
:root {
    --font-primary: "Montserrat", sans-serif;
}

form {
    display: contents;
    flex-flow: column;
    height: 100%;
    width: 100%;
}

/*--------------------------------------------------------------
  # Colors
--------------------------------------------------------------*/
:root {
    --color-default: #222222;
    --color-primary: #AC9886;
    --color-secondary: #DDC6A6;
    --color-tertiary: #ECE5D6;
}

/*--------------------------------------------------------------
  # Smooth scroll behaviour
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
  # General
--------------------------------------------------------------*/
body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: var(--font-primary);
    background-color: whitesmoke;
}

header,
footer {
    flex-shrink: 0;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary)
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--color-default);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    color: whitesmoke;
    background-color: var(--color-default);
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 15px 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo h1 a {
    color: whitesmoke;
    text-decoration: none;
}

#header .logo h1 a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

@media (max-width: 992px) {
    #header {
        height: 60px;
    }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
    padding: 0px 10px;
    color: whitesmoke;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li+li {
    margin-left: 30px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 3px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--color-primary);
}

.nav-btn {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid;
    padding: 10px;
    background-color: var(--color-tertiary);
    width: 100%;
    height: auto;
    transition: border-color 0.3s, color 0.3s;
    border-radius: 30px;
    margin: 0;
}

form {
    display: contents;
    flex-flow: column;
    height: 100%;
    width: 100%;
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
    color: whitesmoke;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(16, 31, 29, 0.9);
    transition: 0.3s;
    z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: var(--color-default);
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile>ul>li+li {
    margin: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: whitesmoke;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--color-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

/*--------------------------------------------------------------
  # Login
--------------------------------------------------------------*/
h1 {
    text-align: center;
    color: white;
    padding: 0;
    font-weight: 700;
    margin-bottom: 40px;
}

#login {
    background-image: linear-gradient(var(--color-default), var(--color-primary));
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.container-fluid {
    padding: 60px 0;
}

#login .btn {
    background-color: var(--color-primary);
    color: whitesmoke;
}

#login .btn:hover {
    color: whitesmoke;
    background-color: var(--color-default);
}

input::placeholder {
    font-size: 14px;
}

input {
    font-size: 14px;
    transition: font-size 0.3s ease;
}

input:focus {
    font-size: 14px;
}

p {
    font-size: 16px;
}

.text-red {
    color: red;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
    margin-left: 30px;
    margin-top: 30px;
    border: none;
}

.back-button:hover {
    color: whitesmoke;
    background-color: var(--color-default);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
    background-image: linear-gradient(to right, var(--color-default), var(--color-primary));
    padding: 80px 0;
    margin-top: 70px;
}

@media (max-width: 992px) {
    .hero {
        margin-top: 60px;
    }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.image-wrapper {
    width: 50%;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
}

.hero h3 {
    margin-top: 40px;
    color: whitesmoke;
}

/*--------------------------------------------------------------
# Page header
--------------------------------------------------------------*/
.page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 150px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 70px;
}

@media (max-width: 992px) {
    .page-header {
        margin-top: 60px;
    }
}

.page-header:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h2 {
    font-weight: 500;
    color: #fff;
    font-family: var(--font-primary);
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .text-center {
    background-color: rgba(95, 95, 95, 0.441);
    border-radius: 20px;
}

.model {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    overflow-x: hidden;
    width: 100%;
}

.model #model3d {
    height: 400px;
    width: 400px;
}

/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
.hero2 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 70px;
    width: 100%;
    padding: 30px 0px;
}

@media (max-width: 992px) {
    .hero2 {
        margin-top: 60px;
    }
}

.hero2 .text-wrapper2 {
    text-align: left;
}

.hero2 h1 {
    color: var(--color-primary);
    font-size: 30px;
}

/*--------------------------------------------------------------
# Percentage
--------------------------------------------------------------*/
.skills .progress {
    height: 100px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills {
    padding: 50px 0px;
}

.skills h1 {
    padding: 50px 0px;
    color: var(--color-default) !important;
}

.skills .progress .skill {
    padding: 0;
    margin: 0 0 6px 0;
    display: block;
    color: var(--color-default);
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: rgb(220, 220, 220);
    height: 20px;
}

.skills .progress-bar {
    width: 1px;
    height: 20px;
    transition: 0.9s;
    background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 60px;
}

.counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    height: max-content;
}

.counts .count-box i {
    position: absolute;
    width: 54px;
    height: 54px;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: var(--color-primary);
    color: whitesmoke;
    border-radius: 50px;
    border: 2px solid #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.counts .count-box .purecounter-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.counts .count-box .purecounter {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-default);
}

.counts .count-box .plus-sign {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-default);
    margin-left: 5px;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.carousel {
    height: 60vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .list .item .content {
    position: absolute;
    top: 10%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3em;
}

.carousel .list .item .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 100px;
}

.carousel .list .item .buttons .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
    border: none;
}

.carousel .list .item .buttons .button:hover {
    color: whitesmoke;
    background-color: var(--color-default);
}

.carousel .list .item .buttons .button:nth-child(2) {
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}

/* thumbail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;

}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.thumbnail .item .content .title {
    font-weight: 500;
}

/* arrows */
.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    color: #fff;
    font-weight: bold;
    transition: .5s;
}

.arrows button:hover {
    background-color: var(--color-default);
}

/* animation */
.carousel .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text in first item */
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .5s linear 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.carousel .list .item:nth-child(1) .content .title {
    animation-delay: 1.2s !important;
}

.carousel .list .item:nth-child(1) .content .des {
    animation-delay: 1.6s !important;
}

.carousel .list .item:nth-child(1) .content .buttons {
    animation-delay: 1.8s !important;
}

.carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);
    }
}

/* running time */
.carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: var(--color-primary);
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}

/* prev click */
.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 678px) {
    .carousel .list .item .content {
        padding-right: 0;
    }

    .carousel .list .item .content .title {
        font-size: 30px;
    }
}

/*--------------------------------------------------------------
# Documents
--------------------------------------------------------------*/
.documents {
    margin: 50px 0;
    padding: 0;
    overflow-x: hidden;
}

.documents h1 {
    color: var(--color-default)
}

.documents .row {
    overflow: hidden;
}

.documents .content-item {
    padding: 40px;
    border-left: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    margin: -1px;
}

.documents .content-item span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.documents .content-item h4 {
    font-size: medium;
    font-weight: 300;
    padding: 0;
    margin: 20px 0;
}

.documents .content-item p {
    color: var(--color-primary);
    font-size: 15px;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .documents .content-item {
        padding: 40px 0;
    }
}

@media (max-width: 578px) {
    .documents .content-item {
        padding-left: 30px;
    }
}

.documents .nav-link:hover {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background-image: linear-gradient(to right, var(--color-default), var(--color-primary));
    padding: 60px 0;
}

.cta p {
    color: whitesmoke;
}

.cta .cta-btn {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid var(--color-primary);
    color: whitesmoke;
}

.cta .cta-btn:hover {
    background: var(--color-default);
    border: 2px solid var(--color-default);
}

/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-boxes {
    margin: 50px 0;
    position: relative;
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.icon-boxes .icon-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-box-wrapper h3 {
    color: var(--color-primary);
    font-size: medium;
}

.icon-boxes .icon-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background: #fff;
    box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    margin-bottom: 20px;
}

.icon-boxes .icon-box:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .icon-boxes .col-lg-3 {
        align-items: center;
        justify-content: center;
    }
}

#model3d {
    width: 200px;
    height: 200px;
}

model-viewer {
    width: 100%;
    height: 100%;
    background-color: transparent;
    transform-origin: center;
}

model-viewer>#ar-prompt {
    position: absolute;
    left: 50%;
    bottom: 60px;
    animation: elongate 2s infinite ease-in-out alternate;
    display: none;
}

model-viewer[ar-status="session-started"]>#ar-prompt {
    display: block;
}

model-viewer>#ar-prompt>img {
    animation: circle 4s linear infinite;
}

.camera-controls {
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------------------
# Contact-section
--------------------------------------------------------------*/
.contact-section {
    padding: 2em 0;
}

.contact-section h1 {
    color: var(--color-default);
}

.contact-section .form-control {
    height: 50px;
    background: #ac988676;
    color: var(--color-default) !important;
    font-size: 14px;
    border-radius: 5px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    margin: 10px 0;
}

.contact-section textarea.form-control {
    height: inherit !important;
}

.contact-section .wrapper {
    width: 100%;
}

.contact-section .dbox {
    width: 100%;
    margin-bottom: 25px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .contact-section .dbox {
        margin-bottom: 0;
        padding: 0;
    }
}

.contact-section .dbox p {
    margin-bottom: 0;
}

.contact-section .dbox p span {
    font-weight: 500;
    color: var(--color-primary);
    display: block;
}

.contact-section .dbox p a {
    color: var(--color-default);
}

.contact-section .dbox .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    margin: 0 auto;
    margin-bottom: 20px;
}

.contact-section .dbox .icon span {
    font-size: 20px;
    color: var(--color-default);
}

.contact-section .dbox .text {
    width: 100%;
}

.contact-section .btn {
    padding: 12px 16px;
    cursor: pointer;
    border-width: 1px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    -webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    position: relative;
    margin-bottom: 20px;
    margin-top: 10px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-color: var(--color-primary);
    color: white;
}

@media (prefers-reduced-motion: reduce) {
    .contact-section .btn {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.contact-section .btn:hover,
.contact-section .btn:active,
.contact-section .btn:focus {
    outline: none !important;
    -webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
    -moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
    box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
    color: whitesmoke;
    background-color: var(--color-default);
}

.contact-section .contactForm .btn {
    width: 100%;
    display: block;
}

.contact-section #contactForm .error {
    color: #f65c78;
    font-size: 14px;
}

.contact-section #contactForm .form-control {
    font-size: 16px;
}

.contact-section #message {
    resize: vertical;
}

.contact-section #form-message-warning,
.contact-section #form-message-success {
    display: none;
}

.contact-section #form-message-warning {
    color: red;
}

.contact-section #form-message-success {
    font-size: 17px;
}

.contact-section .submitting {
    float: left;
    width: 100%;
    padding: 10px 0;
    display: none;
    font-size: 16px;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: whitesmoke;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background-color: var(--color-default);
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: whitesmoke;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 12px;
    margin-top: 10px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: whitesmoke;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: whitesmoke;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--color-primary);
}

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: whitesmoke;
}

#footer .copyright {
    text-align: center;
    color: var(--color-default);
}

#footer a {
    color: whitesmoke;
}

#footer .footer-top .footer-img {
    align-items: center;
    justify-content: center;
    display: flex;
}

.footer-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright {
        text-align: center;
        float: none;
    }
}

/*--------------------------------------------------------------
# Buttons Container Section
--------------------------------------------------------------*/
.buttons-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-image: linear-gradient(var(--color-default), var(--color-primary));
    overflow-x: hidden;
    padding: 30px;
    padding-top: 100px;
}

.buttons-container .col-md-3 {
    display: flex;
    justify-content: center;
}

.buttons-container .btn {
    flex: 1;
    width: 100%;
    min-width: 0;
    margin: 10px 0px;
    padding: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: whitesmoke;
    font-size: 20px;
    height: 70px;
    transition: border-color 0.3s, color 0.3s;
    border-radius: 30px;
}


.buttons-container .btn:hover {
    background-color: var(--color-default);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/*--------------------------------------------------------------
  # Stambeno
  --------------------------------------------------------------*/
.limiter {
    width: 100%;
    margin: 0 auto;
}

.tab-pane .container-table100 {
    min-height: 100%;
}

.tab-pane .table100-head th {
    text-align: center;
    background-color: var(--color-primary);
}

.tab-pane tbody tr:hover {
    background-color: var(--color-default);
    color: whitesmoke;
    cursor: pointer;
}

.tab-pane table td,
.tab-pane table th {
    text-align: center;
}

.container-table100 {
    width: 100%;
    min-height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 33px 30px;
}

.wrap-table100 {
    width: 1170px;
}

table {
    border-spacing: 1;
    border-collapse: collapse;
    background: rgb(233, 233, 233);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative
}

table * {
    position: relative
}

table thead tr {
    height: 60px;
    background: var(--color-primary);
}

table tbody tr {
    height: 50px
}

table tbody tr:last-child {
    border: 0
}

table td,
table th,
table td.l,
table th.l,
table td.c,
table th.c,
table td.r,
table th.r {
    text-align: center;
}

.table100-head th {
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    font-weight: unset
}

tbody tr:nth-child(even) {
    background-color: #f5f5f5
}

tbody tr {
    font-size: 15px;
    color: gray;
    line-height: 1.2;
    font-weight: unset
}

tbody tr:hover {
    color: var(--color-primary);
    background-color: rgba(60, 60, 60, 0.896);
    cursor: pointer
}

.column1 {
    width: 245px;
}

.column2 {
    width: 160px
}

.column3 {
    width: 160px
}

.column1,
.column2,
.column3 {
    text-align: center;
}

@media screen and (max-width:992px) {
    table {
        display: block;
        width: 90vw;
    }

    table>*,
    table tr,
    table td,
    table th {
        display: block;
    }

    table thead {
        display: none
    }

    table tbody tr {
        height: auto;
        padding: 37px 0;
    }

    table tbody tr td {
        padding-left: 50% !important;
        margin-bottom: 24px;
        position: relative;
    }

    table tbody tr td:last-child {
        margin-bottom: 0;
    }

    table tbody tr td:before {
        color: var(--color-primary);
    }

    table tbody tr td:before {
        font-size: 14px;
        color: var(--color-primary);
        line-height: 1.2;
        font-weight: unset;
        position: absolute;
        width: 40%;
        left: 20px;
        top: 0;
    }

    table tbody tr td:nth-child(1):before {
        content: "VLASNIK";
    }

    table tbody tr td:nth-child(2):before {
        content: "KVADRATURA"
    }

    table tbody tr td:nth-child(3):before {
        content: "PRIČUVA"
    }

    .column1,
    .column2,
    .column3 {
        text-align: left;
        width: 100%;
    }

    tbody tr {
        font-size: 14px
    }
}

@media(max-width:576px) {
    .container-table100 {
        padding-left: 15px;
        padding-right: 15px;
    }
}