﻿.social-contact {
    position: relative;
    z-index: 1;
    padding: 55px 0 48px 0;
    text-align: center;
}

.social-contact img {
    position: absolute;
    z-index: -1;
    opacity: 0.09;
    top: 0;
    left: 0;
    object-position: bottom;
}

.social-contact .social-contact_curve {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
}

.social-contact h2 {
    position: relative;
    padding: 35px 0 12px 0;
}

.social-contact h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 50px;
    height: 5px;
    background-color: #F58220;
}

.social-contact p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #808080;
    padding-bottom: 35px;
}

.social-contact ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.social-contact ul li {
    margin: 0;
    padding: 0 35px 0 0;
    font-size: 46px;
}

.social-contact ul li:last-child {
    padding: 0;
}

.social-contact ul li::before {
    display: none;
}

.social-contact ul li a {
    background: -webkit-linear-gradient(#4C005F, #2554A2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social__icons li .icon {
    position: relative;
}

.social__icons li .icon svg{
    max-width: 45px;
    max-height: 45px;
    transition: .35s all;
}

#linear-gradient {
  --color-stop: #4c005f;
  --color-stop-bto: #2554a2;
}

.social__icons li a:hover .icon svg{
    transition: all 0.4s;
 }
@media (min-width: 768px) {
    .social-contact {
        padding: 123px 0 92px 0;
    }

    .social-contact ul li {
        margin: 0;
        padding: 0 80px 0 0;
        font-size: 79px;
    }

    .social__icons li .icon svg{
        max-width: 79px;
        max-height: 79px;
    }
}

@media (min-width: 1200px) {
    .social-contact {
        padding: 164px 0 85px 0;
    }

    .social-contact ul li {
        font-size: 80px;
    }

    .social-contact p {
        padding-bottom: 40px;
    }

    .social__icons li .icon svg{
        max-width: 81px;
        max-height: 81px;
    }

    .social-contact ul li a:hover {
        background: -webkit-linear-gradient(#2554A2, #4C005F);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .social__icons li a:hover .icon svg {
          transform: scale(1.2);
    }
}