@import url('https://fonts.googleapis.com/css2?family=Mukta+Malar:wght@400;500;600;700;800&display=swap');
@import "../fonts/font.css";
@import "keyframes.css";

:root {
    --primary-font: 'Mukta Malar', sans-serif;
    --primary-color: #207cb9;
    --second-color: #cd0000;
    --white-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    list-style: none;
    box-sizing: border-box;
    outline: none;
    border: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-style: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.2;
    scroll-behavior: smooth;
    font-family: var(--primary-font);
    font-weight: 400;
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

::selection {
    color: #fff !important;
    background-color: var(--primary-color);
}

::-moz-selection {
    color: #fff !important;
    background-color: var(--primary-color);
}

.container--full {
    margin: unset;
    max-width: 1870px;
    padding: 0 90px;
}

header.header {
    position: relative;
    width: 100%;
    height: max-content;
    padding: 5px 0;
    transition: all .4s ease-in-out;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .container a.logo {
    width: 100%;
}

.header .container a.logo img {
    max-width: 200px;
    object-fit: contain;
}

header .nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.header ul.nav__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.header ul.nav__list .nav__item {
    height: 100%;
}

.header ul.nav__list .nav__item+.nav__item {
    margin-left: 25px;
}

.header ul.nav__list .nav__item:last-child {
    margin-right: 25px;
}

.header ul.nav__list .nav__item .nav__link {
    font-size: 1.08rem;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #0d0d0d;
    transition: 0.25s ease color;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--primary-font);
}

.header ul.nav__list .nav__item .nav__link:hover {
    color: #cd0000;
}

.header div.widgets {
    display: flex;
}

.header div.widgets .phone {
    width: max-content;
    padding: 10px 10px;
}

.header .widgets .phone a {
    height: 40px;
    border-radius: 10px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    transition: 0.25s ease all;
}

.header .widgets .phone a img {
    flex-shrink: 0;
    width: 40px;
    margin-right: 17px;
    transition: 0.25s ease fill;
}

.header .widgets .phone a h4 {
    font-size: 16px;
    color: #5e6480;
    margin-bottom: 3px;
}

.header .widgets .phone a span {
    color: #cd0000;
    transition: 0.25s ease color;
    font-size: 18px;
}

section.home {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.swiper.homeSlider {
    width: 93%;
    height: 100%;
    margin: 0;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
}

.swiper.homeSlider .swiper-slide {
    text-align: center;
    height: 580px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.swiper.homeSlider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.home .scroll-down {
    z-index: 1;
    position: relative;
    height: 100%;
    max-height: 700px;
    width: 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
    background-color: white;
}

.scroll-down .wrapper {
    background-color: white;
    padding: 90px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
}

.scroll-down .wrapper.home {
    padding: 30px 0 0 0;
}

.scroll-down .wrapper span {
    display: block;
    text-align: center;
    writing-mode: vertical-lr;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    transform: rotate(180deg) translateX(3px);
    padding-top: 19px;
    padding-right: 6px;
    opacity: 0.65;
    color: #646464;
    opacity: 0.65;
    transition: 0.25s ease all;
}

.scroll-down .wrapper svg {
    background-color: white;
    fill: #cd0000;
    width: 30px;
    transform: scaleX(0.75);
}

.scroll-down .wrapper .scroll-down-chevron-3 {
    transform-origin: 50% 50%;
    opacity: 0;
    animation: scroll 3s ease-out infinite;
}

.scroll-down .wrapper .scroll-down-chevron-2 {
    transform-origin: 50% 50%;
    opacity: 0;
    animation: scroll 3s ease-out 2s infinite;
}

.scroll-down .wrapper .scroll-down-chevron-1 {
    transform-origin: 50% 50%;
    opacity: 0;
    animation: scroll 3s ease-out 1s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(-30px) scale3d(0.5, 0.5, 0.5);
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(90px);
    }

    100% {
        opacity: 0;
        transform: translateY(90px) scale3d(0.5, 0.5, 0.5);
    }
}

@media screen and (min-width: 1200px) {
    section.home .scroll-down {
        min-height: 700px;
    }
}

#about {
    padding: 50px 0 90px 0;
    width: 100%;
    overflow: hidden;
}

#about .container {
    background-image: url(../img/home-about-bg.jpg);
    background-size: cover;
    padding: 60px 45px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    position: relative;
    grid-template-rows: 1fr;
    grid-gap: 60px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
}

