:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --red2: #e31e24;
    --red3: #b60018;
}

html {
    overflow: auto;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000 !important;
    text-align: left;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #000;
}

body::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-right: 2px solid #001D38;
    border-left: 2px solid #001D38;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #e31e24;
    border-top-color: #ffcccc;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/

.navbar-light {
    background: #fff !important;
    /*  box-shadow: 0px 2px 10px rgba(0,0,0,.3);*/
    border-bottom: 1px solid #e1e1e1;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 998 !important;
    width: 100%;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-light .navbar-toggler {
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    outline: 0;
    color: #fff;
}

ul.navbar-nav li {
    margin: 0 5px;
    padding: 0;
}

ul.navbar-nav li a {
    color: #555 !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    padding: 30px 5px !important;
    transition: all 0.5s ease;
    border-bottom: solid 3px transparent;
}

ul.navbar-nav li i {
    padding-right: 5px;
}

ul.navbar-nav li a:hover,
ul.navbar-nav li a.active {
    color: #e31e24 !important;
    background: #fff !important;
    border-bottom: solid 3px #e31e24;
}

/*--------------------------------------------------------------
# Dropdown
--------------------------------------------------------------*/

.dropdown-menu {
    background: #e31e24 !important;
    margin-top: 0px;
    border: 0;
    padding: 0;
    border-radius: 0;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    left: 0;
    box-shadow: 0 10px 10px 0px rgba(57, 63, 72, 0.3);
    transition: all 0.3s ease;
    z-index: 9995;
}

.dropdown-menu a.dropdown-item {
    color: #fff !important;
    border-bottom: solid 1px #e31e24;
    padding: 10px 20px !important;
    transition: all 0.8s ease;
}

.dropdown-menu a.dropdown-item:hover,
.dropdown-menu a.dropdown-item.active {
    background: #e31e24 !important;
    color: #fff !important;
}

.dropdown-item:last-child {
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    border-bottom: none;
}

.dropdown-item i {
    margin-right: 7px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background-color: #f5f7fb;
    border-bottom: solid 1px #ddd;
    vertical-align: middle !important;
    padding: 12px 0;
}

#header .col-md-6 {
    margin: auto 0;
}

#header h1 {
    color: #333;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}

#header p {
    color: #7a7977;
    font-size: 18px;
    font-weight: 400;
    margin: 0 !important;
    padding: 0;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/

nav.breadcrumb {
    background: none;
    padding: 0;
    margin: auto 0;
    float: right;
}

nav.breadcrumb .breadcrumb-item {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    outline: 0;
    transition: all 0.5s ease;
}

.breadcrumb .breadcrumb-item:hover,
.breadcrumb-item.active {
    text-decoration: none;
    color: #e31e24 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    font: normal normal normal 14px/1 FontAwesome;
    color: #333;
    content: "\f061";
    display: inline-block;
    padding-right: 0.4rem;
    padding-left: 0.4rem;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding: 40px 0;
    background: #fff;
}

.about h1 {
    font-size: 50px;
    font-weight: 500;
    color: #333;
}

.about p {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    /* line-height: 30px; */
}

.kampanya {
    background: #f5f5f5;
    padding: 50px 0;
    border-top: solid 1px #ddd;
}



.sertefika {
    background: #f5f5f5;
    text-align: center;
    border-top: solid 1px #ddd;
}

.sertefika .col-md-3 {
    padding: 20px 0 !important;
    border-left: solid 1px #ddd;
}

.sertefika .col-md-3:last-child {
    border-right: solid 1px #ddd;
}

.sertefika .col-md-3:hover {
    background: rgba(51, 51, 51, 0.1);
}

.sertefika i {
    width: 80px;
    height: 80px;
    line-height: 60px;
    display: inline-block;
    padding: 10px;
    font-size: 35px;
    font-weight: 500;
    color: #333;
    text-align: center;
    border: solid 2px #333;
    border-radius: 50px;
}

.sertefika span {
    display: block;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #222;
    text-align: center;
}

.hakkimizda {
    background: #fff;
    padding: 20px 0;
}

.hakkimizda h1 {
    font-size: 50px;
    font-weight: 500;
    color: #333;
}

.hakkimizda p {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    text-align: justify;
    line-height: 30px;
}

.hakkimizda img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.services h1 {
    color: #fff;
    font-size: 50px;
}

.services p {
    color: #ddd;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 50px;
}

