/*
========================
Header area start
========================
*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400;1,700&display=swap');

body {	
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #180303;	
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0,0,0,.5);   
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {   
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

.header-area {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: #fff;
    width: 100%;
    z-index: 999999999;
    transition: 0.2s all ease;
}



.headerfixed {
    padding: 5px 0;
    position: sticky;
    top: 0;
    background-color: #fff;
    width: 100%;
    z-index: 999999999;
    box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.1)
}















.navbar-nav li {
    padding: 10px 0px;
    padding-left: 40px;
}

.navbar-nav li a {
    font-size: 16px;
    font-weight: 300;
    color: #180303;
    transition: 0.2s all ease;
}

.navbar-nav li a:hover {
    opacity: .8;
}


.header-btn a {
    font-size: 16px;
    font-weight: 600;
    color: #FF2929;
    border: 1px solid #FF2929;
    border-radius: 7px;
    display: inline-block;
    padding: 9px 20px;
    text-transform: uppercase;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.header-btn a:hover {
    background: #FF2929;
    color: #FFF;
}

.navbar-brand img {
    width: 98px;
}

/* hamburger-area */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: none!important;
}

.hamburger:hover {
    opacity: 0.7; 
}

.hamburger.is-active:hover {
    opacity: 0.7; 
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;
     
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
    
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    outline: none;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
    outline: none; 
}

.hamburger-inner::before {
    top: -10px; 
}

.hamburger-inner::after {
    bottom: -10px; 
}

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    outline: none;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s 
    cubic-bezier(0.33333, 0.66667, 0.66667, 1), 
    opacity 0.1s linear; 
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s 
    cubic-bezier(0.33333, 0.66667, 0.66667, 1), 
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    outline: none;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s 
    cubic-bezier(0.33333, 0, 0.66667, 0.33333), 
    opacity 0.1s 0.22s linear; 
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s
    cubic-bezier(0.33333, 0, 0.66667, 0.33333), 
    transform 0.13s 0.25s 
    cubic-bezier(0.215, 0.61, 0.355, 1); 
}