#about .container::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    background: linear-gradient(0deg, rgb(176 204 209) 30%, rgba(178,206,208,1) 56%, rgba(202,216,218,1) 100%);
    width: 100%;
    height: 100%;
}

.typography {
    color: #0d0d0d;
}

.typography h1 {
    color: #112a3a;
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 25px;
}

.typography p {
       line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 100;
    font-size: 18px;
}

.typography p strong {
    opacity: 1;
}

#about .container .buttons {
    margin-top: 45px;
    display: flex;
    width: fit-content;
}

#about .container .buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    box-shadow: 0 0 0 1px var(--second-color);
    border-radius: 10px;
    height: 50px;
    padding: 0 15px;
    color: #333;
    transition: 0.25s ease all;
}

#about .container .buttons a:hover {
    background-color: var(--second-color);
    color: #ddd;
}

#about .container .images {
    position: relative;
}

#about .container .images .wrapper {
    display: grid;
    grid-template-columns: 2.5fr 1fr 2.5fr;
    grid-template-rows: repeat(7, minmax(0, 1fr));
    position: absolute;
    width: 100%;
    height: calc(100% + 180px);
    top: -90px;
    left: 0;
}

#about .container .images .wrapper img:first-of-type {
    grid-column: 1/span 2;
    grid-row: 1/span 5;
}

section.referanslar {
    padding: 80px 0;
}

#about .container .images .wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}

#about .container .images .wrapper img:last-of-type {
    grid-column: 2/span 2;
    grid-row: 3/span 5;
}

section.referanslar h2 {
    line-height: 1.25;
    margin-bottom: 70px;
    font-size: 2.25rem;
    font-family: var(--primary-font);
    text-align: center;
}

.swiper.referansSwiper {
    width: 100%;
    height: 100%;
    overflow: unset;
}

.swiper.referansSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper.referansSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper.referansSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper.referansSwiper .swiper-slide .item {
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    background: #ececec;
    height: 150px;
    width: 100%;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .25s ease all;
}

.swiper.referansSwiper .swiper-slide .item img {
    display: block;
    width: auto;
    height: 100%;
    
    object-position: center;
    user-select: none;
    pointer-events: none;
    border-radius: unset;
    margin: 0;
}

.swiper.referansSwiper .swiper-slide .item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    cursor: grab;
}

footer {
    max-width: 100%;
    padding-top: 10px;
    margin-top: 90px;
    background-color: #cd0000;
}

footer .footer-logo {
    position: relative;
    display: flex;
    justify-content: center;
    width: 280px;
    margin: 0 auto;
    margin-bottom: 60px;
    margin-top: -86px;
}

footer .footer-logo a {
    padding: 0 30px;
    position: relative;
    display: block;
    transition: 0.25s ease all;
}

footer .footer-logo a img {
    display: block;
    max-width: 350px;
    width: 100%;
}

footer>.container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 1fr;
    grid-gap: 60px;
    align-items: start;
    padding-bottom: 60px;
    position: relative;
}

footer>.container .info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(min-content, max-content);
    grid-gap: 30px;
}

footer>.container .info a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 15px 30px;
    transition: 0.25s ease all;
}

footer>.container .info a svg {
    flex-shrink: 0;
    fill: var(--second-color);
    width: 25px;
    height: 25px;
    margin-right: 15px;
    transition: 0.25s ease fill;
}

footer>.container .info a span {
    color: #0d0d0d;
    line-height: 1.5;
    transition: 0.25s ease color;
}

footer>.container .info a:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

footer>.container .info a:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

footer>.container .info a:nth-child(3) {
    grid-column: 1/span 2;
    grid-row: 2;
}

footer>.container .navigation .menu .title {
    font-size: 1.625rem;
    color: var(--white-color);
    font-weight: bold;
    margin-bottom: 30px;
}

footer>.container .navigation .menu nav {
    display: block;
}

footer>.container .navigation .menu nav a {
    white-space: nowrap;
    margin-right: 60px;
    margin-bottom: 20px;
    display: block;
    color: #fff;
    position: relative;
}

