:root {
    --homecontainer-width: 1640px;
    --container-width: 1440px;
    --container-out:calc(calc(100vw - var(--homecontainer-width)) / 2);
    --container-lwidth: calc(100vw -  var(--container-out));
}

* {
    font-family: 'Open Sans', sans-serif;
    outline: 0 !important;
    outline: none;
    text-decoration: none;
}

.gap {
    gap: 0 30px;
}

.pore {
    position: relative;
    overflow: hidden;
}

a,a:hover {
    text-decoration: none;
    color: #fff;
}

/* width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ec7203;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ec7203;
}

body {
    color: #262626;
}

li {
    list-style: none;
}

ul {
    margin: 0;
}

.c-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.home-page .c-container {
    max-width: var(--homecontainer-width);
}

.cl-container {
    width: 100%;
    max-width:  var( --container-lwidth);
  
    margin-left: var( --container-out);
}

.home-page {
    width: calc(100% - 96px);
    position: relative;
}

.right-menu {
    display: flex;
    height: 100vh;
    right: 0;
    top: 0;
    position: fixed;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1px;
    width: 96px;
    z-index: 9;
}

.right-menu li {
    background: #009FDC;
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.right-menu li.active {
    background: #009fdca6;
}

.right-menu li .d {
    position: absolute;
    white-space: nowrap;
    right: 96px;
    background: #009fdca6;
    transition: all .5s;
    z-index: -1;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: 'Open Sans';
    width: 0;
    opacity: 0;
}

.right-menu li:hover .d {
    right: 96px;
    width: initial;
    padding: 0 60px;
    opacity: 1;
}

.right-menu li:hover {
    background: #009fdca6;
}

header {
    width: 100%;
    position: fixed;
    z-index: 8;
    height: 10vh;
    background: rgb(0 159 220 / 30%);
    display: flex;
    align-items: center;
}

header.header {
    width: 100%;
    position: absolute;
    z-index: 8;
    padding-top: 0px;
}

header .logo-text p {
    margin: 0;
    margin-left: 158px;
    color: #707070;
    font-size: 14px;
    font-weight: 300;
}

header .logo img {
    height: 74px;
}

header .search {
    margin-right: 36px;
    cursor: pointer;
}

header .menu-show li {
    padding-bottom: 0;
    padding: 24px 0;
}

header .lang {
    position: relative;
    margin: 0 0px;
    border-radius: 50px;
}

header .lang a.block {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9E9E9E;
    position: relative;
    z-index: 9;
    /* border: 2px solid #fff; */
    gap: 10px;
    padding: 6px 21px;
    border-radius: 50px;
}

header .lang a.block span {
    color: #fff;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    margin-right: 5px;
    font-family: 'Open Sans';
}

header .lang a.block i {
    color: #fff;
    font-size: 14px;
    margin-left: 1px;
}

header .lang:hover a.block span i {
    transform: rotate(180deg)
}

header .lang a.block span i {
    margin-top: 0px;
    color: #fff;
    font-size: 13px;
    display: block;
    margin-left: 7px;
}

header .drop-lang {
    transition: all .5s;
    position: absolute;
    top: 21px;
    left: 12px;
    padding: 32px 0px 12px;
    background: #ffffff6b;
    visibility: hidden;
    text-align: center;
    z-index: 8;
    width: 42px;
    border-radius: 16px;
}

header .lang:hover .drop-lang {
    visibility: visible;
}

header .lang .drop-lang li {
    margin-bottom: 10px;
    padding: 8px;
}

header .lang .drop-lang li:last-child {
    margin-bottom: 0px;
}

header .drop-lang span {
    margin-top: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 0px;
    font-family: 'Open Sans';
}

header .drop-lang li:hover span {
    color: #ffffffb8;
}

header .menu li {
    position: relative;
    margin: 0 35px;
    padding: 10px 0;
}

header .menu li:first-child {
    margin-left: 0
}

header .menu li:last-child {
    margin-right: 0
}

header .menu li:first-child a {
    color: #E71984
}

header .menu li .dropdown {
    position: absolute;
    top: 75px;
    left: 0;
    padding: 30px 80px 30px 30px;
    background: #fff;
    display: none;
}

header .menu li:hover .dropdown {
    display: block;
}

header .menu li .dropdown li {
    padding-left: 0;
    margin-left: 0;
    padding: 7px 0;
}

header .menu li .dropdown li a {
    padding-left: 0;
    margin-left: 0;
}

header .menu li .dropdown li a span {
    white-space: nowrap;
    text-align: left;
    margin-left: 8px;
    position: relative;
    left: 0;
    transition: all .5s;
    color: #75787A;
}

header .menu li .dropdown li:hover a span {
    color: #A6A8A9;
    left: 15px;
}

header .menu li a {
    color: #262626;
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
    padding: 16px 0px;
    border: 1px solid transparent;
    border-radius: 50px;
}

