@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap");
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: #182e73;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #df830b;
}

/* Firefox */
* {
  scrollbar-width: 20%;
}

html,
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
}

html button,
body button {
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}

html button:hover,
body button:hover {
  opacity: 60%;
}

header {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

header .header-cont {
  width: 60%;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  text-transform: none;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

header .header-cont .auth-btn{
	margin: 0;
	gap: 0;
}

header .header-cont .auth-btn button{
	width: 180px;
}

@media (min-width: 275px) and (max-width: 1300px) {
  header .header-cont {
    width: 80%;
  }
}
header .header-cont .mob-icon-menu {
  display: none;
}
@media (min-width: 275px) and (max-width: 800px) {
  header .header-cont {
    width: 92%;
  }
  header .header-cont nav {
    width: 100%;
    position: absolute;
    display: block;
    opacity: 0;
    right: 0;
    background-color: #fff;
    top: 11%;
    z-index: 888;
    transition: all 0.3s ease-in;
  }
  header .header-cont nav ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
  }
  header .header-cont nav ul a {
    width: 90%;
    text-align: center;
  }
  header .header-cont nav ul a li {
    margin-bottom: 2rem;
    border-top: 1px solid #182E73;
    padding-top: 2rem;
    width: 100%;
  }
  header .header-cont .mob-icon-menu {
    display: block;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease-out;
  }
  header .header-cont .mob-icon-menu img {
    width: 100%;
  }
}

header .header-cont ul {
  display: flex;
}

header .header-cont li {
  margin-right: 2rem;
  list-style: none;
}
@media (min-width: 275px) and (max-width: 800px) {
  header .header-cont li {
    font-size: small;
  }
}

header .header-cont a {
  color: black;
  text-decoration: none;
  text-transform: none;
}

main .auth-block {
  width: 100%;
  background-color: #182E73;
  color: #fff;
}

main .auth-block .auth-content {
  padding-left: 20%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 275px) and (max-width: 1300px) {
  main .auth-block .auth-content {
    flex-direction: column;
  }
}
@media (min-width: 275px) and (max-width: 1100px) {
  main .auth-block .auth-content {
    padding-left: 10%;
  }
}
@media (min-width: 275px) and (max-width: 550px) {
  main .auth-block .auth-content {
    padding-left: 0;
    width: 90%;
  }
}

main .auth-block .auth-content .auth-title {
  width: 52%;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  justify-content: space-around;
  text-decoration: none;
  text-transform: none;
}
@media (min-width: 1024px) and (max-width: 1300px) {
  main .auth-block .auth-content .auth-title {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  main .auth-block .auth-content .auth-title {
    width: 84%;
  }
}
@media (min-width: 275px) and (max-width: 768px) {
  main .auth-block .auth-content .auth-title {
    width: 100%;
  }
}







main .auth-block .auth-content .auth-title h1 {
  font-size: 48px;
}
@media (min-width: 250px) and (max-width: 7680px) {
  main .auth-block .auth-content .auth-title h1 {
    width: 100%;
  }
}
@media (min-width: 275px) and (max-width: 550px) {
  main .auth-block .auth-content .auth-title h1 {
    font-size: 36px;
  }
}

main .auth-block .auth-content .auth-title p {
  font-size: 24px;
}
@media (min-width: 250px) and (max-width: 7680px) {
  main .auth-block .auth-content .auth-title p {
    width: 80%;
  }
}
@media (min-width: 275px) and (max-width: 550px) {
  main .auth-block .auth-content .auth-title p {
    font-size: 18px;
  }
}

main .auth-block .auth-content .auth-title span {
  font-size: 24px;
  color: #FF6801;
}
@media (min-width: 275px) and (max-width: 550px) {
  main .auth-block .auth-content .auth-title span {
    font-size: 20px;
  }
}

main .auth-block .auth-content .auth-title .auth-btn {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 250px) and (max-width: 800px) {
  main .auth-block .auth-content .auth-title .auth-btn {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-right: 10%;
  }
}
@media (min-width: 250px) and (max-width: 550px) {
  main .auth-block .auth-content .auth-title .auth-btn {
    align-self: center;
    margin-right: 0;
  }
}

main .auth-block .auth-content .auth-title .auth-btn button {
  background-color: #FF6801;
  height: 70px;
  width: 12rem;
  border-radius: 12px;
  border: 0;
  width: 280px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat";
}

.auth-btn {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 550px) and (max-width: 800px) {
  .auth-btn {
    padding: 0 10% 0 0;
  }
}
@media (min-width: 250px) and (max-width: 800px) {
  .auth-btn {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.auth-btn button {
  background-color: #FF6801;
  height: 70px;
  width: 12rem;
  border-radius: 12px;
  border: 0;
  width: 280px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  gap: 1rem;
  font-family: "Montserrat";
}
@media (min-width: 250px) and (max-width: 1400px) {
  .auth-btn button {
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}



@media screen and (max-width: 1300px){
	
	main .auth-block .auth-content .auth-title h1{
		padding: 45px 0;
	}
	
}



@media screen and (max-width: 991px){
	
	header .header-cont .auth-btn button,
	.auth-btn button{
		height: 48px;
		width: 120px;
		font-size: 15px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
	}
	
	main .info-block-last a{
		text-decoration: none;
	}
	
}



main .auth-block .auth-content .bg-main-block {
  width: 800px;
  height: 600px;
  position: relative;
  display: block;
  background-image: url("/image/bg-main.png");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
}
@media (min-width: 1440px) and (max-width: 1680px) {
  main .auth-block .auth-content .bg-main-block {
    width: 720px;
    height: 500px;
  }
}
@media (min-width: 1300px) and (max-width: 1440px) {
  main .auth-block .auth-content .bg-main-block {
    width: 720px;
    height: 460px;
  }
}
@media (min-width: 1130px) and (max-width: 1300px) {
  main .auth-block .auth-content .bg-main-block {
    width: 730px;
    height: 400px;
    background-position: center;
  }
}
@media (min-width: 768px) and (max-width: 1130px) {
  main .auth-block .auth-content .bg-main-block {
    width: 660px;
    height: 400px;
    background-position: center;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  main .auth-block .auth-content .bg-main-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 410px;
    background-position: center;
  }
}
@media (min-width: 400px) and (max-width: 500px) {
  main .auth-block .auth-content .bg-main-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 340px;
    background-position: center;
  }
}
@media (min-width: 250px) and (max-width: 400px) {
  main .auth-block .auth-content .bg-main-block {
    width: auto;
    height: 340px;
    background-position: center;
  }
}

main .bg-main-mobile {
  width: 800px;
  height: 600px;
  position: relative;
  display: none;
  background-image: url("/image/bg-main.png");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
}
@media (min-width: 1440px) and (max-width: 1680px) {
  main .bg-main-mobile {
    width: 720px;
    height: 500px;
  }
}
@media (min-width: 1300px) and (max-width: 1440px) {
  main .bg-main-mobile {
    width: 720px;
    height: 460px;
  }
}
@media (min-width: 1130px) and (max-width: 1300px) {
  main .bg-main-mobile {
    width: 730px;
    height: 400px;
  }
}
@media (min-width: 768px) and (max-width: 1130px) {
  main .bg-main-mobile {
    width: 660px;
    height: 400px;
    background-position: center;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  main .bg-main-mobile {
    width: 600px;
    height: 340px;
  }
}
@media (min-width: 250px) and (max-width: 500px) {
  main .bg-main-mobile {
    width: 370px;
    height: 340px;
  }
}

main .auth-block .icon-row {
  margin-top: 4rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: row;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 275px) and (max-width: 1200px) {
  main .auth-block .icon-row {
    width: 80%;
  }
}
@media (min-width: 275px) and (max-width: 800px) {
  main .auth-block .icon-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

main .auth-block .icon-row .icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  margin-right: 2rem;
  border-radius: 12px;
  width: 280px;
  height: 105px;
  background-color: #29376d;
}
@media (min-width: 275px) and (max-width: 1200px) {
  main .auth-block .icon-row .icon {
    font-size: 14px;
  }
}
@media (min-width: 275px) and (max-width: 800px) {
  main .auth-block .icon-row .icon {
    margin-right: 0;
    margin-top: 1rem;
    height: 70px;
  }
}

main .auth-block .icon-row .icon img {
  margin-left: 2rem;
}

main .info-block {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 4rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  main .info-block {
    width: 80%;
  }
}
@media (min-width: 250px) and (max-width: 768px) {
  main .info-block {
    width: 76%;
  }
}

main .info-block-last {
  padding: 16px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -4rem;
  font-size: 24px;
}

main .info-block-last .auth-btn{
	justify-content: center;
}





  :root{
    --bg:#f6f6f7;
    --card:#fff;
    --text:#111;
    --muted:#6b7280;
    --primary:#6b2b2b;         /* цвет бейджа - бордовый */
    --star:#f59e0b;             /* звёзды */
    --stroke:#e5e7eb;           /* рамки/бордеры */
    --shadow:0 8px 24px rgba(0,0,0,.08),0 2px 8px rgba(0,0,0,.04);
    --radius:16px;
  }
  *{box-sizing:border-box}
  .parent-wrap{
	background: #fff;
	border-bottom:1px solid var(--stroke);
	padding: 0 0 50px;
  }
  .wrap{
    max-width:1200px; padding:75px 16px 50px; margin:auto;
  }
  h1{margin:0 0 16px; font-size:28px; font-weight:700}
  .grid{
    display:grid; gap:24px;
    grid-template-columns:repeat(4,1fr);
  }
  @media (max-width:1100px){ .grid{ grid-template-columns:repeat(3,1fr);} }
  @media (max-width:780px){ .grid{ grid-template-columns:repeat(2,1fr);} }
  @media (max-width:520px){ .grid{ grid-template-columns:1fr;} }

  .card{
    position:relative; background:var(--card); border-radius:var(--radius);
    box-shadow:var(--shadow); overflow:hidden; transition:transform .18s ease, box-shadow .18s ease; display:flex; flex-direction:column;
  }
  .card:hover{ transform:translateY(-3px); box-shadow:0 14px 40px rgba(0,0,0,.12),0 4px 12px rgba(0,0,0,.06); }

  .badge{
    position:absolute; top:14px; left:14px; z-index:2;
    background:var(--primary); color:#fff; font-size:12px; letter-spacing:.3px;
    padding:6px 10px; border-radius:8px;
  }

  .thumb{
    aspect-ratio: 4 / 3;           /* держим пропорцию как на скрине */
    background:#eee center/cover no-repeat;
    background:#fff center/cover no-repeat;
    border-bottom:1px solid var(--stroke);
	background-size: auto 85%;
  }

  .content{ padding:16px 16px 18px; flex:1; }

  .rating{ display:flex; align-items:center; gap:8px; color:var(--muted); font-size:14px; margin-bottom:8px;}
  .stars{display:inline-flex; gap:2px;}
  .stars svg{width:16px; height:16px; fill:var(--star)}

  .title{ font-weight:700; margin:2px 0 4px; font-size:18px; letter-spacing:.2px; }
  .subtitle{ color:var(--muted); font-size:14px; margin:0 0 12px; }

  .swatches{ display:flex; gap:8px; margin:6px 0 12px;}
  .swatch{
    width:16px; height:16px; border-radius:50%; border:2px solid #fff;
    outline:1px solid var(--stroke); box-shadow:0 0 0 0 rgba(0,0,0,0); cursor:pointer;
  }
  .swatch:hover{ box-shadow:0 0 0 3px rgba(0,0,0,.06); }

  .priceRow{
    display:flex; justify-content:space-between; align-items:center;
    padding:12px 16px; border-top:1px solid var(--stroke); background:#fafafa;
    border-bottom-left-radius:var(--radius); border-bottom-right-radius:var(--radius);
  }
  .price{font-weight:700; font-size:18px;}
  .old{color:var(--muted); text-decoration:line-through; margin-left:8px; font-weight:500; font-size:14px;}
  .dot{ width:6px; height:6px; border-radius:50%; background:#c1c5cc; display:inline-block; margin:0 6px; }

.priceRow a.btn_buy_now{
	background: #FF6801;
	color: #fff;
	padding: 7px 18px;
	text-decoration: none;
	font-weight: 500;
	border-radius: 5px;
	font-size: 14px;
}
















@media (min-width: 1130px) and (max-width: 1920px) {
  main .info-block-last p {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 1130px) {
  main .info-block-last p {
    font-size: 16px;
  }
}
main .info-block-last hr {
  height: 4px;
  width: 80%;
  background-color: #FF6801;
  border: 0;
}
main .info-block-last h2 {
  text-align: center;
  align-items: center;
}

main .info-block .info-item {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
}

@media (min-width: 250px) and (max-width: 768px) {
  main .info-block .info-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1000px) and (max-width: 1920px) {
  main .info-block .info-item .info-title h1 {
    font-size: 34px;
  }
}
main .info-block .info-item .info-title {
  display: flex;
  flex-direction: column;
}

main .info-block .info-item .info-title h1 {
  font-size: 48px;
  margin-left: 1rem;
  width: 88%;
  margin-top: 0;
}

@media (min-width: 1130px) and (max-width: 1920px) {
  main .info-block .info-item .info-title h1 {
    font-size: 30px;
  }
}
@media (min-width: 320px) and (max-width: 1130px) {
  main .info-block .info-item .info-title h1 {
    font-size: 26px;
  }
}
main .info-block .info-item .info-title p {
  font-size: 24px;
  margin-left: 1rem;
  margin-top: 1rem;
  width: 88%;
}

@media (min-width: 1130px) and (max-width: 1920px) {
  main .info-block .info-item .info-title p {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 1130px) {
  main .info-block .info-item .info-title p {
    font-size: 16px;
  }
}
main .info-block .info-item .info-title span {
  font-size: 24px;
  font-weight: 800;
}

@media (min-width: 1130px) and (max-width: 1920px) {
  main .info-block .info-item .info-title span {
    font-size: 20px;
    font-weight: 700;
  }
}
@media (min-width: 320px) and (max-width: 1130px) {
  main .info-block .info-item .info-title span {
    font-size: 16px;
  }
}
main .info-block .info-item .info-title hr {
  margin-left: 1rem;
  height: 4px;
  width: 80px;
  background-color: #FF6801;
  border: 0;
  border-radius: 12px;
}

main .info-block .info-item .info-title text {
  text-decoration: underline;
}

main .info-block .info-item img {
  width: 580px;
  height: 380px;
}

@media (min-width: 1680px) and (max-width: 1920px) {
  main .info-block .info-item img {
    width: 500px;
    height: 310px;
  }
}
@media (min-width: 1300px) and (max-width: 1680px) {
  main .info-block .info-item img {
    width: 420px;
    height: 280px;
  }
}
@media (min-width: 1000px) and (max-width: 1300px) {
  main .info-block .info-item img {
    width: 350px;
    height: 240px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  main .info-block .info-item img {
    width: 320px;
    height: 220px;
  }
}
@media (min-width: 420px) and (max-width: 768px) {
  main .info-block .info-item img {
    width: 350px;
    height: 220px;
  }
}
@media (min-width: 340px) and (max-width: 420px) {
  main .info-block .info-item img {
    width: 300px;
    height: 220px;
  }
}
@media (min-width: 250px) and (max-width: 340px) {
  main .info-block .info-item img {
    width: 250px;
    height: 180px;
  }
}
main .store-link-block {
  width: 100%;
  background-image: url("/image/store-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main .store-link-block .store-link-content {
  width: 90%;
  height: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main .store-link-block .store-link-content h1 {
  margin-top: 2rem;
  font-size: 38px;
  color: #fff;
  text-align: center;
}
@media (min-width: 250px) and (max-width: 1024px) {
  main .store-link-block .store-link-content h1 {
    font-size: 26px;
    text-align: center;
  }
}

main .store-link-block .store-link-content p {
  font-size: 24px;
  text-align: center;
  color: #fff;
}
@media (min-width: 375px) and (max-width: 1300px) {
  main .store-link-block .store-link-content p {
    font-size: 18px;
    text-align: center;
  }
}

main .store-link-block .store-link-content hr {
  height: 4px;
  width: 80px;
  background-color: #FF6801;
  border: 0;
  border-radius: 12px;
}

main .store-link-block .store-link-content .store-link {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

footer nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
  margin-bottom: 6rem;
}

.one-list {
  display: flex;
  gap: 8rem;
  margin-right: 4rem;
}

@media (min-width: 250px) and (max-width: 1000px) {
  .one-list {
    flex-direction: column;
    justify-content: space-between;
    margin-right: 2rem;
  }
}
.two-list {
  display: flex;
  gap: 8rem;
  margin-left: 4rem;
}

@media (min-width: 250px) and (max-width: 1000px) {
  .two-list {
    flex-direction: column;
    justify-content: space-between;
    margin-left: 2rem;
  }
}
footer .list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

footer .list a {
  text-decoration: none;
  color: #000;
}

.terms-header {
  width: 60%;
  margin-right: auto;
  margin-left: auto;
}

.terms-header .logo img {
  width: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}

.terms-body {
  background-color: #182E73;
}

.terms-body .terms-info {
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
  line-height: 1.5rem;
  color: #fff;
  font-weight: 500;
}

@media (min-width: 250px) and (max-width: 1680px) {
  .terms-body .terms-info {
    width: 80%;
  }
}
.terms-body .terms-info h2 {
  color: #FF6801;
  font-size: 24px;
}

.terms-body .terms-info .privacy-info {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-left: auto;
  margin-right: auto;
}

.terms-body .terms-info .privacy-info .privacy-left {
  width: 50%;
}

@media (min-width: 250px) and (max-width: 1680px) {
  .terms-body .terms-info .privacy-info .privacy-left {
    width: 0%;
  }
}
.terms-body .terms-info .privacy-info .privacy-left img {
  width: 500px;
}

@media (min-width: 250px) and (max-width: 1680px) {
  .terms-body .terms-info .privacy-info .privacy-left img {
    display: none;
  }
}
.terms-body .terms-info .privacy-info .privacy-right {
  width: 50%;
}

@media (min-width: 250px) and (max-width: 1680px) {
  .terms-body .terms-info .privacy-info .privacy-right {
    width: 150%;
  }
}
.terms-body .terms-info .logotype-fotter {
  height: 200px;
}

.terms-body .fix-agree {
  position: fixed;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  background: rgb(24, 46, 115);
  background: linear-gradient(90deg, rgb(24, 46, 115) 0%, rgb(19, 51, 152) 58%);
  text-align: center;
  z-index: 10;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.terms-body .fix-agree .btn-agree {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.terms-body .fix-agree .btn-agree button {
  background-color: #FF6801;
  height: 60px;
  width: 8rem;
  border-radius: 12px;
  border: 0;
  width: 280px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat";
}

.enter-body {
  height: 100vh;
  background-color: #182E73;
}

.enter-body .enter-info {
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
  margin-bottom: 20rem;
}

@media (min-width: 250px) and (max-width: 1440px) {
  .enter-body .enter-info {
    width: 80%;
  }
}
.enter-body .enter-info .continue-btn {
  display: flex;
  flex-direction: column;
  width: 60%;
}

@media (min-width: 250px) and (max-width: 1440px) {
  .enter-body .enter-info .continue-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.enter-body .enter-info .continue-btn h2 {
  color: #FF6801;
}

@media (min-width: 250px) and (max-width: 1440px) {
  .enter-body .enter-info .continue-btn h2 {
    font-size: 20px;
  }
}
.enter-body .enter-info .continue-btn p {
  font-weight: 500;
}

@media (min-width: 250px) and (max-width: 1440px) {
  .enter-body .enter-info .continue-btn p {
    font-size: 16px;
  }
}
.enter-body .enter-info .continue-btn button {
  background-color: #FF6801;
  height: 60px;
  width: 6rem;
  border-radius: 12px;
  border: 0;
  width: 280px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat";
  margin-top: 1.4rem;
}

@media (min-width: 250px) and (max-width: 768px) {
  .enter-body .enter-info .continue-btn button {
    width: 180px;
    height: 50px;
    font-size: 16px;
  }
}
.phrase-body {
  background-color: #182E73;
  height: 100vh;
  color: #fff;
}

.phrase-body .enter-phrase {
  display: flex;
  flex-direction: column;
}

.phrase-body .enter-phrase h2 {
  color: #FF6801;
}

.phrase-body .enter-phrase .main-word .input-word {
  display: flex;
  flex-direction: row;
}

.phrase-body .enter-phrase .main-word input {
  font-size: 16px;
  padding: 9px 10px;
  border: 1px solid #9799a9;
  border-radius: 5px;
}

.phrase-body .enter-phrase .main-word .block-word {
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
  width: 12%;
  padding-left: 1rem;
  gap: 10px;
}

.phrase-body .enter-phrase .main-word .block-word span {
  margin-left: 4px;
  display: block;
}

.phrase-body .enter-phrase .main-word .block-word p {
  width: 10%;
}

.phrase-body .enter-phrase button {
  background-color: #FF6801;
  height: 40px;
  width: 4rem;
  border-radius: 12px;
  border: 0;
  width: 280px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: "Montserrat";
  margin-top: 1.4rem;
}


@media (min-width: 200px) and (max-width: 1440px) {
  .img-enter {
    display: none;
  }
}