@charset "utf-8";
/* CSS styles for practice custom branding*/

.nav-background-color {
	background: #010101;
	/* background: url(../images/head-bg.jpg) center;
	background-size: cover;
	background-repeat: no-repeat; */
}
#header-navbar li .sep {
	background: #ffffff;
	width: 1px;
	display: block;
	height: 15px;
	margin: 13px 15px;
}

body{
    background: linear-gradient(-45deg, 
        #010101, #0a0a0a, #1a1a1a, #2a2a2a,
        #122822, #02251e, #051b10, #050e05,
        #092923, #122822, #02251e, #050e05,
        #1a1a1a, #0d1117, #161b22, #21262d,
        #010101, #0a0a0a, #1a1a1a, #2a2a2a);
	background-size: 400% 400%;
	animation: gradientShift 20s ease-in-out infinite;
	position: relative;
	overflow-x: hidden;
	min-height: 100vh;
}

/* Animated gradient background with random dark colors */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Floating particles animation with pulsing effect */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(3px 3px at 20px 30px, rgba(255,255,255,0.15), transparent),
		radial-gradient(4px 4px at 40px 70px, rgba(231,207,144,0.2), transparent),
		radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.1), transparent),
		radial-gradient(3px 3px at 130px 80px, rgba(231,207,144,0.15), transparent),
		radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.1), transparent),
		radial-gradient(3px 3px at 200px 120px, rgba(26,26,46,0.2), transparent),
		radial-gradient(2px 2px at 350px 80px, rgba(15,20,25,0.15), transparent),
		radial-gradient(4px 4px at 500px 150px, rgba(30,30,46,0.2), transparent),
		radial-gradient(2px 2px at 650px 200px, rgba(13,17,23,0.15), transparent),
		radial-gradient(3px 3px at 800px 100px, rgba(22,27,34,0.2), transparent);
	background-repeat: repeat;
	background-size: 200px 100px;
	animation: float 20s linear infinite;
	pointer-events: none;
	z-index: -1;
	opacity: 0.6;
}

@keyframes float {
	0% {
		transform: translateY(0px) translateX(0px);
	}
	50% {
		transform: translateY(-10px) translateX(5px);
	}
	100% {
		transform: translateY(0px) translateX(0px);
	}
}


/* Subtle geometric shapes and wave animation */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(45deg, transparent 40%, rgba(26,26,46,0.08) 50%, transparent 60%),
		linear-gradient(-45deg, transparent 40%, rgba(15,20,25,0.06) 50%, transparent 60%);
	background-size: 200px 200px, 300px 300px;
	background-position: 0 0, 100px 100px;
	animation: geometricMove 25s linear infinite;
	pointer-events: none;
	z-index: -1;
	opacity: 0.5;
}

@keyframes geometricMove {
	0% {
		background-position: 0 0, 100px 100px;
	}
	50% {
		background-position: 200px 200px, 300px 300px;
	}
	100% {
		background-position: 0 0, 100px 100px;
	}
}

#primary-nav .navbar-brand-color {
	color: #4f4f4f;
}

#primary-nav .navbar-brand {
    color: #e7cf90;
    z-index: 9;
}

a {
	color: #fff !important;
	text-decoration: none;
}

a:hover,
a:visited {
	color: #000;
}

a.link-underline {
	text-decoration: underline;
}

a.link-underline:hover,
a.link-underline:visited {
	text-decoration: none;
}


.material-icons.custom-material-style {
	font-size: 22px;
	color: #010101;
}

#imp-notice .material-icons {
	font-size: 22px;
	color: #df2f3b;
}

ion-icon {
	font-size: 44px;
	color: #c4c4c4;

}

/** style for quick action button on top bar**/
#quick-action .btn {
	border: 1px solid #f1d5b1;
	background: linear-gradient(90deg, #A17D51, #f1e9b0 55%, #a17d53);

}

