@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);
@import url(../css/responsive.css);
body {
    background-color: #f9f9f9;
}

svg.iconset {
    position: absolute;
}

header {
    position: relative;
    z-index: 22;
    height: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 73px 0px rgba(0, 0, 0, 0.52);
}

header .infobar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9;
}

header .infobar a {
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1;
}

header .infobar a:hover {
    color: #000;
}

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;
    align-items: center;
    justify-content: space-between;
}
header .menu .navbar-nav>li:first-child a {
}
header .menu .navbar-nav>li:last-child a {
}

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

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

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: #000000;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 15px 25px;
}

header .menu .navbar-nav>li:hover>a:before {
    opacity: 1;
}

header .menu .navbar-nav>li.active>a:before {
    opacity: 1;
}
header .menu .navbar-nav>li.active2>a:before {
    opacity: 1;
}

header .menu .navbar-nav>li>a:before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('../img/menuhover.png');
    width: 37px;
    height: 38px;
    z-index: -1;
    opacity: 0;
    transition: all ease .3s;
}

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: #fbb900;
    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>.dropMenu>.dropdown-menu.normal {
    display: none;
    min-width: 200px;
    max-width: 100vw;
    max-height: 0px;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    border: 0px;
    background: #ffffff;
    transition: 0.3s ease max-height, 0.3s ease box-shadow;
    top: 70px;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 0px 18.69px 2.31px rgba(0, 0, 0, 0.22);
}

header .menu .navbar-nav>li.submenu.active>.dropMenu>.dropdown-menu.normal {
    display: block;
    max-height: 100vh;
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
    transform: unset;
}

header .menu .navbar-nav>li>.dropMenu>.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 .dropMenu>.dropdown-menu.normal>li {
    position: relative;
}

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

header .menu .navbar-nav>li .dropMenu>.dropdown-menu.normal>li:last-child>a {
    border: unset;
}

header .menu .navbar-nav>li .dropMenu>.dropdown-menu.normal>li:hover>a {
    background-image: -moz-linear-gradient(158deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
    background-image: -webkit-linear-gradient(158deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
    background-image: -ms-linear-gradient(158deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
    color: #000;
    border-color: transparent;
    font-weight: 800;
}

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>.dropMenu {
    position: absolute;
    left: 50%;
    top: 0px;
    right: auto;
    padding-top: 70px;
    z-index: 2;
    transform: translateX(-50%);
}
header .menu .navbar-nav>li>.dropMenu.category-menu .dropdown-menu {
    width: 600px;
}

header .menu .navbar-nav>li>.dropMenu.category-menu ul li:last-child {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70% !important;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(72%) sepia(61%) saturate(2621%) hue-rotate(344deg) brightness(100%) contrast(94%);
}

header .menu .navbar-nav>li>.dropMenu.category-menu ul li {
    width: 30% !important;
}

header .menu .navbar-nav>li.submenu.active>.dropMenu {
    z-index: 99;
}

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

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: #b2b2b2;
}

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: #b2b2b2;
    width: 35px;
    border-radius: 5px;
    left: -5px;
    z-index: 99;
    position: absolute;
}

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

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%;
    height: 800px;
}

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

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

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: 300px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    padding-left: 30px;
}

section.slider-bot {
    position: relative;
    z-index: 9999;
}

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;
}

.tumreferanslar {}

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

.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 {
    padding-bottom: 150px;
}

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;
    background-color: #fff;
}

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 {}

.backdrop {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: none;
}

.backdrop.active {
    display: block;
}

section.slider-bottom {
    padding: 30px 0;
    overflow: hidden;
    margin-top: -160px;
}

section.slider-bottom .owl-carousel .owl-stage-outer {
    overflow: visible;
}

