html, body {
  margin: 0;
  padding: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}
	
	html {

  scroll-behavior: smooth;

}


	a{
		text-decoration: none;
		color: inherit;
	}
	ul{
		padding: 0;
		margin: 0;
		list-style: none
	}
	body{
		font-family: "Inter", sans-serif;
		font-weight: 400;
		font-size: 18px;
		line-height: 18px;
		color: #0a0a0a;
		background-color:#D8C9F4;
	}
	

	.container{
		max-width: 1440px;
		width: 100%;
		margin: 0 auto;
		padding: 0 50px;
	}
.header {
  position: relative;
  z-index: 10;
  background-color: #D8C9F4;
}
header, .header__container, .container {
  overflow: visible !important;
}

.header__container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; 
  justify-content: space-between;
}

	.logo-title {
	
		width: 255px;
		font-family: "Kaushan Script", cursive;
	font-weight: 400;
	font-style: normal;
	font-size: 48px;
		color: #FF73E1;
		text-align: center;

	}
.nav {
  position: fixed;
  top: 10px;
  right: 50px; 
  width: auto;
  background-color: #D8C9F4;
  padding: 0px 10px 10px;
  box-shadow: 0 2px 10px rgba(179, 166, 166, 0.05);
  z-index: 1000;
  border-radius: 25px;
}
.burger-wrapper {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
  display: none;
}

.burger-icon {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.burger-icon img {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.close-icon {
  opacity: 0;
  pointer-events: none;
}

#burger-toggle:checked + label .burger-icon-img {
  opacity: 0;
  pointer-events: none;
}

#burger-toggle:checked + label .close-icon {
  opacity: 1;
  pointer-events: auto;
}
.nav .container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 ;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav__list {
	margin-top: 15px;
	display: flex;
	flex-direction: row;
	gap: 50px;
}
	.nav__item {
		font-size: 24px;
		color: #FF73E1;
	}
	.nav__link:hover {
		color:#027150;
	}

main {
	flex: 1 0 auto;
}


	.introduction {
		margin-top: 80px;
	}
	.introduction-block{
		display: flex;
		justify-content: space-between;
	}
	.photo img,p{
		width: 400px;
		
	}
	.photo img{
		box-shadow: 5px 5px 4px  rgba(0, 0, 0, 0.25);

	}
	.photo-text{
		font-weight: 400;
	font-size: 24px;
	color: #027150;
	line-height: 35px;
	}
	.school-name{
		font-family: "Kaushan Script", cursive;

	}
	.introduction-right {
		position: relative;
		padding-top: 160px;
		
	}
.spot-block{
	padding-bottom: 65px;
}

	.introduction-title {
		position: relative;
		z-index: 1;
		width: 420px;
	font-style: italic;
	font-weight: 500;
	font-size: 48px;
	color: #027150;
	
	line-height: 58px;
	}
	.introduction-text{
		
		position: relative;
		z-index: 1;
		width: 420px;
		line-height: 36px;
		font-weight: 400;
	font-size: 24px;
	color: #000;
	}

	.spot--intro {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 438px;
  background-color: #ff6cebce;
  border-radius: 100%;
  filter: blur(60px);
  z-index: 0;
}
	.submit-1 {
	display: inline-block;
	margin-top: 140px;
	padding: 19px 24px;
	font-size: 24px;
	font-weight: 600;

	background-color: #25DEA7;
	border: none;
	border-radius: 40px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	}

	.submit-1:hover, .submit-3:hover {
	background-color: #3fe899e6;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
	}











	.service-section {
  width: 100%;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;

}
	.service-title {
		text-align: center;
	font-weight: 500;
	font-size: 48px;
	color: #027150;
	text-shadow: 0 5px 5px  rgba(0, 0, 0, 0.25);
	}

.services {
  width: 100%;
  margin-top: 100px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "top1 top2 top3"
    "bot1 . bot2"; 
  justify-items: center;
}

.services > .item-top:nth-child(1) {
  grid-area: top1;
}
.services > .item-top:nth-child(2) {
  grid-area: top2;
}
.services > .item-top:nth-child(3) {
  grid-area: top3;
}
.services > .item-bottom:nth-child(4) {
  grid-area: bot1;
}
.services > .item-bottom:nth-child(5) {
  grid-area: bot2;
}


