
.modal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: none;

	justify-content: center;
	align-items: center;
}
.modal.active{
	display: flex;
}
.modal__link{
  cursor: pointer;
}
.close{
	position: absolute;
	right: 20px;
	top: 15px;
	font-weight: bold;
	cursor: pointer;
}
.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 520px;
  margin-top: 15px;
	background: white;
	padding: 50px;
	border-radius: 20px;
	position: relative;
}

.logo {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
}

.title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
  padding: 0 20px;
}

.link {
  border: 2px solid #3d6394;
  box-sizing: border-box;
  border-radius: 10px;
  height: 46px;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 14px;
  font-size: 18px;
  color: #3d6394;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 300ms ease-out;
  margin-bottom: 30px;
}

.link:hover {
  background: #3977f4;
  box-shadow: 0px 4px 20px #3977f4;
  color: #fff;
  border-color: #3977f4;
}

.store-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* gap: 15px; */
  padding: 0 10px;
}

.store-links img {
  width: 100%;
  height: 100%;
}

.store {
  /* background-color: #3d6394; */
  border-radius: 10px;
  /* padding: 13px 18px; */
  margin: 5px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  /* gap: 15px; */
  align-items: center;
  width: 200px !important;
}


.official-site {
  color: #3d6394;
  text-decoration: none;
  background-color: #fff;
  padding: 16px 0;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}


@media (max-width: 425px) {
  .store {
    width: 190px;
    gap: 10px;
  }
}

.store-info {
  display: flex;
  flex-direction: column;
}

.store-name {
  font-weight: bold;
}

.store-subtitle {
  text-transform: uppercase;
  font-size: 14px;
}

.store-subtitle2 {
  font-size: 14px;
}

	main {
		min-height: 100vh;
		/* height: 100%; */
		background-color: #174880;
	}
	ul > li{
		text-decoration: none;
		list-style: none;
		font-size: 35px;
	}
	h1{
		font-size: 48px;
	}
	.info__block{
		margin: 0 auto;
		width: 85%;
		text-align: center;
		color: #FFFFFF;
		font-family: "Roboto Slab", serif;
		
	}
	.info__block > ul{
		text-align: left;
		padding: 0;
	}
	.circle{
		background: rgb(211, 210, 210);
		margin-left: 10px;
		opacity: .6;
		width: 120px;
		height: 120px;
		border-radius: 50%;
		text-align: center;
		align-items: center;
		display: flex;
		justify-content: center;
		font-size: 40px;
		font-weight: bold;
		font-family: "Ubuntu", sans-serif;
		text-transform: uppercase;
		cursor: pointer;
	}
	.circle.active{
		background: white;
		opacity: 1;
	}
	.header{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 50px 100px 30px 50px;
	}
	.circle__block{
		display: flex;
	}
	body{
		padding: 0px;
		margin: 0px;
	}
	.button{
		background-color: #FFFFFF;
		margin: 0 auto;
		width: 85%;
		font-size: 45px;
		font-weight: bold;
		padding: 15px 80px ;
		border-radius: 20px;
		color: black;
		margin-top: 30px;
	}
	.button > a{
		text-decoration: none;
		color: black;
	}
	.footer{
		text-align: center;
		margin-top: 30px;
		padding-bottom: 30px;
	}
	@media screen and (min-width: 320px) and (max-width: 768px) {
		.links{
			max-width: 75%;
			padding: 50px 30px;
		}
		.header img{
			width: 100px;
			height: 80px;
		}
		.circle{
			margin-left: 10px;
			width: 38px;
			height: 38px;
			font-size: 16px;
		}
		.header{
			padding: 30px 30px 30px 20px;
		}
		h1{
			font-size: 24px;
		}
		ul > li{
			text-decoration: none;
			list-style: none;
			font-size: 20px;
		}
		.button{
			width: 90%;
			font-size: 16px;
			padding: 10px 15px;
		}
		.footer img{
			width: 150px;
			height: 150px;
		}
			@media screen and (min-width: 520px)  {
			.header img{
				width: 120px;
				height: 100px;
			}
			.circle{
				margin-left: 10px;
				width: 50px;
				height: 50px;
				font-size: 16px;
			}
			.header{
				padding: 30px 80px 30px 50px;
			}
			h1{
				font-size: 28px;
			}
			ul > li{
				text-decoration: none;
				list-style: none;
				font-size: 24px;
			}
			.button{
				width: 90%;
				font-size: 24px;
				padding: 10px 15px;
			}
			.footer img{
				width: 180px;
				height: 180px;
			}
		}
	}
	@media screen and (min-width: 769px) and (max-width: 960px) {
		.header img{
			width: 180px;
			height: 160px;
		}
		.circle{
			margin-left: 10px;
			width: 80px;
			height: 80px;
			font-size: 24px;
		}
		.header{
			padding: 30px 70px 30px 50px;
		}
		h1{
			font-size: 32px;
		}
		ul > li{
			text-decoration: none;
			list-style: none;
			font-size: 26px;
		}
		.button{
			width: 90%;
			font-size: 26px;
			padding: 10px 15px;
		}
		.footer img{
			width: 300px;
			height: 300px;
		}
	}
