﻿@charset "UTF-8";
/*
@include device(xl, (min: xs, max: xxl), max) {
  display: block;
}
param1:
  $responsiveSize map'inde yer alan bir key girilir. Varsayılan olarak bu değer ve üstünde çalışmaktadır.
param2:
  1: true girilirse $type'a göre hareket etmektedir:
      Eğer type: min ise;
        minimum param1 ve maximum değeri de kendisinden bir sonraki $responsizeSize değişkenidir.
        ÖRNEK:
          @include device(sm, true) : sm -> md arasını seçer
          @include device(sm, true, max) : xs -> sm arasını seçer
  2: map olarak girilirse
      Bu sefer $type değişkeninden bağımsız hareket eder.
        ÖRNEK:
          @include device(sm, (min: xs, max: lg)) : xs -> lg arasını seçer
  3: list olarak girilirse
      Bu sefer de $type değişkeninden bağımsız hareket eder.
        ÖRNEK:
          @include device(sm, (xs, lg)) : xs -> lg arasını seçer
 */
/*@import url(fontawesome.min.css);*/

button:focus,
[type="button"]:focus,
[type="reset"]:focus,
[type="submit"]:focus {
    outline: 0;
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
}

input {
    border: none;
    outline: 0;
}

a, a:hover {
    text-decoration: none;
    color: black;
}

.clearfix {
    clear: both;
}

body {
    background: url("../imgs/bg.jpg") no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
}


.navbar {
    font-family: Montserrat;
}

    .navbar .bi-top-menu {
        font-family: Montserrat;
    }

.shadow {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(15, 88, 105, 0.15);
    -moz-box-shadow: 0px 0px 30px 0px rgba(15, 88, 105, 0.15);
    box-shadow: 0px 0px 30px 0px rgba(15, 88, 105, 0.15);
}

.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9998;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
}

.container {
    width: 1500px !important;
    max-width: 1500px !important;
}

@media only screen and (max-width: 1500px) {
    .container {
        width: calc(100% - 50px) !important;
        max-width: calc(100% - 50px) !important;
        margin-left: 25px;
        margin-right: 25px;
    }
}

@media only screen and (max-width: 576px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

.navbar .bi-logo {
    width: 161px;
    height: 60px;
}

@media only screen and (max-width: 576px) {
    .navbar .bi-logo {
        display: flex;
        align-items: center;
        width: 135px;
    }

        .navbar .bi-logo img {
            width: 100%;
        }
}

.swal-button:focus {
    box-shadow: none !important;
    background-color: #0090cc !important;
}

.swal-title,
.swal-text {
    display: block;
    color: #000000;
    text-align: left;
    padding: 0 40px;
}

.swal-button-container {
    position: absolute;
    top: 10px;
    right: 0;
}

    .swal-button-container .swal-button {
        font-size: 0;
        background-color: transparent !important;
    }

        .swal-button-container .swal-button:hover,
        .swal-button-container .swal-button:focus {
            background-color: transparent !important;
        }

        .swal-button-container .swal-button::before,
        .swal-button-container .swal-button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            width: 50%;
            height: 1px;
            background-color: #000000;
        }

        .swal-button-container .swal-button::after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

.navbar .bi-top-menu {
    display: flex;
    align-items: center;
}

    .navbar .bi-top-menu .bi-top-menu-el {
        font-family: Montserrat;
        font-size: 14px;
        line-height: revert !important;
        /*line-height: 90px; 100px;*/
        font-weight: 500;
        margin: 0;
        padding: 0 5px;
        color: #313a41;
        user-select: none;
        cursor: pointer;
        max-width: 100px;
        text-align: center !important;
    }


    .navbar .bi-top-menu .bi-top-menu-el a {
        /*padding: 0px 12px;*/
    }

    .bi-top-menu-el > .main {
        display: flex;
        align-items: center;
    }

    .navbar .bi-top-menu .bi-top-menu-el.active .main {
        /*font-weight: 600;*/
        text-shadow: 0px 0px 0.5px;
        transform: scale(1.05);
        color: #009fc3;
    }

    .navbar .bi-top-menu .bi-top-menu-el .main:hover {
        /*font-weight: 600;*/
        text-shadow: 0px 0px 0.5px;
        transform: scale(1.05);
        color: #009fc3;
    }

    .navbar .bi-top-menu .bi-top-menu-el .sub-menu {
        display: none;
        position: absolute;
        top: 90px; /*100px;*/
        left: 0;
        width: 100%;
        height: 64px;
        background-color: #009fc3;
    }

    .navbar .bi-top-menu .bi-top-menu-el .sub-menu .container {
        display: flex;
        justify-content: center;
    }

    .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li {
        position: relative;
        display: block;
        font-family: Montserrat;
        font-size: 14px;
        line-height: 64px;
        font-weight: 500;
        color: rgba(255,255,255,.8);
        padding: 0 8px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li a {
        color: rgba(255,255,255,.8);
        padding-top: 5px;
        padding-bottom: 5px;
    }

        .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li:hover {
            color: rgba(255,255,255,1);
            text-shadow: 0px 0px 0.3px;
            transform: scale(1.05);
        }

        .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2 {
            display: none;
                    position: absolute;
                    top: 64px;
                    left: 0;
                    width: 300px;
                    color: #313a41;
                    padding: 10px 0;
                    background-color: #fff;
                    -webkit-border-radius: 10px;
                    -webkit-border-top-right-radius: 010px;
                    -moz-border-radius: 10px;
                    -moz-border-radius-topright: 010px;
                    border-radius: 10px;
                    border-top-right-radius: 010px;
                }

                    .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2:before {
                        position: absolute;
                        top: -5px;
                        left: calc(50% - 20px);
                        content: '';
                        width: 0;
                        height: 0;
                        border-left: 20px solid transparent;
                        border-right: 20px solid transparent;
                        border-bottom: 8px solid #fff;
                    }

                    .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2 .sub-menu2-li {
                        all: unset;
                        display: block;
                        font-family: Montserrat;
                        font-size: 13px;
                        margin: 0 20px;
                        line-height: 15px;
                        color: #313a41;
                        font-weight: 500;
                        padding: 10px;
                        border-bottom: 1px dashed #c3d0d8;
                        text-overflow: ellipsis;
                        overflow: hidden;
                        white-space: nowrap;
                    }

                        .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2 .sub-menu2-li:last-child {
                            border-bottom: 0;
                        }

                        .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2 .sub-menu2-li:hover {
                            color: #009fc3;
                        }

@media only screen and (max-width: 1600px) {
    .navbar .bi-top-menu .bi-top-menu-el .sub-menu {
        height: auto;
    }

        .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li {
            display: flex;
            align-items: center;
            line-height: normal;
            padding: 15px;
            text-overflow: unset;
            white-space: normal;
        }

            .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li a {
                display: block;
            }

            .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2 {
                top: 100%;
            }

                .navbar .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2:before {
                    left: 50px;
                }
}

.navbar .bi-top-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    user-select: none;
}

    .navbar .bi-top-right .search {
        line-height: 46px;
        cursor: pointer;
    }

    .navbar .bi-top-right label {
        margin: 0;
    }

        .navbar .bi-top-right label .bi-icon-search {
            font-size: 20px;
            padding: 0 20px;
            cursor: pointer;
        }

    .navbar .bi-top-right .search-area {
        display: none;
        position: absolute;
        right: -20px;
        top: 70px; /*73px;*/
        width: 600px;
        padding: 10px;
        background-color: white;
        -webkit-box-shadow: 0px 0px 60px 0px rgba(15, 88, 105, 0.15);
        -moz-box-shadow: 0px 0px 60px 0px rgba(15, 88, 105, 0.15);
        box-shadow: 0px 0px 60px 0px rgba(15, 88, 105, 0.15);
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-bottomleft: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }

        .navbar .bi-top-right .search-area input {
            width: calc(100% - 80px);
            outline: 0;
            padding: 0 15px;
            font-family: Montserrat;
            font-size: 16px;
            line-height: 36px;
            border: 2px solid #d6d8d9;
            -webkit-border-radius: 10px;
            -webkit-border-top-right-radius: 010px;
            -moz-border-radius: 10px;
            -moz-border-radius-topright: 010px;
            border-radius: 10px;
            border-top-right-radius: 010px;
        }

        .navbar .bi-top-right .search-area button {
            all: unset;
            outline: 0;
            border: 0;
            width: 60px;
            margin-left: 10px;
            font-family: Montserrat;
            font-size: 16px;
            font-weight: 600;
            line-height: 36px;
            text-align: center;
        }

    .navbar .bi-top-right .lang {
        cursor: pointer;
        font-family: Montserrat;
        font-size: 16px;
        line-height: 50px;
        padding-left: 20px;
        border-left: 2px solid #d6d8d9;
        font-weight: 500;
    }

    .navbar .bi-top-right .lang-menu {
        display: none;
        position: absolute;
        right: -20px;
        top: 70px; /*73px;*/
        width: 200px;
        padding: 10px 0;
        background-color: white;
        -webkit-box-shadow: 0px 0px 60px 0px rgba(15, 88, 105, 0.15);
        -moz-box-shadow: 0px 0px 60px 0px rgba(15, 88, 105, 0.15);
        box-shadow: 0px 0px 60px 0px rgba(15, 88, 105, 0.15);
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-bottomleft: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        font-family: Montserrat;
        font-size: 16px;
        line-height: 28px;
    }

        .navbar .bi-top-right .lang-menu a {
            display: block;
            width: 100%;
            border-bottom: 1px solid #d6d8d9;
            transition: all 300ms;
            padding: 0 20px;
        }

            .navbar .bi-top-right .lang-menu a:hover {
                background-color: #d6d8d9;
            }

            .navbar .bi-top-right .lang-menu a:last-child {
                border-bottom: 0;
            }

