@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --overlay-color: #882bb6;
}

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

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: #ffffff;
    z-index: 2;
    transition: 0.5s;
}
.showcase.active {
    right: 300px;
}
.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    text-transform: uppercase;
    cursor: pointer;
}
.logo a {
    text-decoration: none;
    color: #fff;
    transition: all 0.7s ease;
}
.logo a:hover {
    text-decoration: none;
    color: #3b7f8b;
    font-size: 145%;
}
.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    background: url(img/menu\(1\).png);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center center;
    cursor: pointer;
}
.toggle.active {
    background: url(img/x.png);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
}
.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    mix-blend-mode: overlay;
}
.text {
    position: relative;
    z-index: 10;
}
.text h2 {
    font-size: 5em;
    font-weight: 800;
    line-height: 1em;
    text-transform: uppercase;
}
.text h3 {
    font-size: 4em;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
    color: #a8427a;
}
.text a {
    display: inline-block;
    font-size: 1em;
    background: none;
    padding: 12px 35px;
    text-decoration: none;
    color: #ffffff;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.7s;
}
.text a:hover {
    letter-spacing: 6px;
    font-size: 140%;
    background-color:none;
    color: #a8427a;
    font-weight: bold;
}
.social {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social li {
    list-style: none;
}
.social li a {
    display: inline-block;
    margin-right: 20px;
    transform: scale(0.8);
    transition: 0.5s;
}
.social li a:hover {
    transform: scale(0.8) translateY(-5px);
}
.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3bd;
}
.menu ul {
    position: relative;
    list-style: none;
    position: absolute;
}
.menu ul li a {
    text-decoration: none;
    font-size: 24px;
    color: #3b7f8b;
    transition: all .5s;
}
.menu ul li a:hover {
    color: var(--overlay-color);
    font-size: 2rem;
}
.imghero {
    width: 420px;
    border-radius: 100px;
}

.hero1 {
    display: flex;
    transition: all 0.7 ease;
}
.hero2 div {
    display:flex;
    margin-top: 3%;
    margin-right: 70px;
    transition: all 0.7s ease;
}
.hero2 div:hover {
    margin-top: 3%;
    margin-right: 70px;
    background-color: #a8427a;
    color: #111;
    padding: 34px;
    border-radius: 45px;
}



