@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 180px 15px 80px;
    transition: 0.5s ease;
}

header .brand {
    color: #fff;
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar ul {
    overflow: auto;
}

.navbar ul {
    list-style: none;
    float: right;
    padding: 16px 12px;
    margin: 0px 10px;
}

ul li {
    display: inline-block;
}

ul li a {
    text-decoration: none;
    color: #fff;
    border-radius: 2px;
    padding: 12px 20px;
}

ul li a:hover {
    background-color: rgb(255, 166, 64);
    color: black;
    transition: 0.3s ease;
}

section {
    padding: 100px 50px;
}


.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(homeback.jpg);
    background-size: cover;
    background-position: center
}


.home .media-icons {
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a {
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
}

.home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
}

.home .media-icons a:hover {
    transform: scale(1.3);
}

footer {
    background: rgb(60, 60, 60);
    height: 500px;
}

.footer-items {
    height: 500px;
    width: fit-content;
    margin: auto;
}

.footer-items p {
    color: #fff;
}

.footer-items a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    padding: 9px;
}

.footer-items a:hover {
    color: rgb(142, 146, 146);

}

.footer-items a i {
    padding-right: 12px;
}

.brand-1 {
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

/* Services section */
#services {
    margin: 34px;
    display: flex;
}

#services .box {
    border: 2px solid black;
    margin: 3px 4px;
    border-radius: 12px;
    background: #f1f1f17e;
    padding: 34px;
}

#services .box img {
    height: 160px;
    margin: auto;
    display: block;
}

#services .box p {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.center {
    text-align: center;
}

/* Utility Classes */

h1 {
    font-size: 2.5rem;
}

.h-secondary {
    font-size: 2.3rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    padding: 12px;
}

/* body */

h2 {
    font-style: normal;
    font-size: 3em;
    letter-spacing: 3px;
    padding: 100px 40px 0px 40px;
    color: rgb(60, 60, 60);
}

.show{
    margin: 34px;
    display: flex;
}

.container{
    border: 2px solid black;
    height: 350px;
    width: 450px;
    background-image: url(explore1.jpg);
    background-position: center;
    background-size: cover;
    margin: 3px 4px;
    border-radius: 20px;
    flex-direction: row;
    display: flex;
    justify-content:center;
    font-size: 1.5em;
    font-weight: bold;
}

#body {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-image: url(bodyback.jpg);
}