@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body,
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;

    /*Change*/
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #000;
    font-size: 30px;
    line-height: 1.4;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;

    /*Change*/
    color: #333D47;
    font-weight: 700;
    margin-bottom: 20px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

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

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

    /*Change*/
    color: #eee;
}

a:hover {

    /*Change*/
    color: #F15A5E;
}

img {
    max-width: 100%;
}


/*Change*/
h1, h2 {
    font-size: 60px;
    line-height: 1.25;
    font-weight: 800;
}

h3 {
    font-size: 30px;
    line-height: 1.2;
}

h4 {
    font-size: 18px;
    line-height: 1.6;
}

h5 {
    font-size: 16px;
    line-height: 1.8;
}

h6 {
    font-size: 14px;
    line-height: 1.9;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    color: #fff;
    border: 1px solid #6e6e6e;
    height: 58px;
    padding: 0 16px;
    font-size: 18px;
    color: #646363;

}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 1px solid #6e6e6e;
    padding: 12px 16px;
    width: 100%;
    height: 85px;
    font-size: 18px;
    color: #646363;
}

select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 11px;
    background: url(images/arrow_bottom.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}


input[type="submit"] {
    background-color: transparent;
    color: #50b848;
    height: 61px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: normal;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 2px solid #50b848;
    font-size: 20px;
}

input[type="submit"]:hover {
    border-color: transparent;
    background-color: #50b848;
    color: #fff;
}


::-webkit-input-placeholder {
    opacity: 1;
    color: #707171;
}

:-ms-input-placeholder {
    opacity: 1;
    color: #707171;
}

::-moz-placeholder {
    opacity: 1;
    color: #707171;
}

:-moz-placeholder {
    opacity: 1;
    color: #707171;
}

.form-group {
    margin-bottom: 28px;
}

.labeltxt {
    font-weight: 300;
    margin-bottom: 10px;
}

ol li, ul li, dl li {
    margin-bottom: 10px;
}

ol li:last-child, ul li:last-child, dl li:last-child {
    margin-bottom: 0;
}

/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}


/* custom radio */

.form_input_radio {
    position: relative;
    margin: 0;
    padding-left: 30px;
}

.form_input_radio span {
    margin: 0;
    padding: 0;
}

.form_input_radio input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio input[type="radio"] + span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio input[type="radio"] + span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio input[type="radio"]:not(:checked) + span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {

    } */

.form_input_radio input[type="radio"]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* custom checkbox */
.form_input_check {
    position: relative;
    margin: 0;
    padding-left: 40px;
}

.form_input_check span {
    margin: 0;
    padding: 0;
}

.form_input_check input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check input[type="checkbox"] + span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 26px;
    height: 26px;
    border: 2px solid #000;
    background: transparent;
}

.form_input_check input[type="checkbox"] + span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 26px;
    height: 26px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/checked.svg) no-repeat center center #fff;
    background-size: 15px;
}

.form_input_check input[type="checkbox"]:not(:checked) + span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {

    } */

.form_input_check input[type="checkbox"]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/**/

.btn {
    padding: 19px 0px;
    line-height: 1;
    color: #fff;
    background: #F15A5E;
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid transparent;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-transform: uppercase;
    min-width: 259px;
    border-radius: 12px;
    font-weight: 800;
}

.btn-dark {
    background: #333d47;
}

.btn-dark:hover {
    border-color: #333d47 !important;
    color: #333d47 !important;
    background-color: transparent;
}

.btn:hover {
    border-color: #F15A5E;
    color: #F15A5E;
    background-color: transparent;
}

/*Header*/
.navbar-brand {
    padding: 0;
    margin: 0;
    width: 131px;
    display: inline-block;
}

.hdr_sec {
    padding: 30px 0;
}

/*Nav*/
.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav > li {
    margin: 0 8px;
    padding: 0;
    position: relative;
    padding: 5px 0;
}

.navbar-nav > li:last-child {
    margin-right: 0;
}

.navbar-nav > li:first-child {
    margin-left: 0;
}

.navbar-nav > li > a {
    color: #333D47;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
    position: relative;
    padding: 0px 8px;
    font-weight: 700;
}

.navbar-nav > li > a:hover {
    color: #F15A5E;
}

/*SubMenu*/
.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    width: 200px;
    padding: 0;
}

.sub-menu > li {
    width: 100%;
    display: block;
}