header .menu .dropdown li a {
    color: #262626;
    font-size: 16px;
}

header .menu li a i {
    color: #000;
    font-size: 10px;
    margin-left: 5px;
}

header .menu li a:hover,header .menu li a:hover i {
    color: #009FDC;
}

header .menu li .dropdown a i {
    color: #75787A;
    font-size: 10px;
    margin-left: 5px;
}

header .link a {
    margin-left: 44px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

header .link a,header .link li {
    color: #75787A;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 39px;
}

header .link i {
    color: #75787A;
    margin-left: 5px;
    margin-top: 5px;
    font-size: 10px;
}

header .link a i {
    color: #75787A;
    margin-left: 5px;
    margin-top: 5px;
}

header .link li:hover i {
    color: #262554
}

header .link li {
    position: relative;
    padding-bottom: 15px;
    padding-top: 15px;
}

header .link li:hover {
    color: #262554
}

header .link li .dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    padding: 30px 80px 30px 30px;
    border: 1px solid rgb(166 168 169 / 50%);
    border-radius: 10px;
    background: #fff;
    display: none;
}

header .link li:hover .dropdown {
    display: block;
}

header .link li .dropdown li {
    padding-left: 0;
    margin-left: 0;
    padding: 7px 0;
}

header .link li .dropdown li a {
    padding-left: 0;
    margin-left: 0;
}

header .link li .dropdown li a span {
    white-space: nowrap;
    text-align: left;
    margin-left: 8px;
    left: 0;
    position: relative;
    transition: all .5s;
}

header .link li .dropdown li:hover a span {
    color: #A6A8A9;
    left: 15px;
}

/*menu*/
.openmenu {
    min-height: 100vh;
    background: #009FDC;
    width: 100%;
    position: fixed;
    top: -100vh;
    z-index: 100;
    transition: all .5s;
    display: block;
    overflow: auto;
}

.openmenu .flexd {
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    padding: 75px 0 15px;
    height: 100vh;
}

.openmenu h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 300;
}

.openmenu .search {
    margin-right: 36px;
    cursor: pointer;
}

.openmenu .search img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.openmenu .lang {
    position: relative;
    margin: 0 32px 0 36px;
    padding: 0px;
    border-radius: 50px;
}

.openmenu .lang a.block {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9E9E9E;
    position: relative;
    z-index: 9;
}

.openmenu .lang a.block span {
    color: #fff;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-right: 10px;
}

.openmenu .lang a.block i {
    color: #fff;
    font-size: 10px;
    margin-left: 9px;
}

.openmenu .lang:hover a.block span i {
    transform: rotate(180deg)
}

.openmenu .lang a.block span i {
    margin-top: 0px;
    color: #fff;
    font-size: 13px;
    display: block;
    margin-left: 7px;
}

.openmenu .drop-lang {
    transition: all .5s;
    position: absolute;
    top: 100%;
    left: -45px;
    padding: 27px 23px 15px;
    background: #fff;
    visibility: hidden;
    text-align: center;
    z-index: 8;
}

.openmenu .lang:hover .drop-lang {
    background: #fff;
    visibility: visible;
}

.openmenu .lang .drop-lang li {
    margin-bottom: 10px;
}

.openmenu .lang .drop-lang li:last-child {
    margin-bottom: 8px;
}

.openmenu .drop-lang span {
    margin-top: 5px;
    color: #262626;
    font-size: 16px;
    font-weight: 500;
    margin-left: 14px
}

.openmenu .drop-lang li:hover span {
    color: #262554;
}

.openmenu .close {
    min-width: 32px;
    cursor: pointer;
    margin-left: 0px;
    position: relative;
    padding: 11px 0;
    margin-right: 0;
    width: 72px;
    background: #1d70b6;
    border-radius: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 31px;
}

.openmenu .title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 23px;
    margin-top: 50px;
    border-bottom: 1px solid #ffffff7a;
    padding-bottom: 15px;
    font-family: 'Bebas Neue';
}

.openmenu .navs-link:hover .title {
    border-bottom: 1px solid #fff;
}

.openmenu .link {
    padding-left: 0;
}

.openmenu .link li {
    margin-bottom: 10px;
    position: relative;
    left: 0;
    transition: all .5s;
}

.openmenu .link li a {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
}

.openmenu .link li:hover a {
    left: 10px;
}

.openmenu .link li a:hover {
    color: #CBCBCB;
}

.openmenu .link.footer-product {
    columns: 2;
}

.openmenu .bottom {
    border-top: 1px solid #ffffff7a;
    padding-top: 30px;
}

.openmenu .bottom a {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 14px;
    color: #fff;
    margin-right: 50px;
}

.openmenu .bottom a:hover {
    color: #fff;
}

.openmenu .bottom a span {
    margin-left: 7px;
    position: relative;
    transition: all .5s;
    left: 0;
}