.services .card {
    border: none;
    margin: 15px 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 15px rgba(12, 35, 34, 0.2);
    transition: all 0.3s;
}

.services .card:hover {
    box-shadow: 0 8px 15px 5px rgba(231, 39, 39, 0.5);
}

.services .card .card-img-top {
    border-radius: 0 !important;
    background: #ccc;
}

.btn {
    background: #e31e24;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding: 5px 20px;
    border-radius: 0;
    border: solid 2px #e31e24;
    text-transform: capitalize;
    border-radius: 50px;
    transition: all 0.3s linear;
}

.btn:hover {
    background: transparent;
    color: #e31e24;
    border: solid 2px #e31e24;
}

.btn-outline {
    background: transparent;
    color: #e31e24;
    font-size: 15px;
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 0;
    border: solid 2px #e31e24;
    text-transform: capitalize;
    border-radius: 50px;
    transition: all 0.5s linear;
}

.btn-outline:hover {
    text-decoration: none;
    background: #e31e24;
    color: #fff;
    border: solid 2px #e31e24;
}

#urundetay {
    padding: 50px 0;
    background: #fff;
}

/*--------------------------------------------------------------
# Referanslar
--------------------------------------------------------------*/

.referanslar {
    background: #fff;
}

.referanslar .col-6.col-sm-6.col-md-2.col-lg-2 {
    width: 100%;
    margin: 0;
    padding: 0;
}

.referanslar img {
    background: #fff;
    cursor: pointer;
    filter: grayscale(100%);
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    transition: all 0.1s ease-in-out;
}

.referanslar img:nth-child(4n) {
    border-right: solid 1px #ddd !important;
    border-bottom: solid 1px #ddd !important;
}

.referanslar img:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

#portfolio {
    background: #fff;
    padding: 50px 0;
}

#portfolio .col-6.col-sm-6.col-md-3.col-lg-4 {
    width: 100% !important;
    overflow: hidden;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

#portfolio img {
    width: 100% !important;
    cursor: pointer;
    transition: all ease-in-out 0.4s;
}

#portfolio img:hover {
    transform: scale(1.1);
}

#contact {
    background: url('/theme/eleska/img/map.png') no-repeat 100px 20px, #fff;
    padding: 80px 0;
}

#contact h3 {
    padding: 0 0 0 60px;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #e31e24;
}

#contact hr {
    background: #fafafa;
}

#contact .info i {
    font-size: 20px;
    background: #e31e24;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

#contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #e31e24;
}

#contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    color: #555;
}

#contact iframe {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    border-bottom: solid 1px #ddd;
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------
# Web
--------------------------------------------------------------*/

#nedenbiz {
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
}

#nedenbiz .section-title {
    text-align: center;
    padding-bottom: 30px;
}

#nedenbiz .section-title h1 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #054a85;
}

#nedenbiz .section-title p {
    margin-bottom: 0;
    font-size: 20px;
    color: #555;
}

#nedenbiz .icon-box {
    margin-bottom: 20px;
    padding: 50px 40px;
    border-radius: 6px;
    background: #fff;
    width: 100%;
    cursor: pointer;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
}

#nedenbiz .icon-box:hover {
    box-shadow: 0px 2px 15px rgba(5, 87, 158, 0.5);
}

#nedenbiz .icon-box i {
    float: left;
    color: #f6b024;
    font-size: 40px;
}

#nedenbiz .icon-box h3 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    color: #05579e;
}

#nedenbiz .icon-box h3:hover {
    color: #0880e8;
}

#nedenbiz .icon-box p {
    color: #333;
    margin-left: 70px;
    line-height: 24px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Webref
--------------------------------------------------------------*/

#webref {
    background: #001D38;
    padding: 60px 0;
    overflow: hidden;
}

#webref .section-title {
    text-align: center;
    padding-bottom: 30px;
}

#webref .section-title h1 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #fff;
}

#webref .section-title p {
    margin-bottom: 0;
    font-size: 20px;
    color: #ddd;
}

#webref .card {
    text-align: center;
    background: #fff;
    border: none;
    border-radius: 10px !important;
    padding: 10px;
    margin: 15px 0 !important;
}

/*--------------------------------------------------------------
# Web Durum
--------------------------------------------------------------*/

#webref .card.web-durum {
    text-align: center;
    padding: 5px !important;
    position: relative;
    border-radius: 10px !important;
}

