@font-face {
    font-family: "Orelo SemiWide Bold";
    src: url(fonts/Orelo\ SemiWide\ Bold.ttf) format("truetype");
}

* {
    box-sizing: border-box;
}

:root {
    --main-color: #52B788;
    --secondary-color: #D8F3DC;
    --shade-color: #709775;
}

html {
    font-size: 16px;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: Poppins, Arial, Helvetica, sans-serif;
    color: #333;
    overflow-wrap: break-word;
    margin: 0;
}

body p {
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, p, ol, ul, li {
    margin: 0 0 1em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Orelo SemiWide Bold";
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    color: #333;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1 rem;
}

h5 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--main-color);
}

h6 {
    font-size: .75rem;
    text-transform: uppercase;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: var(--secondary-color);
}

section {
    margin-bottom: 5rem;
}

img {
    max-width: 100%;
}

/** BUTTONS **/

.main-btn {
    display: inline-block;
    padding: 1.2rem 2rem;
    margin: 1em 0;
    cursor: pointer;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all .2s ease-in-out;
}

.main-btn:hover {
    background-color: #333;
}

.sec-btn {
    display: inline-block;
    padding: 1.2rem 2rem;
    margin: 1em 0;
    cursor: pointer;
    background-color: transparent;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all .2s ease-in-out;
}

.sec-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

.menu-btn {
    margin: 0;
}

.menu-btn:hover {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

/** FORM & INPUTS**/

input[type="text"], input[type="email"] {
    padding: .75em;
    margin-bottom: .75em;
}

textarea[name="message"] {
    padding: .75em;
    margin-bottom: 1.4em;
}

/** BACK TO TOP BUTTON **/

.backtotopbtn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 98;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
}

.backtotopbtn:hover {
  background-color: #333;
}

.backtotopbtn::before {
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  font: var(--fa-font-solid);
  content: '\f077';
  color: #fff;
  font-size: 24px;
}


/** Daciana Website **/


header {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #fff;
  transition: all .3s ease-in-out;
}