.sub-menu > li > a {
    color: #000;
    display: block;
    width: 100%;
    padding: 13px 15px;
    line-height: 1.2;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a {
    background: #53c8e8;
    color: #fff;
}

.menu-item-has-children > a {
    padding-right: 16px;
}

.menu-item-has-children > a::after {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background: url(./images/drop_icn.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
}

.menu-item-has-children > a::after {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 5px;
    background: url(./images/drop_icn.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
}

/*Removed Ul Style*/
.ul_style > ul {
    padding-left: 0;
    list-style: none;
}


/*******Customize Css********/


.bnr_container {
    max-width: 1675px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    margin: auto;
}

.hdr_btn {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-left: 30px;
}

.bnr_pad {
    padding: 92px 0 25px 0;
    min-height: 100vh;
}

.bnr_content {
    max-width: 683px;
}


.bnr_content h1 {
    margin-bottom: 35px;
}

.bnr_content p {
    margin-bottom: 40px;
}

.multple {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.multple a:first-child {
    margin-right: 32px;
}

.btn_tran {
    border-color: #F15A5E;
    color: #F15A5E;
    background-color: transparent;
}

.btn_tran:hover {
    border-color: transparent;
    color: #fff;
    background-color: #F15A5E;
}

.sec_gap {
    padding: 100px 0;
}

.hdr.text-center p {
    width: 77%;
    margin: auto;
}

.hdr h2 {
    margin-bottom: 45px;
}

.logo_area {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    margin: -12px;
    margin-top: 75px;
}

.logo_inn {
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 166px;
    background: #f1f1f2;
    border-radius: 18px;
}

.logo_inn_otrr {
    width: calc(100% / 4);
    padding: 12px;

}

#wiesoHyptPart .logo_inn_otrr {
    width: calc(100% / 3);
}

.logo_inn_otrr img {
    max-width: 60%;
}

.hypt_sec {
    background-color: #333d47;
}

.white h2 {
    color: #FFFFFF;
}

.hypt_otr {
    margin: -30px -15px;
}

.hypt_otr > div {
    padding: 30px 15px;
}


.hypt_inn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.hypt_txt h3 {
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 800;
}

.hypt_txt p {
    color: #fff;
    margin-bottom: 0px;
    font-weight: 400;
}

.hypt_txt {
    width: calc(100% - 212px);
    padding-left: 30px;
}


.extra_pad {
    width: 92%;
    margin: auto;
}

.hyt_img {
    background-color: #fff;
    width: 212px;
    height: 212px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hyt_img img {
    width: 90px;
}

.btn_top {
    margin-top: 75px;
}

.wrt_flx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
}

.rgtt_arr {
    height: 100%;
}

.write_sec {
    background-color: #333d47;
}

.lfft_arr p {
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 22px;
    font-size: 22px !important;
    line-height: 28px;
}

.lfft_arr h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #fff;
}

.lfft_arr h6 {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.rgtt_arr {
    margin-left: auto;
    height: 100%;
    width: 380px;
    position: absolute;
    right: 0;
}

.lfft_arr {
    width: calc(100% - 380px);
    padding-right: 85px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.rgtt_arr {
    height: 475px;
    width: 380px;
}

.team_row {
    margin: 0 -12px;
}

.team_row > div {
    padding: 0px 12px;
}

.radius15 {
    border-radius: 15px;
    overflow: hidden;
}

.cmn_otr {
    margin-bottom: 40px;
}

.team_row {
    text-align: center;
}

.team_row h3 {
    font-weight: 600;
    margin: 40px 0px 10px;
    color: #333D47;
    font-size: 22px !important;
}

.team_row a {

}

.team_row .btn.btn_tran {
    border-color: #333D47;
    color: #333D47;

}

.team_row .btn.btn_tran:hover {
    background-color: #333D47;
    border-color: transparent;
    color: #fff;

}

/*poulami*/
/*newsletter sec*/

.newsletter-box-outr {
    padding-bottom: 85px;

}

.newsletter-box {
    background: #f15a5e;
    padding: 80px 30px;
    border-radius: 12px;
}

.hdr.white p {
    color: #fff;
}

.btn.wht-btn {
    background: #fff;
    color: #F15A5E;
    border-color: #fff;
}

.btn.wht-btn:hover {
    background: none;
    color: #fff;
}

.newsletter-sec .hdr h2 {
    margin-bottom: 25px;
}

.newsletter-sec .btn_top {
    margin-top: 50px;
}

/*footer*/
.footer {
    padding: 36px 0;
}

.ftr_btm p, .ftr_btm p a {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #6f767d;
}

.ftr_btm p a {
    vertical-align: unset;
}

.ftr_btm p a:hover {
    color: #f15a5e;
}


.container-fluid {
    padding-left: 40px;
    padding-right: 40px;

}


.lnding_flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lft_lnding {
    display: flex;
    align-items: center;
}

.img_one {
    width: 142px;
    margin-right: 15px;
}

.img_two {
    width: 117px;
    margin-right: 15px;
}

.img_three {
    width: 79px;
}

.lft_lnding > div img {
    width: 100%;
}

.sprt_txt a {
    color: #333D47;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

}

.sprt_txt a:hover {
    color: #f15a5e;
}

.hdr_sec.landing {
    padding: 18px 0;
    position: relative;
}

/**/
.lnding_ban_bk {
    background-color: #F15A5E;
    padding: 55px 0 140px 0;
}

.bnr_hdr h1 {
    font-size: 50px;
    font-weight: 800;
    font-style: italic;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.bnr_hdr p {
    font-size: 26px;
    color: #fff;
    font-style: italic;
    margin-bottom: 45px;

}

.lnding_para p {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    max-width: 1024px;
    margin: auto;
    line-height: 24px;
    padding-left: 15px;
    padding-right: 15px;
}

.lnding_para p .lnding_para_high {
    font-weight: 800;
    font-style: italic;
}

.bnr_hdr {
    max-width: 600px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.sldr_immm {

}

.sldr_immm img {
    width: 100%;
}

.landing_sldr_sec {
    margin-top: -100px;
}

.slick-slide {
    outline: none !important;
}

.landing_sliderr_otr {
    max-width: 788px;
    margin: auto;
}


.slick-prev, .slick-next {
    width: auto;
    height: auto;
}

.slick-prev::before, .slick-next::before {
    font-size: auto;
    line-height: 1;
    opacity: 1;
    color: #000;
    content: "" !important;
    width: 19px;
    height: 34px;
    display: block;
}

.slick-prev::before {
    background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/prev.png);
    background-size: 100% 100%;
}

.slick-next::before {
    background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/next.png);
    background-size: 100% 100%;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.landing_hd h3 {
    font-weight: 800;
    font-size: 22px;
    font-style: italic;
    color: #333D47;
    margin-bottom: 35px;
    text-align: center;
}

.landing_gap {
    padding: 55px 0;
}

.dlvry_sec .landing_gap {
    border-bottom: 2px solid #dbdddf;
}

.landing_ftr p {
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing_ftr p span img {
    width: 30px;
    margin: 0px 8px;
}

.dlvry_list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    margin: -15px auto;

}

.dlvry_list ul li {
    width: 50%;
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.dlvry_list ul li .dlvry_img {
    width: 50px;
}

.dlvry_list ul li .dlvry_img img {
    width: 100%;
}

.dlvry_list ul li p {
    width: calc(100% - 50px);
    padding-left: 25px;
    margin: 0;
}

.dlvry_list ul li p, .land_time_list li, .chf_bxx p, .mapp_landing p {
    color: #333D47;
    font-size: 18px;
    line-height: 1;
}

.land_time_list li {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.land_time_list ul, .dlvry_list ul {
    max-width: 715px;
    margin-left: auto;
    margin-right: auto;
}

.landing_time .landing_hd {
    border-bottom: 2px solid #dbdddf;
}

.cheff_inn {
    max-width: 710px;
    margin: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;

}

.landing_chef .landing_gap {
    border-bottom: 2px solid #dbdddf;
}

.chf_immg {
    width: 90px;
    margin-right: 20px;
}

.chf_immg img {
    width: 100%;
}

.chf_bxx p {
    margin-bottom: 0;
    color: #fff;
    line-height: 1.2;
}

p .strr {
    font-weight: 800;
    font-style: italic;
    margin-bottom: 12px;
    display: block;
}

.chf_bxx {
    width: calc(100% - 163px);
    padding: 35px 55px;
    background: #f15a5e;
    border-radius: 15px;
    border-bottom-left-radius: 0 !important;

}

.mapp_landing .btn {
    margin-top: 20px;
}

.footer.landing_ftr {
    background: transparent;
}

/*.landing_mp .landing_gap{
	border-bottom: 2px solid #dbdddf;
}*/
.ftr_btm p {
    margin-bottom: 0;

}

.landing_ftr p, .landing_ftr p a {
    font-size: 17px !important;
    font-weight: 300 !important;
    font-style: italic !important;
    justify-content: flex-start;
}

.mapp_landing h3 {
    text-align: left;
    margin-bottom: 20px !important;
}


/**/
.mbl_on {
    display: none;
}

.mobile-menu {
    display: none;
}

.bnr.bnr_pad .bnr_row.row {
    align-items: center;
}

#down {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    background: #F15A5E;
    border-radius: 50%;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: 50px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}

#down img {
    width: 20px;
    margin: 0 auto;
}

.ftr_btm img {
    width: 80px;
    margin-left: auto;
}

.linkedin img {
    width: 25px;
}

.mobile-menu.newover .overlay {
    width: 100%;
}

.hdr_sec {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 5;
}

.ft_logo_holder .ft_logo_hover {
    display: none;
}

.ft_logo_holder .ft_logo {
    display: block;
}

.ft_logo_holder:hover .ft_logo {
    display: none;
}

.ft_logo_holder:hover .ft_logo_hover {
    display: block;
}

.bnr_pad {
    position: relative;
}


.bnr_rgt {
    position: absolute;
    bottom: 0;
    top: inherit;
    right: 0;
}

.bnr_img {
    max-width: 90%;
}

.bnr_pad {
    display: flex;
    align-items: center;
}

.hdr_sec {
    position: fixed;
    background: #fff;
}


/*Pascal*/
.lang-switcher {
    position: fixed;
    right: 30px;
    top: 9px;
    list-style: none;
    display: flex;
    width: auto;
    justify-content: space-between;
    margin: 0;
}

.lang-switcher a {
    font-size: 18px;
    color: #343d47;
}

.lang-switcher .lang-item {
    padding-left: 15px;
}

.lang-switcher .current-lang a {
    font-weight: 700;
    text-decoration: underline !important;
}

.navbar-collapse .lang-switcher {
    top: 25px;
}

.anchor {
    width: 100%;
    height: 1px;
    position: absolute;
    display: block;
    margin-top: -88px;
}

#burger {
    display: none;
    width: 40px;
    height: 23px;
    margin: 0 !important;
    background-image: url(../img/new/burger.svg);
    cursor: pointer;
    z-index: 99;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
}

#burger.dark {
    display: none;
    width: 40px;
    height: 23px;
    margin: 0 !important;
    background-image: url(../img/new/burger-dark.svg);
    cursor: pointer;
    z-index: 99;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
}

#checkBurger {
    display: none !important;
}

#checkBurger:checked ~ #navbarSupportedContent {
    display: flex !important;
    position: absolute;
    top: 68px;
    width: calc(100% + 80px);
    background: #333D47;
    left: -40px;
    text-align: center;
    height: calc(100vh - 88px);
}

#checkBurger:checked ~ #navbarSupportedContent.dark {
    display: flex !important;
    position: absolute;
    top: 68px;
    width: calc(100% + 80px);
    background: #333d47;
    left: -40px;
    text-align: center;
    height: calc(100vh - 88px);
}

