@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap");

:root {
    --bg: #363fff;
    --bg2: #3138c6;
    --title: #293245;
    --secondary-light: rgb(34, 124, 112, 0.2);
    --secondary-light-2: rgb(127, 183, 126, 0.1);
    --white: #fff;
    --black: #393e46;
    --green: #00FF96;
    --blue: #00A2FF;

    --shadow: 0px 2px 8px 0px var(--secondary-light);
}

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* dessal Section */
section.dessal {
    display: flex;
    padding: 300px 10% 50px 10%;
    background: linear-gradient(180deg, #124559, #16184f);
    color: var(--white);
    text-align: center;
    gap: 60px;
    flex-direction: column;
}

section.dessal .item{
    display: flex;
    align-items: center;
    background: linear-gradient(80deg, #124559, #16184f);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 2px 8px 0px var(--secondary-light);
}

section.dessal .item2{
    background: linear-gradient(190deg, #124559, #16184f);
}

section.dessal .item3{
    background: linear-gradient(100deg, #124559, #16184f);
}

section.dessal .box-right, section.dessal .box-left{
    width: 50%;
}

section.dessal .item .box-right{
    display: flex;
    flex-direction: column;
    padding: 0 50px;
    /* height: 290px; */
    justify-content: space-around;
}

section.dessal .item .box-right a{
    display: flex;
    align-items: center;
    background-color: #124559;
    margin: auto;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    width: 30%;
    height: 40px;
    justify-content: center;
}

section.dessal img{
    width: 90%;
    transition: 0.5s all;
}

section.dessal img.position{
    position: relative;
    width: 90%;
    transition: 0.5s all;
    z-index: 6;
}

section.dessal img:hover{
    -ms-transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
    transition: 1s all;
}

@media screen and (max-width: 1710px) {
    section.dessal .item .box-right a{
        margin: 10px auto;
    }
}

@media screen and (max-width: 1390px) {
    section.dessal .item{
        flex-direction: column;

    }

    section.dessal .item .box-right{
        padding: 0;
    }

    section.dessal .box-right, section.dessal .box-left{
        width: 90%;
    }
}

@media screen and (max-width: 700px) {
    section.dessal .item .box-right a{
        width: 40%;
    }
}

@media screen and (max-width: 470px) {
    section.dessal .item .box-right a{
        width: 50%;
    }
}

@media screen and (max-width: 260px) {
    section.dessal .item .box-right a{
        width: 60%;
    }
}