.services-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.services-bottom-inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center; 
	gap: 100px;
}
h3{
	font-style: italic;
font-weight: 600;
font-size: 24px;
color: #027150;
text-align: center;
margin-top: 20px;
}
.item-text, .item-text__telegram , .item-text__phone{
	line-height: 22px;
	margin-top: 35px;
	font-weight: 500;
font-size: 18px;
color: #000;
width: 345px;
	}

.item-telegram__block{
		display: flex;
	}
.item-text__phone{
		width: 200px;
		margin-top: 0;
	}

.item-top img{
	width: 120px;
height: 230px;
margin-top: 100px;
margin-left: 30px;

}

.item-top {
  width: 380px;
  height: 550px;
  background-color: #FF73E1;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
}

.item-bottom {
  width: 380px;
  height: 250px;
  background-color: #FF73E1;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
}

.services-bottom{
	margin-top: 100px;
}










.help {
margin-top: -50px;
}
.help {
  scroll-margin-top: -250px;
}

.help-block {
	margin-top: 150px;
	display: flex;
	gap: 50px;
	align-items: center;
	position: relative;
	flex-wrap: wrap;
	justify-content: flex-start; 
}

.help-left {
	position: relative;
	flex: 1 1 50%;
	min-width: 300px;
	display: flex;
	padding: 40px 0;
}

.spot--tester {
	position: absolute;
	width: 600px;
	height: 500px;
	background-color: #ff6cebce;
	border-radius: 100%;
	filter: blur(60px);
	z-index: 0;
	left: 65%;
	top: 40%;
	transform: translate(-50%, -50%);
}
.help-content {
text-align: center;
margin-left: auto;

	position: relative;
	z-index: 1;
	text-align: left;
	max-width: 450px;
}
.help-title {
	font-style: italic;
	font-weight: 500;
	font-size: 48px;
	color: #027150;
	line-height: 58px;
	margin-bottom: 30px;
}
.help-text {
	width: 100%;
	line-height: 29px;
	font-weight: 400;
	font-size: 24px;
	color: #000;

}

.help-btn {
  width: 100%;
padding-top: 180px;
  display: flex; 
  max-width: 800px;
  position: relative;
  z-index: 1;
  justify-content: flex-start; 
}

.help-photo.photo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.submit-2, .tester {
  display: inline-block;
  padding: 14px;
  font-size: 24px;
  font-weight: 600;
  background-color: #25DEA7;
  border: none;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #000;
  white-space: nowrap;
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;

}
.submit-2{
	
	margin-top: 60px;
}
.tester{
	max-width: 450px;
	
}
.tester:hover, .submit-2:hover {
	background-color: #3fe899e6;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.help-photo img {
	max-width: 100%;
	height: auto;
}
.help-photo img {
	max-width: 100%;
	height: auto;
}



.about {margin-top: 100px;
}

.about-title {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-weight: 500;
	font-size: 48px;
	color: #027150;
	text-shadow: 0 5px 5px  rgba(0, 0, 0, 0.25);
}
.about-block {
	padding-top: 100px;
	display: flex;
	justify-content: space-around;
}
.about-photo {
	width: 400px;
	box-shadow: 5px 5px 4px  rgba(0, 0, 0, 0.25);
}

.about-text {
	font-style: italic;
font-weight: 500;
font-size: 24px;
color: #027150;
width: 500px;
line-height: 29px;

}


.contact {
	margin-top: 200px;
}

.contact-title {
	font-weight: 500;
	font-size: 48px;
	color: #027150;
	text-shadow: 0 5px 5px  rgba(0, 0, 0, 0.25);
}

.contact-form {
  flex: 0 0 670px; 
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  gap: 20px;
  font-weight: 500;
  font-size: 24px;
  color: black;
}
.contact-block {
  display: flex;
  gap: 30px;
  align-items: flex-start;

}
.contact-form input,
.contact-form textarea {
	background-color: #E6D9FF;
	border: 3px solid #FF73E1;
	border-radius: 40px;
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	color: #333;
	padding: 18px 24px;
	outline: none;
	width: 100%;
	box-sizing: border-box;
	min-height: 65px;
	resize: vertical;
	max-width: 100%;
	resize: none;
}

.contact-form ::placeholder {
	font-weight: 500;
	font-size: 24px;
	color: rgba(0, 0, 0, 0.28);
}
.submit-3{
	display: inline-block;
	padding: 14px 28px;
	font-size: 24px;
	font-weight: 600;

	background-color: #25DEA7;
	border: none;
	border-radius: 40px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
}


