@font-face {
	font-family: 'sweetsanspro-regular';
	src: url('../fonts/sweetsanspro-regular.woff2') format('woff2'),
		url('../fonts/sweetsanspro-regular.woff') format('woff');
	font-weight: 400;
}

@font-face {
  font-family: 'sweetsanspro-medium';
  src: url('../fonts/sweetsanspro-medium.woff2') format('woff2'),
    url('../fonts/sweetsanspro-medium.woff') format('woff');
  font-weight: 500;
}

@font-face {
	font-family: 'sweetsanspro-bold';
	src: url('../fonts/sweetsanspro-bold.woff2') format('woff2'),
		url('../fonts/sweetsanspro-bold.woff') format('woff');
	font-weight: 700;
}

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

.fa-plus::before {
  content: "+";
}

html {
  margin-top: 0 !important;
  overflow-x: hidden;
}

body {
  padding-top: 140px !important;
  overflow-x: hidden;
}

/* Body and Container */
body {
  margin: 0px;
  padding: 0px;
  font-family: "mencken-std-text",sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--black-color);
  background-color: var(--white-color);
}

:root {
  --primary-color: #26c4d8;
  --secondary-color: #bfe6ef;
  --brown-color: #d1b999;
  --lightbrown-color: #e9decf;
  --black-color: #000000;
  --white-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'sweetsanspro-bold';
  font-weight: 700;
}

h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0px 0px 10px 0px;
}

h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0px 0px 10px 0px;
}

h3 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0px 0px 10px 0px;
}

h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0px 0px 10px 0px;
}

h5 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.24px;
  margin: 0px 0px 10px 0px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin: 0px 0px 0px 0px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  transition: .3s ease;
  text-decoration: underline dotted 1px;
}

a[href=""]:hover {
  color: inherit;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0px 0px 20px 0px;
}

p:last-child {
  margin: 0;
}

ul {
  padding-left: 40px;
}

ol {
  padding-left: 40px;
}

ul,
ol {
  margin: 0 0 20px;
}

ul li,
ol li {
  font-size: 18px;
  line-height: 1.6;
}

sup {
  font-size: 50%;
}

.content {
  margin: 0px 0px 20px 0px;
}

.content:last-child {
  margin: 0;
}

.content ul {
  display: inline-block;
}

.m-0 {
  margin: 0 !important
}

.mt-0,
.my-0 {
  margin-top: 0 !important
}

.mr-0,
.mx-0 {
  margin-right: 0 !important
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
  margin-left: 0 !important
}

.p-0 {
  padding: 0 !important
}

.pt-0,
.py-0 {
  padding-top: 0 !important
}

.pr-0,
.px-0 {
  padding-right: 0 !important
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important
}

.pl-0,
.px-0 {
  padding-left: 0 !important
}

.w-100 {
  width: 100%;
  display: block;
}

.h-100 {
  height: 100%;
}

.img-fluid {
  width: 100%;
  display: block;
}

.uppercase_text {
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1460px;
  margin: 0px auto;
}

.text-white {
  color: var(--white-color);
}

.text-left {
  text-align: left !important;
}

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

.text-right {
  text-align: right !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.btn, 
.button {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--black-color);
  padding: 10px 18px;
  font-family: 'sweetsanspro-regular';
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  display: inline-block;
  transition: all 0.3s;
  
}

.btn:hover,
.button:hover {
  text-decoration: none;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--black-color);
}

.buttons-group {
  margin-top: 20px;
}

.buttons-group .btn:first-child {
  margin-left: 0 !important;
}

.buttons-group .btn {
  margin-left: 5px !important;
}

.sub-title {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 700;
}

/* ------------ Header Css Start------------------ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  transition: all 0.3s;
}

.header-noticebar {
  padding: 5px 30px;
  background-color: var(--primary-color);
}

.header-noticebar .noticebar-row {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: flex-end;
}

.header-noticebar .border-l {
  display: inline-block;
  position: relative;
  margin: 0px 8px 0;
  border-left: 2px solid var(--white-color);
  height: 18px;
  vertical-align: middle;
}

.header-noticebar p, 
.header-noticebar a {
  color: var(--black-color);
  font-family: 'sweetsanspro-medium';
  font-weight: 500;
  font-size: 18px;
}

.header .header-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.header-nav-col .mobile-btn {
  display: none;
}

.header .menu-icon {
  display: none;
  cursor: pointer;
}

.header_wrapper {
  padding: 1px 30px;
  background: url(/wp-content/uploads/2025/06/header-bg-img.jpg) no-repeat top center / cover;
}

.header-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.header .logo {
  padding: 15px 0px 15px 20px;
}

.header .logo img {
  max-width: 240px;
  width: 100%;
}

.header_wrapper .menu_wrapper {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
}

.header_wrapper .menu-item {
  position: relative;
  list-style-type: none;
}

.header_wrapper .menu-item a {
  padding: 15px 0px;
  display: block;
  font-size: 20px;
  line-height: normal;
  color: var(--black-color);
}

.header_wrapper .menu-item a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.header_wrapper .menu_wrapper .current-menu-item > a::before, 
.header_wrapper .menu-item.menu-item-has-children .current-menu-item a::before, 
.header_wrapper .menu-item.menu-item-has-children.current-menu-ancestor > a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  width: 90%;
  height: 2px;
  border-bottom: 3px solid var(--primary-color);
  margin: 0;
}

/*.header_wrapper .menu_wrapper .current-menu-item > a {
  color: var(--primary-color);
}
.header_wrapper .menu-item.menu-item-has-children .current-menu-item a {
  color: var(--primary-color);
}
.header_wrapper .menu-item.menu-item-has-children .current-menu-item a,
.header_wrapper .menu-item.menu-item-has-children.current-menu-ancestor > a {
  color: var(--primary-color);
}*/

