:root {
    --fnt-s-big: 35px;
    --fnt-s-meduim: 30px;
    --fnt-s-smaller: 25px;
    --fnt-s-small: 20px;
    --fnt-s-lighter: 17px;
    --fnt-s-desc: 14px;
    --fnt-s-sm-desc: 13px;
    --fnt-s-light: 13px;
    --fnt-s-input-hint: 16px;
    --fnt-s-page-header: 19px;
    --desc-line-height: 24px;
    --clr-main: #cda274;
    --clr-sec: #2f2e2e;
    --clr-sm-mn-item: #d1d0cf;
    --min-main-navbar-width: 1020px;
    --project-thumbs-height: 160px;
    --project-slider-height: 530px
}

* {
    margin: 0
}

i {
    font-style: normal
}

a.disabled {
    pointer-events: none;
    cursor: default
}

body {
    background-color: #ececeb;
    font-weight: 400;
    overflow-x: hidden
}

body::-webkit-scrollbar-track {
    background: #909dac
}

body::-webkit-scrollbar-thumb {
    background: #293547
}

body::-webkit-scrollbar {
    width: 5px
}

@font-face {
    font-family: F-L;
    font-style: normal;
    font-display: swap;
    src: url(fonts/quicksand/Quicksand-Light.ttf)
}

@font-face {
    font-family: F-B;
    font-style: normal;
    font-display: swap;
    src: url(fonts/quicksand/Quicksand-Bold.ttf)
}

@font-face {
    font-family: F-M;
    font-style: normal;
    font-display: swap;
    src: url(fonts/quicksand/Quicksand-Medium.ttf)
}

@font-face {
    font-family: F-R;
    font-style: normal;
    font-display: swap;
    src: url(fonts/quicksand/Quicksand-Regular.ttf)
}

.fnt-light {
    font-family: F-L
}

.fnt-bold {
    font-family: F-B
}

.fnt-meduim {
    font-family: F-M
}

.fnt-regular {
    font-family: F-R
}

.fnt-s-10px {
    font-size: 10px
}

.fnt-s-13px {
    font-size: 13px
}

.fnt-s-15px {
    font-size: 15px
}

.fnt-s-18px {
    font-size: 18px
}

.fnt-s-20px {
    font-size: 20px
}

.fnt-s-25px {
    font-size: 25px
}

.fnt-s-30px {
    font-size: 30px
}

.fnt-s-35px {
    font-size: 35px
}

.fnt-s-40px {
    font-size: 40px
}

.fnt-s-big {
    font-size: var(--fnt-s-big)
}

.fnt-s-meduim {
    font-size: var(--fnt-s-meduim)
}

.fnt-s-smaller {
    font-size: var(--fnt-s-smaller)
}

.fnt-s-small {
    font-size: var(--fnt-s-small)
}

.fnt-s-lighter {
    font-size: var(--fnt-s-lighter)
}

.fnt-s-desc {
    font-size: var(--fnt-s-desc)
}

.fnt-s-light {
    font-size: var(--fnt-s-light)
}

.fnt-w-1 {
    font-weight: 100 !important
}

.fnt-w-2 {
    font-weight: 200 !important
}

.fnt-w-3 {
    font-weight: 300 !important
}

.fnt-w-4 {
    font-weight: 400 !important
}

.fnt-w-5 {
    font-weight: 500 !important
}

.fnt-w-6 {
    font-weight: 600 !important
}

.fnt-w-7 {
    font-weight: 700 !important
}

.hidden {
    display: none !important
}

.inline-flex {
    display: inline-flex
}

.inline-block {
    display: inline-block
}

.pos-relative {
    position: relative
}

.pos-absolute {
    position: absolute
}

.pos-fixed {
    position: fixed
}

.pos-full-absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.pos-center-x {
    left: 50%;
    transform: translateX(-50%)
}

.pos-center-y {
    top: 50%;
    transform: translateY(-50%)
}

.pos-center-xy {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%)
}