.bg-exclude-header {
    display: none;
    position: fixed;
    z-index: 9997;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10,36,52,.5);
}

.bg-mobile-menu {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10,36,52,.85);
}

@media only screen and (min-width: 1200px) {
    .bg-mobile-menu {
        display: none !important;
    }
}

.bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu-main .icon {
    display: none;
}

.bi-top-menu-mobile {
    display: none;
    position: absolute;
    top: 32px;
    right: 45px;
    z-index: 9999;
}

    .bi-top-menu-mobile .mobile-menu-btn {
        display: block;
        left: 50%;
        margin: 1em;
        position: absolute;
        top: 50%;
        width: 36px;
        transform: translate(-50%, -50%);
        cursor: pointer;
        user-select: none;
    }

        .bi-top-menu-mobile .mobile-menu-btn:before,
        .bi-top-menu-mobile .mobile-menu-btn:after {
            background-color: #fff;
            content: '';
            display: block;
            height: 4px;
            transition: all 200ms ease-in-out;
        }

        .bi-top-menu-mobile .mobile-menu-btn:before {
            box-shadow: 0 10px 0 #fff;
            margin-bottom: 16px;
        }

        .bi-top-menu-mobile .mobile-menu-btn.active:before {
            box-shadow: 0 0 0 #fff;
            transform: translateY(10px) rotate(45deg);
        }

        .bi-top-menu-mobile .mobile-menu-btn.active:after {
            transform: translateY(-10px) rotate(-45deg);
        }

        .bi-top-menu-mobile .mobile-menu-btn:not(.active):after {
            background-color: #069abe !important;
        }

        .bi-top-menu-mobile .mobile-menu-btn:not(.active):before {
            background-color: #069abe !important;
            box-shadow: 0 10px 0 #069abe !important;
        }

@media only screen and (max-width: 800px) {
    .navbar .bi-top-right .search-area {
        width: 300px;
    }
}

@media only screen and (max-width: 576px) {
    .navbar .bi-top-right {
        position: static;
    }

        .navbar .bi-top-right .search-area {
            width: 100%;
            top: 100%;
            right: auto;
            left: 0;
            border-radius: 0;
        }

        .navbar .bi-top-right .lang-menu {
            right: 40px;
            top: 100%;
            padding: 0;
            width: auto;
            font-size: 15px;
            font-weight: 500;
            overflow: hidden;
        }

            .navbar .bi-top-right .lang-menu a {
                font-size: 15px;
                font-weight: 500;
                padding: 10px 20px;
            }
}

.bi-top-menu .bi-top-menu-el .main .bi-icon-arrow-bottom {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .bi-top-menu {
        all: unset;
        position: absolute;
        left: -100%;
        top: 0;
        width: calc(100% - 64px);
        background-color: white;
        height: 100vh;
        z-index: 10000;
        overflow-y: scroll;
        transition: all 300ms;
    }

        .bi-top-menu .mobile-menu-logo {
            margin: 20px;
        }

        .bi-top-menu .bi-top-menu-el,
        .bi-top-menu .bi-top-menu-el .sub-menu,
        .bi-top-menu .bi-top-menu-el .sub-menu .container,
        .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li,
        .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li a {
            all: unset;
            margin: 0 !important;
            padding: 0 !important;
            display: block;
            line-height: unset;
        }

            .bi-top-menu .bi-top-menu-el .sub-menu {
                display: none;
            }

                .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2:before {
                    display: none;
                }

                .bi-top-menu .bi-top-menu-el .sub-menu .container {
                    flex-direction: column;
                }

        .bi-top-menu .bi-top-menu-el {
            margin: 0 20px !important;
        }

            .bi-top-menu .bi-top-menu-el:first-child {
                margin-top: 20px !important;
            }

            .bi-top-menu .bi-top-menu-el:last-child {
                margin-bottom: 65px !important;
            }

            .bi-top-menu .bi-top-menu-el .main {
                display: flex;
                justify-content: space-between;
                align-items: center;
                color: #000000;
                font-family: Montserrat, sans-serif;
                font-weight: 600;
                font-size: 16px;
                line-height: 44px;
                text-shadow: 0px 0px 0.5px;
                border-bottom: 1.5px dashed rgba(153, 153, 153, 0.15) !important;
            }

                .bi-top-menu .bi-top-menu-el .main .bi-icon-arrow-bottom {
                    display: inline-block;
                }

                    .bi-top-menu .bi-top-menu-el .main .bi-icon-arrow-bottom.active {
                        transform: rotate(180deg);
                    }

            .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu-main,
            .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li a {
                position: relative;
                width: 100%;
                color: #000;
                font-size: 14px;
                font-weight: 500;
                font-family: Montserrat, sans-serif;
                padding-right: 25px !important;
                /*padding-top: 5px;
                padding-bottom: 5px;*/
                margin: 15px 0 !important;
            }

                .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu-main .icon {
                    position: absolute;
                    top: 50%;
                    right: 0;
                    transform: translateY(-50%);
                    display: block;
                    float: right;
                    transition: all 300ms;
                }

                    .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu-main .icon.reverse {
                        transform: rotate(180deg);
                    }

            .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2.active {
                transition: all 1ms;
            }

            .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2 {
                all: unset;
                display: none;
                margin: 0 !important;
                padding: 0 !important;
                line-height: unset;
            }

                .bi-top-menu .bi-top-menu-el .sub-menu .sub-menu-li .sub-menu2 .sub-menu2-li {
                    all: unset;
                    line-height: unset;
                    display: block;
                    width: calc(100% - 40px);
                    font-family: Montserrat, sans-serif;
                    font-weight: 400;
                    font-size: 13.5px !important;
                    padding: 5px 0 !important;
                    margin: 0 20px !important;
                    color: #313a41;
                }


    .bi-top-menu-mobile {
        display: block;
    }

    .bi-top-right {
        margin-right: 15px;
    }

    .top-bar::after {
        display: none;
    }

    .info-boxes {
        margin-top: 30px !important;
    }
}