footer>.container .navigation .menu nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background-image: url(../img/icon/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 10px;
    width: 5px;
    filter: invert(1) sepia(52%) saturate(2643%) hue-rotate(206deg) brightness(97%) contrast(99%);
    transition: 0.25s ease all;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    visibility: hidden;
}

footer>.container .navigation .menu nav a span {
    display: block;
    color: #fff;
    transition: 0.25s ease all;
    font-size: 17px;
    font-weight: 500;
}

footer>.container .navigation .menu nav a:hover::before {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    visibility: visible;
}

footer>.container .navigation .menu nav a:hover span {
    transform: translateX(10px);
    color: white;
    opacity: .85;
}

footer>.container .navigation .social {
    margin-top: 15px;
    display: flex;
}

footer>.container .navigation .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.25s ease all;
}

footer>.container .navigation .social a svg {
    width: 20px;
    height: 20px;
    fill: rgba(0, 0, 0, 0.5);
    transition: 0.25s ease fill;
}

footer>.container .navigation .social a+a {
    margin-left: 30px;
}

footer>.container .navigation .social a:hover {
    transform: translateY(-5px);
    background-color: rgba(12, 39, 88, 0.1);
}

footer>.container .navigation .social a:hover svg {
    fill: var(--second-color);
}

.back-to-top {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #cd0000;
    font-size: 35px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.back-to-top:hover {
    color: #fff;
}

.youtube-svg {
    width: 35px !important;
    height: 35px !important;
}

.instagram-svg {
    width: 28px !important;
    height: 28px !important;
    margin-top: 3px;
}

footer .copyright .container {
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
}

.sanatustuCopy {
    padding-left: 20px;
    color: #fff;
    font-size: 12px;
    margin-top: -6px;
}

.sanatustuCopy span {
    padding: 0;
}

.sanatustuWEB {
    color: #fff;
}

.sanatustuSpanF {
    font-size: 24px;
    color: #fff;
    font-family: 'NADALL';
}

.sanatustuSpanL {
    font-family: 'Quizma-LightDemo';
    color: #fff;
    font-size: 25px;
}

footer .social-scroll ul {
    display: flex;
}

footer .social-scroll ul li+li {
    margin-left: 16px;
}

footer .social-scroll a svg {
    width: 30px;
    height: 30px;
    fill: var(--white-color);
}

footer .copyright .line {
    display: block;
    flex: 1;
    height: 4px;
    background-color: #fff;
    border-radius: 7px;
}

footer>.container .info a:hover {
    background-color: #effaff;
    border-color: var(--second-color);
    transform: translateY(-5px);
}

.imza {
    margin-right: 15px;
}

.hizmetler-index {
    padding: 70px 0;
}

.hizmetler-index .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 70px;
}

.hizmetler-index .head h1 {
    line-height: 1.25;
    font-size: 2.25rem;
    font-family: var(--primary-font);
    text-align: center;
}

.hizmetler-index .head .arrows {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.hizmetler-index .head .arrows .prev-btn {
    margin-right: 10px;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: 1px solid var(--second-color);
    border-radius: 50%;
}

.hizmetler-index .head .arrows .next-btn {
    margin-right: 10px;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: 1px solid var(--second-color);
    border-radius: 50%;
}

.hizmet-item {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: max-content;
    border-radius: 4px;
    cursor: pointer;
}

.hizmet-item .img-content {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.hizmet-item .img-content img {
    transition: all .5s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hizmet-item .con {
    padding: 20px;
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    transition: all .3s;
    text-align: left;
    z-index: 20;
    height: auto;
    box-sizing: border-box;
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
}

.hizmet-item .con h5 {
    position: relative;
    color: #fff;
    font-size: 27px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 5px;
}

.hizmet-item .con h5 a {
    position: relative;
    color: #fff;
    font-size: 23px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 5px;
}

.hizmet-item .line {
    text-align: center;
    height: 2px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: auto 0 40px;
}

.hizmet-item .con .permalink {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    height: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all .3s ease;
    display: inline;
}

.hizmet-item .con .permalink a {
    color: #fff;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-weight: 400;
    font-family: var(--primary-font);
}

.hizmet-item .con .permalink i {
    font-size: 15px;
    text-align: right;
    color: #fff;
    margin-left: 5px;
}

.hizmet-item:hover .con {
    bottom: 0;
}

.hizmet-item:hover .line {
    margin: auto 0 15px;
}

.hizmet-item:hover img {
    filter: none;
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(50%);
    transition: all 1s ease;
}

.hizmet-item:hover .line {
    width: 100%;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

#breadcrumb {
    height: 250px;
    margin-right: 0;
    position: relative;
    margin-bottom: 90px;
    display: flex;
    flex-wrap: nowrap;
}

#breadcrumb>.wrapper {
    position: relative;
    width: 95%;
    height: 100%;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
    padding-left: 90px;
}

#breadcrumb>.wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

#breadcrumb>.wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    left: 0;
    top: 0;
}

#breadcrumb>.scroll-down {
    width: 5%;
}