.nowrap {
    white-space: nowrap
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flep-x {
    transform: scaleX(-1)
}

.flep-y {
    transform: scaleY(-1)
}

.flex-row {
    display: flex;
    flex-flow: row
}

.flex-col {
    display: flex;
    flex-flow: column
}

.flex-col-sm {
    display: flex;
    flex-flow: column
}

.flex-row-sm {
    display: flex;
    flex-flow: row
}

.flex-row-sm-rev {
    display: flex;
    flex-flow: row
}

.flex-1 {
    flex: 1
}

.flex-2 {
    flex: 2
}

.flex-3 {
    flex: 3
}

.flex-4 {
    flex: 4
}

.flex-5 {
    flex: 5
}

.flex-6 {
    flex: 6
}

.flex-7 {
    flex: 7
}

.flex-1-2 {
    flex: 1
}

.center-v {
    align-items: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center !important
}

.vertical-middle {
    vertical-align: middle
}

.vertical-top {
    vertical-align: top
}

.vertical-bottom {
    vertical-align: bottom
}

.justify-center {
    justify-content: center
}

.justify-start {
    justify-content: start
}

.justify-end {
    justify-content: end
}

.justify-space-between {
    justify-content: space-between
}

.justify-space-evenly {
    justify-content: space-evenly
}

.align-start {
    align-items: start
}

.align-center {
    align-items: center
}

.align-end {
    align-items: end
}

.mar-l-auto {
    margin-left: auto
}

.mar-r-auto {
    margin-right: auto
}

.mar-lr-auto {
    margin-left: auto;
    margin-right: auto
}

.mar-l-05em {
    margin-left: .5em
}

.mar-r-05em {
    margin-right: .5em
}

.mar-lr-05em {
    margin-left: .5em;
    margin-right: .5em
}

.mar-t-05em {
    margin-top: .5em
}

.mar-b-05em {
    margin-bottom: .5em
}

.mar-tb-05em {
    margin-top: .5em;
    margin-bottom: .5em
}

.mar-l-07em {
    margin-left: .7em
}

.mar-r-07em {
    margin-right: .7em
}

.mar-lr-07em {
    margin-left: .7em;
    margin-right: .7em
}

.mar-t-07em {
    margin-top: .7em
}

.mar-b-07em {
    margin-bottom: .7em
}

.mar-tb-07em {
    margin-top: .9em;
    margin-bottom: .9em
}

.mar-lr-1em {
    margin-left: 1em;
    margin-right: 1em
}

.mar-l-1em {
    margin-left: 1em
}

.mar-r-1em {
    margin-right: 1em
}

.mar-t-1em {
    margin-top: 1em
}

.mar-b-1em {
    margin-bottom: 1em
}

.mar-tb-1em {
    margin-top: 1em;
    margin-bottom: 1em
}

.mar-lr-1p5em {
    margin-left: 1.5em;
    margin-right: 1.5em
}

.mar-l-1p5em {
    margin-left: 1.5em
}

.mar-r-1p5em {
    margin-right: 1.5em
}

.mar-t-1p5em {
    margin-top: 1.5em
}

.mar-b-1p5em {
    margin-bottom: 1.5em
}

.mar-lr-2em {
    margin-left: 2em;
    margin-right: 2em
}

.mar-l-2em {
    margin-left: 2em
}

.mar-r-2em {
    margin-right: 2em
}

.mar-t-2em {
    margin-top: 2em
}

.mar-b-2em {
    margin-bottom: 2em
}

.mar-tb-2em {
    margin-top: 2em;
    margin-bottom: 2em
}

.mar-lr-3em {
    margin-left: 3em;
    margin-right: 3em
}

.mar-l-3em {
    margin-left: 3em
}

.mar-r-3em {
    margin-right: 3em
}

.mar-t-3em {
    margin-top: 3em
}

.mar-b-3em {
    margin-bottom: 3em
}

.mar-lr-4em {
    margin-left: 4em;
    margin-right: 4em
}

.mar-l-4em {
    margin-left: 4em
}

.mar-r-4em {
    margin-right: 4em
}

.mar-t-4em {
    margin-top: 4em
}

.mar-b-4em {
    margin-bottom: 4em
}

.mar-lr-5em {
    margin-left: 5em;
    margin-right: 5em
}

.mar-l-5em {
    margin-left: 5em
}

.mar-r-5em {
    margin-right: 5em
}

.mar-t-5em {
    margin-top: 5em
}

.mar-b-5em {
    margin-bottom: 5em
}

.mar-b-1px {
    margin-bottom: 1px
}

.mar-l-5px {
    margin-left: 5px
}

.mar-r-5px {
    margin-right: 5px
}

.mar-lr-5px {
    margin-left: 5px;
    margin-right: 5px
}

.mar-t-5px {
    margin-top: 5px
}

.mar-b-5px {
    margin-bottom: 10px
}

.mar-l-10px {
    margin-left: 10px
}

.mar-r-10px {
    margin-right: 10px
}

.mar-t-10px {
    margin-top: 10px
}

.mar-b-10px {
    margin-bottom: 10px
}

.mar-lr-25px {
    margin: 0 25px
}

.mar-b-min6em {
    margin-bottom: -6em
}

.pad-0 {
    padding: 0 !important
}

.pad-t-0 {
    padding-top: 0 !important
}

.pad-b-0 {
    padding-bottom: 0 !important
}

.pad-l-0 {
    padding-left: 0 !important
}

.pad-r-0 {
    padding-right: 0 !important
}

.pad-05em {
    padding: .5em
}

.pad-l-05em {
    padding-left: .5em
}

.pad-r-05em {
    padding-right: .5em
}

.pad-08em {
    padding: .8em
}

.pad-l-08em {
    padding-left: .8em
}

.pad-r-08em {
    padding-right: .8em
}

.pad-1em {
    padding: 1em
}

.pad-l-1em {
    padding-left: 1em
}

.pad-r-1em {
    padding-right: 1em
}

.pad-t-1em {
    padding-top: 1em
}

.pad-b-1em {
    padding-bottom: 1em
}

.pad-tb-1em {
    padding-top: 1em;
    padding-bottom: 1em
}

.pad-lr-1em {
    padding-left: 1em;
    padding-right: 1em
}

.pad-1p5em {
    padding: 1.5em
}

.pad-l-1p5em {
    padding-left: 1.5em
}

.pad-r-1p5em {
    padding-right: 1.5em
}

.pad-b-1p5em {
    padding-bottom: 1.5em
}

.pad-tb-1p5em {
    padding-top: 1.5em;
    padding-bottom: 1.5em
}

.pad-lr-1p5em {
    padding-left: 1.5em;
    padding-right: 1.5em
}

.pad-2em {
    padding: 2em
}

.pad-l-2em {
    padding-left: 2em
}

.pad-r-2em {
    padding-right: 2em
}

.pad-t-2em {
    padding-top: 2em
}

.pad-b-2em {
    padding-bottom: 2em
}

.pad-tb-2em {
    padding-top: 2em;
    padding-bottom: 2em
}

.pad-lr-2em {
    padding-left: 2em;
    padding-right: 2em
}

.pad-3em {
    padding: 3em
}

.pad-l-3em {
    padding-left: 3em
}

.pad-r-3em {
    padding-right: 3em
}

.pad-t-3em {
    padding-top: 3em
}

.pad-b-3em {
    padding-bottom: 3em
}

.pad-tb-3em {
    padding-top: 3em;
    padding-bottom: 3em
}

.pad-lr-3em {
    padding-left: 3em;
    padding-right: 3em
}

.pad-4em {
    padding: 4em
}

.pad-l-4em {
    padding-left: 4em
}

.pad-r-4em {
    padding-right: 4em
}

.pad-t-4em {
    padding-top: 4em
}

.pad-b-4em {
    padding-bottom: 4em
}

.pad-tb-4em {
    padding-top: 4em;
    padding-bottom: 4em
}

.pad-lr-4em {
    padding-left: 4em;
    padding-right: 4em
}

.pad-5em {
    padding: 5em
}

.pad-l-5em {
    padding-left: 5em
}

.pad-r-5em {
    padding-right: 5em
}

.pad-t-5em {
    padding-top: 5em
}

.pad-b-5em {
    padding-bottom: 5em
}

.pad-tb-5em {
    padding-top: 5em;
    padding-bottom: 5em
}

.pad-lr-5em {
    padding-left: 5em;
    padding-right: 5em
}

.pad-6em {
    padding: 6em
}

.pad-l-6em {
    padding-left: 6em
}

.pad-r-6em {
    padding-right: 6em
}

.pad-tb-6em {
    padding-top: 6em;
    padding-bottom: 6em
}

.pad-lr-6em {
    padding-left: 6em;
    padding-right: 6em
}

.pad-10em {
    padding: 10em
}

.pad-l-10em {
    padding-left: 10em
}

.pad-r-10em {
    padding-right: 10em
}

.pad-t-10em {
    padding-top: 10em
}

.pad-tb-10em {
    padding-top: 10em;
    padding-bottom: 10em
}

.pad-lr-10em {
    padding-left: 10em;
    padding-right: 10em
}

.pad-l-15px {
    padding-left: 15px !important
}

.pad-r-15px {
    padding-right: 15px !important
}

.pad-b-15px {
    padding-bottom: 15px !important
}

.pad-t-15px {
    padding-top: 15px !important
}

.pad-l-30px {
    padding-left: 30px !important
}

.pad-r-30px {
    padding-right: 30px !important
}

.pad-l-100px {
    padding-left: 100px !important
}

.pad-r-100px {
    padding-right: 100px !important
}

.pad-l-125px {
    padding-left: 125px !important
}

.pad-r-125px {
    padding-right: 125px !important
}

.right-0 {
    right: 0
}

.right-1em {
    right: 1em
}

.left-0 {
    left: 0
}

.left-1em {
    left: 1em
}

.flt-right {
    float: right
}

.z-index-m2 {
    z-index: -2
}

.z-index-m1 {
    z-index: -1
}

.z-index-0 {
    z-index: 0
}

.z-index-1 {
    z-index: 1
}

.z-index-2 {
    z-index: 2
}

.z-index-3 {
    z-index: 3
}

.z-index-4 {
    z-index: 4
}

.z-index-5 {
    z-index: 5
}

.z-index-6 {
    z-index: 6
}

.z-index-7 {
    z-index: 7
}

.rotateZ-35deg {
    transform: rotateZ(-35deg)
}

.pointer {
    cursor: pointer
}

.full-width {
    width: 100%
}

.full-height {
    height: 100%
}

.full-wh {
    width: 100%;
    height: 100%
}

.wid-2em {
    width: 2em
}

.wid-50-percent {
    width: 50%
}

.wid-80-percent {
    width: 80%
}

.wid-10em {
    width: 10em
}

.max-wid-65perc {
    max-width: 65%
}

.max-wid-75perc {
    max-width: 75%
}

.height-1em {
    height: 1em
}

.height-2em {
    height: 2em
}

.height-3em {
    height: 3em
}

.height-4em {
    height: 4em
}

.height-5em {
    height: 5em
}

.height-6em {
    height: 6em
}

.height-7em {
    height: 7em
}

.height-8em {
    height: 8em
}

.height-100px {
    height: 100px
}

.opacity02 {
    opacity: .2
}

.box-shadow-light {
    box-shadow: 0 0 1px 0
}

.shadow-1px {
    box-shadow: 0 0 1px
}

.border-0 {
    border: 0
}

.nooutline:focus {
    outline: 0
}

.bord-1px-main {
    border: 1px solid #cda274
}

.bord-2px-main {
    border: 2px solid #cda274
}

.bord-t-1px-black {
    border-top: 1px solid #000
}

.b-radius-1px {
    border-radius: 1px
}

.b-radius-2px {
    border-radius: 2px
}

.b-radius-3px {
    border-radius: 3px
}

.b-radius-4px {
    border-radius: 4px
}

.b-radius-5px {
    border-radius: 5px
}

.b-radius-6px {
    border-radius: 6px
}

.b-radius-7px {
    border-radius: 7px
}

.b-radius-8px {
    border-radius: 8px
}

.b-radius-9px {
    border-radius: 9px
}

.b-radius-10px {
    border-radius: 10px
}

.ovflow-hidden {
    overflow: hidden
}

.ovflow-x-hidden {
    overflow-x: hidden
}

.ovflow-y-hidden {
    overflow-y: hidden
}

.ovflow-scroll {
    overflow-y: scroll
}

.ovflow-x-scroll {
    overflow-x: scroll
}

.ovflow-y-scroll {
    overflow-y: scroll
}

.ovflow-auto {
    overflow: auto
}

.ovflow-x-auto {
    overflow-x: auto
}

.ovflow-y-auto {
    overflow-y: auto
}

.sm-nav {
    width: 100%;
    height: calc(100% - 90px);
    background: #160f09fa;
    z-index: 5;
    position: fixed
}

.sm-nav .icon-container a {
    font-size: var(--fnt-s-big);
    color: var(--clr-main)
}

.sm-nav-projects-container {
    width: 100%;
    height: calc(100%);
    z-index: 1;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgb(47 46 46 / 87%);
    display: flex;
    justify-content: center;
    align-items: center
}

.sm-nav-projects {
    display: inline-block;
    padding: 1em 2em;
    background: #393635;
    box-shadow: 0 0 4px -1px #000;
    color: #c29364;
    min-width: 75%
}

.sm-nav-projects a {
    text-decoration: none;
    font-family: F-B;
    font-size: var(--fnt-s-meduim);
    color: var(--clr-main)
}

.sm-nav .color-sm-mn-item a {
    font-family: F-B;
    font-size: var(--fnt-s-meduim);
    text-decoration: none;
    color: var(--clr-sm-mn-item)
}

.sm-nav-item.active {
    background: #cda274;
    color: #fff !important
}

.sm-nav-item.active a {
    color: #2e2e2e
}

.sm-nav .color-sm-mn-item.active a {
    color: var(--clr-main)
}

.sm-nav .button {
    text-decoration: none;
    cursor: pointer;
    background: #c49b72;
    color: #f4fcf5;
    border: none;
    padding: 10px;
    box-shadow: 0 0 7px -3px #000;
    transition: .5s;
    font-size: var(--fnt-s-lighter);
    font-weight: 500;
    letter-spacing: 1px;
    font-family: F-B
}

.navbar {
    width: 100%;
    font-size: var(--fnt-s-light);
    color: #fff;
    z-index: 5;
    transition: .5s;
    font-weight: 300;
    position: fixed;
    top: 0
}

.navbar .icon-container {
    font-size: var(--fnt-s-small);
    padding: 0 10px;
    transition: .5s;
    color: #cda274
}

.nav-top-side {
    position: relative;
    background: #2e2e2e
}

.nav-top-side a {
    color: #fff;
    text-decoration: none;
    font-family: F-R
}

.navbar .logo-text-container {
    display: none;
    transition: .5s
}

.navbar.small {
    transform: translateY(-100px);
    transition: .5s
}

.navbar .number-text-container:hover {
    color: #283548
}

.navbar .logo-container {
    padding-top: 5px;
    padding-bottom: 5px;
    transition: .5s
}

.navbar .menu-container {
    font-size: var(--fnt-s-big);
    align-items: center;
    justify-content: center;
    display: flex;
    margin-right: 1em;
    color: var(--clr-main);
    padding-bottom: 5px
}

.navbar .line {
    position: absolute;
    height: 3px;
    background: linear-gradient(45deg, #c19c79, transparent);
    top: 47%
}

.navbar .contact-item {
    font-weight: 400;
    font-size: var(--fnt-s-light);
    color: #c1c1c1;
    letter-spacing: 1.6px
}

.nav-items {
    background: #e4e4e4;
    color: #2f2e2e
}

.nav-item {
    font-size: var(--fnt-s-lighter);
    font-weight: 500;
    padding: .9em 1.2em;
    cursor: pointer;
    transition: .5s;
    font-family: F-B
}

.nav-item:hover {
    color: #cda274;
    transition: .5s
}

.nav-items a {
    cursor: pointer;
    text-decoration: none;
    color: #2f2e2e;
    font-family: F-B
}

.nav-items a:hover {
    color: #cda274;
    transition: .5s
}

.nav-item.selected {
    color: #cda274;
    font-family: F-B
}

.nav-btn-item {
    font-size: var(--fnt-s-lighter);
    font-weight: 500;
    margin-right: 25px;
    display: flex;
    flex-flow: column;
    justify-content: center
}

.nav-btn-item a {
    cursor: pointer;
    background: #c49b72;
    color: #f4fcf5;
    border: none;
    padding: 10px;
    box-shadow: 0 0 7px -3px #000;
    transition: .5s;
    font-size: var(--fnt-s-lighter);
    font-weight: 500;
    letter-spacing: 1px;
    font-family: F-B
}

.nav-btn-item a:hover {
    background-color: rgb(241 189 137);
    color: #2f2e2e;
    transition: .5s
}

.nav-down-arrow {
    display: flex
}

.nav-btn-item svg {
    fill: #2f2e2e
}

.nav-btn-item:hover svg {
    fill: #cda274
}

.nav-sub-list {
    position: absolute;
    top: 100%;
    background: #e4e4e4;
    left: 0;
    min-width: 100%;
    box-shadow: 0 7px 11px -5px #000;
    color: #000;
    cursor: default;
    height: 0;
    padding-bottom: 0;
    overflow: hidden;
    transition: .5s;
    opacity: 0
}

#nvitm-projects:hover #nsl-projects {
    padding-bottom: .5em;
    height: fit-content;
    transition: .5s;
    opacity: 1
}

.nav-sub-list a {
    text-decoration: none;
    color: #000
}

.nav-sub-list a:visited {
    color: #000
}

.nav-sub-list a.selected {
    color: #cda274
}

.nav-sublist-item {
    padding: .5em 1.3em;
    white-space: nowrap;
    transition: .5s;
    font-family: F-B
}

.nav-sublist-item:hover {
    color: #cda274;
    transition: .5s
}

.bg-white-boxes {
    background-image: url(src/bgs/white.jpg)
}

.darker4 {
    background: rgba(0, 0, 0, .4)
}

.darker9 {
    background: rgb(42 32 22 / 89%)
}

.bg-sidebar {
    background-color: rgba(41, 53, 71, 1)
}

.bg-main-color {
    background: #cda274
}

.bg-sec-color {
    background: #2f2e2e
}

.bg-cover {
    background-size: cover !important
}

.green-under-line {
    width: 100px !important;
    border-bottom: 4px solid #cda274 !important;
    margin-top: 10px;
    margin-bottom: 20px
}

.title-line div {
    width: 120px;
    height: 3px;
    background: #cda274cc;
    border-radius: 4px
}

.production-card {
    width: 320px;
    text-align: center;
    margin: 0 2px;
    position: relative
}

.production-card[order="0"] {
    width: 420px
}

.production-card.big {
    width: 300px !important
}

.production-card img {
    width: 100%;
    transition: .5s
}

.production-card:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: .5s
}

