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

body {
  font-family: "Tenor Sans", sans-serif;
  color: rgb(0, 0, 0);
}

h1 {
  margin: 0;
}

h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited, a:hover, a:active, a:focus {
  color: inherit;
}

hr {
  margin-bottom: 0;
}

.page {
  margin: 0;
}

header #site-navigation ul,
header #site-navigation .main-navigation ul,
header #footer-navigation ul,
header #footer-navigation .main-navigation ul,
footer #site-navigation ul,
footer #site-navigation .main-navigation ul,
footer #footer-navigation ul,
footer #footer-navigation .main-navigation ul {
  justify-content: space-around;
  width: 100%;
}

header {
  padding-block-start: 4rem;
}
@media screen and (max-width: 100rem) {
  header {
    padding-block-start: 3.5rem;
  }
}
@media screen and (max-width: 50rem) {
  header {
    padding-block-start: 2.5rem;
  }
}
@media screen and (max-width: 37.5rem) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 420px) {
  header {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 37.5rem) {
  header #site-navigation {
    position: fixed;
    top: 78px;
    right: 0;
    z-index: 3;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    padding-block-start: 3rem;
    padding-inline: 3rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    background-color: #fff;
  }
  header #site-navigation.open {
    transform: translateX(0);
  }
  header #site-navigation.open ul {
    display: flex;
  }
}
header #site-navigation ul {
  justify-content: space-around;
  margin-inline: auto;
  width: 100%;
  max-width: 60rem;
}
@media screen and (max-width: 37.5rem) {
  header #site-navigation ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 37.5rem) {
  header .main-navigation {
    width: auto;
  }
}
header .website-custom-logo {
  display: flex;
  justify-content: center;
  padding-block: 2rem;
}
@media screen and (max-width: 100rem) {
  header .website-custom-logo {
    padding-block: 1rem;
  }
}
@media screen and (max-width: 100rem) {
  header .website-custom-logo img {
    max-width: 12rem;
  }
}
@media screen and (max-width: 50rem) {
  header .website-custom-logo img {
    max-width: 10rem;
  }
}
@media screen and (max-width: 480px) {
  header .website-custom-logo img {
    max-width: 8rem;
  }
}
header nav ul .current_page_item a,
header nav ul .current-page-ancestor a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
header {
  /* -- MOBILE Header Menu Button -- */
}
header #menu-btn {
  position: relative;
  display: none;
  width: 2rem;
  height: 20px;
  z-index: 4;
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
  cursor: pointer;
  border: none;
  background: none;
}
@media screen and (max-width: 37.5rem) {
  header #menu-btn {
    display: flex;
  }
}
header #menu-btn span {
  position: absolute;
  display: flex;
  height: 2px;
  width: 100%;
  background: #000;
  border-radius: 0.625rem;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.2s ease-in-out;
}
header #menu-btn span:nth-child(1) {
  top: 0;
}
header #menu-btn span:nth-child(2) {
  top: 6px;
}
header #menu-btn span:nth-child(3) {
  top: 12px;
}
header #menu-btn span:nth-child(4) {
  top: 18px;
}
header #menu-btn.open span:nth-child(1) {
  top: 0.75rem;
  width: 0%;
  left: 50%;
}
header #menu-btn.open span:nth-child(2) {
  transform: rotate(45deg);
}
header #menu-btn.open span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}
header #menu-btn.open span:nth-child(4) {
  top: 0.75rem;
  width: 0%;
  left: 50%;
}

