 @import url('../rt.html');
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */


/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(../grabbing.html) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(../ajaxloader.html) no-repeat center center
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}

/*
Table of Contents
1. Generic ----------------------------------------
01. Fonts -------------------------------------
02. Base --------------------------------------
03. Helpers -----------------------------------
2. Page Sections ----------------------------------
01. Wrapper -----------------------------------
02. Header ------------------------------------
03. Main Content ------------------------------
04. Footer ------------------------------------
*/

/* ==========================================================================
I. Generic
==============================================================		============ */

/* ------------------------------------------------------------
Fonts
------------------------------------------------------------ */


@font-face {
    font-family: 'Adobe Text Pro';
    src: url('../woff2/adobetextpro-semibold.woff2') format('woff2'),
        url('../woff/adobetextpro-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Adobe Text Pro';
    src: url('../woff2/adobetextpro-bold.woff2') format('woff2'),
        url('../woff/adobetextpro-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Adobe Text Pro';
    src: url('../woff2/adobetextpro-regular.woff2') format('woff2'),
        url('../woff/adobetextpro-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../woff2/myriadpro-semibold.woff2') format('woff2'),
        url('../woff/myriadpro-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../woff2/myriadpro-bold.woff2') format('woff2'),
        url('../woff/myriadpro-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../woff2/myriadpro-regular.woff2') format('woff2'),
        url('../woff/myriadpro-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../woff2/proximanova-bold.woff2') format('woff2'),
        url('../woff/proximanova-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../woff2/proximanova-regular.woff2') format('woff2'),
        url('../woff/proximanova-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ------------------------------------------------------------
Base
------------------------------------------------------------ */

html {
	color: #000000;
	font-size: 10px;
	line-height: 1.5;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

::-ms-clear {
	display: none;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input,
select,
input[type="search"] {
	-webkit-appearance: none;
	border-radius: 0;
	box-shadow: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

img {
	max-width: 100%;
}

.elementor-widget-image .elementor-image>a img[src$=".svg"], 
.elementor-widget-image .elementor-image figure>a img[src$=".svg"]{
	width: auto !important;
}

.elementor-widget-image a img[src$=".svg"] {
    width: auto !important;
}

body p,
.elementor-widget-container,
.elementor-image-box-description {
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	color: inherit;
	font-weight: inherit;
}

.elementor-text-editor p {
font-size: inherit;
font-family: inherit;
color: inherit;
line-height: inherit;
font-weight: inherit;
text-transform: inherit;
}

.elementor a,
a {
	font-family: inherit;
	font-weight: inherit;
	text-decoration: inherit;
	color: inherit;
	font-size: inherit;
	transition: all 0.3s;
}

body a, 
body .elementor p a, 
body .elementor-widget-text-editor a, 
body .elementor-cta__description a {
	color: #1A7EC1;
	text-decoration: underline;
	font-weight: 600;
}

body a:hover,
body .elementor p a:hover, 
body .elementor-widget-text-editor a:hover, 
body .elementor-cta__description a:hover{
	color: #1A7EC1;
	text-decoration: none;
}

a[href*="tel:"], 
a[href*="mailto:"]{
    display: inline-block;
}

/* / =----------------------------UL/OL---------------------------- / */

.site-main ul:not([class]) {
	font-size: inherit;
	list-style: none;
}

.site-main ol {
	list-style: decimal outside;
	font-size: inherit;
	padding-left: 18px;
}

body .site-main ul:not([class]) li,
body .site-main ul:not([class]) li ol li ul:not([class]) li {
	font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    margin-bottom:5px;
    padding-left: 18px;
    position: relative;
}

.site-main ol li,
.site-main ul:not([class]) li ol li {
	font-size: inherit;
	line-height: inherit;
	font-family: inherit;
	font-weight: inherit;
	color: inherit;
	margin-bottom: 5px;
	padding-left: 5px;
	position: relative;
}

.site-main ol ol,
.site-main ul:not([class]) ul:not([class]),
.site-main ol ul:not([class]),
.site-main ul:not([class]) ol {
	margin-bottom: 0;
	margin-left: 0px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.site-main ul:not([class]):not(.elementor-editor-element-settings):not(.elementor-select-preset-list):not(.gform_fields) {
	margin-left: 0;
	padding-left: 0;
}

.site-main ul:not([class]):not(.elementor-editor-element-settings):not(.elementor-select-preset-list):not(.gform_fields):not(.camps_and_programs) li:before,
.site-main ul:not([class]) li ol li ul:not([class]) li:after {
    content: "+";
    display: inline-block;
    font-family: 'Proxima Nova', Arial, sans-serif;
    color: #1A7EC1;
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 18px;
    font-weight: 600;
}

.site-main ol li::marker,
.site-main ul:not([class]) li ol li::marker{
    font-weight: 600;
    color: #1A7EC1;
}

.site-main ul:not([class]) ol li::before {
	display: none !important;
}

/* / =----------------------------UL/OL---------------------------- / */


h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
	margin-bottom: 0;	
}

body {
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-family: 'Proxima Nova', Arial, sans-serif;
	font-weight: 500;
	line-height: 28px;
	color: #5C5D5F;
}

body .elementor-widget-heading h1.elementor-heading-title,
body h1,
body .h1, 
body .elementor-widget-heading.h1 .elementor-heading-title, 
h1.elementor-cta__title.elementor-cta__content-item {
	font-size: 42px;
	font-family: 'Adobe Text Pro', Georgia, 'Times New Roman', Times, serif;
	font-weight: 400;
	line-height: 50px;
}

body .elementor-widget-heading h2.elementor-heading-title,
body h2,
body .h2, 
body .elementor-widget-heading.h2 .elementor-heading-title, 
h2.elementor-cta__title.elementor-cta__content-item,
body .elementor-image-box-content h2.elementor-image-box-title,
.elementor-posts .elementor-post__card h2.elementor-post__title,
.elementor-posts h2.elementor-post__title {
	font-size: 36px;
	font-family: 'Adobe Text Pro', Georgia, 'Times New Roman', Times, serif;
	font-weight: 400;
	line-height: 43px;
}

body .elementor-widget-heading h3.elementor-heading-title,
body h3,
body .h3, 
body .elementor-widget-heading.h3 .elementor-heading-title, 
h3.elementor-cta__title.elementor-cta__content-item,
body .elementor-image-box-content h3.elementor-image-box-title,
.elementor-posts .elementor-post__card h3.elementor-post__title,
.elementor-posts h3.elementor-post__title{
	font-size: 28px;
	font-family: 'Adobe Text Pro', Georgia, 'Times New Roman', Times, serif;
	font-weight: 400;
	line-height: 36px;
}

body .elementor-widget-heading h4.elementor-heading-title,
body h4,
body .h4, 
body .elementor-widget-heading.h4 .elementor-heading-title, 
h4.elementor-cta__title.elementor-cta__content-item,
body .elementor-image-box-content h4.elementor-image-box-title,
.elementor-posts .elementor-post__card h4.elementor-post__title,
.elementor-posts h4.elementor-post__title {
	font-size: 24px;
	font-family: 'Adobe Text Pro', Georgia, 'Times New Roman', Times, serif;
	font-weight: 400;
	line-height: 29px;
}

body .elementor-widget-heading h5.elementor-heading-title,
body h5,
body .h5, 
body .elementor-widget-heading.h5 .elementor-heading-title, 
h5.elementor-cta__title.elementor-cta__content-item,
body .elementor-image-box-content h5.elementor-image-box-title,
.elementor-posts .elementor-post__card h5.elementor-post__title,
.elementor-posts h5.elementor-post__title {
	font-size: 20px;
	font-family: 'Proxima Nova', Arial, sans-serif;
	font-weight: 700;
	line-height: 30px;
}

body .elementor-widget-heading h6.elementor-heading-title,
body h6,
body .h6, 
body .elementor-widget-heading.h6 .elementor-heading-title, 
h6.elementor-cta__title.elementor-cta__content-item,
body .elementor-image-box-content h6.elementor-image-box-title,
.elementor-posts .elementor-post__card h6.elementor-post__title,
.elementor-posts h6.elementor-post__title {
	font-size: 18px;
	font-family: 'Proxima Nova', Arial, sans-serif;
	font-weight: 700;
	line-height: 30px;
}

body .elementor-widget-heading.display-1 .elementor-heading-title, 
body .display-1 .elementor-heading-title, 
body .display-1 .elementor-widget-heading .elementor-heading-title, 
.display-1 .elementor-cta__title.elementor-cta__content-item, 
body .elementor-widget-heading .elementor-heading-title.elementor-size-large, 
body .elementor-heading-title.elementor-size-large  {
    font-size: 70px;
	font-family: 'Adobe Text Pro', Georgia, 'Times New Roman', Times, serif;
    font-weight: 400;
    line-height: 88px;
}

/* ------------------------------------------------------------
Helpers
------------------------------------------------------------ */

.invisible {
visibility: hidden !important;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
-webkit-appearance: none;
}


/* / ----------------------Button style---------------------- / */

body [type="button"]:not(.gm-control-active):not(.mejs-button button),
body [type="submit"]:not(.adminbar-button),
body .elementor-button,
body .elementor-button:focus,
body [type="button"]:not(.gm-control-active):focus:not(.mejs-button button),
body [type="button"]:not(.gm-control-active):not(.mejs-button button),
body [type="submit"]:not(.adminbar-button):focus,
body button:not(.gm-control-active):not(.mejs-button button):focus,
body button:not(.gm-control-active):not(.mejs-button button), 
body .elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button, 
body .elementor-cta--skin-classic .elementor-cta__button.elementor-button{
    color: #ffffff;
    background-color: #1A7EC1;
    font-size: 18px !important;
    line-height: 22px;
    padding: 16px 30px 16px;
    font-weight: 600 !important;
    border: 2px solid #1A7EC1;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    -webkit-appearance: none;
    transition: all 0.3s;
    box-sizing: border-box;
    font-family: 'Myriad Pro', Arial, sans-serif;
    text-transform: capitalize;
    max-width: 100%;
}

.elementor-button:after,
[type="button"]:after {
	content: "";
	width: 186px;
	display: block;
	max-width: 100%;
}

iframe {
    aspect-ratio: 16 / 9;
}

body [type="button"]:not(.gm-control-active):not(.mejs-button button):hover,
body [type="submit"]:not(.adminbar-button):hover,
body .elementor-button:hover,
body .elementor-button:focus:hover,
body [type="button"]:not(.gm-control-active):not(.mejs-button button):focus:hover,
body [type="button"]:not(.gm-control-active):not(.mejs-button button):hover,
body [type="submit"]:not(.adminbar-button):focus:hover,
body button:not(.gm-control-active):not(.mejs-button button):focus:hover,
body button:not(.gm-control-active):not(.mejs-button button):hover, 
body .elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button:hover, 
body .elementor-cta--skin-classic .elementor-cta__button.elementor-button:hover{
	background-color: #ffffff;
    color: #1A7EC1;
	text-decoration: none;
    border-color:#1A7EC1;
}

body .green-button[type="button"],
body .green-button[type="submit"]:not(.adminbar-button),
body .green-button .elementor-button,
body .green-button .elementor-button:focus,
body .green-button[type="button"]:focus,
body .green-button[type="button"],
body .green-button[type="submit"]:not(.adminbar-button):focus,
body .green-button button:focus,
body .green-button button, 
body .green-button.elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button, 
body .green-button.elementor-cta--skin-classic .elementor-cta__button.elementor-button{
	background-color: #3E8334;
	color: #ffffff;
	text-decoration: none;
    border-color:#3E8334;
}

body .green-button[type="button"]:hover,
body .green-button[type="submit"]:not(.adminbar-button):hover,
body .green-button .elementor-button:hover,
body .green-button .elementor-button:focus:hover,
body .green-button[type="button"]:focus:hover,
body .green-button[type="button"]:hover,
body .green-button[type="submit"]:not(.adminbar-button):focus:hover,
body .green-button button:focus:hover,
body .green-button button:hover, 
body .green-button.elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button:hover, 
body .green-button.elementor-cta--skin-classic .elementor-cta__button.elementor-button:hover{
	background-color: #ffffff;
	color: #3E8334;
	text-decoration: none;
    border-color:#3E8334;
}

body .gray-button[type="button"],
body .gray-button[type="submit"]:not(.adminbar-button),
body .gray-button .elementor-button,
body .gray-button .elementor-button:focus,
body .gray-button[type="button"]:focus,
body .gray-button[type="button"],
body .gray-button[type="submit"]:not(.adminbar-button):focus,
body .gray-button button:focus,
body .gray-button button, 
body .gray-button.elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button, 
body .gray-button.elementor-cta--skin-classic .elementor-cta__button.elementor-button{
	background-color: #5C5D5F;
	color: #ffffff;
	text-decoration: none;
    border-color:#5C5D5F;
}

body .gray-button[type="button"]:hover,
body .gray-button[type="submit"]:not(.adminbar-button):hover,
body .gray-button .elementor-button:hover,
body .gray-button .elementor-button:focus:hover,
body .gray-button[type="button"]:focus:hover,
body .gray-button[type="button"]:hover,
body .gray-button[type="submit"]:not(.adminbar-button):focus:hover,
body .gray-button button:focus:hover,
body .gray-button button:hover, 
body .gray-button.elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button:hover, 
body .gray-button.elementor-cta--skin-classic .elementor-cta__button.elementor-button:hover{
	background-color: #ffffff;
	color: #5C5D5F;
	text-decoration: none;
    border-color:#5C5D5F;
}

body .white-button[type="button"],
body .white-button[type="submit"]:not(.adminbar-button),
body .white-button .elementor-button,
body .white-button .elementor-button:focus,
body .white-button[type="button"]:focus,
body .white-button[type="button"],
body .white-button[type="submit"]:not(.adminbar-button):focus,
body .white-button button:focus,
body .white-button button, 
body .white-button.elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button, 
body .white-button.elementor-cta--skin-classic .elementor-cta__button.elementor-button{
	background-color: #ffffff;
	color: #002c45;
	text-decoration: none;
    border-color:#ffffff;
}

body .white-button[type="button"]:hover,
body .white-button[type="submit"]:not(.adminbar-button):hover,
body .white-button .elementor-button:hover,
body .white-button .elementor-button:focus:hover,
body .white-button[type="button"]:focus:hover,
body .white-button[type="button"]:hover,
body .white-button[type="submit"]:not(.adminbar-button):focus:hover,
body .white-button button:focus:hover,
body .white-button button:hover, 
body .white-button.elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button:hover, 
body .white-button.elementor-cta--skin-classic .elementor-cta__button.elementor-button:hover{
	background-color: transparent;
	color: #fff;
	text-decoration: none;
    border-color:#ffffff;
}

body .text-link [type="button"]:not(.gm-control-active),
body .text-link [type="submit"]:not(.adminbar-button),
body .text-link .elementor-button,
body .text-link .elementor-button:focus,
body .text-link [type="button"]:not(.gm-control-active):focus,
body .text-link [type="button"]:not(.gm-control-active),
body .text-link [type="submit"]:not(.adminbar-button):focus,
body .text-link button:not(.gm-control-active):focus,
body .text-link button:not(.gm-control-active), 
body .text-link.elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button, 
body .text-link.elementor-cta--skin-classic .elementor-cta__button.elementor-button{
    color: #3E8334;
    background-color: transparent;
    font-size: 18px !important;
    line-height: 22px;
    padding: 0;
    font-weight: 700 !important;
    border: none;
    display: inline-block;
    text-decoration: underline;
    cursor: pointer;
    text-align: left;
    border-radius: 0;
    -webkit-appearance: none;
    transition: all 0.3s;
    box-sizing: border-box;
    font-family: 'Myriad Pro', Arial, sans-serif;
    text-transform: capitalize;
    max-width: 100%;
	letter-spacing: -0.3px;
    text-decoration-thickness: 2px;
    text-underline-position: under;
}

body .text-link .elementor-button span.last, 
body .text-link.elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button span.last, 
body .text-link.elementor-cta--skin-classic .elementor-cta__button.elementor-button span.last{
	display: inline-block;
}

body .text-link .elementor-button span.last:after, 
body .text-link.elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button span.last:after, 
body .text-link.elementor-cta--skin-classic .elementor-cta__button.elementor-button span.last:after{
	content: "";
    width: 20px !important;
    height: 20px;
    background-color: rgba(114,193,108,0.3);
    display: inline-block;
    margin-bottom: -6px;
    margin-left: 9px;
    border-radius: 50%;
    background-image: url(../svg/icon-arrow.svg);
    background-position: center left 4px;
    background-repeat: no-repeat;
    background-size: auto;
}

body .text-link [type="button"]:not(.gm-control-active):hover,
body .text-link [type="submit"]:not(.adminbar-button):hover,
body .text-link .elementor-button:hover,
body .text-link .elementor-button:focus:hover,
body .text-link [type="button"]:not(.gm-control-active):focus:hover,
body .text-link [type="button"]:not(.gm-control-active):hover,
body .text-link [type="submit"]:not(.adminbar-button):focus:hover,
body .text-link button:not(.gm-control-active):focus:hover,
body .text-link button:not(.gm-control-active):hover, 
body .text-link.elementor-widget-call-to-action .elementor-cta__button-wrapper .elementor-cta__button:hover, 
body .text-link.elementor-cta--skin-classic .elementor-cta__button.elementor-button:hover{
	background-color: transparent;
    color: #3E8334;
	text-decoration: none;
    border: none;
}

body .elementor-button span{
    color: inherit;
}


/* / ----------------------Button style---------------------- / */


/* .elementor-container{
max-width: 1241px;
padding-left: 30px;
padding-right: 30px;
} */

/* .elementor-section.elementor-section-boxed > .elementor-container {
width: calc(100% - 30px);
} */

.elementor-section.elementor-section-boxed > .elementor-container
.elementor-container {
  width: 100%;
}
/* ------------------------------------------------------------
Select Dropdown Custom Style
------------------------------------------------------------ */
/* gravity form select dropdowns */
.select{
	display: block;
	position: relative;
	width: 100%;
    height: 62px;
} 

.ginput_container_select .select select,
.gfield .clear-multi .ginput_container_date .select select,
.gfield .gfield_time_ampm .select select {
	width: 100%;
    height: 62px;
    cursor: pointer;
    border: 2px solid #ddecf6 !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 11px 15px !important;
}

body .gform_wrapper li.gfield_error .clear-multi .ginput_container_date .select {
	border-color: #e75454;
}

.s-hidden {
	display: none;
}

.styledSelect {
    padding: 10px 45px 10px 15px;
    position: relative;
    height: 62px;
    z-index: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    border-radius: 5px !important;
    background-color: #ffffff;
    border: solid 2px #dcecf6 !important;
    box-shadow: none;
    font-size: 18px !important;
    line-height: 26px;
    color: rgba(46, 44, 45, 0.4) !important;
    text-transform: none;
    letter-spacing: 0px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.styledSelect:focus, 
.styledSelect.active{
  border: 2px solid #277fbf !important;
}

body .gform_wrapper .gfield_required {
	color: #666;
}

body .gform_wrapper .gfield_time_ampm select {
	width: 80px !important;
	padding-bottom: 17px !important;
	padding-top: 17px !important;
}

/* .styledSelect.active {
  box-shadow: 0 5px 12px rgba(0, 0, 0, .15);
} */

.styledSelect:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 14px;
	line-height: 1;
	width: 15px;
	height: 12px;
	background: url("../svg/chevron-down.svg") no-repeat center;
}

.styledSelect.active:after {
	background: url("../svg/chevron-down.svg") no-repeat center;
  transform: translateY(-50%) rotate(180deg);
}

html body .styledSelect .text-ellipses{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 100%;
	margin-bottom: 0 !important;
}

html body .styledSelect .text-ellipses.valueAdded{
    color: #5C5D5F;
}

body .options {
	display: none;
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    left: 0;
    z-index: 9;
    margin: 0 !important;
    padding: 0;
    list-style: none;
    background: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 5px;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 225px;
    overflow-y: auto;
    border: solid 2px #dbecf6;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
}

body form .options li {
    margin: 0;
    padding: 10px 15px 10px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #5C5D5F;
    text-transform: none;
    cursor: pointer;
}

body form .options li:hover {
	background-color: #f6f6f6;
}

.options li::before {
	display: none !important;
}

.options li[rel=""] {
	display: none;
}

.options li:not(.location-result).active {
	background-color: #F6F6F6;
	position: relative;
	cursor: default;
	pointer-events: none;
}

.styledSelect.noplaceholder .text-ellipses {
	color: #0C2340;
}
/* ------------------------------------------------------------
End of Select Dropdown Custom Style
------------------------------------------------------------ */


/* ------------------------------------------------------------
Checkbox custom style
------------------------------------------------------------ */

/* html structure */
/* <label class="checkbox-container">One
  <input type="checkbox" checked="checked">
  <span class="checkmark"></span>
</label> */
/* end html structure */

/* Create a custom checkbox */
.checkbox-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkbox-container .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input~.checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked~.checkmark {
	background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked~.checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
	left: 11px;
	top: 6px;
	width: 5px;
	height: 12px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* ------------------------------------------------------------
End of checkbox custom style
------------------------------------------------------------ */

/* ------------------------------------------------------------
Checkbox custom style
------------------------------------------------------------ */
/* html structure */
/* <label class="radio-container">One
  <input type="radio" checked="checked" name="radio">
  <span class="checkmark"></span>
</label> */

/* The container */
.radio-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.radio-container .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input~.checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked~.checkmark {
	background-color: #2196f3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-container .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked~.checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
	top: 7px;
	left: 7.5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: white;
}

/* ------------------------------------------------------------
End of checkbox custom style
------------------------------------------------------------ */

/* ------------------------------------------------------------
gravity form style
------------------------------------------------------------ */
html body .gform_wrapper *:focus {
	outline: none;
}

.gform_validation_errors, 
.validation_error{
	display: none;
}

html body .gform_wrapper div.validation_error html body .gform_wrapper form {
	border: 2px solid #666;
	padding: 0;
}

html body .gform_wrapper form ul.gform_fields li.gfield {
	margin-top: 0;
	margin-bottom: 20px !important;
	border: 0;
	background: none;
	vertical-align: top;
	letter-spacing: -0.14px;
  padding-left: 0;
  padding-right: 0;
}

.gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
	max-width: 100% !important;
}

html body .gform_wrapper form ul.gform_fields li.gfield.bottom-info {
	padding-top: 0px !important;
}

html body .gform_wrapper form ul.gform_fields li.gfield .ginput_container {
	margin-top: 0 !important;
}

html body .gform_wrapper form ul.gform_fields li.gfield input[type="text"],
html body .gform_wrapper form ul.gform_fields li.gfield input[type="email"],
html body .gform_wrapper form ul.gform_fields li.gfield input[type="number"],
html body .gform_wrapper form ul.gform_fields li.gfield input[type="tel"], 
html body .gform_wrapper form ul.gform_fields li.gfield input[type="search"] {
	margin-top: 0;
    margin-bottom: 0;
    border-radius: 5px !important;
    background-color: #ffffff;
    border: solid 2px #DDECF6;
    box-shadow: none;
    font-size: 18px !important;
    line-height: 26px !important;
    color: #5C5D5F !important;
    width: 100% !important;
    height: 62px;
    padding: 10px 15px !important;
    transition: all 0.3s;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder, 
textarea::-webkit-input-placeholder, 
input[type="search"]::-webkit-input-placeholder,
html body .gform_wrapper form ul.gform_fields li.gfield input[type="text"]::-webkit-input-placeholder,
html body .gform_wrapper form ul.gform_fields li.gfield input[type="email"]::-webkit-input-placeholder,
html body .gform_wrapper form ul.gform_fields li.gfield input[type="number"]::-webkit-input-placeholder,
html body .gform_wrapper form ul.gform_fields li.gfield input[type="tel"]::-webkit-input-placeholder, 
html body .gform_wrapper form ul.gform_fields li.gfield textarea::-webkit-input-placeholder, 
html body .gform_wrapper form ul.gform_fields li.gfield input[type="search"]::-webkit-input-placeholder  {
	color: rgba(46, 44, 45, 0.4);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus, 
textarea:focus, 
input[type="search"]:focus,
html body .gform_wrapper form ul.gform_fields li.gfield input[type="text"]:focus,
html body .gform_wrapper form ul.gform_fields li.gfield input[type="email"]:focus,
html body .gform_wrapper form ul.gform_fields li.gfield input[type="number"]:focus,
html body .gform_wrapper form ul.gform_fields li.gfield input[type="tel"]:focus, 
html body .gform_wrapper form ul.gform_fields li.gfield textarea:focus, 
html body .gform_wrapper form ul.gform_fields li.gfield input[type="search"]:focus {
	border: solid 2px #277fbf !important;
}

html body .gform_wrapper form ul.gform_fields li.gfield textarea {
	padding: 10px 15px;
	border-radius: 5px;
	font-weight: normal;
	border: solid 2px #DDECF6;
	font-size: 18px;
  	background-color: #ffffff;
	line-height: 26px;
	height: 195px;
	color: #5C5D5F;
	box-shadow: none;
	vertical-align: top;
	margin-bottom: 0px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
}

/*Change text in autofill textbox*/
input:-webkit-autofill {
	-webkit-text-fill-color: #5C5D5F !important;
}

/* html body .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
	padding: 16px 15px;
	font-size: 18px;
	line-height: 1;
} */

html body .gform_wrapper form ul.gform_fields li.gfield.gfield_error:not(.top-text):not(.recaptcha-field) {
	margin-bottom: 8px !important;
}

html body .gform_wrapper form ul.gform_fields li.gfield.recaptcha-field {
	padding-top: 10px !important;
}

html body .gform_wrapper form ul.gform_fields li.gfield .ginput_container.ginput_recaptcha {
	margin-top: 0 !important;
}

html body .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
    font-size: 12px;
    color: #e11919;
	font-family: 'Proxima Nova', Arial, sans-serif;
	font-weight: 400;
	padding-top: 5px;
	line-height: normal;
	letter-spacing: -0.13px;
	padding-right: 7px;
}

html body .gform_wrapper .validation_message {
	font-size: 10px;
	color: #e11919;
	font-family: 'Proxima Nova', Arial, sans-serif;
	font-weight: 400;
	padding-top: 5px;
}

.ginput_container_phone .validation_message{
	display: none;
}

/* html body .gform_wrapper div.validation_error {
	border: 0;
	font-size: 20px;
	color: #f02525;
	display: none;
} */

html body .gform_wrapper li.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
html body .gform_wrapper li.gfield_error textarea {
	border: 2px solid #e75454 !important;
}

.gfield_error .styledSelect {
	border: 2px solid #e75454;
}

html body .gform_wrapper .top_label .gfield_label,
html body .gform_wrapper .gform_wrapper legend.gfield_label {
	font-size: 20px;
	color: #000;
}


/* -------------------------------------------------------
Radio and Checkbox Styling
---------------------------------------------------------- */

html body .gform_wrapper ul.gfield_checkbox li input[type="checkbox"]:checked+label,
html body .gform_wrapper .gfield_radio li input[type="radio"]:checked+label {
	font-weight: normal;
}

html body .gform_wrapper ul.gform_fields li.gfield.gfield_error+li.gfield.gfield_error {
	margin-top: 0;
}

html body .gform_wrapper li.gfield_error div.ginput_complex.ginput_container label,
html body .gform_wrapper li.gfield_error ul.gfield_checkbox,
html body .gform_wrapper li.gfield_error ul.gfield_radio {
	color: #000;
}

html body .gform_wrapper ul.gfield_radio li {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

html body .gform_wrapper ul.gfield_radio li:before {
	display: none !important;
}

html body .gform_wrapper ul.gfield_radio li input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

html body .gform_wrapper ul.gfield_radio li label {
	padding-left: 30px;
	font-weight: normal;
}

html body .gform_wrapper ul.gfield_radio li label:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
}

html body .gform_wrapper ul.gfield_radio li:hover input~label:before {
	background-color: #ccc;
}

html body .gform_wrapper ul.gfield_radio li:hover input~label {
	font-weight: normal;
}

html body .gform_wrapper ul.gfield_radio li input:checked~label:before {
	background-color: #2196f3;
}

html body .gform_wrapper ul.gfield_radio li label:after {
	content: "";
	position: absolute;
	display: none;
}

html body .gform_wrapper ul.gfield_radio li input:checked~label:after {
	display: block;
}

html body .gform_wrapper ul.gfield_radio li label:after {
	top: 9.5px;
	left: 7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: white;
}

html body .gform_wrapper ul.gfield_checkbox li {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

html body .gform_wrapper ul.gfield_checkbox li:before {
	display: none !important;
}

html body .gform_wrapper ul.gfield_checkbox li input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

html body .gform_wrapper ul.gfield_checkbox li label {
	padding-left: 30px;
	font-weight: normal;
}

html body .gform_wrapper ul.gfield_checkbox li label:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

html body .gform_wrapper ul.gfield_checkbox li:hover input~label:before {
	background-color: #ccc;
}

html body .gform_wrapper ul.gfield_checkbox li:hover input~label {
	font-weight: normal;
}

html body .gform_wrapper ul.gfield_checkbox li input:checked~label:before {
	background-color: #2196f3;
}

html body .gform_wrapper ul.gfield_checkbox li label:after {
	content: "";
	position: absolute;
	display: none;
}

html body .gform_wrapper ul.gfield_checkbox li input:checked~label:after {
	display: block;
}

html body .gform_wrapper ul.gfield_checkbox li label:after {
	left: 11px;
	top: 6px;
	width: 5px;
	height: 12px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.elementor .gm-style img {
	max-width: none;
}

html body .gform_wrapper form ul.gform_fields li.gfield.combo-name-fields {
	margin-bottom: 0 !important;
}

html body .gform_wrapper form ul.gform_fields li.gfield.combo-name-fields input {
	margin-bottom: 20px !important;
}

html body .gform_wrapper form ul.gform_fields li.gfield.combo-name-fields .ginput_container>span {
	margin-bottom: 0;
	padding-top: 0;
}

html body .gform_wrapper form ul.gform_fields li.gfield.combo-name-fields .validation_message {
	margin-top: -20px;
	margin-bottom: 20px;
}


/* ------------------------------------------------------------
gravity form Button styling
------------------------------------------------------------ */

html body .gform_wrapper form .gform_footer {
	text-align: left;
	padding: 0;
	margin: 0;
}

html body .gform_wrapper form .gform_footer input[type="submit"] {
	background-color: #72c16c;
    color: #fff;
    max-width: 210px;
    width: 100%;
    margin: 0;
    border: 2px solid #72c16c;
	line-height: 22px !important;
    min-height: auto !important;
}

html body .gform_wrapper form .gform_footer input[type="submit"]:hover {
	background-color: #fff;
	color: #72c16c;
	border: 2px solid #72c16c;
}

body .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){
	max-width: 100% !important;
}

html body .gform_wrapper form .gform_footer input[type="submit"] + img{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -30px);
}

body .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half, body .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half{
	max-width: 50%;
	margin-right: 0 !important;
}

/* ------------------------------------------------------------
End gravity form style
------------------------------------------------------------ */




/* ------------------------------------------------------------
End gravity form style
------------------------------------------------------------ */
.top-bar-header a{
    text-decoration: none;
}

header {
    width:100% !important
}

[data-elementor-type="header"]  .elementor-sticky--active{
   z-index: 9999;
}

[data-elementor-type="header"] .elementor-button, 
[data-elementor-type="header"] .elementor-button:focus{
    padding: 11px 16px;
    border-radius: 0 !important;
    font-size: 16px !important;
    line-height: 20px;
    border: 0;
    color: #fff;
    text-transform: none;
    background: #3E8334;
    text-decoration: none;
    font-weight: 400 !important;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

[data-elementor-type="header"] .elementor-element.elementor-button-info .elementor-button{
    background: #007CC2;
}

[data-elementor-type="header"] .elementor-button:after{
    display: none;
}

[data-elementor-type="header"] .elementor-element.elementor-button-info .elementor-button:hover{
    background-color: #fff;
    color: #5C5D5F;
}

.main-menu .menu{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-menu .menu>li{
    margin-right: 41px;
    position: relative;
}
.main-menu .menu>li:last-child{
    margin-right: 0;
}

.main-menu .menu>li>ul{
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 235px;
    background: #fff;
	  z-index:10;
}
.main-menu .menu>li>a{
    padding: 33px 0;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;;
    color: #5C5D5F;
    text-decoration: none;
    font-family: 'Proxima Nova', Arial, sans-serif;
}
.main-menu .menu>li>a:hover{
    color: #1A7EC1;
}

.main-menu .menu>li.current-menu-ancestor>a,
.main-menu .menu>li.current-menu-parent>a,
.main-menu .menu>li.current-menu-item>a{
    color: #1A7EC1;
    font-weight: 700;
    position: relative;
}
.page-id-55 .main-menu .menu>li.current-menu-ancestor>a{
    color: #5C5D5F;
    font-weight: inherit;
}
.page-id-55 .main-menu .menu>li.current-menu-ancestor>a::after{
    display: none;
}
.main-menu .menu>li.current-menu-ancestor>a:after,
.main-menu .menu>li.current-menu-parent>a:after,
.main-menu .menu>li.current-menu-item>a:after{
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    margin-top: 13px;
    left: 50%;
    margin-left: -5px;
    background: url(../svg/header-polygon.svg) no-repeat center center;
    content: '';
}
.main-menu .menu>li>ul>li>a:hover,
.main-menu .menu>li>ul>li>a:hover,
.main-menu .menu>li>ul>li>a:hover{
    color: #1A7EC1;
}
.main-menu .menu>li>ul>li.current-menu-ancestor>a,
.main-menu .menu>li>ul>li.current-menu-parent>a,
.main-menu .menu>li>ul>li.current-menu-item>a{
    color: #1A7EC1;
    font-weight: 700;
}
.main-menu .menu>li>ul>li>a{
    font-size: 15px;
    line-height: 18px;
    color: #5C5D5F;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom:1px solid rgba(92, 93, 95, 0.2);
    font-weight: 400;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.main-menu .menu>li>ul>li:last-child>a{
    border: none;
}

.main-menu .menu>li>ul{
    display: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 180px);
    overflow: auto;
    padding-top: 3px;
}
.main-menu .menu>li>ul::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1A7EC1;
    height: 3px;
}
.main-menu .menu>li:hover>ul{
    display: block;
}
.main-menu .menu>li>ul>li{
    padding: 0 14px;
}
.elementor-widget.elementor-widget-icon-list.list-icon .elementor-icon-list-icon svg{
    width: auto;
}
.menu-btn{
    width: 24px;
    height: 16px;
    position: relative;
    cursor: pointer;
}
.menu-btn:after,
.menu-btn:before,
.menu-line{
    content: '';
    background: #1A7EC1;

    height: 3px;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    right: 0;
}
.menu-line{
    top: 6px;
}

.menu-btn:after{
    width: 70% !important;
    top: 12px;
}
.menu-opened .menu-line{
    opacity: 0;
}
.menu-opened .menu-btn:after,
.menu-opened .menu-btn:before{
    width: 100% !important;
}
.menu-btn:hover:after{
    width: 100%;
}
.menu-opened .menu-btn:after{
    width: 100%;
    transform: rotate(45deg);
    top: 6px;
}
.menu-opened .menu-btn:before{
    width: 100%;
    transform: rotate(-45deg);
    top: 6px;

}
.mobile-menu .menu{
    padding: 12px 0 10px;
    list-style: none;
}
.mobile-menu .menu>li{
    position: relative;
}
.mobile-menu .menu>li.menu-item-has-children>a{
    padding-right: 60px;
}
.mobile-menu .menu>li>a{
    padding: 10px 15px;
    display: block;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    color: #5C5D5F;
    text-decoration: none;
    font-family: 'Proxima Nova', Arial, sans-serif;
}
.mobile-menu .menu>li .angle-down{
    top: 5px;
    right: 2px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: rotate(-90deg);
    opacity: 1;
    position: absolute;
}
.mobile-menu .menu>li.sub-menu-toggled .angle-down{
    transform: rotate(0deg);
}
.mobile-menu .menu>li>ul{
    list-style: none;
    padding: 20px 34px 30px;
    background: rgb(210 226 236 / 30%);
    display: none;
}

.mobile-menu .menu>li>ul>li>a{
    text-decoration: none;
    color: #5C5D5F;
    font-family: 'Proxima Nova', Arial, sans-serif;
    font-weight: 500;
}

.mobile-menu .menu>li>ul>li + li{
    margin-top: 20px;
}

.mobile-menu .menu>li>ul>li{
    font-size: 15px;
    line-height: 18px;
}
.elementor-widget .elementor-icon-list-item a{
    text-decoration: none;
    font-family: 'Proxima Nova', Arial, sans-serif;
}
.elementor-widget .elementor-icon-list-item a span:hover{
    text-decoration: underline;
}
.menu-navigation{
    position: fixed;
    background: #fff;
    width: 100%;
    top: 86px;
    z-index: 100;
    bottom: 0;
    overflow: auto;
}
.menu-navigation>div,
.menu-navigation>div>div,
.menu-navigation>div>div>div{
    min-height: 100%;
}
.menu-navigation>div>div>div>section:last-child{
    margin-top: auto;
}
.menu-navigation>div>div>div{
    flex-direction: column;
}
.admin-bar .menu-navigation{
    top: 133px;
}
.list-with-arrow.elementor-widget .elementor-icon-list-item a{
    position: relative;
    padding-right: 14px;
}
.list-with-arrow.elementor-widget .elementor-icon-list-item a:after{
    content: '';
    width: 6px;
    height: 9px;
    background: url(../svg/right-blue-arrow.svg) no-repeat center center;
    position: absolute;
    top: 4px;
    right: 2px;
}

.list-with-arrow.elementor-widget .elementor-icon-list-item a svg{
    width: auto !important;
    height: auto !important;
}
.mobile-menu .menu li.current-menu-parent>a,
.mobile-menu .menu li.current-menu-item>a,
.mobile-menu .menu li.current-menu-parent>a{
    color: #1A7EC1;
    font-weight: 700;   
}

.sub-menu-toggled>a{
    color: #1A7EC1 !important;
    font-weight: 700 !important; 
}
.footer-menu nav ul li:not(:first-child){
    padding-left: 20px;
}

.footer-menu nav ul li a:hover{
    text-decoration: underline;
}
.wpb-accordions .elementor-accordion-item{
    border-bottom: 1px solid rgba(0,0,0,0.15) !important;
}

.wpb-accordions .elementor-accordion-item .elementor-accordion-icon{
    padding-top: 5px;
}

.menu-tab-bar .elementor-widget-container nav{
    overflow-x: scroll;
}

.menu-tab-bar .elementor-widget-container .elementor-nav-menu{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.menu-tab-bar .elementor-widget-container .elementor-nav-menu:after{
    display: none;
}

.menu-tab-bar .elementor-widget-container .elementor-nav-menu .menu-item{
    text-align: center;
    padding: 10px 0;
}

.menu-tab-bar .elementor-widget-container .elementor-nav-menu .menu-item:after{
    right: -1.5vw;
    position: relative;
}

/* width */
.menu-tab-bar .elementor-widget-container nav::-webkit-scrollbar {
  width: 0;
}

/* Track */
.menu-tab-bar .elementor-widget-container nav::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 transparent;
}
 
/* Handle */
.menu-tab-bar .elementor-widget-container nav::-webkit-scrollbar-thumb {
  background: transparent;
}

.coming-soon-content {
    min-height: calc(100vh - 867px);
}

.external-search-bar .map-search-wrapper{
    box-shadow: 0px 8px 20px rgba(26, 126, 193, 0.1);
    background: #FFFFFF;
    border-radius: 5px;
}

.external-search-bar .map-search-form label {
    color: #5C5D5F;
}

.external-search-bar .search-box input[type="submit"]{
    background-color: #3E8334;
    border: 2px solid #3E8334;
}

.external-search-bar .search-box input[type="submit"]:hover{
    background-color: transparent;
    border: 2px solid #3E8334;
    color: #3E8334;
}

.services-icons .elementor-image-box-title{
    margin-top: 0;
}

.hero-wrp .elementor-column {
    width: 56%;
}
.hero-wrp .elementor-widget-button {
    margin-left: -15px;
}
.hero-wrp .elementor-button{
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}
.hero-wrp .elementor-button:hover{
   color: #002c45;
    border: 2px solid #ffffff;
}
.sub-heading h3 {
    font-size: 28px !important;
    line-height: 36px !important;
    font-weight: 400 !important;
    letter-spacing: -1px;
    font-style: italic !important;
}
.spin-form-wrp .gform_legacy_markup_wrapper .ginput_complex.ginput_container_address .ginput_right{
    width: 100%;
    padding-right: 0px;
}
.spin-form-wrp .gform_legacy_markup_wrapper .ginput_complex.ginput_container_address label{
    display: none !important;
}
.select-region .select{
    max-width: 500px;
}

.select-region .options li{ 
    margin: 0;
    padding: 10px 15px 10px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #5C5D5F;
    text-transform: none;
    cursor: pointer;
}

.select-region .options li:not(.location-result).active {
    background-color: #F6F6F6;
    position: relative;
    cursor: default;
    pointer-events: none;
}

.select-region .options li:hover {
    background-color: #f6f6f6;
}

.select-region select{
    padding: 10px 45px 10px 15px;
    position: relative;
    height: 62px;
    z-index: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    border-radius: 5px !important;
    background-color: #ffffff;
    border: solid 2px #dcecf6 !important;
    box-shadow: none;
    font-size: 18px !important;
    line-height: 26px;
    color: rgba(46, 44, 45, 0.4) !important;
    text-transform: none;
    letter-spacing: 0px;
    transition: all 0.3s;
    align-items: center;
}

body:not(.elementor-editor-active) .spin-location{ 
    display: none; 
}

.icon-list-wrp .icon-list-body .elementor-widget-icon-box {
    width: calc(33.33% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px !important;
    border: 1px solid #D6E1E8;
    border-radius: 5px;
}
.sub-heading {
    letter-spacing: -1px;
}
.get-glimse .elementor-background-overlay{
    width: 50%;
}

.icon-list-wrp .icon-list-body .elementor-icon-box-title {
    margin-top: 0px;
}
.icon-list-wrp p {
    font-size: 16px;
    line-height: 24px;
}
.services-icons .elementor-image-box-wrapper {
    margin-bottom: 30px;
    margin-right: 12px;
}
.icon-list-wrp .icon-list-body .elementor-widget-wrap {
    margin-left: -15px !important;
    margin-right: -15px !important;
    width: calc(100% + 30px);
}

.making-advance-wrp .making-cards-wrp .elementor-widget-image-box {
    width: calc(33.33% - 30px) !important;
    margin-left: 15px;
    margin-right: 15px !important;
    padding: 40px 30px;
    height: auto;
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.making-advance-wrp .making-cards-wrp .elementor-widget-wrap {
    width: calc(100% + 30px);
    margin-left: -15px !important;
    margin-right: -15px !important;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.making-advance-wrp .comprehensive-wrp .elementor-image-box-img {
    padding: 15px;
    border: 2px solid rgb(0, 0, 0, 0.1);
    border-radius: 50%;
}
.making-advance-wrp .comprehensive-wrp .elementor-image-box-img:hover {
    border: 1px solid #007cc2;
}
.making-advance-wrp .comprehensive-wrp .elementor-image-box-title:hover {
    color: #007cc2;
    cursor: pointer;
}
.mbl-mamography .mbl-img1 .elementor-widget-image {
    position: relative;
}
/* .mbl-mamography .mbl-img1 .elementor-widget-image::after {
    position: absolute;
    content: "";
    background-color: rgba(26, 126, 193, 0.25);
    height: 96%;
    top: 35px;
    right: 0px;
    width: 100%;
    max-width: 80%;
    z-index: -1;
    border-radius: 5px;
} */
.shadow-right img{
    box-shadow: 20px 20px 0px #C6DFEF;
    border-radius: 5px;
}
.img-choose-wrp .elementor-widget-wrap {
    flex-wrap: nowrap;
}
.img-slider-wrp1 figure:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 64px;
    background-color: #D6E1E8;
}
.img-slider-wrp1 .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    transition: all 0.3s;
}
.img-slider-wrp1 .swiper-pagination-bullet-active {
    width: 40px !important;
    border-radius: 12px;
    background-color: #1a7ec1 !important;
}
.img-slider-wrp1 .elementor-image-carousel-wrapper {
    padding-bottom: 70px !important;
}
.sponsor-slider-wrp1 .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    transition: all 0.3s;
    background-color: #ccd9e2;
    opacity: 1;
}
.sponsor-slider-wrp1 .swiper-pagination-bullet-active {
    width: 40px !important;
    border-radius: 12px;
    background-color: #1a7ec1 !important;
}
.img-choose-wrp .elementor-column .elementor-widget-wrap {
    width: calc(100% + 10px);
}
.mbl-mamography .mbl-img-left .elementor-widget-image {
    position: relative;
    z-index: 1;
}

.services-icons img {
    min-width: 34px !important;
    max-width: 34px;
    height: auto;
}
.sponsor-slider-wrp1 .swiper-slide {
    text-align: center;
    padding: 10px 20px;
    border: 1px solid #D6E1E8;
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-list-body2 .elementor-widget-icon-box {
    border: none !important;
}
.hero2-location-wrp .elementor-column .elementor-widget-wrap {
    /* width: 50%;
    margin-left: auto; */
}
.hero2-location-wrp .elementor-background-overlay {
    width: 50%;
}
.mk-slider .elementor-image-box-wrapper p {
    font-size: 16px;
    line-height: 24px;
}

.mk-slider .swiper-pagination-bullets {
    position: absolute;
    bottom: -36px;
    text-align: center;
    opacity: 0;
}
.comprehensive-wrp .swiper-pagination-bullets {
    position: absolute;
    bottom: 0px;
    text-align: center;
    opacity: 0;
}
.comprehensive-wrp .elementor-image-box-img {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    display: flex !important;
    justify-content: center;
    margin-left: auto !important;
    margin-right: auto !important;
}

.tech-slider .swiper-pagination-bullets {
    opacity: 0;
}
.tech-slider .swiper-slide-inner img {
    max-width: 100%;
    width: 100%;
    min-height: 351px;
    max-height: 370px;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    border-radius: 5px;
}
/* .tech-slider .swiper-slide:hover{
    width: calc(270px + 60px) !important;
    margin-left: -30px;
    margin-right: 0px !important;
    cursor: pointer;
} */
.tech-slider .swiper-slide figure {
    position: relative;
    cursor: pointer;
}
.tech-slider .swiper-slide figure:hover:after {
    content: "";
    position: absolute;
    top: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0%;
    width: 100%;
    height: 86%;
    background-color: rgba(26, 127, 193, 0.7);
    transition: all 0.3s;
    z-index: 99;
    cursor: pointer;
    border-radius: 5px;
}
.img-slider-wrp1 .swiper-slide {
    margin-left: -1px;
}
.tech-slider .swiper-slide figure:hover:before {
    content: "View Pdf";
    position: absolute;
    transition: all 0.3s;
    background-image: url(../svg/arrow-img.svg);
    background-repeat: no-repeat;
    color: #72c16c;
    background-position: right;
    font-weight: bold;
    font-size: 20px;
    width: 100%;
    max-width: 150px;
    height: 29px;
    top: 40%;
    justify-content: 40%;
    left: 40%;
    transform: translateX(-40%);
    text-align: center;
    border-radius: 5px;
    z-index: 222;
}
.tech-slider .swiper-slide {
    transition: all 0.3s;
}
.tech-slider .swiper-slide-inner figcaption {
    margin-top: 25px;
    text-transform: capitalize;
    text-align: start !important;
}
.mk-slider .swiper-button-prev {
    opacity: 0;
}
.mk-slider .swiper-button-next {
    opacity: 0;
}
.comprehensive-wrp .swiper-button-prev {
    opacity: 0;
}
.comprehensive-wrp .swiper-button-next {
    opacity: 0;
}
.making-cards-wrp.comprehensive-wrp .elementor-widget-image-box {
    width: calc(25% - 30px) !important;
    border-radius: 10px;
}
.sponsor-slider-wrp1 .swiper-pagination {
    position: absolute;
    bottom: -15px;
}
.img-slider-wrp1 .swiper-pagination-bullet{
    background-color: #CCD9E2;
    opacity: 1;
}
 .comprehensive-wrp2 .elementor-widget-call-to-action{
  
}
.shadow-left img{
    box-shadow: -20px 20px 0px #c6dfef !important;
    border-radius: 5px;
}
.comprehensive-wrp2 .elementor-widget-call-to-action .elementor-widget-container{
     width: 100%;
}
.comprehensive-wrp2 .swiper-pagination-bullets{
    position: absolute;
    display: block;
    width: 100%;
    height: 25px;
    text-align: center;
    bottom: -5px;
}
.comprehensive-wrp2 .swiper-pagination-bullet{
    background-color: #CCD9E2;
    opacity: 0;
}
.comprehensive-wrp2 .swiper-wrapper{
    flex-wrap: wrap;
}
.cs-wrapper .cs-pagination{
    position: absolute;
    bottom: 0px;
    text-align: center;
    opacity: 0;
}
.cs-wrapper{
    padding-bottom: 50px;
}
.cs-wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    transition: all 0.3s;
    opacity: 1;
    background-color: #CCD9E2;
    
}
.cs-wrapper .swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 40px;
    height: 12px;
    border-radius: 12px;
    background-color: #1a7ec1 !important;
    
}
.cs-wrapper .cs-box:hover .elementor-cta__title{
  color: #007CC2;
}
.nt-wrapper .nt-box .elementor-cta__button{
    border: none !important;
    text-align: center !important;
}
.nt-box .elementor-cta__content .elementor-cta__image:after{
    border-radius: 5px;
}
.nt-box .elementor-cta__content .elementor-cta__image{
    height: 351px;
}
.nt-box .elementor-cta__content .elementor-cta__image img{
    object-fit: cover;
    height: 100%;
    border-radius: 5px;
    width: 100%;
}
.nt-box span.last:after{
    background-color: #ffffff !important;
}
.nt-slider .nt-pagination{
    position: absolute;
    bottom: 0px;
    text-align: center;
    opacity: 0;
}
.nt-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    transition: all 0.3s;
    opacity: 1;
    background-color: #CCD9E2;
    
}
.nt-slider .swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 40px;
    height: 12px;
    border-radius: 12px;
    background-color: #1a7ec1 !important; 
}
.nt-box .elementor-cta__content .elementor-cta__title{
    text-align: start;
}
.cards-img-wrp .elementor-widget-image{
    margin: 0px -20px -20px;
    width: calc(100% + 40px);
    border-radius: 5px;
}
.cards-img-wrp .elementor-widget-image img{
    width: 100%;
    object-fit: cover;
}
.cards-img-wrp .elementor-widget-wrap {
    overflow: hidden;
}
.cards-img-wrp .elementor-widget-wrap{
    flex-direction: column; 
     justify-content: start;
 }
 .cards-img-wrp .elementor-widget-wrap .elementor-widget-button{
     margin-top: auto;
 }
 .sm-card .elementor-image-box-img > img{
    width: 100%;
    max-width: 100px
}
.sm-card{
    align-items: start !important;
}

 .blog-posts-wrp .elementor-post .elementor-post__title a{
    color: rgb(0, 44, 69);
}
.blog-posts-wrp .elementor-post .elementor-post__title a:hover{
    text-decoration: underline;
}
.blog-posts-wrp .elementor-post .elementor-post__excerpt > p{
       font-size: 16px;
       line-height: 24px;
       color: #5C5D5f;
}
.blog-posts-wrp .elementor-post .elementor-post__text{
    padding: 15px;
}
.blog-posts-wrp .elementor-post{
    background-color: #ffff;
    border-radius: 5px;
}
.blog-posts-wrp .elementor-post:hover{
    box-shadow: 0px 0px 22px rgb(0 0 0 / 20%);
}
.blog-posts-wrp .elementor-post__thumbnail{
    position: relative;
}
/* .blog-posts-wrp .elementor-post__thumbnail:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: url(../img/simonmed-logo.png) center no-repeat;
    background-size: 170px;
    opacity: 1;
    background-color: #ffffff;
    z-index: 0;
    top: 0;
    border: 1px solid #c4c4c4;
} */
.blog-posts-wrp .elementor-post__thumbnail img{
       height: 100%;
    position: absolute;
    z-index: 2;
    object-fit: cover;
    width: 100%;
}
.blog-posts-wrp .elementor-pagination{
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-posts-wrp .elementor-pagination > *{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-posts-wrp .elementor-pagination .page-numbers.current:not(.prev,.next){
    background-color: #ffff;
    border: 1px solid #1A7EC1;
    color: #1A7EC1;
}
.blog-posts-wrp .elementor-pagination .page-numbers:not(.prev,.next){
    background-color: #1A7EC1;
    border: 1px solid #1A7EC1;
    color: #ffff;
}
.blog-posts-wrp .elementor-pagination .page-numbers:not(.prev,.next):hover{
    opacity: 0.7;
}
.blog-posts-wrp .elementor-pagination .page-numbers.next,
.blog-posts-wrp .elementor-pagination .page-numbers.prev{
    color: #1A7EC1;
    font-size: 25px;
}
.blog-posts-wrp .page-numbers.next{
    position: relative;
}
.blog-posts-wrp .page-numbers.next:before{
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    display: flex;
    align-items: center;
    font-size: 27px;
    position: absolute;
    right: 0;
    height: 100%;
    color: #1A7EC1 !important;
}
.blog-posts-wrp .page-numbers.prev{
    position: relative;
}
.blog-posts-wrp .page-numbers.prev:before{
    content: "\f053";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 27px;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #00749a !important;
}
.blog-posts-wrp .page-numbers.prev:hover::before{
    opacity: 0.7;
}
.blog-posts-wrp .page-numbers.next:hover::before{
    opacity: 0.7;
}
.csd-posts .elementor-post__title a:hover{
    text-decoration: underline;
}
.blog-posts-wrp .elementor-post:not(.has-post-thumbnail):before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 65%;
    background: url(../png/simonmed-logo.png) center no-repeat;
    border: 1px solid #c4c4c4;
}


/* ------------------ code for staff and staff single page ------------------ */
.simomned-staff-container {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;

}
.simomned-staff-container .simomned-staff-item {
    width: calc(20% - 30px);
    margin: 0 15px 30px;
	max-width: 270px;
}
.simomned-staff-container .simomned-staff-item .staff-img {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fbfaf9 url("../png/simonmed-logo.png") no-repeat center center;
	background-size: 160px;
    overflow: hidden;
    position: relative;
    display: block;
    padding-bottom: 100%;
}
.simomned-staff-container .simomned-staff-item .staff-img:hover {
	opacity: 0.8;
}
.simomned-staff-container .simomned-staff-item .staff-img img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.simomned-staff-container .simomned-staff-item h4 {
    color: #002c45;
    margin-top: 15px;
    line-height: 1.4;
    margin-bottom: 0;
}
.simomned-staff-container .simomned-staff-item h4 a {
    text-decoration: underline;
}
.simomned-staff-container .simomned-staff-item h4 a:hover {
    text-decoration: none;
    color: #002c45;
}
.simomned-staff-container .simomned-staff-item .staff-designation {
    color: #002c45;
}
.staff-designation-info{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.2;
}


.team-popup-container{
	max-width: 1280px;
	margin: 0 auto;
	width: calc(100% - 40px);
}
.team-headshot img{
	width: 400px;
	max-height: 400px;
	object-fit: cover;
	max-width: 100%;
	object-position: top center;
}
.team-popup-bio{
	padding-top: 22px;
}
.team-popup-bio h5 {
	margin: 0px 0 8px;
	color: #002c45;
}

.team-popup-bio p{
	margin: 0;
}

.team-popup-bio p span{
	display: block;
}

.team-popup-bio p{
	font-size: 12px;
	font-weight: bold;
	line-height: 16px;
	text-transform: uppercase;
	color: #1A7EC1;
	max-width: 332px;
}

.team-bio-discription{
	background: #fff;
	padding: 98px 110px 80px 80px;
	margin:-230px 0 0 360px;
	position: relative;
	z-index: 1;
	background-color: #F0F4F6;
}

.team-bio-discription p{
	margin: 0 0 24px;
}
.team-bio-discription p span{
	font-family: "IBM Plex Sans",Sans-serif !important;
}

.team-bio-discription p:last-child{
	margin-bottom: 0;
}

.team-close{
	width: 40px;
	height: 40px;
	border: solid 1px #1A7EC1;
	position: fixed;
	top: 40px;
	right: 40px;
	cursor: pointer;
	transition: background-color ease-in 0.3s;
	z-index: 10;
	background: #fff;
}

.team-close:after{
	transform: rotate(45deg);
}

.team-close:before{
	transform: rotate(-45deg);
}

.team-close:after,
.team-close:before{
	content: '';
	top: 50%;
	height: 3px;
	width: 28.3px;
	position: absolute;
	background: #1A7EC1;
	margin-top: -1.5px;
	left: 5px;
}


.staff-detail-wrapper .elementor-container .elementor-column:first-child {
    width: 400px;
}

.staff-detail-wrapper .elementor-container .elementor-column:not(:first-child) {
    width: calc(100% - 360px);
}

/* ------------------ code for staff and staff single page ------------------ */


/*--link-section--*/

.lin-sec .elementor-widget-container p a:not(:first-child){
    margin-top: 121px !important;
    display: block;
}


 .fashion-col .elementor-widget-wrap{
    min-height: 200px;
}

.lin-sec .elementor-widget-container p a{
   word-wrap: break-all;
}

.acc-sec h3{
    font-weight: bold !important;
}

.acc-sec .elementor-accordion .elementor-accordion-item
{
    
    border:none;
    border-bottom:1px solid #BFBFBF;
    
}

.acc-sec .elementor-accordion .elementor-tab-title{
    padding: 20px 20px 20px 0;
}

.acc-sec .elementor-accordion .elementor-tab-title a{
    color:#BFBFBF;
    text-decoration: none;

}


/*--form--*/
html body .schedl-form .gform_wrapper form ul.gform_fields li.gfield {
    margin-top: 0 !important;
    border: 0;
    background: none;
    vertical-align: top;
    letter-spacing: -0.14px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
    width: 100%;
}

html body .schedl-form  .gform_wrapper form ul.gform_fields li.gfield {
    flex: 1;
    margin-bottom: 20px !important;
}

html body .schedl-form .gform_wrapper form ul.gform_fields li.gfield input[type="text"] ,
 html body .schedl-form .gform_wrapper form ul.gform_fields li.gfield select
{
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 5px !important;
    background-color: #ffffff;
    border: solid 2px #DDECF6;
    box-shadow: none;
    font-size: 18px !important;
    line-height: 26px !important;
    color: #5C5D5F !important;
    width: 100% !important;
    height: 62px;
    padding: 10px 15px !important;
    transition: all 0.3s;

}

.schedl-form .gform_legacy_markup_wrapper .gform_body {
    width: calc(100% - 210px);
}

html body .schedl-form form{
    display: flex;
}

.schedl-form .gform_legacy_markup_wrapper .ginput_complex.ginput_container_address .ginput_right{
    width:100%;
    padding-right: 0 !important;
	margin-right:0  !important
}

.schedl-form .gform_legacy_markup_wrapper .ginput_complex.ginput_container_address .ginput_right label{
	display: none;
}

.schedl-form .gform_legacy_markup_wrapper ul.gform_fields {
    width: calc(100% + 30px);
    margin: 0 -15px -20px !important;
    display: flex !important;
    flex-wrap: wrap;
}


.schedl-form .gform_wrapper form .gform_footer {
    width: 210px;
    padding: 0 0 0 32px;
    margin: 0;
}


.schedl-form  .elementor-widget-container h5 {
    margin-top: 0;
    margin-bottom: 0;
}

.schedl-form .gform_legacy_markup_wrapper{
        margin-top: 20px;
}


.schedl-form .gform_confirmation_message{
	margin-top:10px
}


.text-box-sec h5{
    margin: 0;
}

 .text-box-sec p {
    margin-bottom: 10px;
}

.dwn-lnk h4{
    color:#444545
}

.bg-img{
    min-height: 500px;
}


.acc-box .elementor-tab-content p{
    margin-bottom: 15px;
}


.acc-box .elementor-tab-content ul{
    margin-bottom: 15px;
}

.menu-tab-bar li a.elementor-item-active{
    font-weight: 600
}




/*---form---*/

.form-wrap form{
	box-sizing: border-box;
	display: block;
}


.form-wrap .col{
	float: left;
	box-sizing: border-box;
	display: block;
}


.form-wrap .col-1\/2, .form-wrap .col-2\/4, .form-wrap .col-3\/6, .form-wrap .col-4\/8, .form-wrap .col-5\/10{
    width: 50%;
}

.form-wrap .col-1\/4, .form-wrap .col-2\/8 {
    width: 25%;
}


.form-wrap .col-3\/4, .form-wrap .col-6\/8 {
    width: 75%;
}


.form-wrap .col-3\/4, .form-wrap .col-6\/8 {
    width: 75%;
}


.form-wrap .col-1\/8 {
    width: 12.5%;
}

.form-wrap .col-1\/3, .form-wrap .col-2\/6, .form-wrap .col-3\/9 {
    width: 33.33333%;
}


.form-wrap .col-3\/5, .form-wrap .col-6\/10 {
    width: 60%;
}

.form-wrap .col-full {
    width: 100%;
}

.form-wrap .col-2\/5, .form-wrap .col-4\/10 {
    width: 40%;
}

.col-2\/3, .form-wrap .col-4\/6, .form-wrap .col-6\/9 {
    width: 66.66666%;
}


.form-wrap .col-2\/5, .form-wrap .col-4\/10 {
    width: 40%;
}


.form-wrap .col-3\/8 {
    width: 37.5%;
}

.form-wrap .col-1\/7 {
    width: 14.28571%;
}

.form-wrap .col-2\/7 {
    width: 28.57142%;
}

.form-wrap .col-1\/5, .form-wrap .col-2\/10 {
    width: 20%;
}

.form-wrap .col-3\/7 {
    width: 42.85714%;
}


.form-wrap .col-3\/7 {
    width: 42.85714%;
}

.form-wrap .form-group {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

.form-wrap .info-spacer {
    margin: 4pt 0;
    -webkit-print-color-adjust: exact;
    padding: 10px 10px;
	width:100%;
}

.form-wrap .info-spacer {
	background: #BEBEBE;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    overflow: auto;
    line-height: 26px;
}



.form-wrap .ui-autocomplete-input, .form-wrap input[type=text], .form-wrap input[type=email],
 .form-wrap input[type=tel], .form-wrap input[type=search], .form-wrap input[type=url], .form-wrap input[type=password], .form-wrap textarea {
    background: 0 0;
    line-height: 40px;
    height: 50px;
    padding-left: 12px;
    color: #FFF;
}


.form-wrap .auth-form input[type=text], .form-wrap .auth-form input[type=email], .form-wrap .auth-form input[type=tel] {
    border-color: transparent;
    border-bottom: 1px solid #242424;
    height: 30px;
    border-radius: 0;
    color: #242424;
    box-shadow: 0 0 0 transparent;
}

.form-wrap {
    font-size: 20px;
    color: #666;
    overflow: hidden;
}

.form-wrap .patient-info-image img {
    max-height: 60px;
}

.form-wrap .patient-info-image {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.form-wrap .input-cont label {
    float: left;
    line-height: 40px;
}

.form-wrap .input-cont label {
    float: left;
    line-height: 40px;
}

.form-wrap .input-cont {
    position: relative;
}


.form-wrap .radio-buttons {
    line-height: 2.5rem;
    text-align: right;
}


.form-wrap .input-cont label span {
    font-size: 15px;
    display: inline;
}


.form-wrap .radio-cont span {
    margin-bottom: -0.8rem;
    display: inline-block;
    padding: 0;
}

.form-wrap .input-cont span > input {
    width: 100%;
}


.form-wrap .auth-form .input-cont span.selection span[aria-labelledby=select2-shipping-state-container] {
    width: 60px;
}

.form-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
	padding: 0 8px;
}

/* .form-wrap .select2-hidden-accessible {
    visibility: hidden;
} */

.form-wrap .select2-hidden-accessible {
	-webkit-appearance: revert;
    padding: 5px;
    flex: 1;
    display: inline-block;
    height: auto;
}


.form-wrap .radio-cont input{
	-webkit-appearance: revert;
	margin: 0 5px;
}


.form-wrap .selc-text .input-cont {
	display: flex;
}

.form-wrap .selc-text label{
	padding-right: 5px;
}

.form-wrap .selc-text  .styledSelect{
    display: none
}


.form-wrap .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
	height: 28px;
}

.form-wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.form-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}

.form-wrap .input-cont span {
    display: block;
    overflow: hidden;
    padding-right: 5px;
    padding-left: 10px;
}


.form-wrap .input-cont .radio-label {
    float: none;
}

.form-wrap .call-to-action{
	margin-top: 20px;
	width: auto;
}

.form-wrap  .underlined {
    text-decoration: underline;
}

.form-wrap  h4.disc-txt{
    color:#000;
}

.form-wrap .itl-txt{
	font-style: italic;
}


/*--form3--*/
.slct-boxes{
	display: flex !important;
	margin: 10px 0 0;
}

.form-wrap .input-cont.input-cont-soc span input {
    flex:1;
	margin: 0 5px;
    text-align: center;
}

.form-wrap  .hidden {
    border: 0;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    width: 1px;
}

.form-wrap  .hidden, .medchat-hidden {
    clip: rect(1px,1px,1px,1px);
    overflow: hidden;
}

.form-wrap hr { 
	border-width: 0;
    background: #443636;
    display: block;
    height: 1px;
	margin: 40px 0;
}

.ful-fld{
	clear: both;
}

.form-wrap .auth-form .full-input input, .form-wrap .auth-form .full-input label {
    display: block;
    width: 100%;
}

.form-wrap .patient-signing {
    margin: 30px 10px 20px;
    padding: 5px 0;
    border-top: 1px solid #242424;
}

.form-wrap .para{
	padding: 10px 0;
}

.form-wrap .padded-cont {
    padding: 10px 0;
    overflow: auto;
}

/*--form-3--*/

.form-wrap .parental-consent-form .page-part {
    margin-top: calc(10px + 0.5vw);
}


.form-wrap  .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.form-wrap .page-part .form-group.inline-field{
	display: inline-block;
	width: calc(200px + 12vw);
}


.form-wrap .has-display-below .display-below {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    position: absolute;
    top: 100%;
}

.form-wrap .input-cont span.full-width-field  input {
    width: 100%;
}

.form-wrap p{
	margin: 5px 0 0 ;
}

.form-wrap .left-field .form-group.inline-field {
    width: 60%;
}

.form-wrap  .align-left {
    text-align: left!important;
    text-indent: 20px;
}

.form-wrap .padd-botm{
	padding-bottom: 50px;
}

.form-wrap .checkboxList .checkbox input{
	-webkit-appearance:revert;
 }

 .form-wrap  .form-wrap .input-cont.input-cont-soc span input.radio-cont {
    display: flex;
    align-items: center;
}

.form-wrap .print-footer {
    margin: 35px 0 0
}

.form-wrap .print-footer  .txt-right{
    text-align: right
}

.form-wrap .print-footer .col{
    padding: 5px 0
}

.form-wrap .btn-wrap{
	text-align: left;
    margin: 20px 0 0;
    clear: both;
}


.form-wrap .print-footer a{
    color: #1A7EC1;
    text-decoration: underline;
    font-weight: 600;
}


.form-wrap  .radio-cont {
    display: flex;
    align-items: center;
    padding-left:10px
}

.form-wrap .input-cont input[type="date"]{
    border:none;
    border-bottom: 1px solid #000;
    border-radius: 0
}

.para-edi h2{
    margin:0
}
.para-edi p:first-of-type{
    margin:40px 0 0;
}

.para-edi p:not(:first-of-type){
    margin:20px 0 0;
}

.para-edi h3{
    margin: 40px 0 0
}

.icon-list-wrp.vegas-icon .icon-list-body .elementor-widget-wrap {
    margin: 0 !important;
    width: 100%;
}

.mom-links h4{
    margin:20px 0 0 ;
}

.icon-list-wrp .mamo-icons .elementor-widget-icon-box{
    width:calc(50% - 30px);
}


.mamm-col-right{
    max-width: 500px;
    width:100% !important;
}

.mamm-col-left {
    width:calc(100% - 500px) !important;
}

.mamm-forms .elementor-container{
    flex-direction: column;
}

.mamm-forms .elementor-container .elementor-column{
	width: 100% !important;
}

.mam-form .search-box{
    display: block;
}

.mam-form .search-box .select, .mam-form .search-box #location-input, .mam-form .search-box #location-miles{
    margin: 15px 0  0;
    width:100%;
    max-width: 100%;
}

.mam-form .search-box input[type="submit"]{
    margin-top:20px;
    width:100%;
}

.mam-form .search-box input[type="submit"]:focus{
	width:100%;
}

.mamm-forms .external-search-bar .map-search-wrapper{
    box-shadow:none;
    background: #E5EAED;
}

.hero-text {
    padding: 60px 15px 40px;
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 7%);
    background-color: #fffcfc;
    text-align: center;
    position: relative;
}
.hero-text-container {
    max-width: 830px;
    margin: 0 auto;
    width: 100%;
}
.hero-text h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    margin: 0 0 21px;
}
.hero-text p {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}
.logo-wrapper {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 29px auto 0;
    width: 100%;
    max-width: 1020px;
    justify-content: center;
    flex-wrap: wrap;
}
.logo-wrapper li {
    padding: 0 20px;
    width: 16.666667%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-wrapper a {
    display: inline-block;
    transition: all 0.1s ease-in-out;
}
.logo-wrapper li a img {
    width: 130px;
    max-width: 100%;
}
.logo-wrapper a:hover {
    opacity: .8;
}
.map-wrapper {
    max-width: 100%;
    margin: 0 auto 80px;
}
.map-wrapper:after{
    content: '';
    display: table;
    clear: both;
}
.map-right-section {
    width: 54.6%;
    display: flex;
    justify-content: flex-end;
    padding-top: 30px;
    padding-right: 11px;
    padding-left: 15px;
    float: left;
    max-width: 815px;
}
.map-inner {
    width: 100%;
}



.map-search-wrapper{
    background: #1A7EC1;
    padding: 30px 30px 26px;
    margin-bottom: 0;
}
.map-search-form{
    max-width: 1200px;
    margin: 0 auto;
}

.map-search-form label{
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    /* identical to box height, or 150% */
    text-transform: capitalize;
    color: #FFFFFF;
}
.search-box{
    display: flex;
    justify-content: space-between;
}

.search-box input:not([type="submit"]),
.search-box select{
    background: #FFFFFF;
/* Input Field - Normal */

border: 2px solid #DDECF6;
box-sizing: border-box;
border-radius: 5px;
    height: 58px;
    font-weight: 500;
font-size: 18px;
line-height: 100%;
    color: #2E2C2D;
    padding: 16px;
}
/*.search-box .select, .search-box #location-input, .procedures-container{
     width: 320px;
    max-width: calc(50% - 180px); 
    width: calc(33% - 80px);
}*/

.search-box .select, 
.search-box #location-input, 
.procedures-container, 
.state-container{
    width: calc(33% - 80px);
}

.procedures-container .select,
.state-container .select {
	width: 100%;
    max-width: 100%;
}
.search-box .select select,
.search-box .select #location-procedure{
    width: 100%;
    max-width: 100%;
}
.search-box #location-miles{
    width: 110px;
}

.search-box input[type="submit"], 
.search-box input[type="submit"]:focus{
    width: 210px;
    background: transparent;
    border-color: #fff;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 100%;
    height: 58px;
}

.search-box input[type="submit"]:hover{
    background: #5C5D5F;
    border-color: #5C5D5F;
    color: #fff;
    
}

.search-box input:not([type="submit"])::placeholder{
    color: #2E2C2D !important; 
opacity: 0.4 !important;
}

.map-search-form .search-box>div {
    width: auto;
    flex: 1;
    padding: 0 15px;
}
#location-input {
    width: 100% !important;
}
.search-box {
    margin-left: -15px;
}

.search-input-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 700;
    /* text-decoration: underline; */
}

