@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    color: rgb(25, 0, 255);
    text-decoration: none;
}

a :hover {
    color: rgb(243, 6, 132);
}


h1, h2 {
    font-weight: 300;
    line-height: 1.3;
}

p {
    margin: 5px 0;
}

img {
    width: 100%;
}

/* Navbar */
.navbar {
    color: yellow;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    opacity: 0.8;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0px;
    padding: 0 30px;
    transition: 0.5s;
}

.navbar.top {
    background: transparent;
}

.navbar a {
    color: blue
    padding: 10px 5px;
    margin: 0 5px;
}

.navbar a:hover {
    border-bottom: yellow 3px solid;
}

.navbar ul {
    display: flex;
}

.navbar .logo {
    font-weight: 250;
    color: yellow
}

/* Header */
.hero {
    background: url('../img/salehwelwele.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
}


.hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: bottom;
    text-align: center;
    height: 100%;
    padding: 36% 20px;
    color: red;
}

.hero .content h1 {
    font-size: 50px;
    color: yellow;
	font-size: 40px;
	text-shadow: -1px 1px 2px #000,
				  1px 1px 2px #000,
				  1px -1px 0 #000,
				  -1px -1px 0 #000;
}

.hero .content p {
    font-size: 20px;
    max-width: 750px;
    margin: 5px 0 5px;
    color: yellow;
		text-shadow: -1px 1px 2px #000,
				  1px 1px 2px #000,
				  1px -1px 0 #000,
				  -1px -1px 0 #000;
}


.hero * {
    z-index: 10;
}

.hero.blog {
    background: url('../images/home/blog.jpg') no-repeat center center/cover;
    height: 30vh;
}


.intro-text {
    font-size: 16px;
}

/* Icons */
.icons {
    padding: 10px;
}

.icons h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.icons i {
    background-color: #28a745;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 15px;
}

.cases img:hover {
    opacity: 0.7;
}

.flex-columns {
    display: flex;
}


.team img {
    border-radius: 50%;
}



/* Collapse button */

.btn-info {
    background-color: teal;
}

/* Descriptions */
.descriptions p {
    font-size: 14px;
}

.descriptions img {
    border-radius: 50%;
}



/*flex boxes*/
.box {
    display: flex;
    flex-wrap: wrap;
    height: 400px;
    width: 33%;
    align-content: space-between;
  }
    
  
  * {
    box-sizing:  border-box;
  }

  .flex-container {
    display: flex;
  }

  .item {
    background: #f4f4f4;
    border: #ccc solid 2px;
    margin: 10 px;
    padding: 10px;
    text-align: cneter;
    border-radius: 10px;
    flex: 1;
  }



/* Descriptions */

.item-salehwelwele1b {
    background-color: #880140;
    color: #fff;
  }

.item-salehwelwele2b {
    background-color: rgb(0, 94, 94);
    color: #fff;
}


.item-salehwelwele3b {
    background-color: #927c02;
    color: #fff;
}   
 


}   


/* Post */
.post {
    padding: 10px 30px;
}

.post h2 {
    font-size: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: #ccc solid 1px;
}

.post .meta {
    margin-bottom: 30px;
}

.post img {
    width: 300px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 30px;
}

/* Footer with links */

.footer {
    background-color: #333;
}

.item-fsongs {
    background-color: #333;
    border: 0;
    font-size: 10px;
}

.item-flanguage {
    background-color: #333;
    border: 0;
    font-size: 10px;
}

.item-fwriting {
    background-color: #333;
    border: 0;
    font-size: 10px;
}

.item-social {
    background-color: #333;
    border: 0;
}

.item-fvisual {
    background-color: #333;
    border: 0;
    font-size: 10px;
}

.item-fhistory {
    background-color: #333;
    border: 0;
    font-size: 10px;
}

.item-fevents {
    background-color: #333;
    border: 0;
    font-size: 10px;
}



/* Mobile */
@media(max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: 80px;
        padding: 10px;
    }

    .navbar a {
        padding: 5px 5px;
        margin: 0 3px;
    }

 .flex-container {
     display: block;
 }

    .flex-items {
        flex-direction: column;
    }

    .flex-columns .column, .flex-grid .column {
        flex: 100%;
        max-width: 100%;
    }

    .team img {
        width: 70%;
    }