#breadcrumb>.wrapper .container {
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#breadcrumb>.wrapper .container .title {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    line-height: 1.25;
    margin-left: -35px;
}

#breadcrumb>.wrapper .container .navigation {
    display: flex;
    align-items: center;
}

#breadcrumb>.wrapper .container .navigation li {
    display: flex;
    align-items: center;
}

#breadcrumb>.wrapper .container .navigation li a {
    color: white;
    opacity: 0.8;
    transition: 0.25s ease all;
}

#breadcrumb>.wrapper .container .navigation li a svg {
    height: 20px;
    width: 20px;
    fill: #fff;
    transition: 0.25s ease all;
}

#breadcrumb>.wrapper .container .navigation li+li::before {
    content: url(../img/icon/arrow.svg);
    height: 17px;
    width: 6px;
    -webkit-filter: invert(1);
    filter: invert(1);
    opacity: 0.8;
    margin: 0 15px;
    display: block;
    margin-top: 7px;
}

#breadcrumb>.wrapper .container .navigation li span {
    color: white;
}

.contact-page h3 {
    font-size: 1.875rem;
    line-height: 1.25;
    margin-bottom: 40px;
}

.sticky {
    position: sticky !important;
    top: 30px;
    transition: 0.25s ease all !important;
}

.map {
    overflow: hidden;
    border-radius: 10px;
    height: 525px;
    width: 100%;
    position: relative;
    margin-top: 25px;
}

.map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.map .buttons {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: fit-content;
    transform: translateX(-50%);
    background-color: white;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.map .buttons a {
    display: flex;
    align-items: center;
    padding: 0 45px;
}

.map .buttons a svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
    margin-right: 15px;
    transition: 0.25s ease fill;
}

.map .buttons a span {
    font-size: 1.125rem;
    color: #0d0d0d;
    transition: 0.25s ease color;
}

.map .buttons a+a {
    border-left: 1px solid #d9d9d9;
}

.contact-wrapper .info .brand-infos {
    margin-top: 45px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 0 1px #d9d9d9;
    border-radius: 10px;
    padding: 30px;
    transition: 0.25s ease all;
}

.form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    grid-gap: 25px;
    padding: 20px 50px;
}

.form .full {
    grid-column: 1/span 2;
}

.typography h3 {
    font-size: 1.875rem;
    color: #000;
    margin-bottom: 40px;
}

.form .item {
    position: relative;
}

.form-span {
    position: relative;
}

.form-span input {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    padding: 0 20px;
    border: 0;
    background-color: white;
    box-shadow: 0 0 0 1px #d9d9d9;
    color: #0d0d0d;
    transition: 0.25s ease box-shadow;
}

.form-span input:checked,
.form-span input:focus {
    box-shadow: 0 0 0 1px var(--primary-color);
}

.form .form-span textarea {
    padding: 20px;
    height: 150px;
    resize: none;
    appearance: none;
}

.form-span textarea:checked,
.form-span textarea:focus {
    box-shadow: 0 0 0 1px var(--second-color);
}

.form button {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 10px;
    font-size: 1.125rem;
    transition: 0.25s ease all;
    border: 0;
    outline: unset;
    cursor: pointer;
    box-shadow: 0 0 0 1px #bfbfbf;
    background-color: white;
}

