﻿
@media only screen and (max-width: 500px) {
    /* For mobile: */
    .wrapper, .owl-stage-outer {
        width: 90vw !important;
    }

    .show .img-show {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    .show .img-show {
        width: 70%;
    }

    p {
        font-size: 14px;
    }

    .list-styled > ul {
        list-style: disc;
    }

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
}

body {
    width: 100vw;
    min-height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

ul {
    cursor: default;
}

p, li, span, label, input:placeholder-shown, textarea:placeholder-shown, summary {
    font-size: 0.9em;
}

details {
    cursor: pointer;
}

p {
    margin-bottom: 0;
    cursor: default;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

    a:hover {
        color: unset;
    }


.wrapper {
    margin: 0 auto;
    width: 85vw;
}

.content {
    padding-block: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    position: absolute;
    z-index: 99;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

textarea {
    width: 100%;
    min-height: 100px;
    overflow: auto;
    padding: 15px !important;
    border: none;
    border-radius: 10px !important;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.background {
    background-image: url(../images/Geomtry-Background.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.79;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.flexCenter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flexBetween {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flexEnd {
    display: flex;
    align-items: center;
    justify-content: end;
}

.flexStart {
    display: flex;
    align-items: center;
    justify-content: start;
}

.rtl {
    direction: rtl;
}

/* Scroll Style */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
/*End of Scroll Style */

/* Scroll To Top Button */
.scroll {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: rgba(237, 237, 237, 0.9);
    transition: all 150ms ease;
    transform: scale(0);
    outline: none;
    cursor: pointer;
    z-index: 100;
}

    .scroll:focus {
        outline: none;
    }

.fa-sort-up {
    color: #990b0b;
    margin-top: 5px;
}

.scroll:hover .fa-sort-up {
    animation: jump 800ms infinite;
}

@keyframes jump {
    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}
/* End scroll function element */


/* Member Cards Styles */
.cards {
    background-color: hsl(0, 0%, 95%);
    width: 18rem;
    height: 25rem;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    text-align: center;
    align-items: center;
    border-radius: 0.5em;
    box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.34);
    -webkit-box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.34);
}

.description {
    color: hsl(0, 0%, 30%);
    font-weight: 500;
    text-align: center;
    width: 100%;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
}
/* End of Member Cards Styles */

.label {
    padding: 13px;
    font-size: 14px;
    color: #F5F6FA;
}

.inputs {
    padding: 13px !important;
    border: none;
    border-radius: 10px !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.container-placehold {
    display: flex;
    flex-direction: row;
}

/* Gallery Styles */
@media screen and (min-width: 768px) {
    #overlay img {
        width: 60%;
    }
}

@media screen and (min-width: 1200px) {
    #overlay img {
        width: 50%;
    }
}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

    #nextButton:hover {
        opacity: 0.7;
    }

@media screen and (min-width: 768px) {
    #nextButton {
        font-size: 3em;
    }
}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

    #prevButton:hover {
        opacity: 0.7;
    }

@media screen and (min-width: 768px) {
    #prevButton {
        font-size: 3em;
    }
}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
}

    #exitButton:hover {
        opacity: 0.7;
    }

@media screen and (min-width: 768px) {
    #exitButton {
        font-size: 3em;
    }
}

.show {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

    .show .overlay {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.8);
        position: absolute;
        top: 0;
        left: 0;
    }

    .show .img-show {
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        overflow: hidden
    }

.img-show span {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
    cursor: pointer;
    color: white;
}

.caption {
    width: 100%;
    margin: auto;
    display: block;
    text-align: center;
    color: white;
    padding: 10px 0;
    position: absolute;
    bottom: 10%;
    font-size: 20px;
}
/* End of Gallery Styles */

