@font-face {
    font-family: 'LatoLatinWeb';
    src: url('../fonts/LatoLatin-Bold.eot');
    src: url('../fonts/LatoLatin-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/LatoLatin-Bold.woff2') format('woff2'), /* Modern Browsers */ url('../fonts/LatoLatin-Bold.woff') format('woff'), /* Modern Browsers */ url('../fonts/LatoLatin-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'LatoLatinWebLight';
    src: url('../fonts/LatoLatin-Light.eot');
    src: url('../fonts/LatoLatin-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/LatoLatin-Light.woff2') format('woff2'), /* Modern Browsers */ url('../fonts/LatoLatin-Light.woff') format('woff'), /* Modern Browsers */ url('../fonts/LatoLatin-Light.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'LatoLatinWebMedium';
    src: url('../fonts/LatoLatin-Medium.eot');
    src: url('../fonts/LatoLatin-Medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/LatoLatin-Medium.woff2') format('woff2'), /* Modern Browsers */ url('../fonts/LatoLatin-Medium.woff') format('woff'), /* Modern Browsers */ url('../fonts/LatoLatin-Medium.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'LatoLatinWeb';
    src: url('../fonts/LatoLatin-Regular.eot');
    src: url('../fonts/LatoLatin-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/LatoLatin-Regular.woff2') format('woff2'), /* Modern Browsers */ url('../fonts/LatoLatin-Regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/LatoLatin-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

:root {
    --theme-color: #1b3178;
    --theme-color-2: #c51c21;
    --theme-color-3: #344a91;
    --theme-color-4: #3a6ee8;
    --bg-color: #fff;
    --text-color: #333e48;
    --font-family: "LatoLatinWeb", sans-serif;
    --body-font-size: 16px;
}

html,
body {
    height: 100%;
}

/*Genel*/
body {
    webkit-text-size-adjust: 100%;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-feature-settings: "kern" on, "liga" on, "calt" on, "onum", "pnum";
    -webkit-font-smoothing: subpixel-antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: var(--body-font-size);
}

/* Genel */
a {
    color: #1b3178; color: var(--theme-color);
}

a:hover {
    text-decoration: none;
    color: black;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--theme-color-3);
}

.btn-arat {
    border-radius: 0;
    font-weight: bold;
    padding: 15px;
    color: white;
    border-color: #3a6ee8; border-color: var(--theme-color-4);
    background-color: #3a6ee8; background-color: var(--theme-color-4);
}

.btn-arat:hover {
    color: white;
    border-color: #344a91; border-color: var(--theme-color-3);
    background-color: #344a91; background-color: var(--theme-color-3);
}

.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #00000075;
    z-index: 4;
    font-size: 14px;
    color: black;
}

::selection {
    color: white;
    background: var(--theme-color);
}

.back-to-top {
    display: none;
    background-color: #344a91; background-color: var(--theme-color-3);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s;
    z-index: 1000;
    color: white;
}

.back-to-top:hover {
    cursor: pointer;
    background-color: #1b3178; color: var(--theme-color);
}

.back-to-top:hover i {
    color: white;
}

.back-to-top i {
    top: 12px;
    position: relative;
}

.btn-theme-btn {
    background: white;
    font-size: 14px;
    border-radius: 0;
    color: black;
    border: solid 1px var(--theme-color-2)
}

.btn-theme-btn:hover {
    background-color: var(--theme-color-2);
    color: white;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--theme-color-2);
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    background-color: var(--theme-color-2);
}

/* Genel Bitti*/
/* Mobil Menü */

.mobile-header {
    z-index: 3;
    position: fixed;
    width: 100%;
    background-color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #f5f5f5;
    justify-content: space-between;
}

.m-icons {
    display: flex;
    position: relative;
}

.m-icons a {
    margin-right: 15px;
    display: block;
    position: relative;
}

.m-icons a:last-child {
    margin-right: 0;
}

.m-icons a i {
    font-size: 30px;
    color: #1b3178; color: var(--theme-color);
}

.main-nav {
    background: #fff;
    position: fixed;
    z-index: 4;
    left: -90%;
    transition: 0.3s;
    padding: 20px 0 0 0;
    width: 80%;
    box-shadow: 0 0 20px #0000005c;
    height: 100%;
}

.main-nav .close-nav {
    font-size: 13px;
    display: block;
    margin-left: 10px;
    margin-bottom: 15px;
}

.main-nav a {
    color: black;
}

.tab-nav {
    margin: 10px;
    display: flex;
    justify-content: space-evenly;
}

.tab-nav a {
    cursor: pointer;
    flex: 1 1 50%;
    font-weight: 600;
    flex-grow: 1;
    border: solid 1px var(--theme-color);
    text-align: center;
    color: #818181 !important;
    padding: 10px;
    font-size: 16px;
    margin-right: 5px;
    border-radius: 3px;
    position: relative;
}

.tab-nav a:last-child {
    margin-right: 0;
}

.tab-nav .active {
    background-color: #1b3178; color: var(--theme-color);
    border-color: #1b3178; color: var(--theme-color);
    color: white !important;
}

.vertical-tabs {
    margin: 0;
    flex-direction: column;
}

.vertical-tabs a {
    margin-bottom: 10px;
    margin-right: 0;
}

.vertical-tabs a:last-child {
    margin-right: 0;
}

.tab-content,
.tab {
    height: 100%;
}

.tab-content .tab {
    display: none;
}

.tab-content .active {
    display: block;
}

.menus {
    margin: 0;
    height: 100vh;
    overflow-x: scroll;
    padding: 0 0;
}

.menus li {
    list-style-type: none;
    border-bottom: solid 1px #f3f3f3;
}

.menus li a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 10px;
    font-weight: 500;
}

.menus li:last-child {
    border-bottom: none;
}

.menus li a[aria-expanded="true"],
.menus li a[aria-expanded="false"] {
    background: url("../img/menu/dropdown-states.png") no-repeat;
}

.menus li a[aria-expanded="true"] {
    background-position: 97% -18px;
    transition: 0.3s;
    color: white;
    background-color: #1b3178; color: var(--theme-color);
}

.menus li a[aria-expanded="false"] {
    transition: 0.3s;
    background-position: 97% 9px
}

.dropdown-nav ul {
    padding: 0;
    display: none;
    margin-left: 15px;
}

.hidden {
    display: none !important;
}

/* Mobil Menü Bitti*/
/* Üst linkler */
.top-links {
    display: flex;
    justify-content: space-between;
}

.top-links ul {
    margin: 0;
    padding: 10px 0;
    display: flex;
}

.top-links ul li {
    list-style: none;
    margin-right: 20px;
}

.top-links ul li:last-child {
    margin-right: 0;
}

.top-links ul li a {
    font-size: 14px;
    display: block;
    color: var(--text-color);
    text-decoration: none;
}

.top-links ul li a:hover {
    color: black;
}

/* Üst linkler bitti */
/*Orta Kısım*/
.middle-header {
    background-color: #1b3178; color: var(--theme-color);
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
}

.logo-image {
    margin-right: 25px;
}

.middle-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.middle-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    color: white;
}

