 #footer {
    overflow-y: hidden;
     background: var(--primary);
     padding: 0 0 30px 0;
     color: var(--text-light);
     font-size: 14px;
    width: 100vw;

 }
 
 #footer .footer-top {
     padding: 60px 0 30px 0;
 }
 
 #footer .contact-info a {
     line-height: 0;
     color: var(--text-light);
     transition: 0.3s;
 }
 
 #footer .contact-info p {
     margin: 0;
     display: inline;
 }
 
 #footer .contact-info {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0 15px;
     flex-direction: column;
     margin-bottom: 20px;
 }
 
 #footer .contact-info div:hover a {
     color: var(--text-ilight);
 }
 
 #footer .contact-info div:hover i {
     color: var(--text-light);
 }
 
 #footer .contact-info i {
     color: var(--text-ilight);
     line-height: 0;
     margin-right: 5px;
 }
 
 #footer .contact-info .phone-icon {
     margin-left: 15px;
 }
 
 #footer .footer-top .footer-info {
     margin: 0 auto;
     max-width: 80%;
     min-width: 575px;
     margin-bottom: 15px;
     background: var(--background-secondary);
     color: var(--text-light);
     border-top: 4px solid var(--background-three);
     text-align: center;
     padding: 30px 20px;
 }
 
 #footer .footer-top .footer-info h3 {
     font-size: 36px;
     margin: 0 0 20px 0;
     padding: 2px 0 2px 0;
     line-height: 1;
     font-weight: 700;
 }
 
 #footer .footer-top .footer-info p {
     font-size: 14px;
     line-height: 24px;
     margin-bottom: 0;
     font-family: "Raleway", sans-serif;
 }
 
 #footer .footer-top .social-links a {
     font-size: 18px;
     display: inline-block;
     background: var(--background-three);
     color: var(--text-light);
     line-height: 1;
     padding: 8px 0;
     margin-right: 4px;
     border-radius: 50%;
     text-align: center;
     width: 36px;
     height: 36px;
     transition: 0.3s;
 }
 
 #footer .footer-top .social-links a:hover {
     background: var(--secondary);
     color: var(--text-light);
     text-decoration: none;
 }
 
 #footer .footer-top h4 {
     font-size: 16px;
     font-weight: 600;
     color: var(--text-light);
     position: relative;
     padding-bottom: 12px;
 }
 
 #footer .footer-top .footer-links {
     margin-bottom: 30px;
 }
 
 #footer .footer-top .footer-links ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }
 
 #footer .footer-top .footer-links ul i {
     padding-right: 2px;
     color: var(--secondary);
     font-size: 18px;
     line-height: 1;
 }
 
 #footer .footer-top .footer-links ul li {
     padding: 10px 0;
     display: flex;
     align-items: center;
 }
 
 #footer .footer-top .footer-links ul li:first-child {
     padding-top: 0;
 }
 
 #footer .footer-top .footer-links ul a {
     color: var(--text-light);
     transition: 0.3s;
     display: inline-block;
     line-height: 1;
 }
 
 #footer .footer-top .footer-links ul a:hover {
     color: var(--secondary)
 }
 
 #footer .copyright {
     border-top: 1px solid var(--background-three);
     text-align: center;
     padding-top: 30px;
 }
 
 #footer .copyright strong {
     color: var(--text-ilight);
 }
 
 #footer .credits {
     padding-top: 5px;
     text-align: center;
     font-size: 13px;
     color: var(--text-light);
 }
 
 #footer .credits a {
     color: var(--secondary);
 }
 
 @media (max-width: 575px) {
     #footer .footer-top .footer-info {
         width: 100%;
         min-width: 300px;
         max-width: none;
     }
     #footer .container {
         padding: 0;
     }
 }
 
 .back-to-top {
     position: fixed;
     display: flex;
     background: var(--secondary);
     color: var(--text-light);
     width: 44px;
     height: 44px;
     text-align: center;
     right: 15px;
     bottom: 15px;
     z-index: 99999;
     justify-content: center;
     align-items: center;
     visibility: hidden;
     transition: all 0.5s;
     opacity: 0;
 }
 
 .back-to-top:hover {
     background: var(--background-three);
     border-radius: 50%;
     rotate: 360deg;
 }
 
 .back-to-top svg {
     width: 32px;
     height: 32px;
 }