#quick-action .btn:hover,
#quick-action .btn:focus,
#quick-action .btn:active {
	background: linear-gradient(90deg, #f1e9b0, #A17D51 55%, #f1e9b0);
	border-color: #f1d5b1;
	color: #010101 !important;
}
#quick-action .btn:active i{color: #000 !important;}

/** style for hero background**/
#hero-section,
#hero-section .d-flex {
	/* background: #7698ba; */
	/* background: url(../images/hero-bg.webp) center; */
	background: linear-gradient(45deg, rgb(205 229 249 / 0%), rgb(21 39 60 / 95%)), url(../images/hero-bg.webp) center;
    background-size: cover;
    color: #000;

}

#imp-notice {
	background: #ffeae3;
	/* color: #010101; */
}

div#imp-notice small {
	font-weight: 500;
}

.local-panel {
	border-radius: 5px;
    border: 1px solid #dadada;
    background: linear-gradient(90deg, #A17D51, #f1e9b0 55%, #a17d53);
    position: relative;
    /* box-shadow: 0px 0px 10px #bdbdbd; */
}
#local-meet-doctors .material-icons {
	font-size: 22px;
	color: #e7cf90;
}

#cta-call-email small {
	font-size: 100% !important;
}

#cta-call-email .cta-material-icons {
	font-size: 22px;
	color: #999 !important;
	border: 1px solid red;
}

#local-socials a ion-icon {
	color: #010101;
}

#local-socials a:hover ion-icon {
	color: #78fac5;
}

/* #insurance-nearby-location .insurance-border {
	border-right: 1px solid #c4c4c4;
} */

#insurance-nearby-location {
	background: linear-gradient(90deg, #A17D51, #f1e9b0 55%, #a17d53);
}


#video-slider {
	background: #ffeae3;
}

#video-slider .carousel-indicators .active,
#testimonials .carousel-indicators .active {
	background-color: #e7cf90;
}

#video-slider .carousel-indicators li,
#testimonials .carousel-indicators li {
	background-color: #666;
}


#gallery-slider .carousel-indicators .active {
	background-color: #e7cf90;
}

#gallery-slider .carousel-indicators li {
	background-color: #666;
}

#testimonials {
	background: #ffeae3;
}

#testimonials .testimonial-name {
	color: #000;
}

#testimonials .testimonial-designation {
	color: #666;
}

.star {
	color: #ff0000;
}

.star-grey {
	color: #666;
}


.card.stores-cta .card-body {

background: #010101;
}

.services-tabs a.nav-link {
	color: #000;
	border: 1px solid #e7cf90;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus{
	border-color: #010101;
}

#patient-tools .patient-tools-tab #p-tools-Content {
	background: #ffeae3;
}

#patient-tools .nav-tabs .nav-link .active,
#patient-tools .nav-tabs .nav-tabs .nav-link.active {
	color: #495057;
	background-color: #ececec;
	border-color: none !important;
}

.material-icons.star {
	color: #e7cf90;
}

.material-icons.star-grey {
	color: #e7cf907d !important;
}

#faqs a.faq-link {
	color: #007bff;
	text-decoration: none !important;
}

#faqs a.faq-link:hover {
	color: #000;
	text-decoration: none !important;
}

#footer .list-group-item {
	background-color: rgba(0, 0, 0, 0);
}

#footer {
	background: linear-gradient(90deg, #A17D51, #f1e9b0 55%, #a17d53);
	color: #010101;
}

.footer-link li a,
.footer-link li a:visited {
	color: #010101 !important;
}

.footer-link li a:hover {
	color: #ccc !important;
	text-decoration: none !important;
}

.custom-link-light,
.custom-link-light:active {
	color: #f3ffcf !important;
}

.custom-link-light:hover {
	color: #010101 !important;
	text-decoration: none !important;
}

.btn-modal-custom {
	color: #010101;
	background-color: #4ec3e0;
	border-color: #4ec3e0;
}