.middle-nav ul li {
    margin-right: 10px;
    list-style: none;
}

.middle-nav ul li:last-child {
    margin-right: 0;
}

.middle-nav ul li a {
    font-size: 14px;
    background-color: #344a91; background-color: var(--theme-color-3);
    display: block;
    padding: 10px;
    text-align: center;
    color: white;
    border-radius: 3px;
}

.middle-nav ul li a:hover {
    background-color: var(--theme-color-2);
    transition: background-color 0.3s;
}

.middle-nav ul .e-catalog a {
    background-color: var(--theme-color-2);
}

.middle-nav ul .search a {
    font-size: 14px;
    background-color: transparent;
}

.middle-nav ul li a i {
    margin-left: 10px;
}

.middle-nav ul .search i {
    margin: 0;
}

/*Orta Kısım Bitti*/
/*Alt Menü*/
.bottom-nav-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.categories-menu {
    flex: 1 1 30%;
    z-index: 2;
    width: 100%;
    position: relative;
}

.right-menu {
    flex: 1 1 80%;
}

.categories-menu a {
    background-color: var(--theme-color-2);
    display: block;
    color: white;
    padding: 18px 15px;
    font-size: 17px;
}

.categories-menu a:hover {
    opacity: 0.8;
}

.categories-menu a i {
    margin-right: 10px;
}

.categories-menu a[aria-expanded="false"] {
    transition: 0.3s;
    background: var(--theme-color-2) url("../img/header/arrow-down-angle.png") no-repeat 93%;
}

.categories-menu a[aria-expanded="true"] {
    transition: 0.3s;
    background: var(--theme-color-2) url("../img/header/up-chevron.png") no-repeat 93%;
}

.categories-menu ul {
    margin: 0;
    padding: 5px 0;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    position: absolute;
    display: none;
    box-shadow: 0 11px 20px 6px #0000007d;
    background-color: white;
}

.categories-menu ul::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.categories-menu ul::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
.categories-menu ul::-webkit-scrollbar-thumb {
    background: #c5ccd1;
}

