@import url("https://use.typekit.net/woo1gzw.css");
/* Font weights:100, 300, 400, 500, 600 */
/* Default */
body {
  background: #f2f2f2;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
}
:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
:root {
  font-size: 16px;
}
input,
textarea {
  outline: none;
}
ul {
  list-style: none;
}
@-webkit-keyframes shake-vertical{0%,100%{-webkit-transform:translateY(0);transform:translateY(0)}10%,30%,50%,70%{-webkit-transform:translateY(-8px);transform:translateY(-8px)}20%,40%,60%{-webkit-transform:translateY(8px);transform:translateY(8px)}80%{-webkit-transform:translateY(6.4px);transform:translateY(6.4px)}90%{-webkit-transform:translateY(-6.4px);transform:translateY(-6.4px)}}@keyframes shake-vertical{0%,100%{-webkit-transform:translateY(0);transform:translateY(0)}10%,30%,50%,70%{-webkit-transform:translateY(-8px);transform:translateY(-8px)}20%,40%,60%{-webkit-transform:translateY(8px);transform:translateY(8px)}80%{-webkit-transform:translateY(6.4px);transform:translateY(6.4px)}90%{-webkit-transform:translateY(-6.4px);transform:translateY(-6.4px)}}
/* Link */
a:link,
a:visited {
  text-decoration: none;
}
/* End - Link */
/* Buttons */
button {
  cursor: pointer;
  border-radius: 4px;
  border: 0;
}
/* Primary Btn Link */
.btn-prim {
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 500;
  color: #ea9274;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
.btn-prim:hover {
  color: #fff;
  background: #ea9274;
  transition: all 0.25s;
}
.btn-prim svg {
  height: 22px;
  fill: #ea9274;
  transition: all 0.25s;
}
.btn-prim:hover svg {
  fill: #fff;
  transition: all 0.25s;
}
.btn-prim:active {
  color: #fff;
  border: 1px solid #636363;
  background: #636363;
  transition: all 0.25s;
}
.btn-prim:active svg {
  fill: #fff;
  transition: all 0.25s;
}
.btn-prim p {
  margin-left: 10px;
  line-height: 22px;
}
/* End Primary Btn Link */
/* Secondary Btn Link */
.btn-sec {
  padding: 9px 16px;
  border-radius: 4px;
  background: #ea9274;
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
.btn-sec svg {
  height: 21px;
  padding-right: 16px;
  fill: #fff;
  transition: all 0.25s;
}
.btn-sec:hover {
  background: rgba(0, 0, 0, 0);
  transition: all 0.25s;
}
.btn-sec:hover svg {
  fill: #ea9274;
  transition: all 0.25s;
}
/* End Secondary Btn Link */
/* Tertiary Btn Link */
.btn-ter {
  padding: 9px 16px;
  border-radius: 4px;
  background: #f2f2f2;
}
.btn-ter svg {
  padding-right: 16px;
  height: 21px;
  fill: #ea9274;
}
/* End - Tertiary Btn Link */
/* End Buttons */

/* Headers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  color: #221f1f;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 26px;
}
h4 {
  font-size: 26px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
/* End - Headers */

/* Radio Inputs */
.container_radio {
  display: block;
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 30px;
}
.container_radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark_radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: #f2f2f2;
  transition: all 0.25s;
}
.container_radio:hover input ~ .checkmark_radio {
  background-color: #636363;
  transition: all 0.25s;
}
.container_radio input:checked ~ .checkmark_radio {
  background-color: #ea9274;
  transition: all 0.25s;
}
.checkmark_radio:after {
  content: "";
  position: absolute;
  display: none;
  transition: all 0.25s;
}
.container_radio input:checked ~ .checkmark_radio:after {
  display: block;
  transition: all 0.25s;
}
.container_radio .checkmark_radio:after {
  top: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.25s;
}
/* End Radio Inputs */

/* Checkbox Input */
.container_checkbox {
  display: block;
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 300;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container_checkbox a:link,
.container_checkbox a:visited {
  color: #ea9274;
}
.container_checkbox a:hover {
  text-decoration: underline;
}
.container_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark_checkbox {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  height: 19px;
  width: 19px;
  background-color: #f2f2f2;
  transition: all 0.25s;
}
.container_checkbox:hover input ~ .checkmark_checkbox {
  background-color: #636363;
  transition: all 0.25s;
}
.container_checkbox input:checked ~ .checkmark_checkbox {
  background-color: #ea9274;
  transition: all 0.25s;
}
.checkmark_checkbox:after {
  content: "";
  position: absolute;
  display: none;
  transition: all 0.25s;
}
.container_checkbox input:checked ~ .checkmark_checkbox:after {
  display: block;
  transition: all 0.25s;
}
.container_checkbox .checkmark_checkbox:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
/* End Checkbox Input */

.row {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 20px;
  height: auto;
}
/* End - Default */

/* Flexbox Setting */
.flex {
  display: flex;
}
.flex_space {
  display: flex;
  justify-content: space-between;
}
.flex_jc_center {
  display: flex;
  justify-content: center;
}
.flex_wr {
  display: flex;
  flex-wrap: wrap;
}
.flex_col {
  display: flex;
  flex-direction: column;
}
.flex_al_c {
  align-items: center;
}
.block {
  display: block;
}
/* End Flexbox Setting */

/* Animations */
@-webkit-keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* End Animations */

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0);
  transition: all 0.25s;
  z-index: 999;
}
header:hover,
header.fix {
  background: #fff;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.05);
  transition: all 0.25s;
}
/* Header Note */
header .statement {
  position: relative;
  width: 100%;
  padding: 8px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  background: #0ed094;
}
header .statement .close {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  line-height: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.25s;
}
header .statement .close:hover {
  background: #40ecb6;
  transition: all 0.25s;
}
header .statement .close:hover {
  transform: rotate(180deg);
  transition: all 0.25s;
}

header .statement p a:link,
header .statement p a:visited {
  color: #fff;
}
header .statement p a:hover {
  text-decoration: underline;
}
/* End - Header Note */

/* Header > Logo */
header .row .logo {
  width: 150px;
  height: 70px;
  background: center left / 150px no-repeat url("../icons/logo.svg");
}
/* End - Header > Logo */

/* Header > Nav */
header .row nav.phone svg {
  height: 18px;
  margin: -4px 5px;
}

header .row nav a.link:link,
header .row nav a.link:visited {
  height: 70px;
  line-height: 70px;
  margin: 0 10px;
  font-size: 16px;
  font-weight: 300;
  color: rgb(15, 15, 15);
  transition: all 0.25s;
}
header .row nav a.link:hover {
  color: #ea9274;
  transition: all 0.25s;
}
header .row nav.menu a.link:hover {
  border-bottom: 2px solid #ea9274;
}
/* End - Header > Nav */

/* Header > Social Nav */
header .row nav.social a.link_social svg {
  margin: 24px 10px 0;
  height: 26px;
  fill: #ea9274;
  transition: all 0.25s;
}
header .row nav a.link_social:hover svg {
  fill: #636363;
  transition: all 0.25s;
}
/* End - Header > Social Nav */

/* Header > Booking button */
header .row .btn-prim {
  margin-top: 12px;
  height: 46px;
  padding: 12px 20px;
}
/* End - Header > Booking button */

/* Mobile Menu */
.nav_mob {
  display: none;
}
/* End - Mobile Menu */