.lead {
	font-weight: 400;
}
.healow-sidebar-ul li {
    background: unset;
    color: #010101;
    padding: 5px 0px;
}

.specialities-bx {
	/* border: 2px solid #005e60; */
    padding: 7px 15px;
    border-radius: 5px;
    background: linear-gradient(180deg, #fff7cf 0%, #f1e9b0 60%, #f1e9b0 100%);
    box-shadow: 0px 0px 3px #c9c9c9;
}
.specialities-bx .list-group-item{background: unset;}
/* .specialities-bx i {
    color: #010101 !important;
} */
/*********************
	  Header CSS
*********************/
#quick-action .btn:hover,
#quick-action .btn:hover i {
	color: #010101 !important;
}
.main-logo {
	max-width: 520px;
    /* position: absolute; */
    /* padding: 5px; */
    /* top: 5px; */
	/* left: 0; */
    /* background: #ffffff; */
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}
.table th, .table td{
	border-top: 1px solid #010101;
}
.zoodoc-book {
    position: fixed;
    bottom: 15px;
    left: 10px;
    z-index: 99999;
}
a.nav-link.call-us-btn{
	font-size: 16px;
}
.navbar-collapse a,
.navbar-collapse a i {
	color: #dcc57e !important;
}
.meet-doc-bx {
    padding: 10px 15px;
    background: #f5df9c;
    border-radius: 15px;
}
#quick-action .btn,
#quick-action .btn i {
	color: #010101 !important;
}
.practice-name{
	font-size: 52px;
	color: #010101;
}
/* .service-bx {
    padding: 15px;
    text-align: center;
	min-height: 131px;
    background: linear-gradient(0deg, #ffeae3, transparent);
    border-radius: 5px;
    box-shadow: 0px 0px 1px black;
    margin-bottom: 10px;
    margin-top: 10px;
} */
.services-tabs .row > div[class^="col-"]{display:flex}
.service-bx {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1 1 auto;
    width: 100%;
    padding: 18px 18px 12px 18px;
    text-align: left;
    background: linear-gradient(180deg, #fff7cf 0%, #f1e9b0 60%, #f1e9b0 100%);
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    margin-bottom: 15px;
    margin-top: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.service-bx:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.22);
}
.service-bx h5{color:#3c2e0f;margin-bottom:8px}
.service-bx p{margin-bottom: 0px; color: #000;}
.service-bx ul.list-group{margin-top:6px}
.service-bx .list-group-item{color:#000;border:0;padding:.4rem .5rem .2rem 2rem}
.service-bx .material-icons.custom-material-style{color:#7a5b1a}
.meet-doc-bx h4, .meet-doc-bx h5, .meet-doc-bx p {
    color: black;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}

	100% {
		transform: translateY(0px);
	}
}

div#primary-nav {
	-webkit-transition: all 0.5s ease;
	-moz-transition: position 10s;
	-ms-transition: position 10s;
	-o-transition: position 10s;
	transition: all 0.5s ease;
}

div#primary-nav.sticky {
	z-index: 1030;
	position: fixed;
	top: 0;
	left: 0;
	animation: smoothScroll 1s forwards;
}

/* .navbar-light .navbar-toggler-icon {
	filter: brightness(1) invert(1);
} */

.navbar-light .navbar-toggler {
	color: rgb(255 255 255 / 50%);
	border-color: rgba(255, 255, 255, 0.978);
}
ul.list-group.list-group-flush li {
    padding: .5rem .5rem 0.1rem 2rem;
	background: unset;
}
ul .material-icons.custom-material-style {
    position: absolute;
    left: 0;
    line-height: 1.2;
}
.mission-vision {
    border: 1px solid #f0f0f0;
    padding: 10px;
	background: #ffeae3;
    margin-bottom: 15px;
    min-height: 170px;
    box-shadow: 0px 0px 5px #c1c1c1;
}
.provider-education {
    min-height: 248px;
}
.card-header {
    padding: 0.75rem 1.25rem;
}
/* .card-header {
    padding: 0.3rem 0.6rem;
} */
#Q-and-A .btn-link{white-space: inherit;}
div#Q-and-A .nav-tabs .nav-link.active {
    background: linear-gradient(90deg, #A17D51, #f1e9b0 55%, #a17d53);
    color: #010101 !important;
}
div#service-tools-content {
    background: #bcf0ff;
    border: 1px solid #dee2e6;
    border-top: 0;
}
.navbar{
	padding: 0.5rem 0rem;
}
/* Owl Carousel Navigation CSS */
.owl-theme .owl-nav {
    margin-top: 10px;
    position: initial;
    align-content: space-around;
    height: 100%;
    top: 0;
}
button.owl-prev {
    font-size: 62px !important;
    height: 95%;
    position: absolute;
    top: 0;
    left: 5px;
}
.owl-theme .owl-nav {
    margin-top: -10px !important;
}
button.owl-next {
    font-size: 62px !important;
    height: 100%;
    position: absolute;
    top: 0;
    right: 5px;
}
.owl-dots{display: none;}
#owl-box1 .owl-nav button.owl-next, #owl-box1 .owl-nav button.owl-prev, #owl-box1 button.owl-dot{
	background: 0 0;
    color: #eaf4ff !important;
    border: none;
    padding: 0 !important;
    font: inherit;
}
#owl-box2 .owl-nav button.owl-next, #owl-box2 .owl-nav button.owl-prev, #owl-box2 button.owl-dot{
	background: 0 0;
    color: #000000 !important;
    border: none;
    padding: 0 !important;
    font: inherit;
}
.owl-nav button:focus, .owl-nav button:hover {
    outline: 0px !important;
	background: transparent !important;
}
/* Owl Carousel Navigation CSS End*/
.hero-section .owl-carousel h1{
	font-size: 3.5rem;
	letter-spacing: 1px;
	/* text-shadow: 0px 1px 3px #262626; */
}
.hero-bg-height{
	height: 80vh; 
}
.hero-section .owl-carousel h2, .hero-section .owl-carousel h3{
	text-shadow: 0.51px 0.51px #fffbf3 !important;
}
div#owl-box3 .owl-item{
	padding: 5px;
}
.desktop-hero{display: block;}
.mobile-hero{display: none;}
@media (max-width:991px) {
	.desktop-hero{display: none;}
.mobile-hero{display: block;}
	.navbar-light .navbar-toggler-icon {
		filter: brightness(1) invert(1);
	}
	.main-logo {
		max-width: 100%;
	}
	/* ul#header-navbar {
        margin-top: 60px;
    } */
	.practice-name{
		font-size: 22px;
		color: #010101;
	}
	.hero-section .owl-carousel h1{
		font-size: 1.5rem;
		text-shadow: 0.5px 0.5px #fffbf3;
	}
	.hero-section .owl-carousel h2, .hero-section .owl-carousel h3{
		font-size: 1.3rem;
		text-shadow: 0.51px 0.51px #fffbf3 !important;
	}
	.hero-bg-height{
		height: 80vh; 
	}
	/* Ensure navbar collapse works properly */
	.navbar-collapse {
		display: none !important;
	}
	.navbar-collapse.show,
	.navbar-collapse.collapsing {
		display: block !important;
	}
	/* Mobile Menu Styles */
	.desktop-nav-wrapper {
		display: none !important;
	}
	.mobile-nav-wrapper {
		display: block !important;
		width: 100%;
		padding: 15px 0;
	}
	.navbar-collapse.show .mobile-nav-wrapper,
	.navbar-collapse.collapsing .mobile-nav-wrapper {
		display: block !important;
	}
	.mobile-nav-wrapper #header-navbar-mobile {
		flex-direction: column;
		width: 100%;
		margin-bottom: 0;
		padding: 0;
		list-style: none;
	}
	.mobile-nav-wrapper #header-navbar-mobile .nav-item {
		width: 100%;
		display: block;
	}
	.mobile-nav-wrapper #header-navbar-mobile .nav-link {
		width: 100%;
		padding: 15px 20px;
		text-align: left;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		display: block;
		color: #dcc57e !important;
		font-size: 16px;
	}
	.mobile-nav-wrapper #header-navbar-mobile .nav-link:hover {
		background-color: rgba(255, 255, 255, 0.05);
		color: #e7cf90 !important;
	}
	.mobile-nav-wrapper #header-navbar-mobile .nav-link:last-child {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
	.mobile-nav-wrapper #header-navbar-mobile .sep {
		display: none;
	}
	.mobile-phone-number {
		width: 100%;
		padding: 20px 15px;
		text-align: center;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		margin: 0;
		background-color: rgba(0, 0, 0, 0.2);
		display: block;
	}
	.mobile-phone-number .call-us-btn {
		justify-content: center;
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 18px;
		width: 100%;
		padding: 10px;
		color: #dcc57e !important;
		text-decoration: none;
	}
	.mobile-phone-number .call-us-btn:hover {
		opacity: 0.9;
		color: #e7cf90 !important;
	}
	.mobile-phone-number .call-us-btn i {
		color: #e7cf90 !important;
	}
	#quick-action-mobile {
		width: 100%;
		display: flex !important;
		flex-direction: column !important;
		gap: 12px;
		padding: 15px;
		margin: 0;
		border: none;
	}
	#quick-action-mobile .btn {
		width: 100% !important;
		margin: 0 !important;
		padding: 14px 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		font-size: 16px;
		font-weight: 500;
		border: 1px solid #f1d5b1;
		background: linear-gradient(90deg, #A17D51, #f1e9b0 55%, #a17d53);
		color: #010101 !important;
		border-radius: 4px;
	}
	#quick-action-mobile .btn i {
		color: #010101 !important;
		font-size: 20px;
	}
	#quick-action-mobile .btn:hover,
	#quick-action-mobile .btn:focus,
	#quick-action-mobile .btn:active {
		background: linear-gradient(90deg, #f1e9b0, #A17D51 55%, #f1e9b0);
		border-color: #f1d5b1;
		color: #010101 !important;
	}
	#quick-action-mobile .btn:hover i,
	#quick-action-mobile .btn:focus i,
	#quick-action-mobile .btn:active i {
		color: #010101 !important;
	}
}
@media (min-width: 992px) {
	.mobile-nav-wrapper {
		display: none !important;
	}
	.desktop-nav-wrapper {
		display: flex !important;
	}
}