.quote {
  flex: 1 1 auto;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
}
.quote-title {
  width: 100%; 
  max-width: 500px;
  font-family: "Kaushan Script", cursive;
  transform: rotate(20deg);
  display: inline-block;
  font-size: 48px;
  line-height: 70px;
  text-align: center;
}









.footer {
	margin-top: 120px;
	background-color: #F1AFE3;
	border: 1px solid #A60779;
}
.footer,
.footer-author {
	flex-shrink: 0;
}

.footer-content {
	padding-top: 30px;-top: 10px;
	display: flex;
	justify-content: space-between;
}

.footer-title {

font-style: normal;
font-weight: 700;
font-size: 24px;
color: #000;
text-align: left;
}

.footer-logo{
width: 255px;
		font-family: "Kaushan Script", cursive;
	font-weight: 400;
	font-style: normal;
	font-size: 48px;
		color: #FF73E1;
		text-align: center;
		line-height: 70px;
}
.footer-list a{
	line-height: 29px;
	font-size: 24px;


}
.footer-list li:hover{
	color: #3fe899e6;
	
}

.footer-author {
	background-color: #25DEA7;
	font-weight: 500;
font-size: 24px;
color: #000;
}
.footer-author__text {
	margin: 0 auto;
	padding-top: 30px;
	padding-bottom: 30px;
}




	@media(max-width: 1280px) {
	.container {
		
		padding: 0 30px;
	}
	.logo-title{
		
	}

	.photo-text {
		line-height: 23px;
		font-size: 20px;
	}

	.item-text, .item-text__telegram, .item-text__phone {
		width: 330px;
	}

	.logo-title {
		font-size: 40px;
	}

	.nav__item {
		font-size: 20px;
	}

	.photo img,
	p {
		width: 370px;
	}

	.introduction-title {

		font-size: 40px;
		width: 350px;
	}

	.introduction-text {
		width: 350px;
		font-size: 20px;
	}
.spot--intro{
	left: 35%;
	width: 450px;
	height: 350px;
	
}
.submit-1{
margin-top: 0;
}


	.service-section h3 {
		font-size: 20px;
		margin-top: 0px;
	}

	.item-text,
	.item-text__phone,
	.item-text__telegram {
		font-size: 16px;
		line-height: 19px;
	}

	.item-top {
		width: 360px;
		height: 460px;

	}

	.item-top img {
		width: 90px;
		height: 175px;
	}

	.item-text__phone {
		padding-top: 60px;
	}

	.item-bottom {
		width: 360px;
		height: 200px;
	}

	.item-bottom p {
		width: 315px;
	}

	.help-title {
		font-size: 40px;
	}

	.help-text {
		font-size: 20px;
	}
	.submit-2{
		max-width: 370px;
	}
	.about-title{
		font-size: 40px;

	}
	.about-text{
		width: 400px;

		font-size: 20px;
	}
	.about-photo{
		width: 370px;
	}
	.contact-title{
		font-size: 40px;
	}
.contact-form ::placeholder{
	font-size: 20px;
}
.contact-form input, .contact-form textarea{
	font-size: 20px;
}
.quote-title{
	font-size: 40px;
	
}

.footer-title{
	font-size: 20px;
}
.footer-list a{
	font-size: 20px;
}

.footer-author{
	font-size: 20px;
}
.footer-logo{
	font-size: 40px;
}
}





@media(max-width: 1200px){

	.service-title{
		font-size: 32px;
	}
	.services{
width: 100%;
		
	}

.services-top{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
		 display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 50px; /
}

}




@media (max-width: 1180px) {

.photo-text{
font-size: 16px;
}
.photo img, p{
	width: 260px;
}

.introduction-title {
	line-height: 34px;
		font-size: 28px;
		width: 280px;
	}


.introduction-text{
	line-height: 19px;
font-size: 16px;
}
.spot--intro{
	width: 350px;
	height: 250px;
	top: 60%;
}
.introduction-block{
}
.spot-block{
padding-bottom: 0;
}
.submit-1{
	padding: 14px;
	font-size: 16px;
	margin-top: 90px;

}




  .services {
    display: grid;
	 
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
	 
      "top1 top2"
      "top3 bot1"
      "top3 bot2"; /* top3 тягнеться на два рядки */
  }
  .item-bottom{
	height: 220px;
  }

  .services > .item-top:nth-child(1) { grid-area: top1; }
  .services > .item-top:nth-child(2) { grid-area: top2; }
  .services > .item-top:nth-child(3) { grid-area: top3; }
  .services > .item-bottom:nth-child(4) { grid-area: bot1; }
  .services > .item-bottom:nth-child(5) { grid-area: bot2; }
.nav {
		display: none;
	}

	.burger-wrapper {
		display: block;
	}
.burger-wrapper {
	display: block;
	position: fixed;
	top: 30px;    
	right: 100px;
	
}

	.burger-icon img {
		width: 60px;
		height: 45px;
		cursor: pointer;
	}

	.burger-menu {
		display: none;
		position: absolute;
		top: 50px;
		right: 0px;
		width: 250px;
		background: #d7c2fd;
		padding: 25px 30px;

		border-radius: 25px;
		z-index: 1000;
	}

	.burger-menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.burger-menu li {
		margin-bottom: 10px;
	}

	.burger-menu a {
	font-weight: 500;
font-size: 20px;
color: #ff73e1;
line-height: 24px;
	}

	#burger-toggle:checked ~ .burger-menu {
		display: block;}

	.service-section h3 {
		margin-top: -10px;
		font-size: 16px;
	
	}