.production-card .title {
    font-size: var(--fnt-s-big);
    font-weight: 500;
    color: #cda274;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    padding: 1em 0;
    opacity: 0
}

.swiper-production-slide .title {
    font-family: F-R;
    font-size: var(--fnt-s-small);
    font-weight: 500;
    color: #cda274;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    padding: 1em 0;
    opacity: 0
}

.swiper-production-slide:hover .title {
    opacity: 1;
    transition: .5s
}

.production-item {
    width: 18em;
    height: 20em;
    overflow: hidden;
    display: inline-block;
    position: relative;
    margin: 1em
}

.production-item .title {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: var(--fnt-s-small);
    font-weight: 500;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    font-family: F-M
}

.production-item:hover .title {
    opacity: 1;
    transition: .5s
}

.slidebtn {
    top: 58%;
    position: absolute;
    font-size: var(--fnt-s-big);
    transform: translateY(-50%);
    color: #fff;
    background: rgb(0 0 0 / 50%);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .5s;
    cursor: pointer
}

.slidebtn:hover {
    background: #ffffffb3;
    color: #585858;
    box-shadow: 0 0 5px 0 #000;
    transition: .5s
}

.service-card {
    display: inline-block;
    width: 17em;
    height: 20em;
    overflow: hidden;
    position: relative;
    margin-left: .3em;
    margin-right: .3em
}

.service-card .info-container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0 0 0 / 62%);
    color: #fff;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: .5s
}

.service-card:hover .info-container {
    opacity: 1;
    transition: .5s
}

.service-card .info {
    width: 100%;
    overflow: hidden;
    padding: 0 1em;
    text-align: center
}

.service-card .title {
    font-size: var(--fnt-s-small);
    text-align: center;
    font-weight: 500;
    color: rgb(227 227 227);
    font-family: F-R
}

.service-card .info .desc {
    height: 4em;
    overflow: hidden;
    color: #e3e3e3;
    font-size: var(--fnt-s-desc);
    margin-top: 1em;
    line-height: 20px;
    text-align: justify
}

.service-card .info .link {
    padding-top: 2em;
    padding-bottom: 1em
}

.service-card .info .link a {
    font-family: F-R;
    text-decoration: none;
    color: #ffc586;
    font-weight: 400;
    font-family: F-R;
    padding: 7px;
    border: 1px solid #ffc586;
    transition: .5s;
    font-size: var(--fnt-s-desc)
}

.service-card .info .link a:hover {
    background: #ffbf79de;
    color: #000;
    box-shadow: 0 0 6px #ffc586;
    transition: .5s
}

.service-list-item-container {
    margin-bottom: .5em;
    display: flex;
    width: 100%;
    text-align: center
}

.service-list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: F-M;
    font-size: var(--fnt-s-desc);
    font-weight: 500;
    color: #fff;
    padding: 1.4em;
    background: #222;
    cursor: pointer;
    text-decoration: none;
    transition: .3s;
    flex: 1
}