.categories-menu ul li {
    list-style: none;
}

.categories-menu ul li a {
    border-bottom: solid 1px #f7f7f7;
    display: block;
    color: #333e48;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 15px;
    background-color: transparent;
}

.categories-menu ul li a:hover {
    background-color: #fafafa;
}

.categories-menu ul li a i {
    opacity: 0.7;
}

.right-menu ul {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    padding: 0;
}

.right-menu ul li {
    list-style: none;
    padding: 0 10px;

}

.right-menu ul li:hover .hover-menu {
    display: block;
    background: white;
    box-shadow: 0 7px 8px 2px #0000001c;
    min-width: 330px;
    padding: 10px;
}

.right-menu ul li:hover .main-href {
    background-color: white;
    box-shadow: 0 7px 8px 2px #0000001c;
}

.right-menu ul li a {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    list-style: none;
    display: flex;
    padding: 15px;
    color: #1b1e21;
}

.right-menu ul li a:hover {
    box-shadow: 0 1px 11px 3px #0000001c;
}

.right-menu ul li a .link {
    color: #312d2d;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
}

.right-menu ul li a .subtext {
    font-size: 13px;
    color: #9a9a9a;
}

.hover-menu {
    z-index: 8;
    position: absolute;
    display: none;
}

.hover-menu-content {
    display: flex;
    justify-content: space-between;
}

.hover-menu-content div {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
}

.hover-nav ul {
    display: block;
    margin: 0;
    padding: 0;
}

.hover-nav ul li {
    list-style: none;
    display: block;
    padding: 0;
}

.hover-nav ul li a {
    font-size: 14px;
    text-align: left;
    padding: 8px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    color: #1b1e21;
}

.hover-nav ul li a:hover {
    color: black;
    box-shadow: none !important;
}

.hover-nav ul li a i {
    margin-right: 5px;
    font-size: 12px;
    opacity: 0.7;
}

/*Alt Menü Bitti*/

/* Header Arama */

.header-search {
    display: none;
    position: relative;
    z-index: 1;
    border-top: solid 1px #ECECEC;
    background: white url(../img/header/search-bg.png) no-repeat 255px;
    font-size: 14px;
    box-shadow: 0 5px 10px #0000000a;
    background-size: 3%;
}

.header-search-fixed {
    box-shadow: 0 4px 20px #00000026;
    position: fixed;
    width: 100%;
    top: 73px;
}