.item-text {
	margin-top: 10px;
	line-height: 16px;
	width: 310px;
    font-size: 14px;
}
.item-text__telegram{
	line-height: 16px;

	font-size: 14px;
	width: 310px;
	margin-top: 10px;
}
    .item-top img {
		width: 78px;
		height: 150px;
		margin-top: 70px;
	 }
.item-text__phone{
	line-height: 16px;

	padding-top: 40px;
	font-size: 14px;
}
.item-top{
	width: 344px;
	height: 360px;
}
.item-bottom{
	width: 344px;
	height: 170px;
}
.help-title{
	font-size: 32px;
	margin-bottom: 0;
}
.help-text{
	width: 420px;
	margin-top: 10px;
	font-size: 20px;
}
.spot--tester{
			height: 380px;
			width: 400px;
			left:50% ;
			top: 40%;
	
	}


	.help-btn {

			padding: 14px;
	font-size: 16px;
	margin-top: 15px;
	padding: 0;
	


}
.help-btn{
	padding-bottom: 0px;
}

.tester{
	font-size: 16px;
	margin-top: 55px;
	max-width: 328px;
}
.submit-2{
		padding: 14px;
	font-size: 16px;
	margin-top: 20px;
	max-width: 260px;
}

.about-title{
		font-size: 32px;

	}
.about-photo{
	width: 260px;
	height: 390px;
}

.about-block{
	padding-top: 50px;
}
.about-text{
	font-size: 16px;
}

.contact-title{
	font-size: 32px;
	text-align: center;
}
.contact-block{
	display: block;
}
.contact-form{
	margin-left: auto;
	margin-right: auto;
	max-width: 670px;
}
.quote-title{
	margin: 0;
transform: rotate(0deg);
}
.footer-block2{
	display: none;
	
}
.footer-block1{
	padding-top: 30px;
}
.footer-content{
	justify-content: space-around;
	padding-top: 0;
}
.footer-author__text{
	font-size: 16px;
}

}


@media(max-width: 765px) {
  .container {
    padding: 0 16px;
  }

  .burger-icon img {
	width: 40px;
	height: 40px;
	 top: -10px;
  left: 30px;
  }
  	.burger-menu a {
font-size: 16px;

line-height: 20px;
	}
	.burger-menu{
		top: 40px;
		right: -20px;
		width: 200px;
		padding: 15px 20px;
	
	}

  .logo-title {
    font-size: 28px;
    line-height: 10px;
    width: 150px;
    margin-top: 26px;
  }

  .introduction-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "photo"
      "cta";
    row-gap: 30px;
    align-items: center;
  }


  .spot-block {
    grid-area: title;
    display: block; 
    text-align: center;
  }

  .introduction-title,
  .introduction-text {
    margin: 0; 
    justify-self: center;
    text-align: center;
  }
 .introduction-text{
	padding-top: 20px;
 }
  /* Фото та надпис */
  .photo {
	margin-top: 50px;
    grid-area: photo;
    justify-self: center;
    align-items: center;
	 gap: 20px;
  }

  .photo img{
	width: 200px;
  }
  .photo-text {
	max-width: 200px;
    order: 2;
  }

  /* Кнопка */
  .submit-1 {
	width: 100%;
	margin-top: 30px;
    grid-area: cta;
    justify-self: center;
    align-self: center;
  }

  .spot--intro {
	height: 176px;
    transform: translate(-20%, -80%);
    width: 260px;
  }


  .introduction-right {
    display: contents;
  }

  .service-title{
	font-size: 28px;
  }
 .services {
	margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr; 
  grid-template-rows: auto auto; 
  grid-template-areas:
    "top1"  
    "top2"  
    "top3"  
    "bot1"
	  "bot2";
  gap: 20px; 

}

