body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif !important;
    color: var(--color-white);
    overflow-x: hidden;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

a:hover,
a:focus {
    text-decoration: none !important;
}

/* Preloader */
.container-preloader {
    align-items: center;
    cursor: none;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 900;
}

.container-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.container-preloader .loader-section {
    background: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.container-preloader .loader-section.section-left {
    left: 0;
}

.container-preloader .loader-section.section-right {
    right: 0;
}

/* Fade effect on loading animation */
.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

/* Curtain effect */
.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}


/* Animation of letters loading from the preloader */
@keyframes characters {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.origin {
    text-decoration: none;
    font-size: 45px;
}

.header-top-container {
    height: 120px;
    display: grid;
    justify-content: center;
}

.top-bar>* {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.grid-item {
    transition: all 0.7s ease-in-out;
}

.grid-right {
    display: grid;
    justify-content: end;
}

.logo {
    padding: 35px 0px 35px;
    width: 450px;
}

.logo img {
    display: inline-block;
    width: 100%;
}

.shine {
    -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, .2) 50%, #000 75%);
    mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, .2) 50%, #000 75%);
    -webkit-mask-size: 800%;
    mask-size: 800%;
    -webkit-mask-position: 0;
    mask-position: 0;
    animation: mymove 7s;
    animation-iteration-count: 15000
}

@keyframes mymove {

    from {
        transition: mask-position 5s ease, -webkit-mask-position 5s ease;
        -webkit-mask-position: 120%;
        mask-position: 120%;
        opacity: 1;
    }

}

.social-header ul li {
    display: inline;
    margin: 0 2px;
}

.section-padding {
    margin: 75px 0px;
}

.section-page-title {
    text-align: center;
    padding: 0 15em;
    padding-bottom: 100px;
}

.page-title {
    font-weight: 600;
    font-size: 50px;
}

hr {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    border: 0;
    border-top: 1px solid #eee;
}

.layout-item {
    box-shadow: 17px 17px 80px rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all 0.7s ease-in-out;
    z-index: 1;
    opacity: .85;
    position: relative;
    padding: 15px;
}

.layout-item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.grid-item-title {
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    padding-right: 20px;
    padding-left: 20px;
    color: white;
    transition: all 0.7s ease-in-out;
}

.hover-blur {
    filter: blur(2px);
    scale: .8;
    opacity: .7;
    transition: all 0.7s ease-in-out;
}


.grid-item:hover .layout-item {
    cursor: pointer;
    scale: 1.05;
    z-index: 2;
    box-shadow: none;
    border: 0px;
}

.service-content-div {

    transition: all 0.7s ease-in-out;
}

.copyright-ht {
    padding-top: 5px;
    color: white;
}

.copyright-ht a {
    color: white;
    text-decoration: none;
}

.copyright-ht a:hover {
    color: rgb(202, 202, 202);
    text-decoration: none;
}

.legal-links {
    float: left;
    margin-top: 15px;
    list-style-type: none;
    display: flex;
    width: 100%;
    padding-left: 0px;
    justify-content: center;
    transition: all 0.7s ease-in-out;
}

.legal-links li {
    transition: all 0.7s ease-in-out;
}

.legal-links li a {
    color: white;
    padding: 0px 20px;
    transition: all 0.7s ease-in-out;
}


.legal-links li a:hover {
    color: rgb(202, 202, 202);
    text-decoration: none;
}



.service-title {
    padding-top: -5px;
    text-align: center;
    transition: all 0.7s ease-in-out;
}

.service-title a {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.7s ease-in-out;
}

.service-title a:hover {
    color: white;
    text-decoration: none;
}

.service-content {
    padding-bottom: 20px;
    transition: all 0.7s ease-in-out;
}



.footer-ht {
    display: block;
    clear: both;
    bottom: 0;
    left: 0;
    right: 0;
}

.copyright-ht a:hover {
    -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, 0.6) 30%, #ffe400 50%, rgba(0, 0, 0, .6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}

/* effect-shine */
.legal-links li a:hover {
    -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, 0.6) 30%, #ffe400 50%, rgba(0, 0, 0, .6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}

@-webkit-keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }

    to {
        -webkit-mask-position: -50%;
    }
}

.layout-item:hover {
    opacity: 1;
}

.grid-item:hover .service-item-inner {

    transition: all 0.7s ease-in-out;
    opacity: 0;
}

.video-bg {
    transition: all 0.7s ease-in-out;
    display: none;
}

.grid-item:hover .grid-item-title {
    transition: all 0.7s ease-in-out;
    opacity: 0 !important;
}