.openmenu .bottom a:hover span {
    left: 10px;
}

.openmenu .social a {
    margin-right: 0px;
}

.openmenu .bottom p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.openmenu .social a i {
    font-size: 28px;
    color: #fff;
    position: relative;
    top: 0;
    transition: all .5s;
}

.openmenu .social a:hover i {
    top: -5px;
}

.search-open {
    background: #009FDC;
    width: 100%;
    position: fixed;
    top: -50vh;
    z-index: 100;
    transition: all .5s;
    padding-bottom: 36px;
}

.search-content {
    padding: 48px 0 28px;
    border-bottom: 1px solid #ffffff61;
}

/*menu end*/
.search-open .input {
    width: 100%;
    display: flex;
    align-items: center;
}

.search-open .input input {
    background: transparent;
    border: none;
    color: #fff;
    width: 90%;
    margin-left: 57px;
    font-size: 32px;
    font-weight: 300;
}

.search-open .input input::placeholder {
    color: #fff;
}

.search-open .search-close {
    min-width: 32px;
    cursor: pointer;
    margin-left: 0px;
    position: relative;
    padding: 11px 0;
    margin-right: 0;
    width: 72px;
    background: #1d70b6;
    border-radius: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 31px;
}

.search-open img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.slider {
    position: relative;
    overflow: hidden;
    background: #F8F8F8;
}

.slider picture img {
    height: 100vh;
    width: 100%;
    object-position: bottom;
    object-fit: cover;
    max-width: 100%;
}

.slider .item {
    position: relative;
}

.slider .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    padding-top: 0;
    bottom: 0;
    text-align: center;
}

.slider .content p {
    font-size: 200px;
    line-height: 9vw;
    color: #ffffff;
    font-weight: 400;
    margin-top: 0;
    font-family: 'Bebas Neue';
}

.page-down {
    position: absolute;
    bottom: 55px;
    cursor: pointer;
    z-index: 9;
}

.page-down span {
    transform: rotate(270deg);
    display: inline-block;
    margin-bottom: 52px;
    height: 34px;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

.arrows li {
    background: #ffffff30;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.arrows .next {
    position: absolute;
    right: 100px;
    bottom: 50%;
    z-index: 15
}

.arrows .prev {
    position: absolute;
    left: 100px;
    bottom: 50%;
    z-index: 15
}

.arrows li:hover {
    background: #E71984;
}

.arrows i {
    font-size: 21px;
    color: #fff;
}

.arrows li:hover i {
    color: #fff;
}

.whatsapp {
    position: fixed;
    bottom: 60px;
    right: 5%;
    z-index: 5;
}

.menu-btn {
    min-width: 32px;
    cursor: pointer;
    display: block;
    margin-left: 36px;
    position: relative;
    padding: 11px 0;
    margin-right: 0;
    background: #009fdc;
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn span {
    position: relative;
    content: " ";
    background: #262626;
    width: 32px;
    height: 3px;
    display: block;
    margin-bottom: 5px;
    transition: all .5s ease-in-out;
    cursor: pointer;
    border-radius: 5px;
    float: right;
}

.menu-btn span:nth-child(2) {
    width: 17px;
}

.menu-btn span:nth-child(3) {
    width: 25px;
}

.menu-btn.menu-btn-2 {
    margin-left: 0;
    max-width: inherit;
    padding: 0;
    margin-right: initial;
}

.slider .slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slick-slider-dots .slick-dots {
    position: initial;
    margin-left: 0;
    margin-bottom: 10px;
}

.slick-slider-dots .slick-dots li button:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 20px;
    opacity: 1;
}

.slick-slider-dots .slick-dots li.slick-active button:before {
    opacity: 1;
    border: 1px solid #ffffff;
    background: #ffffff;
}

.slider .pagescrool img {
    margin-right: 13px;
}

.slider .pagescrool {
    font-size: 16px;
    font-weight: 300;
    color: #009FDC;
}

footer {
    background: #07375f;
    padding: 113px 0 0;
    color: #fff;
}

footer a {
    color: #fff;
}

footer ul {
    padding-left: 0;
}

footer .logo img {
    height: 90px;
}

footer .adres {
    max-width: 17rem;
}

footer .bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: 63px;
    padding: 32px 0 40px;
    border-top: 1px solid #ffffff61;
}

footer .bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: #CECECE;
}

footer .bottom a {
    margin-bottom: 0;
    font-size: 14px;
    color: #CECECE;
}

footer .bottom a:hover {
    color: #fff;
}

footer .bottom ul {
    gap: 35px;
}

