:root {
    --black-color: #000000;
    --white-color: #ffffff;
    --theme-color: #004930;
    --yellow-color: #fec800;
    --light-yellow: #fff4d3;
    --dark-yellow: #e3b200;
    --orange-color: #f17800;
    --txt-color: #6f7070;
    --font-Barlow: 'Barlow Semi Condensed';
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi: 600;
}

@font-face {
    font-family: 'Barlow Semi Condensed';
    src: url('../fonts/BarlowSemiCondensed-Regular.eot');
    src: url('../fonts/BarlowSemiCondensed-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BarlowSemiCondensed-Regular.woff2') format('woff2'),
        url('../fonts/BarlowSemiCondensed-Regular.woff') format('woff'),
        url('../fonts/BarlowSemiCondensed-Regular.ttf') format('truetype'),
        url('../fonts/BarlowSemiCondensed-Regular.svg#BarlowSemiCondensed-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Semi Condensed';
    src: url('../fonts/BarlowSemiCondensed-SemiBold.eot');
    src: url('../fonts/BarlowSemiCondensed-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BarlowSemiCondensed-SemiBold.woff2') format('woff2'),
        url('../fonts/BarlowSemiCondensed-SemiBold.woff') format('woff'),
        url('../fonts/BarlowSemiCondensed-SemiBold.ttf') format('truetype'),
        url('../fonts/BarlowSemiCondensed-SemiBold.svg#BarlowSemiCondensed-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Semi Condensed';
    src: url('../fonts/BarlowSemiCondensed-Medium.eot');
    src: url('../fonts/BarlowSemiCondensed-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BarlowSemiCondensed-Medium.woff2') format('woff2'),
        url('../fonts/BarlowSemiCondensed-Medium.woff') format('woff'),
        url('../fonts/BarlowSemiCondensed-Medium.ttf') format('truetype'),
        url('../fonts/BarlowSemiCondensed-Medium.svg#BarlowSemiCondensed-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body{
    margin: 0;
    padding: 0;
    font-family: var(--font-Barlow);
    font-size: 1.313rem;
    line-height: 1.953rem;
    font-weight: var(--font-weight-regular);
    background: var(--light-yellow);
    color: var(--txt-color);
    letter-spacing: 0.21px;
}

h1 , h2 , h3 , h4 , h5 , h6{
    font-family: var(--font-Barlow);
    font-weight: var(--font-weight-semi);
    color: var(--theme-color);
    margin: 0 0 33px 0;
    padding: 0;
}

h1 span, h2 span , h3 span , h4 span{
    font-weight: var(--font-weight-regular);
}

strong{
    font-weight: var(--font-weight-semi);
}

/*h1{
    font-size: 3.500rem;
    line-height: 3.75rem;
    letter-spacing: 0.5px;
}
*/
h1{
    font-size: 3.125rem;
    line-height: 3.906rem;
    letter-spacing: 0.5px;
}

h3{
    font-size: 2.25rem;
    line-height: 3rem;
    letter-spacing: 0.36px;
}

h4{
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.3px;
}

h5{
    font-size: 1.5rem;
    line-height: 2.125rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.25px;
}

h6{
    font-size: 1.313rem;
    line-height: 1.938rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.2px;
}

p{
    margin: 0 0 19px 0;
    padding: 0;
}

ul , ol{
    margin: 0 0 15px 15px;
    padding: 0;
}

ul li , ol li{
    margin: 0 0 4px 0;
    padding: 0;
}

a , a:hover , a:focus , a:visited , input , textarea , button , select{
    outline: none !important;
    text-decoration: none !important;
}

a{
    color: var(--orange-color);
}

a:hover{
    color: var(--theme-color);
}

img{
    max-width: 100%;
}

section{
    position: relative;
    clear: both;
    padding: 0 0 120px 0;
}

section:before , section:after{
    clear: both;
    display: table;
    content: "";
}

input[type="text"] , input[type="email"] , input[type="password"] , input[type="zip"] , input[type="subject"] , input[type="tel"] , input[type="search"] , input[type="number"] , select , textarea{
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 2px solid var(--theme-color);
    font-weight: var(--font-weight-medium);
    background: transparent;
    color: var(--txt-color);
    padding: 0;
}

textarea{
    height: 268px;
    resize: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

::-webkit-input-placeholder {
    opacity: 1 !important;
    color: var(--txt-color) !important;
}

::-moz-placeholder {
    opacity: 1 !important;
    color: var(--txt-color) !important;
}

:-ms-input-placeholder {
    opacity: 1 !important;
    color: var(--txt-color) !important;
}

:-moz-placeholder {
    opacity: 1 !important;
    color: var(--txt-color) !important;
}

.theme-btn{
    display: inline-block;
    width: auto;
    padding: 0 39px;
    background: var(--yellow-color);
    color: var(--theme-color);
    text-transform: uppercase;
    line-height: 60px;
    height: 60px;
    border: none;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    font-size: 1.313rem;
    position: relative;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.theme-btn:hover{
    background: var(--dark-yellow);
    color: var(--theme-color);
}

.theme-btn img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -15px;
}

.header-part{
    position: fixed;
    z-index: 999;
    width: 100%;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease; 
    left: 0px;
    top: 0px;
}

.header-part:before{
    position: absolute;
    left: 0px;
    top: 0px;
    height: 60px;
    width: 100%;
    content: "";
    background: var(--theme-color);
}

.logo{
    position: absolute;
    left: 0px;
    top: 0px;
}

.logo a {
    display: flex;
    width: 370px;
    height: 173px;
    background: url('../images/logo-bg.png') no-repeat center center;
    align-items: center;
    justify-content: center;
}

.logo a{
    color: var(--white-color);
    font-size: 1.313rem;
    line-height: normal;
    letter-spacing: 0.21px;
}

.logo a .logo-txt{
    display: none;
    padding-left: 100px;
}

.header-part.sticky.sticky-fixed .logo a{
    height: auto;
    width: auto;
    background: transparent;
}

.header-part.sticky.sticky-fixed .logo a img{
    display: none;
}

.header-part.sticky.sticky-fixed .logo .logo-txt {
    display: block;
    padding-top: 8px;
}

.header-part.sticky.sticky-fixed:before{
    height: 45px;
}

.header-part.sticky.sticky-fixed .main-menu > ul > li{
    padding-top: 5px;
}

.home-banner{
    padding: 0;
}

.home-banner-bg{
    height: 1000px;
    max-width: 1820px;
    width: 100%;
    margin: 0 auto;
}

.logo a img {
    margin-top: -26px;
    margin-right: -30px;
}

.main-menu{
    position: relative;
    z-index: 2;
    width: calc(100% - 370px);
    display: flex;
    margin-left: auto;
    padding-right: 247px;
}

.main-menu ul , .main-menu li{
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu > ul{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-menu > ul > li {
    margin-right: 37.9px;
    padding-top: 20px;
}

.main-menu > ul > li:last-child{
    margin-right: 0;
}

.main-menu > ul > li > a{
    letter-spacing: 0.21px;
    text-transform: uppercase;
    font-weight: var(--font-weight-regular);
    font-size: 1.313rem;
    line-height: 2.016rem;
    display: block;
    color: var(--white-color);
    position: relative;
}

.main-menu > ul > li > a:before {
    position: absolute;
    left: -11px;
    height: 30px;
    width: 2px;
    background: transparent;
    content: "";
    bottom: -8px;
}

.main-menu > ul > li.active > a:before{
    background: var(--yellow-color);
}

.main-menu > ul > li:hover > a , .main-menu > ul > li.active > a{
    color: var(--yellow-color);
}

.home-below-part {
    position: relative;
    margin-top: -600px;
}

.home-below-left-top {
    background: rgba(255,255,255,0.90);
    padding: 37px 36px 44px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    max-width: 674px;
    margin-bottom: 37px;
}

.home-below-left-top h1, .home-below-left-top h2 {
    color: var(--orange-color);
}

.home-below-left-top h4{
    font-weight: var(--font-weight-semi);
    padding-left: 28px;
    position: relative;
    line-height: 2.313rem;
    margin-bottom: 0;
    margin-left: 4px;
}

.home-below-left-top h4:before{
    position: absolute;
    left: 0px;
    top: 9px;
    width: 3px;
    background: var(--theme-color);
    height: calc(100% + 34px);
    content: "";
}

.lf-sp{
    padding-left: 10px;
}

.home-below-left-bottom{
    background: var(--light-yellow);
    padding: 64px 40px 0 146px;
    max-width: 674px;
}

.bottom-line {
    position: relative;
    padding-bottom: 30px;
}

.bottom-line:after{
    bottom: 0px;
    height: 3px;
    width: 60px;
    background: var(--orange-color);
    position: absolute;
    left: 0px;
    content: "";
}

.bottom-line p:last-child{
    margin-bottom: 0;
}

.home-below-box{
    background: var(--white-color);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.30);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.30);
    padding: 34px 0 25px 40px;
    position: relative;
}

.home-below-right {
    margin-top: 126px;
    padding-left: 26px;
}

.home-below-box-img{
    text-align: right;
}

.home-below-box-title{
    display: flex;
    width: 100%;
    margin-bottom: 31px;
}

.home-below-box-title h4{
    margin: 8px 0 0 0;
    line-height: 2.344rem;
}

.box-icon {
    min-width: 82px;
    padding-right: 12px;
}

.home-below-box .theme-btn {
    bottom: 50px;
    left: 40px;
    position: absolute;
}

.home-below-right .row{
    margin: 0 -20px;
}

.home-below-right .col-12{
    padding: 0 20px;
}

.footer-part{
    position: relative;
    background: var(--theme-color);
    padding: 15px 50px 17px 0px;
    min-height: 150px;
}

.footer-logo{
    width: 414px;
    height: 175px;
    background: url('../images/footer-logo-bg.png') no-repeat 0 0;
    position: absolute;
    left: 0px;
    top: -25px;
    z-index: 1;
    text-align: right;
    padding-right: 95px;
    padding-top: 33px;
}

.footer-middle-top h6{
    font-weight: var(--font-weight-regular);
    font-size: 1.313rem;
    line-height: 2rem;
    margin: 0;
    color: var(--white-color);
}

.footer-middle-top h4 {
    font-weight: var(--font-weight-regular);
    margin: 0;
    color: var(--white-color);
    line-height: 2.322rem;
    position: relative;
    top: -1px;
}

.footer-inner{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding-left: 414px;
}

.footer-middle-bottom ul , .footer-middle-bottom li{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-middle-bottom ul{
    display: flex;
    width: auto;
    flex-wrap: wrap;
}

.footer-middle-bottom ul li{
    margin-right: 24px;
}

.footer-middle-bottom ul li img {
    position: relative;
    top: -2px;
}

.footer-middle-bottom ul li:last-child{
    margin-right: 0;
}

.footer-middle-bottom ul li a{
    display: flex;
    width: auto;
    align-items: center;
    color: var(--white-color);
    gap:9px;
    font-size: 1.125rem;
    letter-spacing: 0.18px;
}

.footer-middle-bottom ul li:hover a{
    color: var(--yellow-color);
}

.address-li a img , .fon-li a img{
    min-width: 16px;
}

.address-li a{
    cursor: default;
    color: var(--white-color) !important;
}

.email-li a img{
    min-width: 23px;
}

.site-li a img{
    min-width: 20px;
}

.footer-middle-bottom {
    margin-top: 18px;
    padding-left: 2px;
}

.footer-middle-bottom ul li i{
    font-style: normal;
    padding: 0 3px;
}

.footer-info-middle {
    padding-left: 37px;
    /*margin-right: auto;*/
    /*margin-left: auto;*/
}

.footer-right-top {
    margin-top: 39px;
}

.footer-right-top ul , .footer-right-top li{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right-top ul{
    display: flex;
    width: auto;
}

.footer-right-top li a{
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.75rem;
    display: block;
    color: var(--white-color);
    font-weight: var(--font-weight-regular);
    position: relative;
    padding-bottom: 7px;
}

.footer-right-top li a:before {
    position: absolute;
    left: -9px;
    height: calc(100% - 8px);
    width: 1px;
    background: transparent;
    content: "";
    top: 8px;
}

.footer-right-top li:hover a , .footer-right-top li.active a{
    color: var(--yellow-color);
}

.footer-right-top li.active a:before{
    background: var(--yellow-color);
}

.footer-right-top li{
    margin-right: 37px;
}

.footer-right-top li:last-child{
    margin-right: 0;
}

.footer-info-right {
    margin-left: 104px;
    margin-right: auto;
}

.footer-right-bottom {
    display: flex;
    width: auto;
    justify-content: space-between;
    margin-top: 18px;
    align-items: center;
}

.copy-right{
    font-size: 0.906rem;
    color: var(--white-color);
    line-height: normal;
}

.design-by {
    margin-left: 46px;
    position: relative;
    top: -4px;
    line-height: normal;
}

/*MOBILE HUMBERGER */

.hamburger-menu{
  display: flex;
  width: auto;
  position: relative;
  z-index: 9;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  display: none;
}

.hamburger-menu a{
  display: inline-block;
  width: 40px;
  height: 35px;
}

.burger {
  height: 41px;
  width: 41px;
  background: var(--yellow-color);
  position: relative;
  font-size: 0.75rem;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin-top: 2px;
}

.burger::after {
    content: "";
    display: block;
    position: absolute;
    height: 41px;
    width: 41px;
    top: 0;
    left: 0;
}

.burger.burger-squeeze .burger-lines::after, .burger.burger-squeeze .burger-lines::before {
  width: 2em;
}

.burger .burger-lines::after {
  left: 0;
  top: -0.8em;
}

.burger .burger-lines::before {
  left: 0em;
  top: 0.8em;
}

.burger.burger-squeeze .burger-lines, .burger.burger-squeeze .burger-lines::after, .burger.burger-squeeze .burger-lines::before {
  transition: top .2s .2s,left .1s,transform .2s,background-color .4s .2s;
}

.burger .burger-lines, .burger .burger-lines::after, .burger .burger-lines::before {
  pointer-events: none;
  display: block;
  content: "";
  width: 100%;
  background-color: var(--theme-color);
  height: .15em;
  position: absolute;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.hamburger-menu-on.active .burger .burger-lines, .hamburger-menu-on.active .burger .burger-lines::after, .hamburger-menu-on.active .burger .burger-lines::before{
  background: rgba(255, 255, 255, 0.3);
}

.hamburger-menu.hamburger-menu-on.active {
  position: relative;
  margin-left: 15px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.close-humb .burger .burger-lines, .close-humb .burger .burger-lines::after, .close-humb .burger .burger-lines::before{
  background: var(--white-color);
}

.burger .burger-lines {
  top: 50%;
  margin-top: -0.025em;
  width: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.burger.burger-squeeze .burger-lines::after, .burger.burger-squeeze .burger-lines::before {
  width: 22px;
  left: 0;
}

.burger.burger-squeeze .burger-lines::after {
    top: -5px;
}
.burger.burger-squeeze .burger-lines::before {
    top: 5px;
}

.burger.burger-squeeze.open .burger-lines::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger.burger-squeeze.open .burger-lines::after, .burger.burger-squeeze.open .burger-lines::before {
  left: 0;
  top: 0;
}

.burger.burger-squeeze.open .burger-lines, .burger.burger-squeeze.open .burger-lines::after, .burger.burger-squeeze.open .burger-lines::before {
  transition: background-color .2s,top .2s,left .2s,transform .2s .15s;
}

.burger.burger-squeeze.open .burger-lines::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger.burger-squeeze.open .burger-lines {
  background-color: initial;
}

.float-cell-wrap {
    position: fixed;
    right: -453px;
    top: 30px;
    display: flex;
    width: auto;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    z-index: 111;
    height: 80px;
    overflow: hidden;
}

.float-cell-wrap.open{
    height: auto;
    overflow: visible;
}

.float-cell-hover {
    display: flex;
    background: var(--orange-color);
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    cursor: pointer;
    -webkit-border-radius: 10px 0px 0px 10px;
    border-radius: 10px 0px 0px 10px;
    position: relative;
    z-index: 1;
}

.float-cell-wrap.open .float-cell-box{
    margin-left: -50px;
}

.float-cell-wrap.open .float-cell-hover{
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.float-cell-box {
    width: 453px;
    background: var(--white-color);
    padding: 17px 25px 32px 69px;
    color: var(--orange-color);   
}

.float-cell-box p {
    margin-bottom: 0;
    font-size: 1.313rem;
    line-height: 1.9rem;
}

.float-cell-box h6 {
    color: var(--txt-color);
    margin-bottom: 0;
}

.float-cell-box h4 {
    font-weight: var(--font-weight-regular);
    color: var(--orange-color);
    margin-bottom: 12px;
}

.float-cell-wrap.open{
    right: 0;
}

.contact-list-link {
    /*font-size: 1.313rem;
    line-height: 1.75rem;*/
    color: var(--txt-color);
    font-weight: var(--font-weight-regular);
}

.contact-list-link a{
    color: var(--txt-color);
}

.contact-list-link a:hover{
    color: var(--orange-color);
}

.contact-list-icon{
    min-width: 23px;
    margin-right: 10px;
    text-align: center;
}

.float-cell-contact-list {
    display: flex;
    align-items: center;
    margin-top: 3px;
}

.float-cell-contact-list:last-child{
    margin-bottom: 0;
}

.subpage-banner {
    background: rgba(254,200,0,0.28);
    padding: 226px 0 89px 0;
    margin-top: 60px;
}

.subpage-inner h1, .subpage-inner h2 {
    margin: 0;
    color: var(--orange-color);
}

.subpage-inner h4{
    margin: 31px 0 0 0;
    padding-left: 30px;
    padding-bottom: 42px;
    font-weight: var(--font-weight-semi);
    position: relative;
}

.subpage-inner h4:before {
    height: calc(100% - 10px);
    background: var(--theme-color);
    width: 3px;
    position: absolute;
    left: 0px;
    top: 10px;
    content: "";
}

.subpage-background {
    position: absolute;
    right: 0;
    top: 0;
}

.content-info-page {
    padding: 85px 0 105px 0;
}

.content-info-inner h1 , .content-info-inner h2 , .content-info-inner h3 , .content-info-inner h4 , .content-info-inner h5 , .content-info-inner h6{
    margin-bottom: 20px;
}

.subpage-inner {
    max-width: 600px;
}

.subpage-banner.subpage-banner-short {
    padding-bottom: 0;
    padding-top: 153px;
}

.small-container{
    max-width: 1432px !important;
}

.kontakt-info-inner .switch-row{
    flex-direction: row-reverse;
}

.kontakt-info-inner .row{
    margin: 0 -20px;
}

.kontakt-info-inner .col-12{
    padding: 0 20px;
}

.kontakt-left{
    padding: 35px 40px 50px 40px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.30);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.30);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--white-color);
    margin: 125px 0 0 0;
}

.kontakt-page{
    padding: 100px 0 125px 0;
}

.kontakt-info-inner .col-md-7.col-12 {
    width: 59.80%;
}

.kontakt-info-inner .col-md-5.col-12 {
    width: 40.20%;
}

.form-field {
    margin-bottom: 19px;
    position: relative;
}

.position-wrap{
    position: relative;
}

.kontakt-left h4 {
    color: var(--orange-color);
    font-weight: var(--font-weight-regular);
    margin-bottom: 12px;
}

.personal-detail {
    margin-top: 43px;
}

.personal-detail textarea {
    margin-top: 27px;
}

.form-note {
    margin-top: 79px;
}

.chk-lbl {
    display: block;
    position: relative;
    padding-left: 38px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.313rem;
    letter-spacing: 0.05px;
    font-weight: var(--font-weight-medium);
    color: var(--txt-color);
}

.chk-lbl input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.chk-lbl .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 25px;
    width: 25px;
    border: 2px solid var(--theme-color);
}

.chk-lbl .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.chk-lbl input:checked ~ .checkmark:after {
    display: block;
}

.chk-lbl .checkmark:after {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transform: translate(-50%,-50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid var(--theme-color);
    border-width: 0 3px 3px 0;
} 

.form-note .chk-lbl{
    color: var(--theme-color);
}

.form-note p {
    font-size: 1.125rem;
    line-height: 1.563rem;
    letter-spacing: normal;
    margin-top: 13px;
}

.form-note p a{
    color: var(--txt-color);
    text-decoration: underline !important;
}

.form-note p a:hover{
    color: var(--orange-color);
}

.captcha-wrap {
    display: flex;
    width: auto;
    align-items: center;
    gap: 38px;
    margin-top: 27px;
    margin-bottom: 50px;
}

.captcha-right{
    font-size: 1.125rem;
    line-height: 1.563rem;
    letter-spacing: normal;
}

.select-drop{
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow-color);
    cursor: pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px; 
}

.kontakt-right-top {
    padding-right: 40px;
    margin-bottom: 88px;
}

.kontakt-right-middle h3 {
    margin-bottom: 21px;
}

.kontakt-right-middle h4{
    margin-bottom: 15px;
}

.kontakt-right-middle .contact-list-icon{
    position: relative;
    top: -2px;
}

.kontakt-right-middle .float-cell-contact-list{
    margin-top: 9px;
}

.kontakt-right-map {
    margin-top: 94px;
}

.form-check-wrap{
    margin: 5px 0;
}

.personal-detail-row {
    margin-bottom: 34px;
}

.form-field-remove{
    margin-bottom: 0 !important;
}

.form-note-remove {
    margin-top: 6px !important;
}

.personal-detail-bottom {
    margin-top: -19px;
}

.row-switch{
    flex-direction: row-reverse;
}

.assisted-part{
    padding: 100px 0 125px 0;
    overflow: hidden;
}

.assisted-box{
    padding: 33px 40px 8px 40px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.30);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.30);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--white-color);
}

.assisted-right .kontakt-right-top{
    margin-bottom: 125px;
}

.assisted-box-top{
    display: flex;
    width: auto;
    align-items: center;
    gap:19px;
    margin-bottom: 55px;
}

.assisted-box-top h3{
    margin: 0;
}

.assisted-box-bottom h4{
    margin: 0 0 5px 0;
}

.custom-point , .custom-point li{
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-point li {
    padding-left: 13px;
    position: relative;
    margin-bottom: 6px;
}

.custom-point li:before{
    position: absolute;
    left: 0px;
    top: 0px;
    content: "∙";
    color: var(--orange-color);
}

.custom-point {
    margin-bottom: 35px;
}

.assisted-left {
    margin-top: 126px;
    padding-left: 40px;
}

.assisted-inner .row{
    margin: 0;
}

.assisted-inner .col-12{
    padding: 0;
}

.slider-slot img{
    width: 100%;
}

.slick-prev, .slick-next{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.slick-prev:before, .slick-next:before{
    display: none;
}

.slick-prev{
    background: var(--yellow-color) url('../images/slider-left-arrow.png') no-repeat center center;
    left: 19px;
    z-index: 9;
}

.slick-prev:hover , .slick-prev:focus{
    background: var(--dark-yellow) url('../images/slider-left-arrow.png') no-repeat center center;
}

.slick-next{
    background: var(--yellow-color) url('../images/slider-right-arrow.png') no-repeat center center;
    right: 19px;
    z-index: 9;
}

.slick-next:hover , .slick-next:focus{
    background: var(--dark-yellow) url('../images/slider-right-arrow.png') no-repeat center center;
}

.fragen-inner{
    background: url('../images/fragen-bg.jpg') no-repeat right center;
    width: 100%;
    min-height: 170px;
    position: relative;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 22px 25px 25px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fragen-part{
    padding-bottom: 125px;
}

.fragen-inner h3{
    font-weight: var(--font-weight-regular);
    margin: 0 0 15px 0;
}

.fragen-inner .theme-btn{
    background: var(--white-color);
}

.fragen-inner .theme-btn:hover{
    background: #fff4d3;
}

.bottom-top-arrow{
  position: fixed;
  right: -100%;
  bottom: 0px;
  z-index: 99;
  width: 36px;
  height: 60px;
  line-height: 60px;
  background: var(--yellow-color);
  text-align: center;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-border-radius: 5px 5px 0px 0;
  border-radius: 5px 5px 0px 0;
}

.bottom-top-arrow.open{
  right: 20px;
}

.bottom-top-arrow:hover{
  background: var(--dark-yellow);
  color: var(--white-color);
}

#option2Div{
    display: none;
}

/*#personal-hide {
    display: none;
}

.personal-detail-row.is-show{
    display: block !important;
}*/

.hide{
    display: none;
}

.show{
    display: block;
}

/*New*/
.footer-part {
  padding: 15px 50px 10px 0px;
  min-height: 112px;
}
.footer-middle-bottom {
  margin-top: 51px;
}
.footer-logo {
  height: 135px;
  top: -23px;
}
.footer-right-top {
  margin-top: 0;
}
.footer-right-top li a:hover::before {
    position: absolute;
    left: -10px;
    height: 26px;
    width: 2px;
    background: var(--yellow-color);
    content: "";
    bottom: -8px;
}








@media(min-width: 1750px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
        max-width: 1720px;
        padding: 0;
    }
}

@media(max-width: 1870px){
    .footer-info-right {
        margin-left: 20px;
    }

    .footer-info-middle {
        padding-left: 25px;
    }

    .footer-logo{
        top: -24px;
    }

    .home-banner-bg {
        max-width: 98%;
        background-size: contain !important;
    }
}

@media(max-width: 1780px){
    .footer-middle-bottom ul li {
        margin-right: 15px;
    }

    .footer-middle-bottom ul li a{
        font-size: 1rem;
    }
}

@media(max-width: 1750px){
    body {
        font-size: 1.188rem;
        line-height: 1.813rem;
    }

    h1{
        font-size: 2.5rem;
        line-height: 3.125rem;
    }

    h3{
        font-size: 2.125rem;
        line-height: 2.75rem;
    }

    h4{
        font-size: 1.75rem;
        line-height: 2.375rem;
    }

    h5{
        font-size: 1.375rem;
        line-height: 2rem;
    }

    h6{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .home-below-right {
        margin-top: 126px;
        padding-left: 0;
    }

    .home-below-right .row {
        margin: 0 -12px;
    }

    .home-below-right .col-12 {
        padding: 0 12px;
    }

    .home-below-box {
        padding: 34px 0 25px 20px;
    }

    .home-below-box-title h4{
        font-size: 1.5rem;
        line-height: 2rem;
        padding-right: 14px;
    }

    .home-below-left-bottom {
        padding: 64px 40px 0 40px;
    }

    .subpage-background {
        width: 72%;
    }

    .subpage-background img{
        width: 100%;
    }
}

@media(max-width: 1680px){
    .footer-logo{
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    .footer-inner {
        padding-left: 290px;
    }

    .footer-part{
        padding-right: 20px;
    }

    .main-menu {
        padding-right: 120px;
    }
}

@media(max-width: 1550px){
    .kontakt-info-inner .row {
        margin: 0 -12px;
    }

    .kontakt-info-inner .col-12 {
        padding: 0 12px;
    }
}

@media(max-width: 1525px){
    .footer-logo {
        -webkit-transform: translateX(-115px);
        transform: translateX(-115px);
        top: auto;
        bottom: -1px;
    }

    .home-below-right .col-12 {
        width: 100%;
        margin-bottom: 25px;
    }

    .home-below-right .col-12:last-child{
        margin-bottom: 0;
    }

    .home-below-inner > .row .col-md-5.col-12{
        width: 60%;
    }

    .home-below-inner > .row .col-md-7.col-12{
        width: 40%;
    }

    .home-below-right {
        margin-top: 0;
        padding-left: 0;
    }

    .home-below-left-top , .home-below-left-bottom{
        max-width: 100%;
    }

    /*.footer-info-middle {
        max-width: 100%;
        width: 100%;
    }*/

    .footer-inner {
        padding-left: 290px;
    }

    /*.footer-right-top {
        margin-top: 22px;
    }*/

    .footer-right-bottom {
        margin-top: 12px;
    }

    .subpage-banner {
        padding: 190px 0 70px 0;
    }

    .footer-middle-bottom ul li img {
        top: 0px;
    }

    .footer-middle-bottom ul li a {
        font-size: 1.063rem;
        gap:5px;
    }

    .footer-middle-bottom ul li {
        margin-right: 10px;
    }

    .design-by {
        margin-left: 15px;
        top: -1px;
    }

    .footer-info-middle{
        margin-right: auto;
    }

    .footer-right-top li a{
        font-size: 1rem;
    }

    .footer-right-top li {
        margin-right: 20px;
    }
}

@media(max-width: 1400px){
    body {
        font-size: 1.063rem;
        line-height: 1.688rem;
    }

    h1{
        font-size: 2.188rem;
        line-height: 2.813rem;
    }

    h3{
        font-size: 1.875rem;
        line-height: 2.5rem;
    }

    h4{
        font-size: 1.625rem;
        line-height: 2.25rem;
    }

    h5{
        font-size: 1.375rem;
        line-height: 2rem;
    }

    h6{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .box-icon {
        min-width: 60px;
        padding-right: 12px;
        max-width: 60px;
    }
}

@media(max-width: 1340px){
    .footer-info-middle {
        max-width: 520px;
        margin-right: auto;
    }

    .footer-middle-top h6{
        font-size: 1rem;
    }
}

@media(max-width: 1300px){
    .main-menu > ul > li > a{
        font-size: 1.063rem;
    }

    .home-banner-bg{
        height: 850px;
    }
}

@media(max-width: 1270px){
    .subpage-banner {
        padding: 140px 0 30px 0;
    }
}

@media(max-width: 1200px){
    .main-menu > ul > li {
        margin-right: 25px;
    }

    .logo a {
        width: 240px;
        height: 112px;
        background-size: contain;
    }

    .logo a img {
        margin-top: -32px;
        margin-right: -10px;
        max-width: 140px;
    }

    .logo{
        left: -3px;
    }

    .header-part.sticky.sticky-fixed .logo{
        left: 0;
    }

    .header-part:before{
        height: 45px;
    }

    .main-menu > ul > li{
        padding-top: 7px;
    }

    .main-menu > ul > li > a:before {
        height: 28px;
        bottom: -6px;
    }

    .main-menu {
        width: calc(100% - 250px);
    }

    .header-part.sticky.sticky-fixed .logo .logo-txt {
        padding-top: 10px;
    }

    .logo a .logo-txt {
        padding-left: 20px;
        font-size: 1.125rem;
    }

    .float-cell-wrap{
        top: 20px;
    }

    .subpage-background {
        width: 60%;
    }

    .subpage-banner{
        margin-top: 45px;
    }

    .kontakt-right-top{
        padding-right: 0;
    }

    .footer-right-top {
        margin-top: 15px;
    }

    .footer-info-middle{
        max-width: 100%;
        width: 100%;
    }

    .footer-right-bottom {
        margin-top: 0;
    }

    .footer-right-top li a{
        font-size: 1rem;
    }

    .footer-right-top li {
        margin-right: 20px;
    }
}

@media(max-width: 991px){

    .home-below-inner > .row .col-md-5.col-12 {
        width: 100%;
    }

    .home-below-inner > .row .col-md-7.col-12{
        width: 100%;
    }

    .home-below-box-img img {
        width: 95%;
    }

    .home-below-right{
        margin-top: 50px;
    }

    .hamburger-menu {
        display: block;
        margin-left: auto;
        margin-right: 46px;
    }

    .header-inner {
        display: flex;
        width: auto;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: 0;
        max-width: 400px;
        background: var(--theme-color);
        height: 100vh;
        overflow-y: auto;
        padding: 70px 32px;
        width: 100%;
        display: none;
    }

    .main-menu > ul{
        display: block;
    }

    .main-menu.active{
        display: block;
    }

    .home-below-left-bottom {
        padding: 15px 0 0 0;
    }

    .main-menu > ul > li {
        padding-top: 10px !important;
        margin-right: 0 !important;
    }

    .float-cell-wrap {
        top: 0;
    }

    .burger {
        height: 45px;
        -webkit-border-radius: 0;
        border-radius: 0;
        margin-top: 0;
    }

    .float-cell-hover{
        width: 45px;
        height: 45px;
    }

    .float-cell-hover {
        padding: 14px;
        width: 41px;
        height: 45px;
        -webkit-border-radius: 4px 0 0 4px;
        border-radius: 0;
    }

    .float-cell-wrap.open .float-cell-box {
        margin-left: -20px;
    }

    .float-cell-box {
        width: 300px;
        background: var(--white-color);
        padding: 12px 15px 20px 34px;
        color: var(--orange-color);
    }

    .float-cell-wrap{
        right: -300px;
    }

    .float-cell-wrap.open .float-cell-hover {
        -webkit-border-radius: 4px;
        border-radius: 4px;
    }

    .float-cell-box p , .contact-list-link{
        font-size: 0.938rem;
        line-height: 1.5rem;
    }

    .subpage-background{
        display: none;
    }

    .subpage-banner , .subpage-banner.subpage-banner-short{
        padding: 120px 0 0 0;
    }

    .kontakt-info-inner .col-md-7.col-12 {
        width: 100%;
        margin-bottom: 30px;
    }

    .kontakt-info-inner .col-md-5.col-12 {
        width: 100%;
    }

    .kontakt-left{
        margin-top: 0;
    }

    .kontakt-right-top{
        margin-bottom: 50px;
    }

    .kontakt-right-map{
        margin-top: 50px;
    }

    .assisted-inner .col-12{
        width: 100%;
    }

    .assisted-left{
        padding-left: 0;
        margin-top: 0;
    }

    .assisted-part {
        padding: 50px 0 50px 0;
    }

    .assisted-right{
        margin-top: 0;
    }

    .assisted-right .kontakt-right-top {
        margin-bottom: 40px;
    }

    .assisted-inner.container-get-position {
        padding-right: 12px;
    }

    .assisted-part .row.row-switch {
        flex-direction: column-reverse;
    }
    .assisted-box {
        margin-bottom: 35px;
    }
}

@media(max-width: 767px){
    body{
        font-size: 1.063rem;
        line-height: 1.5rem;
    }

    h1{
        font-size: 1.75rem;
        line-height: 2.25rem;
    }

    h2{
        font-size: 1.75rem;
        line-height: 2.25rem;
    }

    h3{
        font-size: 1.5rem;
        line-height: 2rem;
    }

    h4 , .home-below-box-title h4{
        font-size: 1.375rem;
        line-height: 1.875rem;
    }

    h5{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    h6{
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    section{
        padding-bottom: 60px;
    }

    .home-below-left-top h4{
        line-height: 1.875rem;
    }

    .home-below-part {
        margin-top: -150px;
    }

    .lf-sp{
        padding-left: 0;
    }

    .home-below-left-top {
        padding: 37px 24px 44px;
    }

    .home-below-box-title h4 {
        margin: 3px 0 0 0;
    }

    .theme-btn {
        line-height: 50px;
        height: 50px;
        font-size: 1.063rem;
    }

    .box-icon {
        min-width: 50px;
        max-width: 50px;
    }

    .footer-inner {
        padding-left: 0;
    }

    .footer-logo {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        top: auto;
        bottom: -1px;
        width: 300px;
        background-size: contain;
        height: 128px;
        padding-right: 64px;
    }

    .footer-part {
        padding: 30px 20px 150px 20px;
    }

    .footer-middle-top h6 {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .footer-middle-top h4{
        margin-top: 8px;
    }

    .footer-middle-bottom ul{
        display: block;
    }

    .footer-middle-bottom ul li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-middle-bottom ul li strong {
        min-width: 30px;
    }

    .footer-info-middle{
        padding-left: 0;
    }

    .footer-info-right{
        margin-left: 0;
    }

    .footer-right-top li a{
        font-size: 1rem;
    }

    .home-banner-bg {
        max-width: 100%;
        background-size: cover !important;
        height: 400px;
    }
    .home-banner-bg {
        background-image: url(../images/banner-mobile.png) !important;
    }

    .design-by{
        top: 0;
    }

    .content-info-page {
        padding: 60px 0 40px 0;
    }

    .chk-lbl .checkmark{
        top: 0;
    }

    textarea {
        height: 150px;
        resize: none;
    }

    .form-note {
        margin-top: 25px;
    }

    .assisted-box {
        padding: 33px 20px 8px 20px;
    }

    .assisted-box-top img {
        max-width: 42px;
        min-width: 42px;
    }

    .assisted-box-top {
        margin-bottom: 35px;
    }

    .fragen-part {
        padding-bottom: 60px;
    }

    .slick-prev, .slick-next {
        width: 40px;
        height: 40px;
        background-size: 18px !important;
    }

    .kontakt-page {
        padding: 50px 0 60px 0;
    }

    .chk-lbl , .form-note p{
        font-size: 1.063rem;
    }

    .captcha-wrap{
        gap:15px;
    }
}

@media(max-width: 415px){
    .design-by {
        margin-left: 0;
        position: relative;
        top: 0;
        line-height: normal;
    }

    .footer-right-bottom {
        display: block;
        text-align: center;
    }

    .footer-info-right{
        width: 100%;
    }

    .footer-right-top , .footer-right-top ul{
        justify-content: center;
    }

    .design-by{
        margin-top: 8px;
    }

    .kontakt-left {
        padding: 35px 25px 50px 25px;
    }
}

@media(max-width: 370px){
    .header-part.sticky.sticky-fixed .logo .logo-txt {
        padding-top: 13px;
    }

    .logo a .logo-txt{
        font-size: 0.938rem;
        padding-left: 15px;
    }

    .logo {
        left: -15px;
    }
}

.map-show #map{
  width: 100%;
  height: 550px;
}
.formloader {
  float: right;
  width: 50px;
  height: 50px;
}
@media(max-width: 767px){
    .map-show #map{
        width: 100%;
        height: 350px;
    }
}