/**/

@import url('https://fonts.googleapis.com/css?family=Courgette|Roboto+Condensed:300,300i,400,400i|Roboto:100,100i,300,300i,400,400i&amp;subset=latin-ext');
/* Variables */
:root {
  --grey-color: #7b7878;  /* rgb(123,120,120) */
  --orange-color: #ff8300;  /* rgb(255,131,0) */
}

/* PADDING CLASSES */
.pad-top-10{padding-top:10%;}
.pad-top-20{padding-top:20%;}
.pad-top-30{padding-top:30%;}

.pad-0{padding:0;}

/* FONTS */
.font-400 {
  font-size: 20px !important;
  font-weight: 400 !important;
}

.font-300 {
  font-size: 20px !important;
  font-weight: 300 !important;
}

/* HEADINGS */
h1 {
  text-transform: uppercase;
  color: black;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight:300;
}

h2 {
  font-size: 2rem;
  text-transform: uppercase;
  color: black;
  font-weight: 300;
  margin-bottom: 30px;
}

.h-visible {
    visibility: auto;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.375em;
  color: black;
  font-weight: 400;
  margin-bottom: 30px;
}

h3 span {
  font-weight: 300;
}

h4 {
  font-size: 32px;
  color: black;
  font-weight: 600;
  margin-bottom: 30px;
}

a {
  color: black;
  font-weight: 300;
  text-decoration: none;
}
a:hover,
a:visited:hover,
a:focus {
  color: var(--orange-color, orange);
  text-decoration: none;
  background: transparent;
}
a:visited {
  color: var(--grey-color, grey);
  text-decoration: none;
}

a.link {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}

a.link:hover,
a.link:visited:hover,
a.link:focus {
  font-size: 1.1rem;
  background: transparent;
}


.height10 {
  height : 10rem;
}
.height15 {
  height : 15rem;
}


.section p {
  font-size: 1.25rem;
  font-weight: 300;
}

.text-left-on-desk-center-on-mobile {
  text-align: left;
}
.text-left-on-desk-center-on-mobile p {
  font-size: 1.1rem;
  font-weight: 300;
}

/* BACKGROUNDS */
.bg-white {
  background-color: white !important;
}
.bg-grey {
  background-color: #f6f6f6;
}
.bg-image {
  background-image: url('../img/facebook_background_no_logo_no_text.png');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;

  -webkit-background-size: cover;
  -webkit-background-attachment: fixed;
  -moz-background-size: cover;
  -moz-background-attachment: fixed;
  -o-background-size: cover;
  -o-background-attachment: fixed;
  text-align: center;
}

.bg-image-fade-out {
  background-image: url('../img/facebook_background_no_logo_no_text_fade_out.png');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;

  -webkit-background-size: cover;
  -webkit-background-attachment: fixed;
  -moz-background-size: cover;
  -moz-background-attachment: fixed;
  -o-background-size: cover;
  -o-background-attachment: fixed;
  text-align: center;
}

.four-o-four-jumbotron {
  /* background: rgba(123, 120, 120, 0.2); */
	display: flex;
	flex-direction: row;
  justify-content: space-between;
  height: 520px;
  background-image: url('../img/404_background_400.png');
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: cover; */
  /* background-attachment: fixed; */
  /* -webkit-background-size: cover; */
  /* -webkit-background-attachment: fixed; */
  /* -moz-background-size: cover; */
  /* -moz-background-attachment: fixed; */
  /* -o-background-size: cover; */
  /* -o-background-attachment: fixed; */
}
.four-o-four-jumbotron .four-o-four-item {
  width: 30%;
  text-align: center;
}

.jumbotron-image {
}

.bg-transparent {
  background:transparent;
}

/* BUTTONS */

.btn-danger {
  background-color: var(--orange-color, orange) !important;
}

.btn-main {
  padding: 10px 20px;
  background-color: var(--grey-color, grey);
  color: #f1f1f1;
  transition: .2s;
}

.btn-main:hover, .btn-main:focus {
  border: 1px solid #333;
  background-color: white;
  color: black;
}

.btn-grey {
  background-color: var(--grey-color, grey);
  border-color: var(--grey-color, grey);
}

.btn-grey:hover {
  background-color: var(--orange-color, orange);
  border-color: var(--orange-bg-color, orange);
}

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


.icon-small {
  color: white;
}

.icon-background {
  color: var(--orange-color, orange);
}

.icon-navbar {
  color: black;
  font-size: 20px;
}