.service-list-item:hover {
    background: #e8ac6c;
    color: #222;
    transition: .3s
}

.service-list-item.selected {
    background: #cda274;
    color: #222
}

.services-scroller {
    overflow-x: auto;
    padding-bottom: .2em
}

.services-scroller::-webkit-scrollbar-track {
    background: #2f2e2e
}

.services-scroller::-webkit-scrollbar-thumb {
    background: #b9a274
}

.services-scroller::-webkit-scrollbar {
    height: 8px
}

.team-image-container {
    padding: 1em;
    border-top: 2px solid var(--clr-main);
    border-left: 2px solid var(--clr-main)
}

.footer .right-line {
    border-right: 2px solid #adadad
}

.footer .header {
    color: #cda274;
    font-size: var(--fnt-s-smaller);
    font-weight: 600
}

.footer a {
    text-decoration: none;
    color: var(--clr-sec);
    transition: .5s
}

.footer a:hover {
    color: #cda274 !important;
    transition: .5s
}

.footer a:visited {
    color: #000
}

.mail {
    box-shadow: 0 0 2px 1px #cda274;
    margin: 1em;
    border-radius: 5px;
    margin-right: 6.5em;
    margin-left: 7em;
    padding-bottom: 1em
}

.mail .input-container {
    border-bottom: 0px solid #a6a6a6;
    /*display: flex;
    flex-flow: row*/
}

.mail input {
    background: 0 0;
    font-family: F-R;
    font-weight: 500;
    color: #fff;
    font-size: var(--fnt-s-desc);
    flex: 1;
    width: 100%;
    padding: 5px 0px;
    border: 0px none;
    border-bottom: 1px solid #a6a6a6;
}

.mail input:focus {
    outline: 0
}

.mail textarea {
    height: 80px;
    background-color: #474747;
    border: 0 !important;
    color: #fff;
    font-family: F-R;
    width: 95%;
    resize: none;
    padding: 1em
}

.mail textarea:focus {
    outline: 0
}

.mail button {
    color: #fff;
    border: 1px solid #cda274;
    border-radius: 0 !important;
    font-family: F-M;
    font-weight: 500;
    padding: 12px 16px;
    font-size: var(--fnt-s-light);
    background: 0 0;
    cursor: pointer;
    transition: .5s
}

.mail button:focus {
    outline: 0
}

.mail button:hover {
    background: #cda274d5;
    border-color: #cda274 !important;
    box-shadow: 0 0 5px 0 #cda274;
    color: #fff;
    transition: .5s
}

.social_item {
    display: flex;
    color: #ffdcb8;
    font-size: var(--fnt-s-meduim);
    border-radius: 5px;
    padding: 3px;
    justify-content: center;
    width: 27px;
    height: 27px;
    margin-right: 35px;
    cursor: pointer;
    transition: .5s
}

.social_item a {
    color: #ffdcb8;
    text-decoration: none;
    transition: .5s
}

.social_item a:hover {
    color: #cda274;
    transition: .5s
}

.light-desc {
    font-family: F-R;
    line-height: 15px;
    letter-spacing: 0;
    font-size: var(--fnt-s-light);
    white-space: pre-line;
    text-align: center;
    color: #c7c7c7;
    height: 60px;
    overflow: hidden;
    margin-top: 1em
}

.sm-desc {
    font-family: F-R;
    font-weight: 400;
    line-height: var(--desc-line-height);
    letter-spacing: 0;
    font-size: var(--fnt-s-sm-desc);
    white-space: pre-line;
    text-align: justify
}

.desc {
    font-family: F-M;
    font-size: var(--fnt-s-desc);
    white-space: break-spaces;
    line-height: var(--desc-line-height);
    letter-spacing: 0;
    color: #000;
    text-align: justify
}

.header-big {
    font-family: F-B;
    font-size: var(--fnt-s-big)
}

.header-med {
    font-family: F-B;
    font-size: var(--fnt-s-meduim)
}

.color-main {
    color: var(--clr-main)
}

.color-sec {
    color: var(--clr-sec)
}

.color-white {
    color: #fff
}

.color-team {
    color: #383838
}

.color-placehoder {
    color: #a6a6a6
}

.color-sm-mn-item {
    color: var(--clr-sm-mn-item)
}

.color-sm-mn-item.active {
    color: var(--clr-main)
}

.project-card {
    height: 223px;
    margin-right: 10px;
    width: 225px
}

.project-path {
    bottom: 0;
    left: 5em;
    padding: 1.1em 2em;
    background: #222;
    font-family: F-M;
    font-size: var(--fnt-s-page-header);
    white-space: nowrap !important
}

.page-path-home {
    display: inline-block;
    color: #fff
}

.swiper {
    width: 100%;
    height: 100%
}

.swiper-wrapper {
    align-items: center
}

.swiper-slide {
    text-align: center;
    font-size: var(--fnt-s-lighter);
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto
}

.swiper-slide img {
    display: block; /*width:100%;*/
    width: auto;
    height: 100%;
    object-fit: cover
}

#team-memebers-container .swiper-slide-active {
    zoom: 1.2;
    transition: .5s
}

.swiper-slide-active .title {
    opacity: 1;
    transition: .5s
}

.swiper-slide {
    background-size: cover;
    background-position: center
}

.mySwiper2 {
    height: 80%;
    width: 100%;
    padding-bottom: 1em !important
}

.mySwiper {
    height: 30%;
    box-sizing: border-box;
    padding: 10px 0
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%
}

.swiper-slide .img-slider {
    display: block; /*width:100%;*/
    width: auto;
    height: 100%;
    object-fit: cover
}

.swiper-slide img {
    display: block;
    width:100%;
    height: 100%;
    object-fit: cover
}

.swiper-button {
    font-size: 40px;
    color: rgba(255, 255, 255, .5) !important;
    margin: 0 .5em
}

.swiper-button:hover {
    color: #fff !important
}

.swiper-button::after {
    display: none
}

.contact_us_message {
    background-color: #eee
}

.contact_us_message input {
    background: #eee;
    border: none;
    box-shadow: 0 0 2px 1px #000;
    border-radius: 3px;
    font-family: F-M
}

.contact_us_message input:focus {
    outline: 0;
    box-shadow: 0 0 2px 1px #cda274
}

.contact_us_message textarea {
    background: #eee;
    border: none;
    box-shadow: 0 0 2px 1px #000;
    border-radius: 3px;
    min-height: 80px;
    resize: none;
    font-family: F-M
}

.contact_us_message textarea:focus {
    outline: 0;
    box-shadow: 0 0 2px 1px #cda274
}

.contact_us_message button {
    background: #eee;
    border: none;
    box-shadow: 0 0 1px 1px #cda274;
    color: #cda274;
    padding: 1em 1.5em;
    transition: .5s;
    cursor: pointer;
    font-family: F-B
}

.contact_us_message button:hover {
    background-color: #cda274;
    box-shadow: 0 0 4px 1px #ffd3a3;
    color: #000;
    transition: .5s
}

.contact_us_message iframe {
    min-height: 30em
}

svg:not(:root).svg-inline--fa {
    overflow: visible;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.svg-inline--fa.fa-w-12 {
    width: .75em
}

.svg-inline--fa {
    display: inline-block;
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -.125em
}

.team-bg {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-31%, -24%);
    z-index: -1
}

.bad-input {
    color: #e13434;
    font-family: F-R;
    margin-top: 5px;
    font-size: var(--fnt-s-input-hint)
}

.iti {
    display: flex !important;
    color: #fff
}

.iti__country {
    color: var(--clr-sec)
}

.project_slider_itmages {
    height: var(--project-slider-height)
}

.project_slider_thums {
    height: var(--project-thumbs-height)
}