/*********************
	Header CSS End
*********************/

/*********************
	Back To Top CSS
*********************/
#back-to-top {
	display: inline-block;
	background-color: #e7cf90;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 4px;
	position: fixed;
	bottom: 25px;
	right: 25px;
	transition: background-color .3s,
		opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}

#back-to-top::after {
	content: "\e5d8";
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 1.5em;
	line-height: 40px;
	color: #010101;
}
#back-to-top:hover::after {
    filter: brightness(1);
}

#back-to-top:hover {
	cursor: pointer;
	background: linear-gradient(90deg, #A17D51, #f1e9b0 55%, #a17d53);
}

#back-to-top:active {
	background-color: #e7cf90;
}

#back-to-top.show {
	opacity: 1;
	visibility: visible;
	cursor: pointer !important;
}

/*********************
	Back To Top CSS End
*********************/

div#insurance-nearby-location li,
div#insurance-nearby-location th,
div#insurance-nearby-location td {
	color: #010101 !important;
}

div#insurance-nearby-location a,
div#insurance-nearby-location i {
	color: #010101 !important;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	background: linear-gradient(90deg, #A17D51, #f1e9b0 55%, #a17d53);
	border-color: #dee2e6 #dee2e6 #010101;
	color: #010101 !important;
}
.faq-tabs .card {
    margin-bottom: 5px;
}
#services-tools {
    background: #f3ffcf;
    padding: 15px 10px;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
}
#services-tools li {
    border: 1px solid #d3d3d3;
    margin: 5px 2px;
}
.carousel-control-prev, .carousel-control-next{filter: brightness(5) invert(1);}

