.footer_top {
    padding: 2rem 0 1rem;
    background-color: #2e2e2e;
    color: var(--white);
    position: relative;
}
.footer_top:after {
    content: '';
    background: radial-gradient(#ffffff85 20%, #ffffff00 52%);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.footer_grid{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.grid-col {
    flex: 25%;
    max-width: 25%;
    width: 100%;
}
.center_grid_col{
    flex: 40%;
    max-width: 40%;
    width: 100%;
}
.footerwdgt_heading {
    font-size: 1.35rem;
    text-transform: capitalize;
    margin-bottom: 6px;
}
.fwdgt_list {
    list-style: none;
    padding: 0;
    text-transform: capitalize;
    font-size: 0.9rem;
}
.fwdgt_list li {
    margin-bottom: 2px;
}
.fwdgt_list li:last-child{
    margin-bottom: 0;
}
.fwdgt_list li a{
    transition: .3s all ease;
    line-height: 1.7;
}
.fwdgt_list li a:hover{
    color: var(--secondary-color);
}
.rhtbrdr{
    position: relative;
}
.rhtbrdr:after {
    content: '';
    position: absolute;
    right: 56px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #ffffff7a;
}
.cntact_info {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}
.contct_details .cntact_info:last-child{
    margin-bottom: 0;
}
.cntact_icon {
    background-color: #fff;
    color: var(--primary-color);
    padding: 4px 11px;
    font-size: 19px;
    border-radius: 3px;
}
.social-element {
    display: flex;
    padding: 0;
    list-style: none;
    gap: 3px;
    align-items: center;
}
.social-element li{
    padding: 5px 10px;
    transition: .3s all ease;
    border-radius: 3px;
}
.social-element li:first-child{
    padding-right: 0;
}
.social-element li a{
    color: #fff;
    transition: .3s all ease;
}

.social-element li:hover:nth-child(2),.social-element li:hover:nth-child(3),.social-element li:hover:nth-child(4),.social-element li:hover:nth-child(5){
    background-color: #fff;
}
.social-element li:hover:nth-child(2) a{
    color: #316ff6;
}.social-element li:hover:nth-child(3) a{
    color: #e1306c;
}.social-element li:hover:nth-child(4) a{
    color: #0077b5;
}.social-element li:hover:nth-child(5) a{
    color: #075e54;
}
.copyright {
    padding: 0rem 0 1rem;
    background-color: #2e2e2e;
    color: #fff;
}
.othr_links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 65px;
}
.othr_linkval {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.cpyright_content {
    text-align: center;
    padding-top: 20px;
}
.othrlnk_icon {
    background-color: var(--white);
    padding: 8px;
    border-radius: 6px;
}
.othrlnk_icon img {
    max-width: 38px;
    width: 100%;
    aspect-ratio: 1.0;
}
.cntctdstal a{
    transition: .3s all ease;
}
.othr_linkval p>a{
    transition: .3s all ease;
}
.cntctdstal a:hover, .othr_linkval p>a:hover{
    color: var(--secondary-color);
}
.cntact_info:nth-child(4) .cntact_icon {
    padding: 4px 14px;
}
.scroll-to-top {
    position: fixed;
    right: -16px;
    bottom: 100px;
    transform: rotate(90deg);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}
.scroll-to-top.visible {
    visibility: visible !important;
    opacity: 1 !important;
}
.scroll-to-top .scroll-top-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.scroll-to-top .scroll-bar {
    width: 50px;
    height: 2px;
    margin-right: 10px;
    position: relative;
}
.scroll-to-top .scroll-bar-text {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: rgb(0 0 0 / 90%);
    transition: all 500ms ease;
}
.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(135 195 50 / 95%);
}
.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.40);
}
.cpycntnt a{
    color: #f2ff24;
}