@media only screen and (max-width: 320px) {
    #main-page img {
        width: 100%
    }

    .about-bg img {
        width: 100%
    }

    .production-item {
        width: 16em;
        height: 18em
    }

    .sm-text-center {
        text-align: center
    }

    .sm-nav-projects {
        padding: 1em 2em
    }

    .main-navbar {
        display: none !important
    }

    .tablet-hidden {
        display: none !important
    }

    .sm-hidden {
        display: none !important
    }

    .navbar .logo-container {
        padding-left: 2em;
        height: 80px
    }

    .navbar .line {
        left: 63px;
        width: 55%;
        height: 2px
    }

    .flex-1-2 {
        flex: 2
    }

    .navbar {
        box-shadow: 1px 0 8px #000
    }

    .navbar .menu-container {
        display: flex;
        margin-right: .5em
    }

    .navbar .contact-item {
        --fnt-s-light: 12px;
        margin-right: 5px
    }

    .navbar .icon-container {
        --fnt-s-small: 15px
    }

    .flex-row-sm-rev {
        flex-flow: column-reverse !important
    }

    .flex-row-sm {
        flex-flow: column !important
    }

    .flex-col-sm {
        flex-flow: row wrap !important
    }

    .sm-mar-t-1em {
        margin-top: 1em
    }

    .sm-justify-center {
        justify-content: center
    }

    .flex-row-sm-rev .pad-lr-1em {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .team-page .pad-lr-10em {
        padding-left: 4em;
        padding-right: 4em
    }

    .contact_us_message {
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0 !important;
        padding-left: 0 !important;
        background: #fff
    }

    .contact_us_message .header-big {
        text-align: center
    }

    .contact_us_message input {
        padding: .5em .4em;
        background-color: #7a7a7a;
        box-shadow: 0 0 1px 0 #000;
        border-radius: 2px;
        color: #fff
    }

    .contact_us_message input::placeholder {
        color: var(--clr-sec)
    }

    .contact_us_message textarea {
        padding: .5em .4em;
        background-color: #7a7a7a;
        box-shadow: 0 0 1px 0 #000;
        border-radius: 2px;
        color: #fff
    }

    .contact_us_message textarea::placeholder {
        color: var(--clr-sec)
    }

    .contact_us_message button {
        border-radius: 2px;
        background: 0 0
    }

    .contact_us_message .pad-2em {
        padding: 1em
    }

    .contact_us_message .header-big {
        padding-left: 0 !important
    }

    .contact_us_message .pad-l-1em {
        padding-left: .5em;
        padding-right: .5em
    }

    .contact-us-desc {
        padding-right: 0
    }

    .contact-us-desc .pad-l-2em {
        padding-left: 1em;
        padding-right: 1em
    }

    .contact-us-desc img {
        height: 160px
    }

    .pad-lr-6em {
        padding-left: .3em;
        padding-right: .3em
    }

    .sm-pad-1em {
        padding: 1em
    }

    .sm-block {
        display: block !important
    }

    .sm-text-center {
        text-align: center !important
    }

    .sm-mar-t-1em {
        margin-top: 1em
    }

    .about-service-item img {
        width: 40px
    }

    .team-page .info {
        padding-left: 1em
    }

    .team-page .pad-lr-10em {
        padding-left: 1em;
        padding-right: 1em
    }

    .mail {
        margin-right: 1em;
        margin-left: 1em
    }

    .mail .pad-r-2em {
        padding: 0
    }

    .mail .pad-l-2em {
        padding: 0
    }

    .mail .input-container {
        padding: .5em 0
    }

    .max-wid-65perc {
        max-width: 100%
    }

    .desc.text-center {
        text-align: justify !important
    }

    .desc.text-center .text-center {
        text-align: justify !important
    }

    .mar-t-3em {
        margin-top: 1em !important
    }

    .mar-t-2em {
        margin-top: 1em !important
    }

    .about-service-item {
        width: 105px;
        margin: .6em;
        font-family: F-M
    }

    .service-card {
        width: 95%;
        height: 16em
    }

    .service-card .info-container {
        height: auto;
        top: auto;
        bottom: 0;
        padding-top: 1em
    }

    .service-list-item-container {
        width: 100%
    }

    .services_page .pad-2em {
        padding: 1em
    }

    .about-us-services {
        padding-bottom: 1em
    }

    .about-us-services .items {
        margin-top: 0 !important
    }

    .srv_s_img img {
        height: 100%;
        opacity: .5
    }

    .title-line div {
        width: 45%
    }

    .footer .right-line {
        border-bottom: 2px solid var(--clr-main);
        border-right: none !important
    }

    .left-line {
        border-bottom: 2px solid var(--clr-main);
        border-left: none !important
    }

    .footer .logo-container {
        align-items: center;
        flex-flow: column !important;
        padding-right: 0 !important
    }

    .footer .logo-container .sm-desc {
        padding-bottom: 1em
    }

    .footer .logo-container .sm-pad-1em {
        padding-bottom: 0
    }

    .footer .pad-b-2em {
        padding-bottom: 1em
    }

    .footer .pad-tb-2em {
        padding-top: 0;
        padding-bottom: 0
    }

    .footer .copyright {
        line-height: 1.5;
        text-align: center
    }

    .footer .copyright .text-center {
        text-align: center
    }

    .footer .copyright .flt-right {
        float: none
    }

    .footer .copyright .mar-b-2em {
        margin-bottom: 1em
    }

    .pad-l-3em {
        padding-left: 1em
    }

    .pad-lr-3em {
        padding-left: 1em;
        padding-right: 1em
    }

    .project-path {
        left: 0;
        padding: 1em;
        background: #222;
        font-family: F-M;
        font-size: var(--fnt-s-page-header);
        width: 100%;
        text-align: center
    }

    .services-slider {
        padding: 0 !important
    }

    .services_page {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .service-list-item {
        margin: 0 .3em
    }

    .social_items {
        justify-content: center
    }

    .social_item {
        margin-left: 20px;
        margin-right: 20px
    }

    :root {
        --fnt-s-big: 20px;
        --fnt-s-meduim: 27px;
        --fnt-s-smaller: 25px;
        --fnt-s-small: 13px;
        --fnt-s-lighter: 16px;
        --fnt-s-light: 13px;
        --fnt-s-desc: 10px;
        --fnt-s-sm-desc: 14px;
        --desc-line-height: 17px;
        --fnt-s-input-hint: 11px;
        --project-thumbs-height: 50px;
        --project-slider-height: 250px
    }
}

@media only screen and (min-width: 320px) and (max-width: 376px) {
    #main-page img {
        width: 100%
    }

    .about-bg img {
        width: 100%
    }

    .project-slider .mySwiper2 {
        height: 230px
    }

    .sm-nav-projects {
        padding: 1em 2em
    }

    .sm-text-center {
        text-align: center
    }

    .main-navbar {
        display: none !important
    }

    .sm-hidden {
        display: none !important
    }

    .tablet-hidden {
        display: none !important
    }

    .navbar .logo-container {
        padding-left: 2em;
        height: 80px
    }

    .navbar .line {
        left: 61px;
        width: 75%;
        height: 2px
    }

    .flex-1-2 {
        flex: 2
    }

    .navbar {
        box-shadow: 1px 0 8px #000
    }

    .navbar .menu-container {
        display: flex;
        margin-right: .5em
    }

    .navbar .contact-item {
        --fnt-s-light: 12px;
        margin-right: 5px
    }

    .navbar .icon-container {
        --fnt-s-small: 15px
    }

    .flex-row-sm-rev {
        flex-flow: column-reverse !important
    }

    .flex-row-sm {
        flex-flow: column !important
    }

    .flex-col-sm {
        flex-flow: row wrap !important
    }

    .sm-mar-t-1em {
        margin-top: 1em
    }

    .flex-row-sm-rev .pad-lr-1em {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .flex-row-sm .pad-lr-1em {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .team-page .pad-lr-10em {
        padding-left: 4em;
        padding-right: 4em
    }

    .contact-us-desc {
        padding-right: 0
    }

    .contact-us-desc .pad-l-2em {
        padding-left: 1em;
        padding-right: 1em
    }

    .contact-us-desc img {
        height: 160px
    }

    .sm-justify-center {
        justify-content: center
    }

    .contact_us_message {
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0 !important;
        padding-left: 0 !important;
        background: #fff
    }

    .contact_us_message .header-big {
        text-align: center
    }

    .contact_us_message input {
        padding: .5em .4em;
        background-color: #7a7a7a;
        box-shadow: 0 0 1px 0 #000;
        border-radius: 2px;
        color: #fff
    }

    .contact_us_message input::placeholder {
        color: var(--clr-sec)
    }

    .contact_us_message textarea {
        padding: .5em .4em;
        background-color: #7a7a7a;
        box-shadow: 0 0 1px 0 #000;
        border-radius: 2px;
        color: #fff
    }

    .contact_us_message textarea::placeholder {
        color: var(--clr-sec)
    }

    .contact_us_message button {
        border-radius: 2px;
        background: 0 0
    }

    .contact_us_message .pad-2em {
        padding: 1em
    }

    .contact_us_message .header-big {
        padding-left: 0 !important
    }

    .contact_us_message .pad-l-1em {
        padding-left: .5em;
        padding-right: .5em
    }

    .pad-lr-6em {
        padding-left: 1em;
        padding-right: 1em
    }

    .sm-pad-1em {
        padding: 1em
    }

    .sm-block {
        display: block !important
    }

    .sm-text-center {
        text-align: center !important
    }

    .sm-mar-t-1em {
        margin-top: 1em
    }

    .about-service-item img {
        width: 50px
    }

    .team-page .info {
        padding-left: 1em
    }

    .team-page .pad-lr-10em {
        padding-left: 1em;
        padding-right: 1em
    }

    .mail {
        margin-right: 1em;
        margin-left: 1em
    }

    .mail .pad-r-2em {
        padding: 0
    }

    .mail .pad-l-2em {
        padding: 0
    }

    .mail .input-container {
        padding: .5em 0
    }

    .max-wid-65perc {
        max-width: 100%
    }

    .desc.text-center {
        text-align: justify !important
    }

    .desc.text-center .text-center {
        text-align: justify !important
    }

    .mar-t-3em {
        margin-top: 1em !important
    }

    .mar-t-2em {
        margin-top: 1em !important
    }

    .about-service-item {
        width: 80px;
        margin-left: 1em;
        margin-right: 1em
    }

    .about-service-item {
        width: 140px;
        margin: .6em;
        font-family: F-M
    }

    .service-card {
        width: 90%;
        height: 20em
    }

    .service-card .info-container {
        height: auto;
        top: auto;
        bottom: 0;
        padding-top: 1em
    }

    .service-list-item-container {
        width: 50%
    }

    .services_page .pad-2em {
        padding: 1em
    }

    .title-line div {
        width: 45%
    }

    .footer .right-line {
        border-bottom: 2px solid var(--clr-main);
        border-right: none !important
    }

    .left-line {
        border-bottom: 2px solid var(--clr-main);
        border-left: none !important
    }

    .footer .logo-container {
        align-items: center;
        padding-right: 0
    }

    .footer .pad-tb-2em {
        padding-top: 1em;
        padding-bottom: 0
    }

    .footer .logo-container .sm-pad-1em {
        padding-left: 0
    }

    .footer .copyright {
        text-align: center;
        line-height: 1.5
    }

    .footer .copyright .text-center {
        text-align: center
    }

    .footer .copyright .flt-right {
        float: none
    }

    .footer .copyright .mar-b-2em {
        margin-bottom: 1em
    }

    .pad-l-3em {
        padding-left: 1em
    }

    .pad-lr-3em {
        padding-left: 1em;
        padding-right: 1em
    }

    .project-path {
        left: 0;
        padding: 1em;
        background: #222;
        font-family: F-M;
        font-size: var(--fnt-s-page-header);
        width: 100%;
        text-align: center
    }

    .services-slider {
        padding: 0 !important
    }

    .services_page {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .service-list-item {
        margin: 0 .3em
    }

    .about-us-services {
        padding-bottom: 1em
    }

    .about-us-services .items {
        margin-top: 0 !important
    }

    .srv_s_img img {
        height: 100%;
        opacity: .5
    }

    .social_items {
        justify-content: center
    }

    .social_item {
        margin-left: 20px;
        margin-right: 20px
    }

    :root {
        --fnt-s-big: 28px;
        --fnt-s-meduim: 27px;
        --fnt-s-smaller: 30px;
        --fnt-s-small: 13px;
        --fnt-s-lighter: 16px;
        --fnt-s-light: 12px;
        --fnt-s-desc: 13px;
        --fnt-s-sm-desc: 14px;
        --desc-line-height: 20px;
        --fnt-s-input-hint: 12px;
        --project-thumbs-height: 50px;
        --project-slider-height: 250px
    }
}

@media only screen and (min-width: 376px) and (max-width: 425px) {
    #main-page img {
        width: 310%
    }

    .about-bg img {
        width: 300%
    }

    .project-slider .mySwiper2 {
        height: 230px
    }

    .sm-nav-projects {
        padding: 1em 2em
    }

    .sm-text-center {
        text-align: center
    }

    .main-navbar {
        display: none !important
    }

    .sm-hidden {
        display: none !important
    }

    .tablet-hidden {
        display: none !important
    }

    .navbar .logo-container {
        padding-left: 2em;
        height: 80px
    }

    .navbar .line {
        left: 57px;
        width: 75%;
        height: 2px
    }

    .production-item {
        width: 22em;
        height: 29em
    }

    .flex-1-2 {
        flex: 2
    }

    .navbar {
        box-shadow: 1px 0 8px #000
    }

    .navbar .menu-container {
        display: flex;
        margin-right: .5em
    }

    .navbar .contact-item {
        --fnt-s-light: 12px;
        margin-right: 5px
    }

    .navbar .icon-container {
        --fnt-s-small: 15px
    }

    .flex-row-sm-rev {
        flex-flow: column-reverse !important
    }

    .flex-row-sm {
        flex-flow: column !important
    }

    .flex-col-sm {
        flex-flow: row wrap !important
    }

    .sm-mar-t-1em {
        margin-top: 1em
    }

    .flex-row-sm-rev .pad-lr-1em {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .flex-row-sm .pad-lr-1em {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .team-page .pad-lr-10em {
        padding-left: 4em;
        padding-right: 4em
    }

    .sm-justify-center {
        justify-content: center
    }

    .contact_us_message {
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0 !important;
        padding-left: 0 !important;
        background: #fff
    }

    .contact_us_message .header-big {
        text-align: center
    }

    .contact_us_message input {
        padding: .5em .4em;
        background-color: #7a7a7a;
        box-shadow: 0 0 1px 0 #000;
        border-radius: 2px;
        color: #fff
    }

    .contact_us_message input::placeholder {
        color: var(--clr-sec)
    }

    .contact_us_message textarea {
        padding: .5em .4em;
        background-color: #7a7a7a;
        box-shadow: 0 0 1px 0 #000;
        border-radius: 2px;
        color: #fff
    }

    .contact_us_message textarea::placeholder {
        color: var(--clr-sec)
    }

    .contact_us_message button {
        border-radius: 2px;
        background: 0 0
    }

    .contact_us_message .pad-2em {
        padding: 1em
    }

    .contact_us_message .header-big {
        padding-left: 0 !important
    }

    .contact_us_message .pad-l-1em {
        padding-left: .5em;
        padding-right: .5em
    }

    .contact-us-desc {
        padding-right: 0
    }

    .contact-us-desc img {
        height: 160px
    }

    .contact-us-desc .pad-l-2em {
        padding-left: 1em;
        padding-right: 1em
    }

    .pad-lr-6em {
        padding-left: 1em;
        padding-right: 1em
    }

    .sm-pad-1em {
        padding: 1em
    }

    .sm-block {
        display: block !important
    }

    .sm-text-center {
        text-align: center !important
    }

    .sm-mar-t-1em {
        margin-top: 1em
    }

    .about-service-item img {
        width: 50px
    }

    .team-page .info {
        padding-left: 1em
    }

    .team-page .pad-lr-10em {
        padding-left: 1em;
        padding-right: 1em
    }

    .mail {
        margin-right: 1em;
        margin-left: 1em
    }

    .mail .pad-r-2em {
        padding: 0
    }

    .mail .pad-l-2em {
        padding: 0
    }

    .mail .input-container {
        padding: .5em 0
    }

    .max-wid-65perc {
        max-width: 100%
    }

    .desc.text-center {
        text-align: justify !important
    }

    .desc.text-center .text-center {
        text-align: justify !important
    }

    .mar-t-3em {
        margin-top: 1em !important
    }

    .mar-t-2em {
        margin-top: 1em !important
    }

    .about-service-item {
        width: 140px;
        margin: .6em;
        font-family: F-M
    }

    .service-card {
        width: 90%;
        height: 24em
    }

    .service-card .info-container {
        height: auto;
        top: auto;
        bottom: 0;
        padding-top: 1em
    }

    .service-list-item-container {
        width: 50%
    }

    .services_page .pad-2em {
        padding: 1em
    }

    .about-us-services {
        padding-bottom: 1em
    }

    .about-us-services .items {
        margin-top: 0 !important
    }

    .srv_s_img img {
        height: 100%;
        opacity: .5
    }

    .title-line div {
        width: 45%
    }

    .footer .right-line {
        border-bottom: 2px solid var(--clr-main);
        border-right: none !important
    }

    .footer .logo-container .sm-pad-1em {
        padding-left: 0
    }

    .left-line {
        border-bottom: 2px solid var(--clr-main);
        border-left: none !important
    }

    .footer .logo-container {
        align-items: center
    }

    .footer .text-center {
        text-align: left !important
    }

    .footer .pad-tb-2em {
        padding-top: 1em;
        padding-bottom: 0
    }

    .pad-l-3em {
        padding-left: 1em
    }

    .pad-lr-3em {
        padding-left: 1em;
        padding-right: 1em
    }

    .project-path {
        left: 0;
        padding: 1em;
        background: #222;
        font-family: F-M;
        font-size: var(--fnt-s-page-header);
        width: 100%;
        text-align: center
    }

    .services-slider {
        padding: 0 !important
    }

    .services_page {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .service-list-item {
        margin: 0 .3em
    }

    .social_items {
        justify-content: center
    }

    .social_item {
        margin-left: 30px;
        margin-right: 30px
    }

    :root {
        --fnt-s-big: 26px;
        --fnt-s-meduim: 27px;
        --fnt-s-smaller: 31px;
        --fnt-s-small: 13px;
        --fnt-s-lighter: 16px;
        --fnt-s-light: 10px;
        --fnt-s-desc: 13px;
        --fnt-s-sm-desc: 14px;
        --desc-line-height: 20px;
        --fnt-s-input-hint: 13px;
        --project-thumbs-height: 50px;
        --project-slider-height: 250px
    }
}

@media only screen and (min-width: 426px) and (max-width: 580px) {
    #main-page img {
        width: 100%
    }

    .about-bg img {
        width: 100%
    }

    .sm-text-center {
        text-align: center
    }

    .main-navbar {
        display: none !important
    }

    .sm-hidden {
        display: none !important
    }

    .tablet-hidden {
        display: none !important
    }

    .navbar {
        box-shadow: 1px 0 8px #000
    }

    .navbar .logo-container {
        padding-left: 2em;
        height: 80px
    }

    .navbar .line {
        left: 59px;
        width: 75%;
        height: 2px
    }

    .production-item {
        width: 24em;
        height: 37em
    }

    .flex-1-2 {
        flex: 2
    }

    .navbar .menu-container {
        display: flex;
        margin-right: .5em
    }

    .navbar .contact-item {
        --fnt-s-light: 12px;
        margin-right: 5px
    }

    .navbar .icon-container {
        --fnt-s-small: 15px
    }

    .flex-row-sm-rev {
        flex-flow: column-reverse !important
    }

    .flex-row-sm {
        flex-flow: column !important
    }

    .flex-col-sm {
        flex-flow: row wrap !important
    }

    .sm-mar-t-1em {
        margin-top: 1em
    }

    .flex-row-sm-rev .pad-lr-1em {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .team-page .pad-lr-10em {
        padding-left: 4em;
        padding-right: 4em
    }

    .sm-justify-center {
        justify-content: center
    }

    .contact_us_message {
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0 !important;
        padding-left: 0 !important;
        background: #fff
    }

    .contact_us_message .header-big {
        text-align: center
    }

    .contact_us_message input {
        padding: .5em .4em;
        background-color: #a1a1a1c9;
        box-shadow: 0 0 1px 0 #000;
        border-radius: 2px;
        color: #fff
    }

    .contact_us_message input::placeholder {
        color: var(--clr-sec)
    }

    .contact_us_message textarea {
        padding: .5em .4em;
        background-color: #a1a1a1c9;
        box-shadow: 0 0 1px 0 #000;
        border-radius: 2px;
        color: #fff
    }

    .contact_us_message textarea::placeholder {
        color: var(--clr-sec)
    }

    .contact_us_message button {
        border-radius: 2px;
        background: 0 0
    }

    .contact_us_message .pad-2em {
        padding: 1em
    }

    .contact_us_message .pad-l-1em {
        padding-left: .5em;
        padding-right: .5em
    }

    .contact_us_message .header-big {
        padding-left: 0 !important
    }

    .contact-us-desc {
        padding-right: 0
    }

    .contact-us-desc img {
        height: 160px
    }

    .contact-us-desc .pad-l-2em {
        padding-left: 2em;
        padding-right: 2em
    }

    .pad-lr-6em {
        padding-left: 1em;
        padding-right: 1em
    }

    .sm-pad-1em {
        padding: 1em
    }

    .sm-block {
        display: block !important
    }

    .sm-text-center {
        text-align: center !important
    }

    .sm-mar-t-1em {
        margin-top: 1em
    }

    .about-service-item img {
        width: 50px
    }

    .team-page .info {
        padding-left: 1em
    }

    .team-page .pad-lr-10em {
        padding-left: 1em;
        padding-right: 1em
    }

    .mail {
        margin-right: 1em;
        margin-left: 1em
    }

    .mail .pad-r-2em {
        padding: 0
    }

    .mail .pad-l-2em {
        padding: 0
    }

    .mail .input-container {
        padding: .5em 0
    }

    .max-wid-65perc {
        max-width: 100%
    }

    .desc.text-center {
        text-align: justify !important
    }

    .desc.text-center .text-center {
        text-align: justify !important
    }

    .mar-t-3em {
        margin-top: 1em !important
    }

    .mar-t-2em {
        margin-top: 1em !important
    }

    .about-service-item {
        width: 80px;
        margin-left: 1em;
        margin-right: 1em
    }

    .about-service-item {
        width: 160px;
        margin: .6em
    }

    .about-us-services {
        padding-bottom: 1em
    }

    .about-us-services .items {
        margin-top: 0 !important
    }

    .srv_s_img img {
        height: 100%;
        opacity: 1
    }

    .service-card {
        width: 80%;
        height: 28em
    }

    .service-card .info-container {
        height: auto;
        top: auto;
        bottom: 0;
        padding-top: 1em
    }

    .service-list-item-container {
        width: 33%
    }

    .services_page .pad-2em {
        padding: 1em
    }

    .title-line div {
        width: 45%
    }

    .footer .right-line {
        border-bottom: 2px solid var(--clr-main);
        border-right: none !important
    }

    .left-line {
        border-bottom: 2px solid var(--clr-main);
        border-left: none !important
    }

    .footer .logo-container {
        align-items: center
    }

    .footer .text-center {
        text-align: left !important
    }

    .footer .pad-tb-2em {
        padding-top: 1em;
        padding-bottom: 0
    }

    .pad-l-3em {
        padding-left: 1em
    }

    .pad-lr-3em {
        padding-left: 1em;
        padding-right: 1em
    }

    .project-path {
        left: 0;
        padding: 1em;
        background: #222;
        font-family: F-M;
        font-size: var(--fnt-s-page-header);
        width: 100%;
        text-align: center
    }

    .services-slider {
        padding: 0 !important
    }

    .services_page {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .service-list-item {
        margin: 0 .3em
    }

    .social_items {
        justify-content: center
    }

    .social_item {
        margin-left: 30px;
        margin-right: 30px
    }

    :root {
        --fnt-s-big: 30px;
        --fnt-s-meduim: 28px;
        --fnt-s-smaller: 35px;
        --fnt-s-small: 19px;
        --fnt-s-lighter: 18px;
        --fnt-s-light: 11px;
        --fnt-s-desc: 12px;
        --fnt-s-sm-desc: 15px;
        --desc-line-height: 20px;
        --fnt-s-input-hint: 14px;
        --project-thumbs-height: 110px;
        --project-slider-height: 400px
    }
}

@media only screen and (min-width: 581px) and (max-width: 768px) {
    .iti__flag-container {
        color: var(--clr-sec)
    }

    #main-page img {
        width: 150%
    }

    .about-bg img {
        width: 300%
    }

    .services_page {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .service-list-item-container {
        width: 25%
    }

    .service-list-item {
        margin: 0 .3em
    }

    .about-us-services {
        padding-bottom: 2em
    }

    .about-us-services .items {
        margin-top: 1em !important
    }

    .srv_s_img img {
        height: 100%;
        opacity: 1
    }

    .main-navbar {
        display: none !important
    }

    .big-hidden {
        display: none
    }

    .tablet-hidden {
        display: none !important
    }

    .production-item {
        width: 15em;
        height: 19em
    }

    .project-path {
        padding: 1em;
        font-family: F-B;
        font-size: var(--fnt-s-lighter);
        text-align: center
    }

    .navbar {
        box-shadow: 1px 0 8px #000
    }

    .navbar .logo-container {
        padding-left: 2em;
        height: 80px
    }

    .navbar .line {
        left: 55px;
        width: 75%;
        height: 2px
    }

    .services-slider {
        padding: 0 !important
    }

    .navbar .menu-container {
        display: flex;
        margin-right: .5em
    }

    .navbar .contact-item {
        --fnt-s-light: 12px;
        margin-right: 5px
    }

    .navbar .icon-container {
        --fnt-s-small: 15px
    }

    .flex-row-sm-rev {
        flex-flow: column-reverse !important
    }

    .flex-row-sm {
        flex-flow: column !important
    }

    .contact-us-desc .flex-row-sm {
        flex-flow: row !important
    }

    .sm-mar-t-1em {
        margin-top: 1em
    }

    .flex-row-sm-rev .pad-lr-1em {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .flex-row-sm .pad-lr-1em {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .team-page .pad-lr-10em {
        padding-left: 4em;
        padding-right: 4em
    }

    .contact-us-desc {
        padding-right: 4em;
        padding-left: 4em
    }

    .contact-us-desc img {
        height: 160px
    }

    .contact-us-desc .pad-l-2em {
        padding-left: 2em
    }

    .contact_us_message .bg-conver {
        display: none
    }

    .contact_us_message .pad-2em {
        padding: 1em;
        padding-right: 0;
        padding-bottom: 0;
        padding-top: 0
    }

    .contact_us_message .header-big {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .pad-lr-6em {
        padding-left: 1em;
        padding-right: 1em
    }

    .about-service-item img {
        width: 50px
    }

    .team-page .info {
        padding-left: 1em
    }

    .team-page .pad-lr-10em {
        padding-left: 4em;
        padding-right: 4em
    }

    .mail {
        margin-right: 1.5em;
        margin-left: 1em
    }

    .mail .pad-r-2em {
        padding: 0
    }

    .mail .pad-l-2em {
        padding: 0
    }

    .mail .input-container {
        padding: .5em 0
    }

    .max-wid-65perc {
        max-width: 80%
    }

    .desc.text-center {
        text-align: justify !important
    }

    .desc.text-center .text-center {
        text-align: justify !important
    }

    .mar-t-3em {
        margin-top: 1em !important
    }

    .mar-t-2em {
        margin-top: 1em !important
    }

    .flex-col-sm {
        flex-flow: row
    }

    .sm-pad-1em {
        padding: 1em
    }

    .services_page .pad-2em {
        padding: 1em
    }

    .footer .right-line {
        border-bottom: 2px solid var(--clr-main);
        border-right: none !important
    }

    .footer .logo-container {
        align-items: center
    }

    .footer .logo-container .sm-pad-1em {
        padding-left: 0
    }

    .left-line {
        border-bottom: 2px solid var(--clr-main);
        border-left: none !important
    }

    .pad-lr-3em {
        padding-left: 1em;
        padding-right: 1em
    }

    .pad-l-3em {
        padding-left: 1em
    }

    .project-path {
        left: .9em
    }

    .social_items {
        justify-content: center
    }

    .social_item {
        margin-left: 35px;
        margin-right: 35px
    }

    :root {
        --fnt-s-big: 30px;
        --fnt-s-meduim: 28px;
        --fnt-s-smaller: 37px;
        --fnt-s-small: 12px;
        --fnt-s-lighter: 18px;
        --fnt-s-light: 9px;
        --fnt-s-desc: 12px;
        --desc-line-height: 20px;
        --fnt-s-input-hint: 14px;
        --project-thumbs-height: 100px;
        --project-slider-height: 400px
    }
}

@media only screen and (min-width: 769px) and (max-width: 1025px) {
    .iti__flag-container {
        color: var(--clr-sec)
    }

    .big-hidden {
        display: none
    }

    .navbar .logo-container {
        padding-left: 2em;
        height: 130px
    }

    .navbar .line {
        left: 80px;
        width: 75%
    }

    .navbar .menu-container {
        display: none
    }

    .navbar .contact-item {
        --fnt-s-light: 10px
    }

    .navbar .icon-container {
        --fnt-s-small: 15px
    }

    .about-service-item img {
        width: 70px
    }

    .team-page .pad-lr-10em {
        padding-left: 4em;
        padding-right: 4em
    }

    .contact-us-desc {
        padding-right: 1em;
        padding-left: 1em
    }

    .contact_us_message .bg-conver {
        display: none
    }

    .contact_us_message .pad-2em {
        padding: 1em;
        padding-right: 0;
        padding-bottom: 0;
        padding-top: 0
    }

    .contact_us_message .header-big {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .mail {
        margin-right: 1em;
        margin-left: 1em;
        padding-left: 1em;
        padding-right: 1em
    }

    .pad-lr-6em {
        padding-left: 2em;
        padding-right: 2em
    }

    .about-us-services {
        padding-bottom: 2em
    }

    .about-us-services .items {
        margin-top: 1em !important
    }

    .srv_s_img img {
        height: 100%;
        opacity: 1
    }

    .project-path {
        left: 1.7em
    }

    :root {
        --fnt-s-big: 28px;
        --fnt-s-meduim: 24px;
        --fnt-s-smaller: 22px;
        --fnt-s-small: 18px;
        --fnt-s-lighter: 12px;
        --fnt-s-desc: 11px;
        --fnt-s-light: 10px;
        --desc-line-height: 16px;
        --fnt-s-input-hint: 15px
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1441px) {
    .iti__flag-container {
        color: var(--clr-sec)
    }

    .big-hidden {
        display: none
    }

    .navbar .logo-container {
        height: 130px;
        padding-left: 7em
    }

    .navbar .line {
        left: 151px;
        width: 76%
    }

    .navbar .menu-container {
        display: none
    }

    .contact_us_message .bg-conver {
        display: none
    }

    .contact_us_message .pad-2em {
        padding: 1em;
        padding-right: 0;
        padding-bottom: 0;
        padding-top: 0
    }

    .srv_s_img img {
        height: 100%;
        opacity: 1
    }

    .contact_us_message .header-big {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
}

@media only screen and (min-width: 1441px) and (max-width: 2560px) {
    .iti__flag-container {
        color: var(--clr-sec)
    }

    .big-hidden {
        display: none
    }

    .navbar .logo-container {
        padding-left: 7em
    }

    .navbar .line {
        left: 181px;
        width: 76%
    }

    .navbar .menu-container {
        display: none
    }

    .contact_us_message .bg-conver {
        display: none
    }

    .contact_us_message .pad-2em {
        padding: 1em;
        padding-right: 0;
        padding-bottom: 0;
        padding-top: 0
    }

    .srv_s_img img {
        height: 100%;
        opacity: 1
    }

    .contact_us_message .header-big {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
}

@media only screen and (min-width: 2561px) {
    .iti__flag-container {
        color: var(--clr-sec)
    }

    .big-hidden {
        display: none
    }

    .navbar .logo-container {
        padding-left: 7em
    }

    .navbar .line {
        left: 181px;
        width: 76%
    }

    .navbar .menu-container {
        display: none
    }

    .contact_us_message .bg-conver {
        display: none
    }

    .contact_us_message .pad-2em {
        padding: 1em;
        padding-right: 0;
        padding-bottom: 0;
        padding-top: 0
    }

    .contact_us_message .header-big {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .srv_s_img img {
        height: 100%;
        opacity: 1
    }
}

.swiper-thumb img {
    width: 100% !important;
}

@media (max-width: 600px) {
    .swiper-slide img {
        width: 100% !important;
    }
}

.row-gallery-home {
    flex-wrap: wrap;
    row-gap: 17px;
    justify-content: space-between;
}

.row-gallery-home > * {
    box-sizing: border-box;
}

.service-card {
    width: 32.5%;
    overflow: hidden;
    position: relative;
    /* padding: 0px 10px; */
    margin: 0 !important;
    height: fit-content;
}

.row-gallery-home img {
    width: 100% !important;
    max-width: 100%;
    height: unset;
}

@media (max-width: 576px) {
    .service-card {
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .service-card {
        width: 49.5%;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .service-card {
        width: 49.5%;
    }
}


.row-service-home {
    flex-wrap: wrap;
    row-gap: 17px;
    justify-content: center;
}

.row-service-home > * {
    box-sizing: border-box;
}

.about-service-item {
    width: 25%;
    position: relative;
    margin: 0 !important;
    /*justify-content: center;*/
}

.container-service-home {
    padding: 15px 80px;
}

@media (max-width: 400px) {
    .about-service-item {
        width: 100%;
    }

    .container-service-home {
        padding: 15px 15px;
    }
}

@media (min-width: 401px) and (max-width: 991px) {
    .about-service-item {
        width: 50%;
    }

    .container-service-home {
        padding: 15px 25px;
    }
}


.parsley-required {
    /*color: white;*/
    font-size: 14px;
    padding: 5px 0px;
    font-family: F-R;
}

input.parsley-error {
    border-bottom: 1px dotted #c0392b;
}

.parsley-errors-list , ul.parsley-errors-list {
    list-style: none;
    /*padding: 7px;*/
    color: #e13434;
    font-size: 14px;
    font-family: F-R;
    padding: 5px 0px;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

.message{
    display: none;
    color: #c49b72;
    font-size: 14px;
    font-family: F-R;
    font-weight: bold;
}
