* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main_footer {
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    align-items: end;
    justify-content: center;
    background: #000000;
    /* border: 1px solid red; */
}
.main_footer .sub_footer {
    width: 80%;
    /* border: 1px solid blue; */
}
.main_footer .sub_footer .footer {
    display: flex;
    padding-bottom: 50px;
    justify-content: space-between;
    /* border: 1px solid red; */
    border-bottom: 1px solid #575353;
}

.main_footer .sub_footer .footer .box {
    margin-top: 30px;
    /* border: 1px solid yellow;  */
}

.main_footer .sub_footer .footer .box.box:nth-child(1) {
    width: 260px;
}

.main_footer .sub_footer .footer .box.box:nth-child(4) {
    width: 340px;
}

.main_footer .sub_footer .footer .box p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 18px;
    text-align: start;
    font-family: "DM Sans";
    color: #ffffff;
}

.main_footer .sub_footer .footer .box .heading {
    font-size: 38px;
    color: #ffffff;
    font-weight: 600;
}

.main_footer .sub_footer .footer .box .head {
    height: 30px;
    font-size: 20px;
    display: flex;
    color: #ffffff;
    align-items: center;
    font-weight: 600;
    /* border: 1px solid aqua; */
}

.main_footer .sub_footer .footer .box .head:nth-child(3) {
    margin-top: 17px;
}

.main_footer .sub_footer .footer .box .head:nth-child(5) {
    margin-top: 8px;
}

.main_footer .sub_footer .footer .box .footer_con {
    margin-top: 10px;
    font-size: 18px;
    font-family: "DM Sans";
    transition: .3s;
    color: #ffffff;
    /* border: 1px solid aqua; */
}

.main_footer .sub_footer .footer .box .footer_con:hover {
    color: #F5C332;
    transition: .3s;
}

.main_footer .sub_footer .footer .box .footer_con1{
    display: flex;
    font-size: 16px;
    color: #ffffff;
    /* border: 1px solid black; */
}

.main_footer .sub_footer .footer .box .footer_con1 .footer_icon {
    display: flex;
    padding: 0px 3px 0 0;
    align-items: center;
    justify-content: center;
    /* border: 1px solid red; */
}

.main_footer .sub_footer .footer .box .footer_con1 .footer_icon i {
    color: #F5C332;
}

.main_footer .sub_footer .footer .box .footer_con1 .footer_text {
    padding-left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: "DM Sans";
    /* border: 1px solid green; */
}

.main_footer .sub_footer .footer .box .footer_con1:hover .footer_text {
    color: #F5C332;
    transition: .3s;
}

.main_footer .sub_footer .footer .box .main_social {
    margin-top: 5px;
    display: flex;
    gap: 10px;
    /* border: 1px solid red; */
}

.main_footer .sub_footer .footer .box .main_social .social {
    /* width: 30px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid red; */
    border-radius: 50%;
    padding: 5px 4px;
    transition: .4s;
}

.main_footer .sub_footer .footer .box .main_social .social i {
    font-size: 22px;
    transition: .4s;
    color: #F5C332;
}

.main_footer .sub_footer .footer .box .main_social .social:hover {
    background: #F5C332;
    margin-top: -3px;
    /* transition: .4s; */
}

.main_footer .sub_footer .footer .box .main_social .social:hover i {
    color: rgb(255, 253, 253);
    /* margin-top: -3px; */
    transition: .4s;
}


.main_footer .sub_footer .copy_right_div {
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid yellow; */
}

.main_footer .sub_footer .copy_right_div .sub_copy_right {
    /* width: 20%; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: "DM sans";
    color: #ffffff;
    /* border: 1px solid red; */
}

/* ---------------media---------------- */