#checkBurger:checked ~ #burger {
    background-image: url(../img/new/close.svg);
}

#checkBurger:checked ~ #burger.dark {
    background-image: url(../img/new/close-dark.svg);
}

#checkBurger:not(:checked) ~ #navbarSupportedContent {
    display: none;
}


#kundenPart {
    padding-bottom: 160px;
}

.logo {
    width: 100px;
}

header {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    padding: 20px 0 !important;
}

.feedback-bot {
    height: 100vh;
}

.feedback-bot header {
    padding: 12px 0 !important;
}

.navbar-nav > li > a {
    text-transform: inherit;
    font-weight: 500;
    font-size: 18px;
}

.btn {
    min-width: 234px;
    padding: 15px 0;
}

.supported-title {
    font-size: 18px;
    color: #646363;
    font-style: italic;
}

.team_img img {
    max-width: 200px;
}

.feedback-bot .col-12 {
    padding: 0;
}

.feedback-bot .logo {
    width: 90px;
}

.feedback-bot .navbar a {
    margin: 0 auto;
}

.feedback-bot .powered, .customer-page .powered {
    box-shadow: 0 0 10px #8c8c8c54;
    font-size: 14px;
    font-style: italic;
    color: #333d47;
    text-align: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
}

.feedback-bot .powered strong, .customer-page .powered strong {
    font-weight: 700;
    color: #333d47;
    margin-left: 5px;
}

.feedback-bot .powered:hover, .customer-page .powered:hover {
    color: #333d47 !important;
}

.solution-by {
    font-size: 16px;
    font-style: italic;
    color: #333d47;
    margin-left: 20px;
}

.solution-by strong a {
    font-weight: 700;
    color: #333d47 !important;
}

.solution-by:hover {
    color: #333d47 !important;
}

.feedback-bot header {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.feedback-bot footer, .customer-page footer {
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
}

#myLandbot {
    width: 100%;
    height: 80vh;
}

.customer-page #hdr_no_scrl {
    position: relative;
    box-shadow: none !important;
}

.customer-page .navbar {
    display: flex;
    justify-content: space-between;
}

footer {
    background: none !important;
}

footer p, .customer-page footer a {
    color: #6f767d !important;
}

.landing_time p {
    font-size: 18px;
    text-align: center;
    line-height: 24px;
}

#popup {
    top: 0;
    position: fixed;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99;
    align-items: center;
    cursor: pointer;
}

.popup-container {
    max-width: 1140px;
    background: #fff;
    margin: 0 auto;
    height: 100%;
    max-height: 80vh;
    height: 100%;
    width: 100%;
}

.popup-close {
    width: 40px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.screenshot {
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.background-screenshot-desktop {
    display: block;
}

.background-screenshot-mobile {
    display: none;
}

.col-12 {
    width: 1140px;
    margin: 0 auto;
}

.col-8 {
    width: calc((100% - 30px) / 3 * 2);
}

.col-6 {
    width: calc((100% - 30px) / 2);
    position: relative;
}

.col-4 {
    width: calc((100% - 30px) / 3);
}

.col-3 {
    width: calc((100% - 180px) / 4);
}

.section-space {
    padding: 80px 0;
}

.section-space-b {
    padding-bottom: 80px;
}

.section-space-t {
    padding-top: 80px;
}

#wrapper {
    background: #F5F5F5;
}

.page-id-83 #wrapper {
    background: #fff !important;
}

#comingSoon {
    width: 1140px;
    margin: 0 auto;
    margin: 0 auto;
    background: #e84146;
    padding: 160px;
    margin-top: 90px;
}

.logo {
    width: 100px;
    margin-bottom: 40px;
}

h1 {
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 45px;
    line-height: 48px;
    margin-bottom: 40px;
}

h2 {
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 40px;
    max-width: 960px;
    margin: 0 auto;
    margin-bottom: 40px !important;
    color: #333d47;
}

h3 {
    font-weight: 900;
    font-style: italic;
    font-size: 18px !important;
    margin-bottom: 20px;
    color: #333d47;
    line-height: 24px;
}

.lead-text {
    font-size: 20px;
    line-height: 26px;
}

p {
    color: #333d47;
    text-align: left;
    font-size: 16px;
    line-height: 20px;
}

.privacy-policy h2 {
    margin-top: 40px;
    font-size: 25px;
}

.post-password-form {
    width: 500px;
    height: 208px;
    margin: 0 auto;
    margin-top: 110px;
}

.post-password-form input[type="submit"] {
    background: #F15A5E;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    padding: 15px 40px;
    height: auto;
    width: auto;
}

/*home*/
#banner {
    background-image: url(img/background.jpg);
    background-size: cover;
    display: block;
    padding-top: 80px;
}

