.btn-nav {
    color: white;
    background: #692031;
    width: 90px;
}

    .btn-nav:hover, .btn-home:hover {
        color: white;
        background: #692031;
    }

.flag-img {
    border-radius: 50%;
    width: 22px;
    height: 22px;
}

.usr-img {
    border-radius: 50%;
    width: 33px;
    height: 33px;
}

.cont-pic {
    position: absolute;
    left: 5%;
    text-align: left;
    font-weight: 600;
    width: 50%;
    padding: 12% 0%;
    min-height: 300px;
}

.p-home {
    font-size: 2.75vw;
    font-family: 'Montserrat', sans-serif;
    color: #692031;
    margin: 0;
}

.btn-home {
    background: #692031;
    color: white;
    font-size: 1.2vw;
    padding: 2% 5%;
    margin-top: 2.5%;
}

.cont-bg {
    background-image: url('/images/referans.webp');
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-cont {
    margin-top: 2%;
}

.card-image {
    height: 52px;
    width: 52px;
}

.info-card {
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 20rem;
    padding: 3% 1%;
    box-shadow: 0px 5px 10px #d1cfcf;
}

.card-p {
    font-weight: 800;
    color: #692031;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding-top: 3%;
    font-size:1.75rem;
}

hr {
    margin: 2% auto;
    color: #692031;
    width: 15%;
}

.icon-header {
    position: absolute;
    top: 20%;
}

.card-span {
    position: absolute;
    top: 55%;
    padding: 0% 3%;
    font-size: 1.25rem;
}

.ref-p {
    font-size: 24px;
    font-weight: 600;
    padding: 0% 3%;
}

.txt-header {
    color: #692031;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.img-school {
    width: 100%;
}

.txt-command {
    position: relative;
    bottom: 70%;
    color: white;
    background: #692031;
    text-align: center;
    z-index: -1;
    width: 90%;
    margin: auto;
    height: 10%;
    justify-content: center;
    display: flex;
    align-items: center;
}

.play-video {
    width: 60vw;
    border: 2vh solid gainsboro;
}

.non-hoverable {
    width: 370px;
}

.hoverable {
    width: 100%;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    -webkit-transition: box-shadow 0.5s;
    transition: box-shadow 0.5s;
}

    .hoverable a {
        color: inherit;
        text-decoration: none;
    }

    .hoverable:hover {
        box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
    }

.card__thumb {
    height: 20rem;
    overflow: hidden;
    background-color: #000;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
}

    .card__thumb img {
        width: 100%;
        display: block;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
        transition: opacity 0.5s, -webkit-transform 0.5s;
        transition: opacity 0.5s, transform 0.5s;
        transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
    }

.hoverable:hover .card__thumb {
    height: 20px;
}

    .hoverable:hover .card__thumb img {
        opacity: 0.6;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }


/**
* card_BODY
**/

.card__body {
    position: relative;
    height: 10rem;
    padding: 4%;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
    text-align: center;
}

.hoverable:hover .card__body {
    height: 29rem;
}

.card__category {
    position: absolute;
    top: -25px;
    left: 0;
    height: 25px;
    padding: 0 15px;
    background-color: coral;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 25px;
}

.card__title {
    margin: 0;
    padding: 0 0 10px 0;
    color: #692031;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.card__subtitle {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 1.2rem;
}

.card__description {
    text-align: left;
    margin: 0;
    padding: 0% 5%;
    color: #666C74;
    opacity: 0;
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    font-size: 1.2rem;
}

.hoverable:hover .card__description {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    font-size: 1.2rem;
}

.container-fluid {
    padding: 0 !important;
}

.navbar-nav .nav-link {
    color: grey;
}

.nav-link:focus, .nav-link:hover {
    color: black;
}

.nav-link.btn-lg.btn-nav {
    color: white;
    text-decoration: none;
}

    .nav-link.btn-lg.btn-nav:active {
        color: #692031;
        text-decoration: none;
        background-color: transparent;
        border: .1vh solid #692031;
        box-shadow: none !important;
    }

a, a:active {
    text-decoration: none !important;
    box-shadow: none;
}

    .navbar-nav a, a:active {
        text-decoration: none !important;
        box-shadow: none;
        color: grey !important;
    }

     a:hover {
            color: #692031;
  }

.row {
    margin: 0;
}

.w-95 {
    width: 95%;
}

body {
    font-family: 'Quicksand',  sans-serif;
}

.hdr-txt {
    font-family: 'Montserrat', sans-serif;
}

.lang-select, .lang-opt {
    border: 0;
    color: grey;
}

.dropdown-menu {
    border: none;
    min-width: fit-content !important;
    --bs-dropdown-link-active-bg: white !important;
}

.disabled {
    background-color: #f8f8f8;
    pointer-events: none;
}

.btn-lg.btn-nav {
    width: fit-content;
}

.fa-caret-right, .fa-forward, .fa-backward, .fa-caret-left {
    color: #692031 !important;
}

.txt-header {
    color: #692031;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.txt-command {
    color: white;
    background: #692031;
    text-align: center;
    width: 90%;
    margin: auto;
    padding: 10px;
    margin-top: 10px;
}

table tr td a{
    color:#692031 !important;
}

.dropdown-menu-end {
    right:0px;
}

.dr-p {
    position: relative;
    bottom: 30%;
    width: 70%;
    left: 25%;
}
/* Optional: Adjust spacing for smaller screens */
@media (max-width: 767px) {
    .txt-command {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 600px) {
    .dr-p {
        position: inherit;
        width: 100%;
    }

    .dr-hdr {
        position: relative;
        z-index: 2;
        bottom: 45%;
    }

    .dr-img {
    position: relative;
    z-index: 0;
}
    .log-drop{
        display:none;
    }
    
}
.footer {
    position: relative;
    bottom: 0;
    left: 0;
}
.home-image-container{
width:100%;

}