
.fixed-social-icon ul {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 998;
}

.fixed-social-icon ul li {
    position: relative;
    transform: translateX(105px);
    transition: all 0.4s;
}

.fixed-social-icon ul li:hover {
    transform: translateX(0);
}

.fixed-social-icon ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    color: #fff;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    font-weight: 600;
    background-color: #cf6303;
    transition: all 0.4s;
}

.fixed-social-icon ul li a svg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.4s;
}

.fixed-social-icon ul li:hover a {
    background-color: #000;
}

.fixed-social-icon ul li:hover a svg {
    color: #fff;
}



footer {
    position: relative;
overflow: hidden;
width: 100%;
}

footer .top-footer {
    background-color: #000;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

footer .top-footer svg {
    width: 16px;
    height: 16px;
    padding: 8px;
    background-color: #fff;
    border-radius: 50%;
    color: #cf6303;
    margin-right: 4px;
    transition: all 0.4s;
}

footer .top-footer svg:hover {
    transform: scale(1.2);
    background-color: #cf6303;
    color: #fff;
}

footer .top-footer img {
    width: 340px;
    margin: 0 auto;
}

footer .top-footer .cta-text {
    text-align: end;
}

footer .top-footer .cta-text span {
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
}



footer .main-footer {
    background-color: #000;
    position: relative;
    padding: 60px 0;
}

footer .main-footer p.text {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 300;
}

footer .main-footer p.text span {
    color: #cf6303;
    font-style: italic;
    font-weight: 700;
}

footer .main-footer .abt-col a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #cf6303;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

footer .main-footer h6 {
    color: #cf6303;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
}

footer .main-footer ul li a {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    text-transform: uppercase;
}

footer .main-footer .contact-col a {
    display: block;
    margin-bottom: 14px;
    color: #fff;
}
footer .main-footer .contact-col a svg{
    margin-right: 10px;
    color: #cf6303;
}

footer .copyright{
    background-color: #cf6303;
    padding: 10px 0;
}
footer .copyright p{
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}
footer .copyright p a{
    color: #fff;
    font-weight: 700;
}

@media (max-width:992px) {
    footer .main-footer .abt-col{
        margin-bottom: 30px;
    }
}
@media (max-width:768px) {
    footer .main-footer .link-col{
        margin-bottom: 30px;
    }
    
}
@media (max-width:568px) {
footer .copyright p{
    flex-direction: column;
}
}