.header_wrapper .menu-item.menu-item-has-children {
  position: relative;
}

.header_wrapper .menu-item.menu-item-has-children > a::after {
  font: var(--fa-font-solid);
  content: '\f107';
  margin-left: 3px;
  font-size: 18px;
  color: #c8a980;
}

/*.header_wrapper .menu-item.menu-item-has-children > a::after {
  content: "";
  background: url(/wp-content/uploads/2025/06/menu-after.svg) no-repeat center center / contain;
  width: 18px;
  display: inline-block;
  position: relative;
  height: 14px;
  margin-left: 4px;
}*/

.header_wrapper .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: var(--lightbrown-color);
  left: 0;
  /*left: 50%;
  transform: translateX(-50%);*/
  min-width: 330px;
  padding: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.header_wrapper .menu-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: .3s ease-in-out;
}

.header_wrapper .sub-menu li {
  list-style-type: none;
}

.header_wrapper .sub-menu li:last-child {
  margin-bottom: 0px;
}

.header_wrapper .sub-menu a {
  margin: 0px;
  padding: 12px 12px;
  display: block;
  text-decoration: none;
}

.header_wrapper .sub-menu a:hover {
  color: var(--black-color);
}

.header_wrapper .menu-item.menu-item-has-children .sub-menu a {
  font-size: 21px;
  font-family: 'sweetsanspro-regular';
  font-weight: 400;
}

.header_wrapper .menu-item.menu-item-has-children .sub-menu .current-menu-item a,
.header_wrapper .menu-item.menu-item-has-children .sub-menu a:hover {
  background-color: var(--primary-color);
}

.header_wrapper .menu-item.menu-item-has-children .sub-menu .current-menu-item a::before {
  display: none;
}

.header_wrapper .menu-item .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 14px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: var(--white-color);
  line-height: 28px;
  border: 1px solid var(--white-color);
  background-size: 20px;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.header_wrapper .dropdown-btn .fa {
  transition: transform 0.3s ease;
}

.header_wrapper .dropdown-btn.rotate .fa {
  transform: rotate(180deg);
}

.header_wrapper .menu_icon {
  display: none;
}

