* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    color: #424242;
}

h1,
h2,
h3,
h4 {
    font-weight: 500;
}

h2 {
    margin: 30px 0 10px 0;
}

h3 {
    margin: 20px 0 3px 0;
}

p {
    line-height: 150%;
    font-size: 15px;
    font-weight: 400;
}

button,
form,
li,
a {
    font-family: 'Poppins', sans-serif;
}

nav {
    padding: 0 10%;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 50px;
    background-color: white;
    /*box-shadow: [horizontal offset] [vertical offset] [blur radius] [optional spread radius] [color];*/
    box-shadow: 1px 1px 2px 1px rgba(182, 182, 182, 0.3);
}

.full-width-section {
    margin: 100px 0 0 0;
    width: 100%;
}

.fa {
    font-size: 12px;
    display: inline;
    align-content: flex-end;
}

nav .logo {
    float: left;
}

nav .container {
    float: right;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    /*position: absolute;*/
}


/*Create a horizontal list with spacing*/

nav li {
    display: inline-block;
    float: left;
}


/*Style for menu links*/

li a {
    display: block;
    min-width: 100px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #424242;
    /*background: #2f3036;*/
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}


/*Hover state for top level links*/

li:hover a {
    background: #29bf12;
    color: white;
}


/*Style for dropdown links*/

li:hover ul a {
    background: #f3f3f3;
    color: #2f3036;
    height: 40px;
    line-height: 40px;
}


/*Hover state for dropdown links*/

li:hover ul a:hover {
    background: #29bf12;
    color: #fff;
}


/*Hide dropdown links until they are needed*/

li ul {
    display: none;
}


/*Make dropdown links vertical*/

li ul li {
    display: block;
    float: none;
}


/*Prevent text wrapping*/

li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 20px;
}


/*Display the dropdown on hover*/

ul li a:hover+.hidden,
.hidden:hover {
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width: 760px) {
    /*Make dropdown links appear inline*/
    ul {
        position: static;
        display: none;
    }
    /*Create vertical spacing*/
    li {
        margin-bottom: 1px;
    }
    /*Make all menu links full width*/
    ul li,
    li a {
        width: 100%;
    }
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.img100 {
    width: 100%;
    object-fit: cover;
}

.img90 {
    width: 90%;
    object-fit: cover;
}

.img80 {
    width: 80%;
    height: 400px;
    object-fit: contain;
}

.w60 {
    width: 60%;
}

.w50 {
    width: 50%;
}

.w40 {
    width: 40%;
}

.medimg {
    border: 3px solid rgb(245, 245, 245);
    border-radius: 5px;
    width: 90%;
    object-fit: cover;
    box-shadow: 3px 5px 6px rgba(182, 182, 182, 0.3);
}


/*vertically center elements in the div*/

.center-vertical {
    display: flex;
    align-items: center;
    height: 100%;
}

.center-horizontal {
    display: flex;
    justify-content: center;
}

.right {
    display: flex;
    justify-content: flex-end;
}

.column-s6 {
    float: left;
    width: 50%;
}


/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}

.bottom {
    position: absolute;
    bottom: 0;
}

.col-s4 {
    float: left;
    width: 25%;
}

.col-s5 {
    float: left;
    width: 20%;
}

.col-span3 {
    float: left;
    width: 75%;
    text-align: justify;
}

.col-span1 {
    float: right;
    width: 25%;
    text-align: center;
}

.comments {
    width: 90%;
    float: right;
}

footer {
    margin-top: 15px;
    padding: 3% 10%;
    color: rgb(238, 238, 238);
    background-color: #292929;
}


/*footer components*/

.photo-row {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
    padding: 0 6px;
}


/* Create four equal columns that sits next to each other */

.photo-column {
    -ms-flex: 33%;
    /* IE10 */
    flex: 33%;
    max-width: 33%;
    padding: 0 3px;
}

.photo-column img {
    margin-top: 6px;
    vertical-align: middle;
    width: 100%;
}

.photo-column img:hover {
    -ms-transform: scale(3);
    /* IE 9 */
    -webkit-transform: scale(3);
    /* Safari 3-8 */
    transform: scale(3);
}