:root{
    --color1:#efa142;
    --color2:#333333;
    --color3:#202327;
}
*{
    box-sizing: border-box;
    font-family: 'Oswald';
    outline: none !important; 
}
.maxWidth{
    max-width: 1530px;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color2);
}
::-webkit-scrollbar-thumb {
    background:var(--color1);
}
::-webkit-scrollbar-thumb:hover {
    background:var(--color1);
}
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background:var(--color2);
    z-index: 999;
    transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:var(--color1);
    animation: spin 2s linear infinite;
    z-index: 1001;
}
#loader:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:before, #loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:var(--color1);
}
#loader:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}.scrollup {
    width:60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color:var(--color1);
    border: 1px solid transparent;
    z-index: 222;
    }
    @keyframes scale2 {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    } 
.scrollup > i {
    color: white !important;
}
.mobile-sticky{
    width: 100%; 
    position: fixed;
    z-index: 741;
    background-color:var(--color2);
    top: 0px !important;
    animation: slideDown 0.35s ease-out;
}
.mobil-hamburger-menu-btn{
    position: absolute;
    right: 10px;
    top: 50px;
    font-size: 30px;
    > i{
        color: var(--color1) !important;
    }
}
.offcanvas{
    z-index:99999;
    background-color:var(--color2) !important;
}
.btnClose{
    background-color: transparent !important;
    padding: 2rem;
    border: none !important;
    font-size: 30px;
    margin-left: 18rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    >i {
        color: white !important;
        font-size: 30px;
    }
}
.mobil-menu{
    background-color:var(--color2);
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    padding-bottom: .3rem;
    padding-top: .3rem;
}
.mobile-sticky{
    width: 100%; 
    position: fixed;
    z-index: 741;
    background-color:var(--color2);
    top: 0px !important;
    animation: slideDown 0.35s ease-out;
}
.offcanvas-social-media > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    padding-top: 0rem;
    margin-left: -2rem;
}
.offcanvas-social-media > ul > li{
    padding-right: 2rem;
}
.offcanvas-social-media > ul > li > a > i{
    color: var(--color1) !important;
    font-size: 20px;
}
.offcanvas-header{
   padding:0rem !important;
}
.offcanvas-body {
    scrollbar-color:#f0f0f0  #f0f0f0;
    scrollbar-width: thin;
}
.offcanvas-body::-webkit-scrollbar {
    width: 8px;
}
.offcanvas-body::-webkit-scrollbar-thumb {
    background-color: var(--color2); 
    border-radius: 10px; 
}
.offcanvas-body::-webkit-scrollbar-track {
    background-color: #f0f0f0; 
}
.offcanvas-site-logo > a > img{
    filter: brightness(0) invert(1);
}
.accordion {
    width: 100%;
    max-width: 360px;
    background: transparent;
    border-radius: 4px;
    list-style-type: none;
    margin-left: -2rem;
    > li {
        padding-bottom: .5rem;
    }
    > .menu-item {
       padding-bottom: 1rem;
    }
    > .menu-item > a{
        color: white !important;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 18px;
    }
}
.accordion-submenu{
    display: none;
    margin-left: .5rem;
    margin-top: 1rem;
    list-style-type: none;
    >li{
        padding-bottom: 1rem;
    }
    > li > a{
    font-size: 16px;
    color: var(--color1) !important;
    padding: 7px 15px;
    padding-left: 10px;
    text-decoration: none;
    font-weight: 400;
    }
}
.accordion .link {
   cursor: pointer;
   display: block;
   padding: 0px 15px 15px 42px;
   color:white !important;
   font-size: 20px;
   font-weight: 600;
   position: relative;
   transition: all 0.4s ease;
   text-decoration: none;
   text-transform: uppercase;
}
.accordion li:last-child .link {
   border-bottom: 0;
}
.accordion li i {
   position: absolute;
   top: 16px;
   left: 12px;
   font-size: 18px;
   color: #595959;
   transition: all 0.4s ease;
}
.accordion li i.fa-chevron-down {
    right: -70px;
    left: auto;
    font-size: 18px;
    top: 5px;
    background-color: white !important;
    color: var(--color1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    padding: .7rem;
    top: -20px;
}
.accordion li.open .link {
   color: white;
}
.accordion li.open i {
    color: var(--color1);
}
.accordion li.open i.fa-chevron-down {
   transform: rotate(180deg);
}
.mobil-web-site-logo{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.mobil-web-site-logo > a > img{
    width: 100px;
}
.stickyHeader{
    width: 100%; 
    position: fixed;
    z-index: 741;
    top: 0px !important;
    animation: slideDown 0.35s ease-out;
    background-color: var(--color1);
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.site-navigation{
    background-color: var(--color2);
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.site-navigation-logo{
    background-color: var(--color2);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 1rem;
}
.site-navigation-logo > a > img{
    width: 150px;
}
.site-navigation-menu{
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
    padding-top: 3.5rem;
}
.site-navigation-menu > li {
    padding-right: 2rem;
}
.site-navigation-menu > li > a{
    color: white;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    padding: 58px 0px;
    &::after{
        content: "";
        display: block;
        height: 4px;
        background:var(--color1);
        width: 0;
        transition: width 1s;
        position: relative;
        bottom: -5px;
    }
    &:hover::after{
        width: 50%;
    }
}
.site-navigation-language-menu{
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    list-style-type: none;
    padding-top: 3.5rem;
}
.site-navigation-language-menu > li {
    padding-right: .7rem;
}
.site-navigation-language-menu > li > a > img{
    width: 25px;
}
/******************/

#owl-slider > .owl-dots{
    display: none;
}
#owl-slider > .owl-nav{
    display: block;
    position: absolute;
    bottom: 250px;
    left: 195px;
}
#owl-slider > .owl-nav > .owl-prev{
    background-color: var(--color1);
    color: white;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
#owl-slider > .owl-nav > .owl-next{
    background-color: var(--color1);
    color: white;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.slider-img{
    position: relative;
    &::before{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        background-image: -webkit-gradient(linear, right top, left bottom, from(#fff));
        background-image: linear-gradient(to left bottom, #fff);
        width: 100%;
        height: 100%;
        opacity: .9;
    } 
}
.slider-wraper{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
    overflow: hidden;
}
.slider-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
}
.slider-cover{
    width: 100%;
    height: 60px;
    position: absolute;
    right: -300px;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.slide-cover > img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.slider-content{
    position: absolute;
    top: 250px;
    left: -95px;
}
.slider-title > h3{
    color: var(--color2);
    font-size: 70px;
    font-weight: 900;
}
.slider-description > p {
    color: var(--color2);
    font-size: 20px;
    font-weight: 400;
    padding-top: 1rem;
}
#mobil-slider > .owl-dots{
    display: none !important;
}
#mobil-slider > .owl-nav{
    display: block;
    position: absolute;
    bottom: 20px;
    left: 0px;
}
#mobil-slider > .owl-nav > .owl-prev{
    background-color: var(--color1);
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
#mobil-slider > .owl-nav > .owl-next{
    background-color: var(--color1);
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.mobil-slider-img{
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: .3;
    }
    > img{
        object-fit: cover;
        height: 100vh;
        width: 100vh;
    }
}
.about-us{
    padding-top: 10rem;
    padding-bottom: 7rem;
    background: url("../images/about-us/download.png");
    background-position: 50% 50% !important;
    background-size: cover !important;
}
.about-us-title > h1{
    color: var(--color1);
    font-size: 50px;
    font-weight: 900;
    padding-bottom: 1rem;
}
.about-us-description > p {
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
}
.about-us-img{
    overflow: hidden;
}
.about-us-img > img {
    margin-right: 1rem;
    transform: scale(1);
    transition: transform .5s;
}
.about-us-img > img:hover {
    transform: scale(1.05);
}
.about-us-btn{
    margin-top: 3rem;
}
.about-us-btn > a{
    border: 1px solid var(--color2);
    border: 1px solid var(--color2);
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: .5rem;
    padding-bottom:.5rem;
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
    text-transform: none !important;
    text-decoration: none;
    &:hover{
        background-color: #333333;
        color: white;
        transition: .5s all;
    }
}
.about-us-counter > ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.about-us-counter > ul > li{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d2d0d0;
    width: 100%;
    transform: scale(1);
    &:hover{
        transform: scale(1.05);
        transition: .5s all;
    }
}
.about-us-counter > ul > li > strong{
     color: var(--color1);
     font-size: 40px;
     font-weight: 900;
}
.about-us-counter > ul > li > span{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
    padding-top: 1rem;
}
.services{
    background-color: #EFF0F2;
    padding-top: 7rem;
    padding-bottom: 3rem;
}
.section-services-title > h3{
    color: #333333;
    text-align: center;
    font-size: 50px;
    font-weight: 900;
}
.section-services-text > p {
    color: #333333;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    padding-top: 1rem;
}
#owl-services{
    padding-top: 4rem;
}
.services-item > .services-img{
    width: 100%;
    height: 400px;
    >img{
        object-fit: contain;
        width: 100%;
        height: 100%;
        clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    }
}
.services-item > .services-title > h3{
    font-size: 30px;
    text-align: center;
    padding-top: 4rem;
}
.services-btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.services-btn > a {
    text-align: center;
    padding-top: 2rem;
    color: #333333;
    font-size: 18px;
    font-weight: 400;
}
#owl-services > .owl-nav{
    display: none;
}
#owl-services > .owl-dots{
    display:  block !important;
    padding-top: 3rem;
}
#owl-services .owl-item{
    opacity: .4;
}
#owl-services .owl-item.active.center{
    opacity: 1;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color2) !important;
}
.gallery{
    padding-top: 4rem;
    padding-bottom: 5rem;
}
.section-gallery-title > h3{
    text-align: center;
    color: var(--color2);
    font-size: 50px;
    font-weight: 900;
    padding-bottom: 1rem;
}
.gallery-list{
    list-style-type: none;
    padding-top: 3rem;
    > li {
        padding-top: 1.1rem;
    }
}
.gallery-list-img{
    overflow: hidden;
}
.gallery-list > li > a > .gallery-list-img > img{
    transform: scale(1);
    transition: transform .5s;
}
.gallery-list > li > a > .gallery-list-img >  img:hover{
    transform: scale(1.05);
}
.gallery-list-button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 3rem;
    >a {
        border: 1px solid var(--color2);
        border: 1px solid var(--color2);
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: .5rem;
        padding-bottom:.5rem;
        color: var(--color2);
        font-size: 18px;
        font-weight: 400;
        text-transform: none !important;
        text-decoration: none;
        &:hover{
            background-color: #333333;
            color: white;
            transition: .5s all;
        }
    }
}
.banner{
    background-position: 50% 50% !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 300px;
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: white;
        opacity: .7;
    }
}
.banner-description{
    text-align: center;
    padding-top: 6rem;
}
.banner-description > h1{
    color: var(--color3);
    font-size: 60px;
    font-weight: 600;
    z-index: 222;
    position: relative;
}
.page-content{
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.page-content-title > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
}
.page-content-description > p , strong{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
}
.contact{
    padding-top: 7rem;
    padding-bottom: 7rem;
}
.contact-adres{
    background-color: var(--color1);
    height: 700px;
    padding: 3rem;
}
.contact-adres-menu-title > h3{
    color: white;
    font-size: 60px;
    font-weight: 600;
}
.contact-adres-menu-title > h4{
    color:white;
    font-size: 25px;
    font-weight: 400;
    padding-top: 1rem;
}
.contact-adres-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    margin-left: -2rem;
    margin-top: 2rem;
}
.contact-adres-menu >  li {
    padding-top: 2rem;
}
.contact-adres-menu > li > a{
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}
.contact-adres-menu > li > a > i {
    padding-right: 1rem;
    font-size: 25px;
}
.contact-form-title > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
}
.contact-form-text > p {
    font-size: 18px;
    color: var(--color2);
    font-weight: 400;
    padding-top: 1rem;
}
.socail-media-adres-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: -2rem;
    margin-top: 3rem;
    list-style-type: none;
    > li{
        padding-right: 1rem;
        >a {
        color: white;
        font-size:25px;
        }
    }
}
form{
    padding-top: 1.3rem;
}
.form-group{
    margin-bottom: 1rem;
}
.label{
    color: var(--color2);
    font-size: 16px;
    font-weight: 400;
}
.form-control{
    height: 45px;
    border: 1px solid #ccc !important;
    border-radius:0px !important;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input[type="checkbox"]:focus,
input[type="file"]:focus,
.uneditable-input:focus {   
  border-color:var(--color2);
  box-shadow: 0 1px 1px var(--color2) inset, 0 0 8px var(--color2) !important;
  outline: 0 none;
}
.wpcf7-form-control{
    border: none;
    background-color: var(--color1);
    color: white;
    width: 170px;
    height: 40px;
    margin-top: 0rem;
}
.form-check-input:checked{
    background-color: #012E49 !important;
    border-color: #012E49 !important;
    font-size: 18px;
}
.form-check-label{
    position: relative;
    top: -47px;
    left: 25px;
}
.form-check-label > span{
    padding-top: .5rem;
    font-size: 18px;
    color: var(--color2);
    > a{
        font-size: 18px;
        color: var(--color2);
        text-decoration: none;
    }
}
textarea{
    height: 100px !important;
}
.contact-map{
    padding-bottom: 7rem;
}

.gallery-list-img{
    overflow: hidden;
}
.gallery-list-img > img{
    transform: scale(1);
    transition: transform .5s;
}
.gallery-list-img >  img:hover{
    transform: scale(1.05);
}
.services{
    padding-top: 7rem;
    padding-bottom: 4rem;
}
.services-item{
    position: relative;
}
.services-item-img{
    margin-bottom: .5rem;
}
.services-item-body{
    background-color: #F5F5F5;
    padding: 30px 20px 70px 20px;
    height: 175px;
}
.services-item-body > .title > h3{
    color: var(--color1);
    padding-bottom: .7rem;
    font-size: 30px;
    font-weight: 600;
}
.services-item-body > .text > p{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
}
.services-item-body > .link-btn{
    position: absolute;
    bottom: 20px;
}
.services-item-body > .link-btn > a{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    > img{
        position: absolute;
        top:10px;
        right: -25px;
    }
}
.services-detay{
    padding-top: 7rem;
    padding-bottom: 7rem;
}
.prices{
    padding-top: 0rem;
    padding-bottom: 7rem;
}
.prices-item{
    padding: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 15px;
    height: 1050px;
}
.prices-item:hover{
    background-color: var(--color1);
    transition: .3s ease;
}
.prices-item:hover > .prices-item-header >h3{
    color: white;
}
.prices-item:hover > .prices-item-body > ul > li {
    color: white;
}
.prices-item:hover > .prices-item-body > ul > li > i {
    background-color: white;
    color: var(--color1);
}
.prices-item:hover > .prices-item-footer > a{
    color: var(--color1);
    background-color: white;
} 
.prices-item-header > h3{
    color: var(--color1);
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 2rem;
    padding-top: 1rem;
}
.prices-item-body > ul {
    list-style-type: none; 
    margin-left: -1.8rem;
}
.prices-item-body > ul > li{
    font-size: 18px;
    color: var(--color2);
    font-weight: 400;
}
.prices-item-body > ul > li > i{
    background-color: var(--color1);
    color: white;
    margin-right: .5rem;
    padding: .4rem;
    margin-bottom: 1rem;
    border-radius: 40px;
    font-size: 16px;
}
.prices-item-footer{
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 1rem;
}
.prices-item-footer > a {
    color: white;
    background-color: var(--color1);
    padding-right:5rem;
    padding-left: 5rem;
    padding-bottom: .6rem;
    padding-top: .6rem;
    font-size: 20px;
    font-weight: 400;
    border-radius: 10px;
    text-decoration: none;
}
footer{
    position: relative;
    color: #fff;
    background: var(--color2);
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    padding-bottom: 3rem;
}
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: rgb(19, 19, 19);
    z-index: -1;
}
.footer-web-site-logo > a > img{
    width: 175px;
    margin-left: -1rem;
}

