
body{
  cursor: default;

  --container_header_max_width: 1800px;
  --container_about_max_width: 1484px;
  --container_picks_max_width: 1634px;
  --container_the_logos_max_width: 1364px;
  --container_blog_content_max_width: 1690px;
  --container_about_ads: 1570px;

  --color_pink: #f17374;
  --color_grey: #1d1d1d;

  --header_height: 128px;
  --header_height: 117px;

  padding-top: var(--header_height);

  --font_family__roboto: 'Roboto', sans-serif;
  --font_family__roboto_condensed: 'Roboto Condensed', sans-serif;
  --font__juana_regular: 'juana-regular';
  --font__juana_semibold: 'juana-semibold';
  --font__juana_bold: 'juana-bold';


  font-family: var(--font_family__roboto);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
}
body, p {
  font-size:18px !important;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
}
::-webkit-scrollbar-thumb {
  background-color: var(--color_grey);
  background-color: var(--color_pink);
}




::-moz-selection{
  background-color: var(--color_pink);
  color: white;
}
::selection {
  background-color: var(--color_pink);
  color: white;
}


h1,h2,h3,h4,h5,h6{
  /*color: var(--color_pink);*/
  font-family: var(--font__juana_bold);
  /*font-weight: bold;*/
}
h1{
  font-size: 150%;
}
h2{
  font-size: 130%;
}
h3{
  font-size: 120%;
}
h4{
  font-size: 110%;
}
h5{
  font-size: 100%;
}
h6{
  font-size: 90%;
}
/* P Wilk chhange type of bolding*/
b, strong {
  font-weight: bold !important;
}

/*P Wilk */

.heading-footer-links{
  padding-left: 32px;
  margin-bottom:5px;
}