.header .donate-button a {
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header .donate-button i {
  font-size: 14px;
}

/* ------------ Header Css End ------------------ */

/* ------------ Pages Css Start ------------------ */
.hero-section {
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
  min-height: calc(80vh - 0px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* .hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #D8C2A5;
  mix-blend-mode: multiply;
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
} */

.hero-section .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-section .background-video {
  width: 100%;
}

.hero-section .background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .video-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D8C2A5;
  mix-blend-mode: multiply;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}


.hero-section .hero-wrapper {
  position: relative;
  max-width: 460px;
  z-index: 2;
}

.hero-section h1 {
  color: var(--white-color);
}

.text-fullwidth-section {
  padding: 80px 30px;
}

.text-fullwidth-section .container {
  max-width: 75%;
}

.text-fullwidth-section p {
  font-size: 24px;
}

.box-content-section {
  padding: 120px 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.box-content-section .container {
  max-width: 1320px;
}

.box-content-section .box-hed h2 {
  text-align: center;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 40px;
}

.box-content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box-content-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 390/390;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.box-content-card::before {
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.box-content-card .box-content-text {
  text-align: center;
  position: relative;
  padding-top: 70px;
  padding-left: 5px;
  padding-right: 5px;
}

.box-content-card .box-content-text .content {
  max-width: 260px;
  margin: 0 auto;
}

.box-content-card .box-content-text h2 {
  position: relative;
  color: var(--white-color);
  font-size: 26px;
  text-transform: uppercase;
  display: inline-block;
  max-width: 260px;
  margin: 0px 0px 26px 0px;
}

.box-content-card .box-content-text h2::before {
  content: '';
  position: absolute;
  border: 2px solid var(--primary-color);
  width: 84%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -8px;
}

.box-content-card .box-content-text p {
  font-size: 18px;
  color: var(--white-color);
}

.box-content-card .buttons-group {
  position: relative;
}

.box-content-card .btn {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  background: var(--brown-color);
  border-color: var(--brown-color);
}

.box-content-card .btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.box-content-row-three {
  gap: 60px 60px;
}

.box-content-row-three .box-content-card {
  width: calc(33% / 1 - 38px);
}

.box-content-row-four {
  gap: 40px 30px;
}

.box-content-row-four .box-content-card {
  width: calc(25% / 1 - 24px);
  aspect-ratio: 306/440;
}

.inner-hero-section {
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
  min-height: calc(50vh - 0px);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.border-text-fullwidth-section {
  padding: 100px 30px;
}

.border-text-fullwidth-section .container {
  max-width: 1260px;
  padding-left: 130px;
}

.border-text-fullwidth-section .content {
  position: relative;
  padding-left: 46px;
}

.border-text-fullwidth-section .content::before {
  content: '';
  position: absolute;
  border-left: 8px solid var(--primary-color);
  min-height: 146px;
  left: 0;
  top: 5px;
  /* top: 50%;
  transform: translatey(-50%); */
}

.border-text-fullwidth-section .content h1 {
  font-size: 36px;
}

.border-text-fullwidth-section .content h2 {
  margin: 0px 0px 10px 0px;
}

.border-text-fullwidth-section .content h2:last-child {
  margin: 0px ;
}

.border-text-fullwidth-section p {
  font-size: 27px;
  font-style: italic;
}

.two-col-text-section {
  padding: 80px 30px;
}

.two-col-text-section .container {
  max-width: 1260px;
  padding-left: 130px;
}

.two-col-text-section a {
  color: #000;
  text-decoration: underline;
	font-family: 'sweetsanspro-regular';
}

.two-col-text-section a:hover {
  text-decoration: underline dotted 1px;
}

.two-col-text-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 70px;
}

.two-col-text-row .two-text-com-col {
  width: calc(100% / 2 - 54px);
}

.two-col-text-row .two-text-com-col .content p {
  margin: 0px 0px 36px 0px;
}

.two-col-text-row .two-text-com-col .content p:last-child {
  margin: 0;
}

.onebytwo-header {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 30px 0;
}

.onebytwo-header .container {
  padding-left: 20px;
}

.onebytwo-header .onebytwo-header-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 100px;
  align-items: flex-end;
}

.onebytwo-header-row .onebytwo-header-col-left {
  position: relative;
  width: calc(32% / 1 - 60px);
}

.onebytwo-header-row .onebytwo-header-col-right {
  width: calc(55% / 1 - 60px);
  padding-bottom: 100px;
}

.onebytwo-header-col-left .onebytwo-header-image {
  margin-bottom: -130px;
  position: relative;
  z-index: 1;
}

.onebytwo-header-col-left .onebytwo-header-image img {
  aspect-ratio: 400/482;
  object-fit: cover;
}

.onebytwo-header-col-right .content {
  position: relative;
}

.onebytwo-header-col-right .content::before {
  content: '';
  position: absolute;
  border-left: 8px solid var(--primary-color);
  min-height: 146px;
  left: -50px;
  top: 50%;
  transform: translatey(-50%);
}

.onebytwo-header-col-right .content h1 {
  font-size: 38px;
  text-transform: none;
}

.onebytwo-row h2 {
  font-size: 30px;
}

.onebytwo-header-col-right .content p {
  font-size: 27px;
  font-style: italic;
}


.onebytwo-botttom {
  padding: 50px 30px 100px;
}

.onebytwo-botttom .container {
  padding-left: 20px;
}

.onebytwo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 100px;
}

.onebytwo-row .onebytwo-text-col-left {
  width: calc(32% / 1 - 60px);
  padding-top: 130px;
}

.onebytwo-row .onebytwo-text-col-right {
  width: calc(55% / 1 - 60px);
}

.onebytwo-text-col-left .logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
}

.onebytwo-text-col-left .logos .logo {
  width: calc(20% / 1 - 8px);
}

.onebytwo-text-col-left .logo img {
  max-width: 91px;
  width: 100%;
}

.onebytwo-text-col-left .content ul {
  padding-left: 20px;
}

.onebytwo-text-col-left .content li {
  margin-bottom: 15px;
}

.onebytwo-text-col-left .content li:last-child {
  margin-bottom: 0;
}

.onebytwo-text-col-left .content p, 
.onebytwo-text-col-left .content ul li {
  font-family: 'sweetsanspro-medium';
  font-weight: 500;
}

