/* boxes general properties */
html{
  font-family: 'GilroyRegular';
}
body{
      /*overflow-x: hidden;*/
}
.row{
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
}
.column{
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
.jCSBetween{
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}
.jCSAround{
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}
.jCCenter{
    -webkit-justify-content: center;
    -moz-justify-content:center;
    -o-justify-content:center;
    justify-content:center;
}
.jCFlexEnd{
    -webkit-justify-content: flex-end;
    -moz-justify-content:flex-end;
    -o-justify-content:flex-end;
    justify-content:flex-end;
}
.aICenter{
    align-items: center;
}
.aIFlexEnd{
    align-items: -webkit-flex-end;
    align-items: -moz-flex-end;
    align-items: -o-flex-end;
    align-items: flex-end;
}
.aIFlexStart{
    align-items: -webkit-flex-start;
    align-items: -moz-flex-start;
    align-items: -o-flex-start;
    align-items: flex-start;
}
.flexGrow1{
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -o-flex-grow: 1;
    flex-grow: 1;
}
.flexWrap{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.opacity59{
    -webkit-opacity: 0.59;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=59)";/* IE 8 */
	filter: alpha(opacity=0.59);/* IE 5-7 */
	-moz-opacity: 0.59; /* Netscape */
	-khtml-opacity: 0.59;/* Safari 1.x */
    opacity: 0.59;/* Good browsers */
}
.opacity59:hover{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity:1;/* Safari 1.x */
    opacity:1;/* Good browsers */
}
.paddingLeft35{
    padding-left:35px;
}
/* boxes general properties END*/
/*General*/
h1{
    font-family: 'GilroyBlack';
    font-size:43.06px;
    color:#263953;
}   
h1 span.light{
    font-family: 'GilroyRegular';
    font-size:43.06px;
}
h3{
    font-family: 'GilroyBlack';
    font-size:29.5px;
    color:#263953;
}
h4{
    font-family: 'GilroyBlack';
    font-size:24px;
    color:#0d3c5b;
}
h5{
    font-family: 'GilroyBlack';
    color:#35475f;
    font-size:19.02px;
}
h6{
    font-family: 'GilroyBlack';
    font-size:17px;
    color:#0d3c5b;
}
.leftHeadTitle{
    border-bottom:1px solid #dcdcdc;
    padding-bottom:10px;
}
.container{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.half{
    width: 50%;
}
.overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(1,25,58,0.3);
  display: none;
}
.button{
    font-family: 'GilroyBlack';
    font-size:18.59px;
    color:#ffffff;  
    text-align: center;
}
.navyBlueBg {
    background-color:#1c4865;
}
.grayBg{
    background-color:#bcbcbc;
}

.blueBg{
    background-color:#0d3c5b;
    border:1px solid #0d3c5b;
}
.blueBgHoverStyle:hover{
    background-color:#ffffff;
    color:#0d3c5b;
}
.noPadding{
    padding:0;
}
.noPaddingLeft{
    padding-left:0;
}
.fRight{
    float: right;
}
.subPage p{
    font-family: 'GilroyRegular';
    font-size:14px;
    color:#2d2d2d;
    line-height: 17px;
}
.subPage p strong{
    font-family: 'GilroyExtrabold';
}
.subPage p.bold{
    font-family: 'GilroyBlack';
}
.subPage ul li{
    list-style-type: none;
    font-family: 'GilroyRegular';
    font-size:14px;
    color:#2d2d2d;
    line-height: 17px;
}
.subPage ul li:last-child .headerSubMenu{
    right: 59px;
}
.subPage p.marginTop{
    margin-top:20px;
}
.border13{
    border: 13px solid #f2f2f2;
}
/*General END*/
/* header */
header{
    position: absolute;
    top:0;
    left:0;
    right: 0;
    margin: 0 auto;
    z-index: 500;
    padding-bottom:42px;
}
header .header{
    padding-top:20px;
    padding-bottom:12px;
}
header .logoHeader{
    margin-left:15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
header .logoHeader:first-child{
    margin-left:0;
}
header .logoHeader .colorsLogo{
    display: none;
}
header .logoHeader:hover{
    -webkit-opacity: 0.78;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=78)";/* IE 8 */
	filter: alpha(opacity=0.78);/* IE 5-7 */
	-moz-opacity: 0.78; /* Netscape */
	-khtml-opacity: 0.78;/* Safari 1.x */
    opacity: 0.78;/* Good browsers */
}
header .topMenuColumn{
    border-bottom:1px solid rgba(169,169,169,0.33);
    padding-bottom:10px;
}
header .bottomMenuColumn{
    padding-top:10px;
}
header .otherMenuItems a{
    font-family: "GilroyBlack";
    font-size:15.2px;
    color:#c4c4c4;
    -webkit-opacity: 0.59;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=59)";/* IE 8 */
	filter: alpha(opacity=0.59);/* IE 5-7 */
	-moz-opacity: 0.59; /* Netscape */
	-khtml-opacity: 0.59;/* Safari 1.x */
    opacity: 0.59;/* Good browsers */
    padding: 0 12.5px;
}
header .otherMenuItems a:hover{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity:1;/* Safari 1.x */
    opacity:1;/* Good browsers */
}
header .otherMenuItems a:first-child{
    padding-left: 0;
}
header .otherMenuItems a img{
  margin-right: 0px;
  height: 30px;
  filter: brightness(0) invert(1);
}
header .headerSiteMenu{
    position: relative;
}
header .headerSiteMenu > ul {
    width: 100%;
}
header .headerSiteMenu > ul > li{
    flex-grow: 1;
    text-align: left;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
header .headerSiteMenu > ul > li:last-child .headerSubMenu{
  right: 45px;
}
header .headerSiteMenu > ul > li > a{
    font-family: "GilroyMedium";
    font-size:15.8px;
    color:#ffffff;
    position: relative;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
header .headerSiteMenu > ul > li:hover > a{
    font-family: "GilroyBlack";
}
header .headerSiteMenu > ul > li:hover > a:after,
header .headerSiteMenu > ul > li.active > a:after{
    content:"";
    position: absolute;
    background-color:#eb5f1c;
    height: 6px;
    width: 35%;
    bottom:-24px;
    left:0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
header .searchArea{
    margin-left:15px;
}
header .searchArea.active .headerSearch{
    position: absolute;
    z-index: 9;
    display: block;
    top: 37px;
    right: 0;
}
header .searchArea.active .headerSearch img{
    -webkit-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -moz-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -ms-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -o-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
}
header .searchArea .searchInputArea{
        position: absolute;
        right: 0;
        top: 0;
        height: 100px;
        width: 0;
        background: #ffffff;
        -webkit-opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";/* IE 8 */
        filter: alpha(opacity=0);/* IE 5-7 */
        -moz-opacity: 0; /* Netscape */
        -khtml-opacity: 0;/* Safari 1.x */
        opacity: 0;/* Good browsers */
        visibility: hidden;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
        overflow: hidden;
}
header .searchArea .searchInputArea.active{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity:1;/* Safari 1.x */
    opacity:1;/* Good browsers */
    visibility: visible;
    width: 100%;
    overflow: hidden;
}
header .searchArea .searchInputArea input[type="text"]{
    font-family: "GilroyMedium";
    font-size:14.55px;
    padding-left:30px;
    width: 90%;
    border: none;
}
.searchInputArea input:focus::-webkit-input-placeholder {
    color: transparent;
}
.searchInputArea ::-webkit-input-placeholder { 	
    font-family: "GilroyLightItalic";
}
.searchInputArea ::-moz-placeholder { 
    font-family: "GilroyLightItalic";
} 
.searchInputArea :-ms-input-placeholder {
    font-family: "GilroyLightItalic";
}
.searchInputArea input:-moz-placeholder {
    font-family: "GilroyLightItalic";
}

header .searchArea .searchInputArea.active:before{
    content: "";
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    height: 100%;
    right: -100%;
    top:0;
}
header .headerSubMenu{
    -webkit-opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";/* IE 8 */
    filter: alpha(opacity=0);/* IE 5-7 */
    -moz-opacity: 0; /* Netscape */
    -khtml-opacity: 0;/* Safari 1.x */
    opacity: 0;/* Good browsers */
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: absolute;
    padding-top:33px;
    height: 0;
}
header .headerSiteMenu > ul > li:hover > .headerSubMenu{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity:1;/* Safari 1.x */
    opacity:1;/* Good browsers */
    visibility: visible;
    height: auto;
}
header .headerSubMenu li{
    padding:0 10px;
    background-color:#ffffff;
}
header .headerSubMenu li:first-child{
    padding-top:25px;
}
header .headerSubMenu li:last-child{
    padding-bottom:25px;
}
header .headerSubMenu li.last{
    padding-bottom:25px;
}
header .headerSubMenu a{
    font-family: 'GilroyMedium';
    font-size:13.52px;
    color:#353535;
    padding:7px 10px;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
header .headerSubMenu a span{
    white-space: nowrap;
}
header .headerSubMenu li:hover a{
    font-family: 'GilroyBlack';
    color:#ffffff;
    background-color:#0c3b5a;
}
/*Fixed & SubPage Header*/
header.subHeader{
    position: relative;
}
header.fixed{
    position: fixed;
}
header.fixed .header,
header.subHeader .header{
    background-color:#ffffff;
    -webkit-box-shadow: 0px 14px 30px 0px rgba(33, 31, 25, 0.2);
    -moz-box-shadow:0px 14px 30px 0px rgba(33, 31, 25, 0.2);
    -moz-o-shadow:0px 14px 30px 0px rgba(33, 31, 25, 0.2);
    box-shadow:0px 14px 30px 0px rgba(33, 31, 25, 0.2);
}
header.fixed .logoHeader img,
header.subHeader .logoHeader img{
    display: none;
}
header.fixed .logoHeader .colorsLogo,
header.subHeader .logoHeader .colorsLogo{
    display: block;
}
header.fixed .otherMenuItems a,
header.subHeader .otherMenuItems a{
    color:#3d3d3d;
}
header.fixed .otherMenuItems a img {
    /*-webkit-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -moz-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -ms-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -o-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);*/
    filter: initial;
}
header.fixed .carouselChangeButtonArea a,
header.subHeader .carouselChangeButtonArea a{
    color: #3d3d3d;
}
header.fixed .carouselChangeButtonArea a img,
header.subHeader .carouselChangeButtonArea a img{
    -webkit-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -moz-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -ms-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -o-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -webkit-opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";/* IE 8 */
	filter: alpha(opacity=0.5);/* IE 5-7 */
	-moz-opacity: 0.5; /* Netscape */
	-khtml-opacity: 0.5;/* Safari 1.x */
    opacity: 0.5;/* Good browsers */
}
header.fixed .headerSiteMenu > ul > li > a,
header.subHeader .headerSiteMenu > ul > li > a {
    color: #3d3d3d;
}
header.fixed .searchArea .headerSearch img,
header.subHeader .searchArea .headerSearch img{
    -webkit-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -moz-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -ms-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -o-filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    filter:invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -webkit-opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";/* IE 8 */
	filter: alpha(opacity=0.5);/* IE 5-7 */
	-moz-opacity: 0.5; /* Netscape */
	-khtml-opacity: 0.5;/* Safari 1.x */
    opacity: 0.5;/* Good browsers */
}
header.fixed .searchArea .headerSearch:hover img,
header.subHeader .searchArea .headerSearch:hover img{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity:1; /* Netscape */
	-khtml-opacity: 1;/* Safari 1.x */
    opacity:1;/* Good browsers */
}
/* header END */

/*Carousel General*/
.carouselChangeButtonArea{
    position: relative;
}
.carouselChangeButtonArea a{
    font-family: "GilroyBlack";
    font-size: 15.2px;
    color:#ffffff;
    -webkit-opacity: 0.33;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=33)";/* IE 8 */
	filter: alpha(opacity=0.33);/* IE 5-7 */
	-moz-opacity: 0.33; /* Netscape */
	-khtml-opacity: 0.33;/* Safari 1.x */
    opacity: 0.33;/* Good browsers */
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0 10px;
}
.carouselChangeButtonArea.disabled:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    top: 0;
    left: 0;
}
header.fixed .carouselChangeButtonArea.disabled a.active{
    -webkit-opacity: 0.33;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=33)";/* IE 8 */
	filter: alpha(opacity=0.33);/* IE 5-7 */
	-moz-opacity: 0.33; /* Netscape */
	-khtml-opacity: 0.33;/* Safari 1.x */
    opacity: 0.33;/* Good browsers */
}
.carouselChangeButtonArea a:hover,
.carouselChangeButtonArea a.active{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity: 1;/* Safari 1.x */
	opacity:1;/* Good browsers */
}
.carouselChangeButtonArea a img{
    margin-right: 5px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.carouselChangeButtonArea a:hover img{
    transform: scale(1.1);
}
.sliderTabsContentArea{
    position: relative;
    width: 100%;
    height: 100%;
}
.sliderTabsContentArea:before{
    content: "";
    background-image: url('../img/sliderOverlay.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    top:0;
    left:0;
    right: 0;
    width: 100%;
    height: 418px;
}
.sliderTabsContentArea .sliderTabItem:after{
    content: "";
    background-image: url('../img/slider-over.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    position: absolute;
    bottom:0;
    left:0;
    right: 0;
    width: 100%;
    height: 95px;
    z-index: 20;
}
.sliderTabsContentArea .sliderTabItem{
    width: 100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    -webkit-opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";/* IE 8 */
	filter: alpha(opacity=0);/* IE 5-7 */
	-moz-opacity: 0; /* Netscape */
	-khtml-opacity: 0;/* Safari 1.x */
    opacity: 0;/* Good browsers */
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.sliderTabsContentArea .sliderTabItem .itemSlide{
    width: 100%;
    height: 100%;
    position: relative;
}
.sliderTabsContentArea .sliderTabItem .itemSlide >img{
    width: 100%;
    height: 100%;
}
.sliderTabsContentArea .sliderTabItem .itemSlide .contentSlide{
    position: absolute;
    top:200px;
    left:0;
    right:0;
    margin-right: 0 auto;
}
.sliderTabsContentArea .sliderTabItem.active{
    -webkit-opacity:1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity: 1;/* Safari 1.x */
    opacity: 1;/* Good browsers */
    visibility: visible;
}



.Mobile .sliderTabsContentArea{
    height: 177px;
}




/*Carousel General END*/

/*Footer*/  
footer .footer{
    background-color:#ffffff;
}
footer .footer .eBulten{
    background-color:#fcfcfc;
    padding: 20px 0;
    overflow: hidden;
}
footer .footer .eBulten > div:before{
    content:"";
    background-image:url('../img/eBultenBg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    width:308px ;
    height: 191px;
    position: absolute;
    left: -150px;
    top: -57.5px;
    -webkit-opacity: 0.33;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=33)";/* IE 8 */
	filter: alpha(opacity=0.33);/* IE 5-7 */
	-moz-opacity: 0.33; /* Netscape */
	-khtml-opacity: 0.33;/* Safari 1.x */
    opacity: 0.33;/* Good browsers */
}
footer .footer .eBulten .eBultenText{
    padding-right: 20px;
}
footer .footer .eBulten form{
    width: 100%;
}
footer .footer .eBulten form .button{
    width:110px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
}
footer .footer .eBulten span{
    font-family: 'GilroyLight';
    font-size:14.57px;
    color:#202020;
}
footer .footer .eBulten .eBultenTile{
    font-family: 'GilroyBlack';
    font-size: 27.7px;
    color:#263953;
    padding-bottom:10px;
}
footer .footer .eBulten input[type="text"]{
    font-family: 'GilroyLight';
    font-size: 15.84px;
    color:#474747;
    background-color:#f3f3f3;
    height: 50px;
    border: none;
    padding: 0 10px; 
}
.subPage footer .footer .eBulten input[type="text"]{
    flex-grow: 0.4;
}
footer .footer .eBulten .captchaColumn{
  max-width: 258px;
  overflow: hidden;
  margin-left: -35px;
}
footer .footer .eBulten .captchaColumn .captcha{
  transform: scale(0.7);
}
footer .footer .footerDetails .footerLogoLink{
    -webkit-box-shadow: 1px 15px 24px 0px rgba(52, 52, 52, 1);
    -moz-box-shadow:1px 15px 24px 0px rgba(52, 52, 52, 1);
    -o-box-shadow:1px 15px 24px 0px rgba(52, 52, 52, 1);
    box-shadow:1px 15px 24px 0px rgba(52, 52, 52, 1);
    padding-bottom:40px;
}
footer .footer .footerDetails{
    background-image: url('../img/footerBg.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    background-color:#0d3c5b;
    padding-top:40px;
}
footer .footer .footerDetails .footerLogoLink > div > a{
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
footer .footer .footerDetails .footerLogoLink > div > a:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-opacity: 0.83;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=83)";/* IE 8 */
	filter: alpha(opacity=0.83);/* IE 5-7 */
	-moz-opacity: 0.83; /* Netscape */
	-khtml-opacity: 0.83;/* Safari 1.x */
    opacity: 0.83;/* Good browsers */
}
footer .footer .footerDetails .supportLine span{
    font-family: 'GilroyBlack';
    font-size:19.98px;
    color:#ffffff;
}
footer .footer .footerDetails .supportLine a img{
    margin-right: 5px;
}
footer .footer .footerDetails .supportLine a:hover{
    -webkit-opacity: 0.83;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=83)";/* IE 8 */
	filter: alpha(opacity=0.83);/* IE 5-7 */
	-moz-opacity: 0.83; /* Netscape */
	-khtml-opacity: 0.83;/* Safari 1.x */
    opacity: 0.83;/* Good browsers */
}
footer .footer .footerDetails .supportLine a span{
    font-family: 'GilroyBlack';
    font-size:44.03px;
    color:#ffffff;
}
footer .footer .footerMenu{
    padding-top: 60px;
}
footer .footer .footerMenu a{
    font-family: 'GilroyMedium';
    font-size:15.12px;
    color:#ffffff;
    -webkit-opacity: 0.83;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=83)";/* IE 8 */
	filter: alpha(opacity=0.83);/* IE 5-7 */
	-moz-opacity: 0.83; /* Netscape */
	-khtml-opacity: 0.83;/* Safari 1.x */
    opacity: 0.83;/* Good browsers */
    line-height: 20px;
}
footer .footer .footerMenu > ul > li > a{
    font-family: 'GilroyBlack';
    margin-bottom:20px;
    display:block;
}
footer .footer .footerMenu a:hover{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity: 1;/* Safari 1.x */
    opacity:1;/* Good browsers */
}
footer .footer .footerAdressDetails{
    padding-top:60px;
}
footer .footer .footerAdressDetails .column{
    flex-grow: 1;
    flex-basis: 0;
}
footer .footer .footerAdressDetails span{
    color:#ffffff;
    font-family: 'GilroySemibold';
    font-size:14.63px;
    -webkit-opacity: 0.83;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=83)";/* IE 8 */
	filter: alpha(opacity=0.83);/* IE 5-7 */
	-moz-opacity: 0.83; /* Netscape */
	-khtml-opacity: 0.83;/* Safari 1.x */
    opacity: 0.83;/* Good browsers */
    line-height: 20px;
}
footer .footer .footerAdressDetails span.bold{
    font-family: 'GilroyBlack';
    font-size:16.6px;
}
footer .footer .footerAdressDetails a span{
    font-size:13.8px;
}
footer .footer .footerAdressDetails img{
    -webkit-opacity: 0.83;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=83)";/* IE 8 */
	filter: alpha(opacity=0.83);/* IE 5-7 */
	-moz-opacity: 0.83; /* Netscape */
	-khtml-opacity: 0.83;/* Safari 1.x */
    opacity: 0.83;/* Good browsers */
    margin-right: 10px;
}
footer .footer .footerAdressDetails a{
    margin-top:15px;
}
footer .footer .footerAdressDetails a:hover img{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity: 1;/* Safari 1.x */
    opacity:1;/* Good browsers */
}
footer .footer .footerAdressDetails a:hover span{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity: 1;/* Safari 1.x */
    opacity:1;/* Good browsers */
}
footer .footer .scrollTop{
    position: relative;
}
footer .footer .scrollTop a{
    position: absolute;
    top:50%;
    right: 0;
    left:0;
    margin:-20px auto;
    font-family: 'GilroySemibold';
    font-size:15.12px;
    color: #ffffff;
    -webkit-opacity: 0.36;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=36)";/* IE 8 */
	filter: alpha(opacity=0.36);/* IE 5-7 */
	-moz-opacity: 0.36; /* Netscape */
	-khtml-opacity: 0.36;/* Safari 1.x */
    opacity: 0.36;/* Good browsers */
}
footer .footer .scrollTop a img{
    margin-bottom:8px;
}
footer .footer .scrollTop a:hover{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity: 1;/* Safari 1.x */
    opacity:1;/* Good browsers */
}
footer .footer .copyRight{
    font-family: 'GilroySemibold';
    font-size:14px;
    color:#474747;
    height: 36px;
}
footer .footer .copyRight a{
    color:#474747;
}
footer .footer .copyRight a:hover{
    -webkit-opacity: 0.83;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=83)";/* IE 8 */
	filter: alpha(opacity=0.83);/* IE 5-7 */
	-moz-opacity: 0.83; /* Netscape */
	-khtml-opacity: 0.83;/* Safari 1.x */
    opacity: 0.83;/* Good browsers */
}
/*Hızlı Erişim*/
.fastMenu{
    margin-bottom:50px;
    margin-top: -100px !important;
}

