size:/* GENERAL
--------------------------------------------------------1*/
html,
body {
    cursor: default;
    -webkit-overflow-scrolling: touch;
}

body {
    background-color: #FFF;
    overflow-y: hidden;
    padding: 0 !important;
} 

* {
    outline: none !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

[type="submit"],
[type="button"],
button {
    cursor: pointer;
}

/* A Tag */
a {
    color: #333;
    -webkit-transition: .3s;
    transition: .3s;
}

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

a:focus,
a:hover {
    color: #000;
}

/* Animation Check */
.circle-loader {
    margin: 0 0 30px 10px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-left-color: #5cb85c;
    animation-name: loader-spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.circle-loader,
.circle-loader:after {
    border-radius: 50%;
    width: 8em;
    height: 8em;
}

.load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #5cb85c;
    transition: border 500ms ease-out;
}

.checkmark {
    display: none;
}

.checkmark.draw:after {
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
}

.checkmark:after {
    opacity: 1;
    height: 4em;
    width: 2em;
    transform-origin: left top;
    border-right: 2px solid #5cb85c;
    border-top: 2px solid #5cb85c;
    content: "";
    left: 2em;
    top: 4em;
    position: absolute;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 2em;
        opacity: 1;
    }

    40% {
        height: 4em;
        width: 2em;
        opacity: 1;
    }

    100% {
        height: 4em;
        width: 2em;
        opacity: 1;
    }
}

/* Control Warning */
.control-warning {
    border-width: 1px;
    border-style: solid;
    border-color: #FF0000 !important;
}

.control-warning:focus {
    border-color: rgba(104, 8, 8, 0.6) !important;
}

.control-warning-tab {
    color: #FF0000 !important;
}

.control-warning-star {
    color: #CC0000;
}

/* Load Bar */
.load-bar {
    height: 4px;
    width: 100%;
    position: absolute;
    overflow: hidden;
    background-color: #f3f3f3;
    z-index: 1;
    display: none;
}

.load-bar:before {
    display: block;
    position: absolute;
    content: "";
    left: -200px;
    width: 200px;
    height: 4px;
    background-color: #cb3e3a;
    animation: loading 2s linear infinite;
}

@keyframes loading {
    from {
        left: -200px;
        width: 30%;
    }

    50% {
        width: 30%;
    }

    70% {
        width: 70%;
    }

    80% {
        left: 50%;
    }

    95% {
        left: 120%;
    }

    to {
        left: 100%;
    }
}

/* Google ReCaptcha Badge Logo */
.grecaptcha-badge {
    display: none;
}

/* SCROLLBAR
--------------------------------------------------------*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #cf541b;
}


/* LOADING
--------------------------------------------------------*/
.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    z-index: 999;
}


/* HEADER
--------------------------------------------------------*/
header {
    position: relative;
}

.header-top {
    position: absolute;
    z-index: 100;
    width: 100%;
    top: 20px;
}

/* Static Header */
.header-top.header-static * {
    transition: .3s;
}

.header-top.header-static {
    position: fixed;
    top: 0px;
    width: 100%;
    padding: 12px 0px 6px 0px;
    height: 80px;
}

.header-top.header-static .logo {
    width: 60px;
}

.header-top.header-static .top-menu li a {
    padding: 6px 16px 4px 16px;
    font-size: 10px;
}

.header-top.header-static .top-menu li a.circle {
    padding: 6px 6px 4px 6px;
}

.header-top.header-static .main-menu {
    margin-top: 10px;
}

.header-top.header-static .main-menu li a {
    padding: 4px 10px;
    font-size: 14px;
}

/* Logo */
.header-top .logo {
    display: inline-block;
    width: 105px;
}

.header-top .logo img {
    width: 100%;
}

/* Top Menu */
.header-top .top-menu li a {
    display: block;
    border: 1px solid #FFF;
    border-radius: 25px;
    color: #FFF;
    padding: 8px 26px;
    font-size: 12px;
    margin: 0px 6px;
    font-family: 'LucidaGrande';
    text-transform: uppercase;
}

.header-top .top-menu li:last-child a {
    margin-right: 0px;
}

.header-top .top-menu li a.active,
.header-top .top-menu li a:hover {
    background-color: #eb6324;
    border-color: #eb6324;
}

.header-top .top-menu li a.circle {
    border-radius: 50%;
    padding: 8px 10px;
}

.header-top .top-menu li a.circle i {
    margin-right: 2px;
    margin-left: 1px;
}

.header-top .top-menu li a i {
    margin-right: 5px;
}

/* Main Menu */
.header-top .main-menu {
    margin-top: 25px;
}

.header-top .main-menu li a {
    display: block;
    color: #FFF;
    padding: 8px 14px;
    font-family: 'GothamXNarrowBook';
    font-size: 16px;
    text-transform: uppercase;
}

.header-top .main-menu li a:hover {
    color: #eb6324;
}

.header-top .main-menu li:last-child a {
    padding-right: 0px;
}