.extra-hours {
	color: #007CC2;
    font-weight: 700;
    font-size: 16px;
}

.search-input-container a {
	text-decoration: underline !important;
}

.search-input-container a,
.search-input-container a:hover {
	color: #fff !important;
}

.home .search-input-container a,
.home .search-input-container a:hover {
	color: #5C5D5F !important;
}

.search-input-container a:hover {
	text-decoration: none !important;
}

.search-box .styledSelect{
    height: 58px;
}
.search-box .select{
    position: relative;
}
.map-left-section {
    width: calc(100% - 815px);
    margin-top: 0;
    min-height: 840px;
    overflow: hidden;
    float: right;
    position: relative;
}
.search-location-box{
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(26, 126, 193, 0.1);
    border-radius: 5px;
    padding: 32px 20px 30px;
    overflow: hidden;
    margin-bottom: 20px;
}
.search-box-right{
    width: 46.7%;
    float: right;
    padding-left: 18px;
    padding-top: 5px;
    border-left: 1px solid #D6E1E8;
    margin-left: -1px;
}
.search-box-left{
    width: 53.3%;
    float: left;
    padding-right: 10px;
}
.search-box-left:first-child{
    border-right: 1px solid #D6E1E8;
}
.search-box-left ~ 
.search-box-left{
    clear: both;
    padding-top: 20px;
}
.search-box-left h3{
    font-family: Adobe Text Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    color: #002C45;
    margin: 0 0 20px;
}

