@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700,800,900&display=swap&subset=latin-ext');
@import url(../css/reset.css);
@import url(../css/bootstrap.min.css);
@import url(../plugins/fontawesome/css/all.min.css);
@import url(../css/margin-padding.css);
@import url(../css/variables.css);
svg.iconset {
    position: absolute;
}

header {
    padding: 20px 0;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 22;
}

header .infobar {
    border-bottom: 1px solid rgba(63, 0, 185, 0.30);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .infobar a {
    display: inline-block;
    margin-right: 5px;
    font-size: 13px;
}

header .infobar a>i {
    font-size: 16px;
}

header .infobar .social a:hover {
    color: #3f00b9;
}

header .infobar .social {
    margin-left: auto;
}

header .infobar .social a {
    color: #3f00b9;
    font-size: 16px;
}

header .infobar .social a>i {}

header .menu .navbar {
    padding: 0px;
}

header .menu .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

header .menu .navbar-nav>li {
    margin: 0px 15px;
    position: relative;
}

header .menu .navbar-nav>li:not(:last-child):after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #3f00b9;
    transform: translate(-50%, -50%);
}

header .menu .navbar-nav>li:first-child {
    margin-left: 0;
}

header .menu .navbar-nav>li:last-child {
    margin-right: 0;
}

header .menu .navbar-nav>li>a {
    color: #3f00b9;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 10px 0;
}

header .menu .navbar-nav>li:hover>a:before {
    width: 50%;
}


/*
header .menu .navbar-nav > li.submenu > a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0d7";
    right: -12px;
    position: absolute;
}*/

header .menu .navbar-nav>li>a:before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 0px;
    background: #3f00b9;
    transition: 0.3s ease all;
}

header .menu .navbar-nav>li>.dropdown-menu.mega {
    display: block;
    border-radius: 1px;
    min-width: 700px;
    max-width: 100vw;
    max-height: 0px;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    border: 0px;
    background: #faf7f6;
    padding: 0px 15px;
    transition: 0.3s ease max-height, 0.3s ease box-shadow;
    top: 94%;
}

header .menu .navbar-nav>li>.dropdown-menu.mega>li {
    display: inline-block;
    width: calc(100% / 3);
    margin-left: -3px;
    padding-left: 3px;
    vertical-align: top;
}

header .menu .navbar-nav>li>.dropdown-menu.mega>li>a {
    display: flex;
    width: 100%;
    font-size: 10px;
    min-height: 45px;
    font-weight: 600;
    color: #a79b97;
    border-bottom: 2px solid #efedeb;
    align-items: center;
    padding: 3px 3px;
}

header .menu .navbar-nav>li>.dropdown-menu.mega>li>a .img {
    width: 45px;
    height: 45px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #fff;
}

header .menu .navbar-nav>li>.dropdown-menu.mega>li:hover>a {
    background: #3f00b9;
    color: #fff;
}

header .menu .navbar-nav>li:hover>.dropdown-menu.mega {
    max-height: 500px;
    box-shadow: 0px 1px 5.74px 1.26px rgba(0, 0, 0, 0.08);
    overflow: inherit;
    padding: 10px 10px;
}

header .menu .navbar-nav>li>.dropdown-menu.normal {
    display: block;
    border-radius: 1px;
    min-width: 200px;
    max-width: 100vw;
    max-height: 0px;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    border: 0px;
    background: #ffffff;
    padding: 0px;
    transition: 0.3s ease max-height, 0.3s ease box-shadow;
    top: 94%;
}

header .menu .navbar-nav>li>.dropdown-menu.normal>li .dropdown-menu.normal {
    display: block;
    border-radius: 1px;
    overflow: hidden;
    left: 100%;
    top: -2px;
    border: 0px;
    background: #faf7f6;
    padding: 0px;
    transition: 0.3s ease all;
    max-width: 0px;
    min-width: 0px;
}

header .menu .navbar-nav>li .dropdown-menu.normal>li {
    position: relative;
}