footer {
  margin-inline: auto;
  padding-block: 6rem 4rem;
  max-width: 60rem;
}
@media screen and (max-width: 64rem) {
  footer {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 800px) {
  footer {
    padding-block: 4rem;
  }
}
@media screen and (max-width: 31.25rem) {
  footer {
    padding-block: 2rem;
    padding-inline: 1rem;
  }
}
footer hr {
  margin-block: 1rem;
}
footer .footer__logo {
  margin-block-end: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 37.5rem) {
  footer .footer__logo img {
    max-width: 12rem;
  }
}
@media screen and (max-width: 480px) {
  footer .footer__logo img {
    max-width: 8rem;
  }
}
footer .footer__lower {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 60rem;
  margin-inline: auto;
}
footer .footer__lower div {
  margin-inline: auto;
}
footer .footer__info {
  display: block;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 31.25rem) {
  footer .footer__info {
    font-size: 0.75rem;
  }
}
footer .footer__socials {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 41.25rem;
}
@media screen and (max-width: 31.25rem) {
  footer .footer__socials {
    justify-content: space-evenly;
  }
}
@media screen and (max-width: 31.25rem) {
  footer .footer__socials .social-icon__instagram span,
  footer .footer__socials .social-icon__telegram span {
    display: none;
  }
}
footer .footer__phone .icon {
  display: none;
}
footer .footer__legal {
  color: rgb(81, 81, 81);
}
footer .footer__legal p {
  margin-bottom: 0;
}
footer .footer__city {
  padding-block-start: 0.25rem;
  text-align: center;
}

.container {
  max-width: 90rem;
  margin-inline: auto;
}

/* -- Portfolio Card -- */
.portfolio-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .portfolio-item {
    font-size: 1rem;
  }
}
.portfolio-item__type {
  padding-block: 1.25rem 0.75rem;
  text-transform: uppercase;
}

/* -- Social Icon (Instagram, Telegram) -- */
.social-icon {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: center;
}
.social-icon .icon {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.social-icon__instagram .icon {
  background-image: url("/wp-content/themes/annaon-ph/assets/resources/instagram-logo.svg");
}
.social-icon__phone .icon {
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("/wp-content/themes/annaon-ph/assets/resources/phone-icon.svg");
}
.social-icon__telegram .icon {
  background-image: url("/wp-content/themes/annaon-ph/assets/resources/telegram-logo.svg");
}

#homepage #hero-section {
  padding-block: 2rem;
}
@media screen and (max-width: 100rem) {
  #homepage #hero-section {
    padding-block-start: 1rem;
  }
}
@media screen and (max-width: 37.5rem) {
  #homepage #hero-section {
    padding-block-start: 0;
  }
}
#homepage #hero-section .splide__arrow {
  display: none;
}
#homepage .hero-section__carousel-item {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 45rem;
  overflow: hidden;
}
@media screen and (max-width: 100rem) {
  #homepage .hero-section__carousel-item {
    height: 35rem;
  }
}
@media screen and (max-width: 50rem) {
  #homepage .hero-section__carousel-item {
    height: 27rem;
  }
}
@media screen and (max-width: 26.5625rem) {
  #homepage .hero-section__carousel-item {
    height: 35rem;
  }
}
#homepage .hero-section__carousel-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 31.25rem) {
  #homepage .hero-section__carousel-item img {
    height: 100%;
  }
}
#homepage .hero-section__carousel-item-text {
  position: absolute;
  bottom: 3rem;
  width: 100%;
  margin-block-end: 2.5rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 100rem) {
  #homepage .hero-section__carousel-item-text {
    bottom: 1rem;
    margin-block-end: 2rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 50rem) {
  #homepage .hero-section__carousel-item-text {
    bottom: 1rem;
    padding-inline: 2rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.25;
  }
}
@media screen and (max-width: 31.25rem) {
  #homepage .hero-section__carousel-item-text {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 26.5625rem) {
  #homepage .hero-section__carousel-item-text {
    font-size: 1.125rem;
  }
}
#homepage .hero-section__carousel-control {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  color: #fff;
}
@media screen and (max-width: 100rem) {
  #homepage .hero-section__carousel-control {
    bottom: 1rem;
    font-size: 0.875rem;
  }
}
#homepage .hero-section__carousel-next, #homepage .hero-section__carousel-prev {
  cursor: pointer;
}
#homepage #portfolio-section {
  padding-block: 6rem;
}
#homepage #portfolio-section h2 {
  margin-block-end: 2rem;
}
#homepage #portfolio-section .splide__arrow {
  display: none;
}
#homepage .portfolio-section__carousel {
  max-width: 88rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 92rem) {
  #homepage .portfolio-section__carousel {
    margin-inline: 2rem;
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 50rem) {
  #homepage .portfolio-section__carousel {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 31.25rem) {
  #homepage .portfolio-section__carousel {
    margin-inline: 0;
    padding-inline: 0;
  }
}
#homepage .portfolio-section__carousel .portfolio-item {
  padding-inline: 1rem;
}
#homepage .portfolio-section__carousel .portfolio-item img {
  aspect-ratio: 2/3;
}
#homepage .portfolio-section__carousel-next, #homepage .portfolio-section__carousel-prev {
  position: absolute;
  top: 45%;
  cursor: pointer;
}
@media screen and (max-width: 31.25rem) {
  #homepage .portfolio-section__carousel-next, #homepage .portfolio-section__carousel-prev {
    display: none;
  }
}
#homepage .portfolio-section__carousel-prev {
  left: 0;
}
#homepage .portfolio-section__carousel-next {
  right: 0;
}
#homepage .portfolio-section__carousel-control {
  display: none;
}
@media screen and (max-width: 31.25rem) {
  #homepage .portfolio-section__carousel-control {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-block-start: 1rem;
    font-size: 0.875rem;
  }
}
#homepage #feedback-section {
  padding-block: 6rem;
}
@media screen and (max-width: 50rem) {
  #homepage #feedback-section {
    padding-block: 4rem;
  }
}
#homepage #feedback-section h2 {
  margin-block-end: 3rem;
}
#homepage #feedback-section .splide__arrow {
  display: none;
}
#homepage .feedback-section__carousel {
  max-width: 80rem;
}
@media screen and (max-width: 84rem) {
  #homepage .feedback-section__carousel {
    margin-inline: 1rem;
  }
}
#homepage .feedback-section__carousel-item {
  padding-inline: 1rem;
}
@media screen and (max-width: 31.25rem) {
  #homepage .feedback-section__carousel-item {
    padding-inline: 0.5rem;
  }
}
#homepage .feedback-section__carousel-item-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 50rem) {
  #homepage .feedback-section__carousel-item-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