.navbar {
    z-index: 9998;
    height: 90px; /*100px;*/
    padding: 0rem 1rem;
}

    .navbar .top-menu-fluid-overlay,
    .navbar .mobile-menu-logo {
        display: none;
    }

@media only screen and (max-width: 992px) {
    .navbar .top-menu-fluid .mobile-menu-btn-area {
        display: block;
    }

    .navbar .top-menu-fluid .row {
        -webkit-transition: all 500ms;
        -moz-transition: all 500ms;
        -o-transition: all 500ms;
        transition: all 500ms;
        display: block;
        position: absolute;
        top: 0px;
        left: -100%;
        z-index: 9999;
        width: 90%;
        height: 100vh;
        -webkit-box-shadow: 0px 0px 30px 0px rgba(15, 88, 105, 0.15);
        -moz-box-shadow: 0px 0px 30px 0px rgba(15, 88, 105, 0.15);
        box-shadow: 0px 0px 30px 0px rgba(15, 88, 105, 0.15);
        background-color: white;
        padding: 25px;
    }

        .navbar .top-menu-fluid .row .mobile-menu-logo {
            display: block;
            margin: 15px;
        }

    .navbar .top-menu,
    .navbar .top-menu a,
    .navbar .top-menu-imp,
    .navbar .top-menu-imp a {
        display: block !important;
    }

        .navbar .top-menu a, .navbar .top-menu-imp a {
            font-family: Montserrat, sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: 36px;
        }

        .navbar .top-menu-imp a {
            margin-top: 15px;
        }
}

.navbar .top-menu a {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 44px;
    margin-left: 20px;
    margin-right: 20px;
    display: inline-block;
    color: #313a41;
}

.navbar .top-menu-imp {
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1500px) {
    .navbar .top-menu-imp .top-menu-imp-extraMenu {
        width: 36px;
        height: 36px;
    }

        .navbar .top-menu-imp .top-menu-imp-extraMenu .top-menu-imp-extraMenuContent {
            width: 90px; /*100px;*/
            height: 36px;
            width: 200px;
            height: auto;
            border: 1px solid #313a41;
            position: absolute;
            top: 40px;
            right: 0px;
        }

            .navbar .top-menu-imp .top-menu-imp-extraMenu .top-menu-imp-extraMenuContent[data-status='false'] {
                display: none;
            }

            .navbar .top-menu-imp .top-menu-imp-extraMenu .top-menu-imp-extraMenuContent a {
                width: 100%;
                height: 36px;
                display: block;
                -webkit-border-radius: 0px;
                -moz-border-radius: 0px;
                border-radius: 0px;
                margin-left: 0 !important;
            }

            .navbar .top-menu-imp .top-menu-imp-extraMenu .top-menu-imp-extraMenuContent:before {
                content: '';
                position: absolute;
                top: -12px;
                right: 6px;
                display: block;
                width: 0;
                height: 0;
                border-top: 0px solid transparent;
                border-right: 12px solid transparent;
                border-bottom: 12px solid #313a41;
                border-left: 12px solid transparent;
            }

        .navbar .top-menu-imp .top-menu-imp-extraMenu:before {
            position: absolute;
            top: 10px;
            right: 0px;
            font-family: 'borsaistanbul' !important;
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "";
            font-size: 36px;
            line-height: 24px;
            color: #313a41;
        }
}

