* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

ul, ol {
	list-style: none;
}

html {
	width: 100vw;
	scroll-behavior: smooth;
	font-size: 100%;
}

.index-body {
	width: 100%;
	font-family:'Times New Roman', Times, serif;
}

button:not(.close-modal, .slider__btn, .dots__dot--active, .dots__dot) {
	background-color: white;
	color: black;
	border-color: black;
	font-size: 2vw;
	border-radius: 20px;
	padding: 5px 10px;
	cursor: pointer;
	width: max-content;
}

button:active:not(.slider__btn, .dots__dot--active, .dots__dot) {
	background-color: darkgreen;
}

button:hover:not(.next, .slider__btn, .dots__dot.dots__dot, .dots__dot--active), button:active:not(.next, .slider__btn, .dots__dot--active) {
	box-shadow: 2px 2px 15px 5px black;
}

@media only screen and (max-width: 835px) {
	button:not(.close-modal, .slider__btn) {
		font-size: 5vw;
	}
}

/* Header and nav styling */
header {
	width: 100%;
	height: auto;
	min-height: 180px;
	display: flex;
	align-items: center;
}

.mobile-header {
	display: none;
}

.name {
	width: 20%;
	display: flex;
	background-color: whitesmoke;
	border-radius: 30px;
	border: 2px solid black;
	margin-left: 2vw;
}

.name > h1 {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 3vw;
	padding: 10px 0px;
	color:black;
}

.std-header-nav {
	width: 80%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	z-index: 100;
}

.std-header-nav-links {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.std-header-nav-links > li {
	display: flex;
	flex-wrap: nowrap;
	margin: 0 9px;
	transition: transform .2s ease-in-out;
}

.std-header-nav-links li:hover, 
.std-header-nav-links li:focus {
	transform: translateY(-5px);
	opacity: 0.5;
}

.std-header-nav-links li:last-of-type {
	margin-right: 50px;
}

.std-header-nav-links li a:hover {
	cursor: pointer;
}

.std-header-nav-links li a, .mobile-nav-links {
	text-decoration: none;
	position: relative;
	color: black;
	font-size: 2vw;
}

.std-header-nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: black;
    bottom: -15px;
    left: 0;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform .7s ease-in-out;
	pointer-events: none;
  }

.std-header-nav-links a:hover::after, 
.std-header-nav-links a:focus::after {
  transform-origin: center;
  transform: scaleX(1);
}

@media only screen and (max-width: 1100px) {
	header {
		flex-direction: column;
		align-items: center;
	}

	.name {
		margin: 40px 0;
	}

	.std-header-nav {
		width: 100vw;
		justify-content: center;
	}

	.std-header-nav-links li {
		margin: 0 10px;
	}

	.std-header-nav-links li a {
		font-size: 2.8vw;
	}

	.std-header-nav-links li:last-of-type {
		margin-right: 0;
	}
}

@media only screen and (max-width:835px) {
	.std-header {
		display: none;
	}

	.mobile-header {
		display: block;
	}

	.mobile-topbar {
		width: 100vw;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		margin: 40px auto;
	}

	.mobile-name > h1 {
		font-size: 10vw;
		background-color: white;
		padding: 5px 12px;
		border-radius: 25px;
		margin-left: 20px;
	}

	.icon {
		background: white;
		font-size: 8vw;
		padding: 4px 8px;
		border-radius: 8px;
		margin-right: 50px;
		border: 2px solid black;
	}

	.icon i {
		color: black;
	}

	.mobile-navbar {
		display: block;
		width: 20vw;
	}

	.mobile-nav-links {
		z-index: 100;
	}

	.mobile-nav-links li {
		width: max-content;
		background-color: white;
		margin-top: 15px;
		margin-left: 20px;
		transform: translateX(-200px);
		opacity: 0;
		transition-property: transform, opacity;
		transition-property: all;
		transition-duration: .5s;
  		transition-timing-function: ease-in-out;
		padding: 3px 12px;
		border-top-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}

	.mobile-nav-links li.add-transition {
		transform: translateX(0px);
  		opacity: 100%;
	}

	.mobile-nav-links li:first-of-type {
		margin-top: 35px;
		transition-delay: 0ms;
	}

	.mobile-nav-links li:nth-of-type(2) {
		transition-delay: 100ms;
	}

	.mobile-nav-links li:nth-of-type(3) {
		transition-delay: 200ms;
	}

	.mobile-nav-links li:nth-of-type(4) {
		transition-delay: 300ms;
	}

	.mobile-nav-links li:nth-of-type(5) {
		transition-delay: 400ms;
	}

	.mobile-nav-links li:nth-of-type(6) {
		transition-delay: 500ms;
	}

	.mobile-nav-links li:last-of-type {
		margin-bottom: 35px;
		transition-delay: 600ms;
	}

	.mobile-nav-links li a {
		color: black;
		text-decoration: none;
		font-size: 4vw;
	}
}