#homepage .feedback-section__carousel-item-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 31.25rem) {
  #homepage .feedback-section__carousel-item-content {
    gap: 1rem;
  }
}
#homepage .feedback-section__carousel-item-title {
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 50rem) {
  #homepage .feedback-section__carousel-item-title {
    font-size: 1.375rem;
  }
}
#homepage .feedback-section__carousel-item-text {
  font-size: 1.125rem;
  line-height: 1.25;
}
@media screen and (max-width: 50rem) {
  #homepage .feedback-section__carousel-item-text {
    margin-bottom: 0;
  }
}
#homepage .feedback-section__carousel-item-gallery {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 31.25rem) {
  #homepage .feedback-section__carousel-item-gallery {
    gap: 1rem;
  }
}
#homepage .feedback-section__carousel-control {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  margin-block-start: 2rem;
}
@media screen and (max-width: 50rem) {
  #homepage .feedback-section__carousel-control {
    font-size: 0.875rem;
  }
}
#homepage .feedback-section__carousel-next, #homepage .feedback-section__carousel-prev {
  cursor: pointer;
}

#portfolio-page {
  padding-block: 3rem 6rem;
}
@media screen and (max-width: 50rem) {
  #portfolio-page {
    padding-block-end: 4rem;
  }
}
@media screen and (max-width: 37.5rem) {
  #portfolio-page {
    padding-block-start: 1rem;
  }
}
#portfolio-page h2 {
  padding-block-end: 2rem;
}
#portfolio-page .portfolio-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 6rem;
  max-width: 80rem;
  margin-inline: auto;
}
@media screen and (max-width: 68rem) {
  #portfolio-page .portfolio-gallery {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 50rem) {
  #portfolio-page .portfolio-gallery {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 3rem;
  }
}
@media screen and (max-width: 31.25rem) {
  #portfolio-page .portfolio-gallery {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 26.5625rem) {
  #portfolio-page .portfolio-gallery {
    grid-template-columns: 1fr;
  }
}

