html, body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    font-family: "Tajawal", sans-serif;
    direction: rtl;
}
img{
    cursor: pointer;
}
:root{
    --primary-color:#2e85b0;
}
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 12px;
}
.actions p {
    color: #fff;
    font-size: 35px;
}
.whatsapp-btn {
    color: #fff;
    background: #2aa81a;
}

@media(max-width:500px) {
    .actions p {
    color: #fff;
    font-size: 20px;
}
 .whatsapp-btn {
    padding: 10px 5px;
}
}
.whatsapp-btn {
    padding: 15px 30px;
    border-radius: 10px;
    animation: 1.5s ease-out infinite bouncing2;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
.whatsapp-btn:hover{
    color: white;
}
.btn{
    background-color: var(--primary-color);
    padding: 10px 20px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    transition: .3s;
    animation: 1.5s ease-out infinite bouncing2;
}
.btn:hover{
    background-color: white;
    color: var(--primary-color);
}

.whatsapp{
    position: fixed;
    right: 20px;
    bottom: 25px;
    border-radius: 50%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    z-index: 11;
    animation: 1.5s ease-out infinite animate-pulse;
}
.whatsapp::before{
    position: absolute;
    content: "1";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #E82C0C;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -7px;
    right: -2px;
    color: white;

}
header{
    position: absolute;
    width: 100%;
    z-index: 11;
}
@media(max-width:767px){
    header .logo{
        display: block;
        text-align: center;
    }
}
/* start header section  */
.header-section {
    color: white;
    padding: 120px 0;
    min-height: 100vh;
    background-image: url('../imgs/salt-4.png');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-section::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: -1;
}
.header-section::after{
    content: "";
    background-image: url(../imgs/overlay-bottom.png);
    position: absolute;
    width: 100%;
    height: 15px;
    left: 0;
    bottom: -1px;
    z-index: 1;
}
.header-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;    
}
@media(max-width:767px){
    .header-section h1{
        padding-top: 50px;
    }
}
.header-section p {
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin: auto;
    background-color:  rgba(0, 0, 0, .7);
    border-radius: 15px;
    margin-bottom: 10px;
    padding: 10px 5px;
}

/* start salt banner  */

.salt-banner{
    background-image: url(../imgs/banner.jpeg);
    background-position: center;
    background-size: cover;
    padding-block: 50px;
    position: relative;
    z-index: 1;
    min-height: 300px;
}
.salt-banner .overlay {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: -1;
}
.salt-banner::before {
    content: "";
    background-image: url(../imgs/overlay-top.png);
    position: absolute;
    width: 100%;
    height: 15px;
    left: 0;
    top: -1px;
    z-index: 1;
}
.salt-banner::after {
    content: "";
    background-image: url(../imgs/overlay-bottom.png);
    position: absolute;
    width: 100%;
    height: 15px;
    left: 0;
    bottom: -1px;
    z-index: 1;
}
/* end salt banner  */


.salt-imgs .imgs {
    padding: 50px 0;
}
.salt-imgs .imgs img {
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-bottom: 23px;
    transition: .3s;
}
.salt-imgs .imgs img:hover {
    scale: 1.1;
}

.details h3 i{
    color: var(--primary-color);
    font-size: 30px;
    
}
.details h3{
    margin-bottom: 30px;
    font-size: 30px;
}
.details .box li i{
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
    animation: 1.5s ease-out infinite animate-pulse;
    border-radius: 50%;
    margin-left: 10px;
}
.details .box li span{
    font-size: 24px;
}
.details .img-box{
    overflow: hidden;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
}
.details img{
    max-height: 400px;
    transition: .3s;
}
.details img:hover{
    scale: 1.2;
}
.details h5 i{
    font-size: 30px;
    color: var(--primary-color);
}
.details h5 span{
    font-weight: 700;
    font-size: 26px;
}
footer{
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
}
footer h6{
    background-color: var(--primary-color);
}
 
/* animations  */
@keyframes bouncing2 {
    50%,from,to {
        transform: translateY(-5px) scale(1,1)
    }

    25% {
        transform: translateY(5px) scale(.9,1.01)
    }

    75% {
        transform: translateY(0) scale(.95,1.01)
    }
}

@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(119 ,140,204,.4)
    }

    5% {
        transform: scale(1.01)
    }

    15% {
        transform: scale(1)
    }

    70% {
        box-shadow: 0 0 0 20px rgba(119 ,140,204,0)
    }

    100% {
        box-shadow: 0 0 0 40px rgba(119 ,140,204,0)
    }
}