@media only screen and (max-width: 475px) {
	.intro {
		z-index: 0;
	}
	
	.mobile-header {
		display: flex;
		flex-direction: column;
		align-items: center;
		z-index: 1000;
	}
	
	.mobile-topbar {
		flex-direction: column;
		align-items: center;
		margin: 80px 0;
		width: 100vw;
	}

	.mobile-name > h1 {
		font-size: 12vw;
	}

	.icon {
		font-size: 12vw;
		padding: 4px 8px;
		border-radius: 8px;
		margin: 0;
		margin-top: 40px;
	}

	.mobile-navbar {
		width: 100vw;
		height: 60vh;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.mobile-nav-links {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0;
		transition: height 1s;
	}

	.increaseHeight{
		height: 90vh;
	}

	.mobile-nav-links li {
		margin-left: 0;
		width: max-content;
		height: 45px;
		transform: translateY(-50px);
		opacity: 0;
		transition-property: transform opacity height;
		transition-property: all;
		transition-duration: .25s;
  		transition-timing-function: ease-in-out;
		text-align: center;
		border-radius: 20px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.add-transition {
		transform: translateY(0px);
  		opacity: 100%;
	}

	.mobile-nav-links li:first-of-type {
		margin-top: 5px;
		transition-delay: 0ms;
	}

	.mobile-nav-links li:nth-of-type(2) {
		transition-delay: 50ms;
	}

	.mobile-nav-links li:nth-of-type(3) {
		transition-delay: 100ms;
	}

	.mobile-nav-links li:nth-of-type(4) {
		transition-delay: 150ms;
	}

	.mobile-nav-links li:nth-of-type(5) {
		transition-delay: 200ms;
	}

	.mobile-nav-links li:nth-of-type(6) {
		transition-delay: 250ms;
	}

	.mobile-nav-links li:last-of-type {
		margin-bottom: 35px;
		transition-delay: 300ms;
	}

	.mobile-nav-links li a {
		color: black;
		text-decoration: none;
		font-size: 5.5vw;
	}
}


/* main styling */
main {
	width: 100%;
	background-color: white;
	padding: 0;
}

/* Intro styling */
.intro {
	display: flex;
	width: 100%;
	background-color: rgb(249, 246, 156);
	transform: skewY(-10deg);
	margin-top: 30vh;
	z-index: -10;
}

.headline-tags {
	width: 60%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: skewY(10deg);
	z-index: -10;
}

.headline-tags ul {
	display: flex;
	flex-direction: column;
	transform: skewY(-10deg);
}

.headline-tags li {
	font-size: 5vw;
}

.headline-tags button {
	transform: skewY(10deg);
	margin-top: 50px;
}

.bounce  {
	position: relative;
}

.bounce:hover {
	animation-name: bounce;
	animation-duration: 1s;
}

@keyframes bounce {
	20% {color: red; bottom: 5px}
	50% {color: green}
	100% {color: blue}
}

.violin-image {
	width: 40%;
	height: 100vh;
	transform: rotate(5deg) rotateY(10deg);
}

.narrow-screen-violin-image {
	display: none;
}

.violin-image img {
	width: 65%;
}

@media only screen and (max-width: 974px) {
	.intro {
		flex-direction: column;
		align-items: center;
		margin-top: 4vh;
	}

	.headline-tags {
		margin: 10px 0;
		height: auto;
	}

	.headline-tags li {
		font-size: 7vw;
	}

	.headline-tags li:last-of-type {
		align-self: center;
	}

	.violin-image {
		display: none;
	}

	.narrow-screen-violin-image {
		display: flex;
		justify-content: center;
		width: 100vw;
		margin-top: 100px;
	}

	.narrow-screen-violin-image img {
		width: 60%;
	}
}

@media only screen and (max-width: 835px) {
	.headline-tags button {
		margin: 100px 0;
	}

	.narrow-screen-violin-image {
		margin-top: 0px;
	}
}

/* Ethos styling */
.ethos-intro-section {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	padding: 10vh 0;
	border-top: 20px solid white;
	margin-top: 120px;
}

.ethos-intro {
	width: 40%;
	font-size: 2vw;
}

.ethos-learn-more {
	margin-top: 35px;
}

figure {
	width: 35%;
}

figure > img {
	width: 90%;
	border: 2px solid black;
	margin-top: -20px;
	box-shadow: 3px 3px 5px 4px;
	margin-bottom: 10px;
	transform: rotateZ(5deg);
	transition: transform 1s ease-in-out .5s;
}

figure > img:hover {
	transform: rotateZ(0);
}

@media only screen and (max-width: 1200px){
	.ethos-intro {
		font-size: 3vw;
	}
}

@media only screen and (max-width: 640px) {
	.ethos-intro-section {
		flex-direction: column-reverse;
		align-items: center;
		margin-top: 0px;
	}

	figure {
		width: 60%;
		margin-bottom: 90px;
	}

	.ethos-intro {
		width: 70%;
		font-size: 7vw;
	}
}


/* Ethos modal window styling */
.ethos-more-section {	
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 75px;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	backdrop-filter: blur(5px);
}

.ethos-more {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	width: 90%;
	height: 90vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: url(images/violin.jpg);
	background-size: cover;
	border: 3px solid white;
	box-shadow: 10px 10px 10px 5px black;
	color: white;
	line-height: 1.5;
}

.close-modal {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 22px;
	height: 22px;
	background-color: white;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.ethos-more__paragraph {
	width: 80%;
	padding: 10px 18px 10px 45%;
	text-align: right;
	align-self: flex-end;
	color: white;
	text-shadow: 3px 3px 2px black;
}

.next {
	position: fixed;
	bottom: 20px;
}

.hidden {
	display: none;
}

@media only screen and (max-width: 640px) {
	.ethos-more {
		box-shadow: none;
	}

	.ethos-more__paragraph {
		width: 90%;
		align-self: auto;
		padding: 20px 0;
		text-align: center;
		font-size: 1.2rem;
	}	
}

@media only screen and (max-width: 340px) {
	.ethos-more {
		width:80%;
		height: 100vh;
	}
}

/* Bio styling */
#bio {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-image: url('images/violin-and-music.jpg');
	background-size: cover;
	padding-bottom: 40px;
	border-top: 50px solid white;
	margin: 0;
}

#bio > h2 {
	width: 35vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 5vw;
	padding: 20px;
	margin-top: 5vh;
}

#bio > p {
	width: 70%;
	height: auto;
	font-size: 1.8vw;
	font-weight: bold;
	margin: 20px 20px;
	padding: 50px 50px;
	text-align: center;
	background-color: white;
	opacity: 0.5;
	transition: opacity 0.5s;
	line-height: 1.5;
}