.search-box-left address{
    font-style: normal;
    font-family: Myriad Pro;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
    color: #5C5D5F;
    padding-left: 28px;
    background: url(../svg/icon-location.svg) no-repeat 0 0px;
}
.search-box-left .direction{
    display: none;
}

.search-box-left h3 a{
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.search-box-left h3 a:hover{
    text-decoration: underline;
}
.search-box-left h3 span{
    display: none;
}
.info-highlight{
    font-size: 16px;
    line-height: 22px;
/* identical to box height, or 137% */
    color: #1A7EC1;
    font-weight: normal;
    display: block;
    margin-bottom: 10px;
    padding-left: 28px;
}
.info-highlight.fax{
    background: url(../svg/icon-fax.svg) no-repeat 0 4px;
}
.info-highlight.tel{
    background: url(../svg/icon-phone.svg) no-repeat 0 4px;
}
.info-highlight.open-now{
    background: url(../svg/icon-time.svg) no-repeat 0 4px;
}
.info-highlight.checkin{
    background: url(../svg/icon-checkin.svg) no-repeat 0 4px;
    /* margin: 0; */
}
.info-highlight.walkin-list {
    background: url(../svg/icon-walk-in.svg) no-repeat 0 4px;
    margin: 0;
}
.info-highlight>*{
    font-weight: normal;
    
}
.info-highlight a{
    text-decoration: none;
}
.info-highlight a:hover{
    text-decoration: underline;
}
strong.info-highlight span{
    color: #72C16C;
}
.search-actions button{
    padding: 10px 10px !important;
    font-weight: 600;
font-size: 18px !important;
line-height: 100% !important;
    border: 0 !important;
    width: 180px;
    background: #72C16C !important;
}
.search-actions button:hover{
    background: #1A7EC1 !important;
    color: #fff !important;
}
.search-box-right h4{
    text-align: right;
    font-weight: bold;
font-size: 16px;
line-height: 22px;
color: #1A7EC1;
    
    font-family: Myriad Pro;
    margin: -30px 0 0;
}
.test-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.test-list li{
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
/* identical to box height, or 137% */
    color: #5C5D5F;
    margin-bottom: 15px;
}
.test-list li .procedure-timing{
    color: #1A7EC1;
    font-size: 13px;
}
.test-list .test-icon{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 1px;
    left: 0;
    overflow: hidden;
}

.test-list .test-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.schedule-popup{
    margin-top: 10px;
    font-size: 16px;
    line-height: 22px;
}
body .gmnoprint button[title="Keyboard shortcuts"]:not(.gm-control-active):not(.mejs-button button){
    font-size: 10px !important;
    background: #72C16C !important;
    color: #fff !important;
    padding:0 10px !important;
}
body .gmnoprint button[title="Keyboard shortcuts"]:not(.gm-control-active):not(.mejs-button button):after{
    display: none;
}
body .gmnoprint button[title="Keyboard shortcuts"]:not(.gm-control-active):not(.mejs-button button):hover{
    background: #1A7EC1 !important;
}
.result-post{
    height: 900px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.map-section{
    min-height: 930px;
}
.details-wrapper{
    padding: 30px 0 64px;
}
.details-wrapper .wpb-container {
    display: flex;
    align-items: flex-start;
    max-width: 1210px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    width: 100%;
}
.details-section{
    width: 770px;
    max-width: calc(100% - 400px);
}
.details-sidebar{
    width: 370px;
    margin-left: auto;
}
.address_time{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.address-left ul{
    padding: 0;
    list-style: none;
    padding: 0;
}

.address-left ul li{
    padding-left: 30px;
    margin-bottom: 15px;
}
.address-left ul li.address-list{
    background: url(../svg/icon-location.svg) no-repeat 0px 5px;
}
.address-left ul li.address-list strong{
font-size: 18px;
line-height: 28px;
    display: block;
    font-weight: 600;
}

.address-left ul li a{
    color: inherit;
    font-weight: normal;
    text-decoration: none;
    color: #72C16C;
}
.close-now{
    color: #f00;
}
.close-now.opening{
    color: #007CC2 !important;
}
.address-left ul li {
    
}

.address-left ul li.time-list strong,
.address-left ul li.tel-list strong,
.address-left ul li.fax-list strong,
.address-left ul li.walkin-list strong {
    font-weight: 400;
    color: #007CC2;
}
.address-left ul li.tel-list {
    background: url(../svg/icon-phone.svg) no-repeat 0px 5px;
}
.address-left ul li.fax-list {
    background: url(../svg/icon-fax.svg) no-repeat 0px 5px;
}
.address-left ul li.time-list{
    color: #72C16C;
    background: url(../svg/icon-time.svg) no-repeat 0px 5px;
}
.address-left ul li.walkin-list{
    color: #72C16C;
    background: url(../svg/icon-walk-in.svg) no-repeat 0px 5px;
}
.address-left{
    width: 350px;
}
.time-list-wrapper{
    width: 331px;
    margin-left: auto;
    margin-top: -5px;
    margin-right: 56px;
}
.day-list{
    padding: 0;
    margin: 0 -13px;
}
.day-list li{
    list-style: none;
    font-size: 18px;
    line-height: 28px;
/* identical to box height, or 156% */


/* Black / 500 */
    color: #5C5D5F;
    display: flex;
    padding: 2px 13px;
    margin-bottom: 14px;
}
.day-list li.opened{
    font-weight: 700;
   background: #ECF4FD;
    color: #007CC2;
    border-radius: 5px;
    
}
.day-list li span + span{
    margin-left: auto;
}

.day-list li.closed span + span{
    color: #007CC2;
    font-weight: 700;
}
.details-section .details-sidebar{
    display: none;
}
.service-section{
    border-top: 1px solid #c4c4c480;
    padding-top: 30px;
    padding-bottom: 16px;
}

.service-section h3{
    line-height: 34px;
    margin: 0 0 20px;
}
.procedures-list{
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 70px;
    padding-bottom: 0;
}

.procedures-list>li{
    width: 100%;
    display: flex;
    padding-left: 36px;
    margin-bottom: 15px;
    position: relative;
}
.procedures-list>li .procedire-img{
    position: absolute;
    top: 4px;
    width: 20px;
    height: 20px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.procedures-list>li .procedire-img img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.procedures-list>li span.procedire-time{
    margin-left: auto;
}
.gallery-section h2{
    margin-bottom: 29px;
}
.service-gallery-section{
    display: flex;
    margin: 0 -15px;
}
.service-gallery-section .gallery-container{
    width: 33.3333%;
    padding: 0 15px;
}

.service-gallery-section img{
    height: 158px;
    object-fit: cover;
    width: 100%;
}

.service-gallery-section .gallery-container a{
display: block;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.service-gallery-section .gallery-container:last-child a:after {
    content: '';
    position: absolute;
    top: 0;
    background: rgba(0,0,0,.6);
    left: 0;
    right: 0;
    bottom: 0;
}
.gallery-view-text {
    background: #72C16C;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    border-radius: 5px;
    font-weight: 800;
    font-size: 16px;
    line-height: 25px;
    color: #FFF;
    padding: 10px 28px;
    height: auto;
    width: auto;
    z-index: 1;
    white-space: nowrap;
}
.details-location-wrapper {
    display: flex;
    justify-content: space-between;
}

html body .details-location-wrapper>*.directions-btn, html body .details-location-wrapper>button:not(.gm-control-active):not(.mejs-button button) {
    width: calc(50% - 10px);
    padding: 8px 8px 8px !important;
    font-size: 16px !important;
    background-color: #72C16C !important;
    border-color: #72C16C !important;
}
 
html body .location-actions>*.directions-btn, html body .location-actions>button:not(.gm-control-active):not(.mejs-button button) {
    width: calc(50% - 10px);
    padding: 8px 8px 8px !important;
    font-size: 16px !important;
    background-color: #72C16C !important;
    color: #fff;
    border-color: #72C16C !important;
}
html body .location-actions>*.directions-btn:hover, html body .location-actions>button:not(.gm-control-active):not(.mejs-button button):hover{
    background-color: #fff !important;
    border-color: #72C16C !important;
    color: #72C16C !important;
}
.location-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.iScrollHorizontalScrollbar {
	position: absolute;
	z-index: 9999;
	height: 16px;
	left: 2px;
	right: 2px;
	bottom: 2px;
    overflow: hidden;
    border-radius: 6.5px;
}

.iScrollHorizontalScrollbar.iScrollBothScrollbars {
	right: 18px;
}

.iScrollVerticalScrollbar {
	position: absolute;
	z-index: 9999;
	width: 5px !important;
	bottom: 2px;
	top: 2px;
	right: 2px;
	overflow: hidden;
	border-radius: 3px;
	background: #F2F2F2;
	border-radius: 6.5px;
	opacity: 1 !important;
}

.iScrollVerticalScrollbar.iScrollBothScrollbars {
	bottom: 18px;
}


.iScrollVerticalScrollbar .iScrollIndicator {
    width: 100%;
    background: #007CC2 !important;
    border-radius: 6.5px;
}
.search-results-container {
    padding: 0 15px;
}

.result-post-wrapper.list-loading .wrapper {
	opacity: 1;
	z-index:1 ;
	visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
  }
  .list-loading .wrapper-cell {
	display: -webkit-box;
	display: flex;
	margin-bottom: 34px;
	width: 100%;
  }
  .list-loading .animated-background,
  .list-loading .image,
  .list-loading .text-line {
	-webkit-animation-duration: 1.25s;
	animation-duration: 1.25s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: placehoderAnim;
	animation-name: placehoderAnim;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	background: #F6F6F6;
	background: -webkit-gradient(linear, left top, right top, color-stop(8%, #F6F6F6), color-stop(18%, #F0F0F0), color-stop(33%, #F6F6F6));
	background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
	background-size: 800px 104px;
	height: 96px;
	position: relative;
  }
  .list-loading .image {
	height: 52px;
	width: 60px;
	margin: 4px 0;
  }
  .list-loading .text {
	margin-left: 20px;
	width: 100%;
  }
  .list-loading .text-line {
	height: 10px;
	width: 100%;
	margin: 4px 0;
  }
  @-webkit-keyframes placehoderAnim {
	0% {
	  background-position: -100% 0;
	}
	100% {
	  background-position: 100% 0;
	}
  }
  @keyframes placehoderAnim {
	0% {
	  background-position: -468px 0;
	}
	100% {
	  background-position: 468px 0;
	}
  }
  .hero-location-block{
    min-height: 300px;
    display: flex;
}
.left-hero-location{
    width: 50%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}
.right-hero-location{
    align-self: center;
    width: 660px;
    padding: 30px 60px;
    max-width: 50%;
}

.right-hero-location h1{
    margin: 0 0 20px;
    color: #002238;
}

.search-results-container .active-x {
    border: 1px solid #002238;
}

.results-msg {
    padding-bottom: 20px;
    color: rgb(255,0,0);
}

#simmonmed-map-popups>div{
    display: none;
}
span.start-time, span.end-time, .procedire-time {
    text-transform: capitalize;
}
#simmonmed-map-popups>div.open{
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #1A7EC1;
    width: 400px;
    height: 200px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: calc(100% - 30px);
    margin: 0;
}
#simmonmed-map-popups a{
        padding: 10px 10px !important;
    font-weight: 600;
    font-size: 18px !important;
    line-height: 100% !important;
    border: 0 !important;
    width: 180px;
    background: #72C16C !important;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
}
#simmonmed-map-popups a:hover{
    background: #39a830 !important ;
}
#simmonmed-map-popups a + a{
    margin-top: 10px;
}
#simmonmed-map-popups>div.open ~ .popup-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    display: block !important;
    z-index: 999;
}
.map-popup-content address {
	padding-top: 5px;
}
.schedule-popup-close{
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}
.schedule-popup-close:hover{
    opacity: .8;
}
.schedule-popup-close:after{
     display: inline-block;
  content: "\00d7"; /* This will render the 'X' */
}
.why-choose-section{
    text-align: center;
    padding: 80px 15px 80px;
    background: #F0F4F6;
}
.why-choose-container{
    width: 900px;
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
}
.choose-icon{
    margin-bottom: 15px;
}
.why-choose-container h2{
    margin:0 0 20px;
    color: #002C45;
}
.why-choose-inner{
    margin-bottom: 40px;
}
.why-choose-logo>*{
    display: inline-block;
    margin: 0 4px;
}
.hero-location-single{
    background: #F0F4F6;
    padding: 80px 30px;
}
.hero-location-text{
    max-width: 1170px;
    margin: 0 auto;
}
.procedures-heading h5{
    font-size: 20px;
    line-height: 22px;
    color: #002238;
    margin: 0 0 3px;
    font-family: 'Adobe Text Pro', Arial, Helvetica, sans-serif;
    letter-spacing: -0.7px;
}
.procedures-heading p{
    font-size: 14px;
    line-height: 17px;
    font-weight: 700;
    font-family: 'Proxima Nova', Arial, Helvetica, sans-serif;
    color: #5C5D5F;
    display: block;
    margin: 0 0 15px;
}
.elementor-kit-7 a.back-link,
a.back-link{
    font-size: 16px;
    line-height: 19px;
    color: #5C5D5F;
    display: inline-block;
    vertical-align: top;
    padding-left: 28px;
    background: url(../svg/back-icon.svg) no-repeat 5px center;
    text-decoration: none;
}
.elementor-kit-7 a.back-link:hover,
a.back-link:hover{
    text-decoration: underline;
}
.hero-location-text .back-link + h1{
    margin-top: 11px;
    color: #002238;
}
.logo-section>span{
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    color: #1A7EC1;
    display: block;
    margin-bottom: 41px;
	text-transform: uppercase;
}
.working-hour h3 {
    margin-bottom: 16px;
    color: #002238;
    margin: 0 0 20px;
}


.service-section h2 {
    margin: 0 0 20px;
    color: #002238;
}

ul.procedures-list {
    padding-right: 55px;
}
.location-state-name{
    text-transform: capitalize;
    
    /* Primary Blue/900 */
    
    color: #002238;
    display: block;
    margin: 0;
}
.gallery-lightbox{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 75, 103 , 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
}
.swiper-button-next-2:focus, .swiper-button-next-3:focus,
.swiper-button-prev-2:focus, .swiper-button-prev-3:focus{
    outline: none;
}
.open-popup .gallery-lightbox{
    visibility: visible;
    opacity: 1;
}
.open-popup,
.open-popup body{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.container-968{
max-width: 830px;
width: 100%;
background: #fff;
margin: auto;
position: relative;
border-radius: 10px;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.07);
}
.gallery-thumbs .swiper-slide{
width: 33.3333%;
padding: 0 20px;
}
.swiper-slide-container{
    border-radius: 5px;
    overflow: hidden;
}
.gallery-thumbs .swiper-slide .swiper-slide-container{
    border: solid 2px transparent;
}
.gallery-thumbs .swiper-slide.swiper-slide-active .swiper-slide-container{
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
    border-color: #008c95;
    border-radius: 5px;
    overflow: hidden;
}
.gallery-thumbs .swiper-slide img{
width: 100%;
display: block;
}
.gallery-top-main{
padding:31px 55px;
text-align: center;
position: relative;
}
.gallery-thumbs-wrapper{
padding:30px 55px;
text-align: center;
position: relative;
}
.gallery-thumbs .swiper-slide{
    padding-top: 5px;
    padding-bottom: 5px;
}
.gallery-thumbs .swiper-slide .swiper-slide-container{
    position: relative;
    padding-bottom: 73.01%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}
.gallery-thumbs .swiper-slide .swiper-slide-container img{
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    min-height: 100%;
    min-width: 100%;
    object-fit: contain;
    transform: translate(-50%,-50%);
}
.gallery-close{
    position: absolute;
top: 0;
right: 0;
padding: 30px;
font-size: 16px;
color: #294b67;
cursor: pointer;
line-height: 1;
cursor: pointer;
z-index: 1;
}
.gallery-top .swiper-slide-container, .gallery-top-2 .owl-item>div{
    position: relative;
    padding-bottom: 52.085%;
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    /* background-color: #ccc; */
}
.gallery-top .swiper-slide-container img, .gallery-top-2 .owl-item>div img{
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    
}
.gallery-close .fal{
font-weight: 400;
}
.gallery-thumbs-2 .owl-item{
    padding: 5px 20px;
}
.gallery-thumbs-2 .swiper-slide-container{
        position: relative;
    padding-bottom: 73.01%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
        border: solid 2px transparent;
}
.gallery-thumbs-2 .synced .swiper-slide-container{
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
    border-color: #008c95;
    border-radius: 5px;
    overflow: hidden;
}
.gallery-thumbs-2 .swiper-slide-container img{
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transform: translate(-50%,-50%);
    object-fit: contain !important;
    width: auto;
    height: auto;
}
.swiper-button-next-2, .swiper-button-next-3, .owl-theme .owl-controls .owl-buttons div.owl-next{
    position: absolute;
    top: 50%;
    right: 30px;
    margin: 0;
    margin-top: -20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 10;
    opacity: 1;
    background: none;
    padding: 0;
}
.owl-theme .owl-controls .owl-buttons div.owl-next{
    right: -24px;
    z-index: 10000;
    margin-top: -14px;
}
.swiper-button-next-2:hover, .swiper-button-next-3:hover,  .owl-theme .owl-controls .owl-buttons div.owl-next:hover{
    opacity: .7;
}
.swiper-button-prev-2, .swiper-button-prev-3,  .owl-theme .owl-controls .owl-buttons div.owl-prev{
    position: absolute;
    top: 50%;
    left: 30px;
    margin: 0;
    margin-top: -20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 10;
    opacity: 1;
    background: none;
    padding: 0;
}
.owl-theme .owl-controls .owl-buttons div.owl-prev{
    left: -24px;
    z-index: 10000;
    margin-top: -14px;
}
.swiper-button-prev-2:hover, .swiper-button-prev-3:hover, .owl-theme .owl-controls .owl-buttons div.owl-prev:hover{
    opacity: .7;
}
.swiper-button-prev-3 img,
.swiper-button-next-3 img,
.gallery-thumbs-2 .owl-controls .owl-buttons div.owl-prev img,
.gallery-thumbs-2 .owl-controls .owl-buttons div.owl-next img{
    width: 19px;
}
.cs-wrapper > div{
    display: flex !important;
    width: calc(100% + 30px) !important;
    margin: -15px !important;
    justify-content: center;
}

.cs-slider{
    overflow: hidden;
}

.elementor-element.cs-box{
    width: calc(25% - 30px);
    margin: 15px;
    background: rgba(240, 244, 246, 0.7);
    border-radius: 10px;
    margin-bottom: 15px !important;
    overflow: hidden;
    min-height: 229px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: 0.3s all
}

.cs-box .elementor-icon{
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 50px;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}

.cs-box .elementor-icon svg{
    max-width: 100%;
    max-height: 100%
}

.cs-box:hover .elementor-cta__title{
    color: #007CC2;
}

.cs-box:hover .elementor-icon{
    border-color: #007CC2 !important;
}

/* .cs-box:hover{
    box-shadow: 0px 10px 30px rgba(26, 126, 193, 0.1);
} */


.nt-box .elementor-cta__content{
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    position: relative;
}

.nt-box .elementor-cta__content .elementor-cta__image{
    position: relative;
}

.schedule-popup{
    margin: 0;
    position: fixed;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding:  30px 15px;
    transition: 0.3s all;
    opacity: 0;
    visibility: hidden;
	padding: 191px 15px 40px !important ;
	overflow: auto;
	 background: rgba(0,0,0,0.74);
}

.schedule-popup.active{
    opacity: 1;
    visibility: visible;
}

.schedule-popup .close-btn:after{
    content: "\00d7";
    display: block;
    font-size: 26px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #000;
}

.schedule-popup .overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: transparent;
    cursor: pointer;
    top: 0;
    left: 0;
}