.onebytwo-text-col-right .content p {
  margin: 0px 0px 24px 0px;
}

.onebytwo-text-col-right .content p:last-child {
  margin: 0;
}

.our_team_section {
  padding: 100px 30px;
}

.our_team_section .container {
  max-width: 1320px;
}

.our_team_row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 60px;
}

.our_team_row .team_col {
  width: calc(33% / 1 - 38px);
}

.team_col .member_img img {
  display: block;
  width: 100%;
  aspect-ratio: 444/600;
  object-fit: cover;
}

.team_col .member_name h2 {
  color: var(--primary-color);
  font-size: 25px;
  text-transform: uppercase;
  margin: 14px 0px 0px 0px;
}

.team_col .member_position p {
  font-size: 27px;
  font-style: italic;
}


.images-slider-section {
  padding: 60px 60px 40px 60px;
}

.images-slider-section .container {
  max-width: 1260px;
}

.slider_img img {
  width: 100%;
}

.slider_title {
  text-align: center;
  margin-top: 10px;
}

.slider_title p {
  font-size: 27px;
  font-style: italic;
}

.slider_title span {
  font-family: 'sweetsanspro-bold';
  font-weight: 700;
  font-size: 25px;
  font-style: normal;
}

.images-slider-wrapper .slick-arrow::before {
  display: none;
}

.images-slider-wrapper .slick-arrow {
  opacity: 1;
}

.images-slider-wrapper .slick-arrow i {
  color: var(--black-color);
  font-size: 30px;
}

.images-slider-wrapper .slick-prev {
  left: -50px;
}

.images-slider-wrapper .slick-next {
  right: -50px;
}

.grid-content-section {
  padding: 100px 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.grid-content-section .container {
  max-width: 1320px;
}

.grid-content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 60px;
}

.grid-content-row .grid-content-card {
  width: calc(33% / 1 - 38px);
}

.grid-content-text {
  margin-top: 15px;
}

