.footer_contact{
    background-color: #f3f3f3;
    padding-top: 30px;
    .footer_contact_wrapper{
       width: 900px;
       background-color: #fff;
    //    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
       box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
       border-radius: 16px;
       margin:  0 auto;
       position: relative;
       z-index: 2;
       .wrapper_item{
         text-align: center;
         height: 200px;
         display: flex;
         justify-content: center;
         align-items: center;
         flex-direction: column;
         position: relative;
          i{
            font-size: 26px;
            color: #d65737;
          }
          h4{
            font-size: 18px;
            color: $black; 
            font-weight: 500;
            padding-top: 10px;
          }
          h5{
            font-size: 15px;
            color: $text;
            font-weight: 400;
            line-height: 23px;
          }  
       }
       .item_border{
        position: relative;
        &::after{
            position: absolute;
            content: '';
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 80px;
            width: 1px;
            background-color: #302f2f8b;
         }
       }
    }
}

.footer_main{
    background-color: #1f1e1e;
    padding: 200px 0 30px 0;
    margin-top:  -100px;
    .footer_wrapper{
        .footer_wrap{
          text-align: center;
          h4{
            font-size: 20px;
            font-weight: 500;
            color: $white;
            padding-bottom: 10px;
          }
          h5{
            font-size: 15px;
            color: #cbcbcb;
            font-weight: 400;
          }
          .footer_icon{
            padding-top: 10px;
            ul{
                display: flex;
                align-items: center;
                justify-content: center;
                li{
                    height: 40px;
                    width: 40px;
                    background-color: #3b5998;
                    margin: 0 6px;
                    border-radius: 5px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    a{
                        line-height: 0px;
                        i{
                            font-size: 22px;
                            color: #fff;
                        }
                    }
                }
                .twitter{
                    background-color: #00acee;
                }
                .insta{
                    background-color: #d65737;
                }
                .linkedin{
                    background-color: #0A66C2;
                }
            }
         }
         ul{
            li{
                margin-top: 7px;
                a{
                    font-size: 15px;
                    color: #cbcbcb;
                    &:hover{
                        color: $primaryColor;
                    }
                    i{
                        margin-right: 3px;
                    }
                }
            }
         }
         .qr_img{
            display: flex;
            justify-content: center;
            margin-top: 20px;
            img{
                height: 140px;
                width: 140px;
                object-fit: contain;
            }
         }
        }
    }  
}

.copyright{
    background-color: #333;
    padding: 12px 0;
    .copyright_wrapper{
        text-align: center;
        span{
            color: $white;
            font-size: 15px;
            
        }
    }
}