/*http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)*/


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

HTML5 display-role reset for older browsers article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*IMPORT FONTS*/
@font-face {
	font-family: Myriad;
	src: url("fonts/MYRIADPRO-REGULAR.OTF") format("opentype");
}

@font-face {
	font-family: Myriad;
	font-weight: bold;
	src: url("fonts/MYRIADPRO-BOLD.OTF") format("opentype");
}


/*START OF CUSTOM STYLES*/

html{
	scroll-behavior: smooth;
}

#container {
	width: 100%;
}

main {
	width: 100%;
}

/*INTRO SECTION*/
#intro_container {
	width: calc(100vw);
	height: calc(47.5vw);
}

#intro_image {
	width: calc(100vw);
	height: calc(47.5vw);
	position: absolute;
	z-index: -1;
}

#intro_image_mobile {
	display: none;
}

#text_elements {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#text_elements header {
	margin-top: 1%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 21%;
}

#hamburger{
	display: none;
	cursor: pointer;
}

#nav_list_mobile {
	width: 100%;
	text-align: right;
	position: absolute;
	padding-top: 20px;
	top: calc(28vw);
	background-color: #23222C;
}

#nav_list_mobile li {
	margin-bottom: 20px;
	padding-right: 50px;
}

#nav_list_mobile li a {
	font-size: 40px;
}

#nav_list li a:hover{
	color: #FACF17;
}

#logo {
	width: calc(10vw);
	height: calc(10vw);
	display: flex;
	justify-content: center;
	align-items: center;
	background: none;
	border: none;
	margin-left: 2%;
}

#logo img {
	width: calc(10vw);
	height: calc(10vw);
}

#text_elements header nav {
	height: 27%;
	width: 20%;
	margin-right: 10%;
}

#nav_list{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100;
	height: 100%;
}

#nav_list li {
	color: white;
}

#intro_title {
	height: 14%;
	width: 70%;
	margin-left: 10%;
}

#intro_title h1 {
	margin-bottom: 2%;
}

#intro_buttons {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 13%;
}

#intro_buttons img {
	margin-right: 5%;
}

#contact_button_top_mobile {
	display: none;
}

#contact_button_top {
	background-color: #8DC347;
	border: none;
	border-radius: 3px;
	width: 10%;
	height: 48%;
	margin-right: 4%;
	transition: 250ms;
}

#contact_button_top img {
	width: calc(1vw);
	height: calc(0.7vw);
}

#contact_button_top:hover {
	background-color: #85B244;
}

#contact_button_top:active {
	opacity: 50%;
}

#intro_buttons a{
	margin-left: 4%;
}

#scroll_button {
	width: calc(5vw);
	height: calc(2.5vw);
	margin-top: calc(3.7vw);
	opacity: 50%;
	background: none;
	border: none;
	transition: 500ms;
}

#scroll_button img {
	width: calc(5vw);
	height: calc(2.5vw);
}

#scroll_button:hover {
	cursor: pointer;
	opacity: 100;
}

/*ABOUT BUSINESS SECTION*/
#about_business_block {
	display: flex;
	width: 100%;
	height: 50vw;
	background-color: #FCFBFC;
	justify-content: center;
	align-items: center;
}

#about_content_container {
	display: flex;
	width: 78%;
	height: 73%;
	justify-content: space-between;
}

#about_picture {
	height: 100%;
	width: 43%;
	border-radius: 2%;
}

#about_business_block_text_container {
	width: 52%;
	height: 100%;
}

#about_business_block_text_container h3 {
	text-align: justify;
	margin-bottom: 5%;
}

#about_business_block_text_container p {
	line-height: 1.20;
	text-align: justify;
	margin-bottom: 4%;
}

#list_container {
	display: flex;
	background-color: #F2F7E8;
	width: 100%;
	height: 52%;
	justify-content: center;
	align-items: center;
	margin-top: 5%;
}

#list {
	display: flex;
	width: 90%;
	height: 80%;
	flex-direction: column;
	justify-content: space-between;
}

/*ABOUT DOCTOR SECTION*/

#about_doctor_block {
	display: flex;
	width: calc(100vw);
	height: calc(50vw);
	align-items: center;
}

#about_doctor_background {
	width: calc(100vw);
	height: calc(44vw);
	position: absolute;
	z-index: -1;
}

#about_doctor_background_mobile{
	display: none;
}

#about_doctor_content {
	height: 66%;
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

#about_doctor_content img {
	width: calc(25vw);
	height: calc(29vw);
	margin-right: calc(17vw);
	border-radius: 2%;
}