.btn-durum {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 10px;
    z-index: 15;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    font-style: italic;
    font-family: "Times New Roman";
    font-weight: 600;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 3px;
}

/* Card Bg */

#webref .card.web-durum.drm-yellow {
    border: solid 5px #ffc107;
    color: #333;
}

#webref .card.web-durum.drm-green {
    border: solid 5px #28a745;
    color: #333;
}

#webref .card.web-durum.drm-blue {
    border: solid 5px #007bff;
    color: #333;
}

/* Buton Bg */

.btn-durum.drm-yellow {
    background: #ffc107;
    color: #f00;
}

.btn-durum.drm-green {
    background: #28a745;
    color: #fff;
}

.btn-durum.drm-blue {
    background: #007bff;
    color: #fff;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    background-color: #f7f7f7;
    padding: 50px 0;
}

.clients img {
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
    border: solid 1px #ddd;
    transition: all 0.5s ease;
}

.clients img:hover {
    cursor: pointer;
    -webkit-filter: none;
    filter: none;
    transform: scale(1.1);
}

#footer {
    background-color: #1c2331;
    color: #c3c3c3;
    position: relative;
    padding-top: 70px;
    padding-bottom: 20px;
}

.footer-text {
    padding-bottom: 35px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    font-size: 22px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-widget h3::before,
#footer .footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
}

#footer .footer-widget h3::before {
    right: 0;
    background: rgba(231, 39, 39, 0.2);
}

#footer .footer-widget h3::after {
    background: #e31e24;
    width: 60px;
}

.footer-widget p {
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-widget ul li {
    display: block;
    width: 100%;
    float: left;
    padding: 5px 0;
}

.footer-widget ul li i {
    color: #e31e24;
    margin-right: 10px;
    transition: all 0.5s ease;
}

.footer-widget ul li a:hover i {
    color: #aaaab3;
    margin-right: 10px;
}

.footer-widget ul li a {
    font-size: 15px;
    color: #aaaab3;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.5s ease;
}

.footer-widget ul li a:hover {
    color: #e31e24 !important;
}

.copyright {
    padding: 30px 0 15px;
    border-top: solid 1px #e31e24;
    vertical-align: middle !important;
}

.copyright p {
    text-align: center;
    color: #aaaab3;
    font-size: 15px;
    margin-bottom: 0;
}

.gototop {
    display: none;
    background: transparent;
    position: fixed;
    bottom: 60px;
    right: 20px;
    padding: 10px 12px;
    border-radius: 5px;
    text-align: center;
    z-index: 3;
}

.gototop:hover {
    opacity: 0.8;
}

.gototop-pist {
    background: url(/theme/eleska/img/arrow-up-bg.png) no-repeat center center;
    position: absolute;
    right: 15px;
    bottom: 10px;
    width: 70px;
    height: 50px;
    z-index: 2;
}

ul.services-nav {
    margin: auto 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
    z-index: 9995;
    background: #333;
}

ul.services-nav li {
    float: left;
}

ul.services-nav li i {
    padding-right: 5px;
}

#categories {
    background: #222;
}


img.slider.img-fluid {
    width: 100%;
    height: auto;
    max-height: 650px;
    pointer-events: none;
    object-fit: cover;
}


@media (max-width: 576px) {
img.slider.img-fluid {
    width: 100%;
    height: 350px;
    max-height: 350px;
}
}

span.carousel-control-next-icon, span.carousel-control-prev-icon {
    background-color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: 22px;
}


.carousel-item .slidertit {
    position: absolute;
    top: 25%;
    left: 10%;
    right: 10%;
}

.carousel-item .slidertit h2 {
    color: white;
    padding: 10px;
    text-shadow: rgb(0, 0, 0) 2px 2px;
    background-color: rgba(0, 0, 0, 0.43);
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
}

.carousel-item .slidertit h3 {
    color: white;
    padding: 10px;
    text-shadow: rgb(0, 0, 0) 2px 2px;
    background-color: rgba(0, 0, 0, 0.43);
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
	max-width: 650px;
}

@media (max-width: 576px) {
div.carousel-item .slidertit {
    position: absolute;
    top: 10%;
    left: 5%;
    right: 5%;
}
}

.card-body h4.card-title.text-dark {
    height: 43px;
    overflow: hidden;
    font-size: 18px;
}


.services .card img {
    height: 230px;
    object-fit: cover;
}