.highlight-bx {
    background: #010101;
    padding: 15px;
    border-left: 3px solid #e7cf90;
    border-radius: 5px 15px 15px 5px;
}
div#hero-cta h1 {
	font-size: 2.1rem;
}
.fs-22 {
    font-size: 22px;
    font-weight: 600;
}
.fs-20 {
    font-size: 20px;
    font-weight: 600;
}
.fs-18 {
    font-size: 18px;
    font-weight: 600;
}
.local-panel h4, .local-panel h3, .local-panel h2, .local-panel h1, .local-panel p, .local-panel td, .local-panel th, .local-panel a, .local-panel i {
    color: #010101 !IMPORTANT;
}
.doc-img-caption {
    background: #010101;
    padding: 10px;
    color: #f6df9c !important;
}
div#insurance-providers h5{color: #ffc090;}
.medicbuilding {
    background: linear-gradient(90deg, #A17D51, #f1e9b0 55%, #a17d53);
}
.medicbuilding img {
    padding: 2px;
    background: linear-gradient(90deg, #A17D51, #f1e9b0 55%, #a17d53);
    border-radius: 0px;
}
.bx-highlight {
    border-radius: 5px;
    width: max-content;
    padding: 20px;
    background: #f2f8ff;
    box-shadow: 0 0 2px #c1c1c1;
}
/* #practice-description h4, */
#patient-portal h4,
#patient-tools h4,
#faqs h4 {
	color: #fff !important;
}

/* Style for FAQ iframe heading - overlay approach */
#faqs {
	position: relative;
}