section.slider-bottom .box {
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 2px 4px 0px rgba(14, 86, 124, 0.17);
    height: 265px;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

section.slider-bottom .box:hover {
    background-image: -moz-linear-gradient(119deg, rgb(247, 148, 29) 0%, rgb(255, 221, 0) 100%);
    background-image: -webkit-linear-gradient(119deg, rgb(247, 148, 29) 0%, rgb(255, 221, 0) 100%);
    background-image: -ms-linear-gradient(119deg, rgb(247, 148, 29) 0%, rgb(255, 221, 0) 100%);
}

section.slider-bottom .box:hover:after {
    content: '';
    background-image: url('../img/scorpion.png');
    width: 265px;
    height: 265px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
}

section.slider-bottom .box .img {
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 62%;
    width: 100%;
    display: block;
    filter: invert(86%) sepia(0%) saturate(2770%) hue-rotate(294deg) brightness(104%) contrast(78%);
}

section.slider-bottom .box:hover .img {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(96%) contrast(104%);;
}

section.slider-bottom .box .title {
    display: block;
    width: 100%;
    color: rgba(35, 31, 32, 0.2);
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 40px;
}

section.slider-bottom .arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    z-index: 99;
    flex-direction: column;
    transform: translateY(-50%);
}

section.slider-bottom .arrow div {
    width: 53px;
    height: 53px;
    border-radius: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

section.slider-bottom .arrow div:hover {
    background-image: -moz-linear-gradient(130deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
    background-image: -webkit-linear-gradient(130deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
    background-image: -ms-linear-gradient(130deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
    box-shadow: 0.927px 2.853px 15.66px 2.34px rgba(0, 0, 0, 0.16);
}

section.slider-bottom .arrow div.left {}

section.slider-bottom .arrow div.right {}

section.dealers {
    position: relative;
    min-height: 300px;
}

section.dealers h1.title {
    position: absolute;
    top: 50%;
    margin: 0 auto;
    font-size: 140px;
    color: #efefef;
    font-weight: 900;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

section.dealers .owl-dealers .item {}

section.dealers .owl-dealers .item a {
    display: block;
}

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

section.dealers .owl-dealers .item:hover .img {
    filter: grayscale(0);
}

section.selections {
    position: relative;
    padding-top: 220px;
    padding-bottom: 200px;
    background-color: #fff;
}

section.selections h1.title {
    position: absolute;
    top: 0;
    margin: 0 auto;
    font-size: 288px;
    color: #efefef;
    font-weight: 900;
    width: 100%;
    text-align: center;
}

section.selections .box {}

section.selections .box h3 {
    font-size: 20px;
    color: #ffcc32;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 10px;
}

section.selections .box p {
    font-size: 12px;
    color: #000000;
    line-height: 16px;
    margin: 0;
}

section.selections .box img {}

.rowzero .col-4 {
    margin: 0;
    padding: 0;
}

section.counter {
    background-color: #fff;
}

section.counter .circle {
    background-image: -moz-linear-gradient(130deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
    background-image: -webkit-linear-gradient(130deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
    background-image: -ms-linear-gradient(130deg, rgb(247, 148, 29) 0%, rgb(255, 220, 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(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(49deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(49deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 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-image: -webkit-linear-gradient(132deg, rgba(0, 0, 0, 1) 0%, rgba(109, 110, 113, 1) 100%);
}

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;
}

section.export {
    min-height: 400px;
    background-color: #fff;
    position: relative;
    display: block;
    padding-bottom: 50px;
}

section.export h1.title {
    position: absolute;
    top: 0;
    margin: 0 auto;
    font-size: 288px;
    color: #efefef;
    font-weight: 900;
    width: 100%;
    text-align: center;
}

#turkey-map {
    height: 500px;
    padding-top: 200px;
    box-sizing: content-box;
}

section.special {
    background-color: #fff;
    background-image: url('../img/fbg.png');
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 700px;
    padding-top: 200px;
    padding-bottom: 100px;
}

section.special .box {
    position: relative;
    width: 80%;
}

section.special .box:after {
    content: '';
    position: absolute;
    right: -60px;
    transform: translateY(-50%);
    top: 50%;
    background-image: url(../img/right.png);
    width: 28px;
    height: 58px;
    background-repeat: no-repeat;
    background-position: center;
}

section.special .row .col-3:last-child .box:after {
    content: unset;
}

section.special .box .icon {
    width: 90px;
    height: 90px;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
}

section.special .box span {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
    display: block;
}

section.special .box p {
    color: rgba(0, 0, 0, 0.60);
    font-size: 14px;
    font-weight: 500;
}

section.special h1.title {
    position: absolute;
    top: 50%;
    margin: 0 auto;
    font-size: 140px;
    color: #efefef;
    font-weight: 900;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

section.special .owl-partners .item {}

section.special .owl-partners .item a {
    display: block;
}

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

section.special .owl-partners .item:hover .img {
    filter: grayscale(0);
}

section.contact-bar {
    background-color: #fff;
}

section.contact-bar .content {}

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

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

section.contact-bar .icon {}

section.contact-bar .icon img {}

.footerlogo {
    width: 191px;
    height: 138px;
    margin: 0 auto;
    display: flex;
    margin-top: -40px;
    margin-bottom: 100px;
}

.footer-menu {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.footer-menu li {
    position: relative;
}

.footer-menu li:last-child:after {
    content: '';
}

.footer-menu li:after {
    content: '•';
    position: absolute;
    top: 50%;
    color: #898989;
    transform: translateY(-50%);
    right: -34px;
}

.footer-menu li a {
    color: #898989;
    font-size: 14px;
    font-weight: 600;
    transition: all ease .3s;
}

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

.copyright {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
    height: 34px;
    padding: 0 12px;
    font-weight: bold;
    color: #000000;
    font-size: 12px;
    margin: 0;
    border-radius: 100px;
}

.fixed-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 10px;
    bottom: 0;
    z-index: 999;
}

.fixed-area .bayii {}

.fixed-area .top {
    border-radius: 50%;
    background-image: -moz-linear-gradient(90deg, rgb(29, 29, 27) 0%, rgb(109, 110, 113) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(29, 29, 27) 0%, rgb(109, 110, 113) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(29, 29, 27) 0%, rgb(109, 110, 113) 100%);
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-area .top i {
    color: #fff;
}

section.page-header {
    height: 180px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: -moz-linear-gradient(-92deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
    background-image: -webkit-linear-gradient(-92deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
    background-image: -ms-linear-gradient(-92deg, rgb(247, 148, 29) 0%, rgb(255, 220, 0) 100%);
}

section.page.kurumsal .container {
    position: relative;
}

section.page.kurumsal .container:before {
    content: '';
    background-image: url('../img/scorpionKr.png');
    width: 376px;
    height: 267px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: -100px;
    top: -100px;
    z-index: 2;
}

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: 30px;
    color: #000;
    font-weight: 900;
}

.page-header ul {
    background-color: #000;
    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:last-child {
    margin-right: 0;
}

.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 a i {}

section.page {
    position: relative;
    background: #fff;
    z-index: 1;
    padding-top: 30px;
    min-height: 500px;
}

section.page h1.title {
    position: absolute;
    top: 0;
    margin: 0 auto;
    font-size: 250px;
    color: #efefef;
    font-weight: 900;
    width: 100%;
    text-align: center;
    z-index: -5;
    overflow: hidden;
}

section.page h1.title {
    top: 200px;
}

section.page {}

section.page h3.underTitle {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    padding-bottom: 5px;
    position: relative;
}

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

section.page p {
    font-size: 15px;
    color: #000;
    font-weight: 300;
    line-height: 18px;
    text-align: justify;
}

section.page .man:before {
    content: '';
    background-image: url('../img/man.png');
    height: 608px;
    display: block;
    position: absolute;
    left: -51px;
    top: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: left;
}

section.page .items {
    text-align: center;
    margin-top: 60px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
}

section.page .items span {
    font-size: 54px;
    color: #000;
    font-weight: bold;
    display: block;
    line-height: 1;
}

section.page .items small {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    display: block;
    line-height: 1;
}

section.page .items .col-4:not(:last-child):after {
    content: '';
    position: absolute;
    background-color: #fed104;
    width: 3px;
    height: 62px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

section.page .sertifikalar {}

section.page .sertifikalar h4 {
    font-size: 24px;
    color: #1d1d1b;
    font-weight: 900;
    text-align: center;
    display: block;
    padding: 30px 0;
}

section.page .sertifikalar .item {
    display: block;
    border-radius: 5px;
    border: 4px solid #d9d6d6;
    padding: 18px;
    margin-bottom: 30px;
}

section.page .sertifikalar .item:hover {
    border-color: #ffe131;
    box-shadow: 0px 0px 26.88px 5.12px rgba(52, 52, 52, 0.19);
    background-color: rgba(236, 234, 234, 0);
}

section.page .sertifikalar .item span.img {
    padding-bottom: 130%;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: relative;
    background-size: contain;
}

section.page .sertifikalar .item span.text {
    opacity: 0;
    position: absolute;
    top: 0;
    background-color: rgba(255, 225, 49, 0.8);
    right: 0;
    bottom: 0;
    left: 0;
    transition: all ease .3s;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: #1d1d1b;
}

section.page .sertifikalar .item:hover span.text {
    opacity: 1;
}

section.page .dokumanlar {}

section.page .dokumanlar h4 {
    font-size: 24px;
    color: #1d1d1b;
    font-weight: 900;
    text-align: center;
    display: block;
    padding: 30px 0;
}

section.page .dokumanlar .item {
    display: block;
    border-radius: 5px;
    border: 4px solid #d9d6d6;
    padding: 18px;
    margin-bottom: 30px;
}

section.page .dokumanlar .item:hover {
    border-color: #ffe131;
    box-shadow: 0px 0px 26.88px 5.12px rgba(52, 52, 52, 0.19);
    background-color: rgba(236, 234, 234, 0);
}

section.page .dokumanlar .item span.img {
    padding-bottom: 25%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    position: relative;
}

section.page .dokumanlar .item span.text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #1d1d1b;
    margin-top: 10px;
}

section.page .brosurler {}

section.page .brosurler h4 {
    font-size: 24px;
    color: #1d1d1b;
    font-weight: 900;
    text-align: center;
    display: block;
    padding: 30px 0;
}

section.page .brosurler .item {
    display: block;
    padding: 18px;
    margin-bottom: 30px;
    position: relative;
}

section.page .brosurler .item span.img {
    padding-bottom: 130%;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: relative;
    z-index: 9;
    transition: all ease .3s .2s;
}

section.page .brosurler .item span.text {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: #1d1d1b;
    margin-top: 10px;
    background-color: #eceaea;
    border-radius: 5px;
    height: 76px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding-bottom: 15px;
    transition: all ease .3s .2s;
}

section.page .brosurler .item:hover span.text {
    background-color: #ffe131;
}

section.page .brosurler .item:hover span.img {
    transform: translateY(-10px);
}

section.page .brosurler .item span.img:after {
    content: '';
    transition: all ease .1s .3s;
    background-image: url('../img/golge.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 21px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

section.page .brosurler .item:hover span.img:after {
    content: '';
    opacity: 1;
    transition: all ease .1s .1s;
}

section.page .haberler {
    padding: 0 23px;
}

section.page .haberler .item {
    display: block;
    margin-bottom: 30px;
    position: relative;
    padding: 15px;
    border: 4px solid transparent;
    border-radius: 6px;
}

section.page .haberler .item:not(.haber-detay):hover {
    border: 4px solid #ffe131;
    box-shadow: 0px 0px 26.88px 5.12px rgba(52, 52, 52, 0.19);
}

section.page .haberler .item.big img {
    height: 283px;
}

section.page .haberler .item img {
    width: 100%;
    border-radius: 6px;
}

section.page .haberler .item .text {
    padding: 25px 0;
    padding-bottom: 0;
}

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

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

section.page .haberler .item .text p {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

section.page .haberler .item.haber-detay {}

section.page .haberler .item.haber-detay .text {
    padding: 0;
}

section.page .haberler .item.haber-detay .text h4,
section.page .haberler .item.haber-detay .text small {
    margin-bottom: 10px !important;
    display: block;
}

section.page .haberler .haber-detay-foto {}

section.page .haberler .haber-detay-foto .item {
    padding: 0;
}

section.page .haberler .haber-detay-foto .item span.img {
    padding-bottom: 68%;
    border-radius: 6px;
}

section.page .haberler .haber-detay-foto .item span.text {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 6px;
}

section.page .haberler .haber-detay-foto .item {
    border: unset !important;
}

.iletisim {}

.iletisim .adresimiz {
    background: #fff;
    padding: 65px 25px 30px 25px;
    box-sizing: content-box;
    margin-top: -22px;
    box-shadow: 0px 2px 23.52px 0.48px rgba(0, 0, 0, 0.14);
}

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

.iletisim h1.cizg {
    color: #000000;
    font-size: 19px;
    font-weight: 900;
    position: relative;
    margin-bottom: 20px;
}

.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;
    padding: 8px 0;
    vertical-align: middle;
    display: block;
}

.iletisim .adresimiz p span.icon i {
    font-size: 24px;
    color: #b9b9b8;
}

.iletisim .adresimiz p span.icon {
    width: 35px !important;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.iletisim .adresimiz p span:not(.icon) {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    display: inline-block;
    width: calc(100% - 75px);
    vertical-align: middle;
}

.iletisim .adresimiz .iletisimBtn {
    background-image: -moz-linear-gradient(66deg, rgb(0, 0, 0) 0%, rgb(67, 67, 67) 100%);
    background-image: -webkit-linear-gradient(66deg, rgb(0, 0, 0) 0%, rgb(67, 67, 67) 100%);
    background-image: -ms-linear-gradient(66deg, rgb(0, 0, 0) 0%, rgb(67, 67, 67) 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;
    width: 100%;
}

.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: #fff;
    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;
    background-image: -moz-linear-gradient(66deg, rgb(0, 0, 0) 0%, rgb(67, 67, 67) 100%);
    background-image: -webkit-linear-gradient(66deg, rgb(0, 0, 0) 0%, rgb(67, 67, 67) 100%);
    background-image: -ms-linear-gradient(66deg, rgb(0, 0, 0) 0%, rgb(67, 67, 67) 100%);
}

.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;
}

textarea.form-control {
    padding: 20px;
    border-radius: 20px;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem 18px;
    font-size: 13px;
    line-height: 1.5;
    color: #000000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #fdc300;
    border-radius: 40px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-group label {
    font-size: 14px;
    margin: 5px;
    font-weight: 600;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #fdc300;
    outline: 0;
    box-shadow: unset;
}

.randevu h2 {
    font-size: 21px;
    font-weight: 700;
    color: #000;
    margin: 10px 0px 10px 0px;
}

.randevu h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.kariyer h4 {
    font-weight: 900;
    font-size: 24px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.randevu {
    padding: 20px 0;
}

.urunlerimiz {}

.urunlerimiz .urun {
    border: 4px solid #d9d6d6;
    padding: 23px;
    display: block;
    margin-bottom: 30px;
}

.urunlerimiz .urun:hover {
    border-color: rgb(255, 218, 1);
    background-color: rgb(255, 219, 0);
    box-shadow: 0px 0px 26.88px 5.12px rgba(52, 52, 52, 0.19);
}

.urunlerimiz .urun:hover span {
    color: #000;
}

.urunlerimiz .urun span {
    font-size: 17px;
    color: #dfdfdf;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 20px;
    width: 150px;
}

.urunlerimiz .urun .image {
    padding-bottom: 70%;
    position: relative;
    margin-bottom: 40px;
}

.urunlerimiz .urun .img {
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-background-size: contain;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
    transition: all ease .3s;
    background-color: silver;
}

.urunlerimiz .urun .hover {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all ease .3s;
}

.urunlerimiz .urun:hover .img {
    opacity: 0;
}

.urunlerimiz .urun:hover .hover {
    opacity: 1;
}

.gallery-top {
    height: 80%;
    width: 100%;
}

.gallery-thumbs {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

div.urun {
    display: block;
    min-height: 600px;
}

.urun .gallery-top {
    height: 470px;
    border-radius: 5px;
}

.urun .swiper-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.urun .swiper-slide {
    background-size: cover;
    background-position: center;
}

.urun .gallery-thumbs {}

.urun .gallery-thumbs .swiper-wrapper {
    width: 85%;
}

.urun .gallery-thumbs .swiper-slide {
    border-radius: 4px;
    border: 2px solid #d9d6d6;
    padding: 13px 10px;
}

.urun .gallery-thumbs .swiper-slide .item {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: block;
}

.urun .gallery-thumbs .swiper-button-next {
    background-image: unset;
    font-size: 32px;
    margin-top: 0;
    right: 0;
    height: 100%;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: rgb(0, 0, 0);
    width: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease .3s;
}

.urun .gallery-thumbs .swiper-button-next:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    color: #fff;
}

.urun .gallery-thumbs .swiper-button-prev {
    background-image: unset;
    font-size: 32px;
    margin-top: 0;
    left: 0;
    height: 100%;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: rgb(0, 0, 0);
    width: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease .3s;
}

.urun .gallery-thumbs .swiper-button-prev:after {
    font-family: "Font Awesome 5 Free";
    content: "\f104";
    font-weight: 900;
    color: #fff;
}

.controller {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.controller div:hover {
    background-color: #ffdc00 !important;
}

.controller div:hover:after {
    color: #000 !important;
}

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

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

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

.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: #f08117;
}

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

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

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

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

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

.detay-resimler {
    margin-top: 40px;
}

.detay-resimler .item {
    opacity: .8;
    display: block;
    margin-bottom: 30px;
}

.detay-resimler .item:hover {
    opacity: 1;
}

.detay-resimler .item .image {
    border-radius: 4px;
    border: 2px solid #a6a6a6;
    padding: 13px 10px;
}

.detay-resimler .item .image .img {
    height: 100%;
    background-size: cover;
    background-position: center;
    padding-bottom: 60%;
}

.detay-resimler .item span {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    display: block;
    text-align: center;
    margin-top: 15px;
}

h3.subtitle {
    color: #1d1d1b;
    font-size: 24px;
    font-weight: 900;
    display: block;
    text-align: center;
    padding: 30px 0 20px 0;
}

.teknik {
    padding: 30px 0;
    position: relative;
    z-index: 9;
}

.teknik .go-top {
    margin-top: -200px;
}

.teknik .cont {
    border-radius: 20px;
    background-color: #fff;
    padding: 35px;
}

#accordionExample {}

#accordionExample .card {
    border: unset;
    margin-bottom: 15px;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.1);
}

#accordionExample .card .card-header {
    border: unset;
    border-radius: 3px;
    background-color: #fff;
    height: 52px;
    display: flex;
    align-items: center;
}

#accordionExample .card .card-header button {
    background-color: transparent;
    border: unset;
    color: #a8a8a7;
    font-size: 15px;
    font-weight: 900;
}

.buttn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease .3s;
    cursor: pointer;
}

.buttn:hover .icon svg {
    fill: #ffcc32;
}

.buttn:hover span {
    color: #ffcc32;
}

.buttn .icon {
    width: 65px;
    height: 65px;
}

.buttn .icon svg {
    transition: all ease .3s;
}

.buttn span {
    font-weight: 900;
    font-size: 22px;
    color: #000;
    margin-left: 15px;
    transition: all ease .3s;
}

.bayilerListe {}

.bayilerListe .item span.img {
    padding-bottom: 55% !important;
}

section.fullvideo {
    width: 100%;
    height: calc(100vh - 100px);
    z-index: 1;
    position: relative;
}
section.fullvideo .video {
    width: 100%;
    height: calc(100vh - 100px);
    z-index: -1;
    overflow: hidden;
    position: relative;
}

section.fullvideo .video video {
    width: 100vw;
    height: calc(100vh - 100px);
    object-fit: cover;
    position: absolute;
    left: 0px;
    bottom: 0px;
    top: 0;
    z-index: -1;
}
.iletisim-pagination{float:left;position:relative;height:0;top:0;left:140px;z-index: 99999;}
.iletisim-pagination .owl-dot{background:#0f0f0f;display:inline-block;border:none;height: 12px;width:12px;margin-right:5px;border-radius:60px;}
.iletisim-pagination .owl-dot.active{background:#fdc908;width:21px;}