@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    background: #111;
    color: #fff;
    z-index: 2;
    transition: 0.6s;
   /* background: url('../OSEIv2/Ghana1.jpg');
    background-size: cover;
    background-position: center;*/
}

.back img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
}

.showcase.active {
    right: 280px;
}

.showcase header{
    position: absolute;
    top: 0;
    left: 0;
    width: 97.5%;
    padding: 40px 100px;
    z-index: 1000;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 140px;
    width: auto;
    position: relative;
}

.logo {
    text-transform: uppercase;
    cursor: pointer;
}

.logo a {
    text-decoration: none;
    color: white;
}

.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /*padding: 0 100px;*/
    display: flex;
    justify-content:center;
    align-items: flex-end;
    overflow: hidden;
    transition: 0.5s;
}

.banner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    max-width: 550px;
    display: block;
    visibility: visible;
    transform: scale(1);
    transform: translateY(25px);
    transition: 0.5s;
}

.content.active {
    display: block;
    visibility: hidden;
    transform: scale(1);
    transition: 0.5s;
}

.title {
    width: 20%;
    height: 20%;
    max-width: 250px;
    visibility: hidden;
}

.showcase .content h4 {
    color: #fff;
    font-weight: 400;
    font-size: 40px;
}

.showcase .content h4 span {
    padding: 0 10px;
    border-right: 1px solid #fff;
}

.showcase .content h4 span:first-child {
    padding-left: 0;
}

.showcase .content h4 span:last-child {
    border-right: none;
}

.showcase .content p {
    font-size: 2em;
    font-weight: 300;
    line-height: 1.5em;
    color: #fff;
    margin: 10px 0 20px;
    font-style:normal;
}

.button {
    position: relative;
}

.button a {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    background: var(--primary);
    background-color: black;
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    transition: .5s;
    text-decoration: none;
    text-transform: uppercase;
}

.button a:hover {
    background: transparent;
    border: 1px solid #fff;
}


.banner .carousel-box {
    position: relative;
    min-width: 950px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0, 0.2);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    /* border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px); */
    border-radius: 10px;
}

.carousel {
    position: relative;
    height: 550px;
    perspective: 1500;
    /*transform: translateX(180px);*/
}

.carousel .carousel-item {
    width: 250px;
    cursor: pointer;
}

.carousel .carousel-item img {
    max-width: 235px;
    border-radius: 5px;
}

.play {
    position: absolute;
    bottom: 50px;
    left: 100px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1.2em;
    cursor: pointer;
    transition: 0.3s;
    visibility: hidden;
}

.play i {
    margin-right: 10px;
    font-size: 40px;
    cursor: pointer;
}

.play:hover {
    color: var(--primary);
}

.social {
    position: absolute;
    bottom: 50px;
    right: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: 0.3s;
}

.social:hover {
    scale: 105%;
}

/*
.banner img {
    width: 20%;
    height: 20%;
}
*/

.social li img {
    width: 30px;
    height: 30px;
}

.toggle {
    position: relative;
    width: 95px;
    height: 95px;
    background: url('ham.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
}

.toggle.active {
    background: url('hamclose.png');
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
}

.menu {
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center; /*vertical*/
    justify-content: center; /*horizontal*/
}

.menu ul {
    position: relative;
    list-style: none;
}

.menu ul li a {
    text-decoration: none;
    font-size: 26px;
    color: #111;
}

.menu ul li a:hover {
    color: grey;
}

@media (max-width: 800px) {
    .showcase,
    .showcase header {
        padding: 40px;
    }
}


@media screen and (max-width: 600px)
{
    .showcase {
        position:relative;
        right: 0;
        width: 100%;
        min-height: 100vh;
        padding: 0px;
        display: block;
        justify-content: center;
        /*align-items: center;*/
        background: #111;
        color: #fff;
        z-index: 2;
        transition: 0.6s;
        background: url('../OSEIv2/Ghana1.jpg');
        background-size: cover;
        background-position: center;
    }

    .banner {
        position: relative;
        width: 100%;
        min-height: 100vh;
        /*padding: 0 100px;*/
        display: flex;
        justify-content:center;
        align-items: flex-end;
        overflow: hidden;
        transition: 0.5s;
    }


    .content {
        justify-content: center;
        align-items: center;
        transform: translateY(25px);
    }
    .logo img {
        height: 50px;
        width: auto;
    }
    .showcase .content p {
        font-size: 1em;
        font-weight: 200;
        line-height: 1.5em;
        color: #fff;
        margin: 10px 0 20px;
        font-style:normal;
    }
    .carousel .carousel-item img {
        max-width: 100px;
        border-radius: 5px;
        transform: translateX(32px);
        visibility: hidden;
    }

    .banner .carousel-box {
        visibility: hidden;
        overflow: hidden;
    }
    
    .carousel {
        position: relative;
        height: 550px;
        perspective: 1500;
        visibility: hidden;
        overflow: hidden;
        /*transform: translateX(180px);*/
    }
    
    .carousel .carousel-item {
        width: 250px;
        cursor: pointer;
        visibility: hidden;
        overflow: hidden;
    }

    .showcase .content h4 {
        color: #fff;
        font-weight: 300;
        font-size: 30px;
    }

}

/*# sourceMappingURL=main.css.map */