#bio > p:hover {
	opacity: 1;
	box-shadow: 2px 2px 3px 3px coral;
}

#bio > p:first-of-type {
	opacity: 1;
}

.bio-nav {
	width: 100vw;
	height: 20vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bio-nav-bar {
	width: 70%;
	display: flex;
	justify-content: center;
	border-top: 3px solid white;
	border-bottom: 3px solid white;
}

.bio-nav-bar-list {
	width: 30%;
	margin: 20px 10px;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bio-nav-bar-list > a {
	color: white;
	font-size: 2vw;
	text-decoration: none;
}

@media only screen and (max-width: 835px) {
	#bio > h2 {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 7vw;
		padding: 20px;
		margin-top: 5vh;
	}

	#bio > p {
		width: 90%;
		height: auto;
		font-size: 2.5vw;
		font-weight: bold;
		margin: 20px 20px;
		padding: 50px 50px;
		text-align: center;
		background-color: white;
		opacity: 0.5;
		transition: opacity 0.5s;
		line-height: 1.5;
	}

	.bio-nav-bar-list > a {
		font-size: 5vw;
	}
}

@media only screen and (max-width: 640px) {
	#bio > p {
		font-size: 4.5vw;
		opacity: 0.6;
		font-weight: 800;
	}
}

/* Services styling */
#services {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.services-heading {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100px;
} 

.services-heading > h2 {
	font-size: 3.5vw;
	padding-top: 50px;
	text-shadow: 3px 3px 5px black;
	color: whitesmoke;
	font-weight: 800;
}

.services-section {
	width: 100%;
	height: auto;
	min-height: 750px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	padding: 5vh 0;
}

