/* top section in another page */ 

.top-sec-page{
    width: 100%;
    height: 380px;
    /* background: linear-gradient(#00000086,#00000086),url(../img/aboutbgpag.jpg); */
    position: relative;
    background-position: center;
    background-size: cover;
    text-align: center;
    overflow: hidden;
    padding: 0 10px ;
  }
  .top-sec-page .container{
    display: flex;
    height: 65%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .top-sec-page h1{
    color: #fff;
  }
  .top-sec-page p{
    color: #e6e6e6;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
  }
  .top-sec-page span.wave{
    position: absolute;
    bottom: -10px;
    left: 0%;
    z-index: 100;
    width: 100%;
  }
  .top-sec-page span.wave svg{
    width: 100%;
    height: 80px;
  }

  
.contact .container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;

  
}
.contact .contact-info{
    width: 40%;
}
.contact .contact-info .box{
    background: #fff;
    border: 1px solid #5f545f3f;
    box-shadow: 5px 5px 10px #0505054d;
    margin-bottom: 25px;
    padding: 20px;
    display: flex;
    border-radius: 5px;
    align-items: center;
    position: relative;
    left: 0;
    transition: 0.3s ease;
}
.contact .contact-info .box:hover{
    left: 20px;
    border-color: #006bb7;
}
.contact .contact-info .box span{
    background: #006bb7;
    padding: 14px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-left: 20px;
}
.contact .contact-info .box .sm-text{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contact .contact-info .box .sm-text h4{
    font-size: 20px;
}
.contact .contact-info .box .sm-text a{
    font-size: 16px;
    color: #686868;
}
.contact .contact-info .box span img{
    width: 100%;
}
.contact .div-img{
    width: 40%;
}
.contact .div-img img{
    width: 100%;
}
.contact .contact-info .box .link-soc{
    display: flex;
    gap: 10px;
    margin-top: 5px;
}
.contact .contact-info .box .link-soc img{
    width: 40px;
}
@media (max-width:1000px){
    .contact .container{
        flex-direction: column;
    }
    .contact .contact-info{
        width: 80%;
        margin-bottom: 30px;
    }
    .contact .div-img{
        width: 70%;
    }
}
@media (max-width:500px){
    .top-sec{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact .container{
        flex-direction: column;
    }
    .contact .contact-info{
        width: 100%;
        margin-bottom: 30px;
    }
    .contact .div-img{
        width: 90%;
    }
}