.portfolio-item-viewer {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  padding-block-start: 3rem;
  max-width: 80rem;
}
.portfolio-item-viewer__title {
  text-align: center;
  font-size: 1.5rem;
}
.portfolio-item-viewer__type {
  margin-block-start: 0.75rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.portfolio-item-viewer__gallery {
  width: 100%;
  margin-block-start: 1.5rem;
}

#pricing-page {
  padding-block: 3rem 6rem;
}
@media screen and (max-width: 37.5rem) {
  #pricing-page {
    padding-block-start: 1rem;
  }
}
#pricing-page .pricing__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-inline: auto;
  max-width: 80rem;
}
@media screen and (max-width: 84rem) {
  #pricing-page .pricing__list {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 31.25rem) {
  #pricing-page .pricing__list {
    gap: 4rem;
    padding-inline: 1rem;
  }
}
#pricing-page .pricing__list_complex {
  padding-block-start: 3rem;
  gap: 0;
}
#pricing-page .pricing__list_complex h3 {
  padding-block-end: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.25rem;
}
@media screen and (max-width: 31.25rem) {
  #pricing-page .pricing__list_complex h3 {
    padding-block-end: 0.75rem;
  }
}
#pricing-page .pricing__list_complex .pricing__item:not(:first-of-type) {
  margin-block-start: 3rem;
}
#pricing-page .pricing__list_complex .pricing {
  /*           &__image {
              aspect-ratio: 1 / 1;
            } */
}
#pricing-page .pricing__item {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 64rem) {
  #pricing-page .pricing__item {
    grid-template-columns: 1fr 1.5fr;
  }
}
@media screen and (max-width: 37.5rem) {
  #pricing-page .pricing__item {
    grid-template-columns: 1fr;
  }
}
#pricing-page .pricing__item h3,
#pricing-page .pricing__item h4 {
  padding-block-end: 0.75rem;
  text-align: center;
  font-size: 1.25rem;
}
#pricing-page .pricing__item h3 {
  text-transform: uppercase;
}
@media screen and (max-width: 31.25rem) {
  #pricing-page .pricing__item h4 {
    font-size: 1.125rem;
  }
}
#pricing-page .pricing__image {
  display: flex;
  margin-inline: auto;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 2/3;
  background-color: #ccc;
  /*       @media screen and (max-width: var.$header-mobile) {
          max-height: 18rem;
        } */
}
#pricing-page .pricing__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#pricing-page .pricing__content {
  padding-block-start: 4rem;
  padding-inline: 3rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 64rem) {
  #pricing-page .pricing__content {
    padding-inline: 2rem 0;
    font-size: 1rem;
  }
}
@media screen and (max-width: 37.5rem) {
  #pricing-page .pricing__content {
    padding-block-start: 1rem;
    padding-inline: 0;
  }
}
#pricing-page .pricing__content span {
  display: block;
  margin-block-end: 1.5rem;
  font-size: 1.375rem;
}
@media screen and (max-width: 1024px) {
  #pricing-page .pricing__content span {
    margin-block-end: 0.75rem;
  }
}
#pricing-page .pricing__content p {
  margin: 0;
}
#pricing-page .pricing__content ul {
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 1024px) {
  #pricing-page .pricing__content ul {
    margin: 0;
    margin-inline-start: 1.25rem;
  }
}
#pricing-page .pricing__terms {
  padding-block-start: 7rem;
}
#pricing-page .pricing__terms-list {
  max-width: 60rem;
  margin-inline: auto;
  padding-block-start: 2rem;
}
@media screen and (max-width: 64rem) {
  #pricing-page .pricing__terms-list {
    max-width: 50rem;
  }
}
@media screen and (max-width: 54rem) {
  #pricing-page .pricing__terms-list {
    max-width: unset;
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 31.25rem) {
  #pricing-page .pricing__terms-list {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 54rem) {
  #pricing-page .pricing__terms-list ul {
    margin-inline-start: 1rem;
  }
}
#pricing-page .pricing__terms-list ul li {
  margin-block-end: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 31.25rem) {
  #pricing-page .pricing__terms-list ul li {
    font-size: 1rem;
    line-height: 1.5;
  }
}