.form button svg {
    fill: var(--second-color);
    transition: 0.25s ease fill;
    margin-left: 15px;
    margin-right: 0;
    height: 15px;
    width: 15px;
}

.form button:hover {
    box-shadow: unset;
    background-color: var(--primary-color);
    color: white;
}

.form button:hover>svg {
    fill: #fff;
}

.address-box {
    margin-top: 30px;
}

.address-box a {
    display: flex;
    align-items: center;
    height: fit-content;
    border-radius: 10px;
    padding: 15px 30px;
    transition: 0.25s ease all;
}

.address-box a .img-adress {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    display: grid;
    place-items: center;
    margin-right: 15px;
    transition: 0.35s ease fill;
}

.address-box a svg {
    flex-shrink: 0;
    fill: var(--primary-color);
    width: 25px;
    height: 25px;
    transition: 0.35s ease fill;
}

.address-box a:hover .img-adress {
    background-color: var(--primary-color);
}

.address-box a:hover .img-adress svg {
    fill: var(--white-color) !important;
}

.address-box a span {
    color: #0d0d0d;
    line-height: 1.5;
    transition: 0.25s ease color;
    font-size: 19px;
    font-family: var(--primary-font);
}

.address-box a span h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.address-box a+a {
    margin-top: 20px;
}

.address-box a:hover {
    transform: translateY(-5px);
}

.social {
    margin-top: 15px;
    display: flex;
    margin-bottom: 20px;
    padding-left: 35px;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.25s ease all;
}

.social a svg {
    width: 20px;
    height: 20px;
    fill: rgba(0, 0, 0, 0.5);
    transition: 0.25s ease fill;
}

.social a+a {
    margin-left: 25px;
}

.social a:hover {
    transform: translateY(-5px);
    background-color: rgba(12, 39, 88, 0.1);
}

.social a:hover>svg {
    fill: var(--primary-color) !important;
}

.referans-page {
    width: 100%;
    height: max-content;
    padding: 30px 0 45px 0;
    display: block;
}

.referans-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 50px;
}

.referans-grid .item {
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    height: 150px;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .25s ease all;
    overflow: hidden;
}

.referans-grid .item img {
    display: block;
    width: auto;
    height: 100%;
    
    user-select: none;
    pointer-events: none;
    border-radius: unset;
    margin: 0;
}

.referans-grid .item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    cursor: grab;
}

.hizmet-page {
    width: 100%;
    height: max-content;
    padding: 30px 0 45px 0;
    display: block;
}

.hizmet-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 50px;
}

.corporate-wrapper {
    margin: 90px 0 0;
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    grid-template-rows: 1fr;
    align-items: center;
}

.corporate-wrapper .corporate-image {
    grid-row: 1;
    grid-column: 1/span 7;
    width: 100%;
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.corporate-wrapper .corporate-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.corporate-wrapper .content {
    position: relative;
    z-index: 1;
    grid-row: 1;
    grid-column: 7/span 4;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px -5px rgb(0 0 0 / 10%);
    padding: 24px;
}

.corporate-wrapper .content.cerez {
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 10px 25px -5px rgb(0 0 0 / 3%);
    margin-bottom: 2rem;
}

/*SUCCESS FORM*/
.success-form {
    display: none;
    padding: 13px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #00bb46;
    align-items: center;
    font-family: var(--primary-font);
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    visibility: hidden;
    opacity: 0;
    font-weight: 500;
    letter-spacing: .7px;
    transition: all .5s ease-in-out;
    margin-top: 20px;
    grid-area: span 1/2 span;
}

.success-form.active {
    visibility: visible;
    opacity: 1;
    display: flex;
}

.success-form .check {
    font-size: 20px;
    color: #00bb46;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 15px;
}

.service-detail-slide {
    padding-right: 20px;
}

.owl-carousel-service-detail {
    overflow: hidden;
    border-radius: 40px;
    cursor: pointer;
}

.owl-carousel-service-detail .detail-item {
    width: 100%;
    height: 100%;
    max-height: 450px;
}

.owl-carousel-service-detail .detail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-txt {
    padding: 10px 10px;
}

.service-detail-txt h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-txt p {
    font-size: 17px;
    color: #000;
    opacity: .7;
    font-weight: 500;
    line-height: 1.6;
}

.service-detail-txt p+p {
    margin-top: 15px;
}

.scroll-down .social-scroll ul li+li {
    margin-top: 20px;
}

.form-contact {
    background-color: #dddfdf;
    padding-top: 2rem;
}

.scroll-down .social-scroll ul li a svg {
    width: 25px;
    height: 25px;
    fill: rgba(0, 0, 0, .45);
}

.header.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .05);
}