social-navbar {
  display:flex;
}

.icon-navbar:hover {
  color: var(--orange-color, orange);
}
social-navbar .nav-link .icon-navbar:focus {
  color: var(--orange-color, orange) !important;
}
.ul-social {
  list-style: none;
  overflow: hidden;
}

/**
 * 1. Center the content. Yes, that's a bit opinionated.
 * 2. Use `max-width` instead `width`
 * 3. Add padding on the sides.
 */
.wrapper {
  text-align: center;
  margin-right: auto;/* 1 */
  margin-left: auto;  /* 1 */
  max-width: 600px;  /* 2 */
  padding-right: 10px;/* 3 */
  padding-left: 10px;/* 3 */
  padding-top: 100px;
}

body {
  font-family: 'Roboto', sans-serif;
  width: 100%;
  height: 100%;
  text-align: center !important;
  font-size: 1.1rem;
  font-weight: 300;
  background-color: white !important;
}

.homely-page{
  background-image: url('../img/facebook_background_no_logo_no_text.png');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;

  -webkit-background-size: cover;
  -webkit-background-attachment: fixed;
  -moz-background-size: cover;
  -moz-background-attachment: fixed;
  -o-background-size: cover;
  -o-background-attachment: fixed;
  text-align: center;
  padding: 0 !important;
}

.homely-page .homely-content {
  background-color: rgba(255, 255, 255, 1);
  padding-bottom: 1rem;
}

#brand-image {
  height: 80px;
  transition: height 2s;
}

/* change the background color */
.navbar-custom {
  font-family: 'Roboto Condensed', sans-serif;
}
/* change the brand,
 and text color,
 and link color*/
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link {
  color: black;
}
/* change the color of active or hovered links */
/* .navbar-custom .nav-item.active .nav-link, */
.navbar-custom .nav-item .nav-link.active,
.navbar-custom .nav-item:hover .nav-link {
  color: var(--orange-color, orange);
}

a:focus {
  outline: none;
  outline: 0;
  color: var(--orange-color, orange) !important;
}

.navbar-padding {
  padding: 0.5rem 10rem !important;
}

.navbar-custom .navbar-collapse {
  text-align: left;
}

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

.pll-ul-item a {
  display: block;
  padding: .5rem 1rem;
}

.pll-ul-item a span {
  margin: 0 !important;
}

.pll-ul-item a img {

}


/* Jumbotron */
.jumbotron{
  padding: 0;
  height: 900px;
  background-color: white;
  display: flex;
}

/* Jumbotron */
.jumbotron-mini{
  height: 200px;
  display: flex;
  align-items: center;
}

.header-container {
  text-align: center;
  height: 5rem;
  display: flex;
  flex-flow:column;
  justify-content: center;
  margin-bottom: 1rem;
}

.slogan-box {
  height: 900px;
  display: flex;
  flex-direction: column;
}

.slogan {
  text-align: right;
  min-height: 50%;
  width: 50%;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
}

.slogan p {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: black;
  padding-bottom: 1rem;
  margin: 0;
  align-self: flex-end;
}



#googleMap {
  width: 100%;
  height: 400px;
  /*-webkit-filter: grayscale(100%);
  filter: grayscale(100%); */
}

/* FOOTER styling */

.main-footer {
  padding: 32px;
}

.main-footer a {
  color: var(--orange-color, orange);
}

.main-footer a:hover {
  color: var(--grey-color, grey);
  text-decoration: none;
  background: transparent;
}


.slideanim {
  visibility: hidden;
}
.slide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(70%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}


/*FIXED catch*/
.catch {
  clear:both;
  display: none;
  margin-bottom: 2rem;
  padding-top: 10%;
  padding-bottom: 15%;
  font-family: Roboto, sans-serif;
}


/* ADDED new styles::::*/

/* Form styling:*/
.custom-form {
  color: var(--grey-color, grey);
  /* border: 0.1rem solid var(--grey-color, grey); */
}
.custom-form::placeholder,
.custom-form::-moz-placeholder {
  color: var(--grey-color, grey);
}
.custom-form:focus  {
  border-color: var(--orange-color, orange);
  box-shadow: inset 0 0.05rem 0.05rem var(--orange-color, orange), 0 0 0.2rem var(--orange-color, orange);
}
.custom-form input[type="email"],
.custom-form input[type="text"],
.custom-form textarea {
  -webkit-box-shadow: none;
  outline: -webkit-focus-ring-color auto 0px;
}