html body .schedule-popup .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description{
    font-size: 16px;
    font-weight: 500;
}

html body .schedule-popup .gform_wrapper form ul.gform_fields li.gfield textarea{
    height: 100px;
    font-size: 16px;
}

html body .schedule-popup .gform_wrapper form ul.gform_fields li.gfield input[type="text"],
html body .schedule-popup .gform_wrapper form ul.gform_fields li.gfield input[type="email"],
html body .schedule-popup .gform_wrapper form ul.gform_fields li.gfield input[type="number"],
html body .schedule-popup .gform_wrapper form ul.gform_fields li.gfield input[type="tel"],
html body .schedule-popup .gform_wrapper form ul.gform_fields li.gfield input[type="search"]{
    font-size: 16px !important;
    height: 45px;
}

.schedule-popup-content{
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    color: #ffffff;
    max-width: 400px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 5px;
    min-height: 250px;
    width: 100%;
}
.schedule-popup #gform_confirmation_message_6{
    color: #000;
    text-align: center;
    font-size: 18px;
    
}
.schedule-popup-content .btns-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.schedule-popup-content .btns-wrapper > *:not(:first-child){
    margin-top: 15px;
}

body.body-overflow-hidden{
    overflow: hidden !important;
}

.schedule-popup-content .btns-wrapper a{
    padding: 20px 30px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    border: 0;
    width: 100%;
    max-width: 330px;
    background: #72C16C;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-transform: capitalize;
    margin: 0 auto;
}