.footer-contact a {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-contact a span {
    margin-left: 7px;
    position: relative;
    transition: all .5s;
    left: 0;
}

.footer-contact a:hover span {
    left: 10px;
}

footer h5 {
    margin-bottom: 55px;
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    line-height: 24px;
}

footer .title {
    color: #CECECE;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

footer .footer-link li {
    margin-bottom: 16px;
    position: relative;
    left: 0;
    transition: all .5s;
}

footer .footer-link li:hover {
    left: 10px;
}

footer .footer-link li a {
    color: #fff;
    font-size: 14px;
    line-height: 18px;
}

footer .footer-link li a:hover {
    color: #fff;
}

footer .footer-link.footer-product {
    /* columns: 2; */
}

footer .sosyal p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 53px;
}

footer .sosyal p span {
    width: 11.6rem;
    float: right;
}

footer .sosyal a i {
    font-size: 32px;
    color: #fff;
    position: relative;
    top: 0;
    transition: all .5s;
}

footer .sosyal a:hover i {
    top: -5px;
}

footer .lang {
    position: relative;
    margin: 0 0;
    padding: 0px;
    border-radius: 50px;
    margin-bottom: 15px;
}

footer .lang a.block {
    display: flex;
    align-items: center;
    justify-content: end;
    color: #9E9E9E;
    position: relative;
    z-index: 9;
}

footer .lang a.block span {
    color: #fff;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-left: 12px;
    margin-right: 8px;
}

footer .lang a.block i {
    color: #fff;
    font-size: 10px;
}

footer .lang:hover a.block span i {
    transform: rotate(180deg)
}

footer .lang a.block span i {
    margin-top: 0px;
    color: #fff;
    font-size: 13px;
    display: block;
    margin-left: 7px;
}

footer .drop-lang {
    transition: all .5s;
    position: absolute;
    bottom: 30px;
    right: 0;
    padding: 23px 23px 23px;
    background: #fff;
    visibility: hidden;
    text-align: center;
    z-index: 8;
}

footer .lang:hover .drop-lang {
    background: #fff;
    visibility: visible;
}

footer .lang .drop-lang li {
    margin-bottom: 10px;
}

footer .lang .drop-lang li:last-child {
    margin-bottom: 8px;
}

footer .drop-lang span {
    margin-top: 5px;
    color: #262626;
    font-size: 16px;
    font-weight: 500;
    margin-left: 14px
}

footer .drop-lang li:hover span {
    color: #262554;
}

footer .sosyal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 15px;
}

.banner {
    height: 480px;
}

.site-btn {
    background: #009FDC;
    color: #fff;
    padding: 19px 31px 17px 30px;
    font-size: 16px;
    position: relative;
    display: inline-block;
    margin-top: 10px;
    min-width: 130px;
}

.site-btn:before {
    content: '';
    background: #1d70b6;
    height: 100%;
    width: 12px;
    position: absolute;
    right: 0px;
    top: 0;
    transform: skewX(339deg);
    transition: 300ms;
}

.site-btn:after {
    content: '';
    background: #ec7203;
    height: 100%;
    width: 10px;
    position: absolute;
    right: -10px;
    top: 0;
    transform: skewX(339deg);
    transition: 300ms;
}

header .menu-show .ajax-search {
    position: relative;
}

header .menu-show .ajax-search #myList {
    position: absolute;
    width: 100%;
    max-height: 56vh;
    overflow: auto;
    z-index: 25;
    background: #009fdc;
    padding: 0px 10px;
    margin-top: 25px;
}
header .menu-show .ajax-search #myList li {border-bottom: 1px solid #ffffff73;padding: 5px 0;}

header .menu-show .ajax-input {
    border: 2px solid #fff;
    height: 43px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 10px;
    width: 19vw;
}

.ajax-input {
}

header .menu-show .ajax-search input {
    background: transparent;
    border: none;
    margin-left: 15px;
    color: #fff;
    font-size: 18px;
}

header .menu-show .ajax-search input::placeholder {
    color: #fff;
    font-family: 'Open Sans'
}

header .menu-show .b2b {
    border: 2px solid #fff;
    height: 43px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 20px 10px;
}
header .menu-show .b2b a {
  
    display: flex;
    align-items: center;
  
}
header .menu-show .b2b span {
    color: #fff;
    margin-left: 8px;
    font-size: 20px;
    line-height: 27px;
    font-weight: 600;
}

.explore {
    position: absolute;
    bottom: 15px;
    left: 0;
    color: #fff;
    flex-direction: column;
    gap: 8px;
    width: 90px;
    margin: 0 auto;
    text-align: center;
    right: 0;
}

@keyframes MoveUpDown {
    0 {
        top: 0px;
    }

    20% {
        top: 2px;
    }

    40% {
        top: 6px;
    }

    60% {
        top: 4px;
    }

    80% {
        top: 2px;
    }

    100% {
        top: 0px;
    }
}

.homepage {
    height: 100vh;
}

.explore img {
    animation: MoveUpDown 2s ease-in infinite;
    position: relative;
}

.homepage img.bg {
    height: 100vh;
    object-fit: cover;
    width: 100%;
}