/* Style for heading of section (like oMnie, Oferta, etc) */

.section {
  /* top: calc(100% + 106px); */
  /* position: relative;
  top: -106px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  /* margin-top: -0.5rem; */
  margin-bottom: 2rem;
  padding-top: .5rem;
}
.sub-section {
  padding-top: 2.5rem;
}
.section-title::before,
.section-title::after {
  content: "";
  display: block;
  transition: border .6s ease;
}
.section-title::before {
  border: 0.5px solid var(--grey-color, grey);
}
.section-title::after {
  border: 0.5px solid var(--grey-color, grey);
}
.section-title {
  display: flex;
  align-items: center;
}

.section-title::before,
.section-title::after {
  flex-grow: 1;
  margin: 0 5px;
}

/* .section:hover .section-title::before {
  border: 1px solid var(--grey-color, grey);
}
.section:hover .section-title::after {
  border: 1px solid var(--orange-color, orange);
} */

.content-title::before,
.content-title::after {
  content: "";
  display: block;
  transition: border .6s ease;
}
.content-title::before {
  opacity: 0.5;
  border: 0.5px solid var(--orange-color, orange);
}
.content-title::after {
  opacity: 0.5;
  border: 0.5px solid var(--orange-color, orange);
}
.content-title {
  display: flex;
  align-items: center;
}
.content-title::before,
.content-title::after {
  flex-grow: 1;
  margin: 0 5px;
}

.section-flex-container {
  position: relative;

  display: flex;
  flex-wrap: nowrap;

  display: -webkit-flex;
  -webkit-flex-wrap: nowrap;
}
.profile-img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 48%;
  text-align: center;
  cursor: pointer;
}
.profile-img{
  overflow: hidden;
  display: block;
  max-width: 75%;
  object-fit: cover;
}
.profile-img-wide {
  overflow: hidden;
  display: block;
  min-height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.profile-lead-container {
  max-width: 48%;
}
.profile-lead {
  display: block;
  height: 100%;
}

.icons-flex-container {
  position: relative;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: baseline;
  flex-direction: row;

  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: space-evenly;
  -webkit-align-items: baseline;
}

.icons-flex-container .icon-container {
  flex-basis:0;
  position: relative;

  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  align-content: center;

  display: -webkit-flex;
  -webkit-flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-content: center;

  font-size: 1rem;
}

.icons-flex-container .icon-container .icon-fa {
align-self: center;
}
.icons-flex-container .icon-container h3 {
align-self: center;
}

/* navbar toggler bars styling:*/
.navbar-toggler {
  border: none;
  background: transparent !important;
}
.navbar-toggler:focus {
  outline: none;
  background: transparent !important;
}
.navbar-toggler .icon-bar {
  background-color: black;
  transform: rotate(0deg) translate(0px, 0px);
  transition: ease all .2s;
}
.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 4px;
}
/* .icon-bar:nth-child(2) {
  width: 16px;
  transition: ease all .2s;
}
.navbar-toggler:hover>.icon-bar:nth-child(2) {
  width: 22px;
  transition: ease all .2s;
}
.navbar-toggler:active>.icon-bar:nth-child(2) {
  width: 22px;
  transition: ease all .2s;
} */
.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
  transition: ease all .2s;
}
.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
  transition: ease all .2s;
}
.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  transition: ease all .2s;
}


/* Buttons */
.simple-btn {
  padding: 10px 25px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: black;
  background: transparent;
  border-color: transparent;
  border: 0;
  /* outline: none !important; */
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  transition: all 0.1s ease 0s;
}
/* .simple-btn:active  {
  border-color: var(--orange-color, orange);
  box-shadow: inset 0 0.05rem 0.05rem var(--orange-color, orange), 0 0 0.2rem var(--orange-color, orange);
}
.simple-btn:focus  {
  border-color: transparent
  box-shadow: inset 0 0.05rem 0.05rem var(--orange-color, orange), 0 0 0.2rem var(--orange-color, orange);
} */
.simple-btn:hover {
  color: var(--orange-color, orange);
  font-size: 1.1rem;
  text-decoration: none;
  background: transparent;
}