/* End Header */

/* Home Sections */
/* Home Section Banner */
section.baner {
  width: 100%;
  height: 750px;
  background: #fff;
}
section.baner .row {
  height: 100%;
  padding-top: 180px;
}
section.baner .row .ctn {
  width: calc(100% - 380px);
}
section.baner .row .ctn h1 {
  display: block;
  margin-top: 50px;
}
section.baner .row .ctn p {
  display: block;
  width: 80%;
  margin: 30px 0 0;
  padding: 20px 0;
  border-radius: 4px;
  background: #fff;
  text-align: justify;
  font-weight: 200;
}
section.baner .row .ctn p::before,
section.baner .row .ctn p::after {
  content: '"';
  color: #ea9274;
  font-weight: 600;
  padding: 0 5px;
}
section.baner .row .ctn span {
  display: block;
  width: 80%;
  font-weight: 100;
  text-align: right;
  color: #ea9274;
}
section.baner .row .ctn span strong {
  display: block;
  width: 100%;
  color: #221f1f;
  font-weight: 400;
}
section.baner .row .ctn .nav {
  display: flex;
  margin-top: 40px;
  width: 80%;
  height: 40px;
}
section.baner .row .ctn .nav .btn-sec {
  height: 40px;
  margin-right: 20px;
}
section.baner .row .ctn .nav .btn-sec span {
  line-height: 22px;
  padding: 0;
  width: unset;
  color: #fff;
  font-weight: 400;
  transition: all 0.25s;
}
section.baner .row .ctn .nav .btn-sec:hover span {
  color: #ea9274;
  transition: all 0.25s;
}
section.baner .row .ctn .nav .btn-ter {
  height: 40px;
}
section.baner .row .ctn .nav .btn-ter span {
  line-height: 22px;
  padding: 0;
  width: unset;
  font-weight: 400;
  color: #ea9274;
}

section.baner .row .ctn .time_slider {
  width: 80%;
  height: auto;
  padding: 50px 0;
}
.swiper3 .swiper-slide {
  padding: 0 80px;
  text-align: center;
}
.swiper3 .swiper-slide strong {
  font-weight: 500;
  color: #ea9274;
}
.swiper3 .swiper-button-next::after,
.swiper3 .swiper-button-prev::after {
  font-size: 20px;
}

section.baner .row .img {
  position: relative;
  width: 380px;
}
section.baner .row .img .swiper4 {
  width: 100%;
  height: 100%;
}
section.baner .row .img .swiper4 .swiper-wrapper .swiper-slide-active {
  background-position: bottom right;
}
section.baner .row .img .swiper4 .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-size: contain;
}
section.baner .row .img img {
  position: absolute;
  bottom: 0;
  width: 100%;
}

section.baner .mobile_img {
  display: none;
}
/* End - Home Section Banner */

/* Home Services */
section.home_services {
  width: 100%;
  height: auto;
  padding: 30px 0;
  background: #f2f2f2;
}
section.home_services .row h2 {
  width: 100%;
  text-align: center;
}
section.home_services .row h2 a:link,
section.home_services .row h2 a:visited {
  color: #221f1f;
  transition: all 0.25s;
}
section.home_services .row h2 a:hover {
  color: #ea9274;
  transition: all 0.25s;
}
section.home_services .row .slide_wrap {
  width: 100%;
  height: auto;
  padding-top: 30px;
}
section.home_services .row .slide_wrap .swiper2 .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
}
section.home_services
  .row
  .slide_wrap
  .swiper2
  .swiper-wrapper
  .swiper-slide
  svg {
  height: 76px;
}
section.home_services
  .row
  .slide_wrap
  .swiper2
  .swiper-wrapper
  .swiper-slide
  span {
  padding-top: 16px;
  font-weight: 200;
}
/* End - Home Services */