.fastMenu .item{
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    flex-basis: 0;
    transition: all 0.3s ease;
}
.fastMenu .item a{
  font-family: 'GilroyRegular';
  font-size: 14.22px;
  color: #263953;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  flex-direction: revert;
  padding: 18px 19px 16px 19px;
  box-shadow: 1px 1px 12px -2px rgb(0 0 0 / 46%);
  transition: all 0.3s ease;
}
.fastMenu .item a .icon{
    position: relative;
}
.fastMenu .item a .icon img{
    max-height: 46px;
    position: relative;
    z-index: 2;
}
.fastMenu .item a .ititle{
    padding-left: 10px;
}
.fastMenu .item a .ititle span{
    display: block;
}
.fastMenu .item a .icon:before{
    content:"";
    width: 40px;
    height: 40px;
    background-color:#edf3f8;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: -11px;
    top: 4px;
    z-index: 1;
}
.fastMenu .item:after{
   /* content:"";
    background-color:#efefef;
    width: 3px;
    height: 100%;
    position: absolute;
    left: -36px;
    top:0;*/
}
.fastMenu .item:first-child:after{
    display:none;
}

.fastMenu .item:hover{
    z-index: 20;
}
.fastMenu .item a:hover{
    background-color: #eb5f1c;
    color: #fff;
    transform: scale(1.1);
}
.fastMenu .item a:hover .icon:before{
    background-color: #ed7135;
}
.fastMenu .item a:hover .ititle{
    /*text-align: center;*/
}
.fastMenu .item a .bold{
    font-family: 'GilroyBlack';
}
.fastMenu .item a:hover .icon img{
    filter: brightness(0) invert(1);
}


.homeDevam{}
.homeDevam a{
  display: flex;
  background-color: #263953;
  color: #fff;
  height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px 20px;
}
.homeDevam a .icon{}
.homeDevam a .icon img{}
.homeDevam a .title{
  padding-top: 2px;
  font-family: 'GilroyBold';
  font-size: 14.22px;
}
/*Hızlı Erişim END*/

/*Anasayfa Haberler*/
.newsBoxes .titleColumn{
    margin-bottom:30px;
}
.allListButton{
    position: relative;
    font-family: 'GilroyBlack';
    font-size:10.95px;
    color:#9a9a9a;
    -webkit-opacity: 0.46;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=46)";/* IE 8 */
	filter: alpha(opacity=0.46);/* IE 5-7 */
	-moz-opacity: 0.46; /* Netscape */
	-khtml-opacity: 0.46;/* Safari 1.x */
    opacity: 0.46;/* Good browsers */
    padding-right: 35px;
}
.allListButton:after{
    content: "";
    position: absolute;
    background-image: url('../img/icon/menu.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 26px;
    height: 13px;
    right: 0;
    top:-2px;
}
.allListButton:hover{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity:1;/* Safari 1.x */
    opacity:1;/* Good browsers */
}
.newsBoxes {
    width: 63%;
}
.newsBoxes .newsBox{
    padding-left:10px;
    padding-right:5px;
    max-height: 392px;
}
.newsBoxes .newsItem{
    position: relative;
    min-height: 393px;
}
.newsBoxes .newsItem.medium{
    min-height: 185px;
}
.newsBoxes .newsItem .imageFrame,
.regionDetailsItem .regionItemImg .imageFrame,
.newsBoxes .newsItem .imageFrame img,
.regionDetailsItem .regionItemImg .imageFrame img{  
    position: relative;
}
.newsBoxes .newsItem .imageFrame:before,
.regionDetailsItem .regionItemImg .imageFrame:before{
    content: "";
    background-color:#eaeaea;
    position:absolute;
    width:75%;
    height:75%;
    top:-10px;
    left:-10px;
    z-index: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.regionDetailsItem .regionItemImg .imageFrame:before{
    top:-13px;
    left:-13px;
}
.newsBoxes .newsItem .imageFrame img{
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width:100%;
    height: 100%;
}
.newsBoxes .newsItem a{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left:18px;
    padding-right:18px;
    padding-bottom:15px;
    background-color:rgba(3,8,14,0.3);
}
.newsBoxes .newsItem a:after{
    content:"";
    width: 165px;
    height:3px;
    background-color:#f26e33;
    position: absolute;
    bottom:0;
    left:18px;
}
.newsBoxes .newsItem .dateTime{
    -webkit-opacity: 0.49;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=49)";/* IE 8 */
	filter: alpha(opacity=0.49);/* IE 5-7 */
	-moz-opacity: 0.49; /* Netscape */
	-khtml-opacity: 0.49;/* Safari 1.x */
    opacity: 0.49;/* Good browsers */
    font-family: 'GilroyBlack';
    font-size:12.69px;
    color:#ffffff;
}
.newsBoxes .newsItem .newsTitle{
    font-family: 'GilroyExtrabold';
    font-size:23.64px;
    color:#ffffff;
    margin:14px 0 11px 0;
    line-height: 20px;
}
.newsBoxes .newsItem .newsDesc{
    -webkit-opacity: 0.49;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=49)";/* IE 8 */
	filter: alpha(opacity=0.49);/* IE 5-7 */
	-moz-opacity: 0.49; /* Netscape */
	-khtml-opacity: 0.49;/* Safari 1.x */
    opacity: 0.49;/* Good browsers */
    font-family: 'GilroyMedium';
    color:#ffffff;
    font-size:13.4px;
}
.newsBoxes .newsItem.medium .imageFrame:before{
    display: none;
}
.newsBoxes .newsItem.medium .newsTitle{
    font-size:15.87px;
}
.newsBoxes .newsItem.medium .dateTime{
    font-size:11.33px;
}
.newsBoxes .newsItem:hover .imageFrame:before{
    width: 100%;
    height: 100%;
}
.newsBoxes .newsItem:hover a{
    background-color:rgba(3,8,14,0);
    z-index: 3;
}
.ListTabBox{
    min-width: 394px;
    width: 34%;
    position: relative;
    padding-left: 15px;
}
.ListTabBox .allListButton{
    font-size:12.2px;
    margin-right: 20px;
      margin-bottom: 15px;
}
.ListTabBox .tabMenu.row {
    border-bottom:3px solid #f5f5f5;
    padding-bottom:25px;
    margin-bottom: 20px;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}