.services {
	width: 28%;
	min-width: 310px;
	min-height: 460px;
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	box-shadow: 5px 5px 35px 15px rgb(73, 55, 5);
	margin: 25px 20px;
	border: 2px solid transparent;
}

.services:hover {
	box-shadow: 0px white;
}

.services > li {
	text-align: center;
	line-height: 2;
	font-size: 2vw;
}

.violin {
	background-image: url('images/violin-blue-background.jpg');
	background-size: cover;
	transition: transform .5s ease-in-out;
}
.violin:hover {
	transform: scale(1.1);
	background: black;
}

.viola {
	background-image: url('images/viola.jpg');
	background-size: cover;
	transition: transform .5s ease-in-out;
}
.viola:hover {
	transform: scale(1.1);
	background: black;
}

.coaching {
	background-image: url('images/orchestra.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	transition: transform .5s ease-in-out;
}

.coaching:hover {
	transform: scale(1.1);
	background: black;
}

.services-contact {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 5vw;
}

@media only screen and (max-width: 640px) {
	.services-heading > h2 {
		font-size: 6vw;
	}

	.services {
		border: 3px solid white;
		border-radius: 35px;
	}

	.services > li {
		font-size: 7vw;
		width: 80%;
		color: black;
		text-shadow: 2px 2px 2px white;
		margin: 15px 0;
		opacity: 0.8;
		box-shadow: 5px 5px 35px 15px black;
		border: 2px solid white;
		border-radius: 25px;
		font-weight: bold;
		line-height: 1;
		padding: 5px 7px;
	}

	.services li:first-of-type {
		opacity: 1;
		background-color: white;
		color: black;
	}
}

.prices {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px 20px 50px 20px;
	font-size: 3vw;
}

/* Footer styling */
footer {
	height: 40vw;
	width: 100vw;
	background-color: black;
	display: flex;
	flex-direction: column;
}

.footer-nav {
	height: 100%;
	display: flex;
	flex-direction: column;
	width: 100%;
}

footer nav ul {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 100%;
	justify-content: center;
	align-items: flex-start;
}

.footer-nav li {
	width: 100%;
	height: 10%;
	margin-left: 30px;
}

footer li a {
	font-size: 20px;
	color: white;
}

footer nav li:hover {
	transform: none;
}

.copyright {
	width: 100vw;
	height: 10%;
	color: white;
	display: flex;
	justify-content: center;
	font-size: 1.2vw;
}

@media only screen and (max-width: 640px) {
	footer {
		height: 45vh;
		padding: 20px 0;
	}

	.footer-nav li {
		width: 100%;
		height: 25%;
		margin-left: 30px;
	}

	.copyright {
		margin-top: 20px;
		font-size: 3.5vw;
	}
}


/* Contact Form Styling */
.contact-form-body {
	background-color: white;
	width: 100%;
}

.contact-form-body-main {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 60px;
}


/* SLIDER */
.slider {
	width: 100%;
	height: 1000px;
	margin: 0;
	position: relative;
}

.slide {
	position: absolute;
	width: 100%;
	height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;

	/* THIS creates the animation! */
	transition: transform 1s;
}

/* TESTIMONIALS */
.testimonial {
	width: 80%;
	height: 100%;
	padding: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 5px 5px 25px 1px black;
}

.testimonial::before {
	content: '';
	border-bottom: 3px solid black;
	margin-bottom: 25px;
}

.testimonial::after {
	content: '';
	border-top: 3px solid black;
	margin-top: 25px;
}

.testimonial__text {
	height: auto;
	font-size: 1.7vw;
	color: black;
	line-height: 1.6;
	margin-bottom: 50px;
}

.testimonial__name {
	font-size: 1.7vw;
	font-weight: 500;
	color: black;
	font-weight: bold;
	border-radius: 5px;
}


/* SLIDER BUTTONS AND CONTROLS*/
.slider__btn {
	position: absolute;
	top: 40%;
	z-index: 10;
	border: none;
	background: rgb(95, 158, 160);
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: inherit;
	color: white;
	border: 1px solid gray;
	border-radius: 50%;
	height: 5vw;
	width: 5vw;
	font-size: 2vw;
	cursor: pointer;
}

.slider__btn--left {
	left: 6%;
	transform: translate(-50%, -50%);
}

.slider__btn--right {
	right: 6%;
	transform: translate(50%, -50%);
}

.dots {
	position: absolute;
	height: 5%;
	bottom: 12%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
}

.dots__dot {
	border: none;
	background-color: rgb(95, 158, 160);
	height: 14px;
	width: 14px;
	border-radius: 50%;
	margin-right: 1.75rem;
	cursor: pointer;
	transition: all 0.5s;
}

.dots__dot:last-child {
	margin: 0;
}

.dots__dot--active {
	background-color: black;
	transform: scale(1.3);
}

 /* Contact Form */
.contact-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

iframe {
	padding-top: 140px;
	border: 5px solid white;
	border-radius: 10px;
	margin: 65px 0;
	background-color: #262c41;
	width: 80%;
}

.contact-options-div {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-options {
	width: 100%;
	height: 30vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	margin: 25px;
	margin-bottom: 50px;
	background-color: #262c41;
}

.contact-options__option {
	margin: 15px 0;
	color: white;
	width: 50%;
	min-width: 495px;
	font-size: 30px;
	text-align: center;
}

.mobile-contact-options-div {
	display: none;
}

@media only screen and (max-width: 720px) {
	.slider {
		width: 100%;
		height: 1200px;
		margin: 0;
		border-radius: 0%;
		display: relative;
	}

	.slide {
		display: flex;
		width: 100%;
		height: 100%;
		flex-direction: column;
		justify-content: center;
		margin: 0;
	}

	.testimonial {
		width: 100%;
		height: 100%;
		margin-bottom: 60px;
		padding: 70px;
	}

	.testimonial__text {
		line-height: 1.5;
		font-size: 3.4vw;
	}

	.testimonial__name {
		font-size: 2.8vw;
		background-color: inherit;
	}
	
	.slider__btn {
		width: 7vw;
		height: 7vw;
		top: 4%;
		font-size: 5vw;
		display: flex;
		justify-content: center;
		align-items: center;
		border: 2px solid black;
	}

	.slider__btn--left {
		left: 13%;
	}

	.slider__btn--right {
		right: 13%;
	}

	.dots {
		height: 5%;
		bottom: 7%;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
	}
}

@media only screen and (max-width: 570px) {
	.contact-options-div {
		display: none;
	}

	.mobile-contact-options-div {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.mobile-contact-options {
		margin-top: 10px;
		height:37vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		background-color: #262c41;
	}

	.mobile-contact-options__option {
		color: white;
		width: 100%;
		font-size: 2rem;
		text-align: center;
		margin: 20px 0;
	}

	.slider {
		height: 1300px;
	}

	.testimonial {
		padding: 50px;
	}

	.testimonial::before {
		border: none;
	}

	.testimonial::after {
		border: none;
	}

	.testimonial__text {
		height: auto;
		font-size: 4vw;
		line-height: 1.7;
		margin-bottom: 40px;
		margin-top: 60px;
		text-align: center;
	}

	.testimonial__name {
		text-align: center;
		margin-bottom: 10px;
	}

	.slider__btn {
		width: 9vw;
		height: 9vw;
		font-size: 6vw;
		font-weight: bold;
		display: flex;
		justify-content: center;
		align-items: center;
		top: 50px;
	}

	.slider__btn--left {
		left: 40%;
	}

	.slider__btn--right {
		right: 40%;
	}

	.dots {
		bottom: 4%;
	}
}

@media only screen and (max-width: 450px) {
	.mobile-contact-options {
		height: 37vh;
	}
	
	.mobile-contact-options__option {
		font-size: 1rem;
	}

	/* .slider {
		height: 1220px;
	} */

	.slide {
		background: url('images/b&w-violin.jpg');
		background-size: contain;
		background-repeat: repeat-y;
	}
		
	.testimonial {
		box-shadow: none;
	}

	.testimonial__text {
		color: white;
	}

	.testimonial__name {
		color: white;
		font-weight: bold;
	}

	.slider__btn {
		width: 9vw;
		height: 9vw;
		top: -3%;
		font-size: 8vw;
		padding: 3px 0;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: black;
		border: none;
	}

	.dots {
		bottom: 2%;
	}

	.dots__dot{
		background-color: darkcyan;
		height: 14px;
		width: 14px;
	}

	.dots__dot--active {
		background-color: white;
		transform: scale(1.4);
	}
}

@media only screen and  (max-width: 384px) {
	.testimonial__text {
		font-size: 4.5vw;
		margin-top: 120px;
	}

	.slider__btn {
		top: 3%;
		width: 10vw;
		height: 10vw;
		font-size: 8vw;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}