*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    padding: 0;
    position: absolute;
    background-image: url("rm405-c01a-mockup.jpg");
    background-position: 50% 19%;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.content{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 100px;
    z-index: 999;
    width: 100%;
}

.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: .5;
}

.inner-container{
    width: 100%;
    max-width: 1280px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 999;
    gap: 20px;
}

.left-column{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
}

h1{
    font-size: 62px;
    font-weight: 600;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

h3{
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

h2{
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px 0;
    padding: 0;
}

p{
    font-family: "Inter", sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #fff;
}

.colored{
    color: #3BAABA;
}

.bold{
    font-weight: 800;
    font-size: 28px;
}

.line{
    display: block;
    height: 1px;
    width: 100px;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.right-column{
    width: 40%;
}

.hosting-up-sale{
    width: 100%;
    max-width: 480px;
    height: 100%;
    padding:  15px 25px 15px 25px;
    background-color: rgba(36, 84, 113,.8);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-direction: column;
}

.hosting-up-sale a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 50px;
    background-color: #fff;
    color: #3BAABA;
    text-decoration: none;
    text-transform: uppercase;
        font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.footer{
    width: 100%;
    height: 100px;
    background-color: rgba(36, 84, 113,.8);
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .inner-layout{
    width: 100%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.footer p{
    font-size: 16px;
    text-align: right;
}

.footer ul{
    margin: 0;
    padding: 0;
}

.footer ul li{
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    padding: 0 10px 0 0;
}

.footer ul li button{
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background-color: #fff;
    width: 100%;
    max-width: 680px;
    height: 75vh;
    border-radius: 25px;
    padding: 10px;
}

.box-header{
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-header h3{
    color: rgba(36, 84, 113,1);
    font-size: 24px;
}

.box .box-content{
    width: 100%;
    height: calc(100% - 60px);
    overflow-y: scroll;
    padding: 15px;
    font-family: 'Inter', sans-serif;
    color: #707070 !important;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
}

.box .box-content p{
    font-family: 'Inter', sans-serif;
    color: #707070 !important;
    font-size: 16px;
}

.box .box-content ul li{
    list-style: none;
}

.strong{
    font-weight: 600;
}

.box .box-content h3{
    font-family: 'Inter', sans-serif;
    color: #707070 !important;
    font-size: 16px;
} 

.box .box-content h2{
    font-family: 'Inter', sans-serif;
    color: #707070 !important;
    font-size: 16px;
} 

.box-header button{
    width: 45px;
    height: 45px;
    border-radius: 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 2px solid rgba(36, 84, 113,1);
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 21px;
    color: rgba(36, 84, 113,.8);
    cursor: pointer;
}

.imprint-box{
    display: none;
}

.privacy-police-box{
    display: none;
}

.imprint-box.active{
    display: block;
}

.privacy-police-box.active{
    display: block;
}