#footer-menu.contact-info a {
    display: flex !important;
    align-items: center;
}

#footer-menu.contact-info a::before {
    position: unset;
    background-image: none;
}

#footer-menu.contact-info img {
    width: 33px;
    height: 33px;
    filter: invert(1);
    margin-right: 15px;
}

.corporate-wrapper .content.vizyon {
    grid-column: 2/span 3;
}

.corporate-wrapper .corporate-image.vizyon {
    grid-column: 4/span 7;
}

.homeSlider .swiper-slide .container {
    max-width: 1320px;
}

.homeSlider .swiper-slide .container .content {
    width: max-content;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    margin-left: 45px;
}

.homeSlider .swiper-slide .container .content h3 {
    font-size: 45px;
    color: #ffffff00;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 7px;
    -webkit-text-stroke: 1px white;
    animation: fadeLeft .4s alternate;
}

.homeSlider .swiper-slide .container .content p {
    line-height: 50px;
    font-weight: 100;
    margin-bottom: 17px;
    color: var(--white-color);
    font-size: 26px;
    animation: fadeLeft .4s alternate;
}

.homeSlider .swiper-slide .container .content a {
    z-index: 14;
    background-color: transparent;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 2px;
    padding: 11px 37px;
    font-weight: 700;
    border-radius: 10px;
    font-size: 17px;
    border: 1px solid var(--white-color);
    animation: fadeLeft 1s alternate;
}

.homeSlider .swiper-slide-active .container .content h3 {
    animation-name: fade-in;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: both;
}

.homeSlider .swiper-slide-active .container .content a {
    animation-name: fade-in;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: both;
}

.homeSlider .swiper-slide-active .container .content p {
    animation-name: fade-in;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: both;
}

.homeSlider .swiper-pagination {
    width: max-content;
    left: 11%;
    bottom: 2.5rem;
    transform: translate(-50%, -50%);
}

.homeSlider .swiper-pagination-bullet {
    width: max-content;
    overflow: hidden;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 25px;
    color: #fff;
    opacity: 1;
    background: transparent;
    font-family: var(--primary-font);
}

.homeSlider .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 10px;
}

.homeSlider .swiper-pagination-bullet-active {
    color: #fff;
    position: relative;
    padding-right: 35px;
    transition: all .3s ease-in-out;
}

.homeSlider .swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    width: 45px;
    border-radius: 16px;
    height: 2px;
    top: 50%;
    left: 1rem;
    background-color: var(--white-color);
    margin-right: 20px;
    display: block;
    margin-left: 8px;
    transition: all .4s ease-in-out;
    animation: scaleKey .4s alternate;
}

.menu-open {
    width: 35px;
    display: none;
    height: 35px;
    transition: all .4s ease-in-out;
}

.close-menu {
    display: none;
}

.nav__list .widgets {
    display: none !important;
    margin-top: 20px;
}

.mobile-logo {
    display: none;
}

.owl-carousel.owl-carousel-service-detail .owl-dots .owl-dot span {
    width: 20px;
    background-color: rgba(0, 15, 87, 0.3);
    height: 6px;
    transition: all ease 0.4s;
    border-radius: 9999px;
}

.owl-carousel.owl-carousel-service-detail .owl-dots .owl-dot.active>span {
    background-color: var(--primary-color);
    width: 40px;
}

