@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    height: 100vh;
    font-family: "Poppins", sans-serif;
}
section.splitScreen .leftScreen {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 55%;
    clip-path: polygon(0px 0px, 100% 0px, 82% 100%, 0% 100%);
    z-index: 9;
    display: flex;
    align-items: center;
    overflow: hidden;
}
section.splitScreen .rightScreen {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 100vh;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55%;
    clip-path: polygon(15% 0px, 100% 0px, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
}
section.splitScreen .logo {
    position: absolute;
    top: 0px;
    z-index: 9;
    padding: 0px;
    bottom: 0px;
    margin: auto;
    right: 0px;
    left: 0px;
    width: max-content;
    z-index: 99;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.splitScreen .logo img {
    width: 200px;
    /* background: #fff; */
    /* border-radius: 100%; */
    /* padding: 20px; */
}
.boxAppear {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / .25);
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: -55px;
    transition: all 0.3s linear;
}

.boxAppear h2 {
    font-size: 30px;
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, 0.8) 0px 2px 4px;
    color: #fff;
    margin: 0px 0px 0px;
}

.boxAppear p {
    opacity: 0.9;
    font-size: 16px;
    color: #fff;
    margin: 5px 0px 20px;
    line-height: 25px;
}

.boxAppear a {
    font-weight: 500;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    text-decoration: unset;
    cursor: pointer;
    color: #fff;
    padding: 0.6rem 1.5rem;
    display: inline-block;
    transition: all 0.3s linear;
}
section.splitScreen .rightScreen .boxAppear {
    left: unset;
    right: -55px;
}
.boxAppear:hover {
    background: rgba(0, 0, 0, 0.8);
}

.boxAppear:hover a {
    background: #ff7000;
}

section.splitScreen .leftScreen:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 25%);
}
@media(max-width:767px){
    section.splitScreen .leftScreen,section.splitScreen .rightScreen {
        clip-path: unset;
        position: static;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 35px 0px 55px;
        min-height: 250px;
    }
    
    section.splitScreen .logo {
        position: relative;
        height: 0px;
        z-index: 9999;
    }
    
    .boxAppear {
        position: static;
        padding: 1rem;
        width: 95%;
        box-sizing: border-box;
        border-radius: 0.6rem;
    }
    
    .boxAppear h2 {
        font-size: 20px;
    }
    
    .boxAppear p {
        font-size: 14px;
        line-height: 22px;
        margin: 5px 0px 15px;
    }
    
    .boxAppear a {
        font-size: 12px;
        padding: 0.4rem 1.5rem;
    }
    
    body {
        height: auto;
        overflow-y: visible;
    }
    
    section.splitScreen .rightScreen {
        padding: 60px 0px 35px;
    }
    
    section.splitScreen .logo img {
        width: 120px;
        padding: 0px;
    }
}