.banner-container {
    display: flex;
    justify-content: space-between;
}

.header-image {
    margin-bottom: -80px !important;
    width: 40%;
}


.header-content {
    width: 60%;
    padding-right: 30px;
}

.header-content, .header-content p {
    text-align: left;
    color: #fff;
}

.header-content .btn {
    background: #e84146;
    color: #fff;
    text-align: center;
    border-color: #e84146;
    margin-top: 30px;
    margin-left: 0;
    max-width: 250px;
}

.header-content h1 {
    margin-bottom: 80px;
}

.header-content .btn:hover {
    background: none;
    border-color: #fff;
}

input {
    padding: 20px;
    width: 80%;
    border-radius: 5px;
    border: 0;
    background: #fff;
    outline: none;
}

.what-icons {
    display: flex;
    text-align: center;
    padding-top: 160px;
}

.what-icons img {
    width: auto;
    height: 90px;
    margin-bottom: 30px;
}

#so-funktionierts p {
    text-align: center;
}

.what-video p {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
}

#ctaBanner {
    background: #e84146;
    color: #fff;
    display: block;
}

.ctabanner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#ctaBanner span {
    font-size: 34px;
    text-align: left;
    font-style: italic;
}

#ctaBanner .btn {
    margin-right: 0;
}

.team-container {
    display: flex;
    justify-content: space-between;
}

#teamPart h3 {
    color: #333d47;
}

.team-member-image {
    overflow: hidden;
    padding-top: 100%;
    position: relative;
    border-radius: 500px;
    margin-bottom: 20px;
    border: 5px solid #333d47;
}

.team-member-image img {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    left: 0;
}

/*subpages*/
header {
    z-index: 99;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
}

.inner-header {
    width: 1140px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
}

header .header-btn {
    display: flex;
}

header .header-btn .text-btn {
    color: #333D47;
    margin-top: 17px;
    margin-left: 20px;
}

header .header-btn .text-btn:hover {
    color: #E84146;
}

header .header-btn .btn {
    background: #E84146;
    color: #fff;
    width: 200px;
    height: 50px;
    margin-left: 20px;
    border-color: #e84146;
}

header .header-btn .btn:hover {
    background: none;
    color: #E84146;
}

header .logo {
    margin-bottom: 0;
    margin-top: 5px;
}

.content {
    padding-top: 60px;
}

.text-content {
    padding: 160px 20px;
    width: 1140px;
    margin: 0 auto;
    text-align: left;
    color: #333d47;
    min-height: 90vh;
}

.text-content h2 {
    margin-left: 0;
    font-size: 20px;
    line-height: 24px;
    margin-top: 40px;
    margin-bottom: 20px !important;
}

.text-content h3 {
    margin-left: 0;
    font-size: 16px;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 10px !important;
}

.text-content a {
    color: #333d47;
}


.LandbotLauncherContent__bubble {
    width: 60px !important;
}

.loged-in {
    display: none !important;
}

.profile-submenu {
    color: #333D47;
    position: absolute;
    top: 71px;
    background: white;
    display: none;
    padding: 20px 50px;
    border-radius: 3px;
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.2);
    margin-left: -104px;
}

.profile img {
    cursor: pointer;
    margin-left: 20px;
    width: 40px;
    height: 40px;
    margin-top: 6px;
}

.profile:hover .profile-submenu {
    display: block !important;
}

.profile-submenu:hover {
    color: #e84146;
}

.page-id-60 .loged-in {
    display: block !important;
}

.page-id-60 .loged-out {
    display: none !important;
}

.menu {
    display: flex;
}

.new-menu .header-btn {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

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

.right-nav-points {
    display: flex;
}

/*restaurant*/
p a {
    color: #333D47;
}

.standard-info {
    background: #e84146;
    text-align: left;
    padding: 40px 0;
}

.standard-info .standard-info-container {
    display: flex;
    justify-content: space-between;
}

.location {
    font-size: 24px;
    font-style: italic;
}

.standard-info h1 {
    margin-bottom: 10px;
}

.btn-container {
    display: flex;
    width: 450px;
    text-align: center;
    margin-top: 40px;
    justify-content: space-between;
}

.btn-container .btn {
    width: calc((100% - 10px) / 2);
    margin: 0;
}

.btn-container .btn:nth-last-child(1) {
    background: none;
    color: #fff;
}

#focusImage {
    width: 100%;
}

.rest-images .image-container {
    position: absolute;
    width: 100%;
}

.rest-images .image-container img {
    width: auto;
}

.preview-images {
    margin-top: 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.preview-item {
    width: calc((100% - 40px) / 3);
    overflow: hidden;
    position: relative;
    padding-top: 30%;
    cursor: pointer;
}

.preview-item img {
    position: relative;
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.restaurant {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}

.restaurant img {
    width: 100%;
}

.restaurant .col-6 {
    padding-right: 80px;
}

.open-hours {
    display: flex;
    margin-top: 40px;
}

.open-hours .day {
    margin-right: 20px;
}

.icon-part {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.icon-item {
    display: flex;
    width: 200px;
    align-items: center;
    margin-bottom: 20px;
}

.icon-item img {
    margin-right: 20px;
    max-width: 60px;
}

.special {
    border-top: 1px solid #e84146;
    border-bottom: 1px solid #e84146;
    padding: 40px 0;
    margin-bottom: 40px;
}

.special p {
    font-size: 24px;
    font-style: italic;
    color: #e84146;
    text-align: center;
}

.swiper-container {
    width: 100%;
    height: 450px;
    display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
    color: #fff;
}

#map {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    width: 100% !important;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
    background: #F15A5E !important;
    border: none !important;
}

.moove-gdpr-infobar-allow-all {
    border-radius: 100px !important;
    background: #fff !important;
    color: #e84146 !important;
}

.moove-gdpr-infobar-reject-btn {
    border-radius: 100px !important;
    background: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.moove-gdpr-modal-allow-all {
    border-radius: 100px !important;
    background: #F15A5E !important;
    color: #fff !important;
    border: none !important;
}

.moove-gdpr-modal-save-settings {
    border-radius: 100px !important;
    background: none !important;
    color: #000 !important;
    border: none !important;
}

.moovegdpr-arrow-close:before, .moovegdpr-arrow-close:after {
    color: #000;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button {
    background: none !important;
}

.moove-gdpr-tab-nav span {
    color: #000;
}

.menu-item-selected .moove-gdpr-tab-nav span {
    color: #F15A5E;
}

.footer-bot .inner-footer {
    width: 1140px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    padding-bottom: 0;
}

.footer-bot p {
    color: #acacac;
    font-size: 14px;
}

.footer-bot a {
    color: #acacac;
    font-size: 14px;
}

.footer-bot a:hover {
    color: #e84146;
}

.footer {
    background: #333d47;
    padding: 40px 0;
}

.footer .inner-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: #fff;
    font-size: 16px;
}

.footer a {
    color: #fff;
    font-size: 16px;
}

.footer a:hover {
    color: #e84146;
}

.footer .logo {
    text-align: right;
    margin-bottom: 0;
}

.hours-mobile {
    display: none;
}

.customer-page .logo {
    width: auto;
    height: 48px;
}

header.dashboard {
    padding: 10px 0 !important;
}

header.dashboard img {
    width: 70px;
}

header.dashboard .navbar {
    justify-content: space-between;
}

header.dashboard span {
    font-size: 18px;
    color: #333D47;
    font-style: italic;
}

#overlay-dashboard {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    position: absolute;
    background: #fff;
}

#overlay-dashboard p {
    font-size: 24px;
    color: #333D47;
    font-style: italic;
}