/*=== hero-area start ===*/
.hero-area {
    background-image: url(images/bnr-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 180px 0;
}

.hero-left p {
    font-size: 16px;
    color: #180303;
    line-height: 32px;
}

.hero-left p strong {
    font-size: 700;
    color: #FF2929;
    margin: 20px 0
}

.hero-left h4 {
    font-size: 45px;
    font-weight: 700;
    line-height: 57px;
    color: #180303;
    margin-bottom: 25px;
}

.hero-left a {
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    background: #FF2929;
    display: inline-block;
    padding: 14px 35px;
    border-radius: 6px;
    margin-top: 30px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    box-shadow: 0 0 35px rgba(255, 41, 41, .4);
    -webkit-box-shadow: 0 0 35px rgba(255, 41, 41, .4);
    -moz-box-shadow: 0 0 35px rgba(255, 41, 41, .4);
}

.hero-left a:hover {
    opacity: .8;
}

/*=== plan-area start ===*/
.plan-area {
    padding: 100px 0;
}

.plan-upper h4 {
    font-size: 35px;
    font-weight: 700;
    color: #180303;
    text-align: center;
}

.plan-part {
    padding-bottom: 15px;
    border: 1px solid #EDEDED;
    text-align: center;
    border-radius: 5px;
    margin-top: 30px;
}

.plan-part h4 {
    font-size: 20px;
    font-weight: 700;
    color: #180303;
    text-transform: uppercase;
    padding: 30px 35px 20px;
    margin: 0 35px;
    border-bottom: 2px solid #FF2929;
    text-align: center;
}

.plan-part p {
    font-size: 16px;
    color: #776767;
    padding: 20px 35px;
    text-align: center;
    margin-bottom: 5px
}

.plan-part .inr-sml {
    font-size: 14px;
    font-weight: 700;
    color: #180303;
    background: #EEEEEE;
}

.plan-part ul {
    padding: 15px 35px;
    text-align: center;
}

.plan-part ul li {
    font-size: 16px;
    color: #180303;
    padding: 12px 0;
    border-bottom: 1px solid #EDEDED;
}

.plan-part h2 {
    font-size: 40px;
    font-weight: 700;
    color: #FF2929;
    text-align: center;
    padding: 15px 35px 0;
}

.plan-part h2 del {
    font-size: 25px;
    font-weight: 400;
    color: #776767;
}

.plan-part span {
    font-size: 14px;
    font-weight: 400;
    color: #776767;
    display: block;
    text-align: center;
    padding: 5px 35px 15px;
}

.plan-part a {
    font-size: 16px;
    font-weight: 700;
    color: #FF2929;
    display: inline-block;
    padding: 13px 45px;
    border-radius: 5px;
    border: 1px solid #FF2929;
    margin: 10px 35px 15px;
    text-transform: uppercase;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.plan-part a:hover,
.plan-actv a {
    background: #FF2929;
    color: #FFF;
}

.plan-actv a {
    box-shadow: 0 0 35px rgba(255, 41, 41, .4);
    -webkit-box-shadow: 0 0 35px rgba(255, 41, 41, .4);
}


.plan-actv h3 {
    font-size: 18px;
    font-weight: 700;
    color: #180303;
    background: #FFD1D1;
    text-transform: uppercase;
    text-align: center;
    padding: 15px 35px;
    border-radius: 4px;
}

.plan-upper {
    padding-bottom: 50px;
}

.plan-actv {
    background: #FFF;
    box-shadow: 0px 15px 30px #F1EEEE;
    -webkit-box-shadow: 0px 15px 30px #F1EEEE;
    margin-top: 0px;
}

/*=== zikzak-area start ===*/
.zikzak-area-1 {
    background-image: url(images/hero-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 110px 0;
}

.zikzak-cnt h4 {
    font-size: 35px;
    font-weight: 700;
    color: #180303;
    margin-bottom: 25px;
    line-height: 50px;
}

.zikzak-cnt p {
    font-size: 16px;
    line-height: 30px;
    color: #180303;
    margin: 30px 0;
}

.zikzak-cnt a {
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    background: #FF2929;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 0 35px rgba(255, 41, 41, .4);
    -webkit-box-shadow: 0 0 35px rgba(255, 41, 41, .4);
    -moz-box-shadow: 0 0 35px rgba(255, 41, 41, .4);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease; 
    margin-top: 20px;
}

.zikzak-cnt a:hover {
    opacity: .8;
}

.zikzak-item-1 {
    padding-left: 50px;
}

.zikzak-item-2 {
    padding-right: 50px;
}

.zikzak-area-2 {
    padding-top: 120px;
}

/*=== unsere-area start ===*/
.unsere-area {
    padding: 100px 0;
}

.unsere-upper h4 {
    font-size: 35px;
    font-weight: 700;
    color: #180303;
    text-align: center;

}

.unsere-upper {
    padding-bottom: 20px;
}

.unsere-item img {
    max-width: 110px;
}

.unsere-item {
    text-align: center;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    padding: 70px 15px;
    margin-top: 20px;
}

.unsere-item:hover {
    background: #FFF;
    box-shadow: 0 0 15px rgb(0, 0, 0, .1);
}

.unsere-item p {
    font-size: 18px;
    font-weight: 700;
    color: #180303;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 0;
}

/*=== contact-area start ===*/
.contact-area {
    background: #F9F9F9;
    padding: 100px 0;
}

.contact-left h4 {
    font-size: 35px;
    font-weight: 700;
    color: #180303;
    margin-bottom: 0;
}

.contact-right input {
    width: 100%;
    font-size: 16px;
    color: #776767;
    background: #FFFFFF;
    border: none;
    outline: none;
    display: block;
    padding: 25px 20px;
    border-radius: 7px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);

}

.contact-right form {
    position: relative;
}

.contact-right [type="submit"] {
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    background: #FF2929;
    text-transform: uppercase;
    padding: 15px 15px;
    width: 180px;
    display: block;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.contact-right [type="submit"]:hover {
    opacity: .8
}

/*=== footer-area start ===*/
.footer-area {
    background: #FFFFFF;
    padding: 100px 0;
}

.footer-cnt img {
    max-width: 100px;
}

.footer-cnt p {
    font-size: 16px;
    color: #776767;
    margin-top: 25px;
    line-height: 28px;
}

.footer-cnt h4 {
    font-size: 16px;
    font-weight: 700;
    color: #180303;
}

.footer-cnt ul {
    margin-top: 35px
}

.footer-cnt ul li a {
    font-size: 16px;
    color: #776767;
    text-decoration: underline;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.footer-cnt ul li a:hover {
    color: #000;
}

.footer-cnt ul li {
    font-size: 16px;
    color: #776767;
    line-height: 30px;
}

.footer-icn ul li a {
    text-decoration: none;
}

.footer-icn ul li i {
    color: #180303;
    margin-right: 18px;
    margin-top: 10px;
    font-size: 20px;
}

.footer-icn ul li {
    display: flex;
}

/*=== copyright-area start ===*/
.copyright-area {
    background: #180303;
    padding: 15px 0;
}

.copyright-area p {
    font-size: 16px;
    color: #FFF;
    margin-bottom: 0;
}


/*=== page-2 start ===*/
.sub-nav-part {
    padding: 40px 0 20px;
    border-top: 1px solid #FFB7B7;
}

.sub-nav-part ul {
    border: 1px solid #BFBFBF;
}

.sub-nav-part ul li {
    display: inline-block;
    padding-right: 30px;
}

.sub-nav-part ul li a {
    font-size: 18px;
    color: #3a3a3a;
    display: inline-block;
    padding: 15px 0;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.sub-nav-part ul li .active-p2 {
    background: #FF2929;
    padding: 15px 90px;
    color: #FFF;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.sub-nav-part ul li .active-p2:hover {
    opacity: .8;
}

/*=== starter-area start ===*/
.starter-area {
    padding: 10px 0;
}

.starter-upper h4 {
    font-size: 20px;
    font-weight: 500;
    color: #ff2929;
}

.starter-part {
    background: #F9F9F9;
    padding: 60px 40px;
    margin-top: 20px;

}

.starter-lft-inner h4 {
    font-size: 20px;
    font-weight: 500;
    color: #ff2929
}

.starter-lft-inner h4 span {
    color: #363636;
}

.st-inr-item img {
    max-width: 80px;
    margin-left: 15px;
}

.starter-left p {
    font-size: 16px;
    color: #686868;
    margin-top: 20px;
}

.starter-right-inner {
    background: #FFFFFF;
    border: 1px solid #AFAFAF;
    padding: 15px;
}

.starter-right-inner img {
    max-width: 30px;
}

.st-inrr-cnt {
    margin-left: 30px;
}

.st-inrr-cnt h4 {
    font-size: 17px;
    font-weight: 700;
    color: #ff2929;
    margin-bottom: 0;
    text-align: center;
}

.st-inrr-cnt p {
    font-size: 17px;
    font-weight: 700;
    color: #5e5e5e;
    margin-bottom: 0;
    text-align: center;
}

.st-right-btm {
    background: #FFFFFF;
    border: 1px solid #AFAFAF;
    padding: 15px;
    margin-top: 15px;
}

.st-right-btm h2 {
    font-size: 50px;
    font-weight: 500;
    color: #ff2929;
    text-align: center;
}

.st-right-btm  p {
    font-size: 15px;
    color: #686868;
    text-align: center;
    margin-bottom: 0;
}

/*=== cms-area start ===*/
.cms-area {
    padding: 20px 0;
}

.cms-upper h4,
.qual-upper h4 {
    font-size: 20px;
    font-weight: 500;
    color: #ff2929;
}

.cms-part {
    background: #F9F9F9;
    padding: 50px 40px;
    margin-top: 20px;
}

.cms-item {
    background: #FFF;
    padding: 10px;
    text-align: center;
    min-height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cms-item img {
    max-width: 140px;
}

.cms-part input[type="radio"] {
  display:none;
}

.cms-part label {
    display: block;
    border: 1px solid #000;
    cursor: pointer;
}

.cms-part .blank-label {
  display: none;
}

.cms-part input[type="radio"]:checked + label {
    border: 1px solid #FF2929;
}

/*=== qual-area ===*/
.qual-area {
    padding: 15px 0;
}

.qual-part {
    /*! background: #EBEBEB; */
    /*! padding: 45px 40px; */
    margin-top: 20px;
}

.qual-part p span {
    font-size: 18px;
    font-weight: 500;
    color: #ff2929;
}

.qual-part p {
    font-size: 18px;
    font-weight: 500;
    color: #363636;
    margin: 0;
}

.ccnt {   
    display: inline-block;
    position: relative;
    padding-left: 30px;
    padding-top: -5px;     
    cursor: pointer;  
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    font-weight: 500;
    color: #363636;
    margin: 0!important;
}

.ccnt input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
} 

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #000;
}
  
.ccnt:hover input ~ .checkmark {
    background-color: #fff;
}  

.ccnt input:checked ~ .checkmark {
    background-color: #fff;
}  

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

.ccnt input:checked ~ .checkmark:after {
    display: block;
}  

.ccnt .checkmark:after {
    left: 6px;
    top: 0px;
    width: 7px;
    height: 14px;
    border: solid #000;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.qual-area [value="Weiter"], [value="Jetzt kaufen"] {
    width: 300px;
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    background: #fff;
    padding: 13px;
    text-align: center;
    border: 1px solid #FF2929;
    border-radius: 10px;
    margin-top: 40px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.qual-area [value="Weiter"]:hover, [value="Jetzt kaufen"]:hover {
    background: #FF2929;
    color: #FFF;
}

/*=== page-3 start ===*/
.sub-nav-part ul li .icon {
    font-size: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    text-align: center;
    color: #FFF;
    background: #FF3131;
    border-radius: 50%;
    padding: 0;
}

.actung-part {
    background: #FEFCFC;
    padding: 20px 20px;
    border: 1px solid #ECECEC;
    border-radius: 5px;
}

.actung-part h4 {
    font-size: 28px;
    font-weight: 500;
    color: #0c5460;
}
 
.actung-part .bdr {
    padding-bottom: 18px;
    border-bottom: 1px solid #ECECEC;
    margin-top: 0;
}   

.actung-part p {
    font-size: 16px;
    color: #686868;
    margin: 18px 0;
}

.qual-2 input {
    width: 100%;
    display: block;
    font-size: 16px;
    color: #495057;
    margin-top: 20px;
    border: 1px solid #CED4DA;
    outline: none;
    padding: 10px 15px;
    border-radius: 5px;
}

.qual-2 [value="Prüfen"] {
    width: 100px;
    display: block;
    text-align: center;
    font-size: 16px;
    color: #FFF;
    background: #FF2929;
    padding: 10px 12px;
    border: none;
    border-radius: 5px;
    margin-top: 25px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.qual-2 [value="Prüfen"]:hover {
    opacity: .8;
}

/*=== page-3 start ===*/
.qual-part table {
    width: 100%;
    border-top: 1px solid #DEE2E6;
}

.qual-part table tr {
    border-top: 1px solid #DEE2E6;
    padding: 10px 15px;
}

.qual-part table tr th {
    padding: 15px;
    max-width: 16.6666%;
    font-size: 16px;
    font-weight: 700;
    color: #212529;
}

.qual-part table tr td {
    font-size: 16px;
    font-weight: 400;
    color: #212529;
    padding: 10px;
    max-width: 16.6666%;
}

.qual-part tr td img {
    max-width: 70px;
    cursor: pointer;
}

.qual-part table tr:hover {
    background: #D9D9D9;
}

.qual-part table tr:first-child:hover {
    background: initial;
}

/*=== page-5 start ===*/
.daten-part input,
.daten-part select {
    width: 100%;
    display: block;
    font-size: 16px;
    color: #495057;
    padding: 10px 15px;
    border: 1px solid #ddd;
    outline: none;
    margin-bottom: 20px;
    border-radius: 5px;
}

.daten-right-inr {
    background: #FFF;
    border: 1px solid #B0B0B0;
    border-radius: 12px;
    padding: 15px 15px;
    margin-bottom: 40px;
}

.daten-right h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    background: #FF2929;
    padding: 15px 15px;
    border-radius: 10px 10px 0 0;
    position: relative;
    top: 20px;
}

.daten-right input {
    width: 100%;
    display: block;
    font-size: 16px;
    color: #495057;
    border: 1px solid #CED4DA;
    background: #FFF;
    outline: none;
    padding: 10px 15px;
    margin-top: 30px;
    border-radius: 5px;
}

.daten-right span {
    width: 100%;
    height: 1px;
    display: block;
    background: linear-gradient(to right, #FFF, #D4D4D4, #FFF);
    margin: 35px 0;
}


.daten-right [type="submit"] {
    width: 100%;
    border: 1px solid #FF2929;
    background: #fff;
    margin-top: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    border-radius: 8px;
    padding: 12px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.daten-right [type="submit"]:hover {
    background: #FF2929;
    color: #FFF;
}

.daten-part select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select.png);
    background-repeat: no-repeat;
    background-size: 24px!important;
    background-position: 98.6% 50%;
}






