.footer-contact-menu > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    margin-left: -2rem;
}
.footer-contact-menu > ul > li {
    padding-top: 1rem;
    font-size: 20px;
    font-weight: 400;
    color: var(--color1);
    > span{
        color: white;
        font-size: 18px;
    }
}
.footer-contact-menu > ul > li > strong{
    color: var(--color1);
}
.footer-contact-menu > ul > li > a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}
.footer-social-media-menu > h3{
    padding-top: 2rem;
    font-size: 25px;
    font-weight: 400;
    color:white;
}
.footer-social-media-menu > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    margin-left: -2rem;
    margin-top: 2rem;
}
.footer-social-media-menu > ul > li{
    padding-right: 1rem;
}
.footer-social-media-menu > ul > li > a > i{
    color: white;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: .7rem;
    border-radius: 30px;
}
.footer-navigasyon-menu{
    padding-left: 4rem;
}
.footer-navigasyon-menu-title > h3{
    color: var(--color1);
    font-size: 30px;
    font-weight: 400;
}
.footer-navigasyon-menu > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    margin-left: -2rem;
    margin-top: 1rem;
}
.footer-navigasyon-menu > ul > li {
    padding-top: 1rem;
}
.footer-navigasyon-menu > ul > li > a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    &::after {
        content: "";
        display: block;
        height: 3px;
        background: white;
        width: 0;
        transition: width 1s;
        position: relative;
        bottom: -5px;
    } &:hover::after{
        width: 50%;
    }
}
.text-coprigyt > p{
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding-top: 1rem;
}
.text-coprigty-link > a > img{
    filter: brightness(0) invert(1);
    padding-top: 1rem;
}
.mobil-web-content{
    padding-top: 3rem;
    > p {
        font-size: 25px;
        color: white;
        font-weight: 600;
    }
}
.mobil-web-site-content{
    padding-top: 3.3rem;
    margin-left: -5.5rem;
    >p {
        color: white;
        font-size: 23px;
    }
}
.wp-phone{
    background-color: var(--color1) !important;
    width:60px;
    height: 60px;
    position: fixed;
    bottom: 90px;
    right: 20px;
    border: 1px solid transparent;
    z-index: 222;
    border-radius: 50%;
    a > i {
        color: white;
        font-size: 23px;
    }
}
.wp-button{
    background-color: #25D366 !important;
    width:60px;
    height: 60px;
    position: fixed;
    bottom: 160px;
    right: 20px;
    border: 1px solid transparent;
    z-index: 222;
    border-radius: 50%;
    a > i {
        color: white;
        font-size: 23px;
    }  
}
.wp-adress{
    background-color: #131313 !important;
    width:60px;
    height: 60px;
    position: fixed;
    bottom: 230px;
    right: 20px;
    border: 1px solid transparent;
    z-index: 222;
    border-radius: 50%;
    a > i {
        color: white;
        font-size: 23px;
    }
}
@keyframes scale2 {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
}
.slider-video {
    position: relative !important;
    overflow: hidden;
    height: auto;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height:auto;
        background-color: black;
        opacity: .4;
    }
    > video{
        height: 100vh;
        object-fit: cover;
        position: relative;
        overflow: hidden;
    }
}
.slider-cover > img{
    height: 100vh;
    object-fit: cover;
}
.slider-img > img{
    height: 100vh;
    object-fit: cover;
}
.form-group > p{
    margin-bottom: 0rem !important;
}