.verticals {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.vertical {
    width: calc((100% - 60px) / 3);
    text-align: center;
}

.vertical img {
    max-width: 140px !important;
    margin-bottom: 20px;
}

.vertical .btn {
    background: #333d47;
    margin-top: 0 !important;
    border-color: #333d47;
}

.vertical .btn:hover {
    background: none;
    color: #333d47;
}

.kunden_sec {
    background: #f1f1f2;
}

.kunden_sec .logo_inn {
    background: #fff;
}

.preis_sec {
    background: #eaebec;
}

.price-packages {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.price-container {
    width: calc(100% / 4);
    background: #fff;
    position: relative;
    border-right: 1px solid #eaebec;
}

.price-header {
    padding: 30px 30px 0 30px;
    text-align: center;
}

.price-header h3 {
    text-transform: uppercase;
    font-size: 24px !important;
    color: #333d47;
}

.price-header .monthly {
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    color: #333d47;
}

.price-header .monthly span {
    display: block;
    color: #333d47;
}

.price-header .monthly span, .price-header .plus, .price-header .setup {
    font-size: 16px;
    color: #333d47;
}

.price-header .plus {
    display: block;
}

.price-content {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.price-content ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
    padding: 0 20px 10px 20px;
}

.price-content li {
    color: #333d47;
    text-align: left;
    font-size: 14px;
    padding: 10px;
    border-bottom: 1px solid #eaebec;
    margin-bottom: 0;
    min-height: 40px;
    font-weight: normal;
}

.price-content li:nth-last-child(1) {
    border-bottom: none;
}

.price-container .hdr_btn {
    margin-left: 0;
    margin-bottom: 20px;
    margin-top: 20px;
}

.price-container:nth-child(2) {
    background: #F15A5E;
}

.price-container:nth-child(2) .hdr_btn a {
    background: #fff;
    color: #F15A5E;
    border-color: #fff;
}

.price-container:nth-child(2) .hdr_btn a:hover {
    background: none;
    color: #fff;
}

.price-container:nth-child(2) h3, .price-container:nth-child(2) li, .price-container:nth-child(2) .monthly, .price-container:nth-child(2) .setup, .price-container:nth-child(2) .monthly span, .price-container:nth-child(2) .plus {
    color: #fff;
}

.popular {
    border-radius: 12px 12px 0 0;
    color: #fff;
    font-size: 16px;
    padding: 20px;
    border-bottom: 1px solid;
    margin-top: -62px;
    background: #F15A5E;
}

.price-container:nth-child(1) {
    border-radius: 12px 0 0 12px;
}

.price-container:nth-child(4) {
    border-radius: 0 12px 12px 0;
}

.enterprise p {
    width: 100% !important;
    padding: 0 20px;
    text-align: left !important;
    font-weight: 400;
    margin-bottom: 15px !important;
    font-size: 14px;
}

.enterprise ul {
    list-style-type: inherit;
    padding-left: 40px;
}

.enterprise li {
    border: none;
    padding: 0;
    min-height: inherit;
}

.discount {
    font-weight: 400 !important;
    text-decoration: line-through;
    display: inline-block !important;
    font-size: 34px !important;
    opacity: 0.7;
}

.discout-price {
    display: inline-block !important;
    font-size: 34px !important;
}

.widget-container {
    max-width: 400px;
    width: 100%;
    display: block;
}

.widget-inner-container {
    padding: 10px;
    border-radius: 11px 11px 0 0;
    border: 2px solid #F15A5E;
    background: #F15A5E;
    display: flex;
    align-items: center;
}

.widget-container #image {
    width: 82px;
}

.widget-container .rate-image {
    position: relative;
}

.widget-container #image img {
    position: absolute;
    top: 0;
    margin-top: -20px;
}

.widget-container #rate-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% - 82px);
    padding-left: 20px;
    justify-content: space-between;
    color: #fff;
    font-style: italic;
}

.widget-container #recco-text {
    display: flex;
}

.widget-container #recco-desc {
    display: flex;
    color: #fff;
    flex-wrap: wrap;
    font-size: 24px;
    margin-left: 15px;
}

.widget-container #recco-desc .first-line {
    display: flex;
    margin-top: -6px;
}

#recco .recommendation {
    font-size: 100px;
    font-weight: 900;
    color: white;
    font-style: italic;
    margin-top: 41px;
    line-height: 0;
}

.widget-container #rate {
    font-weight: 900;
    font-size: 35px;
}

.widget-container .note {
    color: #616365;
    font-size: 14px;
    display: block;
}

.widget-container .widget-footer {
    padding: 10px 10px 10px 112px;
    border-radius: 0 0 11px 11px;
    border: 1px solid #C2C5C8;
    margin-top: -2px;
    z-index: -1;
    position: relative;
}

.widget-container #rate-text img {
    width: 50px;
    margin-right: 15px;
}

.widget-container #recco-footer.widget-footer {
    display: flex;
    padding-left: 10px;
    justify-content: space-between;
}

.widget-container #recco-footer.widget-footer img {
    width: 50px;
}

@media only screen and (max-width: 650px) {
    .widget-container #image {
        width: 60px;
    }

    .widget-container #image img {
        margin-top: -30px;
    }

    .widget-container #rate-text {
        width: calc(100% - 60px);
    }

    .widget-container #rate-text img {
        margin-right: 0;
    }

    .widget-container .widget-footer {
        padding-left: 10px;
    }

    .widget-container #recco-desc .first-line {
        min-width: 100%;
    }

    .widget-container #recco-desc {
        font-size: 20px;
        margin-left: 10px;
    }

    #recco .recommendation {
        margin-top: 25px;
        font-size: 60px;
    }
}


/****************************************/
/********************Responsive********************/
/****************************************/

@media only screen and (min-width: 1920px) {

    .container-fluid {
        max-width: 2000px;
        margin: auto;
    }

}


/*Disable Rule Customize For Nav*/
@media only screen and (min-width: 1200px) {
    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}


@media only screen and (max-width: 1680px) {
    .bnr_container {
        max-width: 1500px;
    }

    .bnr_pad {
        padding: 120px 0 20px 0;
    }
}


