@import url("https://fonts.googleapis.com/css2?family=GFS+Didot&family=Poppins:wght@400;600;700&display=swap");
.cctv {
    display: grid;
    grid-template-columns: 50% 50%;
    margin: 0 10%;
    background-color: rgba(128, 128, 128, 0.233);
    margin-bottom: 50px;
    padding-block: 50px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.cctv-image {
    display: flex;
    justify-content: center;
}
.cctv-image img {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    color: #2e3f61;
    background-color: #fff;
    border: 2px solid;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* border: 2px solid; */
}

.cctv-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    margin-right: 10%;
}
.cctv-content h1 {
    padding-bottom: 20px;
    font-family: Alike;
    font-size: 35px;
    color: #2e3f61;
}

.cctv-content p {
    line-height: 1.89;
    color: #333;
}

@media screen and (max-width: 991px) {
    .cctv {
        display: block;
        width: 80%;
        margin: 0 auto;
        margin-block: 50px;
    }
    .cctv-image img {
        display: none;
    }
    .cctv-content {
        display: block;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}