.grid-content-text h2 {
  font-size: 25px;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.grid-content-text .content ul {
  padding-left: 20px;
}

.grid-content-text .content li {
  margin-bottom: 20px;
  font-family: 'sweetsanspro-medium';
  font-weight: 500;
}

.grid-content-text h2:last-child,
.grid-content-text .content li:last-child {
  margin-bottom: 0;
}

.patient-info-two .two-text-com-col-left a {
  color: var(--black-color);
  text-decoration: underline;
}

.patient-info-two .two-text-com-col-left a:hover {
  text-decoration: underline dotted 1px;
}

.patient-info-two .two-text-com-col .btn {
  max-width: 440px;
  text-align: center;
  width: 100%;
	text-decoration: none;
}

.contact-two .two-col-text-row .two-text-com-col-left {
  width: calc(46% / 1 - 54px);
}

.contact-two .two-col-text-row .two-text-com-col-right {
  width: calc(57% / 1 - 54px);
} 

.contact-two h2 {
  font-size: 28px;
  margin: 0 0 25px 0;
}

.contact-two p span {
  font-family: 'sweetsanspro-medium';
  font-weight: 500;
}

.contact-two a {
  color: var(--black-color);
  text-decoration: underline;
}

.contact-two a:hover {
  text-decoration: underline dotted 1px;
}

/* ------------ Pages Css End ------------------ */

/* ------------ Footer Css Start ------------------ */
.footer {
  position: relative;
  background: var(--black-color);
  color: #fff;
  padding: 50px 30px 50px 190px;
}

.footer-column p {
  font-family: 'sweetsanspro-regular';
  line-height: 1.6;
}

.footer-column a {
  color: var(--white-color);
}

.footer .logo-letter {
  position: absolute;
  left: 0;
  top: 58px;
}

.footer .logo-letter img {
  max-width: 126px;
  display: block;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.footer-column {
  flex: 1;
}

.contact-info h3, 
.footer-column h3 {
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info .f-dds, 
.contact-info .f-address {
  margin-bottom: 25px;
}

.footer-column p,
.footer-column ul li {
  margin: 4px 0;
  font-size: 16px;
  font-family: 'sweetsanspro-regular';
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column .f-top-link {
  font-size: 16px;
  font-family: 'sweetsanspro-bold';
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column .f-top-link a {
  color: var(--primary-color);
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline dotted 1px;
}

.footer-icons {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-top: 15px;
}

.footer-icons img {
  display: block;
  height: 70px;
  margin-right: 15px;
}

.footer-icons i {
  transition: color 0.3s;
  background: #838586;
  color: var(--black-color);
  font-size: 20px;
  line-height: 40px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
}

.footer-icons i:hover {
  background: var(--white-color);
}

.footer-copy {
  margin-top: 20px !important;
  font-size: 15px !important;
}


/* ------------ Footer Css End ------------------ */

/* ------------ Form Css Start------------------ */
/*.contact-form {
  padding: 40px 15px;
}*/
.gform_wrapper.gform-theme--framework .gform_fields {
  row-gap: 18px;
}

.gform_wrapper.gform-theme--framework .gfield_label,
.gform_wrapper.gform-theme--framework .tag-field .gfield_description {
  font-size: 20px;
  font-family: "mencken-std-text",sans-serif;
  font-weight: 400;
  color: var(--primary-color);
}

.gform_wrapper.gform-theme--framework .gform-field-label--type-sub,
.gform_wrapper.gform-theme--framework .gchoice .gform-field-label,
.gform_wrapper.gform-theme--framework .gfield_consent_label {
  color: var(--black-color);
  font-size: 16px;
}

.gform_wrapper.gform-theme--framework input[type="text"],
.gform_wrapper.gform-theme--framework input[type="email"],
.gform_wrapper.gform-theme--framework input[type="tel"],
.gform_wrapper.gform-theme--framework input[type="url"],
.gform_wrapper.gform-theme--framework input[type="number"],
.gform_wrapper.gform-theme--framework textarea,
.gform_wrapper.gform-theme--framework select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fff;
}

.gform_wrapper.gform-theme--framework input:focus,
.gform_wrapper.gform-theme--framework textarea:focus,
.gform_wrapper.gform-theme--framework select:focus {
  border-color: #10738c;
  box-shadow: 0 0 0 3px rgba(32, 76, 229, 0.1);
  outline: none;
}

.gform_wrapper.gform-theme--framework input[type="checkbox"]::before,
.gform_wrapper.gform-theme--framework input[type="radio"]::before {
  color: #0a5f92 !important;
}

/* Submit Button */
.gform_wrapper.gform-theme--framework .gform_footer input[type="submit"],
.gform_wrapper.gform-theme--framework .gform_page_footer input[type="submit"] {
  background: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
  color: var(--black-color) !important;
  border-radius: 0px !important;
  padding: 10px 18px !important;
  font-family: 'sweetsanspro-bold' !important;
  font-weight: 700 !important;
  font-size: 21px !important;
  line-height: 1.2 !important;
  transition: all 0.3s !important;
  
}

.gform_wrapper.gform-theme--framework .gform_footer input[type="submit"]:hover {
  text-decoration: none !important;
  border-color: var(--secondary-color) !important;
  background: var(--secondary-color) !important;
  color: var(--black-color) !important;
}

.gform_wrapper.gform-theme--framework .gform_footer {
  margin-top: 3rem;
}

.gform_wrapper.gform-theme--framework .gfield_required {
  font-size: 12px;
  font-weight: 500;
  color: var(--gf-color-danger);
}

/* ------------ Form Css End ------------------ */



@media (max-width: 1400px) {
  .header .logo {
    padding: 15px 0px 15px 18px;
  }

  .header_wrapper .menu-item a {
    font-size: 20px;
  }

  .header_wrapper .sub-menu {
    min-width: 280px;
  }

  .header_wrapper .menu-item.menu-item-has-children .sub-menu a {
    font-size: 18px;
  }


  .border-text-fullwidth-section .container {
    padding-left: 46px;
  }

  .two-col-text-section .container {
    padding-left: 46px;
  }

  .onebytwo-header .onebytwo-header-row {
    gap: 30px 70px;
  }

  .onebytwo-header-row .onebytwo-header-col-left {
    width: calc(32% / 1 - 35px);
  }

  .onebytwo-header-row .onebytwo-header-col-right {
    width: calc(68% / 1 - 35px);
    padding-bottom: 80px;
  }

  .onebytwo-header-col-right .content::before {
    left: -35px;
  }

  .onebytwo-row {
    gap: 30px 70px;
  }

  .onebytwo-row .onebytwo-text-col-left {
    width: calc(32% / 1 - 35px);
  }

  .onebytwo-row .onebytwo-text-col-right {
    width: calc(68% / 1 - 35px);
  }


  .footer {
    padding: 50px 30px 50px 160px;
  }

  .footer-column {
    flex: unset;
    width: 48%;
  }

  .contact-info h3, 
  .footer-column h3 {
    font-size: 20px;
  }

  .footer-column p, 
  .footer-column ul li {
    font-size: 19px;
  }

  .footer .logo-letter img {
    max-width: 128px;
    margin-left: -6px;
  }

  .contact-info .f-dds, 
  .contact-info .f-address {
    margin-bottom: 10px;
  }


}

@media (max-width: 1200px) {
  p,
  ul li, 
  ol li {
    font-size: 20px;
  }

  .btn, .button {
    font-size: 14px;
  }

  .header .header-row {
    gap: 0 10px;
  }

  .header .logo img {
    max-width: 230px;
  }

  .header_wrapper .menu_wrapper {
    gap: 25px 12px;
  }

  .header_wrapper .menu-item a {
      font-size: 17px;
  }

  .header_wrapper .menu-item.menu-item-has-children > a::after {
    font-size: 14px;
  }

  .header_wrapper .menu-item.menu-item-has-children .sub-menu a {
    font-size: 16px;
  }
	
  .header-noticebar p, .header-noticebar a {
    font-size: 16px;
	}

  .hero-section {
    min-height: calc(70vh - 0px);
  }

  .inner-hero-section {
    min-height: calc(46vh - 0px);
  }

  .text-fullwidth-section p br {
    display: none;
  }

  .border-text-fullwidth-section p,
  .text-fullwidth-section p {
    font-size: 23px;
  }

  .box-content-card .box-content-text h2 {
    font-size: 24px;
  }

  .box-content-card .box-content-text p {
    font-size: 18px;
  }

  .onebytwo-header-col-right .content p {
    font-size: 23px;
  }

  .team_col .member_position p {
    font-size: 23px;
  }



  .footer-contact-info, .f-dental-services {
    border-bottom: 2px solid #6d6d6d;
	padding-bottom: 30px;
  }


}



@media (max-width: 1024px) {
  /* header css start */
  .header_wrapper .menu_links {
    display: none;
    background: transparent;
    padding: 0;
  }

  .header_wrapper .menu_links.active {
    display: block;
  }

  .header_wrapper .menu_icon {
    position: absolute;
    display: block;
    z-index: 9999;
    cursor: pointer;
    font-size: 20px;
    height: 20px;
    width: 26px;
    right: 0px;
    top: 38px;
    transition: all 0.3s;
  }

  .header_wrapper .menu_icon i {
    color: var(--black-color);
    font-size: 30px;
    margin-top: -2px;
    cursor: pointer;
  }

  .header_wrapper .menu_icon i:hover {
    color: var(--black-color);
  }

  .header_wrapper .navbar-toggler-icon {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
  }

  .header_wrapper .navbar-toggler-icon::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0px auto;
    width: 100%;
    height: 7px;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(0deg);
    transition: all 300ms ease-in-out;
  }

  .header_wrapper .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    margin: 0px auto;
    width: 100%;
    height: 7px;
    border-top: 2px solid var(--primary-color);
    transform: rotate(0deg);
    transition: all 300ms ease-in-out;
  }

  .header_wrapper .menu_icon.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    border-bottom: none;
    border-bottom-color: currentcolor;
    top: 10px;
    left: 0px;
    transition: all 300ms ease-in-out;
    border-color: var(--primary-color);
  }

  .header_wrapper .menu_icon.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 10px;
    left: 4px;
    transition: all 300ms ease-in-out;
    border-color: var(--primary-color);
  }

  .header_wrapper .menu_icon {
    display: block;
  }

  .header_wrapper .menu-item {
    /*border-top: 1px solid #e3e3e3;*/
  }

  .header_wrapper .menu-item::after {
    display: none;
  }

  .header_wrapper .header_wrapper .menu-item:first-child {
    border: none;
  }

  .header_wrapper .menu-item.menu-item-has-children>a::after {
    display: none;
  }

  .header_wrapper .menu-item .dropdown-btn {
    display: block;
  }

  .header_wrapper ul.sub-menu {
    /*display: none;*/
    left: 0;
    transform: unset;
    text-align: left;
    border-radius: 0px;
    position: relative;
    width: 100%;
    box-shadow: none;
    float: none;
    opacity: 1 !important;
    visibility: visible !important;
    transition: unset !important;
    top: unset;
    min-width: auto;
    background: transparent;
    padding: 0;
    margin: 0;
  }

  .header_wrapper .menu_wrapper .menu-item.menu-item-has-children .sub-menu::before {
    display: none;
  }

  .header_wrapper .menu-item.menu-item-has-children {
    border-bottom: 2px solid #6d6d6d;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .header_wrapper .menu-item a {
    padding: 6px 0px;
    color: var(--white-color);
    text-transform: uppercase;
    font-family: 'sweetsanspro-bold';
    font-weight: 700;
    font-size: 24px;
  }

  .header_wrapper .menu_wrapper .current-menu-item>a {
    color: var(--white-color);
    font-weight: 700;
  }

  .header_wrapper .menu_wrapper .current-menu-item>a,
  .header_wrapper .menu-item.menu-item-has-children .current-menu-item a,
  .header_wrapper .menu-item.menu-item-has-children.current-menu-ancestor>a {
    color: var(--primary-color);
  }

  .header_wrapper .menu_wrapper .current-menu-item>a::before,
  .header_wrapper .menu-item.menu-item-has-children .current-menu-item a::before,
  .header_wrapper .menu-item.menu-item-has-children.current-menu-ancestor>a::before {
    display: none;
  }

  .header_wrapper ul.sub-menu li a {
    color: var(--white-color) !important;
    padding: 6px 0px;
    text-transform: unset;
    font-size: 22px !important;
  }

  .header_wrapper .sub-menu a:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
  }

  .header_wrapper .menu-item.menu-item-has-children .sub-menu .current-menu-item a {
    background: transparent;
    color: var(--primary-color) !important;
  }

  .header_wrapper .header_wrapper ul.sub-menu li {
    margin: 0;
    padding-bottom: 0;
  }

  .header_wrapper .menu-main-menu-container {
    position: fixed;
    left: 0px;
    right: 0;
    text-align: left;
    padding: 0;
    background: var(--black-color);
    width: -webkit-fill-available;
    width: -moz-available;
    margin-top: 0;
    top: 150px;
    z-index: 9999;
    display: block;
    height: 100dvh;
    overflow-y: auto;
  }

  .header_wrapper .menu_wrapper {
    display: block;
    padding: 40px 118px 190px 118px;
  }


  /* header css end */

}

