@import url("https://fonts.googleapis.com/css2?family=Playball&display=swap");
* {
  padding: 0;
  margin: 0;
}

h1, h2, h3, span {
  font-family: "Playball", cursive;
}

body {
  background-color: rgba(0, 0, 0, 0.4941176471);
}

.welcom-main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 150px;
}

.main {
  background-color: #e5e5f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 800px;
  gap: 30px;
  border-radius: 10px;
  box-shadow: 0 0 2em rgb(187, 186, 186);
  padding: 30px;
}
@media screen and (max-width: 820px) {
  .main {
    width: 600px;
  }
}
@media screen and (max-width: 620px) {
  .main {
    width: 500px;
    gap: 10px;
  }
}
.main .main-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main .main-top h1 {
  color: green;
  font-size: 50px;
}
.main .main-center img {
  width: 200px;
}
@media screen and (max-width: 820px) {
  .main .main-center img {
    width: 150px;
  }
}
@media screen and (max-width: 620px) {
  .main .main-center img {
    width: 100px;
  }
}
.main .main-right .main-a {
  background-color: #c64771;
  padding: 10px;
  width: 80px;
  border-radius: 5px;
}
.main .main-right .main-a:hover {
  background-color: black;
}
.main .main-right .main-a a {
  text-decoration: none;
  color: white;
}

nav {
  background-color: #e5e5f8;
  width: 100%;
  position: fixed;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 620px) {
  nav {
    width: 100%;
    margin: 0;
  }
}
nav .select-menu {
  display: none;
}
nav .select-menu a {
  padding: 10px 20px;
}
nav #menu:hover .select-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  background-color: white;
  gap: 10px;
}
nav #menu:hover .select-menu a:hover {
  color: white;
  background-color: #c64771;
}
nav .navbar-left img {
  width: 130px;
}
nav .navbar-right {
  display: flex;
  gap: 50px;
  margin-right: 40px;
}
@media screen and (max-width: 620px) {
  nav .navbar-right {
    margin-right: 20px;
  }
}
nav .navbar-right a {
  text-decoration: none;
  font-size: 20px;
  color: black;
}
nav .navbar-right a:hover {
  color: #c64771;
}