.schedule-popup-content .btns-wrapper a:hover {
    background: #39a830 !important;
}

.schedule-popup-content .step1,
.schedule-popup-content .step2,
.schedule-popup-content .step3{
    display: none
}

.schedule-popup-content .step1.active,
.schedule-popup-content .step2.active,
.schedule-popup-content .step3.active{
    display: flex;
}

body .schedule-popup-content .physicians-only{
    background-color: transparent;
    color: #197dc0; 
    width: auto;
    max-width: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    text-decoration: underline;
}

body .schedule-popup-content .physicians-only:hover{
    background-color: transparent !important;
    color: #197dc0; 
    text-decoration: none;
}

.nt-box .elementor-cta__content .elementor-cta__image:after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(26, 126, 193, 0.8), rgba(26, 126, 193, 0.8));
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 0;
    transition: 0.3s all;
}

.nt-box:hover .elementor-cta__content .elementor-cta__image:after{
    opacity: 1;
    visibility: visible;
}

.nt-box .elementor-cta__content .elementor-cta__button-wrapper{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    opacity: 0;
    visibility: hidden;
}

.nt-box .elementor-cta__content .elementor-cta__button-wrapper .elementor-cta__button{
    background-color: transparent !important;
    padding: 0 !important;
    color: #ffffff !important;
}

