@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/*==Font-setup==*/

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    color: #000;
    background: #fff;
}

a,
a:hover {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

/*==Basic-setup==*/

/* scroll-bar */
.scrolltotop {
  width: 37px;
  height: 37px;
  line-height: 37px;
  border-radius: 50%;
  background: #F66913;
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  position: fixed;
  right: 25px;
  bottom: 15px;
  animation: lab_top_up 5s linear infinite;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
  display: none;
}

.scrolltotop i {
  color: #ffff;
  font-size: 20px;
}


/*===this-is-code-start===*/
.container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

.header-area {
  background: #ffffff;
  padding: 8px 0;
}

.header-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
}

.header-left img {
  max-width: 162px;
}

.header-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 15px;
}

.header-right ul li button {
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #001011;
  padding: 12px 16px;
  background: #eef9ef;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.header-right ul li button:hover {
  opacity: 0.8;
}

/*==modal-css==*/
.modal-body1 h2 {
  font-weight: 500;
  font-size: 32px;
  color: #001011;
  margin-top: 80px;
}

.modal-body1 p {
  font-weight: 400;
  color: #213E46;
  font-size: 16px;
  margin-top: 25px;
  line-height: 27px;
}

.modal-body1 p a {
  color: #213E46;
  text-decoration: underline;
}

.modal1-img-main img {
  width: 100%;
  margin-top: 25px;
}

.modal1-btm {
  margin-top: 20px;
}

.modal1-btm h3 {
  font-weight: 700;
  font-size: 16px;
  color: #213E46;
  margin-top: 25px;
}

.modal-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    justify-content: center;
    align-items: flex-start; 
    z-index: 9999;
}

.modal-inner {
    background: #fff;
    width: 90%;
    max-width: 660px;
    margin-top: 50px;
    border-radius: 5px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0);
    transition: .25s ease-in-out;
}

.modal-box.show .modal-inner {
    transform: scale(1);
}

.modal-header {
  font-weight: 500;
  font-size: 14px;
  padding: 13px 20px;
  border-bottom: 1px solid #ebeced;
  position: sticky;
  top: 0;
  z-index: 10;
  text-transform: uppercase;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    color: #444;
}

.close-btn i {
  font-size: 25px;
  padding-right: 18px;
}

.modal-body {
    padding: 3px 20px 15px 20px;
    overflow-y: auto;
    max-height: calc(80vh - 60px);
}

/*==hero-section==*/
.hero-area {
  background: #0D242C;
  padding: 128px 0 0 0;
}

.hero-main {
  max-width: 786px;
  margin: auto;
}

.hero-main-cnt {
  max-width: 740px;
  margin: auto;
}

.hero-list {
  max-width: 554px;
}

.hero-main h4 {
  font-weight: 600;
  font-size: 14px;
  color: #DADEDF;
}

.hero-main h2 {
  font-weight: 500;
  font-size: 32px;
  color: #ffffff;
  margin-top: 15px;
}

.hero-main h3 {
  font-weight: 500;
  font-size: 24px;
  color: #DADEDF;
  margin-top: 15px;
  line-height: 35px;
}

.hero-list ul {
  display: grid;
  grid-template-columns: 49% auto;
  row-gap: 20px;
  margin-top: 40px;
  justify-content: space-between;
}

.hero-list ul li {
  font-weight: 400;
  font-size: 16px;
  color: #DADEDF;
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
  column-gap: 10px;
  line-height: 22px;
}

.hero-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon svg path {
  fill: #586E74;
}

.hero-list ul li:nth-of-type(3) img {
  max-width: 20px;
}

.hero-pg-box {
  background: #3A4B51;
  padding: 16px;
  border-radius: 12px;
  margin-top: 30px;
}

.hero-pg-box p {
  font-weight: 400;
  font-size: 16px;
  color: #DADEDF;
  line-height: 25px;
}

.hero-img {
  position: relative;
  bottom: -50px;
}