.navbar .top-menu-imp a {
    margin-left: 4px;
    margin-right: 4px;
    width: 200px;
    text-align: center;
    display: inline-block;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 44px;
    padding-left: 25px;
    padding-right: 25px;
    color: #fff;
    background: #64717a;
    background: -moz-linear-gradient(90deg, #64717a 0%, #41484d 100%);
    background: -webkit-linear-gradient(90deg, #64717a 0%, #41484d 100%);
    background: linear-gradient(90deg, #64717a 0%, #41484d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#64717a", endColorstr="#41484d", GradientType=1);
}

@media only screen and (max-width: 992px) {
    .navbar .top-menu-imp a {
        width: 100%;
    }
}

.navbar .top-right {
    line-height: 36px;
}

    .navbar .top-right .search-area {
        position: relative;
        color: #313a41;
        cursor: pointer;
        font-size: 20px;
    }

    .navbar .top-right .lang-area {
        border-left: 2px solid #d6d8d9;
        font-family: Montserrat, sans-serif;
        font-weight: 500;
        font-size: 16px;
    }

@media only screen and (max-width: 992px) {
    .navbar .top-right .lang-area {
        margin-right: 25px;
    }
}
/* search box  */
.searchBox {
    position: absolute;
    width: 700px;
    height: 90px; /*100px;*/
    background: none;
    top: -32px;
    right: 0px;
    overflow: hidden;
    transition: 1s all;
    z-index: -1;
}

    .searchBox label.search {
        float: left;
        width: 685px;
        height: 60px;
        background: #f8f8f8;
        margin-top: 18px;
        margin-left: 685px;
        transition: 0.5s all;
        padding: 10px;
        border-radius: 25px;
    }

        .searchBox label.search.active {
            margin-left: 0px;
        }

    .searchBox.active {
        z-index: 999;
    }

    .searchBox label.search input {
        float: left;
        width: calc(100% - 40px);
        height: 39px;
        background: none;
        outline: none;
        border: none;
        color: #313a41;
        font-size: 14px;
        font-weight: 600;
        border-bottom: 1px solid #999999;
        padding-left: 5px;
        transition: 0.5s all;
    }

    .searchBox button {
        float: right;
        width: 25px;
        height: 45px;
        margin-left: 15px;
        border: none;
        outline: none;
        background: none;
        color: #313a41;
        font-size: 20px;
        font-weight: 600;
        border-radius: 25px;
        transition: 0.5s all;
    }

        .searchBox button:hover {
            opacity: 1;
        }

    .searchBox label.search input:focus {
        border-color: #00608f;
    }

.slider {
    position: relative;
    top: 0;
    left: 0;
}

    .slider.vertical {
        overflow: hidden;
    }

@media only screen and (max-width: 576px) {
    .slider.vertical {
        height: 400px;
        position: relative;
    }
}

@media only screen and (min-width: 1350px) {
    .slider.vertical .carousel-item-next.carousel-item-left,
    .slider.vertical .carousel-item-prev.carousel-item-right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .slider.vertical .carousel-item-next,
    .slider.vertical .active.carousel-item-right {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    .slider.vertical .carousel-item-prev,
    .slider.vertical .active.carousel-item-left {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}


/*.slider.vertical .carousel-inner .carousel-item-image {
    width: 100%;
    height: 550px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/

.slider.vertical .carousel-inner .carousel-item img {
    width: 100%;
}

.slider.vertical .carousel-inner {
    width: 100%;
    height: auto;
}

/*@media only screen and (max-width: 576px) {
    .slider.vertical .carousel-inner {
        height: auto;
    }

        .slider.vertical .carousel-inner .carousel-item-image {
            height: auto;
        }
}*/

.slider.vertical .slider-controls-container {
    position: relative;
}

@media only screen and (max-width: 576px) {
    .slider.vertical .slider-controls-container {
        position: absolute;
        bottom: -30px;
        z-index: 9996;
    }
}

.slider.vertical .slider-controls-container .slider-controls {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9996;
    height: 500px;
}

@media only screen and (max-width: 576px) {
    .slider.vertical .slider-controls-container .slider-controls {
        position: relative;
        z-index: 9996;
        height: 100%;
        width: 36px;
    }

        .slider.vertical .slider-controls-container .slider-controls .col-12 {
            padding: 0;
        }
}

.slider.vertical .slider-controls-container .slider-prev-icon,
.slider.vertical .slider-controls-container .slider-next-icon {
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    display: block;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    line-height: 36px;
    color: white;
    background-color: rgba(255, 255, 255, 0.25);
}

.slider.vertical .carousel-indicators {
    position: relative;
    display: block;
    right: auto;
    left: auto;
    bottom: auto;
    z-index: auto;
    justify-content: unset;
    width: 36px;
    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 576px) {
    .slider.vertical .slider-controls-container .slider-controls {
        margin: 15px 0 !important;
    }

        .slider.vertical .slider-controls-container .slider-controls > div ol li {
            margin: 0px 5px 5px !important;
        }
}

.slider.vertical .carousel-indicators li {
    width: 10px;
    height: 10px;
    margin: 30px auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: white;
    border: 0;
    display: block;
}

@media only screen and (max-width: 576px) {
    .slider.vertical .carousel-indicators li {
        margin: 13px 28px;
    }
}

.slider.vertical .carousel-caption {
    position: absolute;
    top: 75px;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
}

    .slider.vertical .carousel-caption[data-position='bottomleft'], .slider.vertical .carousel-caption[data-position='bottomright'] {
        top: auto;
        bottom: 100px;
    }

        .slider.vertical .carousel-caption[data-position='topright'] .carousel-caption-middleware,
        .slider.vertical .carousel-caption[data-position='bottomright'] .carousel-caption-middleware {
            text-align: right;
        }

            .slider.vertical .carousel-caption[data-position='topright'] .carousel-caption-middleware .container,
            .slider.vertical .carousel-caption[data-position='bottomright'] .carousel-caption-middleware .container {
                padding-right: 60px;
            }

@media only screen and (max-width: 576px) {
    .slider.vertical .carousel-caption {
        top: 25px;
    }

        .slider.vertical .carousel-caption[data-position='bottomleft'], .slider.vertical .carousel-caption[data-position='bottomright'] {
            top: auto;
            bottom: 60px;
        }

            .slider.vertical .carousel-caption[data-position='topright'] .carousel-caption-middleware .container,
            .slider.vertical .carousel-caption[data-position='bottomright'] .carousel-caption-middleware .container {
                padding-right: 15px;
            }
}

.slider.vertical .carousel-caption-middleware {
    width: 1500px;
    margin: 0 auto;
    text-align: left;
}

@media only screen and (max-width: 1500px) {
    .slider.vertical .carousel-caption-middleware {
        width: 100%;
    }
}

.slider.vertical .carousel-caption-middleware h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 42px;
}

@media only screen and (max-width: 576px) {
    .slider.vertical .carousel-caption-middleware h2 {
        font-family: Montserrat, sans-serif;
        font-weight: 600;
        font-size: 18px;
        line-height: 20px;
    }
}

.slider.vertical .carousel-caption-middleware p {
    opacity: 0.7;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

@media only screen and (max-width: 576px) {
    .slider.vertical .carousel-caption-middleware p {
        font-family: Montserrat, sans-serif;
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 0 !important;
    }
}

.slider.vertical a.slider-button {
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    display: inline-block;
    height: 50px;
    padding-left: 60px;
    padding-right: 60px;
    background: linear-gradient(90deg, #0097bd 0%, #00608f 100%);
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.7);
    user-select: none;
}

@media only screen and (max-width: 576px) {
    .slider.vertical a.slider-button {
        all: inherit;
        font-family: Montserrat, sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 32px;
        height: 32px;
        padding: 0;
    }

        .slider.vertical a.slider-button:before {
            display: none;
        }

        .slider.vertical a.slider-button:hover {
            padding-left: 0 !important;
        }
}

.slider.vertical a.slider-button:before {
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    position: absolute;
    left: -48px;
    top: 0;
    font-family: 'borsaistanbul' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
}

@media only screen and (min-width: 1350px) {
    .slider.vertical a.slider-button:hover {
        padding-left: 80px;
    }

        .slider.vertical a.slider-button:hover:before {
            left: 35px;
        }
}

.top-bar {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    width: 100%;
    height: 140px;
    margin-top: -70px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 60px 0px rgba(15, 88, 105, 0.15);
    -moz-box-shadow: 0px 0px 60px 0px rgba(15, 88, 105, 0.15);
    box-shadow: 0px 0px 60px 0px rgba(15, 88, 105, 0.15);
}

    .top-bar::after {
        content: '';
        position: absolute;
        left: -12.5px;
        bottom: -12.5px;
        width: calc(100% + 25px);
        height: 85px;
        border-radius: 0 0 10px 10px;
        background-color: #028ecd;
        z-index: -1;
    }

@media only screen and (max-width: 1200px) {
    .top-bar {
        height: auto;
        margin-top: 20px;
    }
}

.top-bar-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-dropdown {
    flex: 1;
}

@media only screen and (max-width: 768px) {
    .top-bar-dropdown {
        width: 100%;
        margin: 15px 0;
    }

    .info-boxes .info-box .chartArea {
        overflow: auto;
    }
}

.top-bar-dataset {
    flex: 5;
    display: flex;
    align-items: center;
    justify-items: center;
}

    .top-bar-dataset .top-bar-box-area {
        flex: 1;
        border-right: 1px solid #dadddf;
    }

        .top-bar-dataset .top-bar-box-area:last-child {
            border: 0;
        }

.top-bar .row {
    height: 140px;
}

@media only screen and (max-width: 992px) {
    .top-bar-container, .top-bar-dataset {
        flex-direction: column;
    }

    .top-bar-dataset {
        width: 100% !important;
    }

    .top-bar .top-bar-box {
        width: 100% !important;
        padding: 5px 15px;
        display: flex;
    }

        .top-bar .top-bar-box div:nth-child(1) {
            width: calc(100% - 140px);
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

        .top-bar .top-bar-box div:nth-child(2) {
            width: 40px;
            text-align: right;
        }

        .top-bar .top-bar-box div:nth-child(3) {
            width: 100px;
            text-align: right;
        }

    .top-bar-dataset .top-bar-box-area {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #dadddf;
    }
}

@media only screen and (max-width: 1200px) {
    .top-bar .row {
        height: auto;
        padding: 10px 0;
    }

    .top-bar .top-bar-box {
        margin-bottom: 10px;
    }
}

.top-bar .top-bar-box {
    width: 80%;
    margin: 0 auto;
    color: #48555d;
}

    .top-bar .top-bar-box .title {
        font-size: 15px;
        font-weight: 700;
    }

    .top-bar .top-bar-box .number {
        font-size: 16px;
    }


    .top-bar .top-bar-box .positive, .top-bar .top-bar-box .negative {
        font-size: 16px;
        line-height: 24px;
    }

.top-bar button {
    width: 100%;
    padding: 10px 25px 10px 15px;
    border: 1px solid #0090cc;
    color: #0090cc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: left;
    white-space: pre-wrap;
}


    .top-bar button::after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
    }

.top-bar .top-bar-box .rate:after {
    line-height: 30px;
    margin-left: 10px;
}

.top-bar .top-bar-box .positive {
    color: #00ba39;
}

    .top-bar .top-bar-box .positive:after {
        font-family: 'borsaistanbul' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
        margin-left: 8px;
    }

.top-bar .top-bar-box .negative {
    color: #e74c3c;
}

    .top-bar .top-bar-box .negative:after {
        font-family: 'borsaistanbul' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
        margin-left: 8px;
    }

.info-boxes {
    margin-top: 50px;
    margin-bottom: 50px;
}

.info-boxes-image {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin-left: -15px;
    margin-right: 15px;
}

    .info-boxes-image img {
        width: 100%;
        height: 415px;
        object-fit: cover;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

.index-tab-container {
    font-family: Montserrat, sans-serif;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(15, 88, 105, 0.06);
    -moz-box-shadow: 0px 0px 40px 0px rgba(15, 88, 105, 0.06);
    box-shadow: 0px 0px 40px 0px rgba(15, 88, 105, 0.06);
    padding: 25px 25px 16px 25px;
    margin-left: -15px;
    margin-right: -15px;
}

    .index-tab-container ul li {
        font-size: 15px;
        font-weight: 500;
    }

    .index-tab-container .nav-link {
        padding: 0;
        margin-right: 20px;
    }

    .index-tab-container .table-responsive,
    .index-tab-container .table {
        margin-bottom: 0;
    }

        .index-tab-container .table thead th {
            color: #69747c;
            font-size: 14px;
            font-weight: 600;
            background-color: white;
            padding: 5px 20px !important;
        }

            .index-tab-container .table thead th:first-child,
            .index-tab-container .table tbody tr td:first-child {
                padding-left: 0 !important;
            }

            .index-tab-container .table thead th:nth-child(1n+2),
            .index-tab-container .table tbody tr td:nth-child(1n+2) {
                text-align: right;
            }

        .index-tab-container .table tbody tr td.positive {
            color: #00ba39;
            font-weight: 500;
        }

        .index-tab-container .table tbody tr td.negative {
            color: #e74c3c;
            font-weight: 500;
        }

        .index-tab-container .table tbody tr td {
            font-weight: 500;
            background-color: white;
            padding: 7px 10px 5px 10px !important;
        }

    .index-tab-container .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #1691ca;
        background-color: transparent;
    }

@media only screen and (max-width: 992px) {
    .info-boxes .col:not(:last-child) {
        margin-bottom: 30px;
    }

    .info-boxes {
        padding: 15px 0;
    }

        .info-boxes .info-box {
            padding: 0 15px;
        }

    .info-boxes-image {
        margin: 0 -15px;
    }

        .info-boxes-image img {
            height: auto;
            object-fit: unset;
        }
}

.info-boxes .info-box {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 11px;
    padding-bottom: 11px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(15, 88, 105, 0.06);
    -moz-box-shadow: 0px 0px 40px 0px rgba(15, 88, 105, 0.06);
    box-shadow: 0px 0px 40px 0px rgba(15, 88, 105, 0.06);
}

    .info-boxes .info-box .titleArea {
        margin-top: 20px;
    }

    .info-boxes .info-box .titleArea {
        *zoom: 1;
    }

        .info-boxes .info-box .titleArea:before, .info-boxes .info-box .titleArea:after {
            content: '';
            display: table;
        }

        .info-boxes .info-box .titleArea:after {
            clear: both;
        }

        .info-boxes .info-box .titleArea .title {
            color: #0090cc;
            font-family: Montserrat, sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
        }

        .info-boxes .info-box .titleArea .dropdown button {
            -webkit-border-radius: 24px;
            -moz-border-radius: 24px;
            border-radius: 24px;
            background-color: #edeff1;
            color: #48555d;
        }

        .info-boxes .info-box .titleArea .dropdown .dropdown-menu li a {
            width: 100%;
            display: block;
            padding: 0 10px;
            font-family: Montserrat, sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 28px;
            color: #48555d;
            margin: 0;
            text-decoration: none;
        }

            .info-boxes .info-box .titleArea .dropdown .dropdown-menu li a:hover {
                background-color: #edeff1;
                margin: 0;
                text-decoration: none;
            }

@media only screen and (max-width: 768px ) {
    .dropdown .dropdown-menu {
        left: -10px !important;
        transform: translate3d(-15px, 31px, 0px) scale(0.9) !important;
    }
}

@media only screen and (max-width: 576px) {
    .info-boxes {
        padding: 15px 0;
    }

        .info-boxes .info-box {
            padding: 20px;
        }

            .info-boxes .info-box .titleArea {
                margin: 15px 0;
            }
}


.dropdown-menu {
    min-width: 8rem;
}

    .dropdown-menu li {
        padding: 5px 10px;
        border-bottom: 1px solid #edeff1;
    }

        .dropdown-menu li:last-child {
            border-bottom: none;
        }

.top-bar-dropdown .dropdown-menu {
    width: 100%;
    font-size: 0.875rem
}

    .top-bar-dropdown .dropdown-menu li {
        padding: 0;
    }

        .top-bar-dropdown .dropdown-menu li a {
            display: block;
            width: 100%;
            padding: 8px 10px;
        }

.info-boxes .info-box .topInfoArea .topText {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: #93a0a9;
}

.info-boxes .info-box .topInfoArea .number1 {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #48555d;
    margin-right: 5px;
}

.info-boxes .info-box .topInfoArea .number2 {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
}

    .info-boxes .info-box .topInfoArea .number2[data-status="positive"] {
        color: #00ba39;
    }

        .info-boxes .info-box .topInfoArea .number2[data-status="positive"]:before {
            content: "+";
        }

    .info-boxes .info-box .topInfoArea .number2[data-status="negative"] {
        color: #e74c3c;
    }

        .info-boxes .info-box .topInfoArea .number2[data-status="negative"]:before {
            content: "-";
        }

.info-boxes .info-box .topTable {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #c9d1d6;
}

@media only screen and (max-width: 576px) {
    .info-boxes .info-box .topTable {
        margin-left: -30px;
        margin-right: -30px;
    }
}

.info-boxes .info-box .topTable .topTableCol {
    padding: 0px;
    margin: 0px;
    border-right: 1px solid #c9d1d6;
}

    .info-boxes .info-box .topTable .topTableCol:last-child {
        border-right: 0px solid #c9d1d6;
    }

.info-boxes .info-box .topTable .topTableRow {
    border-bottom: 1px solid #c9d1d6;
}

    .info-boxes .info-box .topTable .topTableRow:last-child {
        border-bottom: 0px solid #c9d1d6;
    }

.info-boxes .info-box .topTable .topTableRowTitle {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    color: #8d9aa1;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 95%;
}

.info-boxes .info-box .topTable .topTableRowContent {
    margin-bottom: 10px;
    color: #48555d;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}

    .info-boxes .info-box .topTable .topTableRowContent:before {
        line-height: 24px;
        margin-right: 5px;
    }

    .info-boxes .info-box .topTable .topTableRowContent[data-status="positive"] {
        color: #00ba39;
    }

        .info-boxes .info-box .topTable .topTableRowContent[data-status="positive"]:before {
            font-family: 'borsaistanbul' !important;
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "";
        }

    .info-boxes .info-box .topTable .topTableRowContent[data-status="negative"] {
        color: #e74c3c;
    }

        .info-boxes .info-box .topTable .topTableRowContent[data-status="negative"]:before {
            font-family: 'borsaistanbul' !important;
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "";
        }

@media only screen and (max-width: 576px) {
    .info-boxes .info-box .chartArea {
        overflow-x: scroll;
        padding: 0;
    }

        .info-boxes .info-box .chartArea #pay {
            overflow: auto !important;
        }

            .info-boxes .info-box .chartArea #pay .highcharts-container .highcharts-contextmenu {
                right: -5px !important;
                top: 20px !important;
                transform: scale(0.7) !important;
                transform-origin: right top !important;
            }
}

.info-boxes .info-box .chartArea .chartCreator {
    min-width: 310px;
    height: 400px;
    margin: 0 auto;
}

@media only screen and (max-width: 576px) {
    .info-boxes .info-box .chartArea .chartCreator {
        height: 200px;
        min-width: 420px;
    }
}

@media only screen and (max-width: 576px) {
    .page-title-area-left {
        float: left;
    }

    .page-title-area-right {
        float: right;
    }
}

.page-title-area .page-title {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 64px;
    color: #48555d;
}

@media only screen and (max-width: 576px) {
    .page-title-area .page-title {
        font-family: Montserrat, sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 64px;
    }
}

.page-title-area .page-title-button {
    background: linear-gradient(90deg, #069abe 0%, #006b9b 100%);
    color: white;
    padding-left: 25px;
    padding-right: 22px;
    margin-top: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

    .page-title-area .page-title-button.subscribe-channel {
        display: flex;
        align-items: center;
        color: #069abe;
        background: transparent;
        padding-right: 0;
    }

        .page-title-area .page-title-button.subscribe-channel img {
            width: 50px;
            margin-right: 10px;
        }

@media only screen and (max-width: 576px) {
    .page-title-area .page-title-button {
        font-family: Montserrat, sans-serif;
        font-weight: 400;
        font-size: 12px;
        line-height: 24px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 15px;
    }
}

.page-title-area .page-title-button span {
    line-height: 36px;
    margin-left: 10px;
}

.news-boxes .news-box a {
    display: block;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.news-boxes .news-box .image img {
    width: 100%;
    height: auto;
    max-height: 244px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.news-boxes .news-box .date {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #788289;
    margin-top: 10px;
}

@media only screen and (max-width: 576px) {
    .news-boxes .news-box .date {
        font-family: Montserrat, sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 18px;
    }
}

.news-boxes .news-box .title {
    color: #6a7076;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    max-height: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 576px) {
    .news-boxes .news-box .title {
        font-family: Montserrat, sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
}

.videos-area .active-video {
    display: block;
}

.videos-area .passive-video {
    display: none;
}

.videos-area .videos .video .video-iframe {
    width: 100%;
    height: 100%;
}

.videos-area .videos-menu {
    overflow-y: scroll;
    overflow-x: hidden;
}

@media only screen and (max-width: 768px) {
    .videos-area .videos-menu {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 1500px) {
    .searchBox .container {
        width: 100% !important;
    }

    .searchBox {
        width: 920px !important;
    }

        .searchBox label.search {
            width: 880px;
            margin-left: 880px;
        }
}

@media only screen and (max-width: 1270px) {
    .searchBox .container {
        width: 100% !important;
    }

    .searchBox {
        width: 800px !important;
    }

        .searchBox label.search {
            width: 760px;
            margin-left: 780px;
        }
}

@media only screen and (max-width: 1270px) {
    .searchBox .container {
        width: 100% !important;
    }

    .searchBox {
        width: 750px !important;
    }

        .searchBox label.search {
            width: 720px;
            margin-left: 720px;
        }
}

@media only screen and (max-width: 1024px) {

    .searchBox,
    .searchBox label.search,
    .searchBox label.search.active,
    .searchBox.active,
    .searchBox label.search input {
        all: unset;
    }

        .searchBox label.search {
            width: 100%;
        }

        .searchBox .container {
            width: 100%;
            height: 70px;
            background-color: #f7f7f7;
            padding-top: 10px;
        }

        .searchBox label.search input {
            float: left;
            width: calc(100% - 120px);
        }

    .searchBox {
        display: block;
        width: 100% !important;
        height: 70px;
        background: #f7f7f7;
        z-index: -1;
        right: 0%;
        transition: none;
        display: none;
    }

        .searchBox label.search {
            height: 40px;
            background-color: none;
        }

            .searchBox label.search input {
                height: 40px;
                border-bottom: 1px solid rgb(49, 58, 65,0.50);
                padding-left: 5px;
            }

            .searchBox label.search button {
                transform: scale(0.90);
                margin-top: 5px;
            }

            .searchBox label.search input {
                border: none !important;
                height: 55px !important;
            }
}

.videos-area .videos-menu::-webkit-scrollbar-track, .videos-area .videos-menu::-webkit-scrollbar {
    width: 8px;
    background-color: #e2e4e9;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.videos-area .videos-menu::-webkit-scrollbar-thumb {
    width: 8px;
    background-color: #009fc3;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.videos-area .videos-menu .menuEl {
    width: 100%;
    cursor: pointer;
    user-select: none;
    margin-bottom: 12px;
}

    .videos-area .videos-menu .menuEl .image img {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        width: 125px;
        height: 70px;
        object-fit: cover;
    }

@media only screen and (max-width: 576px) {
    .videos-area .videos-menu .menuEl .image img {
        width: 100%;
        height: 100%;
    }
}

.videos-area .videos-menu .menuEl .infoArea {
    margin-left: 10px;
    width: 100%;
    height: auto;
    color: #48555d;
}

    .videos-area .videos-menu .menuEl .infoArea .infoArea-title {
        -webkit-transition: all 500ms;
        -moz-transition: all 500ms;
        -o-transition: all 500ms;
        transition: all 500ms;
        width: calc(100% - 40px);
        font-family: Montserrat, sans-serif;
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
    }

    .videos-area .videos-menu .menuEl .infoArea .infoArea-date {
        -webkit-transition: all 500ms;
        -moz-transition: all 500ms;
        -o-transition: all 500ms;
        transition: all 500ms;
        font-family: Montserrat, sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        opacity: 0.7;
    }

.videos-area .videos-menu .menuEl:hover .title {
    color: #0090cc;
}

.videos-area .videos-menu .menuEl:hover .date {
    opacity: 1;
}

.bottom-boxes {
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
    .bottom-boxes .bottom-box-area:nth-last-child(n+3) {
        margin-bottom: 30px;
    }
}

.bottom-boxes a.bottom-box {
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    display: block;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
    height: 140px;
    padding: 15px;
    background: linear-gradient(135deg, #069abe 0%, #006b9b 100%);
    overflow: hidden;
}

    .bottom-boxes a.bottom-box .bottom-box-container {
        text-align: center;
        width: 100%;
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .bottom-boxes a.bottom-box .bottom-box-container .text {
            position: relative;
            z-index: 9995;
            font-family: Montserrat, sans-serif;
            font-weight: 500;
            font-size: 24px;
            line-height: 32px;
            color: white;
        }

@media only screen and (max-width: 768px) {
    .bottom-boxes a.bottom-box .bottom-box-container .text {
        font-family: Montserrat, sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
    }
}

.bottom-boxes a.bottom-box .bottom-box-container .image {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9994;
    width: 100%;
    height: 140;
    opacity: 0.25;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.top-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(0deg, #051c33 0%, #052546 100%);
}

    .top-image img {
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 9995;
        width: 100%;
        height: 250px;
        opacity: .25;
    }

    .top-image .title-area {
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 9996;
        width: 100%;
        height: 250px;
    }

.title-area-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    text-align: center;
    height: 250px;
}

    .title-area-content h2 {
        display: inline-block;
        font-family: Montserrat, sans-serif;
        font-weight: 600;
        font-size: 26px;
        color: white;
    }

.subpage-breadcrumb {
    display: inline-block;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

    .subpage-breadcrumb a {
        color: #dee7ec !important;
    }

        .subpage-breadcrumb a:not(:last-child):after {
            content: ' / ';
            margin-left: 15px;
            margin-right: 15px;
        }

.subpage-container {
    display: flex;
    position: relative;
    margin-top: -50px;
    margin-bottom: 120px;
    position: relative;
    z-index: 9996;
    padding: 45px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(15, 88, 105, 0.06);
    -moz-box-shadow: 0px 0px 40px 0px rgba(15, 88, 105, 0.06);
    box-shadow: 0px 0px 40px 0px rgba(15, 88, 105, 0.06);
}
/* data container */
.data-container {
    margin-top: 30px !important;
}

.sidebar {
    flex: 0 0 355px;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    padding-right: 45px;
    margin-right: 45px;
    border-right: 1px solid #edf2f6;
}

@media only screen and (max-width: 1320px) {
    .sidebar {
        display: none;
    }
}

.sidebar-title {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 40px;
    color: #48555d;
    margin-bottom: 10px;
}

@media only screen and (max-width: 576px) {
    .sidebar-title {
        width: fit-content;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}

@media only screen and (max-width: 576px) {
    .sidebar-title {
        margin-left: 15px;
    }
}

.sidebar-menu {
    margin-bottom: 8px;
}

    .sidebar-menu.active > .sidebar-menu-title:after {
        float: right;
        font-family: 'borsaistanbul' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
    }

    .sidebar-menu:not(.active) > .sidebar-menu-subs {
        display: none;
    }

.sidebar-menu-title {
    position: relative;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    display: block;
    width: 100%;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #48555d;
    background-color: #edf2f6;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 10px 50px;
    padding-left: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
}

    .sidebar-menu-title a {
        color: #48555d;
    }

    .sidebar-menu-title:after {
        float: right;
        font-family: 'borsaistanbul' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0%, -50%);
        content: "";
    }

    .sidebar-menu-title:hover {
        background-color: #d7dde3;
    }

    .sidebar-menu-title.active {
        color: #0090cc;
        background-color: #d7dde3;
    }

.sidebar-menu-subs {
    padding-left: 5px;
}

.sidebar-menu-sub {
    display: block;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #48555d;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 15px;
}

    .sidebar-menu-sub.activeSub .sidebar-menu-sub-subs {
        display: block;
        padding-top: 10px;
    }

    .sidebar-menu-sub.activeSub .sidebar-menu-sub-title:after {
        float: right;
        font-family: 'borsaistanbul' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
    }

    .sidebar-menu-sub .sidebar-menu-sub-title {
        display: block;
        font-family: Montserrat, sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 25px;
        color: #48555d;
        cursor: pointer;
        user-select: none;
    }

        .sidebar-menu-sub .sidebar-menu-sub-title:after {
            float: right;
            margin-right: 25px;
            font-family: 'borsaistanbul' !important;
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "";
        }

    .sidebar-menu-sub .sidebar-menu-sub-subs {
        display: none;
    }

        .sidebar-menu-sub .sidebar-menu-sub-subs a:before {
            content: '› ';
        }


    .sidebar-menu-sub.active {
        /*font-weight: 500;*/
        color: #0090cc;
    }

    .sidebar-menu-sub:hover,
    .sidebar-menu-sub.active,
    .sidebar-menu-sub .sidebar-menu-sub.active,
    .sidebar-menu-sub .sidebar-menu-sub:hover,
    .sidebar-menu-sub .sidebar-menu-sub-title:hover,
    .sidebar-menu-sub .sidebar-menu-sub-title.active {
        /*font-weight: 500;*/
        text-shadow: 0px 0px 0.5px;
    }

        .sidebar-menu-sub:hover .sidebar-menu-sub:not(.active):not(:hover),
        .sidebar-menu-sub:hover .sidebar-menu-sub-title:not(.active):not(:hover),
        .sidebar-menu-sub.active .sidebar-menu-sub:not(.active):not(:hover),
        .sidebar-menu-sub.active .sidebar-menu-sub-title:not(.active):not(:hover) {
            text-shadow: none !important;
        }

.content {
    flex: 1;
}

@media only screen and (max-width: 1200px) {
    .content {
        width: 100%;
    }
}

.content-title-area {
    display: flex;
    justify-content: space-between;
    padding-bottom: 6px;
}

    .content-title-area .content-title {
        flex: 1;
        font-family: Montserrat, sans-serif;
        font-weight: 600;
        font-size: 22px;
        line-height: 40px;
        color: #0090cc;
    }

@media only screen and (max-width: 576px) {
    .content-title-area .content-title {
        float: none !important;
    }
}

@media only screen and (max-width: 768px) {
    .subpage-container {
        padding: 25px;
    }

    .content-title-area {
        flex-direction: column-reverse;
    }

        .content-title-area .content-options {
            margin-bottom: 25px;
        }
}

.content-options a,
.content-options {
    flex: 0 0 auto;
}

    .content-options a,
    .content-options div {
        cursor: pointer;
        user-select: none;
        -webkit-transition: all 500ms;
        -moz-transition: all 500ms;
        -o-transition: all 500ms;
        transition: all 500ms;
        float: left;
        display: block;
        width: 48px;
        height: 40px;
        color: #c3d0d8 !important;
        font-size: 22px;
        line-height: 40px;
        text-align: center;
        border-right: 1px solid #edf2f6;
    }

        .content-options a:last-child,
        .content-options div:last-child {
            border-right: 0px solid #edf2f6;
        }

        .content-options a:hover,
        .content-options div:hover {
            color: #0090cc !important;
        }


.announcementsContent {
    padding: 30px !important;
}

.announcementsContentDetail:last-child {
    padding-bottom: 0;
}

.footer {
    width: 100%;
    background-color: #041c2f;
    padding: 25px 0;
}

@media only screen and (max-width: 992px) {
    .footer .col-sm:nth-last-child(n+3) {
        margin-bottom: 30px;
    }
}


.footer a.footer-sponsor {
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 992px) {
    .footer a.footer-sponsor img {
        max-width: 80%;
    }
}

.footer .footerHR {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer .footer-bottom {
    margin-top: 30px;
    margin-bottom: 10px;
}

    .footer .footer-bottom .footer-logo {
        margin-top: 5px;
    }

    .footer .footer-bottom .footerVerticalHR {
        width: 2px;
        height: 50px;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 0px;
        margin-bottom: 0px;
        background-color: rgba(255, 255, 255, 0.25);
    }

@media only screen and (max-width: 992px) {
    .footer .footer-bottom .footerVerticalHR {
        display: none;
    }
}

.footer .footer-bottom .copyright-text {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    margin-top: 5px;
    color: white;
}

@media only screen and (max-width: 992px) {
    .footer .footer-bottom .copyright-text {
        float: right !important;
        text-align: right;
    }
}

.footer .footer-bottom .footerC {
    margin-left: 15px;
    margin-top: 5px;
}

@media only screen and (max-width: 992px) {
    .footer .footer-bottom .footerC {
        margin-left: 0px;
    }
}

.footer .footer-bottom .footerC a {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    color: white;
    margin-left: 15px;
    margin-right: 15px;
}

@media only screen and (max-width: 992px) {
    .footer .footer-bottom .footerC a {
        display: block;
        margin-left: 0px;
        margin-right: 0px;
    }

        .footer .footer-bottom .footerC a:before {
            content: '› ';
        }
}

.footer .footer-bottom .footerR {
    margin-top: 10px;
}

@media only screen and (max-width: 992px) {
    .footer .footer-bottom .footerR {
        text-align: center;
    }
}

.footer .footer-bottom .footerR span {
    font-size: 28px;
    color: white;
    margin-left: 4px;
}

/* data table */
.table {
    color: #69747c;
    font-weight: 400;
    background: #edf1f6;
    font-size: 15px;
}

    .table td, .table th {
        padding: 20px !important;
    }

.tableHeading {
    background: #009fc3;
    color: #ffffff;
    border: none !important;
    font-size: 18px;
}

.table thead th {
    background: #009fc3;
    color: #ffffff;
    border: none !important;
    font-size: 18px;
}

.table tfoot td {
    background: #d3d9e2;
    font-weight: 500;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: #e3e9f2;
}

.table tr td {
    vertical-align: middle;
}

    .table tr td p {
        margin-top: 10px;
        font-size: 15px;
    }

.table-striped {
    margin: 28px auto !important;
}

.responsiveMobileTable [type="text"]::-webkit-inner-spin-button {
    display: none;
}

.responsiveMobileTable [type="text"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.responsiveMobileTable input[type="text"]::-webkit-calendar-button {
    display: none !important;
}

::-webkit-clear-button,
::-webkit-inner-spin-button {
    display: none;
}

.wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 16, 34, 0.7);
    z-index: 9999;
    display: none;
}

/*# sourceMappingURL=main.css.map */

/* other page */

/* other top image */
.other-top-image {
    position: relative !important;
    height: 260px !important;
    background-color: none !important;
}
/* data title area */
.other-title-area {
    height: 260px !important;
    background-color: none !important;
    overflow: hidden;
}
/* data-breadcrumb */
.other-breadcrumb-content {
    display: inline-block;
    width: auto !important;
    height: auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: none;
    margin: 0px !important;
}

.other-top-image img {
    height: 260px !important;
}

.table-responsive .table-striped {
    margin-top: 5px !important;
}

.buttons-inline div {
    display: inline-block;
    margin-right: 15px;
}

.mini-form {
    max-width: 250px !important;
}

.normal-form label {
    width: 100% !important;
}

.normal-form textarea {
    width: calc(100% - 24px);
}

.normal-form .radio-title {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 8px;
}

.normal-form .save-button {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 48px;
    margin-top: 15px;
    background: #0090cc;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 0 25px;
    transition: all 300ms;
}

    .normal-form .save-button:hover {
        background-color: #0076a8;
    }



/*[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}*/

/*[type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        font-family: Montserrat, sans-serif;
        font-weight: 400;
        font-size: 15px;
        line-height: 24px;
        display: inline-block;
        color: #666;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            border: 1px solid #ddd;
            border-radius: 100%;
            background: #fff;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 12px;
            height: 12px;
            background: #0090cc;
            position: absolute;
            top: 3px;
            left: 3px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }*/


.pagination {
    margin: 15px 0;
}

    .pagination .page {
        display: inline-block;
        width: 36px;
        height: 36px;
        background-color: #fff;
        border: 2px solid #edf2f6;
        font-weight: 500;
        color: #48555d;
        font-family: Montserrat, sans-serif;
        text-align: center;
        line-height: 32px;
        margin-right: 4px;
        transition: all 300ms;
    }

        .pagination .page:hover,
        .pagination .page.active {
            background-color: #0090cc;
            border: 2px solid #0090cc;
            color: #fff;
        }

.page-showreel-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 4px solid transparent;
    transition: 0.5s all;
}

    .page-showreel-container .page-showreel-image {
        display: flex;
        justify-content: center;
        min-height: 140px;
    }

        .page-showreel-container .page-showreel-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0,0.75), transparent);
        }

.page-showreel-text {
    position: absolute;
    left: 30px;
    bottom: 30px;
    color: #ffffff;
    font-size: 20px;
    padding-right: 30px;
    z-index: 11;
    transition: 0.5s all;
}

.page-showreel-container .goDetails {
    z-index: 999;
    position: absolute;
    bottom: -30%;
    left: 30px;
}

.page-showreel-container:hover {
    border-color: #00608f;
}

    .page-showreel-container:hover .page-showreel-text {
        bottom: 70px;
    }


    .page-showreel-container:hover .goDetails {
        bottom: 15px;
    }

.page-showreel-container .goDetails:hover {
    text-decoration: none;
}

@media only screen and (max-width: 768px) {
    .page-showreel-container .page-showreel-image img {
        width: 100%;
    }

    .page-showreel-container .page-showreel-text {
        font-size: 15px;
        left: 20px;
        bottom: 60px;
    }

    .page-showreel-container .goDetails {
        left: 20px;
        bottom: 10px;
        transform: scale(0.85);
        transform-origin: left top;
    }

    .slider.vertical .slider-controls-container .slider-controls > div ol li {
        min-width: 16px !important;
        height: 4px !important;
        min-height: unset !important;
        border-radius: 4px !important;
    }

    .slider.vertical .slider-controls-container .slider-prev-icon, .slider.vertical .slider-controls-container .slider-next-icon {
        transform: scale(0.65) rotate(-90deg) !important;
        transform-origin: center;
    }
}

@media only screen and (max-width: 320px) {
    .page-showreel-container .page-showreel-text {
        bottom: 45px;
    }

    .page-showreel-container .goDetails {
        left: 20px;
        bottom: 5px;
        transform: scale(0.65);
        transform-origin: left bottom;
    }
}


@media only screen and (max-width: 1350px) {
    .slider.vertical {
        height: auto;
        display: flex;
        flex-direction: column;
    }

        .slider.vertical .slider-controls-container {
            position: static;
            order: 2;
        }

            .slider.vertical .slider-controls-container .slider-controls {
                position: relative;
                display: flex;
                justify-content: center;
                height: auto;
                width: 100%;
                margin: 30px 0;
                z-index: 9996;
            }

                .slider.vertical .slider-controls-container .slider-controls > div {
                    display: flex;
                    align-items: center;
                    padding: 0;
                    width: auto;
                    max-width: unset;
                    flex: unset;
                }

                    .slider.vertical .slider-controls-container .slider-controls > div ol {
                        display: flex;
                        align-items: center;
                        flex-wrap: wrap;
                        width: auto;
                    }

                        .slider.vertical .slider-controls-container .slider-controls > div ol li {
                            min-width: 10px;
                            min-height: 10px;
                            margin: 0 15px;
                        }

    .top-bar {
        margin-top: 0;
    }

    .slider.vertical .carousel-caption {
        position: static;
        background-color: #0090cc;
    }

        .slider.vertical .carousel-caption h3 {
            font-size: 18px;
        }

    .slider.vertical .slider-controls-container .slider-prev-icon, .slider.vertical .slider-controls-container .slider-next-icon {
        background-color: rgba(0,0,0,0.50);
        min-width: 36px;
        transform: rotate(-90deg);
    }

    .slider.vertical .carousel-indicators li {
        background-color: rgba(0,0,0,0.25);
    }

    .slider.vertical a.slider-button {
        all: inherit;
        font-family: Montserrat, sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 32px;
        height: 32px;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .news-boxes .col-md {
        max-width: 25.33333%;
    }
}

@media only screen and (max-width: 576px) {
    .top-bar {
        margin-top: 0;
    }
}

@media only screen and (max-width: 1700px) {
    .slider.vertical .slider-controls-container .slider-controls {
        height: 420px;
    }
}

@media only screen and (max-width: 1550px) {
    .slider.vertical .slider-controls-container .slider-controls {
        height: 370px;
    }
}

@media only screen and (max-width: 1350px) {
    .slider.vertical .slider-controls-container .slider-controls {
        height: auto;
    }
}

.bist-announcements {
    width: 100%;
}

    .bist-announcements div {
        cursor: pointer;
    }

        .bist-announcements div:hover .bist-announcement-date {
            background: #069abe;
            color: #ffffff;
        }

.bist-announcement {
    /*display: none;*/
}

    .bist-announcement:hover > .bist-announcement-date {
        background-color: #0090cc;
        color: #fff;
    }

.bist-announcement-date {
    background-color: #edf2f6;
    color: #48555d;
    padding: 0 10px;
    line-height: 32px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 300ms;
}

.bist-announcement-content {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 5px 10px 15px 10px;
}

.allAnnouncementsListText a {
    color: #48555d !important;
}

    .allAnnouncementsListText a:hover {
        text-decoration: none !important;
        color: #0090cc !important;
    }


.accordion {
    margin: 10px 0;
}

.accordion-title {
    background-color: #edf2f6;
    color: #48555d;
    font-weight: 500;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
    user-select: none;
}

    .accordion-title:hover {
        background-color: #d7dde3;
    }


    .accordion-title h1 {
        margin-top: 5px !important;
        margin-bottom: 2px !important;
    }

.accordion-content {
    display: none;
    padding: 10px 15px;
}


.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 15px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 25px !important;
    height: 8px !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    border-radius: 4px !important;
    background-color: #939EA6 !important;
    margin: 0 5px !important;
    outline: 0;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #0090CC !important;
}

table th {
    vertical-align: middle !important;
}

.search-item {
    display: block;
    margin-bottom: 20px;
}

    .search-item .searchTitle {
        font-weight: 600;
        font-size: 16px;
        color: #6b7982;
    }

    .search-item .searchLink {
        font-size: 14px;
        color: #6b7982;
    }

    .search-item:hover .searchTitle {
        font-weight: 600;
        color: #0090cc;
    }

    .search-item:hover .searchLink {
        color: #0090cc;
        text-decoration: underline;
    }

    .search-item .searchContent {
        font-size: 12px;
        color: #6b7982;
    }


.page-link:hover {
    text-decoration: none !important;
}