.nt-box:hover .elementor-cta__content .elementor-cta__button-wrapper{
    opacity: 1;
    visibility: visible;
}

.nt-slider{
    overflow: hidden;
}
.schedule-popup-content .gform_legacy_markup_wrapper h3.gform_title{
    font-family: 'Adobe Text Pro', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    color: #002C45;
    margin: 0 0 20px;
}
.nt-slider > div{
    flex-wrap: nowrap
}

#patient-info-form input[type="date"]{
    font-size: 16px !important;
}

#patient-info-form label span{
    font-size: 18px !important
}

#patient-info-form input[type=text],
#patient-info-form input[type=email],
#patient-info-form input[type=tel]{
    font-size: 18px !important
}

body.search:not([class*="elementor-page-"]) .site-main{
    max-width: 100%;
    width: 100%;
}
.search-result-content-wrapper{
    max-width: 1200px;
    padding: 60px 15px;
    margin: 0 auto;
}
.search-result-wrapper{
    margin-bottom: 20px;
}

.search-result-wrapper h2 a{
    color: #002C45;
}

.search-result-wrapper h2 {
    margin: 0 0 10px;
}
.search-result-wrapper h2:last-child{
    margin-bottom: 0 !important;
}
.page-header{
    background-image: url(../jpg/banner_doctors.jpg);
background-position: center center;
padding: 30px 30px;
background-repeat: no-repeat;
background-size: cover;
    min-height: 90px;
}
.page-header h1{
color: #fff;
max-width: 1170px;
margin: 0 auto;
}

/* ---------------------------- code for cookies ---------------------------- */
#cookie-notice {
	background-color: rgba(0, 44, 69, .85) !important;
	position: fixed;
	z-index: 11111111111;
}

#cookie-notice #cn-notice-text {
	display: flex;
	justify-content: center;
	align-items: center;
}

#cookie-notice #cn-notice-text+#cn-accept-cookie, #cn-notice-buttons {
	display: none !important;
}

#cookie-notice .cookie-notice-container {
	padding: 25px 50px;
	margin-left: auto;
	margin-right: auto;
}

#cookie-notice .cookies-message {
	text-align: left;
	font-family: "Montserrat", Sans-serif;
	display: block;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 100%;
	max-width: 60%;
	margin: 0 1em 0 auto;
	font-size: 12px;
}

#cookie-notice .cookies-message  a{
    color: #fff;
    text-decoration: underline;
}

#cookie-notice .cookies-message  a:hover{
    text-decoration: none;
}

#cookie-notice .cookies-button-container {
	max-width: 40%;
	text-align: center;
	display: flex;
	align-content: space-between;
	margin: 0 auto;
	font-weight: bold;
}

#cookie-notice .cookies-button-container .cookies-button {
	border: 0;
	display: inline-block;
	color: #fff;
	margin: 0 4px;
	padding: 5px 10px;
	min-width: 110px;
	font-weight: 500;
	border-radius: 3px;
	text-align: center;
	background-color: #fff;
	font-family: "Montserrat", sans-serif;
	text-decoration: none;
	line-height: 30px;
    color: #002c45;
}

#cookie-notice .cookies-button-container .cookies-button:hover {
	background-color: #fff;
	color: #002c45;
    opacity: 0.8;
}

.cn-close-icon:before, .cn-close-icon:after{
    background-color: #fff;
}

.cookie-notice-container  .cn-text-container{
    margin: 0
}


.page-id-32 .top-bar , .single-sm_events .top-bar , .page-id-5870 .top-bar  {
    display: none
}
/* -------------------------- end code for cookies -------------------------- */


/*Mom-Landing-page*/ 
/* mom-landing-page*/

/*---- Header -- */

.view-all-events .elementor-icon-list-item  a{
    flex-direction: row-reverse;
    column-gap: 5px
}

.mom-header-list li.elementor-icon-list-item {
	margin-bottom: 10px
}

.mom-header-list ul {
	margin-bottom: -10px !important
}

.services-cards-wrap .elementor-widget-image-box,
.services-cards-wrap .elementor-element-edit-mode .elementor-widget-image-box {
	width: calc(50% - 30px);
	margin: 0 15px 30px !important
}


.services-cards-wrap .elementor-widget-image-box .elementor-widget-container,
.services-cards-wrap .elementor-element-edit-mode .elementor-widget-image-box .elementor-widget-container {
	height: 100%;
}

.services-cards-wrap .elementor-widget-wrap {
	margin: 0 -15px;
	width: calc(100% + 30px)
}

.white-bullet-list li:before {
	color: #fff !important
}

.less-spacing-text-editor p {
	margin-bottom: 14px
}

.less-spacing-text-editor ul {
	margin-bottom: 15px
}

/* .colored-link a ,.colored-link li::marker  {
    color: #5C5D5F !important;
    font-weight: 400 !important
} */

.cov-column-editor ul li, .cov-column-editor p {
	font-size: 16px !important;
	line-height: 24px !important
}

.cov-column-editor img {
	width: 100%
}

.white-bullet-list li {
	margin-bottom: 10px !important;
}

.elementor-widget-text-editor .elementor-widget-container ul:not(:last-child) {
	margin-bottom: 15px
}

.event {
	background: #FFFFFF;
	border: 1px solid #D6E1E8;
	border-radius: 5px;
	width: calc(33.33% - 30px);
	padding: 30px;
	margin: 0 15px 30px;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}

.events-cards {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
	width: calc(100% + 30px);
}

.event h3 {
	color: #002C45;
	line-height: 34px;
}

.event-content {
	margin-top: 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.event-button-wrap {
	margin-top: auto;
	padding-top: 20px
}

.event .elementor-button:after {
	width: 86px
}


.event-schedule {
	display: flex;
	gap: 19px;
}

.event-schedule span {
	position: relative;
	display: inline-block;
	padding-left: 26px;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
}

.event-schedule span:after {
	width: 16px;
	height: 16px;
	content: "";
	position: absolute;
	left: 0;
	top: 4px
}

.event-schedule .event-time:after {
	background: url('../svg/event-time.svg') no-repeat center;
	background-size: contain;
}

.event-schedule .event-date:after {
	background: url('../svg/event-calendar.svg') no-repeat center;
	background-size: contain;
}

.event-img {
	position: relative;
	padding-bottom: 65%;
	min-height: 200px;
	overflow: hidden;
	border-radius: 5px;
	background: #FFF2F7 url('../svg/mom-bg.svg') no-repeat center;
}

.event-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s all
}

.event-img img:hover {
	transform: scale(1.2)
}


/* social-shares */
.SM-social-shares .elementor-share-btn {
	height: auto;
}

.SM-social-shares .elementor-share-btn__icon {
	width: auto
}

.SM-social-shares .elementor-share-btn__icon i {
	line-height: 29px;
}

.event-single-post-content img.alignleft {
	margin-right: 30px;
}


.less-spacing-text-editor ul, .less-spacing-text-editor ol {
	margin-bottom: 30px
}


/* facet styling */
body .facetwp-location, body .facetwp-facet-events_calendar input[type="text"] {
	background: #FFFFFF;
	border: 2px solid #DDECF6;
	box-sizing: border-box;
	border-radius: 5px;
	height: 58px;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	color: #58595B;
	padding: 16px 16px 16px 16px;
	text-overflow: ellipsis;
}

body .facetwp-facet input.facetwp-location{
	padding:16px 45px 16px 16px
}


body .facetwp-facet-events_calendar.facetwp-facet input[type="text"] {
	background: #ffffff url('../svg/event-calendar.svg') no-repeat;
	background-size: 18px 18px;
	padding: 16px 16px 16px 52px;
	background-position: 15px center;
}


.facetwp-facet-event_proximity input[type="text"]::placeholder, .facetwp-facet-events_calendar input[type="text"]::placeholder {
	color: rgb(88 89 91 / 50%)
}

.facetwp-facet-event_proximity input[type="text"]:focus, .facetwp-facet-events_calendar input[type="text"]:focus {
	border-color: #A0CBE8 !important
}

.facetwp-facet-events_calendar input[type="text"] {
	color: rgb(88 89 91 / 50%)
}

.facetwp-radius-dropdown {
	background: #FFFFFF;
	border: 2px solid #DDECF6;
	box-sizing: border-box;
	border-radius: 5px;
	height: 58px;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	/* color: #2E2C2D; */
	color: rgba(46, 44, 45, 0.4);
	padding: 16px;
	max-width: max-content;
}

/* 
   .facetwp-locatio:focus, .facetwp-radius-dropdown:focus,
   .facetwp-facet input[type="text"]:focus {
	 border-color: #277fbf !important;
   } 
*/


.facetwp-icon.locate-me:hover:before {
	opacity: 0.8
}

.facetwp-facet .facetwp-icon {
	right: 8px;
}

.facetwp-input-wrap {
	width: 100%;
}

.facetwp-facet {
	display: flex;
	gap: 10px;
}

.event-col-left {
	width: calc(100% - 570px) !important;
	padding-right: 30px
}

.event-col-right {
	width: 570px !important;
}

.elementor-shortcode .facetwp-facet.facetwp-facet-events_calendar,
.elementor-shortcode .facetwp-facet.facetwp-facet-event_proximity, .elementor-shortcode .facetwp-facet.facetwp-facet-reset {
	margin-bottom: 0
}

body .facetwp-facet.facetwp-facet-reset button.facetwp-reset {
	background: transparent !important;
	border: none;
	padding: 9px 0 0 !important;
	outline: none !important;
}

body .facetwp-facet.facetwp-facet-reset button.facetwp-reset:hover {
	background: transparent;
	color: #E5EAED;
}

.fdate-nav .fdate-wrap .disabled {
	opacity: 1
}

.fdate-nav .fdate-day.inner, .fdate-day.inner.today {
	opacity: 0.7;
	background: #eee;
	margin: 0 2px
}


body .facetwp-pager .facetwp-page {
	background-color: #ffffff;
	padding: 10px 10px 10px;
	border-radius: 5px;
	font-weight: 400;
	margin: 0 2.5px 5px;
	font-size: 18px;
	line-height: 18px;
	color: rgb(88 89 91 / 50%);
	min-width: 40px;
	text-align: center;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.facetwp-pager .facetwp-page:not(.active):not(.next):not(.prev):hover {
	background: #eee;
}

.facetwp-pager .facetwp-page.active, .facetwp-pager .facetwp-page.active:hover {
	background-color: #1A7EC1;
	color: #ffffff !important;
	font-weight: 700
}

.facetwp-page.dots.end {
	border: none;
	margin: 0;
	cursor: default;
	background: transparent !important;
}

.facetwp-pager .facetwp-page.next, .facetwp-pager .facetwp-page.prev {
	color: transparent !important;
	position: relative;
}

.facetwp-pager .facetwp-page.next, .facetwp-pager .facetwp-page.prev {
	background: #fff url(../svg/right-blue-arrow.svg) no-repeat;
	background-size: 11px;
	background-position: 17px;
}

.facetwp-pager .facetwp-page.next:hover, .facetwp-pager .facetwp-page.prev:hover {
	background: #fff url(../svg/right-blue-arrow.svg) no-repeat;
	background-size: 11px;
	background-position: 17px;
}

.facetwp-pager .facetwp-page.prev {
	transform: rotate(180deg);
}

.facetwp-facet-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.facetwp-page.next, .facetwp-page.prev {
	width: 40px;
	height: 40px;
	padding: 10px 13.5px 10px;
}

.facetwp-pager {
	display: flex;
	align-items: center
}


.event-single-metas ul li {
	margin-bottom: 10px !important
}

.event-single-metas ul li:first-child {
	margin-right: 30px !important
}


.event-single-metas ul li.elementor-repeater-item-b0ba7cb {
	padding-right: 5px
}

.event-single-metas ul li:not(:nth-child(3)) span.elementor-icon-list-icon {
	margin-right: 10px
}

.facetwp-radius-dropdown {
	display: none;
}

.event-single-post-content table tbody th,
.event-single-post-content table tbody td,
.event-single-post-content table tbody tr {
	border: none !important
}


.elementor-shortcode .addeventatc {
	width: 100%;
	background: #FFFFFF;
	border: 2px solid #DDECF6 !important;
	box-sizing: border-box;
	border-radius: 5px !important;
	height: 58px;
	font-weight: 500;
	font-size: 18px !important;
	line-height: 100%;
	color: #58595b80 !important;
	padding: 18px 16px 16px 40px !important;
	position: relative;
	z-index: unset !important;
}

.elementor-shortcode .sm-atc-wrapper .addeventatc .addeventatc_icon {
	width: 18px;
	height: 18px;
	position: absolute;
	z-index: 1;
	left: 12px;
	top: 18px;
	background: url('../svg/event-calendar.svg') no-repeat;
	background-size: 18px 18px;
}

.elementor-shortcode .addeventatc:after {
	width: 18px;
	height: 18px;
	position: absolute;
	z-index: 1;
	right: 12px;
	top: 19px;
	background: url(../svg/chevron-down.svg) no-repeat;
	background-size: 18px 18px;
	content: ""
}

.facetwp-facet {
	margin-bottom: 0 !important;
}

body .facetwp-facet.facetwp-type-map  .facetwp-map-filtering {
	display: none !important
}

body .facetwp-facet.facetwp-type-map #facetwp-map {
	width: 100% !important;
	height: 502px !important;
	position: relative
}

.facetwp-type-map:after {
	/*  box-shadow: 20px 20px 0px #C6DFEF; */
	width: calc(100% - 80px);
	left: 50%;
	transform: translatex(-50%);
	content: "";
	height: 25px;
	bottom: -25px;
	position: absolute;
	background: #C6DFEF;
	border-radius: 0 0 5px 5px
}

.facetwp-type-map{
	gap: 0;
	position: relative
}

.location-results {
	z-index: 1 !important;
}

.fdate-wrap .disabled {
	opacity: 0.5 !important
}

body .location-results .location-result {
	margin: 0;
	padding: 10px 15px 10px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	color: #5C5D5F;
	text-transform: none;
	cursor: pointer;
	border: 0
}

body .location-results {
	border: solid 2px #dbecf6;
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
	border-radius: 5px;
	top: calc(100% + 2px);
}

body .location-attribution {
	display: none
}

.facetwp-facet.facetwp-facet-reset {
	position: absolute
}

.location-results .location-result.active {
	background-color: #F6F6F6;
	position: relative;
}

.mom-about-img img {
	width: auto;

}

.event-single-post-content table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
	background: transparent
}

body .fdate-nav .fdate-day.inner:not(.selected) {
	background: #E5EAED !important
}

body .fdate-nav>div, body .fdate-clear {
	font-weight: bold;
}


body .fdate-wrap {
	border: 2px solid #D6E1E8;
	border-radius: 5px;
	width: 371px;
}