.homepage .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    padding-top: 0;
    bottom: 0;
    text-align: center;
    left: 0;
}

.homepage .content h3 {
    font-size: 200px;
    line-height: 9vw;
    color: #ffffff;
    font-weight: 400;
    margin-top: 0;
    font-family: 'Bebas Neue';
    width: 34rem;
    text-align: center;
    margin: 0 auto;
}

.homepage .content p {
    font-size: 30px;
    line-height: 40px;
    color: #ffffff;
    font-weight: 400;
    margin-top: 0;
    width: 47vw;
    text-align: center;
    margin: 0 auto;
    text-shadow: 1px 1px black;
}

#home-tree .content {
    text-align: left
}

#home-tree .content p {
    color: #000;
    width: initial;
    text-align: left;
    justify-content: start;
}

#home-four .content h3 {
    width: 100%;
    text-align: left;
    font-size: 80px;
    line-height: 70px;
}

#home-four .content p {
    color: #ffffffcf;
    width: 47%;
    text-align: left;
    text-align: left;
    display: flex;
    align-items: start;
    margin: 0;
    line-height: 35px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#home-four .content {
    text-align: left
}

#home-five {
    background: #cccccc;
}

#home-five .content {
    text-align: left;
    top: 6%;
}

#home-five .content h3 {
    color: #000;
    width: 100%;
    text-align: left;
    font-size: 59px;
    line-height: 63px;
    width: 28rem;
    margin: 0;
}

#home-five .content p {
    color: #000;
    width: 77%;
    text-align: left;
    justify-content: start;
    margin: 10px 0;
    font-size: 24px;
    line-height: 29px;
    text-shadow: 0 0 black;
}

.number {
    display: flex;
    margin-top: 0;
    gap: 1px;
    margin-bottom: 71px;
}

.number .item {
    background: #808080;
    min-height: 164px;
    padding: 40px 3px 40px 18px;
    color: #fff;
    display: flex;
    align-items: start;
    gap: 15px;
    min-width: 20%;
}

.number .item span {
    font-family: 'Bebas Neue';
    font-size: 72px;
    line-height: 72px;
    width: 85px;
}

.number .item h5 {
    font-family: 'Bebas Neue';
    font-size: 36px;
    width: 200px;
    line-height: 38px;
}

.five-img {
    position: relative;
}



.active .five-img:after {
    width: 136px;
}

#home-six {
    background: #ccc;
}

#home-six.homepage .content {
    align-items: end;
    bottom: 75px;
    text-align: left;
}

#home-six .top {
    background: #ec7203;
    padding: 15px 15px 0;
    position: relative;
    bottom: -40px;
    z-index: 8;
    height: 28vh;
}

#home-six .top .date {
    font-size: 75px;
    font-family: 'Bebas Neue';
    color: #fff;
    line-height: 48px;
    width: 10rem;
	 display: flex;
    flex-direction: column;
}

#home-six .top .date span {
    font-size: 78px;
    font-family: 'Bebas Neue';
    color: #ffffff75;
    line-height: 84px;
}

#home-six .top .date span.day{font-size: 130px;
    line-height: 123px;
    color: #fff;}
#home-six .item img {
    margin: 0 auto;
    padding: 0 8%;
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

#home-six .item .site-btn {
    position: absolute;
    top: 50px;
    left: 5%;
    display: none;
}

#home-six .item:hover .site-btn {
    display: block;
}

#home-six .content p {
    font-size: 18px;
    line-height: 22px;
    color: #000;
    width: auto;
    text-align: left;
    margin: 0 auto;
    text-shadow: none;
}

#home-six .content .text {
    margin-bottom: 90px;
    width: calc(100% - 4rem);
}

#home-six .content .text h2 {
    font-size: 36px;
    line-height: 41px;
    color: #000;
    text-align: left;
    margin: 0;
    font-family: 'Bebas Neue';
    text-shadow: none;
    width: 50%;
}

#home-six h1 {
    font-family: 'Bebas Neue';
    font-size: 96px;
    line-height: 74px;
    position: relative;
    top: 40px;
}

#home-six h1 span {
    display: block;
    font-size: 228px;
    font-family: 'Bebas Neue';
    line-height: 200px;
}

#home-seven {
}

#home-seven .item {
    background: #e9e9e9a6;
    width: 100%;
    padding: 50px;
    overflow: hidden;
    position: relative;
}

#home-seven ul.left {
    padding-left: 0;
}

#home-seven ul.left li {
    height: 140px;
    width: 140px;
    background: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    border: 1px solid #009fdd52;
}

#home-seven ul.left li:hover,#home-seven ul li.active {
    background: #009fdd;
}

#home-seven ul.left li i {
    font-size: 30px;
    color: #b0b7b8;
    background: #009fdd;
    padding: 10px;
    border-radius: 5px
}