.header-search-form-inner {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.header-search-form-inner .search-box {
    flex-grow: 1;
}

.header-search input[type="search"] {
    padding: 10px 0;
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    box-shadow: none;
}

.header-search-form-inner .search-button button {
    border: 1px solid var(--theme-color);
    padding: 6px 15px;
    color: #1b3178; color: var(--theme-color);
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    background: transparent;
}

.header-search-form-inner .search-button button:hover {
    background-color: #1b3178; color: var(--theme-color);
    color: white;
}

/* Header Arama Bitti */
/*Ana Sayfa İçerik*/
.desktop-slider {
    height: auto;
    display: block;
}

.home-about-us, .home-about-links {
    padding: 60px 0;
}

.home-about-us p {
    font-size: 17px;
    line-height: 35px;
    margin-bottom: 0;
}

.home-about-links ul {
    margin: 0;
    padding: 0;
}

.home-about-links ul li {
    list-style: none;
}

.home-about-links ul li a {
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
    color: var(--text-color);
    font-size: 15px;
    padding: 10px;
    border: solid 2px #d2d2d2;
}

.home-about-links ul li a i {
    color: gray;
    margin-right: 10px;
}

.home-about-links ul li a:hover {
    border-color: #344a91; border-color: var(--theme-color-3);
    color: var(--theme-color-3);
}

.home-about-links ul li a:hover i {
    color: var(--theme-color-3);
}

.category-carousel-container {
    padding: 60px 0;
    background: #ededed url("../img/home/product-carousel-bg.jpg") no-repeat center;
}

.home-block-title {
    text-align: center;
    margin-bottom: 25px;
}

.home-block-title h3 {
    font-weight: bold;
}

.carousel-category {
    position: relative;
    border: solid 3px transparent
}

.carousel-category:hover {
    background-color: black;
    border-color: var(--theme-color-2);
}

.carousel-category .title {
    position: absolute;
    bottom: 15px;
    transition: 0.3s;
    font-weight: bold;
    display: none;
    padding: 10px;
    color: white;
}

.carousel-category:hover .title {
    transition: 0.3s;
    display: block;
    bottom: 0;
    width: 70%;
}

.carousel-category:hover img {
    opacity: 0.5;
}

.carousel-category:hover .arrow {
    background-color: var(--theme-color-2);
}

.carousel-category:hover .arrow i {
    color: white;
}

.carousel-category .arrow {
    position: absolute;
    background: white;
    padding: 10px;
    bottom: 0;
    width: 45px;
    right: 0;
    text-align: center;
}

.owl-arrows {
    display: flex;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
}

.owl-arrows a {
    display: block;
    background-color: #344a91; background-color: var(--theme-color-3);
    padding: 10px;
    text-align: center;
    width: 50px;
    color: white;
    margin-right: 10px;
}

.owl-arrows a:hover {
    background-color: white;
    color: var(--theme-color-3);
}

/*Ana Sayfa İçerik Bitti*/
/* Amacımız */
.page-content-inner{
	padding: 30px 0
}
.our-purpose-content {
    background: white;
    padding: 50px;
    margin-top: -80px;
}

.our-purpose-content h3 {
    margin-top: 40px;
}

.our-purpose-left {
    background-color: #3a6ee8; background-color: var(--theme-color-4);
    padding: 50px;
    color: white;
}

.our-purpose-left h6 {
    color: white;
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 23px;
}

.our-purpose-left p {
    margin-bottom: 0;
}

/* Amacımız Bitti*/
/* Teknik Servis Formu*/
.service-form {
    padding: 50px 0;
    background: url("../img/home/service-form-bg.jpg") no-repeat center;
    background-size: cover;
    color: #666666;
}

.no-bg {
    background-image: none !important;
}

.service-form-inner {
    background-color: white;
    padding: 50px;
}

.service-form p {
    line-height: 30px;
}

.service-form .home-block-title {
    text-align: left;
}

.service-form-left a {
    margin-right: 15px;
}

.service-form-left a i {
    color: gray;
    margin-right: 5px;
}

.service-form .form-control {
    border: none;
    background-color: #f6f6f6;
    border-radius: 0;
    padding: 25px;
}

.service-form select {
    text-indent: 5px;
    padding: 0 15px !important;
    height: 50px;
    font-weight: bold;
}

.service-form button {
    border-radius: 0;
    font-weight: bold;
    padding: 15px;
    border-color: #3a6ee8; border-color: var(--theme-color-4);
    background-color: #3a6ee8; background-color: var(--theme-color-4);
}

/* Teknik Servis Formu Bitti*/
/* İç Sayfalar*/
.bottom-nav {
    background: #f9f9f9;
}

.inner-page {
    border-top: solid 1px #efefef;
}

.page-content {
    padding: 30px 0;
}

.page-content .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.page-content .breadcrumb a, .page-content .breadcrumb span {
    font-size: 13px;
}

.page-title {
    margin-top: 10px;
    margin-bottom: 20px;
}

.page-navigator {
    padding: 30px;
    color: white;
    border-radius: 20px 0;
    background-color: #3a6ee8; background-color: var(--theme-color-4);
}

.page-navigator ul {
    margin: 0;
    padding: 0;
}

.page-navigator strong {
    opacity: 0.7;
    display: block;
    margin-bottom: 10px;
    border-bottom: solid 1px #638ae8;
    padding-bottom: 10px;
}

.page-navigator ul li {
    list-style: none;
}

.page-navigator ul li a {
    padding: 5px 0;
    color: white;
    display: block;
    font-size: 17px;
}

.page-content-content {
    font-size: 19px;
}

.category-desc {
    font-size: 16px;
    max-height: 180px;
    font-weight: bold;
    overflow-y: scroll;
}

.product {
    position: relative;
    margin-bottom: 30px;
    padding: 10px;
    border: solid 1px #ebebeb;
}

.product:hover {
    box-shadow: 3px 3px 3px #d6d6d6;
    border-color: #344a91; border-color: var(--theme-color-3);
}

.product-image {
    width: 100%;
}

.product-image img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.product-title {
    text-align: center;
    min-height: 47px;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    border-top: solid 1px #ebebeb;
    padding-top: 10px;
}

.product-details-left {
    background-color: #f1eded;
    padding: 20px;
}

.media-item {
    position: relative;
    margin-bottom: 30px;
    padding: 10px;
    border: solid 1px #ebebeb;
}

.media-item:hover {
    box-shadow: 3px 3px 3px #d6d6d6;
    border-color: #344a91; border-color: var(--theme-color-3);
}

.media-item .thumb {
    width: 100%;
}

.media-item img, .media-item .thumb img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.media-item .title {
    text-align: center;
    min-height: 47px;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    border-top: solid 1px #ebebeb;
    padding-top: 10px;
}

.blog-item {
    position: relative;
    margin-bottom: 30px;
}

.blog-title {
    margin-top: 20px;
    font-size: 24px;
}

.article-comments {
    background: #f5f5f5;
    font-size: 14px;
    margin-top: 35px;
    padding: 30px;
}

.article-no-comments {
    text-align: center;
    font-size: 14px;
}

.a-no-comment-icon {
    font-size: 120px;
    color: gray;
}

.btn-write-comment {
    color: white !important;
}

.blog-comment::before,
.blog-comment::after,
.blog-comment-form::before,
.blog-comment-form::after {
    content: "";
    display: table;
    clear: both;
}

.blog-comment {
    margin-bottom: 20px;
}

.blog-comment ul {
    list-style-type: none;
    padding: 0;
}

.blog-comment ul li {
    list-style-type: none !important
}

.blog-comment img {
    opacity: 1;
    filter: Alpha(opacity=100);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.blog-comment img.avatar {
    position: relative;
    float: left;
    margin-left: 0;
    margin-top: 0;
    width: 65px;
    height: 65px;
}

.blog-comment .post-comments {
    border: 1px solid #c3c3c3;
    margin-bottom: 5px;
    margin-left: 85px;
    margin-right: 0px;
    padding: 10px 20px;
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    color: #6b6e80;
    position: relative;
}

.blog-comment .meta {
    font-size: 13px;
    color: #aaaaaa;
    padding-bottom: 8px;
    margin-bottom: 10px !important;
    border-bottom: 1px solid #eee;
}

.blog-comment ul.comments ul {
    list-style-type: none;
    padding: 0;
    margin-left: 85px;
}

.blog-comment-form {
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 40px;
}

.blog-comment h3,
.blog-comment-form h3 {
    margin-bottom: 40px;
    font-size: 26px;
    line-height: 30px;
    font-weight: 800;
}

.comments-head {
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: solid 1px #dedede;
    font-weight: bold;
}

.captchasol {
    float: left !important;
    margin-top: 10px;
    font-size: 21px;
    font-weight: 700;
    margin-right: 10px;
}

.captchakutu {
    display: block;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d0cec8;
    border-radius: 0;
    font-size: 15px;
}

.blog-content {
    margin-bottom: 30px;
}

ul.social-network {
    list-style: none;
    display: inline;
    margin-left: 0 !important;
    margin-bottom: 50px;
    padding: 0;
}

ul.social-network li {
    display: inline;
    margin: 0 5px;
}

.no-results {
    border: solid 1px #e6e6e6;
    padding: 25px;
}

.hr-form{
    background: #fafafa;
    padding: 10px;
    margin:10px 0;
}

.hr-form .row{
	margin:20px 0;
}

.img-responsive{
	width: 100%;
	max-width: 100%;
}

.hr-form .row .form-input{
	margin:10px 0 0 0;
}

/* İç Sayfalar Bitti*/

/*Footer*/
.footer-email-bar {
    background-color: #3a6ee8; background-color: var(--theme-color-4);
    padding: 30px 0;
}

.email-bar-content {
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-between;
}

.email-bar-content .label {
    font-size: 18px;
    flex: 1 1 60%;
}

.email-bar-content .email-input {
    flex: 1 1 40%;
}

.email-bar-content .email-input form {
    display: flex;
    justify-content: space-between;
    background-color: white;
    border-radius: 30px;
    padding: 15px;
    border: none;
    outline: none;
    width: 100%;
}

.email-bar-content .email-input input[type="email"], .email-bar-content .email-input button {
    border: none;
    width: 100%;
    background-color: white;
    outline: none;
}

.email-bar-content .email-input input[type="email"] {
    flex: 1 1 90%;
}

.email-bar-content .email-input button {
    cursor: pointer;
    flex: 1 1 10%;
}

.footer-content {
    padding: 35px 0;
}

.footer-content p {
    color: gray;
    font-size: 15px;
}

.footer-title ul {
    margin: 0;
    padding: 0;
}

.footer-title ul li {
    list-style: none;
}

.footer-title .footer-widget-title {
    font-weight: bold;
    color: #232323;
}

.footer-title ul li a {
    display: inline-block;
    padding: 5px 0;
    color: gray;
    font-size: 14px;
}

.footer-title ul li a:hover {
    color: black;
}

.footer-copyright {
    padding: 20px 0;
    color: #a3a3a3;
}

.adtorium {
    text-align: right;
}

.adtorium img {
    width: 110px;
    filter: grayscale(100%);
}

.adtorium a:hover img {
    filter: grayscale(0%);
}

/*Footer Bitti*/