.services > .item-top:nth-child(1) { grid-area: top1; }
.services > .item-top:nth-child(2) { grid-area: top2; }
.services > .item-top:nth-child(3) { grid-area: top3; }

.services > .item-bottom:nth-child(4) { grid-area: bot1; }
.services > .item-bottom:nth-child(5) { grid-area: bot2; }
.item-top{
	width: 382px;
}
.item-top img{
	margin-top: 20px;

}
.item-top:nth-child(3){
	height: 310px;
}
.item-text__phone{
	padding-top: 0px;
	
}

.item-bottom{
	width: 380px;
	height: 150px;
}

.item-text__phone{
margin-top: 20px;
}

.help-block{
	max-width: 100%;
display: block;
flex-direction: column;
}
.help-content {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
    width: 100%;        
    max-width: 100%;
  }
  
.help-photo img{
	display: none;

}
.help-photo{
	width: 100%;
	margin-top: 0;
	padding: 0;

}
.help-btn {
    display: inline-block;    
    width: 100%;         
    max-width: 100%;    
    padding: 14px;      
    margin-top: 15px;
	 padding-right: 0;
	 padding-left: 0;
	 padding-bottom: 0;
    box-sizing: border-box;
}

  .submit-2 {
    display: block;   
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
	 margin-top: 0;
  }
  .help-btn,
  .submit-2,
  .tester {
    width: 100%;         
    max-width: 100%;
    display: block;
  }
 .help-left {

    width: 100%;         
    padding: 0;
    box-sizing: border-box;
  }
  .help-title {
    max-width: 340px;
    font-size: 28px;
  }
  .help-text {
	

	font-size: 16px;
    width: 100%;
    max-width: 340px;
  }
  
.spot--tester{
	width: 300px;
	height: 400px;
}
.about-title{
	font-size: 28px;
}
.about-block{
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.about-photo{
	margin: 0;
}
.about-text{
	max-width: 380px;
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 0;

}
.about-photo{
	width: 200px;
	height: 300px;
}
.contact{
	margin-top: 50px;
}
.contact-title{
line-height: 35px;
	margin: 0;
}
.contact-form input, .contact-form textarea{
	font-size: 16px;
}
.contact-form input {
	padding: 7px 17px;
	min-height: 35px;
}
.contact-form textarea{
	border-radius: 30px;
	padding: 7px 17px;
}


.contact-form ::placeholder{
	font-size: 16px;
	
}
.contact-form {
	flex: 0 0 350px;

	padding-left: 0;
	padding-right: 0;
	gap: 15px;
}
.submit-3{
	font-size: 18px;
}
.quote{
	padding: 50px 0px  ;
}
.quote-title{
	font-size: 28px;
	line-height: 41px;
	
}
.footer{
	margin-top: 0px;
}
.footer-block1{
	padding-top: 10px;
}
.footer-content{
	justify-content: space-around;
	gap: 20px;
}
.footer-title{
	font-size: 16px;
}
.footer-list a{
	font-size: 16px;
}

.footer-author{
	font-size: 16px;
	
}
.footer-author__text{
	padding-top: 15px;
	padding-bottom: 15px;

}
.footer-logo{
	font-size: 28px;
	line-height: 50px;
}
}
@media(max-width: 414px){
	.photo-text{
		line-height: 17px;
	}
	.submit-1, .submit-2, .tester{
		font-size: 14px;
		padding: 10px 14px;
	}
	.container{
		padding: 0 10px;
	}
	.introduction-text{
		max-width: 330px;
	}
	.item-top{
width: 330px;
	}
	.item-top:nth-child(3){
	height: 320px;
}
.item-bottom{
	width: 330px;
}
.item-bottom span{
	padding-right: 10px;
}
	.about-text{
		max-width: 330px;
	}
	.item-text{
		padding-right: 10px;
	}
	.item-text__phone{
margin-top: 10px;
}
.about-title{
	max-width: 330px;
	line-height: 35px;
}
.help-title{
	width: 330px;
	line-height: 45px;
}
.help-text{
	width: 330px;
	line-height: 17px;
}
.spot--tester{
	height: 300px;
}
}
@media(max-width:380px){
	
}