html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: normal 16px / 24px "Roboto", Helvetica, Arial, Verdana, sans-serif;
}

body {
    transition: background-color .5s;
}

.container {
    border: none 1px;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
    min-height: 1400px;
}


/*           */

.inner {
    display: flex;
}

.center-box {
    border: none;
    margin: 12px;
    width: 60%;
    min-height: 700px;
    margin-top: 10px;
}

.center_box_img {
    display: flex;
    justify-content: center;
}

.bold {
    font-weight: bold;
    color: #7a7a7a;
    font-size: 14px;
}

.title {
    font-weight: bold;
    font-size: 19px;
    text-align: center;
}

.dotted {
    border: none;
    border-bottom: dotted 1px lightgray;
    width: 95%;
    margin: 10px auto;
}

.center_box__texts>p {
    color: #7a7a7a;
    margin: 15px 12px;
    font-size: 14px;
}

.banner {
    max-width: 96% !important;
    height: auto;
    margin: 10px;
}


/* img resize */

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}

.image-container .image {
    height: auto;
    width: 95%;
    border: 10px solid #fff;
    overflow: hidden;
    cursor: pointer;
}

.image-container .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.image-container .image:hover img {
    transform: scale(1.1);
}

.popup-imag {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.popup-imag span {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}

.popup-imag img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    object-fit: cover;
}

@media only screen and (max-width: 770px) {
    .inner {
        flex-direction: column;
    }
    table {
        width: 100%;
    }
    .center-box {
        width: 85%;
        margin: 0 auto;
    }
    .popup-imag img {
        width: 95%;
    }
}