/* Main Slider */
.main-slider-item {
    width: 100%;
    height: 657px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.main-slider-item .main-slider-video {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
    background-color: #000;
}

.main-slider-item .main-slider-video video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.main-slider-item .main-slider-container {
    height: 100%;
    position: relative;
    z-index: 2;
}

.main-slider-item .main-slider-title {
    font-weight: bold;
    font-size: 26px;
    color: #FFF;
    font-family: 'GothamXNarrowBook';
    margin-bottom: 25px;
    position: relative;
}

.main-slider-item .main-slider-title-body {
    position: absolute;
    bottom: calc(50% - 120px);
    width: 82%;
}

.main-slider-item .main-slider-title img {
    height: 40px;
    width: auto;
}

.main-slider-item .main-slider-title span {
    display: inline-block;
    height: 8px;
    width: 1000px;
    background-color: #eb6324;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    top: calc(50% - 5px);
    left: -1020px;
}

.main-slider-item .main-slider-description {
    font-size: 20px;
    color: #FFF;
    font-family: 'GothamXNarrowBook';
    width: 100%;
    text-align: justify;
}

.main-slider .arrow-left {
    display: inline-block;
    background-image: url(https://vespiis.com/content/assets/images/slider-arrow-left.png);
    width: 19px;
    height: 80px;
}

.main-slider .arrow-right {
    display: inline-block;
    background-image: url(https://vespiis.com/content/assets/images/slider-arrow-right.png);
    width: 19px;
    height: 80px;
}

.main-slider .volume {
    position: absolute;
    bottom: 50px;
    right: 60px;
    display: block;
    border: 1px solid #FFF;
    border-radius: 25px;
    color: #FFF;
    padding: 8px 11px;
    font-size: 16px;
    z-index: 3;
    width: 41px;
    height: 38px;
}

/* Header Title */
.header-title {
    background-image: url(https://vespiis.com/content/assets/images/slider/slider1.png);
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
}

.header-title .header-title-main {
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.header-title .header-title-main h1 {
    margin: 0px 0px 10px 0px;
    color: #FFF;
    font-size: 28px;
    font-family: 'GothamXNarrowMedium';
    text-transform: uppercase;
}

.header-title .header-title-main .bread-crumb {
    background-color: transparent;
    margin-bottom: 30px;
}

.header-title .header-title-main .bread-crumb a,
.header-title .header-title-main .bread-crumb span {
    color: #FFF;
    font-family: 'GothamXNarrowLight';
}

.header-title .header-title-main .bread-crumb a:hover {
    color: #eb6324;
}

.header-title .header-title-main .bread-crumb a i {
    display: inline-block;
    background-image: url(https://vespiis.com/content/assets/images/breadcrumb-arrow.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 10px;
    height: 10px;
    margin: 0px 6px;
}

.header-title .header-title-main .bread-crumb span {
    color: #bdbdbd;
}


/* ARTICLE
--------------------------------------------------------*/
article {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Main Item */
.main-item .image {
    width: 90%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-bottom: 20px;
    display: inline-block;
}

.main-item h5 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'GothamXNarrowMedium';
}

.main-item p {
    width: 400px;
    font-size: 16px;
    font-family: 'GothamXNarrowLight';
}

.main-item .read {
    font-size: 14px;
    font-family: 'GothamXNarrowLight';
    color: #eb6324;
    display: inline-block;
    vertical-align: middle;
}

.main-item .read:hover {
    color: #631f00;
}

.main-item .read i {
    margin-right: 5px;
}

/* Detail Items */
.detail-item {
    padding: 0px 15px;
}

.detail-item .image {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-bottom: 4px;
    display: inline-block;
}

.detail-item h5 {
    font-size: 16px;
    font-family: 'GothamXNarrowMedium';
}

.detail-item p {
    font-size: 14px;
    font-family: 'GothamXNarrowLight';
}

.detail-item .read {
    font-size: 12px;
    font-family: 'GothamXNarrowLight';
    color: #eb6324;
    display: inline-block;
    vertical-align: middle;
}

.detail-item .read:hover {
    color: #631f00;
}

.detail-item .read i {
    margin-right: 5px;
}

/* Title Right */
.title-right {
    margin-bottom: 25px;
}

.title-right img {
    height: 30px;
    width: auto;
}

.title-right h4 {
    font-weight: bold;
    font-size: 28px;
    color: #000;
    font-family: 'GothamXNarrowMedium';
    text-transform: uppercase;
    margin: 20px 0px 5px 0px;
}

.title-right span {
    display: inline-block;
    height: 6px;
    width: 100%;
    background-color: #eb6324;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

/* Title Left */
.title-left {
    margin-bottom: 25px;
    position: relative;
}

.title-left img {
    height: 30px;
    width: auto;
}

.title-left h4 {
    font-weight: bold;
    font-size: 28px;
    color: #000;
    font-family: 'GothamXNarrowMedium';
    text-transform: uppercase;
    margin: 20px 0px 5px 0px;
}

.title-left .title-real-bar {
    display: inline-block;
    height: 6px;
    width: 100%;
    background-color: #eb6324;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.title-left .title-shadow-bar {
    display: inline-block;
    height: 6px;
    width: 1600px;
    background-color: #eb6324;
    position: absolute;
    left: -1600px;
    bottom: 0px;
}

/* Whois Cedi Osman  */
.whois-cediosman {
    transform-origin: center center center;
}

.whois-cediosman .title-right {
    margin-top: 0px;
}

.whois-cediosman .detail-items {
    margin: 25px 0px 0px -140px;
}

.whois-cediosman .description {
    font-family: 'GothamXNarrowLight';
    text-align: justify;
}

/* Statistic */
.statistic {
    background-color: #000;
    padding-bottom: 0px;
}

.statistic .the-first-cedi {
    padding: 0px 0px 60px 0px;
}

.statistic .the-first-cedi img {
    width: 100%;
    max-width: 300px;
}

.statistic .cedi-osman {
    width: 275px;
    margin: 0px auto auto 0px;
}

.statistic .cedi-osman img {
    width: 100%;
    max-width: 175px;
}

.statistic .statistic-title {
    font-size: 32px;
    color: #FFF;
    font-family: 'GothamXNarrowBook';
    margin-bottom: 60px;
    position: relative;
}

.statistic .statistic-title i {
    font-family: 'GothamXNarrowLight';
    font-style: normal;
}

.statistic .statistic-title span {
    display: inline-block;
    height: 8px;
    width: 1000px;
    background-color: #eb6324;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    top: calc(50% - 5px);
    left: -1020px;
}

.statistic table th,
.statistic table td {
    font-family: 'GothamXNarrowLight';
}

.statistic table th:first-child {
    min-width: 120px;
}

.statistic table th {
    color: #eb6324;
    font-size: 12px;
    padding-bottom: 40px;
}

.statistic table th span {
    color: #FFF;
    font-size: 20px;
    display: block;
    margin-top: 5px;
    font-family: 'GothamXNarrowBook';
}

.statistic table td {
    color: #FFF;
    font-size: 16px;
    padding: 4px 0px;
}

.statistic table td label {
    color: #FFF;
    font-size: 16px;
    opacity: 0.7;
    font-weight: normal;
}

.statistic table td span {
    font-family: 'GothamXNarrowMedium';
}

.statistic .nav-tabs {
    background-color: transparent;
    border-bottom: 0px;
}

.statistic .tab-content {
    background-color: transparent;
}

.statistic .nav-tabs > li > a,
.statistic .nav-tabs > li > a:hover {
    padding: 6px 40px;
    text-transform: uppercase;
    font-family: 'GothamXNarrowLight';
    color: #FFF !important;
    background-color: transparent !important;
    border-color: transparent;
    font-size: 16px;
    opacity: 0.7;
}

.statistic .nav-tabs > li.active > a,
.statistic .nav-tabs > li.active > a:hover,
.statistic .nav-tabs > li.active > a:focus {
    border: 1px solid #FFF;
    border-radius: 20px;
    font-family: 'GothamXNarrowMedium';
    opacity: 1;
}

.statistic .note {
    display: inline-block;
    color: #FFF;
    opacity: 0.7;
    font-size: 12px;
    margin-top: 16px;
}

.statistic .tab-content > .tab-pane {
    padding: 40px 0px;
}

/* RING CHART */
.card {
    position: relative;
    padding: 0px;
    box-sizing: border-box;
    border-radius: 0.2em;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    -webkit-transition: none;
    transition: none;
}

.card * {
    -webkit-transition: none;
    transition: none;
}

.card .chart {
    position: relative;
    float: left;
    width: 220px;
    height: 220px;
    /*overflow: hidden;*/
}

.card.line .chart {
    overflow: visible;
}

/* Colors */
.card.bg,
.card .bg {
    background: #000;
    color: #111;
}

.card .ring-chart .ring-fill {
    border-color: #f5a623;
}

.card .ring-chart .circle .mask .fill {
    background-color: #f5a623;
    color: #fff;
    z-index: 3;
}

.card .ring-chart.small .ring-fill {
    border-color: #f8e71c;
}

.card .ring-chart.small .circle .mask .fill {
    background-color: #f8e71c;
    color: #fff;
    z-index: 2;
}

.card .ring-chart.mini .ring-fill {
    border-color: #d8d6b9;
}

.card .ring-chart.mini .circle .mask .fill {
    background-color: #d8d6b9;
    color: #fff;
    z-index: 1;
}

.card .ring-chart.xmini .ring-fill {
    border-color: #FFF;
}

.card .ring-chart.xmini .circle .mask .fill {
    background-color: #FFF;
    color: #fff;
    z-index: 1;
}

/* Ring Chart */
.card .ring-chart {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.card .small.ring-chart {
    position: absolute;
    top: 19px;
    left: 19px;
    width: calc(100% - 38px);
    height: calc(100% - 38px);
}

.card .mini.ring-chart {
    position: absolute;
    top: 39px;
    left: 39px;
    width: calc(100% - 78px);
    height: calc(100% - 78px);
}

.card .xmini.ring-chart {
    position: absolute;
    top: 59px;
    left: 59px;
    width: calc(100% - 118px);
    height: calc(100% - 118px);
}

.card .ring-chart .ring-fill {
    content: '';
    position: absolute;
    top: 9px;
    left: 9px;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    border-width: 3px;
    border-style: solid;
    border-radius: 100%;
    box-sizing: border-box;
}

.card .ring-chart .circle .mask,
.card .ring-chart .circle .fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition: -webkit-transform 1s;
    transition: transform 1s;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* Ring Chart - Line */
.card .ring-chart .line {
    color: #FFF;
    font-family: 'GothamXNarrowLight';
    margin: 0px 0px 0px -60px;
    width: 85px;
    text-align: left;
}

.card .ring-chart .line:hover::after {
    background-color: #FFF;
}

.card .ring-chart .line:hover span {
    color: #eb6324;
}

.card .ring-chart .line:hover i {
    color: #FFF;
}

.card .ring-chart .line span {
    display: block;
    font-size: 20px;
    font-weight: bold;
    transition: .3s;
}

.card .ring-chart .line i {
    display: block;
    font-size: 16px;
    font-style: normal;
    color: #818181;
    margin-bottom: 6px;
    transition: .3s;
}

.card .ring-chart .line::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #818181;
    transition: .3s;
}

.card .small.ring-chart .line {
    margin: 91px 0px 0px -78px;
    width: 110px;
}

.card .mini.ring-chart .line {
    margin: -27px 0px 0px 128px;
    width: 120px;
    text-align: right;
}

.card .xmini.ring-chart .line {
    margin: 31px 0px 0px 72px;
    width: 155px;
    text-align: right;
}

/* Social Media */
.follow-cedi-osman {
    background-color: #efefef;
}

.follow-cedi-osman .photos a {
    display: inline-block;
    float: left;
    background-position: center;
    background-size: cover;
    border-radius: 6px;
}

.follow-cedi-osman .photos a:hover {
    transform: scale(1.1);
}

.follow-cedi-osman .photos .follow-left a:nth-child(1) {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.follow-cedi-osman .photos .follow-left a:nth-child(2) {
    width: calc(50% - 10px);
    height: 140px;
    margin-right: 20px;
}

.follow-cedi-osman .photos .follow-left a:nth-child(3) {
    width: calc(50% - 10px);
    height: 140px;
}

.follow-cedi-osman .photos .follow-right a:nth-child(1) {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
}

.follow-cedi-osman .photos .follow-right a:nth-child(2) {
    width: 100%;
    height: 220px;
}

.follow-cedi-osman .title-right {
    margin-top: 110px;
}

.follow-cedi-osman .social-media-links {
    padding-left: 50px;
}

.follow-cedi-osman .social-media-links a {
    display: block;
    padding: 10px 0px;
    font-family: 'GothamXNarrowBook';
    font-size: 16px;
    font-weight: bold;
}

.follow-cedi-osman .social-media-links a i {
    width: 26px;
    text-align: center;
    margin-right: 5px;
}

/* Gallery */
.gallery {
    background-color: #efefef;
}

.gallery .btn {
    width: 100%;
}

/* Gallery Body */
.image-container {
    position: relative;
}

.photo-container {
    position: relative;
    overflow: hidden;
    transition: .3s;
    height: 200px;
    margin-bottom: 20px;
}

.image-container .image-container-item:first-child .photo-container {
    height: 420px;
}

.photo-container:hover {
    opacity: 0.7;
    /*margin-top: -5px; margin-bottom: 5px;*/
}

.photo-container a {
    display: block;
    padding: 0px;
    position: relative;
    width: 100%;
    height: 100%;
    background-position: top;
    background-size: cover;
    border-radius: 6px;
}

.photo-container .gallery-type {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 30px;
}

/* Gallery Theme */
.gallery-popup {}

.gallery-popup .jconfirm-box.jconfirm-type-blue {
    border-top: 0px;
}

.gallery-popup .jconfirm-box {
    padding: 0px;
}

.gallery-popup .jconfirm-box div.jconfirm-content-pane {
    margin-bottom: 0px;
    float: left;
}

.gallery-popup .jconfirm-box div.jconfirm-content-pane .jconfirm-content img {
    width: 100%;
}

.gallery-popup .jconfirm-box div.jconfirm-content-pane .jconfirm-content i {
    width: 100%;
    padding: 40px;
}

.gallery-popup .jconfirm-box div.jconfirm-content-pane .jconfirm-content i {
    width: 100%;
    padding: 40px;
}

.gallery-popup .jconfirm-box div.jconfirm-closeIcon {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    font-size: 22px !important;
    line-height: 20px !important;
}

.gallery-popup .jconfirm-downloadIcon {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    opacity: .6;
    text-align: center;
    font-size: 27px !important;
    line-height: 14px !important;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    font-size: 12px !important;
    line-height: 20px !important;
    transition: .3s;
}

.gallery-popup .jconfirm-downloadIcon:hover {
    opacity: 1;
}

.gallery-popup iframe {
    float: left;
}

/* News */
.news .title-left .title-real-bar {
    width: 265px;
}

.news .news-title p {
    text-align: justify;
    font-family: 'GothamXNarrowMedium';
    font-size: 16px;
    width: 297px;
}

.news .news-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 19px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.news .news-slider-bar i:hover {
    background-color: #eb6324;
    color: #FFF;
    border-color: #eb6324;
}

.news .news-slider-bar .bar-left {
    padding-right: 1px;
}

.news .news-slider-bar .bar-right {
    padding-left: 1px;
}

.news .news-slider li {
    margin-bottom: 16px;
}

.news .news-slider li:last-child {
    margin-bottom: 0px;
}

.news .news-slider .news-item .news-image {
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    width: 220px;
    height: 130px;
    margin-right: 16px;
}

.news .news-slider .news-item h3 {
    margin: 0px 0px 10px 0px;
    font-family: 'GothamXNarrowMedium';
    font-size: 20px;
    font-weight: bold;
}

.news .news-slider .news-item p {
    font-family: 'GothamXNarrowLight';
    font-size: 16px;
    text-align: justify;
}


/* SHOP
--------------------------------------------------------*/
.shop {
    background-color: #ebebeb;
    padding-bottom: 30px;
}

.shop .shop-item {
    background-color: #FFF;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 30px;
    transition: .3s;
    cursor: pointer;
}

.shop .shop-item:hover {
    margin-top: -10px;
    margin-bottom: 40px;
}

.shop .shop-item .tbl .tbl-cell {
    width: 1%;
}

.shop .shop-item .tbl .tbl-cell:nth-child(2) {
    width: 79%;
}

.shop .shop-item .tbl .tbl-cell:nth-child(3) {
    width: 20%;
    text-align: right;
}

.shop .shop-item .image {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 200px;
}

.shop .shop-item h3 {
    font-size: 18px;
    font-family: 'GothamXNarrowMedium';
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.shop .shop-item .discount {
    border-radius: 4px;
    border: 1px solid #eb6324;
    padding: 2px;
    font-size: 14px;
    text-align: center;
    color: #eb6324;
    font-weight: bold;
    width: 50px;
    margin-right: 16px;
}

.shop .shop-item .discount span {
    display: block;
    font-size: 10px;
    font-weight: normal;
}

.shop .shop-item .old-price {
    display: block;
    font-size: 13px;
    font-family: 'GothamXNarrowLight';
}

.shop .shop-item .price {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #eb6324;
    font-family: 'GothamXNarrowMedium';
}

.shop .shop-item i {
    display: inline-block;
    background-image: url(https://vespiis.com/content/assets/images/cart.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    margin: 0px 6px;
}

/* Shop Item Detail */
.product-detail .jconfirm-box.jconfirm-type-blue {
    border-top: 0px;
}

.product-detail .image {
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
}

.product-detail h3 {
    font-family: 'GothamXNarrowMedium';
    font-size: 22px;
}

.product-detail p {
    font-family: 'GothamXNarrowLight';
    font-size: 16px;
}

.product-detail .sale-bar .tbl .tbl-cell {
    width: 50%;
}

.product-detail .sale-bar .tbl .tbl-cell:last-child {
    text-align: right;
}


/* CEDI ACADEMY
--------------------------------------------------------*/
.cedi-academy {
    padding: 0px 0px 80px 0px;
    background-color: #000;
}

.cedi-academy .tbl-cell {
    vertical-align: top;
}

.cedi-academy .enterence {
    display: block;
    position: relative;
}

.cedi-academy .enterence:hover .image {
    opacity: 0.8;
}

.cedi-academy .enterence:hover h2 {
    color: #eb6324;
}

.cedi-academy .enterence .image {
    position: relative;
    background-color: #FFF;
    transition: .5s;
}

.cedi-academy .enterence .image img {
    width: 100%;
}

.cedi-academy .enterence .image .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0px;
}

.cedi-academy .enterence.active .image .shadow {
    background-color: rgba(0, 0, 0, 0);
}

.cedi-academy .enterence h2 {
    margin: 0px;
    text-align: center;
    font-family: 'GothamXNarrowMedium';
    font-size: 100px;
    color: #FFF;
    position: absolute;
    bottom: -96px;
    left: 0px;
    right: 0px;
    margin: auto;
    transition: .5s;
    z-index: 10;
}

/* Main */
.cedi-academy-main .image img {
    width: 100%;
}

.cedi-academy-main .title-right {
    margin-top: 60px;
}

/* Register Form */
.cedi-academy-register-form {
    background-color: #000;
}

.cedi-academy-register-form h3 {
    font-family: 'GothamXNarrowMedium';
    color: #FFF;
    margin: 0px 0px 15px 0px;
    font-size: 22px;
}

.cedi-academy-register-form p {
    font-family: 'GothamXNarrowLight';
    color: #FFF;
    font-size: 16px;
}

.cedi-academy-register-form .btn {
    background-color: #000;
    margin-top: 20px;
    border-color: #FFF;
}

.cedi-academy-register-form .btn:hover {
    background-color: #FFF;
    color: #000;
}

.cedi-academy-register-form .rf-right {
    text-align: right;
}

/* Coaches */
.cedi-academy-coach {
    background-color: #FFF;
}

.cedi-academy-coach .coach-slider .item {
    padding: 15px;
}

.cedi-academy-coach .coach-slider .item .image {
    display: block;
    width: 100%;
    height: 250px;
    background-position: top center;
    background-size: cover;
    border-radius: 6px;
    transition: .3s;
}

.cedi-academy-coach .coach-slider .item:hover .image {
    margin-top: -15px;
    margin-bottom: 15px;
}

.cedi-academy-coach .coach-slider .item h5 {
    margin: 20px 0px 10px 0px;
    font-size: 20px;
    font-family: 'GothamXNarrowMedium';
    font-weight: bold;
}

.cedi-academy-coach .coach-slider .item p {
    font-family: 'GothamXNarrowLight';
    font-size: 16px;
}

.cedi-academy-coach .title-right-right {
    text-align: center;
    vertical-align: bottom;
}

.cedi-academy-coach .coach-slider-bar {
    white-space: nowrap;
}

.cedi-academy-coach .coach-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.cedi-academy-coach .coach-slider-bar i:hover {
    background-color: #eb6324;
    color: #FFF;
    border-color: #eb6324;
}

.cedi-academy-coach .coach-slider-bar .bar-left {
    padding-right: 1px;
}

.cedi-academy-coach .coach-slider-bar .bar-right {
    padding-left: 1px;
}

.cedi-academy-coach .owl-nav {
    display: none;
}

/* Packet */
.cedi-academy-packet {}

.cedi-academy-packet .boxes {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.cedi-academy-packet .boxes span {
    display: block;
    font-weight: bold;
    color: #eb6324;
    font-family: 'GothamXNarrowMedium';
    font-size: 40px;
    text-align: center;
    padding: 40px 0px;
}

.cedi-academy-packet .boxes ul li {
    font-family: 'GothamXNarrowLight';
    font-size: 16px;
    margin-bottom: 10px;
}

.cedi-academy-packet .boxes ul li:last-child {
    margin-bottom: 0px;
}

.cedi-academy-packet .boxes ul li i {
    color: #3CCF8E;
    margin-right: 6px;
}

.cedi-academy-packet .boxes .btn {
    border-radius: 0px;
    border-color: #000;
    background-color: #FFF;
    color: #000;
    margin: 40px 0px 40px 0px;
}

.cedi-academy-packet .boxes .btn:hover {
    border-color: #eb6324;
    background-color: #eb6324;
    color: #FFF;
}

/* Banner */
.cedi-academy-banner {
    background-image: url(https://vespiis.com/content/assets/images/cedi-osman-academy-bg.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 60px 0px;
}

.cedi-academy-banner h2 {
    color: #eb6324;
    font-family: 'GothamXNarrowMedium';
    font-size: 30px;
}

.cedi-academy-banner h3 {
    color: #FFF;
    font-family: 'GothamXNarrowMedium';
    font-size: 26px;
    margin: 20px 0px;
}

.cedi-academy-banner address {
    color: #FFF;
    font-family: 'GothamXNarrowLight';
    font-size: 16px;
    margin-top: 40px;
}

.cedi-academy-banner address i {
    margin-right: 10px;
}

/* Camp */
.cedi-academy-camp {
    background-color: #f3f3f3;
}

.cedi-academy-camp .camp-slider .item {
    padding: 15px;
    text-align: center;
    cursor: default;
}

.cedi-academy-camp .camp-slider .item .image {
    display: block;
    width: 170px;
    height: 170px;
    background-position: top center;
    background-size: cover;
    border-radius: 50%;
    transition: .3s;
    margin: auto;
    border: 2px solid #FFF;
}

.cedi-academy-camp .camp-slider .item:hover .image {
    border-color: #eb6324;
}

.cedi-academy-camp .camp-slider .item:hover h5 {
    color: #eb6324;
    transition: .3s;
}

.cedi-academy-camp .camp-slider .item h5 {
    margin: 20px 0px 10px 0px;
    font-size: 20px;
    font-family: 'GothamXNarrowMedium';
    font-weight: bold;
}

.cedi-academy-camp .camp-slider .item p {
    font-family: 'GothamXNarrowLight';
    font-size: 16px;
}

.cedi-academy-camp .title-right-right {
    text-align: center;
    vertical-align: bottom;
}

.cedi-academy-camp .camp-slider-bar {
    white-space: nowrap;
}

.cedi-academy-camp .camp-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.cedi-academy-camp .camp-slider-bar i:hover {
    background-color: #eb6324;
    color: #FFF;
    border-color: #eb6324;
}

.cedi-academy-camp .camp-slider-bar .bar-left {
    padding-right: 1px;
}

.cedi-academy-camp .camp-slider-bar .bar-right {
    padding-left: 1px;
}

.cedi-academy-camp .owl-nav {
    display: none;
}

/* Team */
.team .team-slider .item {
    padding: 15px;
    text-align: center;
    cursor: default;
}

.team .team-slider .item .image {
    display: block;
    width: 170px;
    height: 170px;
    background-position: top center;
    background-size: cover;
    border-radius: 50%;
    transition: .3s;
    margin: auto;
    border: 2px solid #FFF;
}

.team .team-slider .item:hover .image {
    border-color: #eb6324;
}

.team .team-slider .item:hover h5 {
    color: #eb6324;
    transition: .3s;
}

.team .team-slider .item h5 {
    margin: 20px 0px 10px 0px;
    font-size: 20px;
    font-family: 'GothamXNarrowMedium';
    font-weight: bold;
}

.team .team-slider .item p {
    font-family: 'GothamXNarrowLight';
    font-size: 16px;
}

.team .title-right-right {
    text-align: center;
    vertical-align: bottom;
}

.team .team-slider-bar {
    white-space: nowrap;
}

.team .team-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.team .team-slider-bar i:hover {
    background-color: #eb6324;
    color: #FFF;
    border-color: #eb6324;
}

.team .team-slider-bar .bar-left {
    padding-right: 1px;
}

.team .team-slider-bar .bar-right {
    padding-left: 1px;
}

.team .owl-nav {
    display: none;
}

/* Sponsor */
.cedi-academy-sponsor {
    background-color: #ebebeb;
}

.cedi-academy-sponsor h4 {
    font-size: 26px;
    font-family: 'GothamXNarrowMedium';
    margin: 0px;
}

.cedi-academy-sponsor .sponsor-slider .item {
    padding: 15px;
    text-align: center;
    cursor: default;
    display: table;
	width:100%;

}

.cedi-academy-sponsor .sponsor-slider .item .sponsor {
    display: table-cell;
    vertical-align: middle;
    background-color: #FFF;
    padding: 6px;
    text-align: center;
    height: 120px;
    text-align: center;
}

.cedi-academy-sponsor .sponsor-slider .item .sponsor a {
    display: inline-block;
    cursor: default;
}

.cedi-academy-sponsor .sponsor-slider .item .sponsor a img {
    transition: .3s;
    width: auto;
    max-width: 180px;
	 max-height: 100px;
}

.cedi-academy-sponsor .sponsor-slider .item:hover .sponsor .image {}

.cedi-academy-sponsor .title-right-right {
    text-align: center;
    /* vertical-align: bottom; */
}

.cedi-academy-sponsor .sponsor-slider-bar {
    white-space: nowrap;
}

.cedi-academy-sponsor .sponsor-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.cedi-academy-sponsor .sponsor-slider-bar i:hover {
    background-color: #eb6324;
    color: #FFF;
    border-color: #eb6324;
}

.cedi-academy-sponsor .sponsor-slider-bar .bar-left {
    padding-right: 1px;
}

.cedi-academy-sponsor .sponsor-slider-bar .bar-right {
    padding-left: 1px;
}

.cedi-academy-sponsor .owl-nav {
    display: none;
}

.main-page-sponsor {
    background-color: #efefef;
}

/* Academy Form */
.register-form h2 {
    margin: 0px;
    font-size: 26px;
    font-family: 'GothamXNarrowMedium';
    border-bottom: 2px solid #eb6324;
    padding: 30px 0px 16px 0px;
    margin-bottom: 20px;
}

.register-form .no-padding-top {
    padding-top: 0px;
}

.register-form .boxes {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.register-form .boxes span {
    display: block;
    color: #eb6324;
    font-family: 'GothamXNarrowMedium';
    font-size: 24px;
    text-align: center;
    padding-bottom: 16px;
}

.register-form .boxes ul li {
    font-family: 'GothamXNarrowLight';
    font-size: 14px;
    margin-bottom: 10px;
}

.register-form .boxes ul li:last-child {
    margin-bottom: 0px;
}

.register-form .boxes ul li i {
    color: #3CCF8E;
    margin-right: 6px;
    font-size: 14px;
}

.register-form .boxes .check-box {
    margin: 22px auto auto auto;
    cursor: pointer;
    display: inline-block;
}

.register-form .boxes .check-box i {
    padding: 10px;
    font-size: 18px;
    color: #eb6324;
    border: 1px solid #eb6324;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
}

.register-form .boxes .check-box label {
    display: none;
}

.register-form .credit-card {
    border-radius: 6px;
    background-color: #E0E0E0;
    padding-top: 18px;
}

.register-form .credit-card .credit-card-line {
    background-color: #F0F0F0;
    padding: 18px;
}

.register-form .credit-card .credit-card-body {
    padding: 14px 10px 10px 10px;
}

.register-form .credit-card .credit-card-body .tbl {
    margin-top: 16px;
}

.register-form .credit-card .credit-card-body .tbl .tbl-cell {
    vertical-align: bottom;
}

.register-form .credit-card .credit-card-body .credit-card-number {
    font-weight: bold;
}

.register-form .credit-card .credit-card-body .credit-card-date {
    display: block;
    font-size: 12px;
}

.register-form .credit-card .credit-card-body .credit-card-name {
    display: block;
    font-size: 12px;
    text-overflow: ellipsis;
    width: 140px;
    overflow: hidden;
    white-space: nowrap;
}

.register-form .credit-card .credit-card-body .credit-card-type img {
    width: 60px;
}

/* Education Camp */
.cedi-academy-education-camp .owl-carousel {opacity:1!important;}
.cedi-academy-education-camp {
    background-color: #f3f3f3;
    background-image: url(https://vespiis.com/content/assets/images/cedi-training-camps-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.cedi-academy-education-camp .education-camp-slider .item {
    padding: 15px;
}

.cedi-academy-education-camp .education-camp-slider .item .image {
    display: block;
    width: 100%;
    height: 250px;
    background-position: top center;
    background-size: cover;
    border-radius: 6px;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.cedi-academy-education-camp .education-camp-slider .item:hover .image {
    margin-top: -15px;
    margin-bottom: 15px;
}

.cedi-academy-education-camp .education-camp-slider .item:hover .image .ec-main .ec-circle {
    background-color: #00000085;
}

.cedi-academy-education-camp .education-camp-slider .item .image .ec-main {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.cedi-academy-education-camp .education-camp-slider .item .image .ec-main .ec-circle {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    background-color: #00000085;
    width: 600px;
    height: 600px;
    /* border-radius: 50%; */
    bottom: -140px;
    /* left: -80px; */
    transition: .3s;
}

.cedi-academy-education-camp .education-camp-slider .item .image .ec-main .ec-title {
    position: absolute;
    bottom: 67px;
    left: 0px;
    z-index: 2;
    display: block;
    width: 270px;
    text-align: center;
}

.cedi-academy-education-camp .education-camp-slider .item .image .ec-main .ec-title .ec-year {
    display: block;
    color: #FFF;
    font-family: 'GothamXNarrowMedium';
    font-size: 18px;
    margin-bottom: -10px;
    padding-left: 10px;
    font-size: 50px;
}

.cedi-academy-education-camp .education-camp-slider .item .image .ec-main .ec-title .ec-text {
    display: block;
    color: #FFF;
    font-family: 'GothamXNarrowMedium';
    font-size: 14px;
    padding-left: 10px;
    font-size: 23px;
}

.cedi-academy-education-camp .education-camp-slider-bar {
    white-space: nowrap;
}

.cedi-academy-education-camp .education-camp-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.cedi-academy-education-camp .education-camp-slider-bar i:hover {
    background-color: #00000085;
    color: #FFF;
    border-color: #eb6324;
}

.cedi-academy-education-camp .education-camp-slider-bar .bar-left {
    padding-right: 1px;
}

.cedi-academy-education-camp .education-camp-slider-bar .bar-right {
    padding-left: 1px;
}

.cedi-academy-education-camp .owl-nav {
    display: none;
}



/* -------------------------  */


.cedi-academy-infrastructure {
    background-color: #fff;
    background-repeat: no-repeat;
}

.cedi-academy-infrastructure .education-camp-slider .item {
    padding: 15px;
}

.cedi-academy-infrastructure .education-camp-slider .item .image {
    display: block;
    width: 100%;
    height: 250px;
    background-position: top center;
    background-size: cover;
    border-radius: 6px;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.cedi-academy-infrastructure .education-camp-slider .item:hover .image {
    margin-top: -15px;
    margin-bottom: 15px;
}

.cedi-academy-infrastructure .education-camp-slider .item:hover .image .ec-main .ec-circle {
    background-color: #d05217;
}

.cedi-academy-infrastructure .education-camp-slider .item .image .ec-main {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.cedi-academy-infrastructure .education-camp-slider .item .image .ec-main .ec-circle {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    background-color: #ea6324;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    bottom: -140px;
    left: -80px;
    transition: .3s;
}

.cedi-academy-infrastructure .education-camp-slider .item .image .ec-main .ec-title {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 2;
    display: block;
    width: 160px;
}

.cedi-academy-infrastructure .education-camp-slider .item .image .ec-main .ec-title .ec-year {
    display: block;
    color: #FFF;
    font-family: 'GothamXNarrowMedium';
    font-size: 18px;
    margin-bottom: -10px;
    padding-left: 10px;
    font-size: 50px;
}

.cedi-academy-infrastructure .education-camp-slider .item .image .ec-main .ec-title .ec-text {
    display: block;
    color: #FFF;
    font-family: 'GothamXNarrowMedium';
    font-size: 14px;
    padding-left: 10px;
    font-size: 23px;
}

.cedi-academy-infrastructure .education-camp-slider-bar {
    white-space: nowrap;
}

.cedi-academy-infrastructure .education-camp-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.cedi-academy-infrastructure .education-camp-slider-bar i:hover {
    background-color: #eb6324;
    color: #FFF;
    border-color: #eb6324;
}

.cedi-academy-infrastructure .education-camp-slider-bar .bar-left {
    padding-right: 1px;
}

.cedi-academy-infrastructure .education-camp-slider-bar .bar-right {
    padding-left: 1px;
}

.cedi-academy-infrastructure .owl-nav {
    display: none;
}

.cedi-academy-infrastructure ul.altyapi {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.cedi-academy-infrastructure ul.altyapi li {
    float: left;
    width: 24%;
    margin: 5px 0.5%;
}

/*.cedi-academy-infrastructure ul.altyapi li:nth-child(4) {
    margin: 0;
}*/

.cedi-academy-infrastructure ul.altyapi li .img {
    border-radius: 10px;
    overflow: hidden;
}

.cedi-academy-infrastructure ul.altyapi li .text {
    margin: 10px 0px 10px 0px;
    font-size: 17px;
    font-family: 'GothamXNarrowMedium';
    font-weight: bold;
}

.cedi-academy-infrastructure ul.altyapi li .img,
.cedi-academy-infrastructure ul.altyapi li .img img {
    width: 100%;
	height:auto!important;
}
ul.nav-pills{margin:-40px 0 0; border-bottom:4px solid #eb6225; padding:0;}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {background:#eb6225; border-radius :0px;}

.nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background-color: transparent;
}

.tab-content {height:750px;}
.nav-pills > li {
    float: right;
}
.franchise-btn {width:auto; margin:30px auto; text-align:center; }
.franchise-btn a {display: inline-block;
    background: #eb6225;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 16px 40px;
    width: auto;}



.sponsor-slider .owl-stage-outer .owl-stage .owl-item {
    width:224px!important;
}

.education-camp-slider .owl-stage-outer .owl-stage .owl-item {
	width:300px!important;
}
















/*------- Sporcu Basvuru ------------*/

section#sporcubasvuru h1{margin:20px 0; font-weight:bold; font-size:22px;}
section#sporcubasvuru h1:after{
	content:"";
	display:block;
	height: 6px;
    width: 100%;
    background-color: #eb6324;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
	    margin: 15px 0 0;
}

section#sporcubasvuru input[type="checkbox"]{
margin:5px 10px;
}


section#sporcubasvuru label.form-check-text{font-size: 11px;font-weight: 400;margin: 20px 0 30px;width:90%;}
section#sporcubasvuru .btn{
border-radius: 20px;
    font-family: 'GothamXNarrowBook';
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 0;
	width:50%;
	display:block;
	margin:70px auto 0;
}


/*------- Subelerimiz --------*/

section#subelerimiz .tbl-cell h4{
	padding:10px 0 0;
	font-size: 26px;
    font-family: 'GothamXNarrowMedium';
    margin: 0px;
	padding:10px 0 0;
}
/*section#subelerimiz .tbl-cell h4:after{
	content:"";
	display:block;
	height: 6px;
    width: 100%;
    background-color: #eb6324;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
	margin: 15px 0 0;
}*/

section#subelerimiz .sponsor-slider .owl-stage-outer .owl-stage .owl-item {
    width: 290px!important;
}


section#subelerimiz .cedi-academy-sponsor .sponsor-slider .item .sponsor a img {
    transition: .3s;
    width: auto;
    max-width: 250px;
    max-height: 145px;
}

section#subelerimiz input[type="checkbox"]{margin: 4px 10px;}


section#subelerimiz label.form-check-text{font-size: 11px;font-weight: 400;margin: 20px 0 30px;width:90%;}
section#subelerimiz .btn{
border-radius: 20px;
    font-family: 'GothamXNarrowBook';
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 0;
	width:50%;
	display:block;
	margin:70px auto 0;
}
section#subelerimiz h1{margin:20px 0; font-weight:bold; font-size:22px;}
section#subelerimiz h1:after{
	content:"";
	display:block;
	height: 6px;
    width: 100%;
    background-color: #eb6324;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
	    margin: 15px 0 0;
}

nav{background-color: transparent!important;
    border: 0!important;}
.navbar-nav {float:none;
display:block; width:100%;}

ul.navbar-nav.top-menu li:nth-child(0){
border: 1px solid #FFF;
    border-radius: 25px;
    color: #FFF;
    padding: 8px 26px;
    font-size: 12px;
    margin: 0px 6px;
    font-family: 'LucidaGrande';
    text-transform: uppercase;	
}
ul.navbar-nav.top-menu li {float:right;}
ul.navbar-nav.top-menu li a{margin: 0 10px;}
ul.navbar-nav li a{
display: block;
    color: #FFF!important;
    padding: 8px 14px;
    font-family: 'GothamXNarrowBook';
    font-size: 16px;
    text-transform: uppercase;
	margin:20px 0 0;
}
.header-top .logo {
    display: inline-block;
    width: 97%!important;
    margin: 0!important;
    padding: 0!important;
}

.header-top.header-static ul.navbar-nav li a{
	margin:3px 0 0;
}
.header-top.header-static ul.navbar-nav.top-menu li a {margin: 0 10px;}
.header-top.header-static .logo {
    display: inline-block;
    width: 52%!important;
    margin: 0!important;
    padding: 0!important;
}
.header-top.header-static .top-menu li a.circle {
    padding: 6px 10px;
}



 


section#ek-detail {padding:40px 0;}
section#ek-detail .ek-detail-text .img{border-radius:10px; width:100%; overflow:hidden;}
section#ek-detail .ek-detail-text .img img {width:100%;}
section#ek-detail .ek-detail-text .text {font-size: 15px;font-weight: normal;color: #000; letter-spacing:0.2px;}
section#ek-detail .ek-detail-text .text span{line-height:34px;display:block;width:100%; padding:20px 0;}
section#ek-detail .ek-detail-text .text input {
	width:200px;
	background-color: #eb6225;
    border: 1px solid #fff0;
	color:#fff;
	text-align:center;
	font-size:16px;
	border-radius:10px;
	padding:10px 0;
}

section#ek-detail .cedi-academy-staff {background-color: transparent; margin:50px 0;}
section#ek-detail article#gallery12 .first{
	width: 26%;
	height:auto;
	margin:20px 1%;
	float:left;
}
section#ek-detail article#gallery12 .second{
	width: 20%;
	height:auto;
	margin:20px 1%;
	float:left;
}
section#ek-detail article#gallery12 .first .img-2{height:106px; overflow:hidden;}

section#ek-detail article#gallery12 .first img, article#gallery12 .second img {
	width: 100%;
}
section#ek-detail article#gallery12 .first .img-1 {height:200px; overflow:hidden;}
section#ek-detail article#gallery12 .img-3 {float:left; margin:10px 0; width:48%;}
section#ek-detail article#gallery12 .img-5 {float:right; margin:10px 0; width:48%;}
section#ek-detail article#gallery12 .img-5::after {clear:both;}
section#ek-detail article#gallery12 .second .img-4 {height:148px; overflow:hidden;}
section#ek-detail article#gallery12 .second .img-6 {height:148px; margin:10px 0 0; overflow:hidden;}
section#ek-detail article#gallery12 .first .img-1, article#gallery12 .first .img-2, article#gallery12 .first .img-3, article#gallery12 .first .img-5, article#gallery12 .second .img-4, article#gallery12 .second .img-6 {border-radius:5px; overflow:hidden;} 

section#ek-detail .main-page-sponsor {
    background-color: transparent;
}
/* ------------- gallery --------------- */
















@media screen and (max-width:414px) {
.cedi-academy-infrastructure ul.altyapi li {
    float: left;
    width: 48%;
    margin: 5px 0.5%;
}
	.owl-carousel .owl-stage {width:100%!important;}	
	.education-camp-slider .owl-stage-outer .owl-stage .owl-item {
    width: 100%!important;
}
	.cedi-academy-education-camp .education-camp-slider .item .image .ec-main {
    display: block;
    width: 100%;
}
	.cedi-academy-education-camp .education-camp-slider .item .image .ec-main .ec-title {
    display: block;
    width: 100%;
    text-align: center;
}
	ul.nav-pills {
		margin:10px 0 0;
   border-bottom: 0;

} 
	.nav-pills > li {
    float: none;
}
	ul.navbar-nav.top-menu {display:none;}
	
	.header-top .logo {
		display: inline-block;
		width: 105px!important;
		float: right;
		}
	.header-top.header-static .logo {

    width: 65px!important;

}
	.navbar-toggle .icon-bar {
    display: block;
    width: 31px;
    height: 4px;
    border-radius: 7px;
    background-color: #fff!important;
    padding: 3px 0;
}
	.navbar-toggle {
    position: relative;
    float: left!important;
    padding: 9px 10px;
    margin-top: 5px!important;
    margin-right: 0!important;
    margin-bottom: 0!important;
    background-color: transparent;
    background-image: none;
    border: 0;
    border-radius: 0;
}
	nav.navbar .pull-right{float:none!important;}
	
	ul.navbar-nav li {
    	background: #fff;
		border:1px solid #000;
		margin:5px 0;
}

	ul.navbar-nav li a {
    display: block;
    color: #000!important;
    padding: 14px 14px;
    font-family: 'GothamXNarrowBook';
    font-size: 16px;
    text-transform: uppercase;
    margin: 0;
}
	.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: transparent!important;
}
	.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: transparent;
    box-shadow: none;
}
	
	.sponsor-slider .owl-stage-outer .owl-stage .owl-item {
    width: 50%!important;
}
.cedi-academy-sponsor .sponsor-slider .item {
    padding: 15px 10px;
    width: 100%;
}
	.cedi-academy-sponsor .sponsor-slider .item .sponsor {
    padding: 6px;
    text-align: center;
    width: 100%;
    text-align: center;
    height: 110px;
}
	.cedi-academy-sponsor .sponsor-slider .item .sponsor a img {
    transition: .3s;
    width: auto;
    max-width: 100%;
    max-height: 100px;
}
	.cedi-academy-staff .staff-slider .item span {
		display:inline-block; height:60px;
	}
	
	
}













/* Branch */
.cedi-academy-branch {
    background-color: #f3f3f3;
    cursor: default;
    background-image: url(https://vespiis.com/content/assets/images/cedi-branch-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    min-height: 1020px;
}

.cedi-academy-branch .branch-slider .item {
    padding: 15px;
}

.cedi-academy-branch .branch-slider .item .image {
    display: block;
    width: 100%;
    height: 250px;
    background-position: top center;
    background-size: cover;
    border-radius: 6px;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.cedi-academy-branch .branch-slider .item .image .address {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: .3s;
    padding: 20px;
}

.cedi-academy-branch .branch-slider .item .image .address * {
    color: #FFF;
    display: block;
    text-align: center;
    padding: 2px;
}

.cedi-academy-branch .branch-slider .item .image .address .address-title {
    font-weight: bold;
    font-size: 20px;
}

.cedi-academy-branch .branch-slider .item .image .address .address-title-sub {
    border-bottom: 1px solid #FFF;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.cedi-academy-branch .branch-slider .item .image .address .address-phone {
    font-weight: bold;
    padding: 10px 0px;
}

.cedi-academy-branch .branch-slider .owl-item:first-child .image .address {
    opacity: 1;
}

.cedi-academy-branch .branch-slider .item:hover .image .branch-main .branch-circle {
    background-color: #d05217;
}

.cedi-academy-branch .branch-slider .item .image .branch-main {
    position: absolute;
    bottom: -20px;
    right: 140px;
    display: block;
}

.cedi-academy-branch .branch-slider .item .image .branch-main .branch-circle {
    position: absolute;
    bottom: 0px;
    left: -25px;
    z-index: 1;
    background-color: #ea6324;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    bottom: -140px;
    right: 80px;
    transition: .3s;
}

.cedi-academy-branch .branch-slider .item .image .branch-main .branch-title {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 2;
    display: block;
    width: 140px;
    color: #FFF;
    font-family: 'GothamXNarrowMedium';
    font-size: 22px;
    text-align: right;
    padding-right: 10px;
    padding-bottom: 25px;
    text-transform: uppercase;
}

.cedi-academy-branch .branch-slider-bar {
    white-space: nowrap;
}

.cedi-academy-branch .branch-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.cedi-academy-branch .branch-slider-bar i:hover {
    background-color: #eb6324;
    color: #FFF;
    border-color: #eb6324;
}

.cedi-academy-branch .branch-slider-bar .bar-left {
    padding-right: 1px;
}

.cedi-academy-branch .branch-slider-bar .bar-right {
    padding-left: 1px;
}

.cedi-academy-branch .owl-nav {
    display: none;
}

/* Franchise */
.cedi-academy-franchise {
    background-color: #FFF;
    cursor: default;
}

.cedi-academy-franchise .franchise-slider .item {
    padding: 15px;
}

.cedi-academy-franchise .franchise-slider .item .image {
    display: block;
    width: 100%;
    height: 250px;
    background-position: top center;
    background-size: cover;
    border-radius: 6px;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.cedi-academy-franchise .franchise-slider .item .image .address {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: .3s;
    padding: 20px;
}

.cedi-academy-franchise .franchise-slider .item .image .address * {
    color: #FFF;
    display: block;
    text-align: center;
    padding: 2px;
}

.cedi-academy-franchise .franchise-slider .item .image .address .address-title {
    font-weight: bold;
    font-size: 20px;
}

.cedi-academy-franchise .franchise-slider .item .image .address .address-title-sub {
    border-bottom: 1px solid #FFF;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 18px;
}

.cedi-academy-franchise .franchise-slider .item .image .address .address-phone {
    font-weight: bold;
    padding: 10px 0px;
}

.cedi-academy-franchise .franchise-slider .owl-item:first-child .image .address {
    opacity: 1;
}

.cedi-academy-franchise .franchise-slider-bar {
    white-space: nowrap;
}

.cedi-academy-franchise .franchise-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.cedi-academy-franchise .franchise-slider-bar i:hover {
    background-color: #eb6324;
    color: #FFF;
    border-color: #eb6324;
}

.cedi-academy-franchise .franchise-slider-bar .bar-left {
    padding-right: 1px;
}

.cedi-academy-franchise .franchise-slider-bar .bar-right {
    padding-left: 1px;
}

.cedi-academy-franchise .owl-nav {
    display: none;
}

/* Academy Contact */
.cedi-academy-contact {}

.cedi-academy-contact .address li a {
    display: inline-block;
    font-size: 16px;
    margin-bottom: 15px;
}

.cedi-academy-contact .address li a i {
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

.cedi-academy-contact .social-media {
    margin-top: 20px;
}

.cedi-academy-contact .social-media li a {
    display: inline-block;
    border: 2px solid #767676;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 6px;
    font-size: 18px;
    margin-right: 20px;
}

.cedi-academy-contact .social-media li:last-child a {
    margin-right: 0px;
}

.cedi-academy-contact .social-media li a:hover {
    border-color: #ea6224;
}

.cedi-academy-contact .social-media li a i {
    width: 100%;
    text-align: center;
    transition: .3s;
}

.cedi-academy-contact .social-media li a:hover i {
    color: #ea6224;
}

.cedi-academy-contact .map {
    border: 1px solid #eceaeb;
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
}

.cedi-academy-contact .map iframe {
    border: 0px;
    width: 100%;
    height: 100%;
}

/* Traning Staff */
.cedi-academy-staff {
    /* background-color: #FFF; */
    background-color: #f3f3f3;
}

.cedi-academy-staff .staff-slider .item {
    padding: 15px;
    text-align: center;
    cursor: default;
}

.cedi-academy-staff .staff-slider .item .image {
    display: block;
    width: 170px;
    height: 170px;
    background-position: top center;
    background-size: cover;
    border-radius: 50%;
    transition: .3s;
    margin: auto;
    border: 2px solid #FFF;
}

.cedi-academy-staff .staff-slider .item:hover .image {
    border-color: #eb6324;
}

.cedi-academy-staff .staff-slider .item:hover h5 {
    color: #eb6324;
    transition: .3s;
}

.cedi-academy-staff .staff-slider .item h5 {
    margin: 20px 0px 10px 0px;
    font-size: 20px;
    font-family: 'GothamXNarrowMedium';
    font-weight: bold;
}

.cedi-academy-staff .staff-slider .item p {
    font-family: 'GothamXNarrowLight';
    font-size: 16px;
}

.cedi-academy-staff .title-right-right {
    text-align: center;
    /* vertical-align: bottom; */
}

.cedi-academy-staff .staff-slider-bar {
    white-space: nowrap;
}

.cedi-academy-staff .staff-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.cedi-academy-staff .staff-slider-bar i:hover {
    background-color: #eb6324;
    color: #FFF;
    border-color: #eb6324;
}

.cedi-academy-staff .staff-slider-bar .bar-left {
    padding-right: 1px;
}

.cedi-academy-staff .staff-slider-bar .bar-right {
    padding-left: 1px;
}

.cedi-academy-staff .owl-nav {
    display: none;
}








/*-------- alt yapi --------*/




/* Personel Traning */

article.cedi-academy-personel-traning p {
	font-size: 14px;
    line-height: 30px;
    width: 98%;}
article.cedi-academy-personel-traning .owl-stage-outer .owl-stage {    text-align: center;
    margin: 0 auto;}
.cedi-academy-personel-traning {
    background-color: #ffffff;
}

.cedi-academy-personel-traning .personel-traning-slider .item {
    padding: 0;
    text-align: center;
    cursor: default;
	margin:20px 5px;
}

.cedi-academy-personel-traning .personel-traning-slider .item .image {
    display: block;
    width: 155px;
    height: 155px;
    background-position: top center;
    background-size: cover;
    border-radius: 50%;
    transition: .3s;
    margin: auto;
    border: 2px solid #FFF;
}

.cedi-academy-personel-traning .personel-traning-slider .item:hover .image {
    border-color: #eb6324;
}

.cedi-academy-personel-traning .personel-traning-slider .item:hover h5 {
    color: #eb6324;
    transition: .3s;
}

.cedi-academy-personel-traning .personel-traning-slider .item h5 {
    margin: 20px 0px 10px 0px;
    font-size: 20px;
    font-family: 'GothamXNarrowMedium';
    font-weight: bold;
}

.cedi-academy-personel-traning .personel-traning-slider .item p {
    font-family: 'GothamXNarrowLight';
    font-size: 16px;
}

.cedi-academy-personel-traning .title-right-right {
    text-align: center;
    /* vertical-align: bottom; */
}

.cedi-academy-personel-traning .personel-traning-filter li {
    transition: .3s;
    background-color: #FFF;
}

.cedi-academy-personel-traning .personel-traning-filter li:first-child {
    transition: .3s;
    /* border-top-left-radius: 18px; */
    /* border-top-right-radius: 18px; */
}

.cedi-academy-personel-traning .personel-traning-filter li:last-child {
    transition: .3s;
    /* border-bottom-left-radius: 18px; */
    /* border-bottom-right-radius: 18px; */
}

.cedi-academy-personel-traning .personel-traning-filter li.active {
    background-color: #eb6225;
}
.cedi-academy-personel-traning .personel-traning-filter li.active a{
    color: white;
	border-bottom:0;
}

.cedi-academy-personel-traning .personel-traning-filter li a {
    display: block;
    padding: 20px;
    margin: 0px 20px;
    font-weight: bold;
    border-bottom: 1px solid #e4e4e4;
    text-transform: uppercase;
}

.cedi-academy-personel-traning .personel-traning-filter li:last-child a {
    border-bottom: 0px;
}

/*.cedi-academy-personel-traning .personel-traning-filter:hover li {
    background-color: #FFF;
}

.cedi-academy-personel-traning .personel-traning-filter li:hover {
    background-color: #e2e2e2;
}*/

.cedi-academy-personel-traning .personel-traning-slider-bar {
    white-space: nowrap;
}

.cedi-academy-personel-traning .personel-traning-slider-bar i {
    border: 1px solid #000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.cedi-academy-personel-traning .personel-traning-slider-bar i:hover {
    background-color: #eb6324;
    color: #FFF;
    border-color: #eb6324;
}

.cedi-academy-personel-traning .personel-traning-slider-bar .bar-left {
    padding-right: 1px;
}

.cedi-academy-personel-traning .personel-traning-slider-bar .bar-right {
    padding-left: 1px;
}

.cedi-academy-personel-traning .owl-nav {
    display: none;
}

/* Academy Gallery */
.cedi-academy-gallery {
    background-color: #efefef;
}

.cedi-academy-gallery .btn {
    width: 100%;
}

.cedi-academy-gallery .image-container .image-container-item:first-child .photo-container {
    height: 200px;
}


/* MOBILE MENU
--------------------------------------------------------*/
.page-mobile-menu {
    display: none;
}

.mobile-menu {
    position: absolute;
    overflow: hidden;
    margin-top: 5px;
    z-index: 999;
    min-width: 373px;
    left: -380px;
}

.menu-icon-wrapper {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 34px;
    top: -20px;
    left: -20px;
    margin: 2em;
    pointer-events: none;
    transition: 0.1s;
    display: none;
}

.menu-icon-wrapper.scaled {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.menu-icon-wrapper svg {
    position: absolute;
    top: -33px;
    left: -33px;
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.menu-icon-wrapper svg path {
    stroke: #fff;
    stroke-width: 60px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: transparent;
}

.menu-icon-wrapper .menu-icon-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    pointer-events: auto;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

.menu-icon-wrapper .menu-icon-trigger:hover,
.menu-icon-wrapper .menu-icon-trigger:focus {
    outline: none;
}

.dummy__item {
    pointer-events: all;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.dummy__item {
    -webkit-transform: translate3d(-100%, 0, 0) translate3d(-2em, 0, 0) scale3d(0.5, 1, 1);
    transform: translate3d(-100%, 0, 0) translate3d(-2em, 0, 0) scale3d(0.5, 1, 1);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.dummy__item a {
    display: block;
    color: #000;
    /* border-radius: 4px; */
    background: rgb(255, 255, 255);
    min-width: 100%;
    margin: 5px;
    padding: 8px 16px;
    border: 1px solid #000;
    font-family: 'GothamXNarrowMedium';
    font-size: 18px;
    /* margin-left: 20px; */
    text-transform: uppercase;
    text-align: center;
}

/*.dummy__item a:hover { background-color: rgba(0, 0, 0, 0.8); }*/
.dummy--active .dummy__item {
    -webkit-transition-timing-function: cubic-bezier(0.56, 1.19, 0.2, 1.05);
    transition-timing-function: cubic-bezier(0.56, 1.19, 0.2, 1.05);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.dummy__item:nth-child(4),
.dummy--active .dummy__item:first-child {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.dummy__item:nth-child(3),
.dummy--active .dummy__item:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.dummy__item:nth-child(2),
.dummy--active .dummy__item:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.dummy__item:first-child,
.dummy--active .dummy__item:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}


/* FOOTER
--------------------------------------------------------*/
footer {
    background-color: #000;
    color: #FFF;
    padding: 60px 0px;
}

footer .container {
    position: relative;
}

footer .container .cedi-osman {
    position: absolute;
    right: 0px;
    bottom: -60px;
}

footer .title-left .title-real-bar {
    width: 270px;
}

footer .title-left h4 {
    color: #FFF;
}

footer .description {
    font-family: 'GothamXNarrowLight';
    font-size: 16px;
}

footer .copyright {
    font-family: 'GothamXNarrowBook';
    font-size: 12px;
    margin-top: 22px;
}

footer .copyright a {
    color: #eb6324;
    font-weight: bold;
}

/* Foot Menu */
footer .foot-menu {
    margin-top: 16px;
}

footer .foot-menu li a {
    display: block;
    border: 1px solid #FFF;
    border-radius: 25px;
    color: #FFF;
    padding: 8px 26px;
    font-size: 12px;
    margin: 0px 6px;
    font-family: 'LucidaGrande';
    text-transform: uppercase;
}

footer .foot-menu li:first-child a {
    margin-left: 0px;
}

footer .foot-menu li a.active,
footer .foot-menu li a:hover {
    background-color: #eb6324;
    border-color: #eb6324;
}

footer .foot-menu li a.circle {
    border-radius: 50%;
    padding: 8px 10px;
}

footer .foot-menu li a i {
    margin-right: 5px;
}

/* Main Menu */
footer .main-menu {
    margin-top: 25px;
}

footer .main-menu li a {
    display: block;
    color: #FFF;
    padding: 8px 14px;
    font-family: 'GothamXNarrowBook';
    font-size: 16px;
    text-transform: uppercase;
}

footer .main-menu li a:hover {
    color: #eb6324;
}

footer .main-menu li:first-child a {
    padding-left: 0px;
}





/* -------emre ---------*/
article.cedi-academy-main .description {
    width: 100%;
}

article.cedi-academy-main .description span.title {
    display: block;
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -2px;
}

article.cedi-academy-main .description span.text {
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: normal;
    color: #000;
}


article.cedi-academy-branch ul.nav-tabs {
    list-style-type: none;
    background: #fff;
    border-radius: 20px;
    width: 100%;
    border: 0;
    overflow: hidden;
}

article.cedi-academy-branch ul.nav-tabs li {
    float: none;
    padding: 0;
}

article.cedi-academy-branch ul.nav-tabs li a {
    height: 100%;
    display: inline-block;
    width: 100%;
    height: 60px;
    padding: 0;
    line-height: 60px;
    text-indent: 50px;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    border: 0;
}

article.cedi-academy-branch ul.nav-tabs li a::after {
    content: "";
    position: relative;
    border-bottom: 1px solid #f5f5f5;
    width: 80%;
    left: 50%;
    right: 50%;
    margin: 0 0 0 -40%;
    display: block;
}


article.cedi-academy-branch ul.nav-tabs li.active a {
    background: #e2e2e2;
    border: 0;
    border-radius: 0;
}

article.cedi-academy-branch ul.branch {
    list-style-type: none;
    padding: 0;
    margin: 0;

}

article.cedi-academy-branch ul.branch li {
    float: left;
    width: calc(25% - 10px);
    text-align: center;
    margin: 0 10px 20px 0;
    background: #fff;
    overflow: hidden;
    border-radius: 15px;

}

article.cedi-academy-branch .active {
    padding: 0 !important;
}

article.cedi-academy-branch ul.branch li div.img,
article.cedi-academy-branch ul.branch li.franchise .img {
    width: 46%;
    padding: 23px 0 0;
    margin: 0 auto;
    height: 130px;
}

article.cedi-academy-branch ul.branch li div.img img {
    width: 100%;
}

article.cedi-academy-branch ul.branch li div.text {
    padding: 20px 10px;
    font-size: 15px;
    color: #031f55;
    text-align: center;
    font-weight: 500;
}

article.cedi-academy-branch ul.branch li.franchise {
    text-align: center;
}



article.cedi-academy-branch ul.branch li.franchise .text {
    font-weight: 500;
    font-size: 15px;
}

.modal-header-academy {
    border-top: 0 !important;
}

.modal-body-academy h2 {
    font-size: 17px;
    font-weight: bold;
    width: 100%;
    display: inline-block;
    margin: 10px 0;
}

.modal-body-academy div {
    font-size: 15px;
    font-weight: normal;
    margin: 5px 0;
}

.modal-body-academy div span {
    font-size: 15px;
    font-weight: bold;
    max-width: 100px;
}

.modal-dialog .modal-content .closea {

    top: 2px !important;

}

.modal-dialog-academy {
    width: 45%;
    margin: 50px auto;
}

.modal-body-academy .img,
.modal-body-academy .img img {
    width: 100%;
}

.modal-body-academy .img a {
    font-size: 13px;
    text-align: center;
}

.modal {
    padding: 0;
}

.modal-open .modal {
    background: rgba(0, 0, 0, 0.8);
    padding: 0 !important;
    margin: 0;
}