@media only screen and (max-width: 1440px) {
    .bnr_container {
        max-width: 1240px;
    }

    /*.navbar-nav > li > a {
    font-size: 17px;
}*/
    .btn {
        padding: 16px 0px;
        font-size: 14px;
        min-width: 220px;
    }

    .bnr_content h1 {
        margin-bottom: 25px;
    }

    body {
        font-size: 25px;
    }

    .bnr_pad {
        padding: 88px 0 0 0;
    }

    .sec_gap {
        padding: 100px 0;
    }

    .logo_area {
        margin-top: 40px;
    }

    .logo_inn {
        height: 145px;
    }

    .hypt_txt h3 {
        font-size: 17px;
    }

    .hyt_img {
        width: 180px;
        height: 180px;
    }

    .hypt_txt {
        width: calc(100% - 180px);
        padding-left: 20px;
    }

    .btn_top {
        margin-top: 50px;
    }

    .lfft_arr h5 {
        font-size: 16px;
    }

    .lfft_arr h6 {
        font-size: 19px;
    }

    .rgtt_arr {
        height: 410px;
    }

    .hdr.text-center p {
        width: 75%;
    }

    .newsletter-box {
        padding: 60px 30px;
    }

    .newsletter-box-outr {
        padding-bottom: 60px;
    }

    .footer {
        padding: 27px 0;
    }

    .ftr_btm p, .ftr_btm p a {
        font-size: 16px;
    }

    .extra_pad {
        width: 96%;
    }


    /*Res Lansing Page*/
    .bnr_hdr h1 {
        font-size: 45px;
    }

    .bnr_hdr p {
        font-size: 22px;
        margin-bottom: 35px;
    }

    .lnding_para p {
        font-size: 18px;
        line-height: 24px;
        max-width: 550px;
    }

    .dlvry_list ul li p, .land_time_list li, .chf_bxx p, .mapp_landing p {
        font-size: 19px;
    }

    .land_time_list li {
        margin-bottom: 22px;
    }

    .landing_gap {
        padding: 50px 0;
    }

    .landing_ftr p, .landing_ftr p a {
        font-size: 14px !important;
    }

    .landing_ftr p span img {
        width: 22px;
        margin: 0px 7px;
    }


    /*Landing Page*/
    .hdr_sec {
        padding: 25px 0;
    }

    /*.navbar-nav > li > a {
	font-size: 15.5px;
}*/
    .ftr_btm p, .ftr_btm p a {
        font-size: 16px;
    }

}

.friends-text {
    line-height: 28px;
}


@media (max-width: 1300px) {

    .bnr_container {
        width: 100%;
        padding: 0 40px;
    }

}


@media (max-width: 1200px) {
    .inner-header, .col-12 {
        width: 90% !important;
    }

    .text-content {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .footer-bot .inner-footer {
        width: 90%;
    }

    #comingSoon {
        width: 90%;
    }

    .btn-container {
        width: 100%;
    }

    #banner {
        padding-top: 80px;
    }

    .header-content h1 {
        margin-bottom: 40px;
        font-size: 40px;
    }

    .header-content .btn {
        margin-bottom: 80px;
    }

    #map {
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        filter: grayscale(100%);
        width: 1140px;
    !important;
    }

    #bannerPart .bnr_container {
        margin-top: 40px;
    }

    #bannerPart .col-md-6:nth-child(1) {
        width: 100% !important;
        max-width: inherit !important;
        flex: inherit !important;
    }

    h1 {
        font-size: 40px;
        line-height: 43px;
    }

    h2 {
        font-size: 35px;
        line-height: 38px;
    }

}


@media (max-width: 1100px) {

    .price-packages {
        flex-wrap: wrap;
        margin-top: 0;
    }

    .price-container {
        width: 100%;
        margin-bottom: 20px;
        border: none;
        border-radius: 12px !important;
    }

    .price-container:nth-child(2) {
        margin-top: 60px;
        border-radius: 0 0 12px 12px !important;
    }

    .price-container:nth-child(1), .price-container:nth-child(3), .price-container:nth-child(4) {
        border-radius: 12px;
    }

    .price-container .hdr_btn {
        margin-right: 0;
    }

    .price-container:nth-child(4) {
        padding-bottom: 20px;
        margin-bottom: 0;
    }

    .price-container:nth-child(4) .monthly {
        margin-bottom: 30px !important;
    }

    .standard-info-container {
        flex-wrap: wrap;
    }

    .col-6 {
        width: 100%;
        position: inherit;
    }

    .image-container {
        display: none;
    }

    .swiper-container {
        display: block;
    }

    .icon-item {
        width: calc(100% / 4);
    }

    #bannerPart .bnr_container {
        margin-top: 60px;
    }

    #bannerPart .col-md-6 {
        max-width: 600px;
    }

    #bannerPart .bnr_content {
        max-width: inherit;
    }

    #bannerPart .bnr_rgt {
        position: relative;
        margin: 0 auto;
        margin-top: 40px;
        flex: inherit;
    }

    #bannerPart {
        height: auto;
        min-height: inherit !important;
    }

    #down {
        display: none;
    }

    .sec_gap {
        padding: 60px 0;
    }

    .logo_area {
        margin-top: 20px;
    }

    #funktionenPart .col-md-6 {
        width: 100%;
        flex: inherit;
        max-width: inherit;
    }

    #funktionenPart .hyt_img {
        width: 120px;
        height: 120px;
    }

    #funktionenPart .hypt_txt {
        width: calc(100% - 120px);
    }

    #funktionenPart .hyt_img img {
        width: 60px;
    }


    h1 {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    #bannerPart .lead-text {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    #bannerPart .bnt_btn {
        width: 475px;
        margin: 0 auto;
    }

    #kundenPart {
        padding-bottom: 100px;
    }

    .hdr_btn {
        margin-right: 80px;
    }

    #burger {
        display: block;
        top: 10px;
        right: 0;
    }

    #burger.dark {
        display: block;
        top: 10px;
        right: 0;
    }

    #navbarSupportedContent {
        display: none;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav a {
        color: #fff !important;
        font-size: 22px !important;
    }

    #teamPart {
        padding-top: 80px;
    }


    .verticals {
        flex-wrap: wrap;
    }

    .vertical {
        width: 100%;
    }

    .vertical {
        margin-bottom: 20px;
    }

    .vertical:nth-last-child(1) {
        margin-bottom: 0;
    }


}

@media (max-width: 920px) {
    .icon-item {
        width: calc(100% / 2);
    }

    .header-content {
        width: 100% !important;
        margin-bottom: 40px;
        padding-right: 0 !important;
    }

    .banner-container {
        flex-wrap: wrap;
    }

    input {
        width: 100%;
    }

    .header-content h1 {
        text-align: center;
    }

    .header-content .btn {
        margin: 0 auto;
        margin-top: 20px;
    }

    .header-image {
        margin: 0 auto;
        width: 80%;
    }

    .logo_inn {
        height: 115px;
    }

    #kundenPart {
        padding-bottom: 80px;
    }

}

