/*====== Basics ======*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}


/*====== Banner ======*/

.what-is-banner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 600px;
}

.banner {
    display: flex;
    background-position: top;
    background-size: cover;
    
    width: 100%;
    height: 600px;
    background-image: url('../img/header/banner-10.jpg');

}

.what-is {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
    width: 100%;
    height: 550px;
    position: absolute;


}

/*====== What is ======*/


.what-is-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 70px;
    font-family: Muli;
    font-size: 18px;
    color: #667488;
}

.info {
    width: 45%;
    /* margin-left: 20px; */

}

.right-img {
    display: flex;
    justify-content: center;
    width: 45%;
}

.right-img>img {
    width: 90%;
}

/*====== Last Exeprts ======*/

.last-experts {
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: #F4F7F7;
    margin-top: 80px;
    margin-bottom: 50px;
}

.last-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 90%;
}

.last-title>h2 {
    font-family: EffraStdHeavy;
    font-size: 25px;
    color: #272F46;
    margin-top: 80px;
    margin-bottom: 50px;
}

.last-prem-experts {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.expert {
    display: flex;
    width: 49%;
    flex-direction: row;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
    border-radius: 6px;
    margin: 10px 0;

}

.expert-container {
    display: flex;
    flex-direction: row;
    width: 70%;
    padding: 5px;
}

.expert-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
}

.expert-pic>img {
    width: 75%;
}

.expert-info {
    font-family: Muli;
    font-size: 18px;
    color: #717F86;

}

.expert-name,
.expert-name>h2 {
    font-family: EffraStdHeavy;
    color: #272F46;
    font-size: 17px;
}

.expert-name>i {
    color: green;
    margin-left: 5px;
}

.expert-location>i {
    margin-right: 15px;
}

.expert-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.expert-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75%;
    height: 50px;
    background-color: #5091FF;
    color: white;
    font-family: Muli;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    transition: 0.3s ease-in;
    cursor: pointer;
}

.expert-profile:hover {
    background-color: white;
    color: #5091FF;
    text-decoration: none;

}

.all-button {
    margin: 20px 0;
    align-self: center;
    width: 20%;
}

.all-button>a {
    width: 100%;
}

/*====== Join ======*/

.join-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}



.join-background {
    display: flex;
    background-position: top;
    background-size: cover;
    flex-wrap: wrap;
    width: 100%;
    background-image: url('../img/fondo_1.png');
    height: 200px;

}

.overlay-join {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    position: absolute;
    width: 100%;
    height: 150px;
    align-items: center;
    margin-top: 10px;

}

.join-info {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    font-family: Muli;
    font-size: 18px;
    color: white;
    width: 60%;
}

.join-info>h3 {
    font-family: EffraStdHeavy;
    font-size: 30px;
    color: white;
}

.join-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
}

.join-experts {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    background-color: white;
    font-family: Muli;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);

}

.join-button>a,
.join-button>a:visited,
.join-button>a:hover {
    color: #FF0000;
    text-decoration: none;
}

@media (max-width: 769px) {
    /*====== What is ======*/

    .info {
        width: 85%;

    }

    .right-img {

        width: 85%;
    }

    .right-img>img {
        width: 100%;
    }


    .expert-pic {
        width: 40%;
    }

    .expert-pic>img {
        width: 65%;
    }

    .expert-info {
        width: 55%;
    }

    .expert-location>i {
        margin-right: 5px;
    }

    .expert-profile,
    .join-experts {
        text-align: center;
    }

}

@media (max-width: 570px) {
    .banner {
        background-position-x: 25%;
    }

    .what-is {
        height: 400px;
    }

    .what-is>img {
        width: 80%;
    }

    .last-prem-experts {
        justify-content: space-around;
    }

    .expert {
        width: 90%;
    }

    .all-button {
        width: 70%;
    }

    .join-info>h3 {
        font-size: 22px;
    }

    .join-info>span {
        font-size: 13px;
    }
    .join-experts{
        font-size: 13px;
    }

}