img.imgabout.img-fluid {
    width: 100%;
    max-height: 350px;
    margin-top: 25px;
    border-radius: 5px;
    box-shadow: 15px 10px 15px 5px rgba(31, 28, 28, 0.34);
}

h2.ititle {
    color: black;
    border-bottom: solid 1px #860a0a;
}

.hemenara { position: fixed; bottom: 0; width: 100%; text-align: center; background-color: white; z-index: 9999999;display: inline-flex; } 
.hemenara .tel { padding: 10px; width: 50%; background-color: #21aa1d; display: block; float: left; color: white;flex: 1; } 
.hemenara .wp { padding: 10px; width: 50%; background-color: #1fa566; display: block; float: left; color: white;flex: 1; } 
.hemenara .tel span, .hemenara .wp span,.hemenara .tel span:hover, .hemenara .wp span:hover {display: inline-block;font-size: 15px;font-weight: 600;color: white;} 
.hemenara .tel img { height: 25px; width: 25px; margin-right: 10px; margin-top: -2px;} 
.hemenara .wp img { height: 25px; margin-right: 10px; margin-top: -2px;}

img.post-image {width: 100%;height: auto;max-height: 400px;object-fit: cover;}
.top-bar {
   background-color: #008bd2;
   color: #ffffff;
   display: block;
   position: relative;
   margin: 0;
   padding: 0;
}
.top-bar .top-bar-left a,.top-bar .top-bar-left a:hover, {
    color: #ffffff;
}

.top-bar a {
    font-size: 15px;
    color: #ffffff;
}

.top-bar a:hover {
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
}

ul.social li {
    display: inline-block;
}
@media (max-width: 576px) {
ul.social {
    width: 100%;
}
div.lefttop {
    text-align:center;
    float: none;
}
}

.top-bar-left {
    width: 100%;
    display: inline-block;
    padding-top: 10px;
}

ul.social {
    float: right;
    display: inline-block;
    margin-bottom: 0;
}

.lefttop {
    text-align: left;
    float: left;
}

.top-bar .social a, .top-bar .socialize a {
    display: inline-block;
    margin: 0 2px;
    padding: 0 10px;
}

.logox {width: 100% !important;max-width: 225px !important;max-height: 70px !important;}
@media (max-width: 992px) {
.logox {height: 50px !important;padding: 5px;}
}


.galeri a img {width: 100%;height: 200px;margin-bottom: 30px;box-shadow: 3px 1px 9px 2px rgba(31, 28, 28, 0.21);border-radius: 5px;object-fit: cover;}
.posts { background-color: #f5f7fb; } .yazi { background-color: white; padding: 40px 35px; }

.pagination {  display: inline-block;  padding-left: 0;  margin: 10px 0;  border-radius: 4px}.pagination>li {  display: inline}.pagination>li>a,.pagination>li>span {  position: relative;  float: left;  padding: 8px 12px;  line-height: 1.42857143;  text-decoration: none;  color: #1fb0d3;  background-color: #fff;  border: 1px solid #ddd;  margin-left: -1px}.pagination>li:first-child>a,.pagination>li:first-child>span {  margin-left: 0;  border-bottom-left-radius: 4px;  border-top-left-radius: 4px}.pagination>li:last-child>a,.pagination>li:last-child>span {  border-bottom-right-radius: 4px;  border-top-right-radius: 4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus {  z-index: 2;  color: #1fb0d3;  background-color: #eee;  border-color: #ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus {  z-index: 3;  color: #1fb0d3; background-color:#f5f5f5;border-color:#ddd;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus {  color: #aea79f;  background-color: #fff;  border-color: #ddd;  cursor: not-allowed}.pagination-lg>li>a,.pagination-lg>li>span {  padding: 14px 16px;  font-size: 18px;  line-height: 1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span {  border-bottom-left-radius: 6px;  border-top-left-radius: 6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span {  border-bottom-right-radius: 6px;  border-top-right-radius: 6px}.pagination-sm>li>a,.pagination-sm>li>span {  padding: 5px 10px;  font-size: 12px;  line-height: 1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span {  border-bottom-left-radius: 3px;  border-top-left-radius: 3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span {  border-bottom-right-radius: 3px;  border-top-right-radius: 3px}
.refimg { height: 250px; width: 100%; }

.video img {
    width: 100%;
    height: 300px;
    margin: 10px;
    position: relative;
}

.video a i {
    position: absolute;
    text-align: center;
    top: 45%;
    font-size: 50px;
    color: white;
}