#about-page {
  padding-block: 2rem 6rem;
}
@media screen and (max-width: 37.5rem) {
  #about-page {
    padding-block-start: 0;
  }
}
#about-page .about__author {
  min-height: 40rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 100rem) {
  #about-page .about__author {
    min-height: 35rem;
  }
}
@media screen and (max-width: 50rem) {
  #about-page .about__author {
    min-height: 27rem;
  }
}
#about-page .about__author h1 {
  margin-inline: auto;
  padding-block-start: 5rem;
  max-width: 80rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 100rem) {
  #about-page .about__author h1 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 88rem) {
  #about-page .about__author h1 {
    max-width: unset;
    padding-inline-start: 4rem;
  }
}
@media screen and (max-width: 50rem) {
  #about-page .about__author h1 {
    padding-block-start: 3rem;
    padding-inline-start: 2rem;
    font-size: 1.25rem;
  }
}
#about-page .about__content {
  max-width: 60rem;
  margin-inline: auto;
  padding-block-start: 3rem;
}
@media screen and (max-width: 64rem) {
  #about-page .about__content {
    max-width: unset;
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 31.25rem) {
  #about-page .about__content {
    padding-block-start: 2rem;
    padding-inline: 1rem;
  }
}
#about-page .about__title {
  display: flex;
  max-width: 58rem;
  margin-inline: auto;
  padding-block-end: 3rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media screen and (max-width: 50rem) {
  #about-page .about__title {
    padding-block-end: 2rem;
    font-size: 1.25rem;
  }
}
#about-page .about__text {
  font-size: 1.125rem;
}
@media screen and (max-width: 50rem) {
  #about-page .about__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 50rem) {
  #about-page .about__text p {
    margin-block-end: 1rem;
  }
}

#contacts-page {
  padding-block: 3rem 6rem;
}
@media screen and (max-width: 37.5rem) {
  #contacts-page {
    padding-block-start: 0;
  }
}
#contacts-page .contacts__content {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-inline: auto;
  max-width: 80rem;
}
@media screen and (max-width: 84rem) {
  #contacts-page .contacts__content {
    padding-inline: 2rem;
    max-width: unset;
  }
}
@media screen and (max-width: 64rem) {
  #contacts-page .contacts__content {
    gap: 2rem;
  }
}
@media screen and (max-width: 900px) {
  #contacts-page .contacts__content {
    grid-template-columns: 1fr 1.5fr;
  }
}
@media screen and (max-width: 37.5rem) {
  #contacts-page .contacts__content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 31.25rem) {
  #contacts-page .contacts__content {
    padding-inline: 1rem;
  }
}
#contacts-page .contacts__image {
  width: 100%;
  max-width: 24rem;
  aspect-ratio: 2/3;
}
@media screen and (max-width: 37.5rem) {
  #contacts-page .contacts__image {
    max-width: unset;
    aspect-ratio: 3/2;
  }
}
#contacts-page .contacts__description {
  padding-block-end: 10%;
  font-size: 1.125rem;
}
#contacts-page .contacts__text p {
  margin: 0;
}
#contacts-page .contacts__text ul {
  margin: 0;
  margin-block-start: 1.25rem;
  margin-inline-start: 1.5rem;
}
#contacts-page .contacts__socials {
  display: flex;
  flex-direction: row;
  gap: 6rem;
  margin-block-start: 3rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 84rem) {
  #contacts-page .contacts__socials {
    justify-content: space-between;
    gap: unset;
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  #contacts-page .contacts__socials {
    justify-content: start;
    gap: 3rem;
  }
}
@media screen and (max-width: 31.25rem) {
  #contacts-page .contacts__socials {
    justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  #contacts-page .contacts__socials .social-icon span {
    display: none;
  }
}
#contacts-page .contacts__socials .social-icon__phone .icon {
  display: none;
}
@media screen and (max-width: 900px) {
  #contacts-page .contacts__socials .social-icon__phone .icon {
    display: flex;
  }
}