/*==================== GOOGLE FONTS ====================*/
@font-face {
  font-family: icielCadena;
  src: url("../font/icielCadena/icielCadena.ttf");
}

/*==================== VARIABLES CSS ====================*/
:root {
  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
}

/*==================== BASE ====================*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background-image: url(/img/cupid/bg.png);
  background-repeat: repeat;
}

main {
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*==================== LAYOUT ====================*/
.grid {
  display: grid;
  gap: 1.5rem;
}

.header {
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--body-color);
}
/*==================== HEADER ====================*/

.logo__Cupid {
  width: 300px;
}

.title__Cupid {
  font-family: icielCadena;
  text-align: center;
  margin-top: 20px;
}
.data__Cupid {
  display: flex;
  justify-content: space-evenly;
  margin-top: 50px;
  margin: 0 20px;
}
.img__data__Cupid01 {
  width: 650px;
  border: #999 solid 1px;
  border-radius: 0.5rem;
  margin-bottom: 20px;
}
.map {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
}
.box__imageMap {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
}

.img__data__Cupid {
  border: #999 solid 1px;
  border-radius: 0.5rem;
}
.text__data__Cupid {
  color: #333333;
  text-align: justify;
}

.button {
  display: inline-block;
  color: #fff;
  background-color: #9dd9f3;
  padding: 1rem;
  border-radius: 0.5rem;
}
.button:hover {
  background-color: #9dd9f3;
}
.button--flex {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.button--small {
  padding: 0.75rem 1rem;
}
.project__button:hover {
  cursor: pointer;
}
.project__button:hover .button__icon {
  transform: translatex(0.25rem);
}
.button__ViewMore {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.footer__Cupid {
  width: 100%;
  bottom: 0;
  left: 0;
}

/* For medium devices */
@media screen and (min-width: 586px) {
  .text__data__Cupid {
    font-size: 14px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .text__data__Cupid {
    font-size: 14px;
    margin: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .text__data__Cupid {
    font-size: 16px;
    margin: 0 120px;
  }
  .img__data__Cupid {
    width: 600px;
  }
  .video__trailer {
    width: 600px;
  }
  .map {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
/* For large devices */
@media screen and (min-width: 1024px) {
  .text__data__Cupid {
    font-size: 16px;
    margin: 0 240px;
  }
  .img__data__Cupid {
    width: 800px;
  }
  .video__trailer {
    width: 800px;
  }
}