#faqs iframe {
	background: transparent;
}

/* Create a white heading overlay on top of the iframe */
#faqs::before {
	content: "Frequently Asked Questions";
	position: absolute;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff !important;
	font-size: 1.5rem;
	font-weight: 400;
	z-index: 10;
	text-align: center;
	width: 100%;
	pointer-events: none;
	/* background: rgba(0, 0, 0, 0.3); */
	padding: 10px 20px;
	border-radius: 5px;
}
@media (min-width:768px) and (max-width:991px) {
	div#hero-cta h1 {
		font-size: 1.7rem;
	}
	div#hero-cta h3 {
		font-size: 1.5rem;
	}
}
@media (max-width: 767px) {
	div#hero-cta {
		position: absolute;
		text-align: right;
		max-width: 97%;
	}
	.provider-education {
		min-height: auto;
	}
	/* div#hero-cta h1 {
		display: inline-flex;
		max-width: 70%;
		padding-left: 35px;
		font-size: 1.3rem;
	} */
	div#hero-cta h1 {
        /* display: inline-flex; */
        max-width: 100%;
        padding-left: 35px;
        font-size: 1.3rem;
    }
	div#hero-cta h3 {
		font-size: 1.22rem;
	}

	#hero-cta .btn {
		width: 55%;
	}

	.hero-btns {
		text-align: -webkit-left;
	}

	#practice-description,
	#patient-portal,
	#patient-tools,
	#faqs {
		padding-top: 50px !important;
	}

	/* #practice-description h4,
	#patient-portal h4,
	#patient-tools h4,
	#faqs h4 {
		color: #000 !important;
	} */
	div#important-notice .list-group-item {
		padding: 0.75rem 0.22rem !important;
	}
	#faqs::before{
		top: 50px !important;
	}
}
@media (max-width: 380px){
	.main-logo {
        max-width: 120px;
    }
	div#hero-cta h1 {
		display: inline-flex;
		max-width: 100%;
		padding-left: 35px;
		font-size: 1.3rem;
	}
	#hero-section {
        padding: 70px 14px;
    }
}
@media (max-width: 325px){
	#hero-cta .btn {
		width: 65%;
	}
}

