:root {
    --faaliyetlerimizclr: rgb(244, 244, 244);
    --rightwidth_faaliyetlerimiz: 65%;
    --linkclr: rgb(72, 98, 105);
}

.faaliyetlerimiz_deniS_wrapper {
    width: var(--rightwidth_faaliyetlerimiz);
    position: relative;
    float: right;
    /* width: 100%; */

    /* padding-left: 3%; */

    margin-bottom: 5.5rem;
    margin-top: 1rem;
    margin-right: 3rem;

    font-family: 'Catamaran', sans-serif;
    font-size: large;
}

.faaliyetlerimiz_list_wrapper_wrapper {
    font-family: 'Catamaran', sans-serif;
    font-size: large;
    float: left;
    position: relative;
    margin-top: 1rem;
    margin-left: 3rem;

    width: calc(91vw - var(--rightwidth_faaliyetlerimiz));
    margin-bottom: 5.5rem;
}

.faaliyetlerimiz_photo_wrapper {
    position: absolute;
    margin-top: 17rem;
    width: calc(91% - var(--rightwidth_faaliyetlerimiz));
    margin-left: 3rem;
}

@media only screen and (max-width: 1195px) {
    main {
        display: flex;
        flex-direction: column;
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .faaliyetlerimiz_list_wrapper_wrapper {
        all: unset;
        font-family: 'Catamaran', sans-serif;
        font-size: large;

        margin-top: 1rem;
        /* position: absolute; */
        /* right: 0; */
        /* margin-top: 1rem; */
        /* margin-right: 3rem; */
        /* margin-bottom: unset; */
        /* width: 25rem; */
    }

    .faaliyetlerimiz_deniS_wrapper{
        all: unset;

        font-family: 'Catamaran', sans-serif;
        font-size: large;
        /* position: absolute; */
        /* width: 90%; */
        /* margin-right: 3rem; */
        /* margin-left: 3rem; */
        margin-bottom: 5.5rem;

        /* margin-top: 15rem; */
    }

    .faaliyetlerimiz_photo_wrapper {
        all: unset;
        /* max-width: calc(90% - 25rem - 25%); */
        /* right: 3rem; */
        /* margin-left: 3rem; */
        /* margin-right: 3rem; */
        /* margin-bottom: unset; */

        /* margin-top: 1rem; */
    }
}


.faaliyetlerimiz_denis {
    /* position: relative; */

    background: var(--faaliyetlerimizclr);
    border: none;
    border-radius: 10px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);

    padding-left: 1rem;
    padding-right: 2%;
    padding-top: 1rem;
    padding-bottom: 1%;

    text-align: justify;
    font-weight: 500;
}

.faaliyetlerimiz_denis_title {
    padding-left: 30%;
}

.faaliyetlerimiz_denis_headers{
    font-weight: normal;
    padding-top: 1rem;
}

.faaliyetlerimiz_denis_details {
    padding-top: 1rem;
    font-weight: lighter;
    padding-left: 1rem;
    line-height: 150%;
}



.faaliyetlerimiz_list_wrapper {
    /* display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-around; */

    background: var(--faaliyetlerimizclr);
    border: none;
    border-radius: 10px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);

    padding-top: 0.5rem;
    padding-left: 1rem;
    padding-right: 0.5rem;
}

.faaliyetlerimiz_list_wrapper ol {
	margin-top: 0.5rem;
}

.faaliyetlerimiz_list_wrapper li {
    padding-bottom: 1rem;
    list-style-type: circle;
}

.faaliyetlerimiz_list_wrapper a {
	cursor: pointer;
	text-decoration: none;
    color: var(--linkclr)
}

/* // Underline - Left to Right */
.effect-three > a {
    display: inline-block;
    position: relative;
}
.effect-three > a:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    margin: -1px 0;
    left: 0;
    background-color: #698386;
    transition: all 0.4s ease-in 0s;
}
.effect-three > a:hover:after {
    width: 100%;
}

/* Each state */

a:visited { text-decoration: none; color: var(--linkclr) }
a:hover { text-decoration: none; color:var(--linkclr); }
a:focus { text-decoration: none; color:var(--linkclr); }
a:hover, a:active { text-decoration: none; color:var(--linkclr) }

.myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;

    width: 100%;
    height: contain;
    /* width: 50%;
    margin-left: 50%; */
}

.myImg:hover {
    opacity: 0.7;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 20rem;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15rem;
    right: 5rem;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}
