@charset "UTF-8";
*, *::after, *::before, *:hover, *:focus {
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
}
body {
    margin: 0;
    padding: 0;
    background: #fff;
    overflow-x: hidden;
    font-family: 'Fira Sans', sans-serif !important;
    letter-spacing: 0px !important;
}
body, html {
    width: 100%;
    float: left;
    position: relative;
}
.wrapper {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.left_dev, .right_dev {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    transition: all ease-in-out 0.5s;
}
.left_dev::before, .right_dev::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.5);
    transition: all linear 0.5s;
    z-index: 1;
}
.left_dev:hover::before, .right_dev:hover::before {
    /* width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    border-radius: 100%; */
    background: rgba(0,0,0,0.3);
}
.left_dev > div, .right_dev > div {
    position: relative;
    z-index: 9;
}
.right_dev {
    background: url("../images/nth.jpeg") no-repeat center center;
    background-size: cover;
    border-top: solid 2px #ffffff;
}
.left_dev {
    background: url("../images/riverside.jpeg") no-repeat center center;
    background-size: cover;
    border-bottom: solid 2px #ffffff;
}
.left_content {
    position: absolute !important;
    width: 100%;
    height: 100%;
    left: 210%;
    top: 0;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    transition: all linear 0.5s;
    z-index: -1 !important;
}
.left_content.active {
    z-index: 99 !important;
    left: calc(100% + 4px);
}
.right_content {
    position: absolute !important;
    width: 100%;
    height: 100%;
    right: 210%;
    top: 0;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    transition: all linear 0.5s;
    z-index: -1 !important;
}
.right_content.active {
    z-index: 99 !important;
    right: calc(100% + 4px);
}
.logo {
    width: 100%;
    max-width: 140px;
    height: 80px;
    display: block;
    margin: 0px auto 30px;
    background: #ffffff;
    border-radius: 2px;
    position: relative;
    padding: 10px 15px;
    cursor: pointer;
}
.logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
}
h2 {
    width: 100%;
    display: block;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}
p {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    text-align: center;
}
a {
    width: 150px;
    display: block;
    margin: 0px auto;
    background: #ffffff;
    color: #000000;
    /* border: solid 2px #ffffff; */
    font-size: 14px;
    line-height: 30px;
    font-weight: 600;
    text-align: center;
    padding: 10px 15px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: all linear 0.5s;
}
a:hover {
    background: #000000;
    color: #ffffff;
}
@media (min-width: 992px) {
    .wrapper {
        flex-direction: row;
    }
    .left_dev, .right_dev {
        width: 50%;
        padding: 80px;
    }    
    .right_dev {
        border-left: solid 2px #ffffff;
        border-top: none;
    }
    .left_dev {
        border-right: solid 2px #ffffff;
        border-bottom: none;
    }
    .left_content, .right_content {
        padding: 100px;
    }
    .logo {
        max-width: 200px;
        height: 100px;
        padding: 20px 30px;
    }
    h2 {
        font-size: 28px;
        line-height: 35px;
    }
    p {
        margin: 0 auto 30px;
        font-size: 16px;
        line-height: 30px;
    }
}