@media (max-width: 768px) {
    .section-space {
        padding: 40px 0;
    }

    .section-space-b {
        padding-bottom: 40px;
    }

    #banner {
        padding-top: 40px;
    }

    .content {
        padding-top: 65px;
    }

    header .logo {
        width: 85px;
    }

    .customer-page header {
        padding: 10px 0 !important;
    }

    .customer-page .logo {
        width: 115px;
    }

    .inner-header {
        padding: 10px 0;
    }

    header .header-btn {
        display: none;
    }

    header .header-btn .text-btn {
        display: block;
        margin-left: 0;
        border-bottom: 1px solid #e0dcdc;
        padding: 15px;
        margin-top: 0;
    }

    header .header-btn .btn {
        margin: 0 auto;
        margin-top: 20px !important;
        margin-bottom: 20px;
    }

    #comingSoon {
        padding: 160px 0;
    }

    .profile img {
        margin-top: 4px;
        margin-right: 65px;
        width: 35px;
        height: 35px;
    }

    .profile-submenu {
        position: absolute;
        top: 67px;
        width: 100%;
        background: #fff;
        left: 0;
        text-align: center;
        margin-left: 0;
        border-radius: 0;
    }

    .swiper-container {
        height: 350px;
    }

    .inner-footer {
        flex-wrap: wrap;
    }

    .inner-footer .col-8, .inner-footer .col-4, .inner-footer p {
        width: 100%;
        text-align: center;
    }

    .inner-footer p {
        margin-bottom: 10px;
    }

    .right-nav-points {
        display: block;
    }

    .what-icons {
        flex-wrap: wrap;
        padding-top: 120px;
        max-width: 450px;
        margin: 0 auto;
    }

    .whatItem {
        margin-bottom: 40px;
    }

    .whatItem:nth-last-child(1) {
        margin-bottom: 0;
    }

    .what-icons img {
        margin-bottom: 20px;
    }

    .col-4 {
        width: 100%;
    }

    .team-container {
        flex-wrap: wrap;
        max-width: 450px;
        margin: 0 auto;
    }

    .col-3 {
        width: 100%;
    }

    .team-member {
        margin-bottom: 40px;
    }

    .team-member:nth-last-child(1) {
        margin-bottom: 0;
    }

    .col-8 {
        width: 100%;
    }

    .ctabanner-container {
        flex-wrap: wrap;
    }

    #ctaBanner span {
        text-align: center;
        margin-bottom: 20px;
        font-size: 24px;
    }

    .ctabanner-container .btn {
        margin: 0 auto !important;
    }

    .mgbutton {
        width: 100%;
        height: 42px;
    }

    .feedback-bot #hdr_no_scrl {
        padding: 10px 0 !important;
    }

    .container {
        width: calc(100% - 80px) !important;
        padding: 0;
        max-width: inherit !important;
    }

    .lfft_arr {
        width: 100%;
        padding-bottom: 0;
        padding-top: 60px;
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .lfft_arr p {
        text-align: center;
    }

    .rgtt_arr {
        position: relative;
        margin: 0 auto;
        margin-bottom: -40px;
    }

    .logo_area {
        display: block;
    }

    .logo_inn_otrr {
        width: 280px !important;
        margin: 0 auto;
    }

    #kundenPart {
        padding-bottom: 60px;
    }

    .team_row .col-md-4 {
        margin-bottom: 40px;
    }

    .team_row .col-md-4:nth-last-child(1) {
        margin-bottom: 0;
    }

    .linkedin img {
        width: 45px;
    }

    .hdr.text-center p {
        width: 100%;
    }

    .ftr_btm p, .ftr_btm p a {
        text-align: center;
    }

    .ft_logo_holder .ft_logo {
        margin: 0 auto;
        margin-top: 20px;
    }

    .slick-next {
        right: -25px;
    }

    .slick-prev {
        left: -25px;
    }

    .customer-page .logo {
        height: 36px;
        width: auto;
    }

}

@media (max-width: 640px) {

    .friends-text {
        line-height: 20px;
    }

    .icon-item {
        width: 100%;
    }

    .swiper-container {
        height: 250px;
    }

    .btn-container, .open-hours, .icon-part {
        margin-top: 20px;
    }

    .btn-container {
        flex-wrap: wrap;
    }

    .btn-container .btn {
        width: 100%;
        margin-top: 20px !important;
    }

    .special {
        padding: 20px 0 !important;
    }

    .restaurant .col-6 {
        padding-right: 0;
    }

    .hours-desk {
        display: none;
    }

    .hours-mobile {
        display: block;
    }

    .sec_gap {
        padding: 40px 0;
    }

    h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px !important;
    }

    h2 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px !important;
    }

    #bannerPart .bnt_btn {
        display: block;
        width: 220px;
        text-align: center;
    }

    #bannerPart .bnt_btn .btn {
        margin-bottom: 20px;
        margin-right: 0;
    }

    #bannerPart .bnt_btn .btn:nth-child(2) {
        margin-bottom: 0;
    }

    .hypt_otr .col-md-6 {
        padding-right: 0;
        padding-left: 0;
    }

    .container, .bnr_container, .container-fluid {
        width: 90% !important;
        padding: 0;
    }

    header .btn {
        min-width: 140px;
        padding: 13px 0;
    }

    .hdr_btn {
        margin-right: 60px;
    }

    #bannerPart .bnr_container {
        margin-top: 40px;
    }

    .lead-text {
        font-size: 18px;
        line-height: 22px;
    }

    #checkBurger:checked ~ #navbarSupportedContent {
        height: calc(100vh - 80px);
        top: 60px;
    }

    .navbar-collapse .lang-switcher {
        width: 70px;
        top: 89px;
        padding: 0;
    }

    .navbar-collapse .lang-switcher a {
        color: #fff;
    }

    .btn-reservation {
        margin-right: 5px !important;
    }

    #funktionenPart h2 {
        margin-bottom: 40px !important;
    }

    #funktionenPart .hypt_inn {
        align-items: flex-start;
    }

    #funktionenPart .hypt_txt {
        width: calc(100% - 100px);
    }

    #funktionenPart .hyt_img {
        margin: 0 auto;
        margin-bottom: 20px;
        width: 80px;
        height: 80px;
    }

    #funktionenPart .hyt_img img {
        width: 50px;
    }

    .hypt_otr > div {
        padding: 20px 0;
    }

    #kundenPart {
        padding-bottom: 40px;
    }

    .lfft_arr {
        padding-top: 40px;
    }

    .newsletter-box {
        padding: 40px;
    }

    .newsletter-box-outr {
        padding-bottom: 40px;
    }

    footer {
        padding-top: 0;
    }

    .anchor {
        margin-top: -82px;
    }

    .chf_bxx {
        padding: 15px;
        width: 100%;
    }

    .chf_immg {
        width: 100px;
    }

    .landing_mp .btn {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .dlvry_list ul li {
        width: 100%;
        margin-bottom: 0;
    }

    .landing_gap {
        padding: 40px 0;
    }

    .lnding_ban_bk {
        padding-top: 40px;
    }

    .customer-page h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .customer-page .bnr_hdr p {
        font-size: 20px;
    }

    .mapp_landing h3, .mapp_landing p, .mapp_landing .col-sm-5 {
        text-align: center;
    }
}