#home-seven ul.left li:hover i,#home-seven ul li.active i {
    color: #fff;
}

#home-seven .facebook-slider {
    margin-left: 120px
}

#home-seven .instagram-slider {
    margin-left: 120px
}

#home-seven .video-slider {
    margin-left: 120px
}

#home-seven .slick-list {
    padding: 0 30% 0 0 !important;
}

#home-seven .slick-slide {
    margin: 0 17px;
}

/* the parent */
#home-seven .slick-list {
    margin: 0 -17px;
}

#home-seven .slick-slide img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.facebook-slider-next {
    position: absolute;
    left: 50px;
    top: calc(50% - 31px);
    font-size: 62px;
    color: #ec7203;
}
.facebook-slider-prev {
    position: absolute;
    left: 50px;
    top: calc(50% - 31px);
    font-size: 62px;
    color: #ec7203;
      display:none !important;
}
.instagram-slider-next {
    position: absolute;
    left: 50px;
    top: calc(50% - 31px);
    font-size: 62px;
    color: #ec7203;
}
.instagram-slider-prev {
    position: absolute;
    left: 50px;
    top: calc(50% - 31px);
    font-size: 62px;
    color: #ec7203;
      display:none !important;
}
.video-slider-next {
    position: absolute;
    left: 50px;
    top: calc(50% - 31px);
    font-size: 62px;
    color: #ec7203;
}
.video-slider-prev {
    position: absolute;
    left: 50px;
    top: calc(50% - 31px);
    font-size: 62px;
    color: #ec7203;
    display:none !important;
}

#home-eight {
    background: #7b7a7a;
}

.map {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap:wrap;
    gap: 2px;
    background: #cecece;
}
.map iframe {
 width:calc(50% - 1px);
}

#contact {
    margin-bottom: 30px;
    position: relative;
    /* padding-bottom: 0; */
}

#contact:after {
    background: #313336;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}

#contact a p {
    padding: 0;
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 28px;
    text-shadow: 0 0 black;
    text-align: left;
    width: 70%;
}

#contact .link p {
    padding: 0;
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 28px;
    font-weight: 700;
}

#contact a img {
    margin-right: 20px;
}

#contact a:hover p {
    color: #fff;
}

#contact a:hover img {
    filter: brightness(0) invert(1);
}

#contact .border-after {
    position: relative;
    min-height: 130px;
}
#contact .border-after-two {
   display:flex;flex-direction:column;justify-content:center;
}
#contact .border-after-two b {
 text-align:left;
 margin-bottom: 8px;
 color: #EC7203;
 display: flex;
 width: initial;
}
#contact .border-after:after {
    content: "";
    background: #EC7203;
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

#contact .border-after:before {
    content: "";
    background: #fff;
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: all .5s;
}

#contact a:hover .border-after:before {
    width: 100%;
}

#home-nine {
    background: #000;
}

#home-nine .content h3 {
    font-size: 155px;
    line-height: 140px;
    color: #ffffff;
    font-weight: 400;
    margin-top: 0;
    font-family: 'Bebas Neue';
    width: 39rem;
    text-align: left;
    margin: 0;
}

#home-nine .content {
    align-items: end;
    bottom: 25px;
    text-align: left;
    left: 0;
}

.number.home-kvkk {
    margin-top: 8px;
}

#home-nine .content p {
    font-size: 18px;
    line-height: 40px;
    color: #ffffff;
    font-weight: 400;
    margin-top: 0;
    width: 47vw;
    text-align: left;
    margin: 0;
    text-shadow: 0 0 black;
    margin-top: 15px;
}

#home-nine .number .item {
    background: #009fdc;
    min-height: initial;
    padding: 20px 32px;
    color: #fff;
    display: flex;
    align-items: start;
    gap: 15px;
    min-width: 18%;
}

.facebook {
    display: none;
}

.instagram {
    display: none;
}

.video {
    display: none;
}

.facebook.active {
    display: block;
}

.instagram.active {
    display: block;
}

.video.active {
    display: block;
}

.play {
    position: absolute;
    bottom: 13px;
    right: 13px;
    background: #fff;
    padding: 15px 27px;
    border-radius: 10px;
    font-size: 17px;
    color: #000;
    transition: all .5s;
    transform: scale(1);
}

.slide:hover .play {
    color: #fff;
    transform: scale(1.1);
    background: #009fdd;
}

.banner {
    height: 438px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: bottom center !important;
}

.banner-gray,.bg-gray {
    background: #FFF7FB;
}

.banner .banner-content {
    height: 446px;
    display: flex;
    align-items: center;
    padding-bottom: 0;
}

.banner .banner-content p {
    font-size: 20px;
    font-weight: 300;
    color: #4E3C90;
    margin-bottom: 20px;
}

.banner .banner-content h1 {
    font-size: 60px;
    font-weight: 400;
    color: #009fdc;
    font-family: 'Bebas Neue';
}