/* Button hover style */
.butn:link,
.butn:visited {
    border: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.butn::before {
    background: #fff;
    content: "";
    height: 155px;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    width: 50px;
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.butn::after {
    background: #fff;
    content: "";
    height: 20rem;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 2rem;
}

.butn__new::before {
    left: -50%;
}

.butn__new::after {
    left: -100%;
}

.butn:hover,
.butn:active {
    transform: translateY(-2px);
    color: #fff;
}

.butn__new:hover::before {
    left: 120%;
    opacity: 0.5s;
}

.butn__new:hover::after {
    left: 200%;
    opacity: 0.6;
}

.butn span {
    z-index: 20;
}
/* End of Button hover style */

/* Owl Carousel Styles */
#owl-carousel > .owl-stage-outer {
    width: 85vw;
}

.owl-stage {
    display: flex;
    align-items: center;
}

.i {
    width: 100px;
}

#banner > .owl-stage-outer > .owl-stage > .owl-item {
    display: flex;
    justify-content: center;
    width: 100%;
}
/* End of Owl Carousel Styles */


.line-clamp2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


input[type=file]::file-selector-button {
    margin-right: 10px;
    border: none;
    background: #1b2028;
    padding: 10px 20px;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

    input[type=file]::file-selector-button:hover {
        background: #111419;
    }

.aboutUsParagraph > p {
    text-align: justify;
}

/* Header Nav Styles */
.navs {
    transition: all 0.25s;
}

.nav-open {
    color: #fff;
}

    .nav-open:after {
        background: #fff;
    }


    .nav-open .nav-menu-side-nav {
        width: 100%;
    }

.nav-menu {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

    .nav-menu > * {
        pointer-events: none;
    }

.nav-menu-side-nav {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    text-aling: center;
}

    .nav-menu-side-nav ul {
        list-style: none;
        text-align: center;
    }

        .nav-menu-side-nav ul li {
            padding-bottom: 12px;
        }

            .nav-menu-side-nav ul li a {
                color: #fff;
                text-decoration: none;
                cursor: pointer;
            }
/* End of Header Nav Styles */


/* Mobile Menu Styles */
.accordion-item {
    padding: 0.5rem 0;
    overflow: hidden;
    border: none;
    outline: none;
}

    .accordion-item .title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        line-height: inherit;
        cursor: pointer;
        color: white;
    }

        .accordion-item .title .fas {
            font-size: 0.9rem;
            color: white;
            transform: rotate(0);
            transition: transform 0.15s ease;
        }

    .accordion-item .paragraph a {
        display: block;
        word-break: break-all;
        font-size: 12px;
    }

    .accordion-item.active .title .fas {
        transform: rotate(180deg);
    }

    .accordion-item.active .paragraph {
        display: block;
    }

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-200px * 15));
        transform: translateX(calc(-200px * 15));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-200px * 15));
        transform: translateX(calc(-200px * 15));
    }
}
/* End of Mobile Menu Styles */


/* Language switcher */

.lang-switcher {
    display: flex;
    margin: 0;
    padding: 0;
    direction: ltr;
}

    .lang-switcher li {
        display: inline-block;
        border-right: 1px solid #990c0c;
        width: 60px;
    }

        .lang-switcher li:last-child {
            border-right: none;
        }

        .lang-switcher li a {
            padding-block: 0.7rem;
            color: #990c0c;
            transition: all 0.5s ease;
            text-decoration: none;
            display: inline-block;
            height: 100%;
            text-align: center;
            width: 100%;
            font-size: 0.9em;
            font-weight: 700;
        }

            .lang-switcher li a:hover {
                text-decoration: none;
            }

            .lang-switcher li a.is-active {
                color: #000000;
            }

    /* modifiers */
    .lang-switcher.lang-switcher--rounded-pill {
        border: 1px solid #990c0c;
    }

        .lang-switcher.lang-switcher--rounded-pill a:hover {
            background: #990c0c;
            color: #ffffff;
        }

        .lang-switcher.lang-switcher--rounded-pill a.is-active {
            background: #990c0c;
            color: #ffffff;
        }

    .lang-switcher.lang-switcher--rounded-pill {
        border-radius: 70px;
    }

        .lang-switcher.lang-switcher--rounded-pill li:first-child a {
            border-top-left-radius: 70px;
            border-bottom-left-radius: 70px;
        }

        .lang-switcher.lang-switcher--rounded-pill li:last-child a {
            border-top-right-radius: 70px;
            border-bottom-right-radius: 70px;
        }


