/* =========================================================================
                            FOOTER START
========================================================================= */

.footer {
    background: #fff;
    padding: 30px 0px;
    font-family: Comic Sans MS;    
    text-align: center
}

.footer .row {
    width: 100%;
    margin: 1% 0%;
    padding: 0.6% 0%;
    color: #000 !important;
    font-size: 0.8em;
}

.footer .row-1 a {
    text-decoration: none;
    color: grey; 
    transition: 0.5s
}

.footer .row-2 a {
    text-decoration: none;
    color: gray;
    transition: 0.5s
}

.footer .row a:hover {
    color: grey
}

.footer .row ul {
    width: 100%
}

.footer .row ul li {
    display: inline-block;
    margin: 0px 30px
}

.footer .row a i {
    font-size: 2em;
    margin: 0% 1%
}

@media (max-width: 720px) {
    .footer {
        text-align: left;
        padding: 5%
    }
    .footer .row ul li {
        display: block;
        margin: 10px 0px;
        text-align: left
    }
    .footer .row a i{
        margin:0% 3%
    }
}

/* ===================== SOCIAL ============== */

.social-media-container {
  display: flex;
  justify-content: center; 
}

.social-icons {
  display: flex;
  justify-content: center; 
  gap: 15px; 
  padding: 20px 0; 
}

.social-icons a {
  display: inline-block;
}

.social-icons img {
  width: 30px; /* width: 40px; height: 40px;  */
  height: 30px;
  object-fit: contain; 
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.social-icons img:hover {
  transform: scale(1.1);
  opacity: 0.2;
}

@media (max-width: 600px) {
  .social-icons img {
    width: 20px; /* width: 30px; height: 30px;  */
    height: 20px;
  }
}

/* =============== COPYRIGHT ======================== */

#copyright {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  white-space: nowrap;/*uz mobilajām ierīcēm teksts nepārlauzīsies*/
}

/* =========================================================================
                            FOOTER END
========================================================================= */  