header .menu .navbar-nav>li .dropdown-menu.normal>li>a {
    color: #a79b97;
    font-size: 12px;
    font-weight: 600;
    display: block;
    text-align: center;
    padding: 8px 0px;
    border-bottom: 1px solid #ede9e8;
    white-space: nowrap;
}

header .menu .navbar-nav>li .dropdown-menu.normal>li:hover>a,
header .menu .navbar-nav>li .dropdown-menu.normal>li>a.active {
    background-color: #3f00b9;
    color: #fff;
    border-color: transparent;
}

header .menu .navbar-nav>li .dropdown-menu.normal>li:hover .dropdown-menu.normal {
    box-shadow: 0px 1px 5.74px 1.26px rgba(0, 0, 0, 0.08);
    max-width: 250px;
    min-width: 200px;
}

header .menu .navbar-nav>li:hover>.dropdown-menu.normal {
    max-height: 500px;
    box-shadow: 0px 1px 5.74px 1.26px rgba(0, 0, 0, 0.08);
    overflow: inherit;
}

header .menu .navbar-nav>li:hover>a {}

header .select {
    display: inline-block;
    width: 35px;
    vertical-align: top;
    position: relative;
    cursor: pointer;
}

header .select .selected {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #3f00b9;
}

header .select .selected:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    right: 2px;
    position: absolute;
    font-weight: 900;
}

header .select:hover .selected:before {}

header .select:hover .selected {}

header .select .list {
    max-height: 0px;
    overflow: hidden;
    transition: 0.3s ease all;
    background: #3f00b9;
    width: 35px;
    border-radius: 5px;
    left: -5px;
    z-index: 99;
    position: absolute;
}

header .select:hover .list {
    max-height: 100px;
}

header .select .list a {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 27px;
    margin-right: 0;
}

header .select .list a:hover {
    color: #fff;
}

section.slider {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 750px;
}

section.slider .sliderbg {
    background: url("../img/headerImage.png") center top no-repeat;
    height: 820px;
    width: 100%;
}

section.slider .swiper-container {
    width: 100%;
    position: relative;
    height: 100%;
}

section.slider .swiper-slide {
    background-repeat: no-repeat;
    background-position: center 130px;
    height: 100%;
    position: relative;
    z-index: 1;
}

section.slider .swiper-slide .container {
    position: relative;
    height: 100%;
    padding-top: 200px;
}

section.slider .swiper-slide .content {
    width: 41%;
    position: relative;
    padding-bottom: 30px;
    overflow: hidden;
}

section.slider .swiper-slide .img {
    width: 65%;
    position: absolute;
    top: 30px;
    bottom: 0;
    background-position: right top;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.5s ease all;
    right: -1000px;
    opacity: 0;
}

section.slider .swiper-slide.swiper-slide-active .img {
    right: -110px;
    opacity: 1;
}

section.slider .swiper-slide .content .baslik1 {
    font-size: 18px;
    font-weight: 300;
    color: #868686;
    transition: 0.3s ease all;
    padding-left: 30px;
    left: -100%;
    position: relative;
}

section.slider .swiper-slide .content .baslik2 {
    font-size: 64px;
    line-height: 78px;
    letter-spacing: -2px;
    color: #0e4194;
    margin-bottom: 10px;
    transition: 0.4s ease all;
    padding-left: 30px;
    left: -100%;
    position: relative;
    font-weight: 900;
    padding-top: 10px;
}

section.slider .swiper-slide.swiper-slide-active .content .baslik1 {
    left: 0;
    transition: 0.3s 0.2s ease all;
}

section.slider .swiper-slide.swiper-slide-active .content .baslik2 {
    left: 0;
    transition: 0.3s 0.3s ease all;
}

section.slider .swiper-slide .content p {
    font-size: 18px;
    line-height: 27px;
    opacity: 0.6;
    transition: 0.1s ease all;
    left: -100%;
    position: relative;
}

section.slider .swiper-slide.swiper-slide-active .content p {
    left: 0;
    transition: 0.3s 0.9s ease all;
}