body .fdate-grid .selected, body .fdate-grid .selected:hover {
	background-color: #007cc2;
	color: #fff;
}

body .fdate-grid .fdate-day.inner {
	font-weight: bold;
}


body .fdate-day.weekday {
	font-weight: bold;
	padding-top: 0;
	font-weight: 800;
	font-size: 16px;
}

body .fdate-wrap .disabled {
	opacity: 0.5 !important;
	font-weight: 400;
}


.colored-link ol {
	padding-left: 24px !important
}

.colored-link ol li {
	padding-left: 2px !important;
	margin-bottom: 2px !important
}

body .facetwp-facet-events_calendar {
	column-gap: 30px
}

body .fdate-nav>div, .fdate-clear {
	padding: 7px 0 10px;
	text-align: center;
	cursor: pointer;
	font-size: 17px;
}

body .fdate-grid .fdate-day {
	padding: 7px 0 10px;
	font-size: 17px;
}

body .fdate-clear {
	padding: 12px 0 10px;
}

body .gm-style-mtc {
	display: none
}


body .facetwp-facet-events_map h3 a {
	font-size: 13px;
	color: #72C16C;
	line-height: normal;
	margin: 0
}

body .facetwp-facet-events_map h3 {
	margin: 0;
}

body .facetwp-facet-events_map h3 a {
	text-decoration: underline;
}

body .facetwp-facet-events_map h3 a:hover {
	text-decoration: none;
	color: #1A7EC1
}

body .facetwp-facet-events_map p {
	padding-top: 5px;
	font-weight: 300;
	font-size: 13px;
	font-style: italic
}

.location-results:empty {
	display: none !important;
}


.mbl-mamography p, .mbl-mamography .elementor-widget-text-editor ul:not(:last-child) {
	margin-bottom: 28px;
}

.reset-elem.elementor-element {
	position: absolute;
	top: 62px
}

.events-filter-wrap {
	position: relative
}

/* .schedule-popup{
	padding: 191px 15px 40px !important ;
	overflow: auto;
	background: rgba(0,0,0,0.74);
}

.schedule-popup .overlay{
	background: transparent !important
}
	
	.schedule-popup-content{
	max-height: max-content !important
} */

@media (max-width: 1440px) {
    .map-left-section{
        width: 43.4%;
    }
    .map-right-section{
        width: calc(57.3% - 20px);
    }
}

/*--1200px fils---*/
@media (max-width:1200px){
	.icon-list-wrp .mamo-icons .elementor-widget-icon-box {
		width: 100% !important
	}

	.time-list-wrapper{
		margin-right: 12px;
	}

	ul.procedures-list {
		padding-right: 0;
	}
	
} 

@media (max-width: 1150px) {
    .main-menu .menu>li{
        margin-right: 20px;
    }

	.menu-tab-bar .elementor-widget-container .elementor-nav-menu{
		min-width: 1010px;
	}
	
	.menu-tab-bar .elementor-widget-container .elementor-nav-menu .menu-item:after {
		right: -15px;
	}
	
	.icon-list-wrp .icon-list-body .elementor-widget-icon-box {
		width: calc(50% - 30px);
	}

	strong.info-highlight span{
        display: block;
    }
    .time-list-wrapper {
        width: 280px;
    }
    .address-left {
        width: 310px;
    }
}


@media (max-width: 1100px){
    .day-list li{
        font-size: 16px;
        line-height: 24px;
    }
    .time-list-wrapper {
        width: 250px;
    }
}

@media (min-width: 1025px) {
    .menu-navigation{
        display: none !important;
    }
}