/* Overviews Styles */
.clear {
    clear: both;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

    a:focus,
    a:active,
    a:visited,
    a:hover {
        text-decoration: none;
        outline: none;
    }

/******* Common Element CSS End *********/

/* -------- title style ------- */
.line-title {
    position: relative;
    width: 400px;
}

    .line-title::before,
    .line-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 4px;
        border-radius: 2px;
    }

    .line-title::before {
        width: 100%;
        background: #f2f2f2;
    }

    .line-title::after {
        width: 32px;
        background: #e73700;
    }

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */

.overviews .owl-stage {
    margin: 15px 0;
    display: flex;
    display: -webkit-flex;
}

.overviews .custom-carousel .item {
    margin: 0 15px 60px;
    width: 320px;
    height: 400px;
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    background: #343434 no-repeat center center / cover;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    cursor: pointer;
}

    .overviews .custom-carousel .item.active {
        width: 500px;
        box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
        -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
    }

    .overviews .custom-carousel .item:after {
        content: "";
        display: block;
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    }

.overviews .custom-carousel .item-desc {
    padding: 0 24px 12px;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform: translateY(calc(100% - 54px));
    -webkit-transform: translateY(calc(100% - 54px));
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.overviews .custom-carousel .item.active .item-desc {
    transform: none;
    -webkit-transform: none;
}

.overviews .custom-carousel .item-desc .pp {
    opacity: 0;
    -webkit-transform: translateY(32px);
    transform: translateY(32px);
    transition: all 0.4s ease-in-out 0.2s;
    -webkit-transition: all 0.4s ease-in-out 0.2s;
}

.overviews .custom-carousel .item.active .item-desc .pp {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.overviews .owl-theme.custom-carousel .owl-dots {
    margin-top: -20px;
    position: relative;
    z-index: 5;
}
/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
    h2 {
        margin-bottom: 32px;
    }

    h3 {
        margin: 0 0 8px;
        font-size: 24px;
        line-height: 32px;
    }

    /* -------- Landing page ------- */


    .overviews .item {
        margin: 0 12px 60px;
        width: 260px;
        height: 360px;
    }

        .overviews .item.active {
            width: 400px;
        }

    .overviews .item-desc {
        transform: translateY(calc(100% - 46px));
        -webkit-transform: translateY(calc(100% - 46px));
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    h2 {
        margin-bottom: 32px;
    }

    h3 {
        margin: 0 0 8px;
        font-size: 24px;
        line-height: 32px;
    }

    .line-title {
        width: 330px;
    }

    /* -------- Landing page ------- */


    .overviews .item {
        margin: 0 12px 60px;
        width: 240px;
        height: 330px;
    }

        .overviews .item.active {
            width: 360px;
        }

    .overviews .item-desc {
        transform: translateY(calc(100% - 42px));
        -webkit-transform: translateY(calc(100% - 42px));
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    h2 {
        margin-bottom: 20px;
    }

    h3 {
        margin: 0 0 8px;
        font-size: 19px;
        line-height: 24px;
    }

    .line-title {
        width: 250px;
    }

    /* -------- Landing page ------- */
    .overviews .item {
        margin: 0 10px 40px;
        width: 200px;
        height: 280px;
    }

        .overviews .item.active {
            width: 270px;
            box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
            -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
        }

    .overviews .item-desc {
        padding: 0 14px 5px;
        transform: translateY(calc(100% - 42px));
        -webkit-transform: translateY(calc(100% - 42px));
    }
}
/* End of Overviews Styles */

/* Pagination Styles */
.btn {
    width: 80%;
    padding: 20px;
    background-color: #272E38 !important;
    color: #e7e9f1;
    font-size: large;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-top: 20px;
}

.pagination {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    margin-top: 30px;
}

    .pagination,
    .pagination * {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        .pagination a {
            display: inline-block;
            padding: 5px 13px;
            cursor: pointer;
            font-size: 18px;
        }

            .pagination a.disabled {
                opacity: 0.3;
                pointer-events: none;
                cursor: not-allowed;
            }

            .pagination a.current {
                background: white;
                color: black;
                border-radius: 10px;
            }
/* End of Pagination Styles */