@media (max-width: 992px) {
  .header-noticebar p, .header-noticebar a {
    font-size: 16px;
  }

  .header-noticebar .border-l {
    margin: 0px 8px 0;
    height: 16px;
  }

  .header .logo {
    padding: 15px 0px 15px 0;
  }


  .box-content-row-three {
    gap: 40px 30px;
  }

  .box-content-row-three .box-content-card {
    width: calc(50% / 1 - 16px);
  }

  .box-content-row-four .box-content-card {
    width: calc(50% / 1 - 16px);
  }

  .border-text-fullwidth-section .container {
    padding-left: 28px;
  }

  .two-col-text-section .container {
    padding-left: 28px;
  }

  .two-col-text-row .two-text-com-col {
    width: 100%;
  }

  .onebytwo-header .container,
  .onebytwo-botttom .container {
    padding-left: 0;
  }

  .onebytwo-header-row .onebytwo-header-col-left {
    width: 70%;
    padding: 0 0 50px 30px;
  }

  .onebytwo-header-row .onebytwo-header-col-right {
    width: 100%;
    padding-bottom: 0;
  }

  .onebytwo-header-col-left .onebytwo-header-image {
    margin-bottom: 0;
  }

  .onebytwo-header-col-right .content {
    padding-left: 30px;
  }

  .onebytwo-header-col-right .content::before {
    left: 0;
    min-height: 112px;
  }

  .onebytwo-row .onebytwo-text-col-left, 
  .onebytwo-row .onebytwo-text-col-right {
    width: 100%;
  }

  .onebytwo-row .onebytwo-text-col-left {
    padding-top: 90px;
  }

  .our_team_section {
    padding: 100px 104px;
  }

  .our_team_row {
    gap: 40px 30px;
  }

  .our_team_row .team_col {
    width: calc(50% / 1 - 16px);
  }

  .grid-content-row {
    gap: 40px 30px;
  }

  .grid-content-row .grid-content-card {
    width: calc(50% / 1 - 16px);
  }

  .contact-two .two-col-text-row .two-text-com-col-left, 
  .contact-two .two-col-text-row .two-text-com-col-right {
    width: 100%;
  }


  .footer-content {
    gap: 0;
  }

  .footer-column {
    flex: unset;
    width: 100%;
    border-bottom: 2px solid #6d6d6d !important;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-column:last-child {
    border-bottom: none !important;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer .logo-letter img {
    max-width: 110px;
  }

  .contact-info h3, .footer-column h3 {
    margin-bottom: 4px;
  }

  .contact-info .f-dds, .contact-info .f-address {
    margin-bottom: 6px;
  }

  .footer-column p, .footer-column ul li {
    font-size: 18px;
  }


}


@media (max-width: 767px) {
  body {
    padding-top: 124px !important;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 26px;
  }

  p, ul li, ol li {
    font-size: 18px;
  }

  .header-noticebar .call {
    display: none;
  }

  .header-noticebar {
    padding: 10px 15px;
  }

  .header-noticebar .noticebar-row {
    justify-content: center;
  }

  .header-noticebar p, 
  .header-noticebar a {
    font-size: 16px;
  }

  .header-noticebar .border-l {
    margin: 0px 5px 0;
    height: 12px;
  }

  .header_wrapper {
    padding: 1px 15px;
  }

  .header .header-row {
    align-items: center;
    gap: 0 4px;
  }

  .header .logo img {
    max-width: 166px;
  }

  .header-nav-col .mobile-btn {
    display: inline-block;
  }

  .header-nav-col .mobile-btn {
    font-size: 12px;
    padding: 8px 10px;
    margin-right: 36px;
  }

  .header_wrapper .menu_icon {
    top: 30px;
  }

  .header_wrapper .menu-main-menu-container {
    top: 128px;
  }

  .header_wrapper .menu_wrapper {
    padding: 40px 46px 146px 68px;
  }

  .header_wrapper .menu-item a {
    font-size: 18px;
  }

  .header_wrapper ul.sub-menu li a {
    font-size: 16px !important;
  }


  .hero-section {
    min-height: calc(40vh - 0px);
    padding: 10px 30px;
    justify-content: center;
    align-items: flex-end;
  }

  .hero-section .buttons-group {
    display: none;
  }

  .hero-section h1 {
    text-align: center;
  }

  .text-fullwidth-section {
    padding: 40px 30px;
  }

  .border-text-fullwidth-section p, 
  .text-fullwidth-section p {
    font-size: 20px;
  }

  .box-content-section {
    padding: 40px 30px;
  }

  .box-content-card .box-content-text h2 {
    font-size: 22px;
  }

  .box-content-card .box-content-text .content {
    max-width: 370px;
  }

  .box-content-row-three .box-content-card,
  .box-content-row-four .box-content-card {
    width: 100%;
  }

  .box-content-section .box-hed h2 {
    font-size: 26px;
  }

  .border-text-fullwidth-section {
    padding: 40px 30px;
  }

  .border-text-fullwidth-section .container {
    padding-left: 0;
  }

  .border-text-fullwidth-section .content {
    position: relative;
    padding-left: 38px;
  }

  .border-text-fullwidth-section .content::before {
    min-height: 112px;
  }

  .two-col-text-section {
    padding: 40px 30px;
  }

  .two-col-text-section .container {
    padding-left: 0;
  }

  .onebytwo-header {
    padding: 50px 30px 0;
  }

  .onebytwo-header-row .onebytwo-header-col-left {
    padding: 0 0 30px 30px;
  }

  .onebytwo-botttom {
    padding: 40px 30px 40px;
  }

  .onebytwo-row .onebytwo-text-col-left {
    padding-top: 60px;
  }

  .onebytwo-header-col-right .content h1 {
    font-size: 30px;
  }

  .onebytwo-header-col-right .content p {
    font-size: 20px;
  }

  .our_team_section {
    padding: 40px 68px;
  }

  .our_team_row .team_col {
    width: 100%;
  }

  .team_col .member_name h2 {
    font-size: 22px;
  }

  .team_col .member_position p {
    font-size: 20px;
  }

  .images-slider-section {
    padding: 40px 40px 25px 40px;
  }

  .slider_title p {
    font-size: 20px;
    line-height: 1.2;
  }

  .slider_title span {
    font-size: 20px;
  }

  .images-slider-wrapper .slick-prev {
    left: -32px;
  }

  .images-slider-wrapper .slick-next {
    right: -32px;
  }

  .grid-content-section {
    padding: 40px 30px;
  }

  .grid-content-row .grid-content-card {
    width: 100%;
  }

  .grid-content-text h2 {
    font-size: 24px;
  }


  .footer {
    padding: 40px 15px 40px 90px;
  }

  .footer .logo-letter {
    top: 48px;
  }

  .footer .logo-letter img {
    max-width: 72px;
  }

}

@media (max-width: 480px) {
  body {
    padding-top: 122px !important;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 24px;
  }

  .header-noticebar p, 
  .header-noticebar a {
    font-size: 13px;
  }

  .header_wrapper .menu-main-menu-container {
    top: 122px;
  }

  .hero-section {
    padding: 10px 15px;
  }

  .inner-hero-section {
    min-height: calc(35vh - 0px);
  }

  #map {
    height: 430px;
  }

  .onebytwo-header-row .onebytwo-header-col-left {
    width: 86%;
  }

  .onebytwo-header-col-right .content h1 {
    font-size: 26px;
  }

  .contact-two h2 {
    font-size: 24px;
  }


  .footer {
    padding: 40px 15px 40px 80px;
  }

  .contact-info h3, .footer-column h3 {
    font-size: 18px;
  }

  .footer-column p, .footer-column ul li {
    font-size: 16px;
  }

  .footer-icons {
    gap: 10px;
  }

  .footer-icons img {
    margin-right: 10px;
  }

  .footer-icons i {
    font-size: 15px;
    line-height: 30px;
    height: 30px;
    width: 30px;
  }

  .footer-copy {
    font-size: 13px !important;
  }

}

@media (max-width: 360px) {
  .header-nav-col .mobile-btn {
    font-size: 13px;
    padding: 8px 8px;
    margin-right: 30px;
  }
}