@media screen and (max-width:1280px) {
.main_footer .sub_footer .footer .box.box:nth-child(1) {
    width: 25%;
}
.main_footer .sub_footer .footer .box.box:nth-child(4) {
    width: 25%;
}
.main_footer .sub_footer .footer .box .footer_con1 {
    margin-top: 6px;
    font-size: 17px;
    /* border: 1px solid red; */
}
}
/* ----------------- */
@media screen and (max-width:1020px){
.main_footer .sub_footer .footer .box.box:nth-child(1) {
    width: 25%;
}
.main_footer .sub_footer .footer .box.box:nth-child(4) {
    width: 23%;
}
.main_footer .sub_footer .footer .box .heading{
    font-size: 35px;
}
.main_footer .sub_footer .footer .box .head{
    font-size: 18px;
}
.main_footer .sub_footer .footer .box p{
    font-size: 15px;
}
.main_footer .sub_footer .footer .box .footer_con1 .footer_text{
    font-size: 17px;
}
.main_footer .sub_footer .footer .box .main_social{
    gap: 5px;
}
.main_footer .sub_footer .footer .box .main_social .social i{
    font-size: 20px;
}
}
/* -------------- */
@media screen and (max-width:900px){
.main_footer .sub_footer .footer{
    flex-wrap: wrap;
    padding-bottom: 20px;
    /* justify-content: center; */
}
.main_footer .sub_footer .footer .box{
    width: 300px;
    margin-top: 25px;
}
.main_footer .sub_footer .footer .box.box:nth-child(1) {
    width: 300px;
}
.main_footer .sub_footer .footer .box.box:nth-child(4) {
    width: 300px;
}
.main_footer .sub_footer .footer .box .footer_con1{
    margin-top: 3px;
}
.main_footer .sub_footer .footer .box .head{
    font-size: 19px;
}
.main_footer .sub_footer .footer .box .footer_con{
    font-size: 16px;
}
.main_footer .sub_footer .footer .box p{
    font-size: 16px;
}
}
/* -------------- */
@media screen and (max-width:800px){
.main_footer .sub_footer .footer .box{
    width: 250px;
    margin-top: 25px;
}
.main_footer .sub_footer .footer .box.box:nth-child(1) {
    width: 250px;
}
.main_footer .sub_footer .footer .box.box:nth-child(4) {
    width: 250px;
}  
.main_footer .sub_footer .footer .box .footer_con1 .footer_text{
    font-size: 15px;
}  
}
/* ---------------- */
@media screen and (max-width:650px){
.main_footer .sub_footer .footer .box{
    width: 200px;
    margin-top: 25px;
}
.main_footer .sub_footer .footer .box.box:nth-child(1) {
    width: 200px;
}
.main_footer .sub_footer .footer .box.box:nth-child(4) {
    width: 200px;
} 
.main_footer .sub_footer .footer .box .head{
    font-size: 22px;
} 
.main_footer .sub_footer .footer .box .heading{
    font-size: 40px;
}  
.main_footer .sub_footer .footer .box p{
    font-size: 17px;
}
.main_footer .sub_footer .footer .box .footer_con1 .footer_text{
    font-size: 19px;
}   
}
/* ------------- */
@media screen and (max-width:570px){
    .main_footer{
     justify-content: start;
    }
    .main_footer .sub_footer{
        width: 100%;
    }
.main_footer .sub_footer .footer {
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
}  
.main_footer .sub_footer .footer .box{
    width: 100%;
    margin-top: 25px;
}
.main_footer .sub_footer .footer .box.box:nth-child(1) {
    width: 100%;
}
.main_footer .sub_footer .footer .box.box:nth-child(4) {
    width: 100%;
}
.main_footer .sub_footer .footer .box .head{
    font-size: 19px;
}
.main_footer .sub_footer .copy_right_div{
    flex-direction: column;
}
.main_footer .sub_footer .copy_right_div .sub_copy_right{
    margin-top: 2px;
}
}  
/* ----------- */
@media screen and (max-width:400px){
.main_footer .sub_footer .footer .box:nth-child(2){
    margin-top: 50px;
}    
.main_footer .sub_footer .footer .box .head{
    font-size: 20px;
} 
.main_footer .sub_footer .footer .box .heading{
    font-size: 35px;
}  
.main_footer .sub_footer .footer .box p{
    font-size: 16px;
}
.main_footer .sub_footer .footer .box .footer_con1 .footer_text{
    font-size: 17px;
}   
.main_footer .sub_footer .copy_right_div{
    padding: 17px 0;
}
}