/* Home Section Reviews */
section.reviews {
  width: 100%;
  height: 500px;
  background: #fff;
}
section.reviews .row .slider {
  width: calc(100% - 590px);
}
section.reviews .row .slider h2 {
  margin: 60px 0 50px;
}
section.reviews .row .slider .swiper-container {
  width: 100%;
  height: 280px;
}
section.reviews .row .slider .swiper-container .swiper-wrapper .swiper-slide {
  padding-right: 20px;
}
section.reviews
  .row
  .slider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .name {
  width: 50%;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  font-weight: 300;
}
section.reviews
  .row
  .slider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .rate {
  width: 50%;
  height: 40px;
}
section.reviews
  .row
  .slider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .rate_amn_5 {
  background: center right / 100px no-repeat url("../icons/rate_amn_5.svg");
}
section.reviews
  .row
  .slider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .rate_amn_4 {
  background: center right / 100px no-repeat url("../icons/rate_amn_4.svg");
}
section.reviews
  .row
  .slider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .rate_amn_3 {
  background: center right / 100px no-repeat url("../icons/rate_amn_3.svg");
}
section.reviews
  .row
  .slider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .rate_amn_2 {
  background: center right / 100px no-repeat url("../icons/rate_amn_2.svg");
}
section.reviews
  .row
  .slider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .rate_amn_1 {
  background: center right / 100px no-repeat url("../icons/rate_amn_1.svg");
}
section.reviews
  .row
  .slider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .date_type {
  width: 100%;
  padding: 5px 0;
  font-size: 12px;
  font-weight: 200;
  color: #636363;
}
section.reviews
  .row
  .slider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  p.review {
  width: 100%;
  height: calc(100% - 65px);
  padding: 20px 0;
  font-size: 16px;
  font-weight: 200;
  text-align: justify;
}
section.reviews .row .desc_wr {
  margin-top: 40px;
  width: 500px;
  height: 420px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
section.reviews .row .desc_wr .desc {
  width: 100%;
  height: 100%;
  background: center bottom / 80% no-repeat
    url("../img/reviews/dentalcare_reviews_illustration.svg");
}
section.reviews .row .desc_wr .desc h3 {
  color: #ea9274;
  width: 100%;
  text-align: center;
}
section.reviews .row .desc_wr .desc span {
  display: block;
  margin: 20px auto;
  width: 80%;
  font-weight: 200;
  color: #221f1f;
  text-align: center;
}
section.reviews .row .desc_wr .desc span a:link,
section.reviews .row .desc_wr .desc span a:visited {
  color: #221f1f;
  transition: all 0.25s;
  font-weight: 300;
}
section.reviews .row .desc_wr .desc span a:hover {
  color: #ea9274;
  transition: all 0.25s;
}
/* End Home Section Reviews */

/* Home Section Instagram */
section.instagram {
  width: 100%;
  height: 760px;
  background: center / 1200px no-repeat
    url("../img/layout/instagram_background_desktop.svg");
  background-color: #fff;
}
/* Home Section Instagram - Header */
section.instagram .row h4 {
  width: 100%;
  height: 120px;
  line-height: 120px;
  text-align: center;
}
section.instagram .row h4 a:link,
section.instagram .row h4 a:visited {
  color: #221f1f;
  transition: all 0.25s;
}
section.instagram .row h4 a:hover {
  color: #ea9274;
  transition: all 0.25s;
}
section.instagram .row h4 a:active {
  color: #a76049;
  transition: all 0.25s;
}
section.instagram .row h4 a:link span,
section.instagram .row h4 a:visited span {
  color: #ea9274;
  transition: all 0.25s;
}
section.instagram .row h4 a:hover span {
  color: #221f1f;
  transition: all 0.25s;
}
/* End Home Section Instagram - Header */

/* Home Section Instagram - Wrap Info */
section.instagram .row .wrap .info {
  position: relative;
  width: calc(50% - 170px);
  height: 600px;
}
/* Instagram Info Hastags */
section.instagram .row .wrap .info .hashtag {
  position: absolute;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 300;
  font-size: 15px;
  z-index: 9;
}
section.instagram .row .wrap .info .hashtag::before {
  content: "#";
}
section.instagram .row .wrap .info .hash_light {
  background: #ffede7;
  color: #ea9274;
  transition: all 0.25s;
}
section.instagram .row .wrap .info .hash_light:hover {
  background: #ea9274;
  color: #fff;
  transition: all 0.25s;
}
section.instagram .row .wrap .info .hash_dark {
  background: #ea9274;
  color: #fff;
  transition: all 0.25s;
}
section.instagram .row .wrap .info .hash_dark:hover {
  background: #ffede7;
  color: #ea9274;
  transition: all 0.25s;
}
section.instagram .row .wrap .info .hash_1 {
  bottom: 50px;
  right: calc(50% - 55.9px);
  -webkit-animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 1s infinite both;
  animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 1s infinite both;
}
section.instagram .row .wrap .info .hash_2 {
  bottom: 130px;
  right: 60px;
  -webkit-animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 1.5s infinite both;
  animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 1.5s infinite both;
}
section.instagram .row .wrap .info .hash_3 {
  bottom: 110px;
  left: 0px;
  -webkit-animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 0.5s infinite both;
  animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 0.5s infinite both;
}
section.instagram .row .wrap .info .hash_4 {
  bottom: 170px;
  left: 60px;
  -webkit-animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) infinite both;
  animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) infinite both;
}
section.instagram .row .wrap .info .hash_5 {
  top: 50px;
  left: calc(50% - 55.9px);
  -webkit-animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) infinite both;
  animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) infinite both;
}
section.instagram .row .wrap .info .hash_6 {
  top: 130px;
  left: 60px;
  -webkit-animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 0.5s infinite both;
  animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 0.5s infinite both;
}
section.instagram .row .wrap .info .hash_7 {
  top: 110px;
  right: 0px;
  -webkit-animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 1.5s infinite both;
  animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 1.5s infinite both;
}
section.instagram .row .wrap .info .hash_8 {
  top: 170px;
  right: 60px;
  -webkit-animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 1s infinite both;
  animation:shake-vertical 12s cubic-bezier(.455,.03,.515,.955) 1s infinite both;
}
/* End - Instagram Hastags */
/* End - Home Section Instagram - Wrap Info */
/* Home Section Instagram - Wrap Mobile */
section.instagram .row .wrap {
  display: flex;
  width: 100%;
  height: 640px;
  position: relative;
}
/* Instagram Mobile */
section.instagram .row .wrap .mobile {
  width: 340px;
  height: 600px;
  background: center / contain no-repeat url("../img/layout/mobile.svg");
}
section.instagram .row .wrap .mobile .ctn {
  margin: 50px 0 0 42px;
  width: 244px;
  height: 480px;
}
/* Instagram Name */
section.instagram .row .wrap .mobile .ctn .name {
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
section.instagram .row .wrap .mobile .ctn .name a:link,
section.instagram .row .wrap .mobile .ctn .name a:visited {
  font-size: 14px;
  color: #221f1f;
  transition: all 0.25s;
}
section.instagram .row .wrap .mobile .ctn .name a:hover {
  color: #ea9274;
  transition: all 0.25s;
}
/* End - Instagram Name */
/* Instagram Profile */
section.instagram .row .wrap .mobile .ctn .profile {
  width: 100%;
  height: 70px;
  background: #fff;
}
section.instagram .row .wrap .mobile .ctn .profile .avatar {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid #f2f2f2;
  margin: 10px 0 10px 10px;
}
section.instagram .row .wrap .mobile .ctn .profile .avatar img {
  width: 48px;
  height: 48px;
  border-radius: 25px;
}
section.instagram .row .wrap .mobile .ctn .profile .details {
  width: calc(100% - 70px);
  height: 50px;
  padding-top: 20px;
}
section.instagram .row .wrap .mobile .ctn .profile .details .item:first-child {
  width: 26%;
  height: 50px;
  text-align: center;
}
section.instagram .row .wrap .mobile .ctn .profile .details .item {
  width: 37%;
  height: 50px;
  text-align: center;
}
section.instagram .row .wrap .mobile .ctn .profile .details .item span {
  font-size: 13px;
  font-weight: 400;
}
section.instagram .row .wrap .mobile .ctn .profile .details .item p {
  font-size: 9px;
  font-weight: 300;
}
/* End - Instagram Profile */
/* Instagram Grid */
section.instagram .row .wrap .mobile .ctn .grid {
  width: 100%;
  height: autos;
}
section.instagram .row .wrap .mobile .ctn .grid a {
  width: calc(33.3% - 6px);
  margin: 3px;
  height: 75.25px;
}
section.instagram .row .wrap .mobile .ctn .grid a img {
  width: 100%;
}
/* End - Instagram Grid */
/* Instagram Follow Button */
section.instagram .row .wrap .mobile .ctn .btn_wr {
  align-items: center;
  width: 200px;
  margin: 10px auto 0;
  height: 40px;
  border-radius: 4px;
  background: #d6249f;
  background: radial-gradient(
    circle at 0% 200%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
section.instagram .row .wrap .mobile .ctn .btn_wr a.btn {
  width: 200px;
  height: 40px;
  border-radius: 4px;
  background: rgba(234, 146, 116, 1);
  transition: all 0.25s;
}
section.instagram .row .wrap .mobile .ctn .btn_wr a.btn:hover {
  background: rgba(234, 146, 116, 0);
  transition: all 0.25s;
}
section.instagram .row .wrap .mobile .ctn .btn_wr .btn svg {
  height: 29px;
  margin: 5px 22px;
  fill: #fff;
}
section.instagram .row .wrap .mobile .ctn .btn_wr .btn p {
  color: #fff;
  line-height: 40px;
}
/* End - Instagram Follow Button */
/* End Instagram Mobile */
/* End - Home Section Instagram - Wrap Mobile */
/* End - Home Section Instagram */
/* End - Home Sections */

/* Subscription */
section.subscription {
  background: #f2f2f2;
}
section.subscription .row {
  padding: 60px 100px;
}
/* Subscription Info */
section.subscription .row .info {
  width: calc(100% - 460px);
}
section.subscription .row .info h5 {
  height: 30px;
  line-height: 30px;
}
section.subscription .row .info h5 span {
  color: #ea9274;
}
section.subscription .row .info p {
  margin-top: 10px;
  font-weight: 300;
}
/* End - Subscription Info */
/* Subscription Form */
section.subscription .row .form {
  width: 460px;
}
section.subscription .row .form input {
  width: 240px;
  padding: 0 20px;
  margin-right: 20px;
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid #fff;
  font-weight: 300;
}
section.subscription .row .form input.err {
  border: 1px solid #d80b0b;
}
section.subscription .row .form button {
  width: 200px;
  height: 45px;
  color: #fff;
  font-size: 15px;
  background: #ea9274;
  transition: all 0.25s;
}
section.subscription .row .form button:hover {
  background: #636363;
  transition: all 0.25s;
}
section.subscription .row .form button:active {
  background: #221f1f;
  transition: all 0.25s;
}
section.subscription .row .form span.err {
  height: 22px;
  line-height: 22px;
  font-size: 13px;
  font-weight: 500;
  color: #d80b0b;
}
section.subscription .row .form svg {
  width: 40px;
  fill: #ea9274;
}
section.subscription .row .form span.success {
  width: calc(100% - 60px);
  height: 38px;
  line-height: 38px;
  font-size: 20px;
  font-weight: 300;
}
/* End - Subscription Form */
/* End - Subscription */

/* Services */
/* Services Page - Baner */
section.services_baner {
  width: 100%;
  height: 500px;
  padding-top: 240px;
  text-align: center;
  background: #fff;
}
section.services_baner .row h1 span {
  color: #ea9274;
}
section.services_baner .row p {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 300;
}
section.services_baner .row a.link:link,
section.services_baner .row a.link:visited {
  display: flex;
  margin: 30px auto 0;
  width: 268px;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px 8px 16px;
  border-radius: 4px;
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
section.services_baner .row a.link:hover {
  background: #ea9274;
  transition: all 0.25s;
}
section.services_baner .row a.link p {
  color: #ea9274;
  margin: 0;
  font-size: 16px;
  transition: all 0.25s;
}
section.services_baner .row a.link:hover p {
  color: #fff;
  transition: all 0.25s;
}
section.services_baner .row a.link svg {
  height: 14px;
  fill: #ea9274;
  transition: all 0.25s;
}
section.services_baner .row a.link:hover svg {
  fill: #fff;
  transition: all 0.25s;
}
/* End - Services Page - Baner */
/* Services Description */
section.services_desc {
  background: #fff;
}
section.services_desc .row nav {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  width: 100%;
  height: 125px;
  padding-top: 35px;
  background: #fff;
}
section.services_desc .row nav .el {
  width: 14.28%;
  border-bottom: 2px solid #f2f2f2;
  transition: all 0.25s;
}
section.services_desc .row nav .active {
  border-bottom: 2px solid #ea9274;
  transition: all 0.25s;
}
section.services_desc .row nav .el svg {
  height: 50px;
}
section.services_desc .row nav .active svg .fill {
  fill: #ea9274;
}
section.services_desc .row .desc {
  margin: 60px 0 0;
  padding: 0 40px;
}
section.services_desc .row .desc:last-child {
  padding-bottom: 80px;
}
section.services_desc .row .desc p {
  margin-top: 10px;
  font-weight: 300;
}
/* End Description */
/* End - Services */

/* Section Office */
section.office_baner {
  width: 100%;
  height: 450px;
  padding-top: 240px;
  background-color: #f2f2f2;
}
section.office_baner .row {
  text-align: center;
  height: 100%;
}
section.office_baner .row h1 span {
  color: #ea9274;
}
section.office_baner .row p {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 300;
}
section.office_baner .row p a:link,
section.office_baner .row p a:visited {
  color: #221f1f;
  text-decoration: underline;
  transition: all 0.25s;
}
section.office_baner .row p a:hover {
  color: #ea9274;
  text-decoration: none;
  transition: all 0.25s;
}
/* Office Slider */
section.office_slider {
  width: 100%;
  height: auto;
  padding: 30px 0;
  background: #fff;
}
/* End - Office Slider */
/* End Section Office */

/* Section FAQ */
section.faq_baner {
  width: 100%;
  height: 550px;
  background: #fff;
}
section.faq_baner .row {
  position: relative;
  height: 100%;
  background: center / 80% no-repeat
    url("../img/layout/dentalcare_faq_illustration.svg");
}
/* Section FAQ - Filter */
section.faq_baner .row input {
  position: absolute;
  bottom: 40px;
  left: 340px;
  width: calc(100% - 360px);
  height: 40px;
  padding: 0 20px 0 50px;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
  transition: all 0.25s;
  background: 10px / 26px no-repeat url("../icons/search.svg");
}
section.faq_baner .row input.ng-not-empty {
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
/* End - Section FAQ - Filter */
/* Section FAQ - Content */
section.faq_content {
  width: 100%;
  background: #fff;
  padding-bottom: 60px;
}
/* Categories */
section.faq_content .row .cat_wr {
  width: 300px;
  height: auto;
}
section.faq_content .row .cat_wr .cat {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  width: 90%;
  height: 230px;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.05);
}
section.faq_content .row .cat_wr .cat h6 {
  color: #ea9274;
}
section.faq_content .row .cat_wr .cat ul {
  margin: 10px 0 0;
}
section.faq_content .row .cat_wr .cat ul li {
  cursor: pointer;
  width: 100%;
  height: 30px;
  font-weight: 300;
  transition: all 0.25s;
}
section.faq_content .row .cat_wr .cat ul li:hover {
  color: #ea9274;
}
section.faq_content .row .cat_wr .cat ul li svg {
  height: 10px;
  fill: #221f1f;
  margin-right: 5px;
  transition: all 0.25s;
}
section.faq_content .row .cat_wr .cat ul li:hover svg {
  fill: #ea9274;
  margin-right: 10px;
  transition: all 0.25s;
}
/* End Categories */
section.faq_content .row .ctn_wr {
  width: calc(100% - 320px);
  height: auto;
}
section.faq_content .row .ctn_wr h3 {
  width: 100%;
}
/* Section FAQ - Content Element */
section.faq_content .row .ctn_wr div .el {
  width: 100%;
  height: auto;
  margin: 26px 0 10px;
  border-radius: 4px;
  border: 1px solid #f2f2f2;
  padding: 20px;
}
section.faq_content .row .ctn_wr div .el span {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
}
section.faq_content .row .ctn_wr div .el p {
  margin-top: 10px;
  font-weight: 300;
}
section.faq_content .row .ctn_wr .no-res {
  width: 100%;
  font-weight: 300;
  text-align: center;
}
section.faq_content .row .ctn_wr .no-res span {
  color: #ea9274;
  font-weight: 400;
}
/* End - Section FAQ - Content Element */
/* End - Section FAQ - Content */
/* End - Section FAQ */

/* Section Contact */
/* Section Contact Baner */
section.contact_baner {
  width: 100%;
  height: 450px;
  padding-top: 240px;
  background-color: #f2f2f2;
}
section.contact_baner .row {
  text-align: center;
  height: 100%;
}
section.contact_baner .row h1 span {
  color: #ea9274;
}
section.contact_baner .row p {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 300;
}
/* End - Section Contact Baner */
/* Section Contact Form */
section.contact_form {
  width: 100%;
  background: #fff;
  padding: 60px 0;
}
section.contact_form .row .details {
  width: 450px;
  height: auto;
}
section.contact_form .row .details .ill {
  width: 100%;
  height: 230px;
  background: center / contain no-repeat
    url("../img/layout/dentalcare_contact_illustration.svg");
}

section.contact_form .row .details ul li {
  width: 100%;
  height: 40px;
}
section.contact_form .row .details ul li p {
  font-size: 18px;
}
section.contact_form .row .details ul li p span {
  color: #ea9274;
}
section.contact_form .row .details ul li svg {
  width: 20px;
  fill: #221f1f;
  transition: all 0.25s;
}
section.contact_form .row .details ul li:hover svg {
  fill: #ea9274;
  transition: all 0.25s;
}
section.contact_form .row .details ul li a:link,
section.contact_form .row .details ul li a:visited {
  margin-left: 10px;
  color: #221f1f;
  transition: all 0.25s;
}
section.contact_form .row .details ul li:active a:link {
  color: #ea9274;
  transition: all 0.25s;
}

section.contact_form .row .form {
  width: calc(100% - 530px);
  height: auto;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
section.contact_form .row .form h3 {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
section.contact_form .row .form .field {
  margin-bottom: 0;
}
section.contact_form .row .form .field label {
  width: 100%;
  height: 22px;
  line-height: 22px;
  font-size: 14px;
  font-weight: 100;
}
section.contact_form .row .form .field input::placeholder,
section.contact_form .row .form .field textarea::placeholder {
  font-weight: 300;
}
section.contact_form .row .form .field input,
section.contact_form .row .form .field textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #f2f2f2;
  resize: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.25s;
}
section.contact_form .row .form .field input:hover,
section.contact_form .row .form .field input:focus,
section.contact_form .row .form .field textarea:hover,
section.contact_form .row .form .field textarea:focus {
  border: 1px solid #b1b1b1;
  transition: all 0.25s;
}
section.contact_form .row .form .field input.ng-not-empty,
section.contact_form .row .form .field textarea.ng-not-empty {
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
section.contact_form .row .form .field_err input:hover,
section.contact_form .row .form .field_err input:focus,
section.contact_form .row .form .field_err input.ng-not-empty,
section.contact_form .row .form .field_err input,
section.contact_form .row .form .field_err textarea:hover,
section.contact_form .row .form .field_err textarea:focus,
section.contact_form .row .form .field_err textarea.ng-not-empty,
section.contact_form .row .form .field_err textarea {
  background: #d80b0b15;
  border: 1px solid #d80b0b;
  transition: all 0.25s;
}
section.contact_form .row .form .field input {
  height: 44px;
  padding: 0 16px;
}
section.contact_form .row .form .field textarea {
  height: 140px;
  padding: 8px 16px;
}
section.contact_form .row .form .field .err {
  width: 100%;
  height: 26px;
  line-height: 18px;
  font-size: 12px;
  font-weight: 500;
  color: #d80b0b;
}
section.contact_form .row .form .field_h {
  width: 48%;
}
section.contact_form .row .form .field_f {
  width: 100%;
}
section.contact_form .row .form button {
  width: 100%;
  height: 50px;
  font-size: 16px;
}
/* End - Section Contact Form */
/* Section Contact Map */
section.contact_map {
  position: relative;
  width: 100%;
  height: 500px;
}
/* End - Section Contact Map */
/* End - Section Contact */

/* Section Terms & Privacy */
section.info_page_baner {
  width: 100%;
  height: 450px;
  padding-top: 240px;
  background-color: #f2f2f2;
}
section.info_page_baner .row {
  text-align: center;
  height: 100%;
}
section.info_page_baner .row h1 span {
  color: #ea9274;
}
section.info_page_baner .row p {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 300;
}
/* Section Terms & Privacy - Content */
section.info_page_ctn {
  padding: 30px 0 40px;
  background: #fff;
}
section.info_page_ctn .row span {
  width: 100%;
  font-size: 20px;
  padding: 20px 0 10px;
}
section.info_page_ctn .row p {
  font-weight: 300;
  padding: 4px 0 4px 5px;
}
section.info_page_ctn .row p a:link,
section.info_page_ctn .row p a:visited {
  color: #ea9274;
  transition: all 0.25s;
  font-weight: 400;
}
section.info_page_ctn .row p a:hover {
  color: #221f1f;
  transition: all 0.25s;
}
section.info_page_ctn .row ul li {
  padding: 4px 0 4px 20px;
  font-weight: 300;
}
/* End - Section Terms & Privacy - Content */
/* End - Section Terms & Privacy */

/* Section Booking */
section.booking {
  width: 100%;
  height: auto;
  background: #fff;
}
section.booking .row {
  padding: 160px 20px 50px;
}
/* Section Booking Header */
section.booking .row .hdr {
  width: 100%;
  height: 80px;
}
section.booking .row .hdr span {
  font-weight: 300;
  color: #ea9274;
}
section.booking .row .hdr p {
  font-size: 26px;
  font-weight: 400;
}
/* End - Section Booking Header */

/* Section Booking Content */
section.booking .row .ctn {
  width: 1100px;
  transition: all 0.25s;
}
section.booking .row .ctn .swiper-container {
  position: relative;
  height: auto;
}
section.booking .row .ctn .swiper-container .swiper-button-prev {
  position: absolute;
  top: calc(60% - 10px);
  left: 0px;
  width: 18px;
  height: 20px;
}
section.booking .row .ctn .swiper-container .swiper-button-next {
  position: absolute;
  top: calc(60% - 10px);
  right: 1px;
  width: 18px;
  height: 20px;
}
section.booking .row .ctn .swiper-container .swiper-button-prev::after,
section.booking .row .ctn .swiper-container .swiper-button-next::after {
  height: 20px;
  font-size: 20px;
}
section.booking .row .ctn .swiper-container .swiper-wrapper {
  height: 100%;
}
/* Section Booking Content Day */
section.booking .row .ctn .swiper-container .swiper-wrapper .swiper-slide .day {
  width: 16.66%;
  height: 100%;
  border-right: 1px solid #f2f2f2;
  padding: 10px 20px;
}
section.booking
  .row
  .ctn
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .day:last-child {
  border-right: 1px solid #f2f2f2;
}
section.booking
  .row
  .ctn
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .day
  .hdr {
  width: 100%;
  height: 60px;
  text-align: center;
  line-height: 26px;
}
section.booking
  .row
  .ctn
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .day
  .hdr
  span {
  color: #221f1f;
  font-weight: 400;
  font-size: 18px;
}
section.booking
  .row
  .ctn
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .day
  .hdr
  p {
  font-weight: 300;
  font-size: 16px;
}

section.booking
  .row
  .ctn
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .day
  .list {
  width: 100%;
}
section.booking
  .row
  .ctn
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .day
  .list
  button {
  width: 100%;
  height: 30px;
  margin-bottom: 10px;
  color: #221f1f;
  background: #ffede7;
  border: 1px solid #ffede7;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.25s;
}
section.booking
  .row
  .ctn
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .day
  .list
  button:hover {
  color: #ea9274;
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
/* End - Section Booking Content */

/* Booking - Patient Details */
/* Booking - Patient Details - Chosen */
section.booking .row .ctn .chosen {
  width: 100%;
  padding: 20px;
  border-radius: 4px;
  background: #f2f2f2;
}
section.booking .row .ctn .chosen .time svg {
  height: 24px;
  fill: #ea9274;
  margin-right: 10px;
}
section.booking .row .ctn .chosen .time span {
  margin-right: 30px;
}
section.booking .row .ctn .chosen button {
  padding: 8px 20px;
  background: #f2f2f2;
  border: 1px solid #ea9274;
  color: #ea9274;
  font-size: 15px;
  transition: all 0.25s;
}
section.booking .row .ctn .chosen button:hover {
  background: #ea9274;
  color: #fff;
  transition: all 0.25s;
}
/* End Booking - Patient Details - Chosen */
/* Booking - Patient Details - Patient Details Form */
section.booking .row .ctn .form {
  padding: 30px 0 0;
}
section.booking .row .ctn .form .field_full {
  width: 100%;
}
section.booking .row .ctn .form .field_wr {
  margin-bottom: 30px;
}
section.booking .row .ctn .form .field_wr:last-child {
  margin-bottom: 0;
}
section.booking .row .ctn .form .field_wr .label {
  width: 100%;
  padding: 0 0 10px;
  font-weight: 500;
}
/* Booking - Patient Details - Patient Details Form - Appointment Type */
section.booking .row .ctn .form .field_wr .appointment_type {
  width: 100%;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .choose_appointment
  span {
  color: #636363;
  font-weight: 300;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .choose_appointment
  button {
  padding: 8px 20px;
  font-size: 14px;
  border: 1px solid #f2f2f2;
  transition: all 0.25s;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .choose_appointment
  button:hover {
  background: #ffede7;
  color: #ea9274;
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .choose_appointment
  button:active {
  background: #ea9274;
  color: #fff;
  transition: all 0.25s;
}
section.booking .row .ctn .form .field_wr .appointment_type .appointment_list {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #f2f2f2;
  padding: 0 20px;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .appointment_list
  .appointment_type_item {
  width: 100%;
  height: auto;
  padding: 20px 0;
  border-bottom: 1px solid #f2f2f2;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .appointment_list
  .appointment_type_item:last-child {
  border-bottom: 0;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .appointment_list
  .appointment_type_item
  .info {
  line-height: 26px;
  transition: all 0.25s;
  width: 550px;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .appointment_list
  .appointment_type_item:hover
  .info {
  color: #ea9274;
  transition: all 0.25s;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .appointment_list
  .appointment_type_item
  .info
  p {
  font-weight: 300;
  color: #636363;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .appointment_list
  .appointment_type_item
  button {
  padding: 8px 20px;
  font-size: 14px;
  border: 1px solid #f2f2f2;
  transition: all 0.25s;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .appointment_list
  .appointment_type_item
  button:hover {
  background: #ffede7;
  color: #ea9274;
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .appointment_list
  .appointment_type_item
  button:active {
  background: #ea9274;
  color: #fff;
  transition: all 0.25s;
}

section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .chosen_appointment {
  width: 100%;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #ea9274;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .chosen_appointment
  .info {
  line-height: 26px;
  width: 550px;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .chosen_appointment
  .info
  p {
  font-weight: 300;
  color: #636363;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .chosen_appointment
  button {
  padding: 8px 20px;
  font-size: 14px;
  background: #ffede7;
  color: #ea9274;
  border: 1px solid #ffede7;
  transition: all 0.25s;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .chosen_appointment
  button:hover {
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
section.booking
  .row
  .ctn
  .form
  .field_wr
  .appointment_type
  .chosen_appointment
  button:active {
  background: #ea9274;
  color: #fff;
  transition: all 0.25s;
}
/* Booking - Patient Details - Patient Details Form - Appointment Type Error */
section.booking .row .ctn .form .field_wr .appointment_type .error {
  width: 100%;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 500;
  color: #d80b0b;
}
/* End Booking - Patient Details - Patient Details Form - Appointment Type */
/* Booking - Patient Details - Patient Details Form - Personal Details */
section.booking .row .ctn .form .field_wr .inp_wr {
  width: 50%;
}
section.booking .row .ctn .form .field_wr .inp_wr:nth-child(3),
section.booking .row .ctn .form .field_wr .inp_wr:nth-child(5) {
  padding-left: 20px;
}
section.booking .row .ctn .form .field_wr .inp_wr:nth-child(2),
section.booking .row .ctn .form .field_wr .inp_wr:nth-child(4) {
  padding-right: 20px;
}
section.booking .row .ctn .form .field_wr .inp_wr label {
  width: 100%;
  height: 22px;
  line-height: 22px;
  font-size: 14px;
  font-weight: 100;
}
section.booking .row .ctn .form .field_wr .inp_wr input {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border-radius: 4px;
  border: 1px solid #f2f2f2;
  resize: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.25s;
}
section.booking .row .ctn .form .field_wr .inp_wr input:hover,
section.booking .row .ctn .form .field_wr .inp_wr input:focus {
  border: 1px solid #b1b1b1;
  transition: all 0.25s;
}
section.booking .row .ctn .form .field_wr .inp_wr input.ng-not-empty {
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
section.booking .row .ctn .form .field_wr .inp_wr input.promoCode {
  text-transform: uppercase;
}
section.booking .row .ctn .form .field_wr .inp_wr input.promoCode::placeholder {
  text-transform: none;
}
section.booking .row .ctn .form .field_wr .inp_wr span.err {
  width: 100%;
  height: 22px;
  line-height: 18px;
  font-size: 12px;
  font-weight: 500;
  color: #d80b0b;
}
section.booking .row .ctn .form .field_wr .inp_wr p.code_added {
  width: 100%;
  height: 44px;
  line-height: 44px;
  font-weight: 300;
}
section.booking .row .ctn .form .field_wr .inp_wr p.valid {
  color: #0ed094;
}
section.booking .row .ctn .form .field_wr .inp_wr p.invalid {
  color: #d80b0b;
}
section.booking .row .ctn .form .field_wr .inp_wr p.code_added span {
  text-transform: uppercase;
  font-weight: 500;
}
/* End Booking - Patient Details - Patient Details Form - Personal Details */
/* Booking - Patient Details - Patient Details Form - Additional Detail */
section.booking .row .ctn .form .field_wr .question {
  width: 100%;
  margin-bottom: 10px;
}
section.booking .row .ctn .form .field_wr .question p {
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}
/* End Booking - Patient Details - Patient Details Form - Additional Detail */
/* Booking - Patient Details - Patient Details Form - Personal Message */
section.booking .row .ctn .form .field_wr textarea {
  max-width: 100%;
  min-width: 100%;
  min-height: 100px;
  max-height: 100px;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid #f2f2f2;
  resize: none;
  transition: all 0.25s;
}
section.booking .row .ctn .form .field_wr textarea:hover,
section.booking .row .ctn .form .field_wr textarea:focus {
  border: 1px solid #b1b1b1;
  transition: all 0.25s;
}
section.booking .row .ctn .form .field_wr textarea.ng-not-empty {
  border: 1px solid #ea9274;
  transition: all 0.25s;
}
/* End Booking - Patient Details - Patient Details Form - Personal Message */
/* Booking - Patient Details - Patient Details Form - Checkboxes */
section.booking .row .ctn .form .field_wr .checkboxes {
  width: 100%;
  border-top: 1px solid #f2f2f2;
  padding: 30px 0 15px;
}
section.booking .row .ctn .form .field_wr .checkboxes p.err {
  width: 100%;
  padding: 0 0 20px;
  color: #d80b0b;
  font-size: 12px;
  font-weight: 500;
}
section.booking .row .ctn .form .field_wr .checkboxes .container_checkbox {
  width: 100%;
  margin: 0 0 15px;
}
/* End Booking - Patient Details - Patient Details Form - Checkboxes */
/* Booking - Patient Details - Confirm Button */
section.booking .row .ctn .form .confirm_btn button {
  padding: 8px 20px;
  background: #ea9274;
  color: #fff;
  font-size: 16px;
  transition: all 0.25s;
}
section.booking .row .ctn .form .confirm_btn button:hover {
  opacity: 0.8;
  transition: all 0.25s;
}
/* End Booking - Patient Details - Confirm Button */
/* End Booking - Patient Details - Patient Details Form */
/* End Booking - Patient Details */
/* Booking Confirmation */
section.booking .row .ctn .confirmation_details {
  position: relative;
  width: calc(100% - 440px);
  height: auto;
  padding: 0 20px 10px;
  border-radius: 4px;
  border: 1px solid #f2f2f2;
}
section.booking .row .ctn .confirmation_details button {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ea9274;
  color: #ea9274;
  background: #fff;
  transition: all 0.25s;
}
section.booking .row .ctn .confirmation_details button:hover {
  background: #ea9274;
  color: #fff;
  transition: all 0.25s;
}
section.booking .row .ctn .confirmation_details .detail_section {
  width: 100%;
}
section.booking .row .ctn .confirmation_details .detail_section span {
  width: 100%;
  height: 26px;
  margin-top: 20px;
  font-size: 17px;
  font-weight: 400;
  color: #ea9274;
}
section.booking .row .ctn .confirmation_details .detail_section ul li {
  width: 100%;
  height: auto;
  padding: 3px 0 3px 2px;
}
section.booking .row .ctn .confirmation_details .detail_section ul li span {
  width: 40px;
  height: 20px;
  margin-top: 0px;
}
section.booking .row .ctn .confirmation_details .detail_section ul li span svg {
  height: 20px;
}
section.booking .row .ctn .confirmation_details .detail_section ul li p {
  font-weight: 300;
}
section.booking .row .ctn .confirmation_details .detail_section ul li p span {
  color: #221f1f;
  text-transform: uppercase;
}
section.booking .row .ctn .confirmation_details .detail_section ul li p.label {
  width: 126px;
  color: #636363;
}
section.booking .row .ctn .code_wr {
  width: 420px;
  height: auto;
}
section.booking .row .ctn .code_wr .code {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  width: 100%;
  height: auto;
  padding: 0 20px 20px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #f2f2f2;
}
section.booking .row .ctn .code_wr .code p {
  width: 100%;
  font-weight: 300;
  padding: 20px 0 10px;
  text-align: center;
}
section.booking .row .ctn .code_wr .code p span {
  color: #ea9274;
  font-weight: 500;
}
section.booking .row .ctn .code_wr .code .input_wr {
  margin: 0 auto;
  width: 166px;
  height: 50px;
  border-radius: 4px;
  border: 1px solid #ea9274;
}
section.booking .row .ctn .code_wr .code .input_wr span {
  width: 70px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: #636363;
}
section.booking .row .ctn .code_wr .code .input_wr input {
  width: calc(100% - 70px);
  height: 48px;
  border: 0;
  font-size: 20px;
  font-weight: 300;
  color: #221f1f;
  background: transparent;
  text-transform: uppercase;
}
section.booking .row .ctn .code_wr .code .success_inp {
  background: #0ed094;
  border: 1px solid #0ed094;
}
section.booking .row .ctn .code_wr .code .success_inp input {
  color: #fff;
}
section.booking .row .ctn .code_wr .code .success_inp span svg {
  margin-top: 5px;
  height: 27px;
  fill: #fff;
  -webkit-animation: jello-horizontal 0.9s both 0.5s;
  animation: jello-horizontal 0.9s both 0.5s;
}
section.booking .row .ctn .code_wr .code .error_code {
  width: 100%;
  padding: 10px 0 0;
  text-align: center;
  font-size: 15px;
  color: #d80b0b;
}
/* End Booking Confirmation */
/* Booking Share */
section.booking .row .ctn .code_wr .share {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
section.booking .row .ctn .code_wr .share p {
  color: #636363;
  font-weight: 200;
}
/* Booking Share Icons */
section.booking .row .ctn .code_wr .share .icons_wr {
  width: 100%;
}
section.booking .row .ctn .code_wr .share .icons_wr a.share_link:link,
section.booking .row .ctn .code_wr .share .icons_wr a.share_link:visited {
  width: 40px;
  height: 50px;
  margin: 0 5px;
}
section.booking .row .ctn .code_wr .share .icons_wr a.share_link svg {
  height: 22px;
  fill: #636363;
  transition: all 0.25s;
}
section.booking .row .ctn .code_wr .share .icons_wr a.share_link:hover svg {
  fill: #ea9274;
  transition: all 0.25s;
}
section.booking .row .ctn .code_wr .share .icons_wr a.share_link:active svg {
  opacity: 0.7;
  transition: all 0.25s;
}
/* End Booking Share Icons */
/* End Booking Share */
/* Booking Notifications */
section.booking .row .note {
  width: 100%;
  padding: 20px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
section.booking .row .note svg {
  height: 20px;
  margin-right: 20px;
}
section.booking .row .sent_note {
  background: #f2f2f2;
}
section.booking .row .success_note {
  color: #fff;
  background: #0ed094;
}
section.booking .row .success_note svg {
  fill: #fff;
}
/* End Booking Notifiactions */
/* End - Section Booking */

/* Section Error 404 */
section.error_404 {
  width: 100%;
  height: 300px;
  padding-top: 200px;
  background: #fff;
}
/* End Section Error 404 */

/* Footer */
footer {
  width: 100%;
  height: auto;
  background: #ea9274;
}
footer .row {
  padding: 30px 0 0;
}
footer .row h6 {
  display: block;
  height: 40px;
  color: #fff;
}
/* Footer Logo & Contact Column */
footer .row .col_logo_contact {
  width: 220px;
  height: auto;
}
footer .row .col_logo_contact a.logo {
  display: flex;
  width: 100%;
  height: 73px;
  font-size: 0;
  background: center / contain no-repeat url("../icons/logo_white.svg");
}
/* Footer Logo & Contact Column */

/* Footer Time Column */
footer .row .col_time {
  width: 250px;
  margin: 0 50px;
  height: auto;
  color: #fff;
}
footer .row .col_time ul li {
  height: 30px;
  line-height: 30px;
  font-weight: 300;
}
/* End - Footer Time Column */

/* Footer Menu Column */
footer .row .col_menu {
  width: 170px;
}
footer .row .col_menu a.link:link,
footer .row .col_menu a.link:visited {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  color: #fff;
  font-weight: 300;
  margin-left: 0px;
  transition: all 0.25s;
}
footer .row .col_menu a.link:hover {
  margin-left: 6px;
  transition: all 0.25s;
}
/* End - Footer Menu Column */

/* Footer Copyrights */
footer .row .copyrights {
  width: 100%;
  height: auto;
  margin-top: 30px;
  padding: 14px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}
footer .row .copyrights .author a:link,
footer .row .copyrights .author a:visited {
  color: #fff;
  padding: 0 5px;
  transition: all 0.25s;
  border-radius: 4px;
}
footer .row .copyrights .author a:hover {
  background: #fff;
  color: #00c9ff;
  transition: all 0.25s;
}
footer .row .copyrights .author a:hover span {
  color: #ff00a2;
  transition: all 0.25s;
}
/* End - Footer Copyrights */
/* End - Footer */

/* Media Queries */
@media (max-width: 1060px) {
  /* Home Baner */
  section.baner {
    height: auto;
  }
  section.baner .row {
    flex-wrap: wrap;
    justify-content: unset;
    padding-top: 120px;
  }
  section.baner .row .ctn {
    width: 100%;
  }
  
  section.baner .row .ctn p {
    width: 100%;
  }
  section.baner .row .ctn span {
    width: 100%;
  }
  section.baner .row .ctn .time_slider {
    width: 100%;
  }
  section.baner .row .ctn .nav {
    width: 100%;
  }

  section.baner .row .img {
    display: none;
    width: 100%;
    height: 500px;
  }
  section.baner .mobile_img {
    display: block;
    width: 100%;
    height: 500px;
  }
  section.baner .mobile_img .swiper-container .swiper-wrapper .swiper-slide img {
    display: flex;
    margin: 0 auto;
    height: 500px;
  }
  /* End Home Bnner */

  /* Home Reviews */
  section.reviews {
    height: auto;
  }
  section.reviews .flex_space {
    justify-content: unset;
    flex-wrap: wrap;
  }
  section.reviews .row .slider {
    width: 100%;
  }
  section.reviews .row .desc_wr {
    width: 100%;
    margin-bottom: 30px;
  }
  section.reviews .row .desc_wr .desc {
    background: center bottom / 350px no-repeat url("../img/reviews/dentalcare_reviews_illustration.svg");
  }
  /* End Home Reviews */

  /* Section Office Slider */
  section.office_slider .row {
    padding: 0;
  }
  section.office_slider .row .swiper-container .swiper-wrapper .swiper-slide img {
    width: 100%;
  }
  /* End Section Office Slider */
}


@media (max-width: 980px) {
  /* Header */
  header .row nav.social {
    display: none;
  }
  /* End - Header */

  /* Section Subscription */
  section.subscription .flex_space {
    justify-content: unset;
    flex-wrap: wrap;
  }
  section.subscription .row .info {
    width: 100%;
    margin-bottom: 20px;
  }
  section.subscription .row .form {
    width: 100%;
  }
  section.subscription .row .form input {
    width: calc(100% - 220px);
  }
  /* End - Section Subscription */

  /* Section Contact */
  section.contact_baner {
    height: 300px;
    padding-top: 140px;
  }
  section.contact_form .flex_space {
    justify-content: unset;
    flex-wrap: wrap;
  }

  section.contact_form .row .details {
    width: 100%;
  }
  section.contact_form .row .details .ill {
    margin-bottom: 30px;
  }
  section.contact_form .row .details ul {
    margin: 0 auto 30px;
  }

  section.contact_form .row .form {
    width: 100%;
  }
  section.contact_form .row .form .field_h {
    width: 100%;
  }
  /* End Section Contact */

} /* End @media - max-width: 980px */


@media (max-width: 910px) {
  /* Footer */
  footer .row .col_logo_contact {
    width: 100%;
    margin-bottom: 30px;
  }
  /* End Footer */
}


@media (max-width: 850px) {
  /* Header */
  header .row nav.phone {
    display: none;
  }
  /* End - Header */
} /* End @media - max-width: 850px */


@media (max-width: 690px) {
  /* Footer */
  footer .row .col_time {
    width: 100%;
    margin-bottom: 30px;
  }
  footer .row .col_menu {
    margin: 0 50px 30px;
    width: 100%;
  }
  /* End Footer */
}


@media (max-width: 670px) {
  body {
    padding-bottom: 62px;
  }
  /* Header */
  header .row nav.menu {
    display: none;
  }
  /* End - Header */
  /* Menu Mobile */
  .nav_mob {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 62px;
    background: #fff;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
    z-index: 9999999;
  }
  .nav_mob a.link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 62px;
  }
  .nav_mob a.link svg {
    height: 30px;
  }
  .nav_mob a.link svg .color {
    fill: #ea9274;
  }
  /* End - Menu Mobile */

  /* Section Subscription */
  section.subscription .row {
    padding: 60px 50px;
  }
  /* End Section Subscription */

  /* Section Home Instagram */
  section.instagram .row .wrap .info .hashtag {
    display: none;
  }
  /* End Section Home Instagram */

  /* Section Help */
  section.faq_baner {
    height: 430px;
  }
  section.faq_baner .row input {
    left: 20px;
    width: calc(100% - 40px);
  }
  section.faq_content .row .ctn_wr .no-res {
    margin-top: 30px;
  }
  section.faq_content .row .ctn_wr h3 {
    text-align: center;
  }
  section.faq_content .row .cat_wr {
    display: none;
  }
  section.faq_content .row .ctn_wr {
    width: 100%;
  }
  /* End Section Help */

} /* End @media - max-width: 670px */


@media (max-width: 652px) {
  section.services_desc .row nav {
    top: 90px;
  }
}


@media (max-width: 530px) {
  section.reviews .row .desc_wr {
    padding: 20px 10px;
  }

  /* Section Subscription */
  section.subscription .row .form {
    height: auto;
  }
  section.subscription .row .form input {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    margin-right: 0;
  }
  section.subscription .row .form button {
    width: 100%;
  }
  /* End Section Subscription */

  /* Section Services Description */
  section.services_baner {
    padding-top: 210px;
  }
  section.services_desc .row nav {
    display: none;
  }
  section.services_desc .row nav .el svg {
    height: 40px;
  }
  section.services_desc .row .desc {
    margin: 0;
    padding: 0 10px 60px;
  }
  /* End Section Services Description */

} /* End @media - max-width: 530px */


@media (max-width: 500px) {
  /* Default */
  .row {
    padding: 0 10px;
  }
  /* End - Default */
} /* End @media - max-width: 500px */


@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }
  section.baner .row .ctn .nav {
    height: auto;
  }
  section.baner .row .ctn .nav .btn-sec {
    margin-bottom: 20px;
  }
} /* End @media - max-width: 480px */


@media (max-width: 438px) {
  section.baner .row .ctn span {
    text-align: center;
  }
  section.baner .row .ctn .nav .btn-sec {
    margin: 0 auto 20px;
  }
  section.baner .row .ctn .nav .btn-ter {
    margin: 0 auto;
  }

  section.faq_baner {
    height: 380px;
  }
} /* End @media - max-width: 438px */


@media (max-width: 400px) {
  section.baner .row .ctn h1 {
    text-align: center;
  }
  section.reviews .row .desc_wr .desc {
    background: center bottom / 300px no-repeat url("../img/reviews/dentalcare_reviews_illustration.svg");
  }

  .swiper3 .swiper-slide {
    padding: 0 40px;
  }
} /* End @media - max-width: 400px */


@media (max-width: 380px) {
  .btn-prim svg {
    display: none;
  }
  .btn-prim p {
    margin-left: 0;
  }

  /* Section Home Services */
  section.home_services .row .slide_wrap .swiper2 .swiper-wrapper .swiper-slide span {
    text-align: center;
  }
  /* End Section Home Services */

  /* Section Subscription */
  section.subscription .row {
    padding: 50px 10px;
  }
  /* End Section Subscription */

  /* Footer */
  footer .row .col_time {
    width: 100%;
    margin: 0 10px;
    margin-bottom: 30px;
  }
  footer .row .col_menu {
    margin: 0 10px 30px;
    width: 100%;
  }
  footer .row .copyrights {
    padding: 14px 10px;
  }
  /* End Footer */
} /* End @media - max-width: 380px */


@media (max-width: 360px) {
  h1 {
    font-size: 30px;
  }
}
/* End - Media Queries */

  