/* max-1024 fils */
@media screen and (max-width:1024px){
	html body .simon-home-hero .elementor-background-overlay{
        background-image: linear-gradient(90deg, #1a7ec1c7 100%, #FFFFFF00 49%) !important;
    }
	
	body .elementor-widget-heading h1.elementor-heading-title,
  body h1,
  body .h1, 
  body .elementor-widget-heading.h1 .elementor-heading-title, 
  h1.elementor-cta__title.elementor-cta__content-item {
	  font-size: 40px;
	  line-height: 50px;
  }

  body .elementor-widget-heading h2.elementor-heading-title,
  body h2,
  body .h2, 
  body .elementor-widget-heading.h2 .elementor-heading-title, 
  h2.elementor-cta__title.elementor-cta__content-item,
  body .elementor-image-box-content h2.elementor-image-box-title,
  .elementor-posts .elementor-post__card h2.elementor-post__title,
  .elementor-posts h2.elementor-post__title {
	  font-size: 32px;
	  line-height: 40px;
  }

  body .elementor-widget-heading h3.elementor-heading-title,
  body h3,
  body .h3, 
  body .elementor-widget-heading.h3 .elementor-heading-title, 
  h3.elementor-cta__title.elementor-cta__content-item,
  body .elementor-image-box-content h3.elementor-image-box-title,
  .elementor-posts .elementor-post__card h3.elementor-post__title,
  .elementor-posts h3.elementor-post__title{
	  font-size: 26px;
	  line-height: 32px;
  }

  body .elementor-widget-heading h4.elementor-heading-title,
  body h4,
  body .h4, 
  body .elementor-widget-heading.h4 .elementor-heading-title, 
  h4.elementor-cta__title.elementor-cta__content-item,
  body .elementor-image-box-content h4.elementor-image-box-title,
  .elementor-posts .elementor-post__card h4.elementor-post__title,
  .elementor-posts h4.elementor-post__title {
	  font-size: 22px;
	  line-height: 28px;
  }

  body .display-1 .elementor-widget-heading .elementor-heading-title, 
  .display-1 .elementor-cta__title.elementor-cta__content-item, 
  body .elementor-widget-heading .elementor-heading-title.elementor-size-large, 
  body .elementor-heading-title.elementor-size-large  {
	  font-size: 44px;
	  line-height: 53px;
  }

  [data-elementor-type="header"] .elementor-element .elementor-button{
	padding: 7px 16px;
}
.menu-navigation{
	display: none;
}
.menu-opened body{
	overflow: hidden;
	position: relative;
}
.menu-opened .header-btm{
	position: relative;
	z-index: 1;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.menu-opened .header-btm + section{
	display: none;
}
.menu-opened .elementor-sticky--active{
	z-index: 999999;
}

.footer-menu nav ul li:not(:first-child) {
	padding-left: 12px;
}

.making-advance-wrp .making-cards-wrp .elementor-widget-image-box {
	padding: 30px 15px;
}
.hero2-location-wrp .elementor-background-overlay {
	width: 50%;
	background-position: center !important;
}
.hero-wrp .elementor-column {
	width: 77%;
}
.making-cards-wrp.comprehensive-wrp .elementor-widget-image-box {
	width: calc(33.33% - 30px) !important;
}
.tech-slider .swiper-slide:hover figure:before {
	top: 40%;
	left: calc(100% - 120px) !important;
}
.comprehensive-wrp2 .elementor-widget-call-to-action{
	
}
.nt-wrapper .nt-box .elementor-cta__button{
	border: none !important;
}
.nt-box .elementor-cta__content .elementor-cta__image:after{
	display: none !important;
}
.nt-box .elementor-cta__content .elementor-cta__button-wrapper{
	position: static;
	z-index: 2222;
	opacity: 1;
	visibility: visible;
	left: 0px;
	transform: translate(0);
	padding: 10px 0px;
	text-align: center;
}
.nt-box .elementor-cta__content .elementor-cta__button-wrapper .elementor-cta__button{
	background-color:#3E8334 !important;
	padding: 14px 25px 14px !important;
	border-radius: 5px !important;
	text-decoration: none !important;
	border: 2px solid #3E8334 !important; 
}
.nt-box .elementor-cta__content .elementor-cta__button-wrapper .elementor-cta__button:hover{
	border: 2px solid #3E8334 !important;
	color: #3E8334 !important;
	background-color: transparent !important;
}

.team-headshot{
	width: 340px;
	max-width: 100%;
}
.team-bio-discription{
	margin: -106px 0 0 320px;
	padding: 60px 40px 40px;
}
.team-bio-discription{
	margin: 30px 0 0;
}
.team-popup{
	padding: 40px 0 40px;
}
.simomned-staff-container .simomned-staff-item {
	width: calc(33.33% - 30px);
}

.staff-detail-wrapper .elementor-container .elementor-column:first-child{
	width: 100%;
	max-width: 340px;
}
.staff-detail-wrapper .elementor-container .elementor-column:not(:first-child){
	width: 100%;
}

.elementor-element.cs-box{
	width: calc(33.33% - 30px);
}

.form-wrap .col-1\/2,
	.form-wrap .col-3\/4 {
		width: 100%;
	}

	.form-wrap .col-3\/7,
	.form-wrap .col-1\/4,
	.form-wrap .col-2\/8,
	.form-wrap .col-1\/7,
	.form-wrap .col-2\/7,
	.form-wrap .col-2\/5,
	.form-wrap .col-3\/5 {
		width: 50%;
	}

	.form-wrap .col-1\/3 {
		width: 100%;
	}

	.form-wrap .col-1\/8 {
		width: 24.5%;
	}

	.form-wrap .col-1\/5 {
		width: 50%;
	}

	.form-wrap .sign-area .col-2\/3 {
		width: 50%;
	}

	.form-wrap .sign-area .col-1\/3 {
		width: 50% !important;
	}

	.form-wrap .print-footer .col-1\/2{
         width:50%
	}
	
	.icon-list-wrp.vegas-icons .icon-list-body .elementor-widget-wrap {
		margin: 0 !important;
		width: 100%;
	}

	.single-sm_location [data-elementor-type="footer"]{
        padding-bottom: 40px;
    }
    .map-left-section {
        min-height: 238px;
        float: none;
        width: calc(100% - 30px);
        position: relative;
        margin: 0 auto 20px;
        order: -1;
    }
    .map-left-section .map-section {
        position: absolute!important;
        top: 0;
        left: 0;
        min-height: 100%;
        height: 100% !important;
    }
    body.search:not([class*="elementor-page-"]) .site-main{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .map-left-section:not(.map-loading):after {
        padding-bottom: 450px;
        content: '';
        display: block;
        width: 100%;
    }
    .map-right-section{
        width: 100%;
    }
    .map-right-section {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        padding-top: 10px;
        padding-right: 15px;
        padding-left: 15px;
        float: left;
        max-width: 100%;
    }
    .map-inner {
        width: 100%;
    }
    .result-post {
        height: auto;
    }
    .search-box-left .iScrollVerticalScrollbar{
        visibility: hidden;
    }
    strong.info-highlight span{
        display: inline-block;
    }
    .search-results-container {
        padding: 0;
    }
    .result-post{
        overflow: visible !important;
    }
    .right-hero-location{
        padding: 20px 30px;
    }
    .map-search-wrapper{
        margin-bottom: 30px;
    }
    .hero-location-single {
        background: #F0F4F6;
        padding: 60px 15px;
    }
    .why-choose-section{
        
        padding: 60px 15px;
    }
    .details-wrapper .wpb-container{
        display: block;
    }
    .details-sidebar{
        display: none;
    }

    .details-section .details-sidebar{
        display: block;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    }
    .details-sidebar iframe{
        width: 100%;
    }
    .details-section{
        width: 100%;
        max-width: 100%;
    }
    .location-actions.mobile-hide {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        box-shadow: 0 0 9px 0 rgb(0 0 0 / 7%);
        background-color: #fffcfc;
        padding: 10px 15px;
        z-index: 10;
    }
    .details-wrapper{
        padding-top: 0px;
    }

    .map-search-wrapper{
        padding-left: 20px;
        padding-right: 20px;
    }

	.event {
		width: calc(50% - 30px);
		padding: 30px 20px;
	}
}


@media (max-width:900px){
	.mamm-col-right{
		max-width: 100%;
	}

	.mamm-col-left {
		width:100% !important;
		padding: 0 0 60px;
	}

	.icon-list-wrp .mamo-icons .elementor-widget-icon-box {
		width: calc(50% - 30px) !important;
	}

	.mam-form label{
		text-align: center;
	}

	.two-column-bg-layout .elementor-column {
		width: 100% !important
	}

	.two-column-bg-layout .elementor-container {
		flex-direction: column-reverse !important
	}

	.mobile-col-bg-img .elementor-widget-wrap {
		padding-bottom: 80%;
		min-height: 392px
	}

	.event-col-left {
		width: 100% !important;
		padding: 0 0 30px 0
	}

	.event-col-right {
		max-width: 100% !important;
		width: 100% !important
	}

	.reset-elem.elementor-element {
		top: 147px
	}
}

@media (max-width: 782px) {
    
    .admin-bar .menu-navigation{
        top: 147px;
    }
}


@media screen and (min-width: 768px) {
    .comprehensive-wrp2 > div{
        display: flex !important;
        width: calc(100% + 30px) !important;
        margin: -15px !important;
    }
    
    .comprehensive-wrp2 > div > div{
        width: calc(25% - 30px) !important;
        margin: 15px !important;
    }
}


/* max-767 fils */
@media screen and (max-width:767px){
	body{
		font-size: 16px;
		line-height: 24px;
	}
	
  	body .elementor-widget-heading h1.elementor-heading-title,
	body h1,
	body .h1, 
	body .elementor-widget-heading.h1 .elementor-heading-title, 
	h1.elementor-cta__title.elementor-cta__content-item {
		font-size: 36px;
		line-height: 50px;
	}

	body .elementor-widget-heading h2.elementor-heading-title,
	body h2,
	body .h2, 
	body .elementor-widget-heading.h2 .elementor-heading-title, 
	h2.elementor-cta__title.elementor-cta__content-item,
	body .elementor-image-box-content h2.elementor-image-box-title,
	.elementor-posts .elementor-post__card h2.elementor-post__title,
	.elementor-posts h2.elementor-post__title {
		font-size: 28px;
		line-height: 34px;
	}

	body .elementor-widget-heading h3.elementor-heading-title,
	body h3,
	body .h3, 
	body .elementor-widget-heading.h3 .elementor-heading-title, 
	h3.elementor-cta__title.elementor-cta__content-item,
	body .elementor-image-box-content h3.elementor-image-box-title,
	.elementor-posts .elementor-post__card h3.elementor-post__title,
	.elementor-posts h3.elementor-post__title{
		font-size: 24px;
		line-height: 29px;
	}

	body .elementor-widget-heading h4.elementor-heading-title,
	body h4,
	body .h4, 
	body .elementor-widget-heading.h4 .elementor-heading-title, 
	h4.elementor-cta__title.elementor-cta__content-item,
	body .elementor-image-box-content h4.elementor-image-box-title,
	.elementor-posts .elementor-post__card h4.elementor-post__title,
	.elementor-posts h4.elementor-post__title {
		font-size: 20px;
		line-height: 24px;
	}

	body .elementor-widget-heading h5.elementor-heading-title,
	body h5,
	body .h5, 
	body .elementor-widget-heading.h5 .elementor-heading-title, 
	h5.elementor-cta__title.elementor-cta__content-item,
	body .elementor-image-box-content h5.elementor-image-box-title,
	.elementor-posts .elementor-post__card h5.elementor-post__title,
	.elementor-posts h5.elementor-post__title {
		font-size: 18px;
		line-height: 28px;
	}

	body .elementor-widget-heading h6.elementor-heading-title,
	body h6,
	body .h6, 
	body .elementor-widget-heading.h6 .elementor-heading-title, 
	h6.elementor-cta__title.elementor-cta__content-item,
	body .elementor-image-box-content h6.elementor-image-box-title,
	.elementor-posts .elementor-post__card h6.elementor-post__title,
	.elementor-posts h6.elementor-post__title {
		font-size: 16px;
		line-height: 24px;
	}

	body .elementor-widget-heading.display-1 .elementor-heading-title, 
	body .display-1 .elementor-heading-title, 
	body .display-1 .elementor-widget-heading .elementor-heading-title, 
	.display-1 .elementor-cta__title.elementor-cta__content-item {
		font-size: 44px;
		font-family: 'Adobe Text Pro', Georgia, 'Times New Roman', Times, serif;
		font-weight: 400;
		line-height: 52px;
	}

	body .display-1 .elementor-widget-heading .elementor-heading-title, 
	.display-1 .elementor-cta__title.elementor-cta__content-item, 
	body .elementor-widget-heading .elementor-heading-title.elementor-size-large, 
	body .elementor-heading-title.elementor-size-large  {
		font-size: 44px;
		line-height: 53px;
	}

	.site-main ul:not([class]):not(.elementor-editor-element-settings):not(.elementor-select-preset-list):not(.gform_fields):not(.camps_and_programs) li:before, 
	.site-main ul:not([class]) li ol li ul:not([class]) li:after {
		font-size: 16px;
	}

	.desktop-hide{
		display: block !important;
	}

	.footer-menu nav ul{
        flex-direction: column;
    }

    .footer-menu nav ul li:not(:first-child){
        padding-left: 0;
        padding-top: 24px
    }

	.icon-list-wrp .icon-list-body .elementor-widget {
        width: calc(100% - 20px);
        margin-bottom: 15px !important;
    }
    .icon-list-wrp .icon-list-body .elementor-icon-box-wrapper {
        display: flex;
    }
    .get-glimse .elementor-background-overlay{
        width: 100%;
        
    }
    .icon-list-wrp .icon-list-body .elementor-icon-box-icon {
        margin-right: 15px !important;
        margin-bottom: 0px !important;
    }
    .making-advance-wrp .making-cards-wrp .elementor-widget-image-box {
        width: calc(100% - 30px);
    }
    .hero-wrp .elementor-container {
        align-items: end !important;
    }
    .hero2-location-wrp .elementor-background-overlay {
        position: static;
        width: 100%;
        height: 320px;
        background-position: center !important;
        background-size: cover;
    }
    .hero-wrp .elementor-button:after,
    [type="button"]:after {
        width: 94px;
    }
	body .hero-wrp .elementor-button  , body .hero-wrp .elementor-button:focus {
        padding: 11px 35px 11px;
    }
    .hero-wrp .elementor-column {
        width: 100%;
    }
    /* .tech-slider .swiper-slide:hover{
        width: 100% !important;
        margin-left: 0px;
        cursor: pointer;
    } */
    .tech-slider .swiper-slide {
        width: auto;
    }
    .tech-slider .swiper-slide-inner img {
        width: auto;
    }
    .hero2-location-wrp .elementor-column .elementor-widget-wrap {
        width: 100%;
        margin-left: 0px;
        margin-right: auto;
    }
    /* .mk-slider{
        overflow: hidden;
    } */
    body .making-cards-wrp.mk-slider .elementor-widget-image-box {
        width: calc(100% - 30px) !important;
    }
    body .mk-slider .elementor-widget-wrap {
        width: calc(100% + 30px) !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
    .mk-slider .swiper-pagination-bullets {
        position: absolute;
        bottom: 0px;
        text-align: center;
    }
    .mk-slider .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        transition: all 0.3s;
    }
    .mk-slider .swiper-pagination-bullets .swiper-pagination-bullet{
        background-color: #CCD9E2;
        opacity: 1;
    }
    .mk-slider .swiper-pagination-bullets .swiper-pagination-bullet-active {
        width: 40px;
        height: 12px;
        border-radius: 12px;
        background-color: #1a7ec1 !important;
    }
    .mk-slider .swiper {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 20px;
        overflow: hidden;
    }
    .making-advance-wrp .making-cards-wrp .elementor-widget-wrap {
        flex-wrap: nowrap;
    }
   
    .making-advance-wrp .making-cards-wrp .elementor-widget-wrap {
        justify-content: start;
    }
    .mk-slider .swiper-pagination-bullets {
        opacity: 1;
    }
    /* body .mk-slider .swiper-button-next:hover {
        background-color: #b8ddae !important;
        background-image: url(../img/prev-icon.svg);
        background-repeat: no-repeat;
        transition: all 0.3s;
    } */
    .mk-slider .swiper-button-next {
        background-color: #dadada;
        background-image: url(../svg/prev-icon.svg);
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        transform: rotate(180deg);
        opacity: 1;
        right: 0px;
    }
    /* body .mk-slider .swiper-button-prev:hover {
        background-color: #b8ddae !important;
        background-image: url(../img/prev-icon.svg);
        background-repeat: no-repeat;
        transition: all 0.3s;
    } */
    body .mk-slider .swiper-button-next:hover {
        background-color: #b8ddae !important;
    }
    .mk-slider .swiper-button-prev {
        background-color: #dadada;
        background-image: url(../svg/prev-icon.svg);
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        opacity: 1;
        left: 0px;
    }
    .nt-wrapper .nt-arrow-next{
        background-image: url(../svg/prev-icon.svg);
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        opacity: 1;
        background-color: #dadada;
        position: absolute;
        z-index: 22;
        top: calc(50% - 95px);
        background-position: center;
        transform: rotate(180deg);
        right: 0px;
        cursor: pointer;
    }
    .nt-wrapper .nt-arrow-prev{
        background-image: url(../svg/prev-icon.svg);
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        opacity: 1;
        background-color: #dadada;
        position: absolute;
        z-index: 22;
        top: calc(50% - 95px);
        cursor: pointer;
        background-position: center;
        left: 0px;
    }
    .cs-wrapper .cs-arrow-next{
        background-image: url(../svg/prev-icon.svg);
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        opacity: 1;
        background-color: #dadada;
        position: absolute;
        z-index: 22;
        top: calc(50% - 40px);
        background-position: center;
        transform: rotate(180deg);
        right: 0px;
        cursor: pointer;
    }
    .cs-wrapper .cs-arrow-prev{
        background-image: url(../svg/prev-icon.svg);
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        opacity: 1;
        background-color: #dadada;
        position: absolute;
        z-index: 22;
        top: calc(50% - 40px);
        cursor: pointer;
        background-position: center;
        
        left: 0px;
    }
    .cs-wrapper .cs-arrow-prev:hover,
    .cs-wrapper .cs-arrow-next:hover,
    .nt-wrapper .nt-arrow-prev:hover,
    .nt-wrapper .nt-arrow-next:hover
    {
        background-color: #B8DDAE !important;
    }
    .cs-wrapper .cs-arrow-prev:hover,
    .nt-wrapper .nt-arrow-prev:hover,
    .mk-slider .swiper-button-prev:hover{
        background-image: url(../svg/green-arrow.svg) !important;
        transform: rotate(180deg) !important;
         background-color: #B8DDAE !important;
    }
    .cs-wrapper .cs-arrow-next:hover,
    .nt-wrapper .nt-arrow-next:hover,
    .mk-slider .swiper-button-next:hover{
        background-image: url(../svg/green-arrow.svg) !important;
        transform: rotate(0deg) !important;
    }
   
    body .comprehensive-wrp .swiper-button-next:hover {
        background-color: #b8ddae !important;
        background-image: url(../svg/prev-icon.svg);
        background-repeat: no-repeat;
        transition: all 0.3s;
    }
    body .comprehensive-wrp .swiper-button-prev:hover {
        background-color: #b8ddae !important;
    }
    .comprehensive-wrp .swiper-button-next {
        background-color: #dadada;
        background-image: url(../svg/prev-icon.svg);
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        transform: rotate(180deg);
        opacity: 1;
        right: 0px;
    }
    .making-advance-wrp .making-cards-wrp .elementor-widget-image-box {
        padding: 40px 15px;
    }
    body .comprehensive-wrp .swiper-button-prev:hover {
        background-color: #b8ddae !important;
        background-image: url(../svg/prev-icon.svg);
        background-repeat: no-repeat;
        transition: all 0.3s;
    }
    .comprehensive-wrp .swiper-button-prev {
        background-color: #dadada;
        background-image: url(../svg/prev-icon.svg);
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        opacity: 1;
        left: 0px;
    }
    .comprehensive-wrp .swiper-pagination-bullets {
        opacity: 1;
    }
    .comprehensive-wrp .swiper-pagination-bullet{
      background-color: #CCD9E2;
      opacity: 1;
    }
    .comprehensive-wrp.making-cards-wrp .elementor-widget-image-box {
        width: calc(100% - 30px) !important;
    }
    .comprehensive-wrp.making-cards-wrp .elementor-widget-wrap {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
    .comprehensive-wrp .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        transition: all 0.3s;
    }
    .comprehensive-wrp
        .swiper-pagination-bullets
        .swiper-pagination-bullet-active {
        width: 40px;
        height: 12px;
        border-radius: 12px;
        background-color: #1a7ec1;
    }
    body.search:not([class*="elementor-page-"]) .site-main{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .comprehensive-wrp2 .swiper-wrapper{
           flex-wrap: nowrap;
           justify-content: start;
           margin-left: -15px !important;
           margin-right: -15px !important;

    }
    .comprehensive-wrp2 .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        transition: all 0.3s;
        opacity: 1;
        background-color: #CCD9E2;
    }
    .comprehensive-wrp2 .swiper-pagination-bullets .swiper-pagination-bullet-active {
        width: 40px;
        height: 12px;
        border-radius: 12px;
        background-color: #1a7ec1 !important;
    }
    .comprehensive-wrp2 .swiper {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 20px;
        overflow: hidden;
    }

    .tech-slider .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        transition: all 0.3s;
        opacity: 1;
        background-color: #CCD9E2;
    }
    .tech-slider .swiper-pagination-bullets .swiper-pagination-bullet-active {
        width: 40px;
        height: 12px;
        border-radius: 12px;
        background-color: #1a7ec1 !important;
    }
    .tech-slider .swiper-pagination-bullets {
        opacity: 1;
    }
    .tech-slider .swiper-slide figure:hover:after {
        display: none;
    }
    .tech-slider .swiper-slide:hover figure:before {
        display: none;
    }
    .tech-slider .swiper-slide-inner figcaption {
        margin-top: 20px;
        text-align: center !important;
        text-transform: capitalize;
    }
    
    .mbl-mamography .mbl-img1 {
        margin-bottom: 20px;
    }
    
    .comprehensive-wrp .swiper {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 20px;
        overflow: hidden;
    }
    .customized-report .elementor-background-overlay {
        background-image: linear-gradient(
            115deg,
            #1a7ec1c7 100%,
            #ffffff00 40%
        ) !important;
    }
    .sub-heading h3{
        font-size: 20px;
    }
    .making-cards-wrp.comprehensive-wrp .elementor-widget-call-to-action{
        width: calc(100% - 30px) !important;
    }
    .cs-wrapper .cs-pagination{
        opacity: 1;
    }
    .nt-box .elementor-cta__content .elementor-cta__image:after{
        max-width: 270px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .nt-box .elementor-cta__content .elementor-cta__button-wrapper{
        position: static;
        z-index: 2222;
        opacity: 1;
        visibility: visible;
        left: 0px;
        transform: translate(0);
        padding: 10px 0px;
        
    }
    .nt-box .elementor-cta__content .elementor-cta__image:after{
        display: none !important;
    }
    .nt-box .elementor-cta__content .elementor-cta__button-wrapper .elementor-cta__button{
        background-color:#3E8334 !important;
        padding: 14px 25px 14px !important;
        
    }
    .nt-slider .nt-pagination{
        opacity: 1;
        bottom: 0px;
        z-index: 99;
    }

    .cs-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .nt-wrapper{
       padding-left: 30px;
       padding-right: 30px;
       padding-bottom: 30px;
    }
    .sub-heading h3{
        font-size: 20px !important;
        line-height: 30px !important;
    }
    .cards-img-wrp .elementor-column{
        margin-bottom: 30px;
    }

	.team-popup-container{
        width: 100%;
    }
    .team-bio-discription {
		padding: 27px 20px;
		margin-left: -15px;
		margin-right: -15px;
    }
	.staff-detail-wrapper .elementor-container .elementor-column:first-child{
        width: 100%;
        max-width: 340px;
    }
    .staff-detail-wrapper .elementor-container .elementor-column:not(:first-child){
        width: 100%;
    }
	.simomned-staff-container .simomned-staff-item {
        width: calc(50% - 30px);
    }

	.lin-sec .elementor-widget-container p a:not(:first-child) {
		margin-top: 60px !important;
		display: block;
	}
	
	.sched-form-col .elementor-widget-wrap {
		max-width: 500px;
		margin-left: auto !important;
		margin-right: auto !important;
	}
	
	.schedl-form .gform_legacy_markup_wrapper ul.gform_fields {
		flex-direction: column;
	}
	
	html body .schedl-form form {
		flex-direction: column;
	}
	
	.schedl-form .gform_wrapper form .gform_footer {
		width: 100%;
		padding: 20px 0 0;
		margin: 0;
		text-align: center;
	}
	
	.schedl-form .gform_wrapper form .gform_footer input {
		width: 100%;
	}
	
	.schedl-form .gform_legacy_markup_wrapper .gform_body {
		width: 100%;
	}
	
	.schedl-form .gform_wrapper.gform_validation_error .gform_footer{
		padding: 40px 0 0;
	}
	
	.bg-img {
		min-height: 300px;
	}
	.icon-list-wrp .icon-list-body2.icon-list-body .elementor-icon-box-wrapper{
        display: block;
    }
    
    .icon-list-wrp .icon-list-body2.icon-list-body .elementor-widget-icon-box{
        padding: 0 15px 20px;
    }
    
    .icon-list-wrp .icon-list-body2.icon-list-body .elementor-widget-icon-box:last-child{
        padding-bottom: 0px;
    }
    
    .icon-list-wrp .icon-list-body2.icon-list-body .elementor-widget-icon-box .elementor-icon-box-icon {
        margin-right: 0px !important;
    }

    .search-box input[type="submit"] {
        margin: 0 auto;
    }

    .services-icons .elementor-image-box-wrapper{
        margin: 0 12px 30px;
    }

    .services-icons .elementor-image-box-title{
        margin-top: 6px;
    }

	.cs-wrapper > div{
        width: 100% !important;
        margin: 0 !important;
        flex-wrap: nowrap;
    }
    
    .elementor-element.cs-box{
        width: 100%;
        margin: 0;
        margin-bottom: 0 !important;
    }

	.gallery-thumbs-wrapper{
        display: none;
    }
    .container-968{
        border-radius: 0;
        max-width: 530px;
        width: 100%;
    }
    .gallery-top-main {
        padding: 60px 15px 90px;
        text-align: center;
        position: relative;
    }
    .swiper-button-next-2, .owl-theme .owl-controls .owl-buttons div.owl-next {
        position: absolute;
        top: auto;
        right: 15px;
        margin-top: 0;
        bottom: 30px;
        right: 0;
    }
    
    .swiper-button-prev-2 , .owl-theme .owl-controls .owl-buttons div.owl-prev{
        position: absolute;
        top: auto;
        left: 15px;
        margin-top: 0;
        bottom: 30px;
        left: 0;
    }
    .owl-theme .owl-controls .owl-buttons div.owl-next, .owl-theme .owl-controls .owl-buttons div.owl-prev{
        bottom: -60px;
    }
    .gallery-close{
        padding: 20px 15px;
    }
    .hero-location-single {
        background: #F0F4F6;
        padding: 40px 15px;
    }
    .why-choose-section{
        padding: 40px 15px;
    }
    .search-box{
        flex-direction: column;
        margin: 0;
    }
    .search-box .select,
    .search-box .select, .search-box .search-input-container, .search-box #location-procedure, .search-box #location-miles{
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
    }
	.procedures-container {
		width: 100%;
		max-width: 100%;
	}
    .hero-location-block{
        flex-direction: column;
        min-height: 0;
    }
    .right-hero-location{
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
    }
    .left-hero-location{
        height: 300px;
        width: 100%;
    }
    .right-hero-location h1{
        margin-bottom: 10px;
    }
    .map-left-section:not(.map-loading):after {
        padding-bottom: 250px;
        content: '';
        display: block;
        width: 100%;
    }
    .address_time{
        display: block;
    }
    .address-left {
        width: 100%;
    }
    .time-list-wrapper {
        width: 100%;
        margin-top: 20px;
        border-top: 1px solid #c4c4c480;
        padding-top: 20px;
    }
    .state-container {
        width: 100%;
    }
    .map-search-form .search-box>div{
        padding: 0;
    }

    .map-search-wrapper{
        padding-left: 15px;
        padding-right: 15px;
    }
	/* ---------------------------- code for cookies ---------------------------- */
	#cookie-notice .cookie-notice-container {
		padding: 25px 40px;
	}
	
	#cookie-notice .cookies-message {
		width: 100%;
		max-width: 100%;
		display: block;
		padding-bottom: 25px;
		margin: 0 auto;
	}
	
	#cookie-notice .cookies-button-container {
		display: block;
		width: 100%;
		max-width: 100%;
		text-align: center;
	}
	
	#cookie-notice #cn-notice-text {
		display: block;
	}
	/* ---------------------------- End code for cookies ---------------------------- */

	.services-cards-wrap .elementor-widget-image-box,
	.services-cards-wrap .elementor-element-edit-mode .elementor-widget-image-box {
		width: calc(100% - 30px);
		margin: 0 15px 30px !important
	}

	.mobile-col-bg-img .elementor-widget-wrap {
		padding-bottom: 100%;
		min-height: 392px;
	}

	.event {
		width: calc(100% - 30px);
		padding: 20px;
		margin-bottom: 10px;
	}

	body .facetwp-facet.facetwp-type-map #facetwp-map {
		height: 300px !important;
	}

	.event-button-wrap{
		padding-top: 20px;
	}

	.event-content {
		margin-top: 24px;
	}

	body .facetwp-facet.facetwp-facet-reset button.facetwp-reset button {
		font-size: 16px !important;
		line-height: 19px;
	}

	.facetwp-facet-pagination {
		margin-top: 30px;
	}

	.event h3 {
		line-height: 29px;
	}

	.mbl-mamography p, .mbl-mamography .elementor-widget-text-editor ul:not(:last-child) {
		margin-bottom: 24px;
	}
}



@media (max-width:670px) {
	.facetwp-facet-events_calendar.facetwp-facet {
		flex-wrap: wrap;
		gap: 30px
	}

	.reset-elem.elementor-element {
		top: 234px
	}

	.facetwp-facet input.facetwp-search, .facetwp-facet input.facetwp-location {
		min-width: 100%
	}
}

/* max-640 fils */
@media screen and (max-width:640px){
	body .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half,
	 body .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half{
		width: 100%;
		max-width: 100%;
	}
	.simomned-staff-container .simomned-staff-item {
        width: calc(100% - 30px);
    }

    .schedule-popup-content{
        min-width: 100%;
    }
}


@media screen and (max-width:510px) {
    .hero-wrp .elementor-button:after, [type="button"]:after{
        width: 94px;
    }
	body .hero-wrp .elementor-button, body .hero-wrp .elementor-button:focus{
        padding: 11px 25px 11px;
    }
}

@media (max-width:479px){

	.icon-list-wrp .mamo-icons .elementor-widget-icon-box {
		width: 100% !important;
	}

	.search-location-box {
        padding: 40px 20px 23px;
        position: relative;
    }
    .search-box-left {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
        padding-bottom: 24px;
        border-right:  0 !important;
    }
    .search-box-right {
        width: 100%;
        padding-right: 30px;
    }
    .search-box-right h4 {
        font-size: 12px;
        line-height: 14px;
        position: absolute;
        top: 15px;
        right: 15px;
    }

	.event-schedule span {
		padding-left: 25px;
		font-size: 14px;
		line-height: 24px;
	}

	.event-schedule span:after {
		top:4px;
	}

	.event {
		padding: 15px;
	}

}

@media (max-width:400px) {

	.facetwp-facet-event_proximity.facetwp-facet {
		flex-direction: column;
	}

	.facetwp-radius-dropdown {
		max-width: 100%;
	}

	.event-single-metas {
		max-width: 200px !important
	}
}

@media (max-width:374px) {
	.SM-social-shares .elementor-share-btn__icon i {
		font-size: 20px;
		line-height: 22px
	}

	.SM-social-shares .elementor-element-populated {
		padding: 15px 20px !important
	}

	.white-button.full-width a.elementor-button {
		width: 100% !important
	}

	body .fdate-grid.grid-day {
		grid-template-columns: repeat(6, 1fr);
	}

	body .fdate-wrap {
		width: 253px;
		font-size: 12px;
	}
}

/* Code For Fixing ADA issues Starts */
a.skip-main {
    left: -999px;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
    background-color: #fff;
    color: #333;
    font-size: 14px;
}
a.skip-main:focus, a.skip-main:active {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgb(0 0 0 / 60%);
    clip: auto!important;
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.main-menu .menu>li:focus-within>.sub-menu {
	display: block;
}

body .elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container {
    font-size: 11px;
}

/* Code For Fixing ADA issues Ends */


/* Code For printing patient form. */

@media print {
	@page {
		margin: 0.5cm;
	}
	.page-id-49 .elementor-element-7e8621db,
	.page-id-49 .elementor-location-header,
	.page-id-49 .elementor-location-footer, 
	.page-id-49 .text-link,
	.page-id-49 .print-form{
		display: none !important;
	}
	.page-id-49 .patient-print-form{
		display: block !important;
	}
	.page-id-49 .form-group{
		width: 50%;
	}
	.page-id-49 .form-wrap .input-cont label{
		float: none;
	}
}