.contact {
    margin: 115px 0 120px;
}

.contact-form span {
    font-size: 16px;
    font-weight: 400;
    color: #262626;
    position: relative;
    transition: all .5s;
    z-index: 1;
}

.contact-form .form-input.active span {
    font-size: 13px;
    font-weight: 400;
    color: #A6A8A9;
    bottom: -0px;
}

.contact-form input,.contact-form textarea {
    padding: 8px 0;
    color: #262626;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    text-shadow: none;
    height: 60px;
    font-size: 20px;
    font-weight: 500;
}

.form .buttons {
    display: inline-flex;
    justify-content: end;
    position: relative;
}

.form .button {
    display: inline-flex;
    justify-content: end;
    position: relative;
    overflow: hidden;
}

.form .button a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 25px;
}

.form .button a i {
    margin-left: 20px;
    transition: all .5s;
}



.form .c-button {
    margin-bottom: 0;
    padding: 15px 72px;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    color: #16522E;
    transition: all .5s;
    height: initial;
    opacity: 0;
    position: relative;
    z-index: 9;
}

.recaptcha input {
    margin-bottom: 0;
}

.recaptcha input::placeholder {
    font-size: 17px;
    color: #fff;
}

.captchaspan {
    display: flex;
    align-items: end;
}

.contact-form {
    margin-top: 10px;
}

.contact-form textarea {
    min-height: 19vh;
}

.contact h2 {
    color: #75787A;
    margin-bottom: 33px;
    font-size: 32px;
    font-weight: 500;
}

.contact p {
    color: #262626;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 1px;
}

.contact p.text1 {
    color: #1d70b6;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    width: 100%;
    margin-bottom: 71px;
}

.border-radius-10 {
    border-radius: 10px;
}

.recaptcha {
    border: 1px solid #dee2e6;
}

.contact img {
    margin-bottom: 30px;
}

.contact-page-one .adres {
    width: 21rem;
    font-size: 20px;
    color: #1d70b6;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 30px
}

.contact-page-one a.tels {
    display: inline-block;
    margin-bottom: 30px;
}

.contact-page-one a.tels span {
    font-size: 24px;
    color: #1d70b6;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all .5s;
    left: 0;
    position: relative;
}

.contact-page-one a.tels:hover span {
    left: 10px;
}

.contact-page-one a.tels i {
    font-size: 24px;
    color: #1d70b6;
    margin-right: 13px;
}

.contact-page-one .social {
    margin-top: 10px;
}

.contact-page-one .social a i {
    font-size: 32px;
    color: #1d70b6;
    position: relative;
    top: 0;
    transition: all .5s;
    margin-right: 0;
}
.page {
    padding: 115px 0 90px;
}
.page-news {
    margin-bottom: 60px;
}

.page-news .item {
    margin-bottom: 85px;
}

.page-news .item .pore {
    overflow: hidden;
}

.page-news .item img {
    transition: all .5s;
    transform: scale(1);
    object-fit: cover;
    width: 100%;
}

.page-news .item:hover img {
    transform: scale(1.05);
}
.page-news span {
    margin-top:20px;
    margin-bottom:20px;
    font-size: 16px;
    font-weight:300;
    font-family: 'Bebas Neue';
    color: #1d70b6;
    display:inline-block
}
.page-news h2 {
    margin-top: 0px;
    margin-bottom:20px;
    font-size:24px;
    font-weight:400;
    color: #1d70b6;
    display: block;
    line-height:30px;
    font-family: 'Bebas Neue';
}