.grid-item:hover .layout-item img {
    display: none;
}

.grid-item:hover .video-bg {
    display: block;
}

.service-item-inner-video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 70% 25px 130px 25px;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, .7) 100%);
    border-radius: 9px;
    transition: all 0.7s ease-in-out;
    margin: 14.1px;
}

.layout-item img {

    transition: all 0.7s ease-in-out;
}

.service-content-video {
    transition: all 0.7s ease-in-out;
}

.service-content-video p {
    color: white;
    font-size: 12px;
    text-align: center;
    transition: all 0.7s ease-in-out;
}

.service-btn {
    background-color: transparent;
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #eee;
    transition: all 0.5s ease-in-out;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 50%;
}

.service-btn:hover {
    background-color: white;
    color: black;
}

.iletisim-title {
    color: #fff;
    font-size: 20px;
}

.iletisim-text {
    text-align: center;
    color: #c0c0c0;
    font-size: 13px;
    padding-bottom: 20px;
}

label {
    color: #dfdbdb;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 10px;
    border-radius: 7.5px;
    border: 1px solid hsl(0 0% 100% / .1);
    background: transparent;
    color: white !important;
    outline: none;

}

.ik-file {
    width: 100%;
    padding: 12px 10px;
    border-radius: 7.5px;
    border: 1px solid hsl(0 0% 100% / .1);
    background: transparent !important;
    color: #c0c0c0 !important;
    outline: none;
    text-align: center;
    font-weight: 400;
}

.ik-file:hover {
    cursor: pointer;
    border: 1px dashed hsl(0 0% 100% / .3);
}

option {
    color: black;
    border: 1px solid hsl(0 0% 100% / .1);
    background: white;
}

input::placeholder,
textarea::placeholder {
    color: #c0c0c0;
}

textarea:focus,
textarea:active,
input:focus,
input:active {
    border: 1px dashed hsl(0 0% 100% / .3);
}

.iletisim-btn {
    background-color: transparent;
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid hsl(0 0% 100% / .2);
    transition: all 0.5s ease-in-out;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: grid;
    width: 35%;
}

.iletisim-btn:hover {
    background-color: white;
    color: black !important;
}

.form-solid {
    padding: 30px 0px;
    border: 1px solid hsl(0 0% 100% / .1);
    border-radius: 7px;
}

.accordion {
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: all 0.5s ease-in-out;
    border-radius: 7px;
    border: 1px solid hsl(0 0% 100% / .1);
}

.active,
.accordion:hover {
    background-color: transparent;
    transition: all 0.5s ease-in-out;
    border: 1px dashed hsl(0 0% 100% / .3);
}

.panel {
    padding: 15px 18px;
    display: none;
    background-color: transparent !important;
    border: 1px dashed hsl(0 0% 100% / .3) !important;
    overflow: hidden;
    color: white;
    transition: all 0.5s ease-in-out;
}

.site-map-text {
    color: white;
}

.site-map {
    padding-left: 0px;
}

.site-map li {
    text-decoration: none;
    list-style-type: none;
}

.site-map li a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 15px;
}

.site-map li a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.7s ease-in-out;
}

/* effect-shine */
.site-map li a:hover {
    -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, 0.6) 30%, #ffe400 50%, rgba(0, 0, 0, .6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}

.konum {
    width: 100%;
    height: 100%;
    border-radius: 9px;
    padding: 20px;
    border: 1px solid rgb(238 238 238 / 25%);
    transition: all 0.7s ease-in-out;
    width: 100%;
    height: 500px;
}

.konum:hover {
    cursor: pointer;
    border: 1px dashed rgb(238 238 238 / 25%);
}

.diller {
    display: flex;
    position: absolute;
    padding-left: 10px;
}

.diller li {
    list-style: none;
}

.diller li a img {
    width: 35px;
    height: 35px;
    margin: 0 5px;
}

.sosyal-medya {
    display: flex;
    position: absolute;
    padding-right: 0px;
}

.sosyal-medya li {
    list-style: none;
}

.sosyal-medya li a {
    width: 35px;
    height: 35px;
    background-color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    margin: 0 5px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
}

.sosyal-medya li a .icon {
    position: relative;
    color: #262626;
    transition: .5s;
    z-index: 3;
}

.sosyal-medya li a:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
}

.sosyal-medya li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
}

.sosyal-medya li a:hover:before {
    top: 0;
}

.sosyal-medya li:nth-child(1) a:before {
    background: #3b5999;
}

.sosyal-medya li:nth-child(2) a:before {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.sosyal-medya li:nth-child(3) a:before {
    background: #FF0000;
}