/* Oferta */
.flex-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  text-align: center;
}
/* Common style */
.flex-container figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 320px;
  max-width: 48%;
  max-height: 360px;
  background: var(--grey-color, grey);
  text-align: center;
  cursor: pointer;
}
.flex-container figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}
.flex-container figure figcaption {
  padding: 2rem;
  color: white;
  text-transform: uppercase;
  font-size: 1.25rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flex-container figure figcaption::before,
.flex-container figure figcaption::after {
  pointer-events: none;
}
.flex-container figure figcaption,
.flex-container figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Anchor will cover the whole item by default */
.flex-container figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}
.flex-container figure h2 {
  word-spacing: -0.15rem;
  font-weight: 300;
  color: white;
  text-align: center;
}
 .flex-container figure h2 span {
  font-weight: 400;
  color: white;
}
.flex-container figure h2,
.flex-container figure p {
  margin: 0;
}

/*---------------*/
/***** Dexter *****/
/*---------------*/
figure.custom-figure {
  background: -webkit-linear-gradient(top, var(--grey-color, grey) 0%, var(--orange-color, orange) 100%);
  background: linear-gradient(to bottom, var(--grey-color, grey) 0%,var(--orange-color, orange) 100%);
}
figure.custom-figure img {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
figure.custom-figure:hover img {
  opacity: 0.4;
}
figure.custom-figure figcaption::after {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  height: -webkit-calc(50% - 30px);
  height: calc(50% - 30px);
  border: 0.1rem solid white;
  content: "";
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
figure.custom-figure:hover figcaption::after {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
figure.custom-figure figcaption {
  padding: 3rem;
  text-align: left;
}
figure.custom-figure p {
  position: absolute;
  letter-spacing: 1px;
  font-size: 68.5%;
  right: 3.75rem;
  bottom: 3.75rem;
  left: 3.75rem;
  opacity: 0;
  -webkit-transform: translate3d(0,-100px,0);
  transform: translate3d(0,-100px,0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
figure.custom-figure:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.tbc{
  font-size: 4rem !important;
  font-weight: 400;
  text-align: right;
  display: run-in;
}

/*- Sidebar - Contact Form 7 */
/* .contact-form-wrapper .wpcf7 input[type="text"], .contact-form-wrapper .wpcf7 input[type="email"], .contact-form-wrapper .wpcf7 textarea {
  width: 100%; background: #fcfae1; border: 0; padding: 10px; color: #989898;
} */
.contact-form-wrapper {
  display: flex;
}
.contact-form-wrapper .textwidget {
}
.contact-form-wrapper .textwidget .wpcf7-form  p {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
}
.contact-form-wrapper .textwidget .wpcf7-form .Name,
.contact-form-wrapper .textwidget .wpcf7-form .Email {
  display: flex;
  flex-wrap: wrap;
  width: 48%;
  margin-bottom: 1rem;
  position: relative;
  min-height: 1px;
}
.contact-form-wrapper .textwidget .wpcf7-form .Message,
.contact-form-wrapper .textwidget .wpcf7-form .Subject {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.contact-form-wrapper .wpcf7-form .ParticipantsNumber,
.contact-form-wrapper .wpcf7-form .WorkshopDate {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.contact-form-wrapper .wpcf7::placeholder,
.contact-form-wrapper .wpcf7::-moz-placeholder {
  color: var(--grey-color, grey);
}
.contact-form-wrapper .wpcf7 input[type="email"],
.contact-form-wrapper .wpcf7 input[type="text"],
.contact-form-wrapper .wpcf7 input[type="number"],
.contact-form-wrapper .wpcf7 input[type="date"],
.contact-form-wrapper .wpcf7 textarea {
  width: 100%;
  color: var(--grey-color, grey);
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: none;
  outline: -webkit-focus-ring-color auto 0px;
}
.contact-form-wrapper .wpcf7 input[type="email"],
.contact-form-wrapper .wpcf7 input[type="text"],
.contact-form-wrapper .wpcf7 input[type="number"],
.contact-form-wrapper .wpcf7 input[type="date"] {
  height: calc(2.25rem + 2px);
}
.contact-form-wrapper .wpcf7 textarea {
  resize: none;
  overflow: hidden;
}
.contact-form-wrapper .wpcf7 input[type="email"]:focus,
.contact-form-wrapper .wpcf7 input[type="text"]:focus,
.contact-form-wrapper .wpcf7 input[type="number"]:focus,
.contact-form-wrapper .wpcf7 input[type="date"]:focus,
.contact-form-wrapper .wpcf7 textarea:focus  {
  color: black;
  border-color: var(--orange-color, orange);
  box-shadow: inset 0 0.05rem 0.05rem var(--orange-color, orange), 0 0 0.2rem var(--orange-color, orange);
  background: white;
}
.contact-form-wrapper .wpcf7-validation-errors {
  opacity: 0.7;
  color: #ffffff;
  background: var(--orange-color, orange);
  border-color: var(--orange-color, orange);
}
.contact-form-wrapper .wpcf7-not-valid {
  color:  var(--orange-color, orange);
  border-color: var(--orange-color, orange);
}
.contact-form-wrapper .wpcf7-not-valid-tip {
  color: var(--orange-color, orange);
}
.contact-form-wrapper .wpcf7-mail-sent-ok {
  border-color: var(--grey-color, grey);
}
.contact-form-wrapper .wpcf7 input[type="submit"] {
  padding: 10px 25px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: black;
  background: transparent;
  border-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  transition: all 0.1s ease 0s;
  align-self: flex-end;
  float: right;
  margin: auto;
}
.contact-form-wrapper .wpcf7 input[type="submit"]:hover {
  color: var(--orange-color, orange);
  font-size: 1.1rem;
  background: transparent;
}
.contact-form-wrapper .wpcf7 input[type="submit"]:focus {
  outline: 0;
  color: var(--orange-color, orange);
}
.contact-form-wrapper .wpgdprc .wpcf7-list-item {
  display: flex;
  align-items: baseline;
  font-size: 1rem;
}
.contact-form-wrapper .wpgdprc .wpcf7-list-item-label {
  padding-left: 1rem;
}

.anchor {
  display:block;
  padding-top:106px;
  margin-top:-106px;
 }


 .flag-icon {
   background-size: contain;
   background-position: 50%;
   background-repeat: no-repeat;
   position: relative;
   display: block;
   width: 1.33333333em;
   padding: .5rem 1rem;
 }
 .flag-icon:before {
   content: "\00a0";
 }
 .flag-icon-gb {
   background-image: url('gb.svg');
 }
 .flag-icon-pl {
   background-image: url('pl.svg');
 }

/*-------------------*/
/* plugins: */
/*-------------------*/

/* Polylang:
*/
#access img {
    margin-bottom: 0px;
}
/*-------------------*/

/* Cookie Notice:
*/
.cookie-notice-container {
  border-color: var(--orange-color, orange);
  box-shadow: none !important;
  border-top-width: 2rem;
  cursor: pointer;
  padding-bottom: 2rem;
}
#cookie-notice {
  font-size: inherit;
}
#cn-notice-text {
  color: var(--grey-color, grey);
}
#cookie-notice a,
#cookie-notice .simple-btn {
  font-weight: 400;
}
/*-------------------*/

/* EU Cookie Law & GDPR Cookie Consent:
*/
.pea_cook_wrapper.pea_cook_bottomcenter {
  background-color: white !important;
  margin: 0 !important;
  width: 100% !important;
}
.pea_cook_wrapper p {
  bottom: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}
.pea_cook_wrapper a{
  border: none !important;
  font-weight: 400 !important;
}
.pea_cook_wrapper a:hover {
  color: var(--orange-color, orange) !important;
  background: transparent !important;
}
.pea_cook_btn {
  width: auto !important;
}
.cli-plugin-button,
.pea_cook_btn {
  padding: 0 !important;
  margin: 0 !important;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  color: black !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  transition: all 0.1s ease 0s;
}
.cli-plugin-button:hover,
.pea_cook_btn:hover {
  color: var(--orange-color, orange) !important;
  font-size: 1.1rem !important;
  text-decoration: none;
  background: transparent !important;
}
.cli-plugin-main-link {
  color: black;
  font-weight: 400;
  text-decoration: none;
}
.cli-plugin-main-link:hover,
.cli-plugin-main-link:visited:hover,
.cli-plugin-main-link:focus {
  color: var(--orange-color, orange) !important;
  text-decoration: none;
  background: transparent !important;
}
.cli-plugin-main-link:visited {
  color: var(--grey-color, grey);
  text-decoration: none;
}
/*-------------------*/

/*-------------------*/
/* Different screens */
/*-------------------*/
@media screen and (min-width: 1188px) {
  .slogan p {
    font-size: 3.7rem;
  }
}

@media screen and (min-width: 992px) {
  .section-flex-container {
    justify-content: center;
    align-items: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
  }
  .slogan p {
    padding-right: 8px;
  }
}

@media screen and (max-width: 991px) {
  .icon-navbar {
    margin-right: 10px;
  }
  .flex-container figure p {
    letter-spacing: 1px;
    font-size: 34%;
  }
  .flex-container figure h2 {
    font-size: 1.5rem;
  }
  .section-flex-container {
    flex-direction: column;
  }
  .profile-img-container,
  .profile-lead-container {
    max-width: 100%;
  }
  .profile-img-container {
    order: 0;
  }
  .profile-lead-container {
    order: 1;
    padding-top: 1.5rem;
  }
  .slogan p {
    font-size: 2rem;
  }
  .text-left-on-desk-center-on-mobile p {
    font-size: 0.95rem;
  }

  /* TODO::: .icons-flex-container .icon-container  */

}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .nm {
   display:none;
  }
  .icon-navbar {
    margin-right: 10px;
  }
  .col-sm-4 {
    text-align: center;
    margin: 25px 0;
  }
  .btn-lg {
    width: 100%;
    margin-bottom: 35px;
  }
  #brand-image {
    height: 100px;
    transition: height 2s;
  }
  .anchor {
    padding-top:126px;
    margin-top:-126px;
   }

  .bg-image, .bg-image-fade-out {
    background-image: none;
    background-color: white;
  }

  .homely-page {
    background-image: none;
  }

  .jumbotron-991px {
    background-image: url('../img/facebook_background_no_logo_no_text.png');
    background-size: contain;
    background-attachment: local;
    background-repeat: no-repeat;
    background-position: center top;

    -webkit-background-size: contain;
    -webkit-background-attachment: local;
    -moz-background-size: cover;
    -moz-background-attachment: fixed;
    -o-background-size: cover;
    -o-background-attachment: fixed;
    text-align: center;
  }
  .jumbotron{
    height: 300px;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
  }
  .flex-container figure h2,
  .flex-container figure p {
    font-size: 20px;
  }
  .tbc {
    font-size: 2rem !important;
    font-weight: 300;
  }
  .icons-flex-container .icon-container {
    font-size: .75rem;
  }
  .text-left-on-desk-center-on-mobile {
    text-align: center;
  }
  .text-left-on-desk-center-on-mobile p {
    font-size: 1rem;
  }
  .contact-form-wrapper .textwidget .wpcf7-form .Name,
  .contact-form-wrapper .textwidget .wpcf7-form .Email {
    width: 100%;
  }
  .slogan-box {
    height: 300px;
    background-image: url('../img/facebook_background_no_logo_no_text.png');
    background-size: contain;
    background-attachment: local;
    background-repeat: no-repeat;
    background-position: center top;

    -webkit-background-size: contain;
    -webkit-background-attachment: local;
    -moz-background-size: cover;
    -moz-background-attachment: fixed;
    -o-background-size: cover;
    -o-background-attachment: fixed;
  }
  .slogan p {
    font-size: 1.5rem;
  }
  .four-o-four-jumbotron {
    height: 200px;
    background-size: contain;
  }
}

@media screen and (max-width: 575px) {
  h3 {
    font-size: 1rem;
  }
  .logo {
    font-size: 150px;
  }
  .jumbotron{
    height: 200px;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
  }
  .lead {
    font-size: 1rem;
  }
  #brand-image {
    height: 90px;
    transition: height 2s;
  }
  .anchor {
    padding-top:116px;
    margin-top:-116px;
   }

  .slogan p {
    font-size: 1.2rem;
  }

  .icons-flex-container {
    flex-direction: column;
    align-content: center;
    -webkit-flex-direction: column;
    -webkit-align-content: center;
  }
  .icons-flex-container .icon-container {
    font-size: .5rem;
    flex-direction: row;
    -webkit-flex-direction: row;
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
}

@media screen and (max-width: 475px) {
  .navbar-brand {
    width: 50%;
  }
  #brand-image {
    height: auto;
    min-height: 72px;
    transition: height 2s;
  }
  .anchor {
    padding-top:100px;
    margin-top:-100px;
   }
}
@media screen and (max-width: 375px) {
  .navbar-brand {
    width: 50%;
  }
  #brand-image {
    height: auto;
    min-height: 52px;
    transition: height 2s;
  }
  .anchor {
    padding-top:78px;
    margin-top:-78px;
   }

  .icon-container h3 {
    font-size: 0.75rem;
  }
  .slogan p {
    font-size: 1.1rem;
  }
}
//* Bootstrap breakpoints::after
// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) { ... }

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) and (max-width: 767.98px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) and (max-width: 991.98px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) and (max-width: 1199.98px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... } */