.bshadow1 {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.minlogo {
  max-height: 50px !important;
}

.logo-img {
    max-height: 60px;
    transition: all .3s ease-in-out;
}

.highlight-word {
    color: var(--main-color);
}

.hero {
    background-color:var(--secondary-color);
    padding: 5rem 0;
}

/* .hnavwrapper {
    margin: 1.5rem 0;
} */

ul.header-nav {
    margin-bottom: 0;
    padding-left: 0;
    overflow: hidden;
}

ul.header-nav li {
    list-style-type: none;
    font-weight: 500;
    margin-bottom: 0;
}

ul.header-nav li a:not(.sec-btn) {
    list-style-type: none;
    font-weight: 500;
    margin-bottom: 0;
    color: #333;
    position: relative;
    padding: .5em 0;
}

ul.header-nav li a:not(.sec-btn)::after {
  content: '';
  width: 0;
  height: 2px;
  display: block;
  background: var(--main-color);
  transition: all .3s ease-in-out;
  position: absolute;
  left: 0;
  bottom: 0;
}

ul.header-nav li a:not(.sec-btn):hover {
    color: var(--main-color);
}

ul.header-nav li a:not(.sec-btn):hover::after {
  width: 100%;
  left: 0;
}


.ntpt {
    background-color: var(--secondary-color);
    padding: 5rem 0;
}

.ntpt-col img {
    max-height: 180px;
    margin-bottom: 1rem;
}

.ntpt h2 {
    margin-bottom: 1.2em;
}

.ntpt h3 {
    color: var(--main-color);
}

ul.checklist {
    margin: 2em 0 0;
    list-style-type: none;
    color: var(--main-color);
    --icon-space: 1em;
    padding-left: 0;
    row-gap: 0;
}

ul.checklist li {
    font-weight: 600;
    padding-left: var(--icon-space);
}

ul.checklist li::before {
    content: "\f00c"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    display: inline-block;
    margin-left: calc( var(--icon-space) * -1 );
    width: var(--icon-space);
    margin-right: .25em;
  }

  .dietoterapie {
    background-color: var(--shade-color);
    color: #fff;
    position: relative;
    padding: 5rem 0;
  }

  .dietoterapie::before {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: url(cssimages/jonathan-pielmayer-uiPaZkzjv64-unsplash.jpg) no-repeat center center / cover;
  }

  .dtinner {
    padding-left: 5rem;
  }

  .dtinner :is(h2, p) {
    color: #fff !important;
  }

  .sec-color {
    color: var(--secondary-color) !important;
  }

  .price-cell {
    padding: 1em 0;
    border-bottom: 1px solid #999;
    flex-wrap: wrap;
  }

  .service-name {
    font-size: 24px;
    max-width: 75%;
  }

  .price-nr {
    font-size: 24px;
    color: var(--main-color);
  }

  .contact {
    padding: 5rem 0;
    background-color: var(--shade-color);
    color: #fff;
    margin-bottom: 0;
  }

  .contact :is(h2, h3, p) {
    color: #fff;
  }

  ul.contact-details {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1.5rem;
  }

  ul.contact-details li i {
    font-size: 1rem;
    margin-right: 1em;
  }

  /** FOOTER **/

  footer {
    padding: 3rem 0;
    background: #333;
    color: #999;
  }

  .footer-nav {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .footer-nav a {
    color: #999;
  }

  .footer-nav a:hover {
    color: #fff;
  }

  @media (min-width: 1024px) {

  footer p {
    margin-bottom: 0;
  }

  .footer-nav li {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {

    .dietoterapie {
        padding: 0 0 5rem;
    }

    .dietoterapie::before {
        display: block;
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        margin-bottom: 2rem;
    }

    .dtinner {
        padding-left: 0;
    }

    ul.header-nav li {
        margin-bottom: 1em;
    }

    .service-name {
        margin-bottom: .25em;
    }

    .pricing-grid {
      grid-gap: 0 !important;
    }

    .footer-inner, .footer-nav {
      display: block !important;
    }
}

/** FORM **/

.formbold-mb-5 {
    margin-bottom: 20px;
  }
  .formbold-pt-3 {
    padding-top: 12px;
  }
  .formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .formbold-form-wrapper {
    margin: 0 auto;
    width: 100%;
  }
  .formbold-form-label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #07074d;
    margin-bottom: 12px;
    display: none;
  }
  .formbold-form-label-2 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .formbold-form-input {
    width: 100%;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-left: none;
    border-right: none;
    background: transparent;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    outline: none;
    resize: none;
  }

  /* .formbold-form-input:focus {

  } */

  .formbold-btn {
    text-align: center;
    font-size: 16px;
    width: 100%;
    border-radius: 50px;
    padding: 14px 32px;
    border: none;
    font-weight: 600;
    background-color: #fff;
    color: var(--shade-color);
    cursor: pointer;
    transition: all .2s ease-in-out;
  }
  .formbold-btn:hover {
    background-color: #333;
    color: #fff;
  }

  .formbold--mx-3 {
    margin-left: -12px;
    margin-right: -12px;
  }
  .formbold-px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .flex {
    display: flex;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .w-full {
    width: 100%;
  }
  /** placeholder **/
  ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #fff;
    opacity: .75;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff;
   opacity: .75;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff;
   opacity: .75;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #fff;
   opacity: .75;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #fff;
   opacity: .75;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #fff;
   font-family: "Orelo SemiWide Bold";
   opacity: .75;
}
  @media (min-width: 540px) {
    .sm\:w-half {
      width: 50%;
    }
  }
/**FORM END**/

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .hero-col {
        background: transparent !important;
        padding: 2rem 0 !important;
    }
    .text-col {
        padding: 2rem;
    }
    .img-col {
        min-height: 40vh;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

