*{
    color: #133E87;
}

.contact-flex{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;

    /* height: 70vh; */
    margin-top: 40px;
}

.box1{
    width: 500px;
    height: 500px;
    border-radius: 5%;
    overflow: hidden;
}

.box1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box2{
    width: 800px;
    height: 80%;
    overflow: hidden;
    text-align: justify;
    padding: 20px;
}

p.title{
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 35px;
}

p.description{
    font-weight: 400;
    font-size: 20px;
    text-align: justify;
    text-indent: 40px;
}

/* laptops */
/* laptop normal */
@media (max-width:1440px) {
    .box1{
        margin-left: 10px;

        width: 400px;
        height: 400px;

    }
    p.description{
        line-height: 1.1;
    }

    .box2 {
        /* width: 100%; */
        max-width: 800px;
        padding: 10px;

        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(25px);
        border-radius: 10px;
    }
    
}

/* tablets */
@media (max-width: 768px) {
    .contact-flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 5px;
        padding: 0 10px;
    }

    .box1 {
        width: 300px;
        height: 300px;
        border-radius: 5%;
        overflow: hidden;
    }

    .box1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .box2 {
        width: 100%;
        max-width: 600px;
        padding: 10px;

        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(25px);
        border-radius: 10px;
    }

    p.title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    p.description {
        font-size: 15px;
        line-height: 1.2;
    }
}

@media (max-width: 425px) {

    .box1 {
        width: 200px;
        height: 200px;
    }
    p.description {
        font-size: 14px;
        line-height: 1;
    }
}

@media (max-width: 375px) {
    .box2{
        overflow-y: scroll;
        height: 40vh;
    }
}

.box2::-webkit-scrollbar {
    width: 12px; /* Total width of the scrollbar */
    background-color: transparent;
}

.box2::-webkit-scrollbar-thumb {
    background-color: #cecece;
    border-radius: 10px;
    border: 3px solid transparent; /* This adds spacing */
    background-clip: content-box; /* Ensures the background color doesn’t bleed into the border */
}