@media screen and (max-width: 320px) {
    .hdr_btn {
        display: none;
    }
}

@media screen and (max-width: 1200px) {

    .popup-container {
        width: 90%;
        max-height: 90%;
        height: 100%;
    }

    .popup-close {
        width: 30px;
        top: 5px;
        right: 5px;
    }

}

@media screen and (max-width: 768px) {

    .popup-container {
        width: 90%;
        height: 70%;
    }

    .background-screenshot-desktop {
        display: none;
    }

    .background-screenshot-mobile {
        display: block;
    }

}


.new-banner {
    background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/buecher-banner-d.jpg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    padding-top: 0;
    margin-top: 92px;
    min-height: calc(100vh - 92px);
}

.new-banner.gastro {
    background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/gastro-banner-d.jpg);
    background-position: bottom right;
}

.new-banner.commerce {
    background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/commerce-banner-d.jpg);
    background-position: center right;
}

.new-banner h1, .new-banner p {
    color: #fff;
}

.new-banner .btn_tran {
    border-color: #fff;
    color: #fff;
}

.new-banner.banner-home {
    background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/home-banner-new.jpg);
    background-position: top right;
}

.new-banner-en {
    background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/books-banner-d-en.jpg);
}

#botIntroduction img {
    width: 300px;
    margin-bottom: 20px;
}

#dashboardPart {
    background-image: url('https://join-hypt.com/wp-content/themes/hypt/img/new/dashboard-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

#dashboardPart p, #dashboardPart h2 {
    color: #fff !important;
}

#dashboardPart .row {
    align-items: center;
}

#botExplainedLong h2 {
    text-align: center;
}

.paragraph {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.paragraph-image {
    background: red;
    min-width: 380px;
    min-height: 380px;
    overflow: hidden;
    border-radius: 15px;
    width: 380px !important;
    height: 380px !important;
}

.paragraph-image img {
    width: 100%;
}

.paragraph-content {
    padding: 0 30px;
}

.paragraph:nth-last-child(1) {
    margin-bottom: 0;
}

.paragraph:nth-child(2n-1) .paragraph-image {
    order: 2;
}

.paragraph:nth-child(2n-1) .paragraph-content {
    order: 1;
}

#ctaBanner {
    background: #F15A5E;
}

#ctaBanner .col-md-6:nth-last-child(1) {
    text-align: right;
}

#ctaBanner h2 {
    margin-bottom: 0 !important;
    color: #fff;
}

#ctaBanner .btn {
    background: #fff;
    color: #F15A5E;
    border-color: #fff;
}

#ctaBanner .btn:hover {
    background: none;
    color: #fff;
}

#botExplained {
    background: #f1f1f2;
}

.line {
    position: absolute;
    height: calc(100% - 180px);
    width: 4px;
    background: #989DA2;
    left: 60px;
    z-index: 0;
    top: 0;
}

.line-arrow {
    position: absolute;
    width: 30px;
    left: 47px;
    bottom: 155px;
    z-index: 0;
}

.steps {
    width: 700px;
    margin: 0 auto;
    position: relative;
    padding-top: 40px;
}

.step {
    display: flex;
    margin-bottom: 40px;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    position: relative;
    z-index: 1;
}

.step-image {
    background: #989DA2;
    border-radius: 15px;
    min-width: 120px;
    min-height: 120px;
    width: 120px;
    height: 120px;
    padding: 20px;
    margin-right: 20px;
}

.step p {
    margin: 0 !important;
    width: auto !important;
    text-align: left !important;
    max-width: 300px;
}

.step p span {
    display: block;
    width: 100%;
    font-weight: bold;
}

.step:nth-last-child(1) {
    margin-bottom: 0;
}

.step:nth-last-child(1) .step-image {
    background: #333D47;
}

.step:nth-last-child(1) span {
    margin-top: 60px;
}

.step:nth-last-child(1) p {
    max-width: inherit;
}

.step-content {
    text-align: left;
}

.step .btn {
    margin-top: 10px;
}

.step-start-image {
    width: 700px;
    margin: 0 auto;
    overflow: hidden;
    height: 300px;
    border-radius: 15px;
}

@media (max-width: 1440px) {
    .new-banner {
        min-height: calc(100vh - 88px);
        margin-top: 88px;
    }
}

@media (max-width: 1100px) {
    #bannerPart.new-banner {
        background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/buecher-banner-m.jpg);
        min-height: calc(100vh - 88px) !important;
    }

    #bannerPart.new-banner-en {
        background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/books-banner-m-en.jpg);
        min-height: calc(100vh - 88px) !important;
    }

    #bannerPart.banner-home {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .new-banner.gastro {
        background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/gastro-banner-m.jpg) !important;
    }

    .new-banner.commerce {
        background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/commerce-banner-m.jpg) !important;
    }

    .new-banner .bnt_btn {
        text-align: center;
    }

    .new-banner.banner-home {
        background-image: url(https://join-hypt.com/wp-content/themes/hypt/img/new/home-banner-new-m.jpg) !important;
    }

    #bannerPart.banner-home .bnr_container {
        margin: 0 !important;
    }

}

@media (max-width: 990px) {

    .paragraph-image {
        order: 1 !important;
        margin-bottom: 20px;
    }

    .paragraph-content {
        order: 2 !important;
    }

    .paragraph-content p {
        text-align: center;
    }

    .paragraph {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        margin-left: 4%;
        -ms-flex: 0 0 46%;
        flex: 0 0 46%;
        max-width: 46%;
    }
}


@media (max-width: 768px) {
    #bannerPart.new-banner {
        background-position: bottom right;
    }

    .new-banner .bnt_btn {
        text-align: center;
    }

    #ctaBanner .col-md-6 {
        text-align: center !important;
    }

    #ctaBanner .col-md-6:nth-child(1) {
        padding-bottom: 0 !important;
    }

    .step-start-image {
        width: 100%;
        height: auto;
    }

    .steps {
        width: 100%;
    }

    .step {
        margin-right: 0;
        width: 100%;
    }

    .line-arrow {
        bottom: 180px;
    }

    .line {
        height: calc(100% - 200px);
    }
}

@media (max-width: 640px) {
    #bannerPart.new-banner {
        min-height: calc(100vh - 82px) !important;
        margin-top: 82px;
    }
}

header.dashboard {
    z-index: 99;
}

.tabs {
    position: relative;
    z-index: 3;
    display: flex;
    padding: 40px 40px 20px 40px;
    width: 100%;
    background: #F5F5F5;
}

.tab {
    padding: 5px 30px;
    background: none;
    border-radius: 100px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #333D47;
}

.active-tab {
    background: #e84146;
    color: #fff;
}

.dashboards {
    margin-top: -32px;
}

.dash-content.active {
    display: block !important;
}

.dash-content {
    display: none;
}