.ListTabBox .tabMenu a {
    font-family: 'GilroyMedium';
    font-size:29.05px;
    color:#c9c9c9;
    padding-left:17px;
}
.ListTabBox .tabMenu a:hover,
.ListTabBox .tabMenu a.active {
    font-family: 'GilroyBlack';
    color:#263953;
}
.ListTabBox .tabContent{
    height: 84%;
    border-bottom: 3px solid #f5f5f5;
}
.ListTabBox .tabContent .tabItem{
    position: absolute;
    width: 100%;
    height: 83%;
    -webkit-opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";/* IE 8 */
	filter: alpha(opacity=0);/* IE 5-7 */
	-moz-opacity: 0; /* Netscape */
	-khtml-opacity: 0;/* Safari 1.x */
    opacity: 0;/* Good browsers */
    visibility: hidden;
}
.ListTabBox .tabContent .tabItem.active{
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity: 1;/* Safari 1.x */
    opacity:1;/* Good browsers */
    visibility: visible;
}
.announcementsList,
.tendersList{
    overflow-y: auto;
    width: 100%;
    max-height: 326px;
}
.announcementsList::-webkit-scrollbar,
.tendersList::-webkit-scrollbar {
    width: 6px;
}
.announcementsList::-webkit-scrollbar-track,
.tendersList::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: lightgray;
}
.announcementsList::-webkit-scrollbar-thumb,
.tendersList::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline:none;
}
.announcementsList li{
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    padding:10px 15px;
}
.tendersList{
    width: 100%;
  
}
.tendersList li {
    padding:12px 15px 12px 25px;
}
.tendersList li a {
    position: relative;
}
.tendersList li a:before {
    content: "\2022";
    font-size: 50px;
    color: rgba(181,181,181,0.38);
    position: absolute;
    left: -56px;
    top: -18px;
}
.tendersList li.green a:before {
    color: rgba(0,175,8,1);
}
.tendersList li.red a:before {
    color:rgba(218,0,21,1);
}
.announcementsList li:nth-child(2n+2){
    background-color:#f6f6f6;
    /*height: 44px;*/
}
.announcementsList li .date{
    font-family: 'GilroyMedium';
    font-size:8.72px;
    color:#263953;
    flex: 0 0 39px;
}
.announcementsList li a{
    font-family: 'GilroySemibold';
    font-size:14px;
    color:#383838;
    padding-left:15px;
}
.announcementsList li a:hover{
    color:#263953;
}
.announcementsList li .date .bold{
    font-family: 'GilroyBlack';
    font-size:19.59px;
}
.regionMap{
    margin-top:60px;
    margin-bottom:60px;
}
.regionDetailsSection{
    background-image: url('../img/bolgemizBg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding-bottom:80px;
}
.sectionHeader{
    margin-bottom:40px;
}
.sectionHeader .titleColumn > span{
    font-family: 'GilroyRegular';
    font-size:16.8px;
    color:#263953;
    max-width: 60%;
    display: block;
    margin-top:5px;
    line-height: 20px;
}
.regionTabMenu a {
   color: #c9c9c9;
   margin-left: 10px;
   font-family: 'GilroyBlack';
   font-size:18.32px;
   position: relative;
   padding-bottom:11px;
}
.regionTabMenu a:after {
    content:"";
    background-color:#43546a;
    height: 5px;
    width: 0;
    position: absolute;
    left:0;
    bottom:-3.5px;
    -webkit-opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";/* IE 8 */
	filter: alpha(opacity=0);/* IE 5-7 */
	-moz-opacity: 0; /* Netscape */
	-khtml-opacity: 0;/* Safari 1.x */
    opacity: 0;/* Good browsers */
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.regionTabMenu a.active:after,
.regionTabMenu a:hover:after {
    -webkit-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
	filter: alpha(opacity=1);/* IE 5-7 */
	-moz-opacity: 1; /* Netscape */
	-khtml-opacity: 1;/* Safari 1.x */
    opacity:1;/* Good browsers */
    visibility: visible;
    width: 80%;
}
.regionTabMenu a:first-child {
    margin-left: 0;
 }
.regionTabMenu a.active,
.regionTabMenu a:hover {
    color: #35475f;
 }
.regionTabMenu {
    border-bottom: 3px solid #f5f5f5;
    margin-bottom:12px;
}
.regionDetailsTabMenu .regionDetailsTabMenuItem{
    display: none;
    border-bottom: 3px solid #f5f5f5;
    padding-bottom:11px;
}
.regionDetailsTabMenu .regionDetailsTabMenuItem a{
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    align-items: center;
    margin-left: 15px;
    font-family: 'GilroyBold';
    font-size:14.27px;
    color:#c9c9c9;
}
.regionDetailsTabMenu .regionDetailsTabMenuItem a:hover,
.regionDetailsTabMenu .regionDetailsTabMenuItem a.active{
    color:#35475f;
}
.regionDetailsTabMenu .regionDetailsTabMenuItem a:hover img,
.regionDetailsTabMenu .regionDetailsTabMenuItem a.active img{
    -webkit-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(130deg) saturate(7);
    -moz-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(130deg) saturate(7);
    -ms-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(130deg) saturate(7);
    -o-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(130deg) saturate(7);
    filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(130deg) saturate(7);
}
.regionDetailsTabMenu .regionDetailsTabMenuItem a:first-child{
    margin-left: 0;
}
.regionDetailsTabMenu .regionDetailsTabMenuItem a span{
    margin-left: 15px;
}
.regionDetailsTabMenu .regionDetailsTabMenuItem.active,
.regionDetailsTabMenu .regionDetailsTabMenuItem.firstSelect{
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}
.regionTabContent .tabItem{
    display: none;
}
.regionTabContent .tabItem.active{
    display: block;
}
.regionTabContent .tabItem .regionDetailsItem{
    display: none;
}
.regionTabContent .tabItem .regionDetailsItem.active,
.regionTabContent .tabItem .regionDetailsItem.firstSelect{
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
}
.regionDetailsItem .regionItemImg{
    -webkit-box-shadow: 2px 28px 30px 0px rgba(33, 31, 25, 0.22);
    -moz-box-shadow:2px 28px 30px 0px rgba(33, 31, 25, 0.22);
    -o-box-shadow:2px 28px 30px 0px rgba(33, 31, 25, 0.22);
    box-shadow:2px 28px 30px 0px rgba(33, 31, 25, 0.22);
    margin-top:30px;
}
.regionDetailsItem .regionItemImg:hover .imageFrame:before{
    width: 100%;
    height: 100%;
}
.regionDetailsItem .regionItemImg:first-child{
    margin-top:0;
}
.regionDetailsItem .imageFrame img{
    border: 12px solid #ffffff;
}
.regionImgList{
    padding-right: 54px;
}
.regionContentList {
  flex: 0 0 55%;
}
.regionContentList .regionContentListItem{
    margin-bottom: 10px;
}
.regionContentList .regionContentListItem .desc{
    height: 100%;
    padding-bottom:20px;
    padding-left:27px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    flex-grow: 1;
}
.regionContentList .regionContentListItem .desc p{
    font-family: 'GilroyMedium';
    font-size:14px;
    color:#454545;
}
.regionContentList .regionContentListItem .desc .moreInfoButton{
    font-family: 'GilroyBlack';
    font-size:11.39px;
    color:#c9c9c9;
}
.regionContentList .regionContentListItem .desc .moreInfoButton img{
    margin-left:7px;
}
.regionContentList .regionContentListItem .imageFrame img{
    border: 8px solid #efefef;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
      width: 125px;
      height: 116px;
}
.regionContentList .regionContentListItem:hover .imageFrame img{
    -webkit-transform: scale(1.2);   
    -moz-transform: scale(1.2);   
    -o-transform: scale(1.2);   
    transform: scale(1.2);   
}
.regionContentList .regionContentListItem:hover .desc{
    -webkit-transform: scale(0.9);   
    -moz-transform: scale(0.9);   
    -o-transform: scale(0.9);   
    transform: scale(0.9);   
}
.regionContentList .regionContentListItem:hover .desc .moreInfoButton{
    -webkit-transform: scale(1.7);   
    -moz-transform: scale(1.7);   
    -o-transform: scale(1.7);
    transform: scale(1.7);
    padding-left: 119px;
}


/*Bölgemiz Harita css*/
.orta-nokta{
    position: relative;
    height:381px;
    background-image: url('../img/regionBg.jpg');
    overflow-y: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.orta-nokta .sehirName {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    z-index: 50;
    display: none;
}
.orta-nokta .sehirName img {
    position: relative;
}
.orta-nokta .sehirName span {
    display: inline-block;
    background-color: #496a7d;
    color: #fff;
    font-weight: 600;
    padding: 5px;
    margin-left: -14px;
    padding-left: 18px;
    padding-right: 8px;
}
.orta-nokta .hcont{
    position: absolute;
    width: 489px;
    height: 314px;
    top: 20px;
    left: 45px;
    z-index: 20;
}
.orta-nokta .item{
    cursor: pointer;
} 
.orta-nokta .hcont svg{
    width: 489px;
    height: 314px;
    -webkit-filter: drop-shadow(-3px 11px 8px rgba(0,0,0,0.5));
    -moz-filter: drop-shadow(-3px 11px 8px rgba(0,0,0,0.5));
    -ms-filter: drop-shadow(-3px 11px 8px rgba(0,0,0,0.5));
    -o-filter: drop-shadow(-3px 11px 8px rgba(0,0,0,0.5));
    filter: drop-shadow(-3px 11px 8px rgba(0,0,0,0.5));
}
.orta-nokta .hcont svg path{
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    fill: #ffffff;
    -webkit-transform:translate(-5400px,-7000px) scale(1.511,1.511);
    -moz-transform:translate(-5400px,-7000px) scale(1.511,1.511);
    -ms-transform:translate(-5400px,-7000px) scale(1.511,1.511);
    -o-transform:translate(-5400px,-7000px) scale(1.511,1.511);
    transform:translate(-5400px,-7000px) scale(1.511,1.511);
}
.orta-nokta .hcont svg a:hover path,
.orta-nokta .hcont svg a.selected path{
    fill: #f26e33;
    transform: translate(-5700px,-7200px) scale(1.521,1.521);
}
.orta-nokta .hcont svg a{
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.orta-nokta .hcont svg text {
    display: block;
    position: relative;
    
}
.orta-nokta .hcont .iconPin.erzurum{
    top: 50px;
    position: absolute;
    right: -50px;
}
.orta-nokta .hcont .iconPin.erzincan{
    bottom: 85px;
    position: absolute;
    left: 33px;
}
.orta-nokta .hcont .iconPin.bayburt{
    top: 99px;
    position: absolute;
    left: 205px;
}
.orta-nokta .hcont .iconPin span{
    font-family: 'GilroyBlack';
    text-transform: capitalize;
    font-size:16.67px;
    color:#0a3958;
    text-align: center;
    height: 35px;
    background-color:#ffffff;
    display: inline-block;
    line-height: 35px;
    padding: 0 23px;
    -webkit-box-shadow: 1px 14px 14px 0px rgba(52, 52, 52, 0.52);
    -moz-box-shadow:1px 14px 14px 0px rgba(52, 52, 52, 0.52);
    box-shadow:1px 14px 14px 0px rgba(52, 52, 52, 0.52);
}
.orta-nokta .hcont .iconPin img{
    position: absolute;
    top: -8px;
    left: -33px;
}
.orta-nokta .hcont svg text:before {
    content:"";
    position: absolute;
    background-image: url('../img/icon/mappinIcon.png');
    width: 55px;
    height: 65px;
    
}
.orta-nokta .hcont svg text.erzurum {
    display: block;
    transform: translate(15366px,17501px);
}
.fnt0 {
    font-size: 717.03px;
    font-family: 'GilroyBlack';
}
.fil1 {
    fill: #fefefe;
}
.orta-nokta .hcont svg a:hover .fil1,
.orta-nokta .hcont svg a.selected .fil1 {
    -webkit-fill: #ffffff;
    -moz-fill: #ffffff;
    -ms-fill: #ffffff;
    -o-fill: #ffffff;
    fill: #ffffff;
}
.orta-property{
    position: absolute;
    left: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 999;
}
.orta-property .orta-group {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}
.orta-property .orta-group.active {
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 60px;
}
.orta-property .orta-group .half.column{
    height: 100%;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    float: left;
}
.orta-property .orta-group .oi{
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    height: 100%;
}
.orta-property .orta-group .oibaslik{
    font-family: 'GilroyMedium';
    color: #ffffff;
    font-size: 14.11px;
    padding-bottom: 3px;
}
.orta-property .orta-group .oideger{
    font-family: 'GilroyBlack';
    color: #ffffff;
    font-size:42.88px;
    letter-spacing: -1px;
    padding-bottom: 4px;
}
.orta-property .orta-group .oival{
    font-family: 'GilroyRegular';
    color: #ffffff;
    font-size: 16.59px;
}
.orta-nokta .dipnote {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 19px;
}
.orta-nokta .dipnote p{
    font-family: 'GilroyRegular';
    font-size: 14.57px;
    color: rgba(255,255,255,0.75);
    text-align: center;
}
.orta-nokta .titleColumn{
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    height: 100%;
}
.orta-property h1{
    font-family: 'GilroyBlack';
    font-size: 48.49px;
    color: #ffffff;
    position: relative;
    z-index:2;
}
.orta-property h1.regular{
    font-family: 'GilroyRegular';
}
.orta-property h1.bgOrange:before{
    content: "";
    width: 107%;
    height: 65%;
    background-color: #f26e33;
    position: absolute;
    top: 12px;
    left: -6px;
    -webkit-box-shadow: 1px 14px 14px 0px rgba(52, 52, 52, 0.52);
    -moz-box-shadow:1px 14px 14px 0px rgba(52, 52, 52, 0.52);
    -o-box-shadow:1px 14px 14px 0px rgba(52, 52, 52, 0.52);
    box-shadow:1px 14px 14px 0px rgba(52, 52, 52, 0.52);
    z-index: -1;
}
/* .orta-nokta .hcont svg .path1{
    -webkit-transform:translate(-6290px,-3201px) scale(0.949,0.939);
    -moz-transform:translate(-6290px,-3201px) scale(0.949,0.939);
    -ms-transform:translate(-6290px,-3201px) scale(0.949,0.939);
    -o-transform:translate(-6290px,-3201px) scale(0.949,0.939);
    transform:translate(-6290px,-3201px) scale(0.949,0.939);
}
.orta-nokta .hcont svg .path2{
    -webkit-transform:translate(-4776px,-2999px) scale(0.916,0.931);
    -moz-transform:translate(-4776px,-2999px) scale(0.916,0.931);
    -ms-transform:translate(-4776px,-2999px) scale(0.916,0.931);
    -o-transform:translate(-4776px,-2999px) scale(0.916,0.931);
    transform:translate(-4776px,-2999px) scale(0.916,0.931);
}
.orta-nokta .hcont svg .path3{
    -webkit-transform:translate(-5482px,-4470px) scale(0.966,0.994);
    -moz-transform:translate(-5482px,-4470px) scale(0.966,0.994);
    -ms-transform:translate(-5482px,-4470px) scale(0.966,0.994);
    -o-transform:translate(-5482px,-4470px) scale(0.966,0.994);
    transform:translate(-5482px,-4470px) scale(0.966,0.994);
}
.orta-nokta .hcont svg a:hover .path1,
.orta-nokta .hcont svg a.selected .path1{
    -webkit-transform:translate(-6890px,-3701px) scale(0.949,0.939);
    -moz-transform:translate(-6890px,-3701px) scale(0.949,0.939);
    -ms-transform:translate(-6890px,-3701px) scale(0.949,0.939);
    -o-transform:translate(-6890px,-3701px) scale(0.949,0.939);
    transform:translate(-6890px,-3701px) scale(0.949,0.939);
}
.orta-nokta .hcont svg a:hover .path2,
.orta-nokta .hcont svg a.selected .path2{
    -webkit-transform:translate(-4776px,-3799px) scale(0.916,0.931);
    -moz-transform:translate(-4776px,-3799px) scale(0.916,0.931);
    -ms-transform:translate(-4776px,-3799px) scale(0.916,0.931);
    -o-transform:translate(-4776px,-3799px) scale(0.916,0.931);
    transform:translate(-4776px,-3799px) scale(0.916,0.931);
}
.orta-nokta .hcont svg a:hover .path3,
.orta-nokta .hcont svg a.selected .path3{
    -webkit-transform:translate(-5282px,-4571px) scale(0.966,0.994);
    -moz-transform:translate(-5282px,-4571px) scale(0.966,0.994);
    -ms-transform:translate(-5282px,-4571px) scale(0.966,0.994);
    -o-transform:translate(-5282px,-4571px) scale(0.966,0.994);
    transform:translate(-5282px,-4571px) scale(0.966,0.994);
} */
/* .orta-nokta .hcont svg text.adiyaman {
    -webkit-transform: translate(15366px,6501px);
    -moz-transform:translate(15366px,6501px);
    -ms-transform: translate(15366px,6501px);
    -o-transform: translate(15366px,6501px);
    transform: translate(15366px,6501px);
}
.orta-nokta .hcont svg text.gaziantep {
    -webkit-transform: translate(8359px,16001px);
    -moz-transform:translate(8359px,16001px);
    -ms-transform: translate(8359px,16001px);
    -o-transform: translate(8359px,16001px);
    transform: translate(8359px,16001px);
}
.orta-nokta .hcont svg text.kilis {
    -webkit-transform: translate(4559px,18491px);
    -moz-transform:translate(4559px,18491px);
    -ms-transform:translate(4559px,18491px);
    -o-transform:translate(4559px,18491px);
    transform:translate(4559px,18491px);
} */
/*Bölgemiz Harita css END*/

/*Accordion Menu*/
.leftColumn {
    min-width: 200px;
    max-width: 200px;
    background-color:#ffffff;
}
.leftColumn.noMenu{
    min-width: 210px;
    padding-right: 25px;
}
.rightColumn{
    padding-left:30px;
}
.accLeftMenu{
    margin-top:13px;
    background-color:#ffffff;
    position: relative;
}
.leftColumn .subList {
    display: none;
    padding-left: 28px;
    width: 100%;
}
.leftColumn .accLeftMenu > li.active .subList {
    display: block;
}
.leftColumn .accLeftMenu > li .subList li {
    position: relative;
}
.leftColumn .accLeftMenu > li .subList li:before {
    content: "+";
    font-family: 'GilroyMedium';
    font-size:14.5px;
    color:#2d2d2d;
    left: -12px;
    position: absolute;
}
.leftColumn .accLeftMenu > li .subList li.active:before {
    font-family: 'GilroyBlack';
    color:#292929;
}
.accLeftMenu:after{
    content: "";
    background-image: url('../img/accMenuBg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;;
    position: absolute;
    top:-240px;
    right: -51px;
    width: 106px;
    height: 650px;
    z-index: -1;
}
.accLeftMenu li{
    position: relative;
    line-height: 17px;
    padding:6px 0;
}
.accLeftMenu > li.active:after,
.accLeftMenu > li:hover:after{
    content:"";
    width: 6px;
    height: 28px;
    background-color:#e4612b;
    position: absolute;
    top:0;
    right: -6px;
}
.accLeftMenu a{
    font-family: 'GilroyMedium';
    font-size:14.5px;
    color:#2c2c2c;
}
.accLeftMenu li:hover > a,
.accLeftMenu li.active > a{
    font-family: 'GilroyBlack';
    color:#0d3c5b;
}
.accLeftMenu .subList li:hover > a,
.accLeftMenu .subList li.active > a{
    color:#292929;
}
.leftHeadTitle span{
    font-family: 'GilroyBlack';
    font-size:27.49px;
    color:#0d3c5b;
}
.rightHeadTitle{
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 12px;
    padding-top: 9px;
    margin-bottom:20px;
}
.rightHeadTitle .breadCrumb a{
    font-family:'GilroyMedium';
    font-size:12.23px;
    color:#2d2d2d;
    position: relative;
    padding-left: 24px;
}
.rightHeadTitle .breadCrumb a:after{
    content: "";
    background-image: url('../img/icon/breadRightArrow.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top:2px;
    left:5px;
    width: 8px;
    height: 12px;
}
.rightHeadTitle .breadCrumb a:first-child{
    padding-left:0;
}
.rightHeadTitle .breadCrumb a:first-child:after{
    display: none;
}
.rightHeadTitle .breadCrumb a.active,
.rightHeadTitle .breadCrumb a:hover{
    color:#0d3c5b;
}
.commonContent{
    padding-bottom:100px;
}
.commonContent .pageTitle{
  margin-bottom: 15px;
}
.commonContent .yonetimSubTitle{
  margin-bottom: 15px;
}
.paragraph p{
    font-family: 'GilroyRegular';
    font-size:14px;
    color:#2d2d2d;
    /*padding:10px 0;*/
    padding-bottom: 15px;
    text-align: justify;
}
.paragraph ul{
  margin-bottom: 15px;
  margin-left: 15px;
}
.paragraph ul li{
    list-style: disc;
}
.paragraph ol{
  margin-bottom: 15px;
  margin-left: 15px;
}
.paragraph ol li{
    list-style: decimal;
}
.paragraph .imageFrame{
    margin:25px auto;
    text-align: center;
}
.subPage .imageFrame{
    position: relative;
}
.subPage .imageFrame:before{
    content:"";
    background-color:#f6f6f6;
    width: 102.6%;
    height: 99%;
    position: absolute;
    top:-14px;
    left:-14px;
    z-index: -1;
}
.shareBox a{
    font-family: 'GilroyBlack';
    font-size:10.07px;
    color:#2d2d2d;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}
.shareBox a.fontPlus{
    font-size:15.02px;
    margin-left:15px;
}
.shareBox a img{
    margin-right: 5px;
}
.shareBox a span{
    -webkit-opacity: 0.24;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=24)";/* IE 8 */
    filter: alpha(opacity=0.24);/* IE 5-7 */
    -moz-opacity: 0.24; /* Netscape */
    -khtml-opacity: 0.24;/* Safari 1.x */
    opacity: 0.24;/* Good browsers */
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.shareBox a:hover span{
    -webkit-opacity: 0.54;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=54)";/* IE 8 */
    filter: alpha(opacity=0.54);/* IE 5-7 */
    -moz-opacity: 0.54; /* Netscape */
    -khtml-opacity: 0.54;/* Safari 1.x */
    opacity: 0.54;/* Good browsers */
}
.shareBox .shareButton{
    position: relative;
    margin-left: 22px;
    margin-right: 33px;
}
.shareBox .shareButton .socialButtons{
    -webkit-opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";/* IE 8 */
    filter: alpha(opacity=0);/* IE 5-7 */
    -moz-opacity: 0; /* Netscape */
    -khtml-opacity: 0;/* Safari 1.x */
    opacity: 0;/* Good browsers */
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: absolute;    
}
.shareBox .shareButton.active .socialButtons{
    -webkit-opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
    filter: alpha(opacity=1);/* IE 5-7 */
    -moz-opacity: 1; /* Netscape */
    -khtml-opacity: 1;/* Safari 1.x */
    opacity:1;/* Good browsers */
    visibility: visible;
}
.shareBox .shareButton .socialButtons a{
    color: black;
    position: relative;
    font-size:0;
    display:inline-block;
    cursor: pointer;
    margin-right: 12px;
}
.shareBox .shareButton .socialButtons a:before{
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    top:0;
    width: 25px;
    height: 25px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.shareBox .shareButton .socialButtons a.flaticon-facebook:before{
    background-image: url('../img/icon/facebook.svg');
    -webkit-filter: invert(100%) brightness(0.5) sepia(5) hue-rotate(-180deg) saturate(6);
    -moz-filter: invert(100%) brightness(0.5) sepia(5) hue-rotate(-180deg) saturate(6);
    -o-filter: invert(100%) brightness(0.5) sepia(5) hue-rotate(-180deg) saturate(6);
    filter: invert(100%) brightness(0.5) sepia(5) hue-rotate(-180deg) saturate(6);
    top:15px;
    left:0;
}
.shareBox .shareButton .socialButtons a.flaticon-twitter:before{
    background-image: url('../img/icon/twitter.svg');
    -webkit-filter: invert(100%) brightness(0.6) sepia(5) hue-rotate(-180deg) saturate(6);
    -moz-filter: invert(100%) brightness(0.6) sepia(5) hue-rotate(-180deg) saturate(6);
    -o-filter: invert(100%) brightness(0.6) sepia(5) hue-rotate(-180deg) saturate(6);
    filter: invert(100%) brightness(0.6) sepia(5) hue-rotate(-180deg) saturate(6);
    top: 15px;
    left: 15px;
}
.shareBox .shareButton .socialButtons a:hover.flaticon-facebook:before{
    -webkit-filter: invert(100%) brightness(0.3) sepia(5) hue-rotate(-180deg) saturate(6);
    -moz-filter: invert(100%) brightness(0.3) sepia(5) hue-rotate(-180deg) saturate(6);
    -o-filter: invert(100%) brightness(0.3) sepia(5) hue-rotate(-180deg) saturate(6);
    filter: invert(100%) brightness(0.3) sepia(5) hue-rotate(-180deg) saturate(6);
}
.shareBox .shareButton .socialButtons a:hover.flaticon-twitter:before{
    -webkit-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(-180deg) saturate(6);
    -moz-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(-180deg) saturate(6);
    -o-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(-180deg) saturate(6);
    filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(-180deg) saturate(6);
}
.listPager .pager {
    margin-top: 45px;
    margin-bottom: 45px;
}
.listPager .pager a {
    font-family: 'GilroyRegular';
    font-size: 18.26px;
    color: #bbbbbb;
    position: relative;
    line-height: 33px;
}
.listPager .pager > a.prev {
    -webkit-border-right: 1px solid #e2e2e2;
    -moz-border-right: 1px solid #e2e2e2;
    -o-border-right: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    padding: 0 15px 0 48px;
}
.listPager .pager > a.next {
    -webkit-border-left: 1px solid #e2e2e2;
    -moz-border-left: 1px solid #e2e2e2;
    -o-border-left: 1px solid #e2e2e2;
    border-left: 1px solid #e2e2e2;
    padding: 0 48px 0 15px;
}
.listPager .pager ul {
    padding: 0 12px;
}
.listPager .pager ul li a {
    font-family: 'GilroyBlack';
    font-size: 19.78px;
    color: #bbbbbb;
    display: block;
    width: 33px;
    height: 33px;
    text-align: center;
    line-height: 33px;
}
.listPager .pager > a:before {
    content: "";
    background-image: url(../img/icon/pagerArrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 29px;
}
.listPager .pager > a.next:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    right: 0;
    left: auto;
}
.listPager .pager ul li a:hover, 
.listPager .pager ul li a.active {
    color: #ffffff;
    background-color: #002a3c;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}   
.listPager .pager ul li.otherIndex a:after {
    content: "\2022\2022\2022";
    color: #bbbbbb;
    position: absolute;
    right: 0;
    top: 0;
}
.listPager .pager ul li.otherIndex:hover a {
    background: none;
}
.listPager .pager ul li.otherIndex:hover a:after {
    color: #002a3c;
}
.newsItemBoxes {
    margin: 0 -10px;
}
.newsItemBoxes .newsItem {
    padding:18px 12px;
}
.newsItemBoxes .newsItem .imageFrame{
    border:13px solid #f7f7f7;
}
.newsItemBoxes .newsItem .imageFrame img{
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.newsItemBoxes .newsItem span{
    color:#3e3e3e;
    line-height: 20px;
}
.newsItemBoxes .newsItem:hover span{
    color:#002a3c;
}
.newsItemBoxes .newsItem:hover .imageFrame img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.newsItemBoxes .newsItem .title{
    font-family: 'GilroyBlack';
    font-size:15.07px;
}
.newsItemBoxes .newsItem .dateTime{
    font-family: 'GilroyRegular';
    font-size:11.14px;
}
.newsItemBoxes .newsItem .newsDesc{
    position: relative;
    padding: 17px 0;
}
.newsItemBoxes .newsItem .newsDesc:after{
    content:"";
    background-color:#efefef;
    height: 6px;
    width: 24.4%;
    position: absolute;
    bottom:0;
    left:0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.newsItemBoxes .newsItem:hover .newsDesc:after{
    background-color:#002a3c;
    width: 100%;
}

.newsSlider{
    max-width: 350px;
    min-width: 350px;
    width: 350px;
    position: relative;
}
.newsSlider .newsDetailsSlider{
    position: relative;
}
.subPage .slick-list:after{
    content:"";
    width: 100%;
    height: 80%;
    background-color:#f2f2f2;
    position: absolute;
    top:0;
    left:0;
    z-index: -1;
}
.newsSlider .newsSliderTitle{
    font-size:20.78px;
    color:#143551;
    font-family: 'GilroyBlack';
    position: absolute;
    top: 295px;
}
.subPage .slick-dots {
    position: relative;
    text-align: left;
    width: 100%;
    margin-top: 30px;
    margin-left: -3px;
}
.subPage .slick-dots li {
    width: 114px;
    height: auto;
    margin: 0;
    padding:5px;
}
.subPage .slick-dots li .thumbnails img{
    width: 100%;
}
.subPage .slick-list{
    max-height: 274px;
    position: relative;
    padding:10px;
}
.paragraphHeader{
    padding-bottom:10px;
}
.paragraphHeader .pTitle{
    font-size:27.89px;
    font-family: 'GilroyBlack';
    color:#143551;
}
.paragraphHeader .dateTime{
    font-family: 'GilroyRegular';
    font-size:16.12px;
    color:#d7d7d7;
    padding-top:10px;
}
/*Table*/
.regionTable{
    border: 13px solid #f9f9f9;
    padding: 15px;
    margin: 40px 0;
}
.regionTable .row{
    margin-bottom: 5px;
}
.regionTable .regionTitle span{
    color: #ffffff;
    font-size: 14.64px;
    font-family: 'GilroyBold';
    border: none;
    border-radius: 0;
}
.regionTable .title{
    font-family: 'GilroyBold';
    font-size: 14.64px;
    color: #4c4c4c;
    background-color: #f2f2f2;
}
.regionTable span{
    color: #4c4c4c;
    font-family: 'GilroyBold';
    font-size:16.01px;
    width: 25%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #f2f2f2;
    height: 44px;
    line-height: 44px;
    margin-left: 5px;
    padding-left: 15px;
}
.regionTable span:first-child{
    margin-left: 0;
}
.regionTable .note{
    font-family: 'GilroyBold';
    font-size:14.22px;
    color:#4c4c4c;
    -webkit-opacity: 0.39;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=39)";/* IE 8 */
    filter: alpha(opacity=0.39);/* IE 5-7 */
    -moz-opacity: 0.39; /* Netscape */
    -khtml-opacity: 0.39;/* Safari 1.x */
    opacity: 0.39;/* Good browsers */
    width: 100%;
    border: none;
    padding-left: 0;
    margin-left: 0;
}
.regionTable.halfColumn span{
    width: 50%;
}

.corporationSupportList .corporationSupportItem{
    margin-top:25px;
    margin-bottom:15px;
    border-top:1px solid #f2f2f2;
    border-bottom:1px solid #f2f2f2;
    padding: 10px 0;
    max-width: 492px;
}
.corporationSupportList .corporationSupportItem > div{
    border-left:1px solid #ececec;
    padding-left:20px;
    height: 100%;
    margin-left:20px;
}
.corporationSupportList .corporationSupportItem > div:first-child{
    border-left:none;
    padding-left:0;
    margin-left:0;
}
.corporationSupportList .corporationSupportItem span{
    font-family: 'GilroyRegular';
    font-size:13.3px;
    color:#292929;
    -webkit-opacity: 0.38;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=38)";/* IE 8 */
    filter: alpha(opacity=0.38);/* IE 5-7 */
    -moz-opacity: 0.38; /* Netscape */
    -khtml-opacity: 0.38;/* Safari 1.x */
    opacity: 0.38;/* Good browsers */
}
.corporationSupportList .corporationSupportItem span.bold{
    font-family: 'GilroyBlack';
}  
.corporationSupportList .corporationSupportItem:hover span{
    -webkit-opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";/* IE 8 */
    filter: alpha(opacity=1);/* IE 5-7 */
    -moz-opacity:1; /* Netscape */
    -khtml-opacity:1;/* Safari 1.x */
    opacity: 1;/* Good browsers */
}

.documentCenter .acc{
    width: 100%;
}
.acc{
    margin-top:35px;
}
.accTitle{
    color: #1e1e1e;
    font-family: 'GilroyBold';
    font-size: 15px;
    position: relative;
    -webkit-transition: all 0.3 ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color:#f3f3f3;
    padding: 25px 24px 20px 24px;
    cursor: pointer;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}
.accTitle:nth-child(4n+1){
    /*background-color:#fbfbfb;*/
      background-color: #e6e6e6;
}
.accTitle.active{
    background-color:#0d3c5b;
    color: #ffffff;
}
.accContent{
    height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    -webkit-transition: all 1 linear; 
    -moz-transition: all 1s linear; 
    -o-transition: all 1s  linear;
    transition: all 1s  linear;
    font-family: 'GilroyRegular';
    position: relative;
}   
.accContent.active.borderBottom{
    border-bottom:3px solid #f6f6f6;
    margin-bottom:35px;
}
.accContent.active{
    height: auto;
    overflow: visible;
    visibility: visible;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    -webkit-transition: all 0.3 linear; 
    -moz-transition: all 0.3s linear; 
    -o-transition: all 0.3s  linear;
    transition: all 0.3s  linear;
}
.accContent > .acc{
    padding-left:64px;
}
.accContent > div{
    padding-left:66px;
    padding-top:25px;
    padding-bottom:25px;
}
.accContent .paragraph{
  /*padding-top: 0;
  padding-bottom: 0;*/
}
.accContent.noPaddingLeft > div{
    padding-left:0;
}
.accContent.listBetween > div{
    margin: -15px;;
}
.accContent > div.acc{
    margin-top:0;
    padding-top:0;
}
.accContent .acc .accTitle{
    padding-left:65px;
}
.acc .accTitle:before{
    content:"+";
    position: absolute;
    font-family: 'GilroyMedium';
    font-size:25.55px;
    color:#5b5b5b;
    -webkit-opacity: 0.27;
    -moz-opacity: 0.27;
    -o-opacity: 0.27;
    opacity: 0.27;
    -webkit-transition: all 0.3 linear; 
    -moz-transition: all 0.3s linear; 
    -o-transition: all 0.3s  linear;
    transition: all 0.3s  linear;
    right: 25px;
    top: 50%;
    margin-top: -11px;
}
.acc .accTitle.active:before{
    content:"-";
    margin-top: -12px;
    color:#ffffff;
    -webkit-opacity:1;
    -moz-opacity:1;
    -o-opacity:1;
    opacity:1;
}
.acc .accTitle img{
    margin-right: 20px;
}
.acc .accTitle.active img{
    -webkit-filter:invert(100%);
    -moz-filter:invert(100%);
    -ms-filter:invert(100%);
    -o-filter:invert(100%);
    filter:invert(100%);
}
.accContent .acc .accTitle:before{
    left: 25px;
    right: auto;
    color:#5b5b5b;
}
.accContent .acc.rightButton .accTitle:before{
    left: auto;
    right: 25px;
}
.accContent .acc .accTitle.active{
    color: #1e1e1e;
    background-color:#f3f3f3;
}
.accContent .acc.rightButton .accTitle{
    padding-left:20px;
}
.accContent .acc .accTitle.active:before{
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}
.accContent .acc .accTitle:nth-child(4n+1){
    background-color:#fbfbfb;
}
.successfulProjects{
    margin-top:45px;
}
.successfulProjects label{
    font-family: 'GilroyBold';
    font-size:15px;
    color: #363636;
    margin-bottom:10px;
}
.successfulProjects select{
    font-family: 'GilroyBold';
    font-size:15px;
    color: #363636;
    height: 60px;
    border: 1px solid #e4e4e4;
    padding-left: 20px;
}
.successfulProjects .projectsList{
    margin-top:65px;
}
.successfulProjects .projectsList .projectsListItem{
    padding: 20px 0;
}
.successfulProjects .projectsList .projectsListItem img{
    border: 13px solid #f3f3f3;
}
.successfulProjects .projectsList .projectsListItem .descriptions{
    border-top:1px solid #f2f2f2;
    border-bottom:1px solid #f2f2f2;
    padding: 22px 0;
}
.successfulProjects .projectsList .projectsListItem > div:first-child{
    padding-right:28px;
}
.successfulProjects .projectsList .projectsListItem .descriptions span{
    font-family: 'GilroyBold';
    font-size:13.73px;
    color:#1c1c1c;
    -webkit-opacity: 0.20;
    -moz-opacity: 0.20;
    -o-opacity: 0.20;
    opacity: 0.20;
    display: block;
}
.successfulProjects .projectsList .projectsListItem .descriptions span.title{
    font-family: 'GilroyBlack';
    font-size:19.89px;
    color:#1c4865;
    -webkit-opacity:1;
    -moz-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}
.successfulProjects .projectsList .projectsListItem:hover .descriptions span{
    -webkit-opacity:1;
    -moz-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}
.projectItem {
    max-width: 157px;
    margin:18px 13px;
}
.projectItem .imageFrame{
    position: relative;
    border:9px solid #f3f3f3;
}
.projectItem .imageFrame:before{
    display: none;
}
.projectItem .imageFrame .details{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
}
.projectItem .imageFrame .details span{
    font-family: 'GilroyBlack';
    font-size: 8px;
  padding: 0px 20px;
    color: #ffffff;
    text-align: center;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.projectItem .imageFrame .details .hr{
    background-color:#e65e27;
    height: 4px;
    width: 50%;
}
.projectItem .description{
    text-align: center;
    padding: 11px 0 10px 0;
    border-bottom:3px solid #f3f3f3;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.projectItem .description span{
    font-family: 'GilroyBlack';
    font-size:10.99px;
    color:#2f2f2f;
    -webkit-opacity: 0.25;
    -moz-opacity: 0.25;
    -o-opacity: 0.25;
    opacity: 0.25;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.projectItem .description span.title{
  color: #2f2f2f;
  font-size: 13.25px;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  line-height: 25px;
  font-size: 11px;
  line-height: 15px;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.projectItem:hover .description{
    border-bottom:3px solid #12354b;
}
.projectItem:hover .description span{
    color:#12354b;
    -webkit-opacity:1;
    -moz-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}
.projectItem:hover .imageFrame .details span{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.projectItem:hover .imageFrame .details span.hr{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.tabs.documentCenter .tabMenu a{
    font-size:17px;
    font-family: 'GilroyBlack';
    padding-left: 55px;
    -webkit-opacity: 0.26;
    -moz-opacity: 0.26;
    -o-opacity: 0.26;
    opacity: 0.26;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.tabs.documentCenter {
    margin-top:40px;
}
.tabs.documentCenter .tabMenu a.active,
.tabs.documentCenter .tabMenu a:hover{
    -webkit-opacity:1;
    -moz-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}
.tabs.documentCenter .tabMenu a:first-child{
    padding-left: 0;
}
.tabs.documentCenter .tabMenu a span{
    font-size:14px;
    color:#3e3e3e;
    display: block;
    font-family: 'GilroyMedium';
}
.tabs.documentCenter .tabMenu a span.bold{
    font-size:17px;
    font-family: 'GilroyBlack';
}
.tabs.documentCenter .tabMenu a img{
    -webkit-filter:invert(39%) brightness(0.3) sepia(3) hue-rotate(28deg) saturate(3);
    -moz-filter:invert(39%) brightness(0.3) sepia(3) hue-rotate(28deg) saturate(3);
    -ms-filter:invert(39%) brightness(0.3) sepia(3) hue-rotate(28deg) saturate(3);
    -o-filter:invert(39%) brightness(0.3) sepia(3) hue-rotate(28deg) saturate(3);
    filter:invert(39%) brightness(0.3) sepia(3) hue-rotate(28deg) saturate(3);
    margin-right: 7px;
}
.tabs.documentCenter .tabMenu a.active img,
.tabs.documentCenter .tabMenu a:hover img{
    -webkit-filter:invert(0);
    -moz-filter:invert(0);
    -ms-filter:invert(0);
    -o-filter:invert(0);
    filter:invert(0);
}









.tabs.documentCenter .tabMenuFake a{
    font-size:17px;
    font-family: 'GilroyBlack';
    padding-left: 55px;
    -webkit-opacity: 0.26;
    -moz-opacity: 0.26;
    -o-opacity: 0.26;
    opacity: 0.26;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.tabs.documentCenter {
    margin-top:40px;
}
.tabs.documentCenter .tabMenuFake a.active,
.tabs.documentCenter .tabMenuFake a:hover{
    -webkit-opacity:1;
    -moz-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}
.tabs.documentCenter .tabMenuFake a:first-child{
    padding-left: 0;
}
.tabs.documentCenter .tabMenuFake a span{
    font-size:14px;
    color:#3e3e3e;
    display: block;
    font-family: 'GilroyMedium';
}
.tabs.documentCenter .tabMenuFake a span.bold{
    font-size:17px;
    font-family: 'GilroyBlack';
}
.tabs.documentCenter .tabMenuFake a img{
    -webkit-filter:invert(39%) brightness(0.3) sepia(3) hue-rotate(28deg) saturate(3);
    -moz-filter:invert(39%) brightness(0.3) sepia(3) hue-rotate(28deg) saturate(3);
    -ms-filter:invert(39%) brightness(0.3) sepia(3) hue-rotate(28deg) saturate(3);
    -o-filter:invert(39%) brightness(0.3) sepia(3) hue-rotate(28deg) saturate(3);
    filter:invert(39%) brightness(0.3) sepia(3) hue-rotate(28deg) saturate(3);
    margin-right: 7px;
}
.tabs.documentCenter .tabMenuFake a.active img,
.tabs.documentCenter .tabMenuFake a:hover img{
    -webkit-filter:invert(0);
    -moz-filter:invert(0);
    -ms-filter:invert(0);
    -o-filter:invert(0);
    filter:invert(0);
}


.photoGallery{
    width: 100%;
}
.folderSearchArea{
    position: relative;
    border: 9px solid #f7f7f7;
    height: 96px;
    margin-top:35px;
    margin-bottom:40px;
}
.folderSearchArea input[type="text"]{
    font-family: 'GilroyMedium';
    font-size:14.22px;
    color:#1c1c1c;
    width: 98%;
    padding-left:20px;
    border:none;
    outline: none;
}
.folderSearchArea button{
    position: absolute;
    -webkit-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -moz-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -ms-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -o-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    -webkit-opacity: 0.19;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=19)";
    filter: alpha(opacity=0.19);
    -moz-opacity: 0.19;
    -khtml-opacity: 0.19;
    opacity: 0.19;
    right: 18px;
}
.folderSearchArea button:hover{
    -webkit-opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=1);
    -moz-opacity:1;
    -khtml-opacity: 1;
    opacity:1;
    cursor: pointer;
}
.tabs .tabContent .tabItem{
    display:none;
}
.tabs .tabContent .tabItem.active{
    display: flex;
}
.photoGalleryHome .itemGaleryHome{
    position: relative;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.photoGalleryHome .itemGaleryHome > img{
    width: 333px;
    height: 224px;
}
.photoGalleryHome .itemGaleryHome .column .img{
    
}
.photoGalleryHome .itemGaleryHome > div{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: 2;
    background-image: url(../img/fotografGalerisi/overBg.png);
    background-repeat: repeat-x;
    background-position: left center;
    background-size: contain;
    padding-bottom:18px;
}
.photoGalleryHome .itemGaleryHome > div span{
    font-family: 'GilroySemibold';
    font-size:13.31px;
    color:#ffffff;
    padding-top:9px;
}
.photoGalleryHome .itemGaleryHome > div span.title{
    font-family: 'GilroyBlack';
    font-size:20.06px;
    padding-top:20px;
}
.photoGalleryHome .itemGaleryHome:hover{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.photoGallery {
    margin:-10px;
}
.photoGallery > a{
    padding: 10px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 20%;
}
.photoGallery >  a img{
    width: 100%;
    height: 150px;
}
.photoGallery > a:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.downloadList{
    margin-top:18px;
}
.downloadItem {
    border-bottom:3px solid #f6f6f6;
    padding-bottom:11px;
    padding-top:11px;
}
.downloadItem a span{
    padding-right:30px;
}
.downloadList .downloadItem a span{
    padding-right:0;
}
.downloadItem span{
    font-family: 'GilroyMedium';
}
.downloadItem span.title{
    font-size:14.57px;
    color:#1e1e1e;
    padding-left:30px;
  margin-bottom: 0;
}
.downloadItem span.title a{
    color:#1e1e1e;
}
.downloadItem a span{
    -webkit-opacity: 0.37;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=37)";
    filter: alpha(opacity=0.37);
    -moz-opacity: 0.37;
    -khtml-opacity: 0.37;
    opacity: 0.37;
    font-size:9.64px;
    color:#797979;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.downloadItem a img{
    -webkit-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    filter: alpha(opacity=0.15);
    -moz-opacity: 0.15;
    -khtml-opacity: 0.15;
    opacity: 0.15;
    margin-right: 10px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.downloadItem a:hover span{
    -webkit-opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}
.downloadItem a:hover img{
    -webkit-opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=0.8);
    -moz-opacity:0.8;
    -khtml-opacity:0.8;
    opacity: 0.8;
}
.standartForm label{
    font-size:15px;
    color:#363636;
    font-family: 'GilroyBold';
    padding-top:15px;
    padding-bottom:10px;
}
.standartForm label span{
    color:#09bec2;
}
.standartForm input[type="text"],
.standartForm select {
    font-family: 'GilroyLight';
    font-size: 15px;
    color: rgba(51,51,51,0.31);
    padding: 0 10px 0 16px;
    height: 55px;
    line-height: 55px;
    border: 1px solid #d2d2d2;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}
.standartForm .inputArea {
    border: 1px solid #d2d2d2;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    position: relative;
}
.standartForm .inputArea select {
    border: none;
    width: 90px;
    padding-left: 16px;
}
.standartForm .inputArea input[type="text"] {
    border: none;
}
.standartForm .inputArea:after {
    content: "";
    width: 2px;
    height: 60%;
    background-color: #d2d2d2;
    position: absolute;
    left: 90px;
    top: 13px;
}
.standartForm .row .half{
    padding-left: 33px;
}
.standartForm .row .half:first-child{
    padding-left: 0;
    padding-right: 33px;
}
.standartForm .captchaColumnArea{
    padding-left:33px;
}
.standartForm .captcha{
  transform: scale(0.7);
  transform-origin: top;
}
.standartForm .button{
    height: 55px;
    cursor: pointer;
}
.standartForm textarea{
    border: 1px solid #d2d2d2;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    margin-bottom:35px;
    font-family: 'GilroyLight';
    font-size: 15px;
    color: rgba(51,51,51,0.31);
    padding: 15 10px 0 16px;
}
.contactPage .acc .accTitle img{
    -webkit-filter:invert(28%) brightness(0.2) sepia(5) hue-rotate(149deg) saturate(9);
    -moz-filter:invert(28%) brightness(0.2) sepia(5) hue-rotate(149deg) saturate(9);
    -ms-filter:invert(28%) brightness(0.2) sepia(5) hue-rotate(149deg) saturate(9);
    -o-filter:invert(28%) brightness(0.2) sepia(5) hue-rotate(149deg) saturate(9);
    filter:invert(28%) brightness(0.2) sepia(5) hue-rotate(149deg) saturate(9);
}
.contactPage .acc .accTitle.active img{
    -webkit-filter:none;
    -moz-filter:none;
    -ms-filter:none;
    -o-filter:none;
    filter:none;
}
.contactPage .mapColumn{
    width: 40%;
}
.contactPage .mapColumn iframe{
    width: 100%;
    height: 195px;
}
.contactPage .adressDetails a{
    font-family: 'GilroyRegular';
    font-size:14.44px;
    color:#262626;
    padding-bottom:18px;
}
.contactPage .adressDetails a:hover{
    color:#0d3c5b;
}
.contactPage .adressDetails a span{
    padding-left:30px;
}
.contactPage .adressDetails a.adress{
    padding-left:3px;
}
.contactPage .adressDetails a.email{
    padding-left:2px;
}
.contactPage .adressDetails a.phone span{
    padding-left:26px;
}
.contactPage .adressDetails a.fax span{
    padding-left:28px;
}
.corporateItem{
    border-bottom:1px solid #f0f0f0;
    padding-bottom:25px;       
    padding-top:25px;       
}
.corporateItem .imageFrame{
    width: 235px;
    height: 195px;
}
.corporateItem .imageFrame img{
    max-width: 100%;
    max-height: 100%;
}
.corporateItem .imageFrame:before{
    display: none;
}
.corporateItem .corporateItemTitle{
    font-family: 'GilroyBlack';
    font-size:20.02px;
    color:#1c4865;
    padding-left: 25px;
}
.corporateItem .logoFormat{
    border-top:1px solid #f0f0f0;
    padding:6px 0;
}
.corporateItem .logoFormatsLink{
    padding-left: 25px;
}
.corporateItem .logoFormat:first-child{
    border-top:none;
}
.corporateItem .logoFormat:nth-child(2){
    border-top:none;
}
.corporateItem .logoFormat span{
    border-left:1px solid #f0f0f0;
    border-right:1px solid #f0f0f0;
    padding: 10px 17px;
}
.corporateItem .logoFormat a{
    font-family: 'GilroySemibold';
    font-size:14.04px;
    color:#5b5b5b;
    -webkit-opacity: 0.45;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=45)";
    filter: alpha(opacity=0.45);
    -moz-opacity:0.45;
    -khtml-opacity:0.45;
    opacity: 0.45;
    padding-left: 10px;
}
.corporateItem .logoFormat a:hover{
    -webkit-opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=1);
    -moz-opacity:1;
    -khtml-opacity:1;
    opacity: 1;
}
.corporatePage h4{
    margin-bottom:25px;
}
.corporatePage h6{
    margin-top:30px;
}
.managementMembers{
    margin-top:35px;
    margin-left: -20px;
    margin-right: -20px;
}
.managementMembers .membersItem{
  width: 33.333333%;
  padding: 20px;
  flex: 0 0 33.333333%;
}
.managementMembers .membersItem .imageFrame{
    width: 104px;
    position: relative;
}
.managementMembers .membersItem .imageFrame:before {
    width: 112.9%;
    height: 82%;
    top: -7px;
    left: -7px;
    z-index: 1;
    background-color:#ededed;
}
.managementMembers .membersItem .imageFrame:after {
    content:"";
    position: absolute;
    bottom:-3px;
    width: 50%;
    background-color:#0d3c5b;
    height:3px;
    left: 50%;
    margin-left: -25px;
}
.managementMembers .membersItem .imageFrame img {
  z-index: 2;
  position: relative;
  width: 104px;
  height: 110px;

}
.managementMembers .membersItem .desc{
    border-top:1px solid #dbdbdb;
    border-bottom:1px solid #dbdbdb;
    padding: 9px 0 9px 20px; 
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -o-flex-grow: 1;
    flex-grow: 1;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.managementMembers .membersItem:hover .desc{
    background-color:#ededed;
}
.managementMembers .membersItem .desc span{
    font-family: 'GilroyMedium';
    font-size:14.95px;
    color:#2d2d2d;
}
.managementMembers .membersItem .desc .name{
    font-family: 'GilroyBlack';
    font-size:17.67px;
    margin-bottom:11px;
}
.managementMembers .membersItem .desc .title{
    font-family: 'GilroyExtrabold';
    margin-bottom:6px;
}
.developmentBoardPage .downloadList{
    margin:60px -10px 0 -10px;
}
.developmentBoardPage .downloadList > div.half{
    padding: 10px;
}
.developmentBoardPage .downloadList .columnTitle{
    font-family: 'GilroyBold';
    font-size:15px;
    color:#1e1e1e;
    background-color:#f3f3f3;
    padding: 20px;
}
.developmentBoardPage .downloadItem .title{
    font-family: 'GilroyBold';
}
.developmentBoardPage .personProp{
    margin-top: 25px;
    margin-bottom: 25px;
}
.developmentBoardPage .personProp .imageFrame:before{
    background-color:#f5f5f5;
    width: 98%;
    height: 107%;
    top: -7px;
    left: -7px;
}
.developmentBoardPage .personProp .desc{
    border-top:1px solid #dcdcdc;
    border-bottom:1px solid #dcdcdc;
    margin:20px 0;
    padding-left:25px;
}
.developmentBoardPage .personProp .desc span{
    font-family: 'GilroyMedium';
    font-size:14.67px;
    color:#2d2d2d;
}
.developmentBoardPage .personProp .desc .name{
    font-family: 'GilroyBlack';
    font-size:17.67px;
}
.basicValues span{
    font-family: 'GilroyBlack';
    font-size:14.38px;
    color:#0d3c5b;
    margin-top:20px;
}
.basicValues .item{
    padding: 14px 0;
    width: 25%;
}
.basicValues{
    margin-top: 55px;
}
.basicValues .item.bgColor{
    background-color:#f7f9fa;
}
.mobileClose{
    display: none;
}
.mobileMenuButton{
    display: none;
}
.leftMenuMobileButton{
    display:none;
}
@media screen and (max-width:1366px) {
    .container {
        max-width: 1170px;
    }
    header .header {
        padding-top: 17px;
    }
    header .logoHeader{
       width: 80px;
    }
    header .logoHeader img{
        width: 100%;
    }
    .carouselChangeButtonArea a{
        font-size:12.5px;
    }
    header .otherMenuItems a,
    header .headerSiteMenu > ul > li > a{
        font-size:13px;
    }
    .fastMenu .item a{
        font-size:13px;
    }
    .fastMenu .item img,
    .footer .footerLogoLink img{
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
    }
    footer .footer .footerDetails .supportLine a span {
        font-size: 25.03px;
    }
    footer .footer .footerDetails .supportLine span {
        font-size: 9.98px;
    }
    h3 {
        font-size: 27.5px;
    }
    .ListTabBox .tabMenu a {
        font-size: 27.05px;
    }
    .newsBoxes .newsItem .newsTitle {
        font-size: 21.64px;
    }
    .newsBoxes .newsItem.medium .newsTitle {
        font-size: 11.87px;
        line-height: 15px;
    }
    h1, h1 span.light {
        font-size: 40.06px;
    }
    .regionTabMenu a {
        font-size: 16.32px;
    }
    footer .footer .eBulten .eBultenTile {
        font-size: 22.7px;
    }
    footer .footer .eBulten span {
        font-size: 10.57px;
    }
    footer .footer .eBulten .eBultenText {
        /*max-width: 300px;*/
    }
    .paragraph .imageFrame img{
        width: 100%;
    }
    .newsItemBoxes .newsItem {
        width: 33%;
    }
    .newsItemBoxes .newsItem .imageFrame {
        width: 100%;
    }
    .newsItemBoxes .newsItem .imageFrame img {
        width: 100%;
    }
    .newsBoxes .newsItem {
        min-height: 340px;
    }
    .newsBoxes .newsItem.medium {
        min-height: 165px;
    }
}
@media screen and (max-width:1170px) {
    .newsSection > .row{
        display:block;
    }
    .newsBoxes {
        width: 100%;
        padding-right: 0;
    }
    .newsBoxes .newsBox {
        margin:0 auto;
    }
    .ListTabBox {
        margin:30px auto 0 auto;
    }
    .ListTabBox .tabContent {
        height: 367px;
        max-height: 367px;
    }
    .orta-property h1 {
        font-size: 38.49px;
    }
    .orta-property .orta-group .oideger {
        font-size: 31.88px;
    }
    .orta-property .orta-group .oival {
        font-size: 13.59px;
    }
    .orta-nokta .hcont {
        top: 77px;
        width: 380px;
        height: 244px;
    }
    .orta-nokta .hcont svg {
        height: 244px;
        width: 380px;
    }
    .sliderTabsContentArea .sliderTabItem .itemSlide{
        height: auto;
    }
    .sliderTabsContentArea .sliderTabItem .itemSlide >img {
        height: auto;
    }
    .sliderTabsContentArea .sliderTabItem{
        height: auto;
    }
    .sliderTabsContentArea{
        max-height: 575px;
    }
    .fastMenu > .row{
        display: block;
    }
    .fastMenu .item {
        padding: 15px 0;
    }
    .fastMenu .item:after {
        width: 100%;
        height: 3px;
        left: 0;
        bottom: 0;
    }
    .fastMenu {
        padding-left: 30px;
        padding-right: 30px;
    }
    .fastMenu .item:before {
        top: 15px;
    }
    .subPage .container {
        max-width: 850px;
    }
    .regionTable span {
        line-height: 16px;
    }
}
@media screen and (max-width:1024px) {
    .footerLogoLink > .row{
        display: block;
    }
    .footerLogoLink > .row a{
        display: block;
        align-items: center;
        text-align:center;
        padding:5px 0;
    }
    footer .footer .footerDetails .supportLine {
        margin-top:10px;
    }
    footer .footer .footerDetails .supportLine span {
        text-align: center;
    }
    .footerMenu > ul{
        display:block;
        margin: 0 auto;
        text-align: center;
    }
    .footerAdressDetails{
        display: block;
        text-align: center;
    }
    .footerAdressDetails > div{
        margin: 0 auto;
        text-align: center;
        display: block;
    }
    .footerAdressDetails > div > .aIFlexStart{
        display: block;
    }
    footer .footer .footerAdressDetails a {
        display: block;
    }
    .sectionHeader {
        display: block;
        text-emphasis: center;
    }
    .sectionHeader .titleColumn{
        margin-bottom: 40px;
    }
    .regionTabContent .tabItem .regionDetailsItem.active{
        display: block;
        margin: 0 auto;
        text-align:center;
    }
    .regionDetailsItem .regionItemImg {
        max-width: 520px;
        margin: 30px auto;
    }
    .regionContentList .regionContentListItem .desc {
        text-align: left;
    }
    footer .footer .eBulten > div{
        display: block;
    }
    footer .footer .eBulten > div > .flexGrow1{
        display: block;
    }
    footer .footer .eBulten form{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    footer .footer .eBulten input[type="text"] {
        margin-bottom: 10px;
    }
    footer .footer .eBulten form .button {
        margin-top: 10px;
    }
    footer .footer .eBulten .eBultenText {
        max-width: 100%;
        margin: 20px auto;
        text-align: center;
    }
}
@media screen and (max-width:900px) {
    .newsBoxes > .row{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .newsBoxes > .titleColumn{
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -o-flex-direction: row;
        flex-direction: row;
    }
    .newsBoxes .newsItem {
        margin-bottom: 20px;
    }
    .sliderTabsContentArea {
        max-height: 432px;
    }
    .orta-nokta .hcont {
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
    }
    .orta-nokta .hcont .iconPin.erzurum {
        right: 33px;
    }
    .leftMenuMobileButton{
        display: block;
        position: absolute;
        z-index: 999;
        -webkit-box-shadow: 0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        -moz-box-shadow: 0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        -moz-o-shadow: 0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        box-shadow: 0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        top: -37px;
        background-color: #ffffff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-align: center;
    }
    .leftMenuMobileButton img{
        filter: invert(100%);
        margin-top:13px;
    }
    .leftColumn{
        display:none;
    }
    .leftColumn.opened{
        display: block;
        position: absolute;
        left: 10px;
        top: -8px;
        -webkit-box-shadow: 0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        -moz-box-shadow: 0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        -moz-o-shadow: 0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        box-shadow: 0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        padding: 17px;
        background-color: #ffffff;
        z-index: 99;
    }
    .accLeftMenu:after {
        display: none;
    }
    .subPage .center > .row.container {
        display: block;
        width: 95%;
        margin: 0 auto;
    }
    .subPage .center > .row.container .rightColumn {
        padding-left: 0;
    }
    .regionTable span {
        line-height: 44px;
    }
    .regionTable .regionTitle span{
        line-height: 15px;
        font-size:12px;
    }
    .newsDetailsPage{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .newsDetailsPage .paddingLeft35{
        padding-left:0;
        padding: 0 15px;
    }
    .newsSlider {
        margin: 0 auto;
    }
    .standartForm .captchaColumnArea.fRight {
        float: none;
    }
    .photoGalleryHome .itemGaleryHome{
        width: 33%;
    }
    .photoGalleryHome .itemGaleryHome > img{
        width: 100%;
    }
    .newsBoxes .newsBox {
        margin: 20px auto;
    }
    .newsBoxes .newsItem .imageFrame img {
        height: auto;
    }
}
@media screen and (max-width:768px) {
    .mobileMenuButton{
        display: block;
        position: absolute;
        z-index: 99;
        right: 30px;
        top:15px;
    }
    header.fixed .mobileMenuButton,
    header.subHeader .mobileMenuButton{
        filter: invert(100%);
    }
    .mobileMenuButton.openMenu{
        top: 0;
    }
    .mobileMenuButton.openMenu{
        filter: invert(100%);
    }
    .mobileMenu{
      position: fixed;
      height: 100%;
      background-color: #ffffff;
      top: 0;
      display: none;
      left: 0;
      right: 0;
      overflow: hidden;
    }
    html{
        width: 100%;
        /*overflow-x: hidden;*/
    }
    body{
        width: 100%;
        overflow-x: hidden !important;
    }
    .newsBoxSol .imageFrame{
        height: initial !important;
    }
    
    .mobileMenu.active{
        display: block;
        z-index: 9;
    }
    header .otherMenuItems a {
        -webkit-opacity: 0.89;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=89)";
        filter: alpha(opacity=0.89);
        -moz-opacity: 0.89;
        -khtml-opacity: 0.89;
        opacity: 0.89;
    }
    header .headerSiteMenu > ul > li > a {
        color: #353535;
        line-height: 25px;
        font-family: 'GilroyBlack';
    }
    header .headerSubMenu li:last-child{
        padding-bottom: 5px;
    }
    header .headerSiteMenu > ul > li:last-child .headerSubMenu{
        right: 0;
    }
    header .headerSiteMenu{
        display: block;
        overflow-y: auto;
        height: 79%;
    }
    header .headerSiteMenu ul{
        display: block;
        text-align: center;
    }
    header .headerSubMenu {
        -webkit-opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=1);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        visibility: visible;
        height: auto;
        position: relative;
        padding-top:0px;
        padding-bottom:0px;
    }
    header .headerSubMenu li:first-child {
        padding-top: 0;
    }
    header .headerSubMenu li.last {
        padding-bottom: 0;
    }
    header .headerSiteMenu > ul > li {
        text-align: center;
    }
    header .headerSiteMenu > ul > li:hover > a:after, 
    header .headerSiteMenu > ul > li.active > a:after {
        left: 50%;
        width: 50%;
        margin-left:-25%;
        bottom: 0;
    }
    header .searchArea {
        display: block;
        text-align:center;
    }
    header .topMenuColumn {
        display: block;
    }
    .otherMenuItems{
        justify-content: center;
        padding-top:10px;
    }

    header .carouselChangeButtonArea a {
        color: #3d3d3d;
    }
    header .carouselChangeButtonArea a img{
        -webkit-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
        -moz-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
        -ms-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
        -o-filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
        filter: invert(100%) brightness(0.4) sepia(5) hue-rotate(38deg) saturate(7);
    }
    .carouselChangeButtonArea {
        justify-content: center;
        display: none;
    }

    header .searchArea .searchInputArea.active{
        position: fixed;
        -webkit-box-shadow: 0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        -moz-box-shadow:0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        -moz-o-shadow:0px 14px 30px 0px rgba(33, 31, 25, 0.2);
        box-shadow:0px 14px 30px 0px rgba(33, 31, 25, 0.2);
    }
    header .searchArea.active .headerSearch {
        position: fixed;
        right: 30px;
    }
    header .searchArea.active {
        height: 100%;
        background-color: #ffffff;
        position: fixed;
        top: 0;
        z-index: 999;
        left: 0;
        width: 100%;
    }
    header .searchArea.active .mobileClose{
        display: block;
        position: absolute;
        top: 31px;
        color: black;
        font-size: 32px;
        text-align: center;
        margin: 0 auto;
        z-index: 99;
        font-family: 'GilroySemibold';
    }
    header .searchArea .searchInputArea input[type="text"] {
        padding-left: 50px;
    }
    .sliderTabsContentArea {
        max-height: 333px;
    }
    .newsBoxes .newsItem .imageFrame img {
        width: 100%;
    }
    .orta-nokta .hcont {
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.6);
        left: 0;
    }
    .orta-property h1 {
        font-size: 24.49px;
    }
    .orta-property .orta-group .oideger {
        font-size: 24.88px;
    }
    .orta-property .orta-group .oival {
        font-size: 12.59px;
        padding-right: 5px;
    }
    .orta-property {
        left: auto;
        width: 37%;
        margin-right: 15px;
    }
    .regionContentList .regionContentListItem .desc p {
        font-size: 13px;
        padding: 10px 0;
    }
    .regionTable .title {
        font-size: 9.64px;
    }
    .regionTable span{
        font-size: 10.01px;
    }
    .listPager .pager {
        width: 100%;
        margin: 55px auto;
        border: none;
        padding-left: 15px;
        padding-right: 15px;
    }
    .listPager .pager > a.prev {
        border-right: none;
        float: left;
        padding: 0 15px 0 35px;
    }
    .listPager .pager ul {
        display: inline-block;
        text-align: center;
        position: absolute;
        bottom: 90px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 225px;
    }
    .listPager .pager > a.next {
        border-left: none;
        float: right;
        padding: 0 35px 0 15px;
    }
    .listPager .pager ul li {
        text-align: center;
        float: left;
    }
    .standartForm .half {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .standartForm .row .half {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .standartForm .row .half:first-child {
        padding-right: 0;
    }
    .standartForm > div > .row{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .standartForm .captchaColumnArea > .row,
    .corporationSupportList .corporationSupportItem,
    .corporationSupportList {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .corporationSupportList {
        align-items: center;
    }
    .corporationSupportList .corporationSupportItem {
        text-align:center;
    }
    .corporationSupportList .corporationSupportItem > div {
        border-left: none;
        margin: 30px auto;
        width: 100%;
    }
    .standartForm .captchaColumnArea .button{
        margin-top:20px;
    }
    .standartForm select{
        padding-right: 55px;
    }
    .tabMenu.row {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .tabs.documentCenter .tabMenu a {
        padding-left: 0;
        margin-top: 20px;
    }
    .tabMenuFake.row {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .tabMenuFake.row >a{
        padding-left: 0 !important;
        margin-bottom: 15px;
    }
    .photoGalleryHome{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .photoGalleryHome .itemGaleryHome{
        width: 80%;
        margin: 20px auto;
    }
    .managementMembers .membersItem {
        width: 50%;
    }
}

@media screen and (max-width: 560px){
    .orta-nokta .hcont {
        -webkit-transform: scale(0.4);
        -moz-transform: scale(0.4);
        -o-transform: scale(0.4);
        transform: scale(0.4);
        left: -66px;
    }
    .orta-property {
        width: 50%;
    }
    h1, h1 span.light {
        font-size: 34.06px;
    }
    .sectionHeader .titleColumn > span {
        font-size: 13.8px;
    }
    footer .footer .copyRight{
        display:block;
        text-align:center;
        padding: 20px 0;
    }
    footer .footer .copyRight a{
        display:block;
        padding:10px 0 30px 0;
    }
    .regionDetailsItem .regionItemImg {
        width: 90%;
    }
    .newsBoxes .newsItem .imageFrame, 
    .regionDetailsItem .regionItemImg .imageFrame,
     .newsBoxes .newsItem .imageFrame img, 
     .regionDetailsItem .regionItemImg .imageFrame img {
        width: 100%;
    }
    .regionImgList {
        padding-right: 0;
    }
    header .logoHeader{
        width: 50px;
     }
    header .logoHeader {
        width: 40px;
    }
    header {
        padding-bottom: 0;
    }
    .fastMenu {
        padding-top: 0;
        margin-top: -61px;
        z-index: 9;
        position: relative;
        background-color: #ffffff;
    }
    .subPage .center{
        padding-top:60px;
    }
    .leftMenuMobileButton {
        top: -45px;
    }
    .regionTable .title,
    .regionTitle span:first-child {
        width: 37%;
    }
    .successfulProjects .column.half{
        width: 100%;
    }
    .corporateItem,
    .corporateItem .logoFormatsLink {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .corporateItem .logoFormatsLink {
        margin: 0 auto;
    }
    .corporateItem .logoFormatsLink {
        padding-left: 0;
    }
    .corporateItem .logoFormat {
        width: 100%;
    }
    .corporateItem .logoFormat:nth-child(2){
        border-top: 1px solid #f0f0f0;
    }
    .corporateItem .corporateItemTitle {
        text-align: center;
    }
    .corporateItem .imageFrame {
        margin: 20px auto;
    }
    .managementMembers .membersItem {
        width: 100%;
    }
    .newsBoxes .allListButton{
        position: absolute;
        bottom: 0;
        text-align: center;
        margin: 0 auto;
        left: 0;
        right: 0;
        width: 150px;
    }
    .newsBoxes .newsItem {
        min-height: 235px;
    }
    .tendersList {
        width: 90%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 480px){
    .orta-nokta .hcont {
        left: -103px;
    }
    .orta-property h1 {
        font-size: 16.49px;
    }
    .orta-property .orta-group .oideger {
        font-size: 14.88px;
    }
    .orta-property .orta-group .oival {
        font-size: 8.59px;
    }
    .orta-nokta .dipnote p {
        font-size: 9.57px;
    }
    footer .footer .eBulten input[type="text"] {
        width: 90%;
    }
    .orta-property h1.bgOrange:before {
        height: 89%;
        top: 1px;
    }
    .fastMenu {
        margin-top: -117px;
    }
    .sliderTabsContentArea {
        max-height: 311px;
    }
    .regionContentListItem,
    .successfulProjects .projectsList .projectsListItem{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .newsSection{
        width: 98%;
        margin: 0 auto;
    }
    .regionDetailsSection {
        padding-right: 15px;
        padding-left: 15px;
    }
    .rightHeadTitle {
        padding-bottom: 33px;
        display:block;
    }
    .breadcrumb{
        margin-bottom:22px;
    }
    .shareBox{
        float: right;
    }
    .carouselChangeButtonArea a {
        font-size: 8.5px;
    }
    .regionTable {
        padding:5px;
    }
    .regionTable span{
        padding-left:5px;
        line-height: 12px;
        padding-top:5px;
    }
    .regionTable .note{
        font-size:9px;
    }
    .regionTable .title, .regionTitle span:first-child{
        width: 25%;
    }
    .regionTable .regionTitle span{
        padding-top:0;
        font-size: 10px;
        line-height: 12px;
    }
    .newsItemBoxes .newsItem {
        width: 50%;
    }
    .successfulProjects .projectsList .projectsListItem{
        text-align:center;
    }
    .projectItem {
        width: 50%;
        margin: 18px auto;
    }
    .photoGallery > a{
        width: 50%;
    }
    .askedquestions .accContent > div {
        padding-left: 0;
    }
    .contactPage .acc .accContent > div.row{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .contactPage .mapColumn {
        width: 80%;
        margin:0 auto;
    }
    .basicValues .item {
        width: 50%;
        text-align: center;
    }
    .ListTabBox {
        min-width: 300px;
        width: 100%;
    }
}

@media screen and (max-width: 380px){
    .fastMenu {
        padding-top: 10px;
    }
    .sliderTabsContentArea {
        max-height: 290px;
    }
    .listPager .pager a {
        font-size: 9.26px;
    }
    .newsItemBoxes .newsItem {
        width: 90%;
        margin: 0 auto;
        padding-right: 0;
    }
    .rightHeadTitle {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        overflow: hidden;
    }
    .newsItemBoxes {
        margin: 0;
    }
    .newsSlider {
        max-width: 300px;
        min-width: 300px;
        width: 300px;
    }
    .sliderTabsContentArea .sliderTabItem:after {
        bottom: -16px;
    }
    .accContent > .acc,
    .pastSupports .accContent > .acc{
        padding-left: 0;
    }
}
@media screen and (max-width: 360px){
    .sliderTabsContentArea {
        max-height: 260px;
    }
}


.loader,
.loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}
.loader {           
    position: absolute;
    left: 0;
    right: 0;
    /*top: 50%;*/
    margin: -5em auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(23, 73, 122, 1);
    border-right: 1.1em solid rgba(23, 73, 122, 1);
    border-bottom: 1.1em solid rgba(23, 73, 122, 1);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
#loadingDiv {
    position:fixed;
    top:0;
    left:0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width:100%;
    height:100%;
    background-color:#ffffff;
    z-index: 9999999999;
}
.loading-cont{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.loader-img{
  position: absolute;
  height: 35px;
}
.sliderTabsContentArea{
  height: 100vh;
  max-height: 100% !important;
}
.slick-slider{
  height: 100%;
}
.slick-list{
  height: 100%;
}
.slick-track{
  height: 100%;
}


.newsBoxes .newsItem.mansetHaberSagItem{}
.newsBoxes .newsItem.mansetHaberSagItem .imageFrame{}
.newsBoxes .newsItem.mansetHaberSagItem .imageFrame img{
  width: 223px;
  height: 187px;
  object-fit: cover;
}


.newsDetailsSlider{}
.newsDetailsSlider .slick-slide{}
.newsDetailsSlider .slick-slide img{
  display: block;
  height: 264px;
  object-fit: cover;
  width: 100%;
}
.subPage .slick-dots li .thumbnails img {
  height: 83px;
  object-fit: cover;
}

.newsItemBoxes .newsItem .imageFrame img{
  height: 178px;  
  object-fit: cover;
}







/*Duyurular*/
.announcementsPage,
.news{
    padding-top: 50px;
}
.announcementsPage .item,
.news .item{
    padding:5px 0 20px 0;
    margin-top: 25px;
    position: relative;
}
.announcementsPage .item .date,
.news .item .thumb{
    min-width: 120px;
    padding:0 20px;
    border-right: 2px solid #d3d3d3;
}
.news .item .thumb{
    min-width: 165px;
}
.announcementsPage .item .text,
.news .item .text{
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
}
.news .text .paragraph{
    height:56px;
    overflow: hidden;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.news .text .paragraph.active{
    height:auto;
    overflow: visible;
    padding-bottom: 35px;
}
.announcementsPage .item .date span{
    font-family: 'GilroyRegular';
    font-size: 19.28px;
    color: #143551;
}
.announcementsPage .item .date span.day{
    font-family: 'GilroyBlack';
    font-size: 45.99px; 
}
.news .dateTime{
    font-family: 'GilroyMedium';
    font-size: 16.12px;
    color: #d7d7d7;
    display: block;
}
.announcementsPage .item .text .title,
.news .title{
    font-family: 'GilroyBlack';
    font-size: 20.78px;
    color: #143551;
    margin-bottom: 5px;
}
.newsContent .dateTime{
    margin-bottom: 20px;
}



.duyuruDetayPage .title{
  font-family: 'GilroyBlack';
  font-size: 1.5em;
  display: block;
  margin-bottom: 15px;
}
.duyuruDetayPage .dateTime{
  font-family: 'GilroyRegular';
  font-style: 1em;
  display: block;
  margin-bottom: 10px;
}

.newsBoxSol{
  flex-grow: 1;
}

.newsBoxSol .imageFrame{
  height: 391px;
}



.arama{
  float: left;
  width: 100%;
  padding-top: 50px;
}
.arama a{
  color:#2b2b2b;
  font-size:17px;
  display: block;
  margin-bottom: 10px;
  font-family: 'GilroyRegular';
}



.kv-not-found {
  font-family: 'GilroyRegular';
  background-color: #f6f6f6;
  border: 1px solid #dcdcdc;
  padding: 13px 13px;
  display: table;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .kv-not-found {
    text-align: center;
    display: block;
    width: auto;
    margin: 0px 20px;
  }
}
.kv-not-found .nimg {
  float: left;
  margin-right: 20px;
  font-size: 55px;
  color: #112589;
}
@media (max-width: 768px) {
  .kv-not-found .nimg {
    float: none;
    margin-right: 0;
  }
}
.kv-not-found .ntext .ntitle {
  font-size: 20px;
  font-weight: 800;
  margin-top: 6px;
  margin-bottom: 4px;
}
.kv-not-found .ntext .ncont {
  font-size: 12px;
}
.kv-not-found .ntext .nlink a {
  font-weight: 800;
  font-size: 13px;
  color: #333;
}








.modal-popup {
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 500000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  font-family: 'GilroyRegular';
}
.modal-popup.active {
  visibility: visible;
  opacity: 1;
}
.modal-popup .modal-cont {
  width: 600px;
  /*margin-top: -200px;*/
}
@media (max-width: 991px) {
    .sliderTabsContentArea:before{
        background: none;
    }
  .modal-popup .modal-cont {
    width: 100%;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }
  .homeDevam{
    display: none;
  }
  .Mobile .sliderTabsContentArea{
    /*height: 310px;*/
    height: 238px;
    max-height: initial !important;
  }
  .Mobile .sliderTabsContentArea .sliderTabItem{
    /*height: 400px;*/
    height: 100%;
  }
  .Mobile .sliderTabsContentArea .sliderTabItem .itemSlide{
    height: 100%;
  }
  .Mobile .sliderTabsContentArea .sliderTabItem .itemSlide >img{
    height: 210px;
  }
}
.modal-popup .modal-cont .kapat-cont {
  text-align: right;
  margin-bottom: 14px;
  position: relative;
}
.modal-popup .modal-cont .kapat-cont .timer {
  background-color: #fff;
  width: 50px;
  font-weight: 700;
  color: #2b2b2b;
  font-size: 20px;
  position: absolute;
  left: 0;
  text-align: center;
  top: 9px;
  padding: 6px;
}
@media (max-width: 991px) {
  .modal-popup .modal-cont .kapat-cont {
    margin-bottom: 14px;
  }
}
.modal-popup .modal-cont .kapat-cont a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.modal-popup .modal-cont .kapat-cont a span {
  font-weight: 800;
  font-size: 17px;
  margin-right: 10px;
}
.modal-popup .modal-cont .kapat-cont a i {
  font-size: 37px;
}
.modal-popup .modal-cont .popup-cont{
  background-color: #fff;
  padding: 20px;
}
.modal-popup .modal-cont .popup-cont img{
  width: 100% !important;
  height: auto !important;
}


@media (max-width: 991px) {
  .popup-icerik img {
    width: 100% !important;
    height: initial !important;
  }
}

.popup-icerik table{
  table-layout: fixed;
}

.popup-icerik p{
  margin-bottom: 0;
}






.sliderVideo div{
  height: 100%;
}
.sliderVideo .item{
  position: relative;
  width: 100%;
  height: 100vh;
}
.sliderVideo .item video{
  /*position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  max-height: 100%;
  max-width: 100%;
  margin: auto;*/
  width: 100%;
  height: 100%;
  object-fit: fill;
}




@media (max-width: 991px) {
    .managementMembers .membersItem {
      width: 100%;
      padding: 20px;
      flex: 0 0 100%;
    }
}

.downloadItem .row.aICenter{}
.downloadItem .row.aICenter img{
  max-height: 39px;
  max-width: 25px;
}





/* fixedSocial 
.fixedSocial {position:fixed; top:40%; right:15px; z-index:123;}
.fixedSocial>ul {width:40px;}
.fixedSocial>ul>li {width:100%; margin-bottom:2.5px;}
.fixedSocial>ul>li>a {width:40px; line-height:30px; display:inline-block; background:#dcdcdc; font-size:17px; color:#fff;border-radius:50%; text-align:center; border:5px solid #fff; position:relative; z-index:12;}
.fixedSocial .title {
    font-size: 12px;
  line-height: 20px;
  padding: 5px 0px;
  border-radius: 30px;
  display: inline-block;
  background: #dcdcdc;
  color: #fff;
  transform: rotate(270deg);
  position: absolute;
  left: -55px;
  top: 231px;
  width: 150px;
  text-align: left;
  padding-left: 10px;}
.fixedSocial>ul>li.facebook>a:hover {background:#3b5998}
.fixedSocial>ul>li.twitter>a:hover {background:#1da1f2}
.fixedSocial>ul>li.youtube>a:hover {background:#ff0000}
.fixedSocial>ul>li.instagram>a:hover {background:#ff0000}
.fixedSocial>ul>li.linkedin>a:hover {background:#0077b5}
.fixedSocial>ul>li>a:hover {color:#fff}*/

.fixedSocial {position:fixed; top:40%; right:0px; z-index:123;}
.fixedSocial .fcont {width:40px;}
.fixedSocial .fcont .item{}
.fixedSocial .fcont .item a{
  display: flex;
  position: relative;
}

.fixedSocial .fcont .item.facebook a .rtitle{background-color:#3b5998;}
.fixedSocial .fcont .item.twitter a .rtitle{background-color:#1da1f2;}
.fixedSocial .fcont .item.youtube a .rtitle{background-color:#ff0000;}
.fixedSocial .fcont .item.instagram a .rtitle{background-color:#cf2872;}
.fixedSocial .fcont .item.linkedin a .rtitle{background-color:#0077b5;}
.fixedSocial .fcont .item a .rtitle{
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  background-color: #03a8f3;
  color: #fff;
  font-family: 'GilroyBold';
  font-size: 0.9em;
  padding: 14px 16px 10px 13px;
  position: absolute;
  left: -174px;
  top: 0;
  width: 209px;
  height: 40px;
  /*box-shadow: 4px 4px 11px 0px rgb(0 0 0 / 50%);*/
}
.fixedSocial .fcont .item a .icon{
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  /*box-shadow: 4px 1px 16px -1px rgb(0 0 0 / 43%);*/
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.1em;
  transition: all 0.3s ease-in-out;
}
.fixedSocial .fcont .item.facebook a .icon{background-color:#3b5998;}
.fixedSocial .fcont .item.twitter a .icon{background-color:#1da1f2;}
.fixedSocial .fcont .item.youtube a .icon{background-color:#ff0000;}
.fixedSocial .fcont .item.instagram a .icon{background-color:#cf2872;}
.fixedSocial .fcont .item.linkedin a .icon{background-color:#0077b5;}

.fixedSocial .fcont .item a:hover .rtitle{
  opacity: 1;
  visibility: visible;
}
.fixedSocial .fcont .item a:hover .icon{
  /*box-shadow: inset 2px 1px 16px -1px rgb(0 0 0 / 43%);*/
  color: #fff;
}
.fixedSocial .fcont .item.facebook a:hover .icon{background-color:#3b5998;}
.fixedSocial .fcont .item.twitter a:hover .icon{background-color:#1da1f2;}
.fixedSocial .fcont .item.youtube a:hover .icon{background-color:#ff0000;}
.fixedSocial .fcont .item.instagram a:hover .icon{background-color:#cf2872;}
.fixedSocial .fcont .item.linkedin a:hover .icon{background-color:#0077b5;}




.footerCont{
  display: flex;
  align-items: center;
}
.footerCont .footerSol{

}
.footerCont .footerSol span{
  display: block;
}
.footerCont .footerSag{
  flex-grow: 1;
}
.footerCont .footerSag form{
  display: flex;
  justify-content: flex-end;
}
.footerCont .footerSag form .form-input-col{
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 1170px) {
  .footerCont{
    flex-wrap: wrap;
  }
  .footerCont .footerSol{
    flex:0 0 100%;
    text-align: center;
  }
  .footerCont .footerSag{
    flex:0 0 100%;
  }
}

@media (max-width: 991px) {
  .footerCont{
    flex-wrap: wrap;
  }
  .footerCont .footerSol{
    flex:0 0 100%;
  }
  .footerCont .footerSag{
    flex:0 0 100%;
  }
}



.videoGaleriMain{
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.videoGaleriMain .item{
margin-bottom: 30px;
  margin-bottom: 30px;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}
.videoGaleriMain .item .itemGaleryHome{
    width: 100%;
  height: 100%;
  display: block;
}
.videoGaleriMain .item .itemGaleryHome >div{
  background-image: initial;
  background: rgb(46,64,89);
  background: linear-gradient(0deg, rgba(46,64,89,1) 0%, rgb(0 0 0 / 36%) 61%, rgba(255,255,255,0) 100%);

}
.videoGaleriMain .item .itemGaleryHome > img{
    width: 100%;
}
.videoGaleriMain .item .icon{
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #fff;
}
.videoGaleriMain .item .icon i{}

.videoGaleriMain .item .itemGaleryHome > div span{
  font-family: 'GilroyRegular';
}
.videoGaleriMain .item .itemGaleryHome > div span.title{
  font-family: 'GilroyBlack';
}


@media (max-width:992px) {
    .accContent > div{
        padding-left: 0;
    }
    .paragraph table {
      transform: scale(0.8);
      transform-origin: top center;
    }
    .Mobile .homeSlider:before{
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: linear-gradient(180deg, rgb(0 0 0 / 67%) 0%, rgba(0,0,0,0) 100%);
      z-index: 2;
    }
    .newsSection{
        margin-top: -20px;
    }
    .newsBoxes .titleColumn{
        margin-bottom: 10px;
    }
    .haberler{
        margin-top: 14px !important;
    }
    .fastMenu{
        margin-top: 0!important;
    }
  .ListTabBox{
    padding-left: 0;
  }
  .allListButton{
    display: none;
  }
  .videoGaleriMain{
    flex-direction: row !important;
  }
  .videoGaleriMain .item{
    flex: 0 0 100% !important;
    max-width: 100%  !important;
  }
  .haberler {
    margin-top: 25px;
  }
  .haberler .cont{
    flex-wrap: wrap;
  }
  .haberler .cont .left{
    flex: 0 0 100%  !important;
    max-width: 100%  !important;
    margin-bottom: 10px;
  }
  .haberler .cont .right{
    flex: 0 0 100%  !important;
    max-width: 100%  !important;
    padding-left: 0px !important;
  }

}

/* photoGallerys */
.photoGallerys>ul {margin-left:-10px; margin-right:-10px;}
.photoGallerys>ul>li {width:20%; float:left; padding-left:10px; padding-right:10px; margin-bottom:20px;}
.photoGallerys>ul>li>a {width:100%; display:inline-block; float:left; position:relative;}
.photoGallerys>ul>li>a .img {height:210px; border:15px solid #f7f7f7; -webkit-transition: all 0.3 ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;}
.photoGallerys>ul>li>a .title {color:#3e3e3e; font-size:14px; line-height:20px; padding:13px 0px; -webkit-transition: all 0.3 ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;  min-height: 67px;
  overflow: hidden;}
.photoGallerys>ul>li>a:before {width:90px; height:4px; content:""; background:#efefef; position:absolute; left:0; bottom:0; display:inline-block; -webkit-transition: all 0.3 ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;}
.photoGallerys>ul>li>a:hover .title {color:#0d3c5b}
.photoGallerys>ul>li>a:hover:before {background:#0d3c5b}
.photoGallerys>ul>li>a:hover .img {border-color:#0d3c5b}
.photoGallerys>ul>li>a .img i {position:absolute; width:75px; font-size:75px; height:75px; text-align:center; display:inline-block; top:0; right:0; bottom:0; left:0; margin:auto; color:#fff; text-shadow:1px 1px 1px #000}
.photoGallerys>ul>li>a .img {
  position:relative;
  background-size: cover;
}
/* videoGallery */
.videoGallery>ul>li {width:33.33%;}


@media (max-width:992px) {
  .photoGallerys>ul>li {
    width: 100%;
  }
  .videoGallery>ul>li {width:100%;}

}


.fw{
    float: left;width: 100%;
}

.commonContent .paragraph img{
max-width: 100%;
  width: initial !important;
  height: initial !important;
}





.rakamlarla-sol-baslik{
  font-family: 'GilroyBlack';
  font-size: 2em;
  margin-bottom: 10px;
  color: #fff;
}


.planlama-list{
  display: flex;
  flex-flow: wrap;
}































.haberler{
  margin-top: 35px;
}
.haberler .uhead{
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
  padding: 5px 12px;
  margin-bottom: 15px;
  position: relative;
}
.haberler .uhead .baslik{
  flex-grow: 1;
  font-size: 26px;
  letter-spacing: -1px;
  color: #2c2c2c;
}
.haberler .uhead .baslik strong{
  font-weight: 900;
}
.haberler .uhead .tumu{}
.haberler .uhead .tumu a{
  color: #9b9b9b;
  font-weight: 600;
  font-size: 13px;
}
.haberler .uhead .cizgi{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  display: flex;
}
.haberler .uhead .cizgi div{
  width: 33.33333333%;
  height: 4px;
}
.haberler .uhead .cizgi .c1{
  background-color: #00a0e3;
}
.haberler .uhead .cizgi .c2{
  background-color: #e2336b;
}
.haberler .uhead .cizgi .c3{
  background-color: #91ca37;
}


.haberler .cont{
  display: flex;
}
.haberler .cont .left{
  flex: 0 0 65%;
  max-width: 65%;
}
.haberler .cont .right{
  flex: 0 0 35%;
  padding-left: 10px;
}

.haber-slider{}
.haber-slider .item{
  opacity: 0;
  visibility: hidden;
}
.haber-slider .item.active{
  opacity: 1;
  visibility: visible;
}
.haber-slider .item a{
  display: block;
  position: relative;
  width: 100%;
  
}
.haber-slider .item a:after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /*top: 0;*/
  height: 85px;
  background: rgb(0,0,0);
  /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(238,62,73,0) 100%);*/

  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);


}
.haber-slider .item a .img{
  position: relative;
}
.haber-slider .item a .videoIcon{
  position: absolute;
  top: 10px;
  right: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.haber-slider .item a .videoIcon span{
  display: block;
  background: url(../img/videohaberikon.png) no-repeat right 4px center;
  position: relative;
  z-index: 2;
  padding: 4px;
  padding-right: 43px;
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 3px;
}
.haber-slider .item a .videoIcon:after{
  content: "";
  position: absolute;
  top:0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,158,223,1) 100%);
}
.haber-slider .item a .img img{
  width: 100%;
  height: 379px;
  /*object-fit: cover;*/
}
.haber-slider .item a .head{
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding:20px;
  color: #fff;
  letter-spacing: -0.5px;
}
.haber-slider .item a .head .title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.haber-slider .item a .head .date{
  font-size: 11px;
}

.haber-slider .owl-dots{
  margin-top: 7px;
  display: flex;
  margin-left: -4px;
  margin-right: -4px;
}
.haber-slider .owl-dots .owl-dot{
  padding-left: 4px !important;
  padding-right: 4px !important;
  flex-grow: 1;
  flex-basis: 0;
}
.haber-slider .owl-dots .owl-dot span{
  display: flex;
  background-color: #e5e5e5;
  color: #2c2c2c;
  font-size: 13px;
  font-weight: 700;
  padding: 0px;
  width: 100%;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.haber-slider .owl-dots .owl-dot.active span{
  background-color: #253750;
  color: #fff;
}


.haberler .hpages{}
.haberler .hpages .hpage{
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  flex-wrap: wrap;
  display: none;
}
.haberler .hpages .hpage.selected{
  display: flex;
}
.haberler .hpages .hpage .item{
  flex:0 0 100%;
  max-width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 7px;
}
.haberler .hpages .hpage .item a{
  display: block;
  position: relative;
  width: 100%;
}
.haberler .hpages .hpage .item a:after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /*top: 0;*/
  height: 55px;
  background: rgb(0,0,0);
  /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(238,62,73,0) 100%);*/
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.haberler .hpages .hpage .item a .img{}
.haberler .hpages .hpage .item a .img img{
  width: 100%;
  height: 183px;
  /*object-fit: cover;*/
}

.haberler .hpages .hpage .item a .img{
  position: relative;
}
.haberler .hpages .hpage .item a .img .videoIcon{
  position: absolute;
  top: 10px;
  right: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.haberler .hpages .hpage .item a .img .videoIcon span{
  display: block;
  background: url(../img/videohaberikon.png) no-repeat right 4px center;
  position: relative;
  z-index: 2;
  padding: 4px;
  padding-right: 43px;
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 3px;
}
.haberler .hpages .hpage .item a .img .videoIcon:after{
  content: "";
  position: absolute;
  top:0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,158,223,1) 100%);
}

.haberler .hpages .hpage .item a .head{
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding:10px;
  color: #fff;
  letter-spacing: -0.5px;
}
.haberler .hpages .hpage .item a .head .title{
  font-size: 14px;
  font-weight: 700;
}
.haberler .foot{
  background-color: #e5e5e5;
  display: flex;
  height: 30px;
}
.haberler .foot .tabs{
  display: flex;
  flex-grow: 1;
  padding-left: 7px;

}
.haberler .foot .tabs a{
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #2c2c2c;
  opacity: 0.24;
  padding: 5px;
  margin-right: 7px;
  transition: all 0.2s ease-out;

}
.haberler .foot .tabs a:hover{
  opacity: 1;
}
.haberler .foot .tabs a.selected{
  opacity: 1;
}
.haberler .foot .tumu{
  padding-right: 7px;
}
.haberler .foot .tumu a{
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #2c2c2c;
  padding: 5px;
}






@media (max-width:992px) {
  .haber-slider .item a .img img{
    height: 215px;
  }
  .shareBox{
    display: none;
  }
  .announcementsList li{
    height: initial;
    max-height: initial;
  }
}




.vizyon-misyon{}
.vizyon-misyon .item{
  border-left: 1px solid #d7d7d7;
  margin-bottom: 50px;
  padding-left: 15px;
}
.vizyon-misyon .item .title{
  color: #0d3c5b;
  margin-bottom: 15px;
}
.vizyon-misyon .item .title .ust{
  font-family: 'GilroySemibold';
  font-size: 1.5em;
  position: relative;
}
.vizyon-misyon .item .title .ust:before{
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d7d7d7;
}
.vizyon-misyon .item .title .ust span{
  display: inline-block;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-right: 35px;
}
.vizyon-misyon .item .title .alt{
  font-family: 'GilroyBlack';
  font-size: 1.5em;
}

.vizyon-misyon .item .alt{
  display: flex;
}
.vizyon-misyon .item .alt .resim{
  border-right: 1px solid #d7d7d7;
  padding-left: 10px;
  padding-right: 10px;
  flex:0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vizyon-misyon .item .alt .resim img{
  display: block;
}
.vizyon-misyon .item .alt .desc{
  padding-left: 15px;
}
.vizyon-misyon .item .alt .desc p{
  margin-bottom: 15px;
}
.vizyon-misyon .item .alt .desc p:last-child{
  margin-bottom: 0px;
}


@media (max-width:1199px) {
  .vizyon-misyon .item .alt .resim{
    flex:0 0 27%;
  }
}

@media (max-width:992px) {
  .vizyon-misyon .item{
    border-left: 0;
  }
  .vizyon-misyon .item .alt{
    flex-wrap: wrap;
  }
  .vizyon-misyon .item .alt .resim{
    flex:0 0 100%;
    margin-bottom: 15px;
  }
  .vizyon-misyon .item .alt .desc{
    padding-left: 0;
  }
}

.ydo-list{
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.ydo-list .cont{
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}
.ydo-list .cont .item{
  flex:0 0 33.3333333%;
  max-width: 33.3333333%;
  padding-left: 10px;
  padding-right: 10px;
}
.ydo-list .cont .item a{
  position: relative;
  display: block;
}

.ydo-list .cont .item a .img{}
.ydo-list .cont .item a .img img{
    display: block;
  width: 100%;
}
.ydo-list .cont .item a .title{
  position: absolute;
  left: 0;
  top: 43px;
  right: 0;
  color: #fff;
  white-space: nowrap;
  padding: 13px 16px;
  /*background: rgb(13,60,91);*/
  background: linear-gradient(90deg, rgba(13,60,91,1) 0%, rgba(255,255,255,0) 80%, rgba(0,0,0,0) 100%);
  transition: all 0.3s ease-in-out;
}
.ydo-list .cont .item a:hover .title{
  /*background: rgb(235,95,28);*/
  background: linear-gradient(90deg, rgba(235,95,28,1) 0%, rgba(255,255,255,0) 58%, rgba(0,0,0,0) 100%);
}
.ydo-list .cont .item a .title .ust{
  font-family: 'GilroyBlack';
  font-size: 1.5em;
}
.ydo-list .cont .item a .title .alt{
}

.ydo-list .cont .item:first-child a:before{
  content: "";
  position: absolute;
  left: -14px;
  top: -14px;
  bottom:-14px;
  width: 60%;
  background-color: #f2f2f2;
  z-index: -1;
}
.ydo-list .cont .item:last-child a:before{
  content: "";
  position: absolute;
  right: -14px;
  top: -14px;
  bottom:-14px;
  width: 60%;
  background-color: #f2f2f2;
  z-index: -1;
}

@media (max-width:992px) {
  .ydo-list .cont{
    flex-wrap: wrap;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
    margin-right: 0;
  }
  .ydo-list .cont .item{
    flex:0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .ydo-list .cont .item:first-child a:before{
    display: none;
  }
  .ydo-list .cont .item:last-child a:before{
    display: none;
  }
}









@media (max-width:992px) {
  .tabs .tabContent .tabItem{
    height: initial;
    position: relative;
  }
  .announcementsList, .tendersList{
    display: block;
  }
  .haber-slider .owl-dots {
    margin-left: -1px;
    margin-right: -1px;
  }
  .haber-slider .owl-dots .owl-dot {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
  .haber-slider .owl-dots .owl-dot span{
      padding-top: 2px;
  }
}









.paragraph table{
  border:1px solid #0d3c5b;
  font-size: 12px;
  margin-bottom: 15px;
}
.paragraph table thead{
  
}
.paragraph table thead tr{

}
.paragraph table thead tr th{
  color: #fff;
  padding:5px;
  border:1px solid #0d3c5b;
  vertical-align: middle;
  background-color:#0d3c5b !important;
}
.paragraph table thead tr th p{
  margin-bottom: 0;
}
.paragraph table tbody{
}
.paragraph table tbody tr:nth-child(odd){
  
}
.paragraph table tbody tr td{
  border:1px solid #0d3c5b;
  padding:5px;
  vertical-align: middle;
  
}
.paragraph table tbody tr:nth-child(odd) td{
  background-color: rgba(78, 108, 128, 0.25) !important;
}
.paragraph table tbody tr td strong{
  font-weight:600;
}
.paragraph table tbody tr td p{
  margin-bottom:0;
}

.paragraph table tbody tr:first-child td{
  color: #fff;
  padding: 5px;
  border: 1px solid #0d3c5b;
  vertical-align: middle;
  background-color: #0d3c5b !important;
}
.paragraph table tbody tr:first-child td p{
  color: #fff;
}

/*@media (max-width:992px) {
	.sliderTabsContentArea{
		height: 60vh;
	}

	.sliderVideo .item video{
		height: 44vh;
	}
}*/



.newsDetailsSlider{}
.newsDetailsSlider .slick-prev:before, .newsDetailsSlider .slick-next:before{
    font-family: FontAwesome;
}
.newsDetailsSlider .slick-prev:before, .newsDetailsSlider .slick-next:before {
  font-family: 'slick';
  font-size: 76px;
  line-height: 1;
  opacity: 1;
  font-family: FontAwesome;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0px 2px 4px #00000052;
}
.newsDetailsSlider .slick-prev, .newsDetailsSlider .slick-next{
    top: 128px;
    z-index: 2;
}
.newsDetailsSlider .slick-next{
    right: 30px;
}
.newsDetailsSlider .slick-prev{
    left: 30px;
}
.newsDetailsSlider .slick-next:before {
  content: '\f105';
}
.newsDetailsSlider .slick-prev:before {
  content: '\f104';
}

.footer-mail-btn{
  color: #474747;
  display: flex;
  align-items: center;
  /*font-family: 'GilroyBlack';*/
}
.footer-mail-btn i{
    font-size: 23px;
}
.footer-mail-btn span{
    padding-left: 10px;
}





.page-dinamik-detay {
  padding-top: 20px;
  font-family: 'GilroyRegular';
}
.page-dinamik-detay form {
  margin-top: 0;
  padding-top: 0;
}
.page-dinamik-detay .head {
  color: #0d3c5b;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'GilroyBold';
}
.page-dinamik-detay form .section {
  border-bottom: 1px solid #c1c1c1;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.page-dinamik-detay form .section .ihead {
  font-weight: 800;
  font-size: 17px;
  color: #0d3c5b;
  text-align: center;
}
.page-dinamik-detay form .section .mb {
  margin-bottom: 15px;
}
.page-dinamik-detay form .section .sorular {
  margin-bottom: 15px;
}
.page-dinamik-detay form .section .sorular .sitem {
  padding: 7px 7px 7px 10px;
  position: relative;
}
.page-dinamik-detay form .section .sorular .sitem:nth-child(even) {
  /*background-color: #f6f6f6;*/
}
.page-dinamik-detay form .section .sorular .sitem .stitle {
  color: #727271;
  font-size: 16px;
  margin-bottom: 5px;
}
.page-dinamik-detay form .section .sorular .sitem .stitle .ikey {
  font-weight: 800;
  display: inline-block;
  width: 30px;
  text-align: center;
}
.page-dinamik-detay form .section .sorular .sitem .cevaplar .control {
  position: relative;
}
.page-dinamik-detay form .section .sorular .sitem .cevaplar .control .validation-error {
  background-color: red;
  color: #fff;
  position: absolute;
  right: 9px;
  top: 9px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  font-weight: 800;
  font-size: 19px;
  margin: 0px;
  padding: 4px;
}
.page-dinamik-detay form .section .sorular .sitem .cevaplar input[type="text"],
.page-dinamik-detay form .section .sorular .sitem .cevaplar textarea,
.page-dinamik-detay form .section .sorular .sitem .cevaplar input[type="email"] {
  width: 100%;
  padding: 10px 10px 9px 10px;
  color: #bababa;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  font-size: 14px;
  box-shadow: none;
}
.page-dinamik-detay form .section .sorular .sitem .cevaplar input[type="text"] ::-webkit-input-placeholder,
.page-dinamik-detay form .section .sorular .sitem .cevaplar textarea ::-webkit-input-placeholder,
.page-dinamik-detay form .section .sorular .sitem .cevaplar input[type="email"] ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #bababa;
}
.page-dinamik-detay form .section .sorular .sitem .cevaplar input[type="text"] ::-moz-placeholder,
.page-dinamik-detay form .section .sorular .sitem .cevaplar textarea ::-moz-placeholder,
.page-dinamik-detay form .section .sorular .sitem .cevaplar input[type="email"] ::-moz-placeholder {
  /* Firefox 19+ */
  color: #bababa;
}
.page-dinamik-detay form .section .sorular .sitem .cevaplar input[type="text"] :-ms-input-placeholder,
.page-dinamik-detay form .section .sorular .sitem .cevaplar textarea :-ms-input-placeholder,
.page-dinamik-detay form .section .sorular .sitem .cevaplar input[type="email"] :-ms-input-placeholder {
  /* IE 10+ */
  color: #bababa;
}
.page-dinamik-detay form .section .sorular .sitem .cevaplar input[type="text"] :-moz-placeholder,
.page-dinamik-detay form .section .sorular .sitem .cevaplar textarea :-moz-placeholder,
.page-dinamik-detay form .section .sorular .sitem .cevaplar input[type="email"] :-moz-placeholder {
  /* Firefox 18- */
  color: #bababa;
}
.page-dinamik-detay form .section .isubmitgonder {
  text-align: center;
  margin-bottom: 15px;
}
.page-dinamik-detay form .section .isubmitgonder input {
  border:0;
  cursor: pointer;
  display: inline-block;
  padding: 8px 50px 6px 50px;
  font-weight: 800;
  background-color: #0d3c5b;
  color: #fff;
  font-size: 17px;
}
.page-dinamik-detay select {
  width: 100% !important;
  height: 40px;
}


#homeBody{
	position: relative;
  z-index: 20000;
}