section.slider .swiper-slide .content .btn {
    transition: 0.3s ease all;
    position: relative;
    transform: scale(0);
    background-image: -moz-linear-gradient(66deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -webkit-linear-gradient(66deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -ms-linear-gradient(66deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    width: 145px;
    height: 48px;
    border-radius: 100px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 20px;
    margin-left: 30px;
}

section.slider .swiper-slide .content .btn:hover {
    box-shadow: 0px 7px 23.52px 0.48px rgba(0, 0, 0, 0.25);
}

section.slider .swiper-slide.swiper-slide-active .content .btn {
    transform: scale(1);
    transition: 0.3s 0.5s ease all;
}

section.slider .swiper-pagination-bullet {
    width: 14px;
    height: 7px;
    border-radius: 2px;
    display: inline-block;
    background: transparent;
    cursor: pointer;
    opacity: 1;
    transition: 0.3s ease all;
    border: 2px solid #868686;
}

section.slider .swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    border: 2px solid transparent;
    background: #4302bb;
}

section.slider .swiper-container .swiper-pagination {
    bottom: 230px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    padding-left: 30px;
}

section.slider-bot {
    position: relative;
    z-index: 9;
    margin-top: -150px;
}

section.slider-bot .box-container {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 35.7px 15.3px rgba(0, 0, 0, 0.08);
    padding: 24px;
    height: 350px;
}

section.slider-bot .box {
    position: relative;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    overflow: hidden;
    height: 295px;
    display: flex;
    align-items: flex-end;
    justify-content: left;
    transition: opacity 0.5s ease-in;
}

section.slider-bot .box:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: -moz-linear-gradient(-56deg, rgba(240, 0, 0, 0.80) 0%, rgba(130, 7, 0, 0.80) 100%);
    background: -webkit-linear-gradient(-56deg, rgba(240, 0, 0, 0.80) 0%, rgba(130, 7, 0, 0.80) 100%);
    background: -ms-linear-gradient(-56deg, rgba(240, 0, 0, 0.80) 0%, rgba(130, 7, 0, 0.80) 100%);
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

section.slider-bot .box:hover:after {
    content: '';
    background: unset;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

section.slider-bot .box span {
    position: relative;
    z-index: 999;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    width: 100%;
    padding: 15px;
}

section.slider-bot .title {
    font-size: 28px;
    color: #878787;
    font-weight: 900;
    margin-bottom: 0;
}

section.slider-bot .arrow {}

section.slider-bot .arrow .left {}

section.slider-bot .arrow .left i {}

section.slider-bot .arrow .right {}

section.slider-bot .arrow .right i {}

section.slider-bot .arrow i {
    cursor: pointer;
    color: #d9d9d9;
    font-size: 50px;
    transition: all ease-out .3s;
}

section.slider-bot .arrow div:hover i {
    color: #e30613;
    transition: all ease-in .3s;
}

section.ayricaliklar {
    background: url(../img/rightMan.png) no-repeat right center;
    min-height: 900px;
}

section.ayricaliklar h1.title {
    font-size: 27px;
    color: #878787;
    font-weight: 900;
    margin-top: 70px;
}

section.ayricaliklar p {
    font-size: 18px;
    color: #878787;
    font-weight: 100;
    line-height: 24px;
}

section.ayricaliklar p:last-child {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}

section.counter {
    background-image: url('../img/repeat.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto;
    margin-bottom: 100px;
}

section.counter .circle {
    background-image: -moz-linear-gradient( 130deg, rgb(240, 0, 0) 0%, rgb(103, 0, 0) 100%);
    background-image: -webkit-linear-gradient( 130deg, rgb(240, 0, 0) 0%, rgb(103, 0, 0) 100%);
    background-image: -ms-linear-gradient( 130deg, rgb(240, 0, 0) 0%, rgb(103, 0, 0) 100%);
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: -80px;
    border-radius: 100%;
}

section.counter .circle:hover {
    background-image: -moz-linear-gradient( 49deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -webkit-linear-gradient( 49deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -ms-linear-gradient( 49deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
}

section.counter .circle:after {
    content: '';
    width: 180px;
    height: 180px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    position: absolute;
    border-radius: 100%;
    left: -10px;
    top: -10px;
}

section.counter .circle .img {
    -webkit-mask-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
}

section.counter .content {}

section.counter .content span {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #878787;
}

section.counter .content small {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: #878787;
}

.tumreferanslar {
    margin-bottom: 50px;
}

.tumreferanslar h2 {
    font-size: 27px;
    color: #878787;
    font-weight: 900;
    margin-top: 110px;
}

.owl-referanslarimiz .item .img {
    padding-bottom: 63%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    display: block;
    border-radius: 10px;
    filter: grayscale(100%);
}

.owl-referanslarimiz .owl-dots {
    text-align: center;
    padding: 30px 0px 80px;
}

.owl-referanslarimiz .owl-dots .owl-dot {}

.owl-referanslarimiz .owl-dots .owl-dot>span {
    margin: 0 2px;
    width: 14px;
    height: 7px;
    border-radius: 2px;
    display: inline-block;
    background: transparent;
    cursor: pointer;
    opacity: 1;
    transition: 0.3s ease all;
    border: 2px solid #868686;
}

.owl-referanslarimiz .owl-dots .owl-dot.active {}

.owl-referanslarimiz .owl-dots .owl-dot.active>span {
    opacity: 1;
    width: 35px;
    border: 2px solid transparent;
    background: #4302bb;
}

section.contact-bar {}

section.contact-bar .content {}

section.contact-bar .content h1 {
    font-size: 21px;
    font-weight: bold;
    color: #e30613;
    margin: 0;
    line-height: 1;
}

section.contact-bar .content a {
    font-size: 32px;
    font-weight: bold;
    color: #878787;
    line-height: 1;
}

section.contact-bar .icon {}

section.contact-bar .icon img {}

footer {
    background-image: url('../img/footer.png');
    min-height: 500px;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 180px;
}

footer .social {}

footer .social span {
    color: #a0a9af;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    display: block;
    font-weight: 500;
    letter-spacing: -1px;
}

footer .social .links {
    text-align: center;
    padding: 30px 0px;
}

footer .social .links a {
    display: inline-block;
    margin: 0px 12px;
}

footer .social .links a .icon {
    width: 36px;
    height: 36px;
    fill: rgba(0, 0, 0, 0.20);
}

footer .social .links a:hover .icon {
    -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .2));
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .2));
    fill: url(#my-cool-gradient) #447799;
}

footer .social .links a:hover {}

footer .ebulten {}

footer .ebulten input:focus {
    background-color: #878787;
    color: #fff;
}

footer .ebulten input:focus::-webkit-input-placeholder {
    color: #fff;
}

footer .ebulten input {
    border-radius: 21px;
    background-color: rgb(242, 242, 242);
    height: 45px;
    width: 100%;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    padding-left: 15px;
    color: #878787;
}

footer .ebulten .btn-gr {
    position: relative;
}

footer .ebulten .btn-gr input {}

footer .ebulten .btn-gr button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 16px;
    background-image: -moz-linear-gradient(49deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -webkit-linear-gradient(49deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -ms-linear-gradient(49deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    box-shadow: 0.927px 2.853px 5.22px 0.78px rgba(0, 0, 0, 0.22);
    height: 35px;
    border: 1px solid transparent;
    padding: 0 16px;
}

footer .ebulten .btn-gr button img {}

footer .ebulten .btn-gr button span {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

footer .copyright {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

section.page-header {
    height: 355px;
    width: 100%;
    margin-bottom: -95px;
    position: relative;
    z-index: 9;
    padding-top: 140px;
}

section.page {
    position: relative;
    z-index: 9;
    min-height: 500px;
    padding-bottom: 200px;
}

section.page .page-content {
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    min-height: 300px;
    padding: 20px;
    box-shadow: 0px -20px 20px 0px rgba(0, 0, 0, 0.04);
}

.page-header h4.title {
    font-size: 24px;
    color: #b31217;
    font-weight: 700;
}

.page-header ul {
    background-image: -moz-linear-gradient(76deg, rgb(229, 45, 39) 0%, rgb(179, 18, 23) 100%);
    background-image: -webkit-linear-gradient(76deg, rgb(229, 45, 39) 0%, rgb(179, 18, 23) 100%);
    background-image: -ms-linear-gradient(76deg, rgb(229, 45, 39) 0%, rgb(179, 18, 23) 100%);
    box-shadow: 0px 7px 23.52px 0.48px rgba(0, 0, 0, 0.25);
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    border-radius: 50px;
}

.page-header ul li {
    display: inline-block;
    margin-right: 8px;
    padding-right: 8px;
    position: relative;
    font-size: 13px;
}

.page-header ul li:not(:last-child):after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    position: absolute;
    right: -3px;
    top: 0px;
}

.page-header ul li a {
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 190px;
}

.page-header ul li.select {
    opacity: 0.7;
}

.page-header ul li a i {}

section.page .page-content .item {}

section.page .page-content .item h3.underTitle {
    font-size: 20px;
    font-weight: bold;
    color: #082f48;
    margin-bottom: 15px;
    padding-bottom: 5px;
    position: relative;
}

section.page .page-content .item h3.underTitle:after {
    content: '';
    height: 3px;
    width: 60px;
    background-color: #c1cbd1;
    position: absolute;
    bottom: 0;
    left: 0;
}

section.page .page-content .item p {
    font-size: 12px;
    color: #082f48;
    font-weight: 500;
    line-height: 18px;
    text-align: justify;
}

section.page .page-content.haberler {}

section.page .page-content.haberler .haber {
    display: block;
}

section.page .page-content.haberler .haber:hover {
    color: #000;
}

section.page .page-content.haberler .haber .img {
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 60%;
    border-radius: 5px;
}

section.page .page-content.haberler .haber .text {
    padding: 25px 0;
}

section.page .page-content.haberler .haber .text h4 {
    font-size: 22px;
    font-weight: 900;
    color: #000000;
    margin: 0;
    line-height: 100%;
}

section.page .page-content.haberler .haber .text small {
    line-height: 1;
}

section.page .page-content.haberler .haber .text p {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

section.page .page-content.haber-detay .img {
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 60%;
    border-radius: 5px;
    background-size: cover;
}

section.page .page-content.haber-detay .text {
    padding: 25px 0;
}

section.page .page-content.haber-detay .text h4 {
    font-size: 22px;
    font-weight: 900;
    color: #000000;
    line-height: 100%;
    position: relative;
}

section.page .page-content.haber-detay .text h4 span {
    font-size: 12px;
    font-weight: 700;
    display: block;
    position: relative;
    margin: 10px 0;
}

section.page .page-content.haber-detay .text h4 span:after {
    /*    content: '';
    border-radius: 2px;
    background-image: -moz-linear-gradient(9deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -webkit-linear-gradient(9deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -ms-linear-gradient(9deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    position: absolute;
    height: 4px;
    bottom: 0;
    right: 0;
    left: 0;*/
}

section.page .page-content.haber-detay .text p {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

section.page .page-content .galleryBox {
    margin-top: 25px;
}

section.page .page-content .galleryBox .item {
    padding: 10px;
    border-radius: 3px;
    border: 2px solid #c8c8c8;
    margin-bottom: 30px;
    display: block;
}

section.page .page-content .galleryBox .item .img {}

section.page .dokumanlar .img {
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 40%;
    border-radius: 5px;
    background-size: cover;
}

section.page .dokumanlar .galleryBox {
    margin-top: 0;
}

section.page .dokumanlar .galleryBox .item {
    position: relative;
    transition: all ease .3s;
}

section.page .dokumanlar .galleryBox .item span {
    color: #1d1d1b;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: block;
}

section.page .dokumanlar .galleryBox .item:after {
    content: '';
    opacity: 0;
    transition: all ease .3s;
}

section.page .dokumanlar .galleryBox .item:hover:after {
    content: '';
    background-image: -moz-linear-gradient(66deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -webkit-linear-gradient(66deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -ms-linear-gradient(66deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    opacity: 0.7;
    position: absolute;
    transition: all ease .3s;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

section.page .page-content.referanslar .galleryBox {
    margin-top: 0;
}

section.page .page-content.referanslar .galleryBox .item .img {
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 60%;
    border-radius: 5px;
    filter: grayscale(100%);
}

section.page .page-content.referanslar .galleryBox .item:hover .img {
    filter: grayscale(0);
}

section.page .urunler .img {
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 60%;
    border-radius: 5px;
    background-size: contain;
}

section.page .urunler .galleryBox {
    margin-top: 0;
}

section.page .urunler .galleryBox .item {
    position: relative;
    transition: all ease .3s;
    border-radius: 5px;
    overflow: hidden;
}

section.page .urunler .galleryBox .item span {
    color: #1d1d1b;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: block;
}

section.page .urunler .galleryBox .item:after {
    content: '';
    opacity: 0;
    transition: all ease .3s;
}

section.page .urunler .galleryBox .item:hover:after {
    content: '';
    background-image: -moz-linear-gradient(-135deg, rgb(46, 49, 146) 0%, rgb(48, 145, 252) 100%);
    background-image: -webkit-linear-gradient(-135deg, rgb(46, 49, 146) 0%, rgb(48, 145, 252) 100%);
    background-image: -ms-linear-gradient(-135deg, rgb(46, 49, 146) 0%, rgb(48, 145, 252) 100%);
    opacity: 0.8;
    position: absolute;
    transition: all ease .3s;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

section.page .urunler .galleryBox .item span {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    color: #fff;
    left: 0;
    z-index: 999;
    font-size: 16px;
    font-weight: 900;
    transition: all ease .3s;
    display: block;
    width: 100%;
}

section.page .urunler .galleryBox .item:hover span {
    opacity: 1;
    transition: all ease .3s .1s;
}

.urundetay .owl-urunDetay {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background: #fff;
    border: 2px solid silver;
    overflow: hidden;
}

.urundetay .owl-urunDetay .owl-dots {
    text-align: center;
    padding: 20px;
    position: relative;
}

.urundetay .owl-urunDetay .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d1d3d4;
    display: inline-block;
    border-radius: 100%;
    opacity: 1;
    margin: 4px;
    transition: 0.3s ease all;
}

.urundetay .owl-urunDetay .owl-dots .owl-dot.active span {
    opacity: 1;
    background: #3074dd;
}

.urundetay .owl-urunDetay .item {
    padding: 30px;
}

.urundetay .owl-urunDetay .item a {
    display: block;
}

.urundetay .owl-urunDetay .item .img {
    padding-bottom: 70%;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

section.page .urunler .galleryBox .box {
    position: relative;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    overflow: hidden;
    height: 295px;
    display: flex;
    align-items: flex-end;
    justify-content: left;
    transition: opacity 0.5s ease-in;
}

section.page .urunler .galleryBox .box:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: -moz-linear-gradient(-56deg, rgba(240, 0, 0, 0.80) 0%, rgba(130, 7, 0, 0.80) 100%);
    background: -webkit-linear-gradient(-56deg, rgba(240, 0, 0, 0.80) 0%, rgba(130, 7, 0, 0.80) 100%);
    background: -ms-linear-gradient(-56deg, rgba(240, 0, 0, 0.80) 0%, rgba(130, 7, 0, 0.80) 100%);
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

section.page .urunler .galleryBox .box:hover:after {
    content: '';
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

section.page .urunler .galleryBox .box span {
    position: relative;
    z-index: 999;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    width: 100%;
    padding: 15px;
}

.urundetay h2.title {
    font-size: 20px;
    color: #000;
    font-weight: 900;
}

.urundetay p.icerik {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: 22px;
}

.urundetay .etiketler {
    text-align: center;
}

.urundetay .icerik p {}

.urundetay .etiketler b {
    color: #363636;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -1px;
    display: inline-block;
    margin-right: 5px;
}

.urundetay .etiketler a {
    font-size: 11px;
    color: #cccccc;
    font-weight: 500;
}

.urundetay .etiketler a>i {
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 2px;
    background: #cccccc;
    color: #fff;
    text-align: center;
    padding: 3px 0px;
    transition: 0.3s ease all;
}

.urundetay .etiketler a:hover {
    color: #de2925;
}

.urundetay .etiketler a:hover>i {
    background: #de2925;
}

.urundetay .etiketler>div {
    border-bottom: 1px solid #f2f2f2;
    padding: 20px 0px;
}

.urundetay .etiketler>div:first-child {}

.urundetay .etiketler>div:last-child {
    border: 0px;
}

.urundetay .etiketler div span {
    font-size: 12px;
    color: #ccc;
}

ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    border-radius: 20px;
    background-color: rgb(8, 47, 72);
    box-shadow: inset 0px 6px 7px 0px rgba(0, 0, 0, 0.48);
    height: 86px;
    display: flex;
    justify-content: start;
    align-items: center;
}

ul.tabs li {
    background: none;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    border-radius: 11px;
}

ul.tabs li.current {
    background: #fff;
    color: #082f48;
}

.tab-content {
    display: none;
    background: #fff;
    padding: 15px;
}

.tab-content.current {
    display: inherit;
}

.labkod-tab {
    padding: 40px 0;
}

#harita {
    height: 400px;
    border-radius: 15px;
}

.iletisim {}

.iletisim .adresimiz {}

.iletisim h1.cizg {
    color: #0e4194;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.iletisim h1.cizg:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 75px;
    height: 3px;
    background-color: #c1cbd1;
}

.iletisim .adresimiz p {
    margin: 0;
    line-height: 18px;
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.iletisim .adresimiz p i {
    font-size: 32px;
    color: #b9b9b8;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iletisim .adresimiz p span {
    color: #2d2a18;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

.iletisim .adresimiz .iletisimBtn {
    background-image: -moz-linear-gradient(66deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -webkit-linear-gradient(66deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    background-image: -ms-linear-gradient(66deg, rgb(169, 69, 255) 0%, rgb(63, 0, 185) 100%);
    box-shadow: 0px 7px 23.52px 0.48px rgba(0, 0, 0, 0.25);
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    color: #fff;
    border-radius: 100px;
    margin-top: 30px;
    border: unset;
    font-size: 12px;
}

.iletisimForm {}

.iletisimForm input {
    border-radius: 21px;
    background-color: rgb(242, 242, 242);
    height: 45px;
    width: 100%;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    padding-left: 15px;
    color: #878787;
    margin-bottom: 10px;
    transition: all ease .3s;
}

.iletisimForm textarea {
    border-radius: 21px;
    background-color: rgb(242, 242, 242);
    height: 210px;
    width: 100%;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    padding-left: 15px;
    padding-top: 15px;
    color: #878787;
    resize: none;
    transition: all ease .3s;
}

.iletisimForm button {
    font-size: 12px;
    color: #082F48;
    font-weight: bold;
    line-height: 2.167;
    border: 1px solid #082F48;
    background-color: #fff;
    border-radius: 100px;
    transition: all ease .3s;
    height: 30px;
    padding: 0 12px;
}

.iletisimForm button:hover {
    border-color: transparent;
    background-color: #082F48;
    color: #fff;
}

.iletisimForm input:focus,
.iletisimForm textarea:focus {
    background-color: #878787;
    color: #fff;
}

.iletisimForm input:focus::-webkit-input-placeholder,
.iletisimForm textarea:focus::-webkit-input-placeholder {
    color: #fff;
}

p.err {
    color: #a0a9af;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    display: block;
    font-weight: 500;
    letter-spacing: -1px;
    margin: 10px 0;
}

#iletisimHata {
    display: block;
    padding: 10px 12px;
    background: #4907c0;
    border-radius: 100px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    opacity: 0;
}