#about_doctor_text_container {
	height: 100%;
	width: 28%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	margin-left: calc(17vw);
}

#about_doctor_text_container h3 {
	margin-top: calc(3.5vw);
}

#about_doctor_text_container p {
	text-align: justify;
	text-justify: distribute;
	margin-top: calc(1.5vw);
}

#about_doctor_text_container p:last-child {
	margin-top: calc(1.2vw);
	margin-bottom: calc(5vw);
}

/*SERVICES BLOCK*/

#services_block {
	width: 100%;
	height: calc(44vw);
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

#services_block h3{
	margin-top: calc(1vw);
}

#services_block h4{
	margin-bottom: calc(3vw);
}

/*CAROUSEL*/

.slider-wrapper {
	margin: 1rem;
	position: relative;
	overflow: show;
	margin-bottom: calc(4vw);
}

.slides-container {
	height: calc(26vw);
	width: calc(78vw);
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: scroll;
	scroll-behavior: smooth;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

.slides-container::-webkit-scrollbar {
	display: none;
}

.slide {
	position: relative;
	display: flex;
	justify-content: center;
	padding: 0 0.8%;
	width: calc(25vw);
	height: calc(25vw);
}

.slide img {
	width: calc(25vw);
	height: calc(25vw);
	cursor: pointer;
}

.slide p {
	position: absolute;
	bottom: calc(1.5vw);
}

.slide-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	margin-top: calc(12vw);
	height: calc(2vw);
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	opacity: 80%;
}

.slide-arrow:hover,
.slide-arrow:focus {
	opacity: 100%;
}

.slide-arrow:active{
	opacity: 70%;
}

#slide-arrow-prev {
	right: calc(80vw);
}

#slide-arrow-next {
	left: calc(80vw);
}

/*SERVICES MODAL*/

section.modal {
	gap: 0.4rem;
	width: 450px;
	padding: 1.3rem;
	background-color: white;
	border-radius: 15px;
}

.modal .button_container {
	float: right;
}

.modal h3 {
	font-family: 'Myriad', sans-serif;
	font-family: 'Myriad', sans-serif;
	color: #3f763f;
	font-size: 28pt;
	font-weight: bold;
	margin: 20px 0;
	padding: 0 20px;
}

.modal p {
	font-family: 'Myriad', sans-serif;
	color: #343330;
	font-size: 14pt;
	font-weight: normal;
	margin: 0.4rem 0 0.2rem;
	margin: 0 0 20px 0;
	padding: 0 20px;
}

.close_button {
	opacity: 80%;
	cursor: pointer;
	border: none;
	padding: 0.8rem 1.4rem;
	background-color: #C4C4C4;
	color: white;
	border-radius: 5px;
	font-size: calc(0.7vw);
	padding: calc(0.5vw) calc(0.6vw); 
	border-radius: 50%;
	font-weight: bold;
}

.close_button:hover{
	opacity: 100%;
}

.overlay {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(3px);
}

.hidden {
	display: none !important;
}

/*CONSULTATION REQUEST BLOCK */

#consultation_request_block{
	width: calc(100vw);
	height: calc(20vw);
	background-color: #588640;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

#consultation_request_block span{
	display: inline-block;
	margin-top: calc(3.8vw);
}

#consultation_request_block button{
	width: calc(27vw);
	height: calc(5vw);
	background-color: #8DC347;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-bottom: calc(3.8vw);
	transition: 250ms;
}

#consultation_request_block button:hover {
	background-color: #85B244;
}

#consultation_request_block button:active {
	opacity: 50%;
}

/*CONTACT MODAL*/

section.contact_modal {
	gap: 0.4rem;
	width: calc(40vw);
	height: calc(34vw);
	padding: 1.3rem;
	background-color: white;
	border-radius: 15px;
}

.contact_modal .button_container {
	float: right;
}

.contact_modal h3 {
	font-family: 'Myriad', sans-serif;
	font-family: 'Myriad', sans-serif;
	color: #3f763f;
	font-size: calc(2vw);
	font-weight: bold;
	margin: 4.5% 0 2.5% 0;
	padding: 0 20px;
}

.contact_modal label {
	display: block;
	margin: 0 2.5% 0 2.5%;
	font-family: 'Myriad', sans-serif;
	color: #23222C;
	font-size: calc(1vw);
	font-weight: bold;
}

.contact_modal input {
	display: block;
	margin-bottom: 15px;
}

