@font-face {
    font-family: "poppins";
    src: url("Poppins/Poppins-Light.ttf");
}
@font-face {
    font-family: "poppins-bold";
    src: url("Poppins/Poppins-Bold.ttf");
}
body{
    margin: 0;
    padding: 0;
}
header{
    position: absolute;
    z-index: 100;
    width: 100%;
    top: 10px;

}
header nav{
    width: 100%;
}
header nav img{
    float: left;
    height: 50px;
    margin-left: 50px;
}
header nav ul{
    float: right;
    margin:0 50px;
    padding: 0;
    list-style: none;
    display: none;

}
header nav ul li{
    float: left;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    color: #333;
    padding: 0 20px;
    text-transform: capitalize;
    font-family: "poppins-bold";
    font-size: 14pt;

}
header ul li:hover{
    color: #fb7b88;
    transition: all .3s;
}

#slideShow{
    width: 100%;
    background: url("../images/bg.png") center bottom no-repeat;
    background-size: cover;
    padding-bottom: 10px;
}
.slide{
    width: 40%;
    margin-left: 5%;
    margin-top: 20px;
    float: left;
    text-align: center;
}
.slide:first-child img{
    width: 100%;

}
p{
    font-family: "poppins";
    font-size: 16pt;
    text-align: justify;

}
.slide p{
    font-size: 15pt;
    line-height: 25px;
}
p strong{
    font-family: "poppins-bold";
}
.slide ul{
    padding: 0;
    margin: 10px 0;
    list-style: none;
}
.slide ul li{
    float: left;
    padding: 0 20px;
    width: 200px;
}
.slide ul li img{
    height: 50px;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
    border-radius: 5px;
}
.slide:last-child img{
    width: 60%;
}
.slide:last-child ul{
    display: none;
}
.slide:first-child ul{
    display: block;
}
#slideShow form{
    width: 30%;
    margin-left: 5%;
    position: absolute;
    z-index: 100;
    bottom: 0;
    float: left;
}
h2{
    font-family: poppins-bold;
    font-size: 16pt;
    color: #fff;
    margin: 0;
    padding: 0;
}
#slideShow form p, .shared p{
    padding: 10px 0;
    margin: 0;
    font-size: 10pt;
    color: #fff;
}
.shared{
    float: right;
    bottom: 0;
    position: absolute;
    right: 0;
    min-width: 300px;
    padding: 0 10px;
}
#slideShow form input{
    width: 75%;
    border: none;
    height: 30px;
    font-family: poppins;
    font-size: 12pt;
    color: #333;
    text-indent: 10px;
    margin: 0;
    border-radius: 5px 0 0 5px;
    float: left;
}
#slideShow button{
    height: 32px;
    margin: 0;
    padding: 0 5px;
    font-size: 12pt;
    background: #fb7b88;
    border: solid 2px #fff;
    color: #ffffff;
    float: left;
    border-radius: 0 5px 5px 0;
    cursor: pointer;

}
#slideShow button:hover{
    background: #fff;
    transition: all .3s;
    color: #fb7b88;
}
.clear{
    clear: both;
}
.shared ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.shared ul li{
    float: left;
    padding: 0 2px;
    cursor: pointer;
    line-height: 20px;
}
.shared ul li img{
    width: 20px;
    border-radius: 5px;
}
.shared ul li img:hover{
    background: white;
}
@media screen and (max-width: 900px){

    #slideShow{
        background: url("../images/bg.png") right top fixed no-repeat #fb7b88;
        margin-top: 0;
    }
    .slide{
        float: none;
        width: 90%;
        margin: 0 5%;
    }
    .slide:first-child img{
        margin-top: 30px;
    }
    .slide:last-child img{
        width: 100%;
    }
    .slide ul li{
        width: 100%;
        text-align: center;
        float: none;
    }
    .slide ul li img{
        width: 100px;
        height: auto;
    }
    #slideShow form{
        width: 90%;
        margin-left: 5%;
        float: none;
        position: relative;
        margin-top: 20px;
    }
    #slideShow form input{
        border: 1px solid #fb7b88;
        float: left;
        height: 30px;
    }
    #slideShow button{
        border: solid 2px #fb7b88;
        height: 40px;
        float: left;
    }
    .shared{
        position: relative;
        float: none;
        width: auto;
        margin: 10px 5%;
    }
    header{
        position: absolute;
        top: 0;
    }
    #slideShow form p, h2, .shared p{
        color: #fb7b88;
    }
    .shared ul li{
        text-align: center;
    }
    .slide:first-child ul{
        display: none;
    }
    .slide:last-child ul{
        display: block;
        margin: 0;
        padding: 0;
    }
    .slide:last-child ul li{
        width: 90%;
    }
    .slide:last-child ul img{
        width: 50%;
        border-radius: 10px;
    }

}