@media screen and (max-width: 1200px) {
    .typography h3 {
        margin-bottom: 11px;
    }

    .corporate-wrapper {
        margin: 36px 0 0;
    }

    .referans-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .corporate-wrapper .corporate-image.vizyon {
        grid-column: unset !important;
    }

    .corporate-wrapper .content.vizyon {
        grid-column: unset !important;
    }

    #about .container {
        padding: 60px 20px;
    }

    section.home .scroll-down {
        display: none;
    }

    .homeSlider .swiper-pagination {
        left: 15%;
    }

    .swiper.homeSlider {
        width: 100%;
        border-radius: 0;
    }

    #breadcrumb>.wrapper {
        width: 100%;
        border-radius: 0;
    }

    #breadcrumb>.scroll-down {
        display: none;
    }

    .service-detail-txt {
        margin-top: 45px;
    }

    .menu-open {
        display: block;
        cursor: pointer;
    }

    .nav__list .widgets {
        display: flex !important;
        margin-top: 20px;
    }

    .nav__list .widgets .phone a span {
        color: #fff !important;
    }

    .nav__list .widgets .phone a h4 {
        color: #fff;
    }

    .nav__list .widgets .phone a {
        padding: 0;
    }

    .header div.widgets {
        display: none;
    }

    .header ul.nav__list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgb(49 88 253);
        flex-direction: column;
        align-items: flex-start;
        padding-left: 33px;
        transition: all .3s linear;
    }

    .header ul.nav__list.active {
        left: 0;
    }

    .header ul.nav__list.active .mobile-logo {
        display: block;
        position: fixed;
        top: 3rem;
        left: 1rem;
        width: 250px;
        object-fit: contain;
    }

    .header ul.nav__list.active .close-menu {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1000;
        color: #fff;
        font-size: 32px;
        transition: all 3s linear;
        display: block;
        cursor: pointer;
    }

    .header ul.nav__list .nav__item:last-child {
        margin-right: 0;
    }

    .header ul.nav__list .nav__item .nav__link {
        height: max-content;
        color: var(--white-color);
    }

    .header ul.nav__list .nav__item .nav__link:hover {
        color: var(--white-color);
    }

    .header ul.nav__list .nav__item {
        height: max-content;
        margin-top: -68px;
    }

    .header ul.nav__list .nav__item+.nav__item {
        margin-left: 0;
        margin-top: 25px;
    }
}

@media only screen and (max-width: 1024px) {
    #about .container {
        grid-template-columns: 1fr;
    }

    #about .container .images .wrapper {
        position: static;
        left: unset;
        top: unset;
        grid-template-rows: minmax(0, 1fr);
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
        height: 300px;
    }

    #about .container .images .wrapper img:first-of-type {
        grid-column: 1;
        grid-row: 1;
    }

    #about .container .images .wrapper img:last-of-type {
        grid-column: 2;
        grid-row: 1;
    }

    footer>.container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    footer>.container .navigation .menu nav {
        justify-content: center;
    }

    footer>.container .navigation .menu nav a {
        margin: 0;
        padding: 0 15px 25px 15px;
    }

    footer>.container .navigation .social a {
        margin: 0 15px 25px 15px !important;
    }

    footer>.container .navigation .menu nav a::before {
        position: unset;
        background-image: unset;
    }

    footer>.container .navigation .social {
        justify-content: center;
    }

    footer>.container .info {
        grid-template-columns: 1fr !important;
    }

    footer>.container .info a {
        justify-content: flex-start;
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .form-contact {
        margin-top: 40px;
        padding: 5rem 20px;
    }

    .form {
        padding: 0;
    }

    .form .item {
        grid-column: 1/span 2;
    }

    .container--full {
        padding: 0 20px;
    }

    .hizmet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .corporate-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-gap: 30px;
    }

    .corporate-wrapper .content {
        grid-column: unset;
        grid-row: unset;
        padding: 0;
        box-shadow: unset;
    }

    .corporate-wrapper .corporate-image {
        grid-column: unset;
        grid-row: unset;
        padding: 0;
        box-shadow: unset;
    }

    #breadcrumb>.wrapper {
        padding-left: 0;
    }

    #breadcrumb>.wrapper .container {
        flex-direction: column;
        justify-content: center;
    }

    .scroll-down .wrapper svg {
        width: 23px;
    }

    section.home .scroll-down {
        padding-top: 12rem;
    }

    footer .copyright .line {
        background-color: transparent;
    }
}

@media screen and (max-width: 500px) {
    .hizmet-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .referans-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}


.wrapper.home a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: inherit;
}


.header .bg-responsive {
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: all .3s linear;
}

.header.active .bg-responsive {
    top: 0;
}