.contact_modal p.contact_form_warning {
	color: red;
	margin-top: 0.5vw;
	margin-left: calc(25vw);
}

.required:after {
	content: " *";
	color: red;
}

.one_line_input{
	width: 87.5%;
	margin: 1% 2.5% 2.5% 2.5%;
	padding: 1.5% 2% 0.75% 2%;
	background-color: #d9d8d9;
	color: #3f4144;
	border-radius: 3px;
	border: none;
	font-family: 'Myriad', sans-serif;
	font-size: calc(1vw);
	font-weight: normal;
}

.multi_line_input{
	width: 87.5%;
	height: calc(10vw);
	margin: 1% 2.5% 3% 2.5%;
	padding: 1.5% 2% 0.75% 2%;
	background-color: #d9d8d9;
	color: #3f4144;
	border-radius: 3px;
	border: none;
	font-family: 'Myriad', sans-serif;
	font-size: calc(1vw);
	font-weight: normal;
}

#submit_contact_button{
	background-color: #588640;
	opacity: 90%;
	color: white;
	border: none;
	border-radius: 3px;
	margin-left: calc(29.5vw);
	padding: 1.5% 2% 1% 2%;
	font-family: 'Myriad', sans-serif;
	font-size: calc(1.1vw);
	font-weight: normal;
}

#submit_contact_button:hover{
	opacity: 100%;
}

#submit_contact_button:active{
	opacity: 50%;
}

/*FOOTER*/

footer{
	width: calc(100vw);
	height: calc(9vw);
	background-color: #23222C;
	display: flex;
	justify-content: center;
	align-items: center;
}

#footer_content{
	width: calc(27.5vw);
	height: calc(5vw);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#sitseal{
	position: absolute;
	height: calc(2vw);
	width: calc(6vw);
}

#footer_logo{
	height: calc(5vw);
	width: calc(5vw);
}

#footer_text{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 47%;
	opacity: 70%;
}

/*TEXT STYLES*/

.text_green_title {
	font-family: 'Myriad', sans-serif;
	color: #3f763f;
	font-size: calc(2.5vw);
	font-weight: bold;
}

.text_green_subtitle {
	font-family: 'Myriad', sans-serif;
	color: #3f763f;
	font-size: calc(1vw);
	font-weight: bold;
	list-style: circle inside;
}

.text_green_70 {
	font-family: 'Myriad', sans-serif;
	color: #3f763f;
	font-size: calc(3.7vw);
	font-weight: bold;
}

.text_gray_14 {
	font-family: 'Myriad', sans-serif;
	color: #343330;
	font-size: calc(1vw);
	font-weight: normal;
}

.text_gray_12 {
	font-family: 'Myriad', sans-serif;
	color: #343330;
	font-size: calc(0.9vw);
	font-weight: normal;
}

.text_gray_45 {
	font-family: 'Myriad', sans-serif;
	color: #343330;
	font-size: calc(2.8vw);
	font-weight: normal;
}

.text_white_15 {
	font-family: 'Myriad', sans-serif;
	color: #FCFBFC;
	font-size: calc(0.7vw);
}

.text_white_20 {
	font-family: 'Myriad', sans-serif;
	color: #FCFBFC;
	font-size: calc(1vw);
	font-weight: normal;
	text-decoration: none;
}

.text_white_25 {
	font-family: 'Myriad', sans-serif;
	color: #FCFBFC;
	font-size: calc(1.1vw);
	font-weight: normal;
	line-height: 1.4;
}

.text_white_30 {
	font-family: 'Myriad', sans-serif;
	color: #FCFBFC;
	font-size: calc(1.48vw);
	line-height: 1.4;
}

.text_white_35 {
	font-family: 'Myriad', sans-serif;
	color: #FCFBFC;
	font-size: calc(1.6vw);
}

.text_white_45 {
	font-family: 'Myriad', sans-serif;
	color: #FCFBFC;
	font-size: calc(2.6vw);
	font-weight: bold;
}

.text_white_50_top {
	font-family: 'Myriad', sans-serif;
	color: #FCFBFC;
	font-size: calc(3vw);
	font-weight: normal;
	opacity: 80%;
}

.text_white_50 {
	font-family: 'Myriad', sans-serif;
	color: #FCFBFC;
	font-size: calc(3vw);
	font-weight: bold;
}

.text_white_50 span {
	font-weight: bold;
}

.text_white_78 {
	font-family: 'Myriad', sans-serif;
	color: #FCFBFC;
	font-size: calc(4vw);
	font-weight: bold;
}

