.contacts-stripContainer
{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1270px;
  margin: 4rem auto 5rem;
  align-items: stretch;
}

.contacts-contactContainer
{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-bottom: 2rem;
}

.contacts-contactContainer .icon-container
{
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: center;
}

.contacts-contactContainer .icon-container a
{
  display: block;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transform: rotate(0deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: inset 0 0 0 rgba(0,0,0,0), 0 4px 8px rgba(0,0,0,0.25);
}

.contacts-contactContainer .icon-container a.whatsapp-icon
{
  background: #25d366;
  background: linear-gradient(145deg, #28e070, #0f5228);
}

.contacts-contactContainer .icon-container a.viber-icon
{
  background: #7360f2;
  background: linear-gradient(145deg, #7a69f5, #392e80);
}

.contacts-contactContainer .icon-container a.whatsapp-icon img
{
  width: 28px;
  height: 28px;
}

.contacts-contactContainer .icon-container a.viber-icon img
{
  width: 30px;
  height: 30px;
}

.contacts-contactContainer .icon-container a::after
{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.15);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.2s ;
  z-index: 0;
}

.contacts-contactContainer .icon-container a img
{
  position: absolute;
  z-index: 1;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 992px) 
{
  .contacts-contactContainer .icon-container a:hover::after
  {
    transform: scale(1.3);
    opacity: 1;
  }
  
  .contacts-contactContainer .icon-container a:hover
  {
    transform: rotate(-6deg) scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: inset 0 3px 5px rgba(255,255,255,0.2),
              0 3px 6px rgba(0,0,0,0.3);
  }
}

@media (max-width: 991px) 
{
  .contacts-contactContainer .icon-container a:active::after
  {
    transform: scale(1.3);
    opacity: 1;
  }
  
  .contacts-contactContainer .icon-container a:active
  {
    transform: rotate(-6deg) scale(1.05);
    transition: transform 0.3s ease;box-shadow: inset 0 3px 5px rgba(255,255,255,0.2),
    0 3px 6px rgba(0,0,0,0.3);
  }
}

.contactsSection 
{
  display: flex;
  flex-direction: column;
  width: 100%;
  align-self: center;
  gap: 0.5rem;
}

.contactsSmallSection 
{
  gap: 0;
}

.contacts-containerIntro 
{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 2rem;
}

.contacts-containerIntroInfo 
{
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacts-title 
{
  font-size: 3rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2.8rem;
  color: var(--clr-pandacom-darker-orange);
}

.contacts-image 
{
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-box-title 
{
  font-weight: bold;
  font-size: 1.2em;
  color: var(--clr-pandacom-darker-orange);
  margin-bottom: 10px;
}

.contactsSmallSection h4,
.contactsSmallSection a
{
  margin: 0.5rem 0;
}

.contactsSmallSection h4,
.contactsSmallSection p
{
  color: var(--clr-pandacom-dark-grey);
}

.contactsSmallSection p span
{
  color: var(--clr-pandacom-darker-orange);
}

.contacts-colSmall
{
  flex: 0 0 auto;
  width: 30%;
}

.contacts-card
{
  background: #fff;
  box-shadow: 0 4px 12px 0 rgb(104 115 125 / 15%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 2rem 3rem 2.5rem;
  text-align: center;
}

.colThirdContact .contacts-card
{
  justify-content: space-evenly;
}

.colThirdContact .contacts-box-title
{
  margin-bottom: 8px;
}

.colThirdContact .contactsSection a,
.colThirdContact .contactsSection p
{
  margin: 5px 0;
}

.contacts-col .contacts-smallImage
{
  border-radius: 100%;
  box-shadow: 0 4px 12px 0 rgb(104 115 125 / 15%);
  margin-bottom: 1rem;
  align-self: center;
  min-height: 1px;
}

.contacts- p,
.contacts- p,
.contacts-colSmall a 
{
  margin: 5px 0;
  color: var(--clr-pandacom-dark-grey);
}

.contacts-card a:hover 
{
  color: var(--clr-pandacom-darker-orange);
}

.contacts-card span 
{
  line-height: 1.8;
}

@media (max-width: 1200px) 
{
  .contacts-image.contacts-bigImage 
  {
    width: auto;
    height: 430px;
  }

  .contacts-colSmall 
  {
    width: 32.2%;
  }
}

@media (max-width: 1024px) 
{
  .contacts-contactContainer 
  {
    flex-wrap: wrap;
  }

  .contacts-colSmall.colFirstContact,
  .contacts-colSmall.colSecondContact 
  {
    width: 48%;
    margin-bottom: 1rem;
  }
  
  .contacts-colSmall.colThirdContact 
  {
    width: 70%;
  }
}

@media (max-width: 991px) 
{
  .contacts-containerIntro 
  {
    align-items: flex-end;
    gap: 1.5rem;
  }

  .contacts-image.contacts-bigImage 
  {
    height: 400px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 860px) 
{
  .contacts-title 
  {
    margin: 0 0 1.5rem;
  }

  .contacts-image.contacts-bigImage 
  {
    height: 365px;
  }
}

@media (max-width: 800px) 
{
  .contacts-containerIntro 
  {
    flex-direction: column-reverse;
    align-items: center;
    overflow: hidden;
  }

  .contacts-containerIntroInfo 
  {
    width: 98%;
  }

  .contacts-colSmall.colThirdContact 
  {
    width: 98%;
  }
}

@media (max-width: 700px) 
{
  .contacts-colSmall.colFirstContact,
  .contacts-colSmall.colSecondContact 
  {
    width: 98%;
  }
}

@media (max-width: 480px) 
{
  .contacts-image.contacts-bigImage 
  {
    height: 320px;
  }
}

@media (max-width: 400px) 
{
  .contacts-image.contacts-bigImage 
  {
    height: 300px;
  }
}

@media (max-width: 360px) 
{
  .contacts-image.contacts-bigImage 
  {
    height: 280px;
  }
}