a{
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

*>*:last-child{
  margin-bottom: 0px !important;
}


/*.bootstrap*/
body{
  --padding_bootstrap_grid: 12px;
}
.container{
  padding: 0px var(--padding_bootstrap_grid);
}
.row{
  margin: 0px calc( 0px - var(--padding_bootstrap_grid) );
}
.row>*{
  padding: 0px var(--padding_bootstrap_grid);
}
.row{
  margin-bottom: 60px;
}
/*.bootstrap*/


/*header*/
header .container{
  max-width: var(--container_header_max_width);
}
header .header_menu_holder{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_social_menu{
  display: flex;
  align-items: center;
  list-style: none;
  margin:0px;
  padding:0px;
}
.header_social_menu a{
  display: block;
  padding: 5px 0px;
  font-size: 28px;
  color: black;
  text-decoration: none;
}
.header_social_menu a:hover{
  -moz-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  color: var(--color_pink);
}
.header_social_menu li{
  margin-right: 20px;
}
.header_social_menu>li:last-child{
  margin-right: 0px;
}

.header_hamburg_menu{
  position: relative;
  width: 66px;
  height: 66px;
  border:solid 2px var(--color_grey);

  -webkit-border-radius: 33px;
  border-radius: 33px;
}
.header_hamburg_menu>div{
  position: absolute;
  height: 2px;
  background-color: var(--color_grey);
  width: 34px;
  left: calc(50% - 34px/2);
  top: calc(50% - 2px/2);

  
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header_hamburg_menu>div:first-child{
  top: calc(50% - 8px - 2px);
  transform-origin: 0% 50%;
}
.header_hamburg_menu>div:last-child{
  top: calc(50% + 8px);
  transform-origin: 100% 50%;
}
.header_hamburg_menu:hover>div:first-child,
.header_hamburg_menu:hover>div:last-child{
  -moz-transform: scaleX(0.5);
  -webkit-transform: scaleX(0.5);
  -o-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  transform: scaleX(0.5);
}

body.header_menu_opened .header_hamburg_menu,
.header_hamburg_menu:hover{
  border-color: var(--color_pink);
}
body.header_menu_opened .header_hamburg_menu>div,
.header_hamburg_menu:hover>div{
  background-color: var(--color_pink);
}
body.header_menu_opened .header_hamburg_menu>div:first-child,
body.header_menu_opened .header_hamburg_menu>div:last-child{
  -moz-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -o-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
body.header_menu_opened .header_hamburg_menu>div:nth-child(2){
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.header_menu_opened .header_hamburg_menu>div:nth-child(3){
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header{
  position: relative;
  padding: 25px 0px;
  border-bottom: solid 1px var(--color_pink);
  position: fixed;
  left: 0px;
  top: 0px;
  

  width: 100%;
  background-color: white;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;

  z-index: 100;
}


body.header_static{
  padding-top: 0px;
}
body.header_static header{
  position: relative;
  left: auto;
  top: auto;
}


body.scrolled header{
  /*padding: 10px 0px;*/
  -webkit-box-shadow: 0 10px 10px 1px rgba(0,0,0,0.1);
  box-shadow: 0 10px 10px 1px rgba(0,0,0,0.1);
}
body.header_static.scrolled header{
  /*padding: 10px 0px;*/
  -webkit-box-shadow: 0 10px 10px 1px rgba(0,0,0,0.0) !important;
  box-shadow: 0 10px 10px 1px rgba(0,0,0,0.0) !important;
}


.header_right_menu{
  position: absolute;
  right: 25px;
  top: 100%;
  display: none;
  overflow: auto;
  max-height: calc(100vh - 10px - var(--header_height));
}
body.header_menu_opened .header_right_menu{
  display: block;
}

.header_right_menu ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
  width: 280px;
}
.header_right_menu ul a{
  display: block;
  text-align: center;
  padding: 27px;
  line-height: 1;
  background-color: #f07375;
  color: white;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;

  border-bottom: solid 1px #f28284;

  letter-spacing: 6px;
}
.header_right_menu ul a:hover{
  background-color: #f68284;
}

.header_main_logo{
  display: block;
}
.header_main_logo img{
  display: block;
  height: 77px;
  height: 50px;
  width: auto;
}
/*header*/


/*home_big_header*/
.home_big_header{
  position: relative;
  height: calc(100vh - var(--header_height));
  min-height: 700px;
  height: 1120px;
  margin-bottom: 70px;
}
.home_big_header_background{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 105%;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
    background-position: center -20px;
}
@media(min-width:1501px){
  .home_big_header_title_content,
  .home_big_header_title_content h1 {
    text-align:left !important;
  }
  .blog_single_content_head {
    margin:-25px 0 0;
  }
  .home_big_header_single_blog {
    position:relative;
  }
  .home_big_header_single_blog:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 110%;
    width: 70%;
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(255,255,255,0) 100%);
    z-index: 1;
  }
  .home_big_header_title_content {
    z-index:10;
  }
  .home_big_header.home_big_header_single_blog .form_mailchimp {
    z-index:10;
  }
  .blog_single_content img {
    margin:25px 0 !important;
    width: 100%;
  }
  .home_big_header_title_content p {
    font-size: 22px !important;
      padding-left: calc(100vw *30/1920);
      max-width: calc(100vw *480/1920);
      letter-spacing: calc(100vw *6/1920);
  }
  .article_box_item_content {
    text-align: right !important;
  }
  .blog_post_btn_read_more {
      padding: 20px 40px !important;
  }
}
.home_big_header_title_content{
  position: absolute;
  width: 800px;
  right: 0px;
  top: 20%;
}
.home_big_header_title_content h1{
  font-family: var(--font__juana_regular);
  font-weight: 400;
  font-size: 116px;
  color: var(--color_grey);
  line-height: 0.85;
  margin-bottom: 45px;
}
.home_big_header_title_content p{
  font-size: 29px;
  color: var(--color_grey);
  text-transform: uppercase;
  padding-left: 30px;
  position: relative;
  max-width: 480px;
  line-height: 1.3;
  letter-spacing: 6px;
}
.home_big_header_title_content p strong{
  font-weight: bold;
}
.home_big_header_title_content p:before{
  content: '';
  position: absolute;
  display: block;
  height: 100%;
  width: 5px;
  background-color: #f17474;
  left: 0px;
  top: 0px;
}








.form_mailchimp{
  background-color: #f0eeeb;
  padding: 60px;
  padding-right: 40px;

}
.form_mailchimp h4{
  font-family: var(--font__juana_regular);
  font-weight: 400;
  color: var(--color_grey);
  font-size: 35px;
  margin-bottom: 5px;
}
.form_mailchimp h4 small{
  font-size: 29px;
  font-family: var(--font_family__roboto_condensed);
  font-weight: 300;
  display: inline-block;
  padding-bottom: 3px;
}
.form_mailchimp .active_campaign._form_3 form input[name="email"],
.form_mailchimp .active_campaign._form_3 form button[type="submit"]._submit,
.form_mailchimp .form-control,
.form_mailchimp .input-group .btn{
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  background:white !important;
  border:none !important;
  color: #c3c3c3 !important;
}
.form_mailchimp .active_campaign._form_3 form button[type="submit"],
.form_mailchimp .input-group .btn{
  width: 70px !important;
  font-size: 27px !important;
}
.form_mailchimp .active_campaign._form_3 form button[type="submit"]{
  font-size: 0.1px !important;
  color: transparent !important;
  background-color: transparent !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_mailchimp .active_campaign._form_3 form button[type="submit"]:after{
  content: '\f1d8';
  display: block;
  font-family: "Font Awesome 5 Free"; font-weight: 400;
  font-size: 30px;
  color: white;
  color: var(--color_grey);
  color: white;
}
.form_mailchimp .active_campaign._form_3 form button[type="submit"]:hover,
.form_mailchimp .active_campaign._form_3 form input[name="email"],
.form_mailchimp .input-group .btn:hover,
.form_mailchimp .form-control{
  color: var(--color_grey) !important;
}
.form_mailchimp .active_campaign._form_3 form input[name="email"],
.form_mailchimp .form-control{
  font-size: 20px !important;
  padding: 15px 25px !important;
}



.form_mailchimp .active_campaign._form_3 form{
  margin: 0px !important;
  max-width: 100% !important;
  padding: 0px !important;
  background: transparent !important;
}
.form_mailchimp .active_campaign form ._form-branding{
  display: none;
}
.form_mailchimp .active_campaign form ._form-label{
  display: none !important;
}
.form_mailchimp .active_campaign form ._form-content>._form_element:first-child{
  display: none;
}
.form_mailchimp .active_campaign form ._form-content{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.form_mailchimp .active_campaign form ._form-content ._clear-element{
  display: none;
}
.form_mailchimp .active_campaign form ._form-content ._form_element{
  margin-bottom: 0px !important;
}
.form_mailchimp .active_campaign form ._form-content ._button-wrapper._full_width{
  width: auto !important;
  display: flex;
  align-items: stretch;
}








.home_big_header .form_mailchimp{
  position: absolute;
  right: 0px;
  bottom: 10%;
  width: 800px;
}

.home_big_header .home_big_title_signature{
  position: absolute;
  bottom: 115px;
  width: 440px;
  left: 55px;
  text-align: center;
}
.home_big_title_signature{
  color: #160e19;
}
.home_big_title_signature img{
  width: 181px;
}
.home_big_title_signature h3{
  font-family: var(--font__juana_regular);
  font-weight: 400;
  font-size: 29px;
  margin-bottom: 5px;
}
.home_big_title_signature p{
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 4px;
}
/*home_big_header*/




/*articles_boxes*/
.articles_boxes{
  margin-bottom: 130px;
}
.articles_boxes .container{
  max-width: var(--container_header_max_width);
}
.article_boxes_holder{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.article_boxes_holder>*{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 50%;
}

/*.article_box_item{
  background-color: #c3c3c3;
  border:solid 2px #f07375;
  display: block;
  padding-top: 0 !important;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  position:relative;
  display:flex;
  align-items:center;
  width:100%;
}
.article_box_item:before {
  content:'';
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  height:100%;
  width: 100%;
  background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
  z-index:1;
}*/
.article_box_item {
  background-color: #c3c3c3;
  border: solid 2px #f07375;
  display: block;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: flex-end;
}
.article_box_item_background{
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-size: cover;
  background-position: center top;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article_box_item:hover .article_box_item_background{
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*.article_box_item_content{
  position: relative;
  text-align: center;
  color: var(--color_grey);
    z-index:2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 15px;
  width:100%;
}*/
.article_box_item_content h3 br, .article_box_item_content p br {
  display: none;
}
.article_box_item_content {
  position: relative;
  text-align: center;
  color: var(--color_grey);
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 15px;
  width: 70%;
}
@media(min-width:600px){
  .article_box_item_content {
    background: rgba(255,255,255,0.85);
  }
}
.article_box_item:hover .article_box_item_content{
  -moz-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.article_box_item_content h3{
  font-size: 36px !important;
  font-family: var(--font__juana_regular);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 5px;
  color: inherit;
}
.article_box_item_content p{
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--font_family__roboto_condensed);
  
  letter-spacing: 2.5px;
}
.article_box_item_content h3{
  /*font-family: var(--font_family__juana);
  font-weight: 500;*/
  font-family: var(--font__juana_semibold);
  font-weight: 500;
}
.article_box_item_content h3 strong{
  text-decoration: underline;
  font-family: var(--font__juana_bold);
  font-weight: bold;
}


.article_boxes_holder_left .article_box_item{
  display: flex;
  justify-content: flex-end;
  padding-right: 55px;
  padding-top: 260px;
}
.article_boxes_holder_left .article_box_item .article_box_item_content{
  text-align: left;
}
.article_boxes_holder_left .article_box_item .article_box_item_content h3{
  font-size: 36px;
}
.article_boxes_holder_left .article_box_item .article_box_item_content p{
  font-size: 26px;
}

.article_boxes_holder_right{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.article_boxes_holder_right .article_box_item{
  height: 460px;
}
.article_boxes_holder_left .article_box_item{
  width: 100%;
}
.article_boxes_holder_left .article_box_item{
  border-right: none;
}
.article_boxes_holder_right .article_box_item{
  border-right: none;
  border-bottom: none;
}
.article_boxes_holder_right{
  border:solid 2px #f07375;
  border-left: none;
  border-top: none;
}

.link_read_more_articles{
  font-size: 29px;
  color: #f17474;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 15px;
  display: inline-block;
  padding: 5px 15px;
  border:solid 2px #f17474;
  border-color: transparent;
}
.link_read_more_articles:hover{
  border-color: #f17474;
}
/*articles_boxes*/





/*dr_j_content_right_photo*/
.dr_j_content_right_photo{
  position: relative;
  overflow: hidden;
  margin-bottom: 115px;
  padding-top: 180px;
  padding-bottom: 150px;

  background-color: #f3f6fb;
}
.dr_j_content_right_photo_background_mobile,
.dr_j_content_right_photo_background{
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-size: cover;
  background-position: right top;
}
.dr_j_content_right_photo .container{
  position: relative;
  max-width: var(--container_about_max_width);
}

.dr_j_content_right_photo_content h3,
.dr_j_content_right_photo_content h4{
  max-width: 715px;
}
.dr_j_content_right_photo_content p{
  max-width: 625px;
}
.dr_j_content_right_photo_content h4{
  font-weight: 300;
  font-family: var(--font_family__roboto_condensed);
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 11px;
  margin-bottom: 0px;
}
.dr_j_content_right_photo_content h3{
  font-family: var(--font__juana_regular);
  font-weight: 400;
  font-size: 54px;
  line-height: 1;
  margin-bottom: 65px;
  letter-spacing: 2px;
}
.dr_j_content_right_photo_content h3 em{
  font-style: normal;
  color: var(--color_pink);
  font-size: 16px;
  font-family: var(--font_family__roboto);
  display: inline-block;
  margin-left: 40px;
  vertical-align: middle;
  letter-spacing: 4px;
}
.dr_j_content_right_photo_content p{
  margin-bottom: 40px;
}

.dr_j_content_right_photo .home_big_title_signature{
  padding-top: 60px;
  display: flex;
  align-items: center;
}
.dr_j_content_right_photo .home_big_title_signature_content{
  margin-left: 20px;
  padding-left: 20px;
  border-left: solid 1px var(--color_grey);
  padding-top: 15px;
  padding-bottom: 15px;
}
.dr_j_content_right_photo_background_mobile{
  display: none;
}
/*dr_j_content_right_photo*/



/*shop_picks*/
.shop_picks{
  margin-bottom: 160px;
}
.shop_picks .container{
  max-width: var(--container_picks_max_width);
}
.picks_title_content{
  text-align: center;
  text-transform: uppercase;
}
.picks_title_content p{
  font-size: 36px;
  margin-bottom: 0px;
  letter-spacing: 35px;
}
.picks_title_content h2{
  /*font-family: var(--font_family__juana);
  font-weight: 500;*/
  font-family: var(--font__juana_semibold);
  font-weight: 500;
  color: #f17474;
  font-size: 85px;
  letter-spacing: 3px;
  line-height: 1;
}
.picks_title_content .container{
  max-width: 1630px;
}
.picks_content_holder{
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 5px 5px; 
  grid-template-areas: 
    ". . .";
}
.pick_item_box{
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.pick_item_box_photo{
  position: relative;
  margin-bottom: 5px;
  height: 560px;
  overflow: hidden;
}
.pick_item_box_photo>div{
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-size: cover;
  background-position: right center;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pick_item_box:hover .pick_item_box_photo>div{
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.pick_item_box_content{
  color: #f17474;
  text-align: center;
  padding: 12px 0px;
}
.pick_item_box_content h3{
  /*font-family: var(--font_family__juana);
  font-weight: bold;*/
  font-family: var(--font__juana_bold);
  font-weight: bold;
  line-height: 1;
  font-size: 50px;
  margin-bottom: 0px;
  margin-bottom: 5px;
  color: inherit;
}
.pick_item_box_content p{
  text-transform: uppercase;
  line-height: 1;
  font-size: 29px;
  letter-spacing: 18px;
  margin-left: 18px;
}
/*shop_picks*/



/*social_phone*/
.social_phone{
  margin-bottom: 185px;
  position: relative;
  height: 840px;
  background-color: #f7f6f5;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.social_phone_people{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: left center;
}
.social_phone_phone{
  position: absolute;
  left: 0px;
  top: -50px;
  width: 100%;
  height: calc(100% + 50px + 50px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social_phone_phone img{
  display: block;
  width: auto;
  height: 100%;
  position: relative;
}
.social_phone .container{
  position: relative;
  max-width: calc(50% - 235px);
  margin-left: initial;
  margin-right: initial;
  text-align: center;
}
.social_phone_social_icons{
  justify-content: center;
}
.social_phone_social_icons a{
  font-size: 37px;
}
.social_phone_social_icons li{
  margin-right: 30px;
}
.social_phone_instagram_link img{
  display: block;
  width: 100%;
}
.social_phone_instagram_link{
  margin: 0px auto;
  margin-bottom: 15px;
  width: 80%;
  max-width: 390px;
  display: block;
}
.social_people_email_link{
  /*font-family: var(--font_family__juana);
  font-weight: bold;
  font-family: var(--font__juana_bold);
  font-weight: 2000;*/
  font-family: var(--font__juana_regular);
  font-weight: 400;
  color: #f17474;
  font-size: 39px;
  line-height: 1;
  text-decoration: none;
  margin-bottom: 110px;
  display: block;
}
.social_people_email_link:hover{
  text-decoration: underline;
}
/*social_phone*/


/*the_logos*/
.the_logos{
  margin: 80px 0;
}
.the_logos .container{
  max-width: var(--container_the_logos_max_width);
}
.the_logos img{
  height: 57px;
  width: auto;
  display: inline-block;
  margin: 30px 45px !important;

  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.the_logos img:hover{
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}
/*the_logos*/



/*footer*/
footer{
  background-color: #f0eeeb;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}
.footer_left_part{
  width: 740px;
  /*background-image: url('../images/footer-bg-for-joyce.jpg');*/
  background-size: cover;
  position: relative;
  display:none;
}
.footer_left_part>div{
  position: absolute;
  left: 20%;
  top: -130px;
  width: 100%;
  width: 66%;

  height: calc(100% + 130px);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-position: center top;
  background-image: url('../images/joyce-for-footer.png');
  background-image: url('../images/the-doctor.jpg');
  background-size: auto 100%;
  background-size: cover;
}
.footer_right_part{
  width: 100%;
  padding-top: 75px;
  padding-bottom: 55px;
}


footer .container{
  max-width: 1030px;
}
footer .form_mailchimp{
  padding: 0px;
  margin-bottom: 45px;
}
footer .header_social_menu a{
  color: #6c6b6a;
}
footer .header_social_menu{
  margin-bottom: 55px;
}
.footer_copyright{
  color: #222222;
  font-size: 15px;
}

@media (min-width: 768px){
  footer .col-md-7{
    width: calc(100% - 245px);
  }
  footer .col-md-5{
    width: 245px;
  }
}
footer .header_social_menu a{
  font-size: 37px;
}
footer .header_social_menu li{
  margin-right: 25px;
}

footer .menu{
  list-style: none;
  padding-top: 15px;
  padding-left: 32px;
}
footer .menu a{
  display: block;
  font-size: 15px;
  color: #222222;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font_family__roboto_condensed);
  line-height: 2;
}
footer .menu a:hover{
  text-decoration: underline;
}
footer .mc4wp-form .input-group{
  max-width: 700px;
}
/*footer*/
























/*blog_section_top_big*/
.blog_section_top_big{
  padding-top: 50px;
  margin-bottom: 45px;
}
.blog_section_top_big_holder{
  position: relative;
  min-height: 900px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 180px;
}
.blog_section_top_big_bg img{
  display: none;
}
.blog_section_top_big_bg{
  background-size: cover;
  background-position: left center;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.blog_section_top_big_content{
  position: relative;
  width: 100%;
  max-width: 700px;
}
.blog_section_top_big .container{
  max-width: var(--container_blog_content_max_width);
}

.blog_section_top_big .form_mailchimp{
  background-color: transparent;
  padding: 0px !important;
}
.blog_section_top_big_content_html{
  margin-bottom: 80px;
}
.blog_section_top_big_content_html h1{
  font-size: 70px;
  font-family: var(--font_family__roboto_condensed);
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1;
}
.blog_section_top_big_content_html h1 em{
  font-style: normal;
  /*font-family: var(--font__juana_regular);
  font-weight: bold;*/
  font-family: var(--font__juana_bold);
  font-weight: bold;
  color: #f17374;
}
.blog_section_top_big_content_html{
  max-width: 640px;
}
/*blog_section_top_big*/


/*.the_posts*/
.the_posts .container{
  max-width: var(--container_blog_content_max_width);
}
.the_posts_category_title{
  padding: 55px;
  padding-left: 145px;
  position: relative;
  /*font-family: var(--font__juana_regular);
  font-weight: bold;*/
  font-family: var(--font__juana_bold);
  font-weight: bold;

  color: white;
  background-color: #f17374;
  line-height: 1;
  font-size: 42px;

  margin-bottom: 45px;
}
.the_posts_category_title>span{
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 145px;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.the_posts_category_title>span img{
  display: none;
}
/*.row_posts_with_categories_on_top{
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 45px 45px; 
  grid-template-areas: 
    ". . ."; 
}

.row_posts_with_categories_on_top>*{
  width: 100%;
}*/

.post_blocks_container{
  margin-bottom: 45px;
}
.post_blocks_container {
  margin-bottom: calc(100vw *100/1920);
  width: 33%;
  padding:0 15px;
}
.row_posts_with_categories_on_top > * {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.post_blocks_container .article_box_item{
  height: 545px;
  margin-bottom: 55px;
  border:none;
}
.article_box_item_background img{
  display: none;
}
.post_blocks_container_content{
  margin-bottom: 20px;
  padding: 0px 40px;
  padding-top: 0px;
  text-align: center;
  height: 270px;
  overflow: auto;
  font-family: var(--font_family__roboto_condensed);
  line-height: 1.8;
}
.post_blocks_container{
  margin-bottom: 100px;
}

.blog_post_btn_read_more{
  text-transform: uppercase;
  text-decoration: none;

  -webkit-border-radius: 0;
  border-radius: 0;

  border:none;

  font-size: 19px;
  font-family: var(--font_family__roboto_condensed);
  letter-spacing: 5px;
  padding: 30px 75px;

  background-color: #f17374;
}
.the_posts{
  margin-bottom: 215px;
}
/*.the_posts*/


/*advertise*/
.advertise{
  padding: calc(100vw * 15/1920) 0px;
  text-align: center;
}
.advertise .container{
  max-width: 100%;
}
.advertise img{
  width: calc(100vw * 628/1920);
}
/*advertise*/


/*home_big_header_single_blog*/
.home_big_header_single_blog{
  height: auto !important;
  min-height: 740px !important;
  padding-right: 185px;
  padding-top: 80px;
  padding-bottom: 215px;
  display: flex;
  justify-content: flex-end;
}
.home_big_header_single_blog h1{
  font-size: 93px !important;
  /*font-family: var(--font_family__juana);
  font-weight: 400;*/
  font-family: var(--font__juana_regular);
  font-weight: 400;
}
.home_big_header_single_blog .home_big_header_title_content{
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  right: auto;
}
.home_big_header_single_blog .container{
  width: auto;
  margin-left: 0px;
  margin-right: 0px;
}
.home_big_header_single_blog .home_big_header_title_content p{
  max-width: 560px;
  letter-spacing: 5px;
}

.home_big_header.home_big_header_single_blog .form_mailchimp{
  width: 845px;
  bottom: calc(0% - 230px/2);
  right: 0px;
  position: absolute;
  top: auto;
  left: auto;
}
.home_big_header_single_blog .home_big_header_title_content{
  width: 650px;
}
.home_big_header.home_big_header_single_blog .container{
  position: static !important;
}
.home_big_header_single_blog .home_big_header_background{
  -moz-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -o-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
/*home_big_header_single_blog*/




/*blog_single_content*/
.blog_single_content{
  margin-bottom: 145px;
}
.blog_single_content .container{
  max-width: var(--container_blog_content_max_width);
}
.blog_single_content .container .row>*:not(.col-lg-12):first-child{
  padding-right: 65px;
}
.blog_single_content .container .row>*:not(.col-lg-12):last-child{
  padding-left: 65px;
}
.blog_single_content_head{
  max-width: 810px;
  font-size: 26px;
  font-weight: 300;
  font-family: var(--font_family__roboto_condensed);
}
.blog_single_content_head_top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog_single_content_head_top .header_social_menu a{
  color: #9e9e9e;
}
.blog_single_content_head_top .header_social_menu a:hover{
  color: inherit;
}
.blog_single_content_head_creator span{
  color: #f07473;
  font-family: var(--font_family__roboto_condensed);
  font-weight: bold;
  display: inline-block;
  margin: 0px 5px;
}
.blog_single_content_head hr{
  display: block;
  width: 100%;
  border:none;
  height: 1px;
  background-color: #f17374;

  margin: 18px 0px !important;
}
.blog_single_content_submenu{
  text-transform: uppercase;
  list-style: none;
  margin:0px;
  padding: 0px;
}
.blog_single_content_submenu{
  display: flex;
  align-items: center;
}
.blog_single_content_submenu>li{
  margin-right: 25px;
}
.blog_single_content_submenu>li:last-child{
  margin-right: 0px;
}
.blog_single_content_submenu_separator{
  width: 10px;
  height: 10px;
  background-image: url('../images/arrow-right-pink.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.blog_single_content_submenu li:not(.blog_single_content_submenu_separator){
  letter-spacing: 2px;
  line-height: 1.2;
}

.single_blog_content{
  font-size: 24px;
}
.single_blog_content p{
  margin-bottom: 30px;
}
.single_blog_content h1,
.single_blog_content h2,
.single_blog_content h3,
.single_blog_content h4,
.single_blog_content h5{
  color: var(--color_pink);
}
.single_blog_content>p:first-child>em:first-child{
  font-style: normal;
  color: #f17474;
  font-size: 85px;
  line-height: 1;
  /*font-family: var(--font__juana_regular);
  font-weight: bold;*/
  font-family: var(--font__juana_bold);
  font-weight: bold;
}
.single_blog_content :where(img[class*=wp-image-]){
  margin: 35px 0px !important;
}
.single_blog_content h3{
  margin-bottom: 30px;
  color: #f17474;
  font-size: 40px;
  /*font-weight: bold;
  font-family: var(--font__juana_regular);*/
  font-family: var(--font__juana_bold);
  font-weight: bold;
}
.blog_single_content .col-lg-7{
  width: 62%;
}
.blog_single_content .col-lg-5{
  width: 38%;
}
/*blog_single_content*/






















/*blog_single_content right*/
.blog_single_home_big_title_signature{
  margin-bottom: 100px;
}
.blog_single_home_big_title_signature_doctor{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/doctor-profile.png');
  width: 138px;
  height: 138px;

  -webkit-border-radius: 69px;
  border-radius: 69px;
}
.blog_single_home_big_title_signature{
  max-width: 510px;
}
.blog_single_post_signature_content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog_single_home_big_title_signature img{
  margin-left: calc(138px + 60px);
}

.blog_single_sidebar_content{
  margin: 0 auto;
  max-width: 450px;
}
.blog_single_sidebar_content h3{
  font-size: 40px;
  color: #f17474;
  /*font-weight: bold;
  font-family: var(--font__juana_regular);*/
  font-family: var(--font__juana_bold);
  font-weight: bold;
  line-height: 1;
  padding-bottom: 30px;
  border-bottom: solid 1px #d9d9d9;
  margin-bottom: 0px;
}
.blog_single_sidebar_content ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
  margin-bottom: 75px;
}
.blog_single_sidebar_content ul>li>a{
  display: block;
  padding: 25px 20px;
  line-height: 1.2;
  border-bottom: solid 1px #d9d9d9;
  color: #3b3b3b;
  text-decoration: none;
}
.blog_single_sidebar_content ul>li>a:hover{
  color: #f67272;
}
.sidebar_ads_holder_item{
  margin-bottom: 20px;
}


.articles_boxes_blog_single .article_boxes_holder_right,
.articles_boxes_blog_single .article_box_item{
  border-color: white !important;
}
/*.articles_boxes_blog_single .article_box_item{
  border-top: none;
}*/
.articles_boxes_blog_single .article_boxes_holder_right{
  border-right: none;
}
.articles_boxes_blog_single .container{
  max-width: 100% !important;
}
.articles_boxes_blog_single .row .col-lg-12{
  padding:0px;
}
/*blog_single_content right*/



/*about*/
.articles_boxes_for_about{
  margin-bottom: 230px !important;
}


.banner_join_the_club{
  background-color: #f27475;
  color: white;
  padding: 70px 0px;
}
.banner_join_the_club .container{
  max-width: 950px;
}
.banner_join_the_club .form_mailchimp{
  background-color: transparent;
  padding: 0px;
  color: white;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.banner_join_the_club .form_mailchimp h4{
  color: white;
}


.badge_list{
  margin-bottom: 210px;
}
.badge_list_signature_doctor{
  width: 310px;
  height: 310px;
  background-size: cover;
  background-position: center;

  -webkit-border-radius: 155px;
  border-radius: 155px;
  margin-bottom: 45px;
}
.badge_list_signature .home_big_title_signature_content{
  padding: 15px 25px;
  border-left: solid 1px #1d1d1d;
  color: #160e19;
  margin-bottom: 35px;
}
.badge_list_signature .home_big_title_signature h3{
  font-size: 23px;
}
.badge_list_signature .home_big_title_signature p{
  font-size: 15px;
}
.badge_list_signature{
  width: 100%;
  max-width: 330px;
}
.badge_list_signature img{
  display: block;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.badge_list_holder{
  padding-top: 20px;
}
.badge_list_holder ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-size: 23px;
  font-family: var(--font_family__roboto);
  font-weight: 300;
}
.badge_list_holder ul strong{
  font-weight: 500;
}
.badge_list_holder ul li{
  margin-bottom: 25px;
  padding-left: 60px;
  padding-top: 5px;
  padding-bottom: 15px;
  min-height: 49px;
  position: relative;
}
.badge_list_holder ul li:before{
  position: absolute;
  display: block;
  content: '';
  left: 0px;
  top: 0px;
  width: 40px;
  height: 49px;
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  background-image: url('../images/badge.png');
}
.badge_list .container{
  max-width: var(--container_about_max_width);
}
.badge_list .row>*:first-child{
  width: 430px;
}
.badge_list .row>*:last-child{
  width: calc(100% - 430px);
}
/*about*/










/*contact*/
.contact{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 210px;
}
.contact>*{
  width: 50%;
  padding-top: 125px;
  position: relative;
}
.contact_left_part{
  background-color: #f0eeeb;
}
.contact_button_at_bottom{
  position: absolute;
  left: 0px;
  bottom: calc(0px - 90px/2);
  width: 100%;
  text-align: center;
}
.contact_left_part .badge_list_signature_doctor{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
}
.contact_om_logo{
  display: block;
  margin: 0px auto;
  width: 100%;
  max-width: 264px;
  margin-bottom: 45px;
}
.contact_left_part_content{
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  color: black;
  text-align: center;
  padding-bottom: 95px;
}
.contact_left_part_content h1{
  margin-bottom: 40px;
  font-size: 29px;
  font-weight: 300;
  font-family: var(--font_family__roboto_condensed);
  text-transform: uppercase;
}
.contact_left_part_content h1 em{
  /*font-family: var(--font__juana_regular);
  font-weight: bold;*/
  font-family: var(--font__juana_bold);
  font-weight: bold;
  font-style: normal;
}
.contact_left_part_content p{
  font-size: 25px;
  font-weight: 300;
  font-family: var(--font_family__roboto_condensed);
}

.blog_post_btn_read_more.v2{
  font-size: 24px;
  font-family: var(--font_family__roboto_condensed);
  font-weight: 400;
  line-height: 1.25;
  background-color: #f07371;
  padding: 30px 40px;
  letter-spacing: 0px;
  font-weight: 400;
}
.contact_button_at_bottom a{
  width: 100%;
  max-width: 390px;
}
/*contact*/



/*contact right form*/
.contact_right_part .container{
  max-width: 700px;
}
.contact_right_content{
  text-align: center;
}


.contact_right_content{
  color: black;
  margin-bottom: 70px;
}
.contact_right_content h2{
  font-size: 29px;
  font-family: var(--font_family__roboto_condensed);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.contact_right_content h2 em{
  font-style: normal;
  /*font-weight: bold;
  font-family: var(--font__juana_regular);*/
  font-family: var(--font__juana_bold);
  font-weight: bold;
}
.contact_right_content p{
  font-family: var(--font_family__roboto_condensed);
  font-weight: 300;
  font-size: 29px;
}

.contact_right_form h3{
  color: #1d1d1d;
  font-size: 31px;
  text-align: center;
  /*font-family: var(--font__juana_regular);
  font-weight: bold;*/
  font-family: var(--font__juana_bold);
  font-weight: bold;
  padding-bottom: 30px;
  text-align: center;
}
.contact_right_form .nf-before-form-content{
  display: none;
}
.contact_right_form .nf-form-content textarea.ninja-forms-field,
.contact_right_form .nf-form-content input:not([type=button]){
  border:solid 1px #d8d8d8;
  color: #1d1d1d;
  font-size: 18px;
  font-family: var(--font_family__roboto);
  font-weight: 300;
  background-color: transparent;
  height: auto;
  
  padding: 15px 18px;
  line-height: 1;
}
.contact_right_form .nf-form-content textarea.ninja-forms-field{
  height: 240px;
}
.contact_right_form nf-field{
  display: block;
  margin-top: 35px;
}
.contact_right_form *>nf-field:first-child{
  margin-top: 0px;
}
.contact_right_form .nf-pass.field-wrap .nf-field-element:after,
.contact_right_form .nf-error.field-wrap .nf-field-element:after{
  font-size: 20px;

  top: 1px;
  right: 1px;
  bottom: 1px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
}
.contact_right_form .nf-input-limit{
  margin-bottom: 5px;
}
.contact_right_form{
  padding-bottom: 80px;
  max-width: 615px;
  margin-left: auto;
  margin-right: auto;
}
.contact_right_form .nf-form-content{
  padding: 0px;
  max-width: 100%;
}
.contact_right_form *>nf-field:last-child{
  display: none;
}
.contact .contact_button_at_bottom>*{
  width: 100%;
  max-width: 400px;
}
/*contact right form*/



/*page_content*/
.page_content h1,
.page_content h2,
.page_content h3,
.page_content h4{
  padding-top: calc(100vw * 50/1920);
  margin-bottom: calc(100vw * 30/1920);
}
@media (min-width: 900px){

  .page_content .container{
    max-width: calc(100vw * 900/1920);
  }

  .page_content_shop .container{
    max-width: calc(100vw * 1200/1920);
  }
}
.page_content{
  padding-top: calc(100vw * 100/1920);
  padding-bottom: calc(100vw * 250/1920);
}
/*page_content*/

.all-blogs-modal {
  padding-top:50px;
  max-width:767px;
}
.all-blogs-modal .close {
  appearance: none;
  background: #fff;
  border: none;
  position: absolute;
  right: 15px;
  top: 0px;
  font-size: 36px;
}
.all-blogs-modal  .upl-list {
  max-height: 300px;
  overflow-y: scroll;
}
.all-blogs-modal .upl-list li {
  margin:0 0 10px !important;
}
.all-blogs-modal .upl-list li a {
  color:#000000;
  text-decoration:none;
}
.modal.show.allposts .modal-dialog {
  transform: none;
  height: 100%;
  display: flex;
  align-items: center;
}
.btn-view-all-blogs {
  background:#f17374;
  border-radius:0;
  font-size:18px;
  padding:15px 30px;
  border:none;
  font-family: var(--font__juana_semibold);
  font-weight: 500;
}
.advertise-with-us {
  padding:50px 0 !important;
}
.advertise-with-us h2 {
    font-size:50px !important;
    position:relative;
}
.advertise-with-us h2:after{
  position:relative;
  width:100%;
  display:inline-block;
  --font_family__roboto: 'Roboto', sans-serif;
--font_family__roboto_condensed: 'Roboto Condensed', sans-serif;
--font__juana_regular: 'juana-regular';
--font__juana_semibold: 'juana-semibold';
--font__juana_bold: 'juana-bold';
font-family: var(--font_family__roboto);
font-weight: 300;
margin:5px 0 25px;
top:-20px;
  content:"Minimum advertising investment of $2,000.";
  font-size:18px;
  line-height:22px;
}
.advertise-with-us h3 {
    font-size:26px !important;
}
.advertise-with-us .nf-form-content   {
  max-width:575px !important;
  float:left;
  padding:0;
}
@media(max-width:767px) {
  .advertise-with-us .nf-form-content   {
     max-width:767px !important;
  }
}
.advertise-with-us nf-field {
  padding-bottom:15px !important;
  position:relative;
  display: inline-block;
  width: 100%;
}
.advertise-with-us .nf-error .nf-error-msg {
  position:absolute;
      font-size: 12px;
    bottom: -13px;
}
.advertise-with-us .nf-form-content textarea.ninja-forms-field {
    height: 120px;
}
.advertise-with-us .nf-form-content input[type=button]{
    background: #f17374;
    border-radius: 0;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    margin: -15px 0 0;
}
.advertise-with-us .nf-after-form-content {
  width: 100%;
    display: inline-block;
  position:relative;
}
.advertise-with-us .nf-after-form-content  .nf-error-msg {
    width: 100%;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
}
.advertise-with-us .dr_j_content_right_photo_background  {
  height: 90vh;
}
@media (max-width:767px){
  .advertise-with-us {
    padding: 50px 0 270px !important;
  }
  .advertise-with-us h2 {
    font-size: 30px !important;
  }
  .advertise-with-us .nf-after-form-content .nf-error-msg {
    width: 100%;
    display: inline-block;
    position: absolute;
    bottom: 10px;
    left: 0;
    font-size: 14px;
  }
}
.tips-n-tricks-wrapper {
  margin:0 0 20px;
}
.tips-n-tricks-wrapper  .container {
  max-width: var(--container_header_max_width);
}
.tips-n-tricks {
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
}
.tips-n-tricks .tips-title {
  font-size: calc(100vw *29/1920);
  letter-spacing: calc(100vw *15/1920);
  padding: calc(100vw *5/1920) calc(100vw*15/1920);
  border: solid calc(100vw *2/1920) #f17474;
  border-top-color: rgb(241, 116, 116);
  border-right-color: rgb(241, 116, 116);
  border-bottom-color: rgb(241, 116, 116);
  border-left-color: rgb(241, 116, 116);
  border-color: transparent;
  color: #555555;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 15px;
  display: inline-block;
  margin-right:15px;
  min-width: 460px;
}
.articles_boxes.for-dentists,
.articles_boxes.for-patients {
  display:none;
}
.articles_boxes.for-dentists.active,
.articles_boxes.for-patients.active {
  display:block !important;
} 
.for-dentists-button,
.for-patients-button {
  cursor:pointer;
}
.for-dentists-button {
  display:flex;
  width:100%;
  align-items:center;
  justify-content:  center;
  margin-right:15px;
  background:#f17474;
  font-size: 20px;
  letter-spacing: calc(100vw *15/1920);
  padding: calc(100vw *5/1920) calc(100vw*15/1920);
  border: solid calc(100vw *2/1920) #f17474;
  border-top-color: rgb(241, 116, 116);
  border-right-color: rgb(241, 116, 116);
  border-bottom-color: rgb(241, 116, 116);
  border-left-color: rgb(241, 116, 116);
  border-color: transparent;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 12px;
}
.for-patients-button {
  display:flex;
  width:100%;
  align-items:center;
  justify-content:  center;
  background:#f59595;
  font-size: 20px;
  letter-spacing: calc(100vw *15/1920);
  padding: calc(100vw *5/1920) calc(100vw*15/1920);
  border: solid calc(100vw *2/1920) #f17474;
  border-top-color: rgb(241, 116, 116);
  border-right-color: rgb(241, 116, 116);
  border-bottom-color: rgb(241, 116, 116);
  border-left-color: rgb(241, 116, 116);
  border-color: transparent;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 12px;
}
.for-dentists-button:hover,
.for-patients-button:hover {
  background:#222222;
}
@media(max-width:1600px){
  .tips-n-tricks {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    text-align:center;
  }
  .tips-n-tricks .tips-title,
  .for-dentists-button,
  .for-patients-button {
    margin:0 0 10px;
    letter-spacing:8px;
    font-size:20px;
    text-align:center;
    min-width:auto;
  }
  .tips-n-tricks-wrapper  .container{
    max-width: 914px;
  }
}





/*From 2023.4.30 */
.header_big_content{
  margin-bottom: 140px;
}
.header_big_content .container{
  max-width: var(--container_about_ads);
}
.header_big_content_pink{
  /*background-color: #ece4e2;*/
  padding-top: 130px;
  padding-bottom: 60px;
}
.header_big_content_pink .content_holder_pink,
.header_big_content_pink .content_holder_pink>*{
  position: relative;
}
.header_big_content_pink .content_holder_pink:before{
  content: '';
  position: absolute;
  display: block;
  top: 0px;
  height: 100%;
  width: 100%;
  left: 0px;
  background-color: #ece4e2;

  left: -500px;
  width: calc(100vw + 500px);

}
.header_big_content_pink{
  overflow: hidden;
}
.header_big_content_pink h1{
  font-size: 80px;
  color: #1d1d1d;
  margin-bottom: 45px;
}
.header_big_content_pink .content_holder{
  max-width: 800px;
}
.header_big_content_pink h1 strong{
  color: #f17374;
}
.header_big_content_pink p{
  color: #1d1d1d;
  font-size: 28px;
  max-width: 675px;
}
.header_big_content_pink p strong em,
.header_big_content_pink p strong{
  color: #f17374;
  font-weight: bold;
}
.header_big_content_pink .blog_single_home_big_title_signature{
  margin-top: 65px;
}
.header_big_content_pink .content_holder_white{
  padding: 65px 0px;
  padding-bottom: 0px;
}
.header_big_content_pink .content_holder_pink{
  padding: 65px 0px;
  padding-top: 130px;
}
.header_big_content_pink .col-lg-12{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.header_big_content_pink{
  padding: 0px;
}
.pink_content_big_photo{
  width: 670px;
  object-fit: cover;
  object-position: center top;
  -o-object-fit: cover;
  -o-object-position: center top;
  position: relative;
}
.page-template-template-111 header{
  border-bottom: none;
}
.header_big_content_pink .content_holder_white p{
  max-width: 795px;
  line-height: 30px;
  font-size: 24px !important;
}
.header_big_content_pink .content_holder_white::first-letter{
  font-size: 52px;
  font-family: var(--font__juana_regular);
  font-weight: 400;
}


.content_about_ads_photo_content .col-lg-12{
  display: flex;
  justify-content: space-between;
}
.content_about_ads_photo_content img{
  width: 570px;
  object-fit: cover;
  object-position: center top;
  -o-object-fit: cover;
  -o-object-position: center top;
}
.content_about_ads_photo_content .the_content_right_of_photo{
  width: calc(100% - 570px - 115px);
  padding-top: 80px;
}
.content_about_ads_photo_content .the_content_right_of_photo h2,
.content_about_ads_photo_content .the_content_right_of_photo h3{
  font-size: 52px;
  color: var(--color_pink);
  margin-bottom: 30px;
  font-weight: 400;
  font-family: var(--font__juana_regular);
}
.content_about_ads_photo_content .the_content_right_of_photo p{
  margin-bottom: 30px;
  color: var(--color_grey);
  font-family: var(--font_family__roboto);
  font-weight: 300;
}
.content_about_ads_photo_content .the_content_right_of_photo p strong{
  font-weight: 400;
}
.content_about_ads_photo_content{
  margin-bottom: 100px;
}
.content_about_ads .container{
  max-width: var(--container_about_ads);
}

.content_about_ads_red_content{
  margin-bottom: 140px;
}
.content_about_ads_red_content .col-lg-12>div{
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  color: white;
  padding: 40px;
}
.content_about_ads_red_content .col-lg-12>div p{
  font-size: 37px !important;
  text-align: center;
  font-weight: 400;
}
.content_about_ads_red_content .col-lg-12>div:before{
  display: block;
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--color_pink);

  -webkit-border-radius: 15px;
  border-radius: 15px;

  -moz-transform: skewX(-5deg);
  -webkit-transform: skewX(-5deg);
  -o-transform: skewX(-5deg);
  -ms-transform: skewX(-5deg);
  transform: skewX(-5deg);
}
.content_about_ads_red_content .col-lg-12>div>*{
  position: relative;
}
.content_about_ads_item .col-lg-12{
  display: flex;
  justify-content: flex-end;


  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;


}
.content_about_ads_item .col-lg-12>div{
  width: calc(100% - 275px);
  border-left: solid 4px #f6acac;
  padding-left: 85px;
}
.content_about_ads_item{
  margin-bottom: 140px !important;
}
.content_about_ads_item h2,
.content_about_ads_item h3{
  font-size: 52px;
  color: var(--color_pink);
  margin-bottom: 15px;
  font-family: var(--font__juana_regular);
  font-weight: 400;
  margin-top: -10px;
}
.content_about_ads_item p{
  font-size: 24px !important;
  font-weight: 300;
  margin-bottom: 30px;
}
.content_about_ads_item p strong{
  font-weight: 400;
}
.button_check_it_out{
  font-size: 28px;
  font-family: var(--font__juana_regular);
  font-weight: 400;
  color: white;
  background-color: #62db9e;

  -webkit-border-radius: 15px;
  border-radius: 15px;

  padding: 22px 55px;

  text-decoration: none;

  display: inline-block;
}
.button_check_it_out:hover{
  background: var(--color_pink);
}
.content_about_ads_item .col-lg-12>div{
  position: relative;
}
.content_about_ads_item .col-lg-12>div:before{
  content: '1';
  display: block;
  position: absolute;
  right: calc(100% + 100px);
  top: 0px;
  text-align: center;
  width: 180px;
  padding: 35px 0px;
  color: white;
  background-color: var(--color_pink);
  font-size: 65px;
  font-family: var(--font__juana_regular);
  font-weight: 400;
  line-height: 1;

  -webkit-border-radius: 15px;
  border-radius: 15px;

}
.content_about_ads_item.content_about_ads_item_great_then_111 .col-lg-12>div:before{
  opacity: 0;
}
.content_about_ads{
  counter-reset: ads_counter;
}
.content_about_ads_item .col-lg-12>div:before{
  counter-increment: ads_counter;
  content: "" counter(ads_counter) "";
}
*>.content_about_ads_item:last-child{
  margin-bottom: 0px !important;
}
.content_about_ads{
  margin-bottom: 355px;
}
.content_about_ads_item.content_about_ads_item_hide_number .col-lg-12>div:before{
  display: none;
}
.content_about_ads_item.content_about_ads_item_hide_number .col-lg-12>div{
  width: 100%;
}






.klaviyo-form div[data-testid="form-row"] div[data-testid="form-component"]{
	padding: 0px !important;
}
.klaviyo-form form{
	padding: 0px !important;
}
.klaviyo-form form>div{
	min-height: 0px !important;
}
.klaviyo-form input[type="email"]{
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
	
    padding: 15px 25px !important;
	
	height: auto !important;
	color: black !important;
    font-size: 20px !important;
    font-family: var(--font_family__roboto_condensed) !important;
    font-weight: 400 !important;
    letter-spacing: 0px !important;
    background-color: rgb(255, 255, 255) !important;
    border:none !important;
}
.klaviyo-form input[type="email"]::placeholder{
    font-size: 20px !important;
}
.klaviyo-form input[type="email"]:focus{
	-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0) !important;
	box-shadow: 0 0 0 0 rgba(0,0,0,0) !important;
}
.klaviyo-form:not(.kl-private-reset-css-Xuajs1) button[type="button"],
.klaviyo-form:not(.kl-private-reset-css-Xuajs1) button[type="button"]{
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
	background-color: black !important;
	color: white !important;
	font-size: 1px !important; 
	color: transparent !important;
	height: 54px !important;
	width: 60px !important;
}
.klaviyo-form:not(.kl-private-reset-css-Xuajs1) button[type="button"]:after,
.klaviyo-form:not(.kl-private-reset-css-Xuajs1) button[type="button"]:after{
	content: '\f1d8';
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 30px;
    color: white;
    color: var(--color_grey);
    color: white;
}
.klaviyo-form form>div>div p{
	text-align: left !important;
}
.klaviyo-form form>div>div:first-child span{
	font-size: 24px !important;
}
.klaviyo-form form>div>div:last-child span{
	font-size: 16px !important;
}
@media (max-width: 400px){
	.klaviyo-form div[data-testid="form-row"]{
		display: block !important;
	}
	.klaviyo-form div[data-testid="form-row"]>*{
		width: 100%;
	}
	.klaviyo-form button[type="button"]{
		width: 100% !important;
	}
}
.joyce-header-buttons {

}
.joyce-header-buttons ul li {
  display:inline-block;
  list-style-type: none;
}
.joyce-header-buttons ul li a {
  display:inline-block;
  padding:10px 30px;
  text-decoration: none;
}
.joyce-header-buttons ul li a:hover {
  opacity:0.5;
}
.joyce-header-buttons ul li:first-child a {
  background:#000000;
  color:#ffffff;
}
.joyce-header-buttons ul li:nth-child(2) a {
  background:#f2707a;
  color:#ffffff;
}
.menu-n-buttons {
  display: flex;
  align-items: center;
}
.joyce-header-buttons {
  margin-right:20px;
}
@media(max-width:767px) {
  header {
    padding-top: 60px !important;
  }
  .joyce-header-buttons {
    margin-right: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .joyce-header-buttons ul{
    padding:0;
    margin:0;
    display:flex;
    flex-wrap:nowrap;
  }
  .joyce-header-buttons ul li {
    width:50%;
    margin:0;
  }
  .joyce-header-buttons ul li a {
    width:100%;
    text-align:center;
  }
  /*P Wilk */

.heading-footer-links{

  margin-top: 20px;
  text-align: center;
  padding-left: 0;
}
}
.home__new {
  padding:150px 0;
  font-family: 'Roboto', sans-serif;
  position:relative;
}
.home__new .row {
  align-items:  center;
}
.home__new .intro_text h3 {
  color:#363636;
  text-transform:  uppercase;
  font-size:30px;
  line-height:1.2;
  font-family: 'Roboto', sans-serif;
  margin:0;
}
.home__new .intro_text h1 {
  color:#000000;
  text-transform:  uppercase;
  font-size:72px;
  line-height:1.2;
  letter-spacing:-1px;
  font-family: 'Roboto', sans-serif;
  font-weight:900;
}
.home__new .intro_text .social-info:before{
  content:'';
  width:85%;
  height:2px;
  position:absolute;
  top:0;
  left:0;
  background:#ececec;
}
.home__new .intro_text .social-info{
  position:relative;
    display:inline-flex;
    width:100%;
    flex-wrap:nowrap;
    padding:20px 0 0;
    margin: 5px 0 0 ;
}
.home__new .intro_text .social-info .social img {
  height:30px;
  width:30px;
  margin-right:5px;
  color:#363636;
  font-size:17px;
}
.home__new .intro_text .social-info .social {
  display:inline-flex;
  flex-wrap:nowrap;
  align-items:  center;
  padding-right:50px;
  font-weight:700;
}
.home__new .joyce-img {
  width:100%;
}
.home__new .arrow-down {
  position:absolute;
  bottom: -35px;
  z-index:10;
}
.subscribe-section {
  background:#efefef;
  padding:150px 0;
}
.subscribe-section .main-text {
  font-size:32px;
  line-height:1.2;
  text-transform:uppercase;
  color:#000000;
  font-weight:700;
}
.subscribe-section .main-text span {
  background:#000000;
  padding:8px;
  color:#ffffff;
}
.subscribe-section .main-text h3 {
  font-family: 'Roboto', sans-serif;
  font-size:50px;
  font-weight:100;
      padding: 0 0 30px;
  display:block;
}
@media (max-width:767px){
  .home__new {
    padding: 50px 0;
  }
  .home__new .intro_text {
    text-align:center;
  }
  .home__new .intro_text h3 {
    font-size: 18px;
  }
  .home__new .intro_text h1 {
    font-size: 32px;
  }
  .home__new .intro_text .social-info .social {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    padding-right: 0;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    margin: 0 0 15px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .home__new .intro_text .social-info {
    flex-wrap: wrap;
    padding:15px 0;
  }
  .home__new .intro_text .social-info::before {
    width:100%;
  }
  .subscribe-section .main-text h3 {
    font-size:36px;
  }
  .subscribe-section {
    padding: 70px 0;
  }
  .subscribe-section .main-text span {
    padding: 1px 5px;
  }
  .latest-blogs,
  .trending-blogs  {
    padding:30px 0 !important;
  }
  .swiper-nav-latest,
  .swiper-nav-trending {
    position: relative !important;
    top: 0px !important;
    right: auto!important;
    width: auto!important;
    display: inline-flex!important;
  }
  .swiper-nav-trending div{
    margin:0 2px !important;
  }
  .swiper-container-trending, .swiper-container-latest {
    padding:0 20px;
  }
}

.new-blog-wrapper {
  position:relative;
  padding:30px 0;
  font-family: 'Roboto', sans-serif;
}
.new-blog-wrapper p {
  font-family: 'Roboto', sans-serif;
    font-size: 16px !important;
    line-height: 28px;
    margin: 0 0 30px;
}
.new-blog-wrapper p a {
  color:rgba(71,21,22,1);
  text-decoration: underline;
  font-weight:500;
}
.new-blog-wrapper h2,
.new-blog-wrapper h3,
.new-blog-wrapper h4,
.new-blog-wrapper h5,
.new-blog-wrapper h6
{
  font-family: 'Roboto', sans-serif;
  font-weight:bold;
  color:#f26d6d;
}
.new-blog-wrapper:before {
  content:'';
 background: rgb(195,195,195);
background: linear-gradient(0deg, rgba(207, 207, 207, 0.94) 0%, rgb(247, 247, 247) 78%);
  top:0;
  left:0;
  right:0;
  height:450px;
  z-index: -1;
  position: absolute;
}
.new-blog-wrapper .blog-top-section {
  z-index:1;
}
.new-blog-wrapper .blog-top-section h1 {
  color:#222222;
  font-family: 'Roboto', sans-serif;
  font-size:42px;
  line-height:45px;
  font-weight: 100;
  letter-spacing: 2px;
  margin: 0 0 5px;
}

.new-blog-wrapper .blog-top-section p {
  text-transform: uppercase;
  font-size:16px;
  line-height:24px;
  letter-spacing: 2px;
  color:#222222;
}
.new-blog-wrapper .new-blog-image {
  height:420px;
  width:100%;
  background-size:cover;
  margin:0 0 25px;
  box-shadow:0 15px 15px rgba(0,0,0,0.25);
}
.new-blog-wrapper .author_image {
  height:50px;
  width:50px;
  background-size:contain;
  box-shadow:0 0 15px rgba(0,0,0,0.15);
  border-radius:50%;
}
.new-blog-wrapper .blog-below-image {
    display: flex;
    flex-wrap: nowrap;
}
.new-blog-wrapper .blog-below-image .share-this,
.new-blog-wrapper .blog-below-image .date-author {
  width:50%;
}
.new-blog-wrapper .blog-below-image .author,
.new-blog-wrapper .blog-below-image .date {
  font-family: 'Roboto', sans-serif;
  font-size:14px;
  width:100%;
}
.new-blog-wrapper .blog-below-image .date  {
  font-size:14px;
  width:100%;
}
.updated-date{
 font-family: 'Roboto', sans-serif;
  font-size:14px;

}
.new-blog-wrapper .blog-below-image .author {
  color:#868484;
  display:flex;
  align-items:center;
  margin: -15px 0 0;
}
.new-blog-wrapper .blog-below-image .author a{
  color:#000000;
  font-weight:bold;
  margin-right:15px;
}
.new-blog-wrapper .blog-below-image {
  padding: 0 0 50px;
}
.new-blog-wrapper .related-topics h4 {
  color:#222222;
}
.new-blog-wrapper .related-topics ul {
  margin: 0;
  padding:0;
}
.new-blog-wrapper .related-topics ul li {
  list-style-type:none;
  border-bottom:1px solid #ffffff;
}
.new-blog-wrapper .related-topics ul li a {
  color:#222222;
  font-size:16px;
  letter-spacing:0.5px;
  text-decoration:none !important;
}
.new-blog-wrapper .related-topics ul li a:hover {
  font-weight:bold;
  color:#d19797;
}
@media (min-width:768px) and (max-width:991px) {
  .new-blog-wrapper .blog-below-image {
    flex-wrap: wrap;
  }
  .new-blog-wrapper .blog-below-image .share-this, .new-blog-wrapper .blog-below-image .date-author {
    width: 100%;
  }
  div#st-1 {
    text-align: left;
  }
}
@media (max-width:767px){
  .new-blog-wrapper .blog-below-image {
    flex-wrap: wrap;
  }
  .new-blog-wrapper .blog-below-image .share-this, .new-blog-wrapper .blog-below-image .date-author {
    width: 100%;
  }
  div#st-1 {
    text-align: left;
  }
  .new-blog-wrapper:before {
    height: 300px;
  }
  .new-blog-wrapper .new-blog-image {
      height: 250px;
  }
  .new-blog-wrapper .related-topics {
    margin:35px 0 0;
    background:#f4f4f4;
    padding:25px;
    border-radius:25px;
  }
  .new-blog-wrapper .related-topics h4 {
    color:#222222;
  }
  .new-blog-wrapper .related-topics ul li a{
    color:#222222;
  }
  .new-blog-wrapper .related-topics ul li:last-child {
    border:none;
  }
  .new-blog-wrapper .related-topics ul li {
    list-style-type: none;
    border-bottom: 1px solid #ccbdbd;
    padding: 8px 0;
  }
  .new-blog-wrapper .blog-top-section h1 {
    font-size: 30px;
    line-height: 34px;
  }
  .new-blog-wrapper .blog-top-section p {
    font-size: 14px !important;
    line-height: 24px;
    letter-spacing: 2px;
  }
}
/***about H1 css***/
.about-h1 h1 {
    font-family: var(--font__juana_regular);
    font-weight: 400;
    font-size: 54px;
    line-height: 1;
    margin-bottom: 65px;
    letter-spacing: 2px;
}
.about-h1 em {
    font-style: normal;
    color: var(--color_pink);
    font-size: 16px;
    font-family: var(--font_family__roboto);
    display: inline-block;
    margin-left: 40px;
    vertical-align: middle;
    letter-spacing: 4px;
}
.about-h1 h1{
  max-width: 715px;
}
@media (max-width: 767px) {
    .about-h1 h1 {
        margin-bottom: var(--margin_rows);
        font-size: 30px;
        line-height: 30px;
    }
   .about-h1 em {
        margin-left: 0px;
    }
    
}