.hero-img img {
  border-radius: 12px;
  box-shadow: 0px 6px 14px -7px rgba(0,0,0,.5);
  margin-top: 30px;
  width: 100%;
}

/*==wichtig-section==*/
.wichtig-area {
  background: #ffffff;
  padding: 100px 0;
}


.wichtig-main {
  display: grid;
  grid-template-columns: auto 340px;
  column-gap: 35px;
  max-width: 1060px;
  margin: auto;
}

.sidebar {
  position: sticky;
  top: 20px;
  height: max-content;
  background: #F2F2F2;
  border-radius: 12px;
  padding: 20px 20px;
}

.sidebar h4 {
  font-weight: 500;
  font-size: 16px;
  color: #001011;
}

.sidebar ul {
 margin-top: 20px;
 display: flex;
 flex-direction: column;
 row-gap: 20px;
}

.link-item {
  font-weight: 400;
  font-size: 14px;
  color: #213E46;
  display: block;
  transition: 0.3s;
  position: relative;
}

.link-item.active::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  background: #001011;
  left: -20px;
  top: 0;
}

.section10 {
  /*! margin-bottom: 70px; */
  padding-top: 70px;
}

.ac {
  background: #eaebec;
  border-radius: 16px;
}

.ac-trigger {
  padding: 14px 18px;
  cursor: pointer;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.ac-trigger h4 {
  font-weight: 500;
  font-size: 16px;
  color: #001011;
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.ac-trigger h4 svg {
  width: 20px;
}

.ac-trigger::after {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #001011;
}

.ac.is-active .ac-trigger::after {
  content: "\f106";
}

.ac-panel {
  overflow: hidden;
  transition: height 0.3s ease;
}

.ac-panel .ac-panel-cnt {
  font-weight: 400;
  font-size: 16px;
  color: #001011;
  padding: 5px 18px 25px 18px;
  line-height: 25px;
}

.header-right2 ul {
  justify-content: flex-start;
  margin-top: 10px;
}

.header-right2 ul li:nth-of-type(2) {
  display: initial;
}

.btn-item-wrap {
  margin-top: 30px;
}

.btn-item-wrap h4 {
  font-weight: 500;
  font-size: 16px;
  color: #001011;
}

.btn-item-wrap ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 15px;
  align-items: center;
  margin-top: 15px;
}

.btn-item-wrap ul li a {
  font-weight: 500;
  font-size: 14px;
  color: #008060;
  display: block;
  text-align: center;
  border: 2px solid #008060;
  border-radius: 12px;
  padding: 12px 16px;
}

.btn-item-wrap ul li a:hover {
  opacity: 0.9;
}

.btn-item-wrap ul li:nth-of-type(1) a {
  background: #008060;
  color: #ffffff;
}

.video-item {
  margin-top: 45px;
}

.wichtig-item2 h2 {
  font-weight: 500;
  font-size: 28px;
  color: #001011;
  margin-top: 65px;
}

.wichtig-item2 p {
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  margin-top: 35px;
  line-height: 25px;
}

.wichtig-item2 p a {
  color: #213E46;
  text-decoration: underline;
}

.wichtig-item2-list ul {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  margin-top: 30px;
}

.wichtig-item2-list ul li{
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  display: grid;
  grid-template-columns: 16px auto;
  line-height: 24px;
}

.wichtig-item2-list ul li a {
  text-decoration: underline;
  color: #213E46;
}

.sec2-item1 h2 {
  font-weight: 500;
  font-size: 32px;
  color: #001011;
}

.sec2-item1 p {
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  line-height: 25px;
  margin-top: 35px;
}

.sec2-item1 p a {
  color: #213E46;
  text-decoration: underline;
}

.pg-box-sec2 {
  background: #0D242C;
  border-radius: 12px;
  padding: 16px;
  margin-top: 25px;
}

.pg-box-sec2 p {
  color: #ffffff;
  margin-top: 0;
}

.sec3-item1 h2 {
  font-weight: 500;
  font-size: 32px;
  color: #001011;
}

.sec3-item1 h3 {
  font-weight: 500;
  font-size: 24px;
  color: #001011;
  margin-top: 45px;
}

.sec3-item1 p {
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  line-height: 25px;
  margin-top: 35px;
}

.sec3-item1 p a {
  color: #213E46;
  text-decoration: underline;
} 

.ac2 {
  border-radius: 0;
  margin-top: 2px;
}

.ac2:nth-of-type(1) {
  border-radius: 16px 16px 0 0;
}

.ac2:last-child {
  border-radius: 0 0 16px 16px;
}

.ac2 .ac-trigger {
  font-weight: 500;
  font-size: 16px;
  color: #001011;
  line-height: 25px;
}

.ac2 .ac-panel p {
  margin-top: 25px;
}

.accordion-main-wrap2 {
  margin-top: 25px;
}

.sec5-item1 h2 {
  font-weight: 500;
  font-size: 32px;
  color: #001011;
}

.sec5-item1 p {
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  margin-top: 35px;
  line-height: 25px;
}

.sec5-item1 ul {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.sec5-item1 ul li {
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  display: grid;
  grid-template-columns: 15px auto;
  line-height: 25px;
}

.sec5-item1 ul li span {
  width: 5px;
  height: 5px;
  background: #000000;
  border-radius: 50%;
  display: inline-block;
}

.sec6-box {
  padding: 24px;
  background: #E8F5ED;
  border-radius: 16px;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  position: relative;
}

.sec6-title h2 {
  font-weight: 500;
  font-size: 32px;
  color: #001011;
  margin-bottom: 50px;
}

.badge {
  font-weight: 600;
  font-size: 14px;
  color: #008060;
  background-image: linear-gradient(165deg,#fce8a7,#fed77d 31%,#ffe7b2 50%,#fed77b 71%,#ffedb0) !important;
  width: 60px;
  border-radius: 10px;
  text-align: center;
  padding: 5px 5px;
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.3);
}

.box1-top-cnt1 h4 {
  font-weight: 500;
  font-size: 28px;
  color: #001011;
  margin-top: 15px;
}

.box1-top-cnt1 h6 {
  font-weight: 400;
  font-size: 14px;
  color: #213E46;
  margin-top: 10px;
}

.box1-top-cnt1 p {
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  margin-top: 25px;
  line-height: 25px;
}

.price-item h4 {
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  margin-top: 20px;
}

.product-reviw-wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  column-gap: 30px;
  margin-top: 40px;
}

.product-reviw-left img {
  width: 100%;
}

.product-reviw-right {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.reviw-text ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviw-text ul li:nth-of-type(1) {
  font-weight: 700;
  font-size: 14px;
  color: #213E46;
}

.reviw-text ul li:nth-of-type(2) {
  font-weight: 400;
  font-size: 14px;
  color: #213E46;
}

.reviw-line ul {
  display: grid;
  grid-template-columns: repeat(10,1fr);
  column-gap: 2px;
  margin-top: 5px;
}

.reviw-line ul li span {
  height: 4px;
  display: block;
  background: #6CD78F;
}

.vortil-flex {
  display: grid;
  grid-template-columns: 50% auto;
  margin-top: 65px;
 
  column-gap: 30px;
}

.vortil-main-wrap ul {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin-top: 30px;
}

.vortil-main-wrap ul li {
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  display: flex;
  column-gap: 10px;
}

.vortil-main-wrap h4 {
  font-weight: 500;
  font-size: 24px;
  color: #001011;
}

.check-vor ul li svg  {
  color: #339A7F;
}

.close-vor ul li svg  {
  color: #CF4441;
}

.vortil-btn {
  text-align: center;
}

.vortil-btn a {
 font-weight: 500;
 font-size: 16px;
 color: #ffffff;
 background: #008060;
  border-radius: 10px;
  display: inline-block;
  padding: 16px 28px;
  margin-top: 40px;
}

.vortil-btn a:hover {
  opacity: 0.9;
}

.box6-btm-cnt1 {
  margin-top: 35px;
}

.box6-btm-cnt1 h2 {
  font-weight: 500;
  font-size: 24px;
  color: #001011;
  margin-top: 30px;
}

.box6-btm-cnt1 h3 {
  font-weight: 700;
  font-size: 16px;
  color: #213E46;
  margin-top: 30px;
}

.box6-btm-cnt1 p {
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  margin-top: 30px;
  line-height: 25px;
}

.box6-btm-cnt1 p a {
   color: #213E46;
   text-decoration: underline;
}

.vor-pg {
  background: #0D242C;
  padding: 16px;
  border-radius: 16px;
  margin-top: 20px;
}

.vor-pg p {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 25px;
}

.line-rev-color {
  background: #D5D6D9 !important;
}

.vortil-left {
  border-right: 1px solid #EBECED;
  padding-right: 23px;
}

.badge2 {
  background: #ffffff !important;
}

.cricle-bord {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  position: relative;
}

.cricle-svg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  transform: rotate(135deg);
  filter: drop-shadow(0px 0px 2px rgba(0,0,0,.25));
}

.cricle-svg svg path {
  fill: #EAEBEC;
}

.circle-text {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.circle-text h4 {
  font-weight: 700;
  font-size: 22px;
  color: #001011;
}

.circle-text h5 {
  font-weight: 500;
  font-size: 12px;
  color: #213E46;
}

.product-reviw-left {
  position: relative;
}

.circle-position {
  position: absolute;
  left: 0;
  top: 63%;
}

.circle-position2 {
  left: 0;
  top: 63%;
}

.circle-position3 {
  left: 0;
  top: 63%;
}

.circle-position4 {
  left: 0;
  top: 50%;
}

.circle-position5 {
  left: 3px;
  top: 38%;
}

.circle-position6 {
  left: 0;
  top: 63%;
}

.cricle-svg2 {
  transform: rotate(253deg);
}

.cricle-svg3 {
  transform: rotate(176deg);
}

.cricle-svg4 {
  transform: rotate(168deg);
}

.cricle-svg5 {
  transform: rotate(163deg);
}

.cricle-svg6 {
  transform: rotate(135deg);
}

.google-box-wrap {
  background: #F2F2F2;
  border-radius: 16px;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  margin-top: 45px;
  padding: 24px;
  position: relative;
}

.google-top-logo img {
  max-width: 125px;
}

.google-top-inner1 ul {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-top: 35px;
}

.google-top-inner1 ul li {
  font-weight: 400;
  font-size: 16px;
  color: #001011;
}

.google-top-inner1 p {
  font-weight: 400;
  font-size: 16px;
  color: #001011;
  margin-top: 2px;
}

.google-top-list ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  justify-content: space-between;
  column-gap: 50px;
  margin-top: 30px;
  row-gap: 15px;
}

.google-top-list ul li {
  font-weight: 400;
  font-size: 16px;
  color: #213E46;
  display: flex;
  column-gap: 10px;
  line-height: 25px;
}

.google-top-list ul li svg {
  color: #339A7F;
}

.google-box-btm {
  text-align: center;
  margin-top: 80px;
}

.google-box-btm h5 {
  font-weight: 600;
  font-size: 14px;
  color: #213E46;
  margin-top: 30px;
}

.google-logo-wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 50px;
}

.google-logo-wrap ul li a {
  border-radius: 12px;
  padding: 12px;
  display: block;
}

.google-logo-wrap ul li a:hover {
  background: #EAEAEA;
}

.google-btn a {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  background: #008060;
  border-radius: 10px;
  display: inline-block;
  padding: 16px 28px;
  /*! margin-top: 40px; */
}

.google-btn a:hover {
  opacity: 0.9;
}

.sign-bord {
  position: absolute;
  right: 20px;
  top: -22px;
}

.google-title h2 {
  font-weight: 500;
  font-size: 32px;
  color: #001011;
  margin-top: 70px;
}