form > .row > .form-group:nth-child(8){
    margin-top: -3rem;
}
.cookies {
    width: 25%;
    height: auto;
    background-color: rgba(60, 64, 67, 0.973);
    position: fixed;
    bottom: 0;
    display: flex;
    padding: 20px 0;
    z-index: 899;
    margin-left: 1rem;
    margin-bottom: 1rem;
}
.cookies__text {
    max-width: 103.8rem;
    width: 100%;
    color: white;
    margin: 0 20px;
} 
.cookies__buttons {
    max-width: 36.2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 20px;
}
.btn-learn__more {
    width: 10.4rem;
    height: 3rem;
    background-color: white;
    border: 1px solid var(--color1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
    border: 1px solid var(--color1);
    outline: 0;
    border-radius: 4px;
}
.btn-OK {
    width: 13.9rem;
    height: 3rem;
    background-color:var(--color1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: 0;
    outline: 0;
    border-radius: 4px;
}
@media only screen and (max-width: 768px) {
.cookies {
    flex-direction: column;
}
.cookies__buttons {
    margin-top: 2rem;
    max-width: 100%;
    justify-content: center;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}
.cookies__text {
      max-width: 90%;
      width: 100%;
      margin: 0 auto;
    }
}

@media only screen and (max-width: 375px) {
    .cookies__buttons {
      flex-direction: column;
    }
    .btn-learn__more {
      width: 100%;
      margin-right: 0;
      margin-bottom: 16px;
    }
    .btn-OK {
      width: 100%;
    }
}
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 16px;
    color: #333;
    background-color: #f0f0f0;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.pagination a:hover {
    background-color: var(--color2);
    color: #fff;
}

.pagination .current {
    background-color: var(--color1);
    color: #fff;
    font-weight: bold;
}