.page-news .item a i{
  font-size:12px;
    margin-bottom:-3px;
    margin-left:30px;
}
.page-news-detail .b-bottom{margin-bottom:72px;padding-bottom: 150px;border-bottom: 1px solid #70707052;}
.page-news-detail span{
    margin-bottom:20px;
    font-size: 16px;
    font-weight:300;
    font-family: 'Bebas Neue';
    color: #1d70b6;
    display:inline-block
    }
.page-news-detail h2{
    margin-bottom: 30px;
    font-size:32px;
    font-weight:500;
    color: #1d70b6;
    line-height:40px;
    font-family: 'Bebas Neue';
    }
.page-news-detail p{
	
    font-size:20px;
    font-weight:300;
    color:#262626;
    line-height:32px;
}
.other-news {margin-bottom:130px;overflow:hidden;}
.other-news .item {
    margin-bottom: 0px;
}
.other-news .slick-list {
    padding: 0 0 0 0 !important;
}

.other-news .slick-slide {
    margin: 0 17px;
}

/* the parent */
.other-news .slick-list {
    margin: 0 -17px;
}
.other-news-slider {overflow:hidden;}
.other-news h3 {
	font-size:48px;
	font-weight:500;
	color: #1d70b6;
	line-height:54px;
	font-family: 'Bebas Neue';
}

.other-news a i{margin-left:30px;font-weight:400;}

.page-document  .item{background: rgb(78 60 144 / 10%);padding: 34px 62px;margin-bottom: 70px;}
.page-document  .item h4{
		font-size:24px;
		font-weight: 400;
		color: #1d70b6;
}
.page-document  .item h3{
		font-size:32px;
		font-weight:600;
		color: #1d70b6;
}

.page-video {
    margin: 115px 0;
}
.page-video .item {position:relative;}
.v-play {position: absolute;
    top: 0;}
.page-video .item  .v-play img{background: #1d70b6;border-radius:50px;padding:24px;transition:all .5s;transform:scale(1);}
.page-video .item:hover  .v-play img{padding:22px;}
.page-video h3{
	margin-top:30px;
	font-size:20px;
    font-weight:400;
    color:#4E3C90;
}
.page-gallery {
    padding: 115px 0;
}
.marka-gallery{margin:0 0 90px}
.marka-gallery img {
    transition: all .5s;
    transform: scale(1);
    position: relative;
}

.marka-gallery img:hover {
    transform: scale(.95);
}

.marka-gallery img {
    padding: 70px;
}
.kvkk  {padding-bottom:80px;}
.kvkk h5 {font-size:32px;margin-bottom:40px;color:#1d70b6;font-weight:500;line-height:44px;font-family:'Bebas Neue';}
.kvkk p {font-size:16px;font-weight:400;line-height:28px;}
.page-categorilist .items {
    padding: 0px ;
	  background: rgba(8, 49, 155, 1);
    background: -moz-linear-gradient( top, rgba(8, 49, 155, 1) 0%, rgba(8, 94, 213, 1) 100%);
    background: -webkit-gradient( left top, left bottom, color-stop(0%, rgba(8, 49, 155, 1)), color-stop(100%, rgba(8, 94, 213, 1)));
    background: -webkit-linear-gradient( top, rgba(8, 49, 155, 1) 0%, rgba(8, 94, 213, 1) 100%);
    background: -o-linear-gradient( top, rgba(8, 49, 155, 1) 0%, rgba(8, 94, 213, 1) 100%);
    background: -ms-linear-gradient( top, rgba(8, 49, 155, 1) 0%, rgba(8, 94, 213, 1) 100%);
    background: linear-gradient( to bottom, rgba(8, 49, 155, 1) 0%, rgba(8, 94, 213, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#08319b', endColorstr='#085ed5', GradientType=0);
	}

.page-categorilist .items .left{position:relative;flex: 0 0 auto;width: 46%;}
.page-categorilist .items .left:after{  content: "";
    background: rgba(8, 97, 217, 0.8);
    background: -moz-linear-gradient( left, rgba(8, 97, 217, 0.8) 0%, rgba(8, 49, 155, 0.8) 100%);
    background: -webkit-gradient( left top, right top, color-stop(0%, rgba(8, 97, 217, 0.8)), color-stop(100%, rgba(8, 49, 155, 0.8)));
    background: -webkit-linear-gradient( left, rgba(8, 97, 217, 0.8) 0%, rgba(8, 49, 155, 0.8) 100%);
    background: -o-linear-gradient( left, rgba(8, 97, 217, 0.8) 0%, rgba(8, 49, 155, 0.8) 100%);
    background: -ms-linear-gradient( left, rgba(8, 97, 217, 0.8) 0%, rgba(8, 49, 155, 0.8) 100%);
    background: linear-gradient( to right, rgba(8, 97, 217, 0.8) 0%, rgba(8, 49, 155, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#0861d9', endColorstr='#08319b', GradientType=1);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;}
.page-categorilist .items h4 {font-size: 33px;margin-bottom:0;position:absolute;color:#fff;left:20px;font-weight: 400;bottom:10px;z-index:2;font-family: 'Bebas Neue';}	
.page-categorilist .item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 8px;
    width: 50%;
 
}
.page-categorilist .items img{
    
width: 100%;
    
object-fit: cover;
}
.page-categorilist .item a {
    color: #fff;
    font-weight: 400;
    border-right: 1px solid #fff;
    padding-right: 5px;
    line-height: 13px;
    font-size: 14px;
}
.crm-template h2 {font-size:36px;color:#1d70b6;margin-bottom:40px;font-weight:400;font-family:'Bebas Neue'}
.crm-template p {font-size:20px;margin-bottom:40px;line-height:32px;font-weight:400;}
.crm-template .o-hidden  img{transition:all .5s;}
.crm-template  .item{padding-left:40px;}
.crm-template  .item-two{padding-left:0px; padding-right:40px;}
.crm-template  .item:hover .o-hidden  img{transform:scale(1.1)}
.news-slider  .slick-slide {
      margin: 0 15px;
  }

 .news-slider .slick-list {
      margin: 0 -15px;
  }
  header.header{
  position: inherit;
  background: #009fdc;}