footer {
  padding: 10px 40px 10px 40px;
  background-color: #191414;
  color: white;
  height: 180px;
  display: flex;
  justify-content: space-around;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media screen and (max-width: 620px) {
  footer {
    padding: 10px 30px 10px 30px;
  }
}
footer .discrib {
  width: 250px;
}
@media screen and (max-width: 620px) {
  footer .discrib {
    font-size: 11px;
  }
}
@media screen and (max-width: 820px) {
  footer .discrib {
    font-size: 13px;
  }
}
footer .discrib h2 {
  height: 60px;
  display: flex;
  align-items: center;
  color: #DF7357;
}
@media screen and (max-width: 620px) {
  footer .discrib h2 {
    font-size: 15px;
  }
}
@media screen and (max-width: 820px) {
  footer .discrib h2 {
    font-size: 18px;
  }
}
footer .discrib .location, footer .discrib .phone, footer .discrib .email- {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 620px) {
  footer .discrib .location, footer .discrib .phone, footer .discrib .email- {
    font-size: 11px;
  }
}
@media screen and (max-width: 820px) {
  footer .discrib .location, footer .discrib .phone, footer .discrib .email- {
    font-size: 13px;
  }
}
footer .discrib .soilmidia {
  display: flex;
  justify-content: start;
  gap: 15px;
}
footer .discrib .soilmidia i {
  transition: box-shadow 0.1s ease-in-out, transform 1s;
  margin-top: 10px;
  font-size: 25px;
  border: 1.5px solid white;
  padding: 3px;
}
footer .discrib .soilmidia i:hover {
  box-shadow: rgba(224, 224, 224, 0.25) 0px 54px 55px, rgba(206, 205, 205, 0.245) 0px -12px 30px, rgba(202, 201, 201, 0.12) 0px 4px 6px, rgba(255, 255, 255, 0.17) 0px 12px 13px, rgba(206, 205, 205, 0.09) 0px -3px 5px;
  transform: translateY(-10px);
}
@media screen and (max-width: 620px) {
  footer .discrib .soilmidia i {
    font-size: 100%;
  }
}
footer .discrib .locations p {
  height: 60px;
}
@media screen and (max-width: 620px) {
  footer .discrib .locations p {
    font-size: 11px;
  }
}
@media screen and (max-width: 620px) {
  footer .discrib .locations p {
    font-size: 13px;
  }
}

.group {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.paragrab {
  height: 90px;
  width: 60%;
}

.title- {
  height: 50%;
  width: 50%;
  padding: 30px;
  background-color: rgb(214, 213, 213);
  box-shadow: 0 0 2em gray;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.title- h1 {
  flex: 0.2;
  width: 60%;
}
@media screen and (max-width: 820px) {
  .title- h1 {
    font-size: 20px;
  }
}
.title- p {
  flex: 1;
  width: 80%;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  .title- p {
    font-size: 11px;
  }
}
.title- img {
  width: 30%;
  margin-bottom: 10px;
}
.title- a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40%;
  border-radius: 7px;
  font-size: 15px;
  border: 3px solid pink;
  color: black;
  text-decoration: none;
}

.container {
  display: flex;
  background-image: url(/img/Homecafe.jpg);
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 10px;
}
@media screen and (max-width: 620px) {
  .container {
    height: 50%;
  }
}
@media screen and (max-width: 820px) {
  .container {
    height: 60%;
  }
}
.container .text {
  flex: 1.5;
  background: rgba(245, 222, 179, 0.241);
  color: white;
  border-radius: 10px 10px 10px 10px;
  margin-left: 40px;
}
@media screen and (max-width: 820px) {
  .container .text {
    width: 90%;
  }
}
.container .text h1 {
  font-size: 30px;
  padding: 10px;
}
@media screen and (max-width: 620px) {
  .container .text h1 {
    font-size: 15px;
  }
}
@media screen and (max-width: 820px) {
  .container .text h1 {
    font-size: 18px;
  }
}
.container .text p {
  font-size: 20px;
}
@media screen and (max-width: 620px) {
  .container .text p {
    font-size: 15px;
  }
}
@media screen and (max-width: 820px) {
  .container .text p {
    font-size: 15px;
  }
}
.container .text h1,
.container .text p {
  width: 80%;
}
.container .cover-pic {
  display: flex;
  flex: 1;
  justify-content: end;
  align-items: center;
  margin: 10% 0 0 0;
}
@media screen and (max-width: 620px) {
  .container .cover-pic {
    padding-top: 10%;
  }
}
@media screen and (max-width: 820px) {
  .container .cover-pic {
    margin-top: 20%;
  }
}
.container .cover-pic .cover-sell img {
  width: 250px;
  height: 200px;
  margin-left: 10%;
}
@media screen and (max-width: 620px) {
  .container .cover-pic .cover-sell img {
    width: 150px;
    height: 100px;
    margin-left: 10%;
  }
}
@media screen and (max-width: 820px) {
  .container .cover-pic .cover-sell img {
    width: 150px;
    height: 100px;
  }
}
.container .cover-pic .cover-sit img {
  width: 250px;
  height: 200px;
  margin: -90% 30px 0 -40px;
}
@media screen and (max-width: 620px) {
  .container .cover-pic .cover-sit img {
    width: 150px;
    height: 100px;
  }
}
@media screen and (max-width: 820px) {
  .container .cover-pic .cover-sit img {
    width: 150px;
    height: 100px;
  }
}
.container .cover-pic .cover-sell img,
.container .cover-pic .cover-sit img {
  border: 3px solid white;
}

.card-promotion {
  background: white;
  width: 80%;
  margin: auto;
  margin-top: 5%;
  border-radius: 5px 5px 5px 5px;
}
@media screen and (max-width: 620px) {
  .card-promotion {
    width: 90%;
  }
}
@media screen and (max-width: 820px) {
  .card-promotion {
    width: 90%;
    margin-top: 10%;
  }
}
.card-promotion .title {
  padding: 0 0 60px 0;
}
.card-promotion .title h1 {
  text-align: center;
  padding-top: 20px;
  font-size: 40px;
  color: red;
}
@media screen and (max-width: 620px) {
  .card-promotion .title h1 {
    padding: 10px;
  }
}
@media screen and (max-width: 820px) {
  .card-promotion .title h1 {
    padding: 30px;
  }
}
.card-promotion .content-promotion {
  display: flex;
}
@media screen and (max-width: 620px) {
  .card-promotion .content-promotion {
    display: flex;
  }
}
.card-promotion .pic {
  display: flex;
  flex: 1;
}
.card-promotion .pic .pic-coffee img {
  width: 200px;
  height: 250px;
  margin-top: -5%;
  margin-left: -100%;
  width: 400px;
  height: 350px;
  margin-top: -30%;
  margin-left: 5%;
}
@media screen and (max-width: 620px) {
  .card-promotion .pic .pic-coffee img {
    width: 100px;
    height: 100px;
    margin-left: -15%;
  }
}
@media screen and (max-width: 820px) {
  .card-promotion .pic .pic-coffee img {
    width: 350px;
    height: 300px;
    margin-left: -15%;
  }
}
.card-promotion .pic .pic-tea img {
  width: 300px;
  height: 350px;
  margin-left: -55%;
  margin-top: -30%;
}
@media screen and (max-width: 620px) {
  .card-promotion .pic .pic-tea img {
    width: 200px;
    height: 250px;
    margin-left: -100%;
  }
}
@media screen and (max-width: 820px) {
  .card-promotion .pic .pic-tea img {
    width: 250px;
    height: 300px;
    margin-left: -100%;
  }
}
.card-promotion .text-info-promotion {
  flex: 2;
  margin-left: -1%;
}
@media screen and (max-width: 820px) {
  .card-promotion .text-info-promotion {
    margin-left: -30%;
    margin-top: -5%;
    margin-bottom: 5%;
  }
}
.card-promotion .text-info-promotion .text-discount {
  margin-top: -10%;
}
@media screen and (max-width: 620px) {
  .card-promotion .text-info-promotion .text-discount {
    margin-left: -70%;
  }
}
.card-promotion .text-info-promotion .text-discount h1 {
  font-size: 100px;
  color: red;
}
@media screen and (max-width: 620px) {
  .card-promotion .text-info-promotion .text-discount h1 {
    font-size: 60px;
  }
}
.card-promotion .text-info-promotion .text-discount h1 span {
  font-size: 40px;
}
@media screen and (max-width: 620px) {
  .card-promotion .text-info-promotion .text-discount h1 span {
    font-size: 30px;
  }
}
.card-promotion .text-info-promotion .text-discount p {
  font-size: 20px;
}
@media screen and (max-width: 620px) {
  .card-promotion .text-info-promotion .text-free {
    margin-left: -65%;
  }
}
.card-promotion .text-info-promotion .text-free h1 {
  font-size: 30px;
  color: red;
  padding: 10px;
}
.card-promotion .text-info-promotion .text-free .tex-input {
  line-height: 1.5;
}
.card-promotion .text-info-promotion button {
  display: flex;
  width: 200px;
  justify-content: space-between;
  align-items: center;
  padding: 1px;
  margin-left: 49%;
  border-radius: 30px 0 0 0;
}
@media screen and (max-width: 620px) {
  .card-promotion .text-info-promotion button {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .card-promotion .text-info-promotion button {
    margin-left: 1px;
    background: none;
    color: black;
  }
}
.card-promotion .text-info-promotion button .pic-free img {
  width: 80px;
  height: 60px;
}
.card-promotion .text-info-promotion button .text-add {
  margin-left: -70%;
  margin-right: 1px;
  font-size: 15px;
}
.card-promotion .text-info-promotion button .text-add span {
  font-size: 30px;
}
@media screen and (max-width: 620px) {
  .card-promotion .text-info-promotion button .text-add span {
    color: red;
  }
}

.content-best-menu {
  text-align: center;
  line-height: 3;
  margin-top: 60px;
}
.content-best-menu h1, .content-best-menu p {
  color: white;
}
@media screen and (max-width: 620px) {
  .content-best-menu {
    line-height: 1.5;
  }
}
@media screen and (max-width: 820px) {
  .content-best-menu {
    margin-top: 3%;
  }
}
.content-best-menu h2 {
  flex: 40px;
  padding: 20px;
  color: white;
}
@media screen and (max-width: 820px) {
  .content-best-menu h2 {
    font-size: 30px;
  }
}
.content-best-menu p {
  font-size: 25px;
  line-height: 1.5;
}
@media screen and (max-width: 620px) {
  .content-best-menu p {
    line-height: 1.5;
    font-size: 17px;
  }
}
@media screen and (max-width: 820px) {
  .content-best-menu p {
    font-size: 20px;
  }
}

.group-famous-menu {
  padding: 0 60px 0 60px;
}
@media screen and (max-width: 620px) {
  .group-famous-menu {
    padding: 0 20px 0 20px;
  }
}
.group-famous-menu .menu {
  display: flex;
  background: #e5e5f8;
  margin: auto;
  margin-top: 60px;
  padding: 20px;
}
@media screen and (max-width: 620px) {
  .group-famous-menu .menu {
    padding: 10px;
    border-radius: 5px 5px 5px 5px;
    gap: 20px;
  }
}
@media screen and (max-width: 820px) {
  .group-famous-menu .menu {
    border-radius: 5px 5px 5px 5px;
  }
}
.group-famous-menu .menu .text-info {
  flex: 1.5;
  line-height: 1.3;
  width: 60%;
}
.group-famous-menu .menu .text-info h2 {
  display: flex;
  width: 200px;
  height: 60px;
  color: white;
  background: #DF7357;
  align-items: center;
  border-radius: 0 0 90px 0;
  margin: -20px 0 0 -20px;
  padding-left: 15px;
  cursor: pointer;
}
@media screen and (max-width: 620px) {
  .group-famous-menu .menu .text-info h2 {
    width: 100px;
    height: 30px;
    font-size: 15px;
    border-radius: 3px 3px 3px 3px;
    margin: auto;
    text-align: center;
    background: none;
    color: black;
  }
}
@media screen and (max-width: 820px) {
  .group-famous-menu .menu .text-info h2 {
    width: 150px;
    height: 40px;
    font-size: 15px;
  }
}
.group-famous-menu .menu .text-info p {
  margin-top: 20px;
}
.group-famous-menu .menu .text-info button {
  width: 200px;
  padding: 15px;
  margin-top: 80px;
  font-size: 20px;
  border-radius: 5px 5px 5px 5px;
}
@media screen and (max-width: 620px) {
  .group-famous-menu .menu .text-info button {
    width: 100px;
    padding: 5px;
    font-size: 10px;
    margin-top: 13px;
  }
}
@media screen and (max-width: 820px) {
  .group-famous-menu .menu .text-info button {
    width: 150px;
    height: 40px;
    font-size: 15px;
  }
}
.group-famous-menu .menu .text-info button a:hover {
  color: black;
}
.group-famous-menu .menu .text-info button:hover {
  background: black;
}
.group-famous-menu .menu .group-menu {
  position: relative;
  display: flex;
  flex: 2;
  justify-content: end;
  margin: auto;
  gap: 8px;
}
@media screen and (max-width: 620px) {
  .group-famous-menu .menu .group-menu {
    justify-content: center;
  }
}
.group-famous-menu .menu .group-menu img {
  width: 30%;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 620px) {
  .group-famous-menu .menu .group-menu img {
    width: 30%;
  }
}
.group-famous-menu .menu .group-menu img:hover {
  box-shadow: 0 0 30px black;
}

.about {
  padding: 0 60px 60px 60px;
}
@media screen and (max-width: 620px) {
  .about {
    padding: 0 20px 20px 20px;
  }
}
@media screen and (max-width: 820px) {
  .about {
    padding: 0 60px 60px 60px;
  }
}
.about h1 {
  text-align: center;
  padding: 7% 0 15% 0;
  color: white;
}
@media screen and (max-width: 620px) {
  .about h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 820px) {
  .about h1 {
    font-size: 30px;
  }
}
.about .content-about {
  display: flex;
}
.about .about-center {
  margin-top: -15%;
}
.about .about-center img {
  width: 450px;
}
@media screen and (max-width: 620px) {
  .about .about-center img {
    width: 150px;
    height: 250px;
  }
}
@media screen and (max-width: 820px) {
  .about .about-center img {
    width: 200px;
    height: 250px;
    margin-top: -5%;
  }
}
.about .about-right {
  margin-left: 40px;
}
@media screen and (max-width: 620px) {
  .about .about-left p,
  .about .about-right p {
    font-size: 15px;
  }
}
.about .about-left p,
.about .about-right p {
  color: white;
}
.about .about-left button,
.about .about-right button {
  padding: 15px;
  font-size: 20px;
  margin-top: 50px;
  border-radius: 5px;
}
@media screen and (max-width: 620px) {
  .about .about-left button,
  .about .about-right button {
    width: 100px;
    padding: 10px;
    font-size: 20px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 820px) {
  .about .about-left button,
  .about .about-right button {
    width: 100px;
    padding: 10px;
    font-size: 15px;
    margin-top: 10px;
  }
}
.about .about-left h2,
.about .about-right h2 {
  padding-bottom: 15px;
  color: white;
}
@media screen and (max-width: 620px) {
  .about .about-left h2,
  .about .about-right h2 {
    font-size: 20px;
  }
}

select {
  border: none;
  background: none;
}

.container-menu {
  padding: 40px;
}

.container-menu1 {
  background: url(/img/MenuBackground2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-menu1 .header {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}
.container-menu1 .header h1 {
  color: white;
  font-size: 40px;
}
.container-menu1 .header .search-container input {
  font-size: 25px;
  padding: 10px;
  width: 350px;
  border-radius: 10px;
  border: none;
  background-color: rgba(255, 255, 255, 0.705);
}
.container-menu1 .header .link {
  padding: 20px;
}
.container-menu1 .header .link a {
  text-decoration: none;
  color: gainsboro;
  padding: 15px 30px;
  border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.548);
}
.container-menu1 .header .link a:hover {
  background-color: #c64771;
}

.container-menu2-left {
  padding: 50px 0;
  text-align: center;
}
.container-menu2-left h1 {
  color: white;
}

.container-menu3-header h1 {
  text-align: center;
  align-items: center;
  color: #c64771;
}

.container-menu3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
}
@media screen and (max-width: 620px) {
  .container-menu3 {
    overflow-x: scroll;
    flex-wrap: nowrap;
    justify-content: start;
  }
}
.container-menu3 .card {
  transition: box-shadow 0.1s ease-in-out, transform 1s;
  background: #e5e5f8;
  width: 350px;
  border-radius: 10px;
}
.container-menu3 .card:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.245) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transform: translateY(-10px);
}
.container-menu3 .card .card-top img {
  width: 350px;
  border-radius: 10px 10px 0 0;
}
.container-menu3 .card .card-center {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
.container-menu3 .card .card-button {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
}
.container-menu3 .card .card-button .card-button-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.container-menu3 .card .card-button .card-button-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.container-menu3 .card .card-button .card-button-right span i {
  font-size: x-large;
}
.container-menu3 .card .card-button .card-button-right span i:hover {
  color: #c64771;
}

.container5 {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 40px;
}

.card-cake {
  transition: box-shadow 0.1s ease-in-out, transform 1s;
  background-color: #e5e5f8;
  border-radius: 5px;
  width: 230px;
  height: 270px;
  padding: 10px;
  text-align: center;
}
.card-cake:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.245) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transform: translateY(-10px);
}
.card-cake .card-cake-top {
  display: flex;
  justify-content: end;
}
.card-cake .card-cake-top i {
  font-size: x-large;
}
.card-cake .card-cake-top i:hover {
  color: #c64771;
}
.card-cake .card-cake-center img {
  width: 120px;
}
.card-cake .card-cake-buttom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

button {
  background: #c64771;
  padding: 8px;
  border: none;
  border-radius: 3px;
  color: white;
}
button:hover {
  background-color: black;
}
button a {
  text-decoration: none;
  color: white;
}

.groupp {
  height: 1100px;
  display: flexbox;
  flex-direction: column;
}
@media screen and (max-width: 620px) {
  .groupp {
    height: 1300px;
  }
}
.groupp .backgroun {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 50px 0 50px;
  height: 600PX;
  background-color: black;
}
.groupp .backgroun .call {
  height: 100px;
  padding: 0;
  margin: 0;
}
.groupp .backgroun .call ul {
  display: flex;
  width: 100%;
}
.groupp .backgroun .call ul li {
  list-style: none;
  width: 100%;
}
.groupp .backgroun .call ul li a {
  display: block;
  position: relative;
  padding: 0 0 34px 0;
  width: 60%;
  height: 60px;
  line-height: 100px;
  font-size: 300%;
  text-align: center;
  text-decoration: none;
  color: white;
  margin: 0 15px 0 0;
  transition: 0.5s;
}
@media screen and (max-width: 820px) {
  .groupp .backgroun .call ul li a {
    width: 60%;
    height: 60px;
    line-height: 100px;
    font-size: 200%;
  }
}
.groupp .backgroun .call ul li a span {
  position: absolute;
  transition: transform 0.5s;
}
.groupp .backgroun .call ul li a span:nth-child(1),
.groupp .backgroun .call ul li a span:nth-child(3) {
  width: 100%;
  height: 3px;
  background: black;
}
.groupp .backgroun .call ul li a span:nth-child(1) {
  top: 0;
  left: 0;
  transform-origin: right;
}
.groupp .backgroun .call ul li a:hover span:nth-child(1) {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.groupp .backgroun .call ul li a span:nth-child(3) {
  bottom: 0;
  left: 0;
  transform-origin: left;
}
.groupp .backgroun .call ul li a:hover span:nth-child(3) {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
.groupp .backgroun .call ul li a span:nth-child(2),
.groupp .backgroun .call ul li a span:nth-child(4) {
  width: 3px;
  height: 100%;
  background: #404040;
}
.groupp .backgroun .call ul li a span:nth-child(2) {
  top: 0;
  left: 0;
  transform: scale(0);
  transform-origin: bottom;
}
.groupp .backgroun .call ul li a:hover span:nth-child(2) {
  transform: scale(1);
  transform-origin: top;
  transition: transform 0.5s;
}
.groupp .backgroun .call ul li a span:nth-child(4) {
  top: 0;
  right: 0;
  transform: scale(0);
  transform-origin: top;
}
.groupp .backgroun .call ul li a:hover span:nth-child(4) {
  transform: scale(1);
  transform-origin: bottom;
  transition: transform 0.5s;
}
.groupp .backgroun .call .facebook:hover {
  color: #3b5998;
}
.groupp .backgroun .call .facebook:hover span {
  background: #3b5998;
}
.groupp .backgroun .call .twitter:hover {
  color: #1da1f2;
}
.groupp .backgroun .call .twitter:hover span {
  background: #1da1f2;
}
.groupp .backgroun .call .instagram:hover {
  color: #c32aa3;
}
.groupp .backgroun .call .instagram:hover span {
  background: #c32aa3;
}
.groupp .backgroun .call .google:hover {
  color: #dd4b39;
}
.groupp .backgroun .call .google:hover span {
  background: #dd4b39;
}
.groupp .backgroun .call ul li a .twitter {
  color: #1da1f2;
}
.groupp .backgroun .call ul li a:hover:nth-child(3) {
  color: #c32aa3;
}
.groupp .backgroun .call ul li a:hover:nth-child(4) {
  color: #dd4b39;
}
.groupp .backgroun p {
  color: white;
  height: 90px;
  display: flex;
  flex-direction: column;
  font-size: 15px;
}
@media screen and (max-width: 820px) {
  .groupp .backgroun {
    padding: 40px 20px 0 20px;
  }
}
@media screen and (max-width: 620px) {
  .groupp .backgroun {
    padding: 80px 5px 0 5px;
    height: 400px;
  }
}
.groupp .backgroun .image {
  flex: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.groupp .backgroun .image .back {
  margin-left: 60px;
  width: 390px;
  height: 260px;
  margin-top: -70px;
}
@media screen and (max-width: 820px) {
  .groupp .backgroun .image .back {
    margin-left: 0;
    width: 100%;
  }
}
.groupp .backgroun .image .back img {
  box-shadow: 0 0 2em gray;
  transition: box-shadow 0.1s ease-in-out, transform 1s;
  width: 390px;
}
@media screen and (max-width: 820px) {
  .groupp .backgroun .image .back img {
    width: 100%;
  }
}
.groupp .backgroun .image .back img:hover {
  box-shadow: rgba(224, 90, 37, 0.158) 0px 54px 55px, rgba(255, 192, 203, 0.219) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transform: translateY(-10px);
}
.groupp .backgroun .text-contener {
  width: 50%;
  margin-top: -90px;
}
.groupp .backgroun .text-contener > span:nth-child(4) {
  font-size: 2.9rem;
}
@media screen and (max-width: 820px) {
  .groupp .backgroun .text-contener > span:nth-child(4) {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 620px) {
  .groupp .backgroun .text-contener > span:nth-child(4) {
    font-size: 1.5rem;
  }
}
.groupp .backgroun .text-contener > span:nth-child(5) {
  font-size: 2.9rem;
}
@media screen and (max-width: 820px) {
  .groupp .backgroun .text-contener > span:nth-child(5) {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 620px) {
  .groupp .backgroun .text-contener > span:nth-child(5) {
    font-size: 1.5rem;
  }
}
.groupp .backgroun .text-contener > span:nth-child(6) {
  font-size: 2.9rem;
}
@media screen and (max-width: 820px) {
  .groupp .backgroun .text-contener > span:nth-child(6) {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 620px) {
  .groupp .backgroun .text-contener > span:nth-child(6) {
    font-size: 1.5rem;
  }
}
.groupp .backgroun .text-contener > span:nth-child(7) {
  font-size: 2.9rem;
}
@media screen and (max-width: 820px) {
  .groupp .backgroun .text-contener > span:nth-child(7) {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 620px) {
  .groupp .backgroun .text-contener > span:nth-child(7) {
    font-size: 1.5rem;
  }
}
.groupp .backgroun .text-contener > span:nth-child(8) {
  font-size: 2.9rem;
}
@media screen and (max-width: 820px) {
  .groupp .backgroun .text-contener > span:nth-child(8) {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 620px) {
  .groupp .backgroun .text-contener > span:nth-child(8) {
    font-size: 1.5rem;
  }
}
.groupp .backgroun .text-contener > span {
  font-weight: bold;
  font-size: 4.9rem;
  text-transform: uppercase;
  animation: glow 3s ease-in-out infinite;
  animation-delay: var(--daley);
}
@media screen and (max-width: 820px) {
  .groupp .backgroun .text-contener > span {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 620px) {
  .groupp .backgroun .text-contener > span {
    font-size: 2.5rem;
  }
}
.groupp .backgroun .text-contener > p {
  animation: glows 4s ease-in-out infinite;
  animation-delay: var(--daley);
  font-family: "Playball", cursive;
}
@media screen and (max-width: 820px) {
  .groupp .backgroun .text-contener > p {
    font-size: 11px;
  }
}
@keyframes glow {
  0%, 100% {
    color: var(--color);
    text-shadow: 0 0 1px pink, 0 0 50px pink, 0 0 100px pink;
    color: pink;
  }
  20%, 80% {
    color: rgb(71, 71, 71);
    text-shadow: none;
  }
}
@keyframes glows {
  0%, 100% {
    color: var(--color);
    text-shadow: 0 0 1px rgba(255, 192, 203, 0.952), 0 0 50px rgba(255, 192, 203, 0.945), 0 0 100px rgba(255, 192, 203, 0.938);
    color: pink;
  }
  20%, 80% {
    color: rgb(156, 153, 153);
    text-shadow: none;
  }
}
.groupp .backgroun .text-contener span:nth-child(2) {
  animation-delay: 0.25s;
}
.groupp .backgroun .text-contener span:nth-child(3) {
  animation-delay: 0.5s;
}
.groupp .backgroun .text-contener span:nth-child(4) {
  animation-delay: 0.75s;
}
.groupp .backgroun .text-contener span:nth-child(5) {
  animation-delay: 1s;
}
.groupp .backgroun .text-contener span:nth-child(6) {
  animation-delay: 1.25s;
}
.groupp .backgroun .text-contener span:nth-child(7) {
  animation-delay: 1.5s;
}
.groupp .backgroun .text-contener span:nth-child(8) {
  animation-delay: 1.75s;
}
.groupp .backgroun .text-contener span:nth-child(9) {
  animation-delay: 2s;
}
.groupp .backgroun .text-contener span:nth-child(10) {
  animation-delay: 2.25s;
}
.groupp .backgroun .text-contener span:nth-child(11) {
  animation-delay: 2.5s;
}
.groupp .backgroun .text-contener p {
  animation-delay: 0.5s;
}
.groupp .header {
  height: 750px;
  padding: 50px;
  display: flex;
}
@media screen and (max-width: 820px) {
  .groupp .header {
    padding: 20px;
  }
}
@media screen and (max-width: 620px) {
  .groupp .header {
    height: 840px;
    padding: 0px;
    flex-direction: column;
  }
}
.groupp .header .input {
  color: pink;
  margin-top: -180px;
  height: 490px;
  font-size: 14px;
  background-color: rgba(44, 44, 44, 0.788);
  margin-left: 10px;
  padding: 30px;
  border-radius: 10px;
  margin-right: 20px;
  flex: 0.9;
}
@media screen and (max-width: 820px) {
  .groupp .header .input {
    font-size: 11px;
  }
}
@media screen and (max-width: 620px) {
  .groupp .header .input {
    margin-top: -80px;
    font-size: 10px;
  }
}
.groupp .header .input form {
  width: 100%;
  height: 600px;
}
.groupp .header .input form .title {
  height: 70px;
}
.groupp .header .input form .fullname,
.groupp .header .input form .email {
  margin-bottom: 30px;
}
.groupp .header .input form .fullname input,
.groupp .header .input form .email input {
  width: 90%;
  height: 50px;
  padding-left: 30PX;
  font-size: 20px;
  border-radius: 10px;
  border: none;
  background: #F0ECEC;
  transition: box-shadow 0.1s ease-in-out, transform 1s;
}
.groupp .header .input form .fullname input:hover,
.groupp .header .input form .email input:hover {
  box-shadow: rgba(250, 249, 249, 0.25) 0px 54px 55px, rgba(255, 254, 254, 0.245) 0px -12px 30px, rgba(250, 249, 249, 0.12) 0px 4px 6px, rgba(255, 255, 255, 0.17) 0px 12px 13px, rgba(253, 253, 253, 0.09) 0px -3px 5px;
  transform: translateY(-10px);
}
.groupp .header .input form .feedback {
  margin-bottom: 40px;
}
.groupp .header .input form .feedback h1 {
  height: 50px;
}
.groupp .header .input form .feedback input {
  width: 90%;
  height: 70px;
  padding-left: 30PX;
  border-radius: 10px;
  font-size: 20px;
  border: none;
  background: #F0ECEC;
  transition: box-shadow 0.1s ease-in-out, transform 1s;
}
.groupp .header .input form .feedback input:hover {
  box-shadow: rgba(192, 191, 191, 0.11) 0px 54px 55px, rgba(255, 254, 254, 0.096) 0px -12px 30px, rgba(250, 249, 249, 0.12) 0px 4px 6px, rgba(255, 255, 255, 0.17) 0px 12px 13px, rgba(253, 253, 253, 0.09) 0px -3px 5px;
  transform: translateY(-10px);
}
.groupp .header .input form .submit {
  margin-top: 100px;
}
.groupp .header .input form .submit a {
  text-decoration: none;
  font-weight: bold;
  color: pink;
  padding: 15px 70px 15px 70px;
  border-radius: 7px;
  font-size: 30px;
  background-color: #c64771;
  transition: box-shadow 0.1s ease-in-out, transform 1s;
}
@media screen and (max-width: 820px) {
  .groupp .header .input form .submit a {
    font-size: 25px;
  }
}
@media screen and (max-width: 620px) {
  .groupp .header .input form .submit a {
    font-size: 20px;
  }
}
.groupp .header .input form .submit a:hover {
  box-shadow: rgba(250, 249, 249, 0.25) 0px 54px 55px, rgba(255, 254, 254, 0.245) 0px -12px 30px, rgba(250, 249, 249, 0.12) 0px 4px 6px, rgba(255, 255, 255, 0.17) 0px 12px 13px, rgba(253, 253, 253, 0.09) 0px -3px 5px;
  transform: translateY(-10px);
}
.groupp .header .map {
  transition: box-shadow 0.1s ease-in-out, transform 1s;
  border-radius: 10px;
  height: 550px;
  margin-top: -180px;
  flex: 1;
}
.groupp .header .map:hover {
  box-shadow: rgba(250, 249, 249, 0.25) 0px 54px 55px, rgba(255, 254, 254, 0.245) 0px -12px 30px, rgba(250, 249, 249, 0.12) 0px 4px 6px, rgba(255, 255, 255, 0.17) 0px 12px 13px, rgba(253, 253, 253, 0.09) 0px -3px 5px;
  transform: translateY(-10px);
}
@media screen and (max-width: 620px) {
  .groupp .header .map {
    border-radius: 0%;
    margin-top: 60px;
    height: 200px;
  }
  .groupp .header .map:hover {
    box-shadow: none;
  }
}
.groupp .header .map .mapouter {
  position: relative;
  text-align: right;
  width: 100%;
  height: 100%;
}
.groupp .header .map .gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 100%;
}
.groupp .header .map .gmap_iframe {
  border-radius: 10px;
  width: 100% !important;
  height: 550px !important;
}
@media screen and (max-width: 620px) {
  .groupp .header .map .gmap_iframe {
    transition: box-shadow 0.1s ease-in-out, transform 1s;
    height: 200px !important;
    border-radius: 0px;
  }
  .groupp .header .map .gmap_iframe:hover {
    box-shadow: rgba(250, 249, 249, 0.25) 0px 54px 55px, rgba(255, 254, 254, 0.245) 0px -12px 30px, rgba(250, 249, 249, 0.12) 0px 4px 6px, rgba(255, 255, 255, 0.17) 0px 12px 13px, rgba(253, 253, 253, 0.09) 0px -3px 5px;
  }
}

main {
  padding: 60px;
  height: 410px;
}
@media screen and (max-width: 820px) {
  main {
    padding: 20px;
  }
}
@media screen and (max-width: 620px) {
  main {
    height: 610px;
  }
}
main .title-main {
  height: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
main .title-main h1 {
  color: white;
}
@media screen and (max-width: 620px) {
  main .title-main h1 {
    font-size: 19px;
  }
}
@media screen and (max-width: 620px) {
  main .title-main {
    height: 90px;
  }
}
main .card-person {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 620px) {
  main .card-person {
    flex-wrap: wrap;
  }
}
main .card-person .card {
  transition: box-shadow 0.1s ease-in-out, transform 1s;
  padding: 10px;
  border-radius: 10px;
  background-color: #dad9d9;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 20%;
  height: 300px;
}
main .card-person .card:hover {
  box-shadow: rgba(224, 90, 37, 0.158) 0px 54px 55px, rgba(255, 192, 203, 0.219) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transform: translateY(-10px);
}
@media screen and (max-width: 620px) {
  main .card-person .card {
    width: 40%;
  }
}
@media screen and (max-width: 620px) {
  main .card-person .card {
    height: 220px;
    margin-bottom: 40px;
  }
}
main .card-person .card p {
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (max-width: 620px) {
  main .card-person .card p {
    font-size: 10px;
  }
}
main .card-person .card img {
  padding: 10px;
  width: 50%;
  border-radius: 50%;
}

body {
  background-color: rgba(0, 0, 0, 0.4941176471);
}

.welcom-main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 150px;
}

.main {
  background-color: #e5e5f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 800px;
  gap: 30px;
  border-radius: 10px;
  box-shadow: 0 0 2em rgb(187, 186, 186);
  padding: 30px;
}
@media screen and (max-width: 820px) {
  .main {
    width: 600px;
  }
}
@media screen and (max-width: 620px) {
  .main {
    width: 500px;
    gap: 10px;
  }
}
.main .main-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main .main-top h1 {
  color: green;
  font-size: 50px;
}
.main .main-center img {
  width: 200px;
}
@media screen and (max-width: 820px) {
  .main .main-center img {
    width: 150px;
  }
}
@media screen and (max-width: 620px) {
  .main .main-center img {
    width: 100px;
  }
}
.main .main-right .main-a {
  background-color: #c64771;
  padding: 10px;
  width: 80px;
  border-radius: 5px;
}
.main .main-right .main-a:hover {
  background-color: black;
}
.main .main-right .main-a a {
  text-decoration: none;
  color: white;
}/*# sourceMappingURL=mian.css.map */