.text_yellow_45 {
	font-family: 'Myriad', sans-serif;
	color: #FACF17;
	font-size: calc(2.6vw);
	font-weight: bold;
}

/*MOBILE STYLING BREAKPOINT*/
@media only screen and (max-width: 600px) {
	#intro_container {
		width: calc(100vw);
		height: calc(148vw);
	}
	
	#intro_image {
		display: none;
	}
	
	#intro_image_mobile {
		margin-top: calc(29vw);
		display: block;
		width: calc(100vw);
		height: calc(118vw);
		position: absolute;
		z-index: -1;
	}

	#text_elements {
		height: calc(148vw);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	#text_elements header {
		background-color: #23222C;
		margin-top: 0;
		height: calc(29vw);
	}

	#logo {
		width: calc(20vw);
		height: calc(20vw);
		margin-left: 4%;
	}

	#logo img {
		width: calc(20vw);
		height: calc(20vw);
	}

	#nav_list {
		display: none;
	}

	nav{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	#hamburger {
		display: block;
		width: calc(10vw);
		height: calc(10vw);
		background: none;
		border: none;
		margin-left: 55%;
	}

	#hamburger img {
		width: 100%;
		height: 100%;
	}

	#intro_title {
		height: 14%;
		width: 90%;
		margin-left: 7%;
		margin-bottom: -90%;
	}

	#intro_title h1 {
		margin-bottom: 2%;
		font-size: calc(5.5vw);
	}

	#intro_title h2{
		font-size: calc(4vw);
	}

	#intro_buttons {
		display: flex;
		justify-content: space-between;
		height: calc(20vw);
	}

	#intro_buttons img {
		margin-right: 5%;
	}

	#contact_button_top {
		display: none;
	}

	#contact_button_top_mobile {
		display: block;
		background-color: #8DC347;
		border: none;
		border-radius: 50%;
		width: calc(13vw);
		height: calc(13vw);
		margin-right: 4%;
		transition: 250ms;
	}

	#contact_button_top_mobile img {
		width: calc(6.5vw);
		height: calc(6.5vw);
		margin: 2% 0 0 2%;
	}

	#intro_buttons a{
		margin-left: 4%;
	}

	#scroll_button {
		display: none;
	}
	

	/*ABOUT BUSINESS SECTION*/
	#about_business_block {
		height: calc(317vw);
		background-color: #FCFBFC;
		justify-content: center;
		align-items: center;
	}

	#about_content_container {
		width: 100%;
		height: 100%;
	}

	#about_picture {
		display: none;
	}

	#about_business_block_text_container {
		width: 100%;
		height: 100%;
	}

	#about_business_block_text_container h3 {
		text-align: center;
		margin: 15% 8% 7% 8%;
		font-size: calc(7vw);
	}

	#about_business_block_text_container p {
		line-height: 1.20;
		text-align: auto;
		margin: 7% 8%;
		font-size: calc(4vw);
	}


	#list_container {
		height: calc(190vw);
		margin-top: 1%;
	}

	#list {
		display: flex;
		width: 85%;
		height: 85%;
		flex-direction: column;
		justify-content: space-between;
	}

	#list li{
		display: flex;
		flex-direction: column;
	}

	#list span{
		font-size: calc(4vw);
	}

	/*ABOUT DOCTOR SECTION*/

	#about_doctor_block {
		display: flex;
		width: calc(100vw);
		height: calc(200vw);
		align-items: center;
	}

	#about_doctor_background {
		display: none;
	}

	#about_doctor_background_mobile{
		display: block;
		width: calc(100vw);
		height: calc(200vw);
		position: absolute;
		z-index: -1;
	}

	#about_doctor_content {
		width: calc(100vw);
		height: calc(184vw);
		display: flex;
		flex-direction: column-reverse;
		justify-content: space-around;
		align-items: center;
	}

	#about_doctor_content img {
		width: calc(62vw);
		height: calc(71vw);
		margin-right: 0;
		border-radius: 2%;
		margin-top: calc(7vw);
	}

	#about_doctor_text_container {
		height: 100%;
		width: calc(82vw);
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		margin: calc(7vw) 0 0 0;
	}

	#about_doctor_text_container h3 {
		font-size: calc(7.5vw);
		margin-top: 0;
	}

	#about_doctor_text_container p {
		margin-top: 0;
		font-size: calc(4vw);
	}

	#about_doctor_text_container p:last-child {
		margin: 0;
	}

	/*SERVICES BLOCK*/

	#services_block {
		width: 100%;
		height: calc(139vw);
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}

	#services_block h3{
		margin-top: calc(12vw);
		font-size: calc(5vw);
	}

	#services_block h4{
		margin-bottom: 0;
		font-size: calc(7vw);
	}

	/*CAROUSEL*/

	.slider-wrapper {
		width: calc(100vw);
		height: calc(82vw);
		position: relative;
		overflow: show;
		display: flex;
		justify-content: center;
		margin-top: calc(8vw);
		margin-bottom: calc(22vw);
	}

	.slides-container {
		width: calc(82vw);
		height: calc(82vw);
	}

	.slides-container::-webkit-scrollbar {
		display: none;
	}

	.slide {
		position: relative;
		display: flex;
		justify-content: center;
		padding: 0 0.8%;
		width: calc(82vw);
		height: calc(82vw);
	}

	.slide img {
		width: calc(82vw);
		height: calc(82vw);
	}

	.slide p {
		bottom: calc(1.5vw);
		font-size: calc(5vw);
	}

	.slide-arrow {
		top: 0;
		bottom: 0;
		margin-top: calc(85vw);
		height: calc(2vw);
		opacity: 100%;
	}

	/*SERVICES MODAL*/

	section.modal {
		gap: 0rem;
		width: calc(100vw);
		height: calc(100vh);
		padding: 0;
		background-color: white;
		border-radius: 0px;
		position: fixed;
		opacity: 80%;
	}

	.modal .button_container {
		float: right;
	}

	.modal h3 {
		font-family: 'Myriad', sans-serif;
		font-family: 'Myriad', sans-serif;
		color: #3f763f;
		font-size: calc(6.75vw);
		font-weight: bold;
		margin: 22.5vw 10vw 10vw 10vw;
		padding: 0;
	}

	.modal p {
		font-family: 'Myriad', sans-serif;
		color: #343330;
		line-height: 1.3;
		font-size: calc(4vw);
		font-weight: normal;
		margin: 10vw 10vw 0 10vw;
		padding: 0;
	}

	.close_button {
		opacity: 100%;
		background-color: #C4C4C4;
		color: white;
		border-radius: 50%;
		font-size: calc(4vw);
		padding: calc(2vw) calc(2.5vw); 
		margin: calc(4vw);
	}

	/*CONSULTATION REQUEST BLOCK */

	#consultation_request_block{
		width: calc(100vw);
		height: calc(38vw);
		background-color: #588640;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}

	#consultation_request_block div{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#consultation_request_block span{
		font-size: calc(5vw);
		margin-top: 0;
	}

	#consultation_request_block span:first-child{
		margin-top: calc(5vw);
	}

	#consultation_request_block button{
		width: calc(53vw);
		height: calc(10vw);
		font-size: calc(3.8vw);
		margin-bottom: calc(5vw);
	}

	/*CONTACT MODAL*/

	section.contact_modal {
		gap: 0;
		width: calc(100vw);
		height: calc(100vh);
		padding: 0;
		border-radius: 0;
		opacity: 90%;
		display: fixed;
	}

	.contact_modal .button_container {
		float: right;
	}

	.contact_modal h3 {
		font-size: calc(6.75vw);
		margin: 15vw 10vw 8vw 10vw;
		padding: 0;
	}

	.contact_modal label {
		margin: 3vw 10vw;
		font-size: calc(4vw);
	}

	.contact_modal input {
		display: block;
		margin-bottom: 15px;
	}

	.one_line_input{
		width: 73%;
		margin: 3vw 10vw;
		padding: 1.5% 2% 0.75% 2%;
		font-size: calc(4vw);
	}

	.multi_line_input{
		width: 74%;
		height: 200px; 
		margin: 0 10vw 3vw 10vw;
		padding: 0;
		font-size: calc(4vw);
	}

	#submit_contact_button{
		opacity: 100%;
		color: white;
		border: none;
		margin-left: calc(50vw);
		padding: 2.5% 3% 1% 3%;
		font-family: 'Myriad', sans-serif;
		font-size: calc(5vw);
		font-weight: normal;
	}

	.contact_modal p.contact_form_warning {
		margin-left: 40vw;
		margin-top: 1vw;
	}

	/*FOOTER*/

	footer{
		height: calc(28vw);
	}

	#footer_content{
		width: 55vw;
		height: 28vw;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	#footer_content img{
		display: none;
	}

	#footer_text{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		height: 40%;
		opacity: 70%;
	}

	#footer_text p{
		font-size: 3vw;
	}

} 
