/*
* ----------[SOCIAL NETWORKS]--------*
*/
.social-networks-shortcode ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.social-networks-shortcode ul li:not(:last-child) {
    margin-right: 35px;
}
.social-networks-shortcode.large ul {
    gap: 40px;
    row-gap: 20px;
}
.social-networks-shortcode.large ul li:not(:last-child) {
    margin-right: 0;
}
.et-social-icon.fa-icon a.icon:before {
    content: '';
}
.social-networks-shortcode ul li a.icon i,
.social-networks-shortcode ul li a.icon svg,
.social-networks-shortcode ul li a svg path {
    font-size: 16px;
    /* color: var(--default-color);
    fill: var(--default-color); */
    transition: color .4s ease, fill .4s ease;
}
.social-networks-shortcode ul li a.icon:hover i,
.social-networks-shortcode ul li a.icon:hover svg,
.social-networks-shortcode ul li:hover a svg path {
    color: var(--primary-color); /* Hover color */
    fill: var(--primary-color); /* Hover color for SVG */
}
.social-networks-shortcode.large ul li svg {
    width: auto;
    height: 38px;
}
.social-networks-shortcode.orange ul li a.icon:hover i,
.social-networks-shortcode.orange ul li a.icon:hover svg,
.social-networks-shortcode.orange ul li:hover a svg path {
    color: var(--darkBlue); /* Hover color */
    fill: var(--darkBlue); /* Hover color for SVG */
}
/*
* ----------[SOCIAL SHARE]--------*
*/
.social-share-container .et_pb_code_inner,
.social-share-container #social-share-shortcode ul {
    display: flex;
}
.social-share-container #social-share-shortcode ul {
    padding: 0;
    list-style: none;
    align-items: center;
    gap: 22px;
}
.social-share-container #social-share-shortcode ul li,
.social-share-container #social-share-shortcode ul li a {
    display: flex;
}
.social-share-container #social-share-shortcode ul li a svg path {
    transition: .4s ease;
}
.social-share-container #social-share-shortcode ul li a:hover svg path {
    fill: var(--orange-new);
}
.social-share-container #social-share-shortcode {
    margin-left: 17px;
}
.instagram-download-button {
   display: inline-block; 
   margin-top: 20px; 
   padding: 10px 20px; 
   background: var(--blue); 
   color: var(--white); 
   text-decoration: none; 
   border-radius: 5px;
}
@media only screen and (max-width: 980px) {
    .social-networks-shortcode {
        max-width: 90vw;
        margin: auto;
    }
}