:root{
    --color1:#283271;
    --color2:#CF172E;
    --color3:#333333;
    --color4:#fcfcfc;
    --color5:#DFD4D2;
    --color6: #000;
    --color7: #888;

}
*{
    box-sizing: border-box;
    font-family: 'Sofia Sans';
--bs-modal-width: 700px;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background:var(--color2);
}
::-webkit-scrollbar-thumb:hover {
    background:var(--color2);
}
#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(--color1);
    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:white;
}
#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;
}
html{
    background-color: var(--color4);
}
.maxWidth{
    max-width: 1530px;
}
.menu-navigation{
    height: 120px;
    position: fixed;
    width: 100%;
    z-index: 676;
    background-color:white;
    top: 0px;
}
.sticky{
    background-color: var(--color4);
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 666;
    border-bottom: 2px solid #ccc;
    height: 120px;
}
.web-site-logo > a > img{
    width: 180px;
    padding-top: 1rem;
}
.menu-navigation-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 3rem;
    list-style-type: none;
}
.menu-navigation-list > li > a{
    color: var(--color1);
    font-size: 22px;
    font-weight:800;
    text-decoration: none;
    text-transform: uppercase;
    padding: 58px 0px;
    &::after{
        content: "";
        display: block;
        height: 5px;
        background:var(--color2);
        width: 0;
        transition: width 1s;
        position: relative;
        bottom: -5px;
    }
    &:hover::after{
        width: 75%;
    }
}
.menu-navigation-list > li:hover > .sub-menu{
    display: block;
}
.sub-menu{
    display: none;
    position: absolute;
    margin-top: 2.5rem;
    z-index: 333;
    max-width: 50%;
    background-color: #283271;
    backdrop-filter: blur(15px);
    animation: downOut 300ms ease-in-out forwards;
    list-style-type: none;
    padding-left: 0rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);  
	    margin-right: 5rem;
}

.sub-menu > .menu-item {
	padding-bottom:.5rem;
}

.sub-menu > .menu-item > a {
	color:#283271;
	text-decoration:none;
}

.menu-navigation-list > li:nth-child(2) > .sub-menu{
        margin-left: -15rem;
}

.menu-navigation-list > li:nth-child(3) > .sub-menu{
        margin-left: -17rem;
}
.menu-navigation-list > li:nth-child(4) > .sub-menu{
        margin-left: -17rem;
}

@keyframes downOut {
    0% {
       transform: translateZ(200px) transLateY(40px)
   }
   80% {
       transform: translateZ(-10px) transLateY(0px)
   }
   100% {
       transform: translateZ(0px) transLateY(0px)
   }
}
.sub-menu-navigation{
    padding-top: 1rem;
    list-style-type: none !important;
}
.sub-menu-navigation > li{
    padding-top: 1rem;
}
.sub-menu-navigation > li > a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding-bottom: .5rem;
}
.menu-navigation-language-list{
     display: flex !important;
     flex-direction: row;
     justify-content: flex-end; 
     padding-top: 3.5rem;
     list-style-type: none;
}
.menu-navigation-language-list > li {
    padding-right: 1rem;
}
.mobile-sticky{
    width: 100%; 
    position: fixed;
    z-index: 741;
    background-color:var(--color1);
    top: 0px !important;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.35s ease-out;
}
.mobil-hamburger-menu-btn{
    position: absolute;
    right: 10px;
    top: 20px;
    font-size: 30px;
    > i{
        color: var(--color1) !important;
    }
}
.offcanvas{
    z-index:99999;
    background-color:#283271 !important;
}
.offcanvas-site-logo{
    width: 150px !important;
	> a > img{
		    filter: brightness(0) invert(1);
	}
}
.btnClose{
    background-color: transparent !important;
    padding: 2rem;
    border: none !important;
    font-size: 30px;
    margin-left: 40%;
    margin-bottom: 1rem;
    margin-top: 1rem;
    >i {
        color: white !important;
        font-size: 30px;
    }
}
.mobil-menu{
    background-color:white;
}
.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; 
}
.accordion {
    width: 100%;
    max-width: 360px;
    background: transparent;
    border-radius: 4px;
    list-style-type: none;
    margin-left: -4.7rem;
    > li {
        padding-bottom: .5rem;
    }
}
.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;
    }
}
.accordion .link {
   cursor: pointer;
   display: block;
   padding: 0px 15px 10px 42px;
   color: white !important;
   font-size: 1rem;
   font-weight: 700;
   position: relative;
   transition: all 0.4s ease;
   text-decoration: none;
   text-transform: capitalize;
}
.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: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    padding: .7rem;
	color: #283271 !important;
}
.accordion li.open .link {
   color: white!important;
}
.accordion li.open i {
    color: #283271!important;
}
.accordion li.open i.fa-chevron-down {
   transform: rotate(180deg);
}
.mobil-web-site-logo > a > img{
    width: 150px !important;
}
/********* HEADER   ***********************/
/**** HOME PAGE START *****/
#owl-slider > .owl-dots{
    display: none !important;
}
#owl-slider > .owl-nav{
    position: absolute;
    bottom: 30px;
    left:190px;
    display: block !important;
}
#owl-slider > .owl-nav > .owl-prev{
    background-color: var(--color1) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    margin-right: .5rem;
    border-radius: 50% !important;
    > i {
        font-size: 18px;
        padding: .4rem;
    }
}
#owl-slider > .owl-nav > .owl-next{
    background-color: var(--color1) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    > i {
        font-size: 18px;
        padding: .4rem;
    }
}
.slider-col{
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}
.slider-content{
    position: absolute;
    left: 190px;
    top: 350px;
}
.slider-img::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .2; 
}
.slider-img > img{
    height: 100vh;
}
.slider-content-ust-title{
    color: white;
    font-size: 90px;
    font-weight: 600;
    line-height: 1.5rem;
}
.slider-content-alt-title{
    color: white;
    font-size: 90px;
    font-weight: 600;
}
.slider-content-first-img > img{
    width: 450px !important;
    position: absolute;
    top: 130px;
    right: 10px;
    animation: move 2s infinite linear;
}
.slider-content-second-img > img{
    width: 450px !important;
    position: absolute;
    top: 170px;
    right: 250px;
    animation: move 2s infinite linear;
}
@keyframes move {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
#owl-mobil-slider > .owl-dots{
    display: none;
}
#owl-mobil-slider > .owl-nav{
    position: absolute;
    bottom: 20px;
    left:30%;
    display: block !important;
}
#owl-mobil-slider > .owl-nav > .owl-prev{
    background-color: var(--color1) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    margin-right: .5rem;
    border-radius: 50% !important;
    > i {
        font-size: 18px;
        padding: .4rem;
    }
}
#owl-mobil-slider > .owl-nav > .owl-next{
    background-color: var(--color1) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    > i {
        font-size: 18px;
        padding: .4rem;
    }
}
.about-us{
   padding-top: 5rem;
   padding-bottom: 0rem;
   background-color: var(--color4);
}
.section-about-us-title{
   color: var(--color2);
   font-size: 60px;
   font-weight: 600;
   position: relative;
   margin-left: 2rem;
   &::before{
    content: "";
    position: absolute;
    left: -30px;
    top: -20px;
    width: .7rem;
    height: 4.84rem;
    border-radius: 2px;
    background-color: var(--color2); 
   }
}
.video-content{
    display: flex; 
    flex-direction: row;
    justify-content: space-between;
    border: 2px solid var(--color5);
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
    border-radius: 5px;
}
.video-content-title > h3{
    color: var(--color1);
    font-size: 30px;
    font-weight: 600;
}
.video-content-btn{
    padding-top: .5rem;
}
.video-content-btn > i{
    color: white;
    font-size: 30px;
    background-color: var(--color2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding-top:.7rem;
    padding-left: 1rem;
    position: relative;
    margin-right: 1rem;
    &::after{
        animation:ripple 2s 1s ease-out infinite;
         border:solid 5px var(--color2);
         border-radius:1em;
         bottom:0;
         box-sizing:border-box;
         content:"";
         left:0;
         position:absolute;
         right:0;
         top:0; 
    }
}
@keyframes ripple {
    0% {
      opacity:.25;
    }
    100% {
      border-radius:2em;
      opacity:0;
      transform:scale(2);
    }
}
.about-us-experience{
    background-color: var(--color1);
    position: relative;
    width: 450px;
    margin-left: -9rem;
    margin-top: 600px;
    height: 150px;
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    border-radius: 10px;
    padding-top: 1rem;
}
.about-us-experience-icon{
    color: white;
    font-size: 50px;
    padding-top: 2rem;
    padding-left: 5rem;
    padding-right: 3rem;
}
.about-us-experience-description{
    padding-top: 1rem;
}
.about-us-experience-title > h3{
    color: white;
    font-size: 50px;
    font-weight: 600;
}
.about-us-experience-text > p {
    color: white;
    font-size: 18px;
    font-weight: 400;
}
.about-us-first-img > img{
    width: 450px;
    border-radius: 30px;
}
.about-us-second-img{
    position: relative;
}
.about-us-second-img > img{
    position: absolute;
    top: 45px;
    width: 375px;
    border-radius: 30px;
}
.about-us-description{
    padding-top: 2.2rem;
}
.about-us-first-title{
    font-size: 35px;
    color: var(--color1);
    font-weight: 600;
}
.about-us-second-title{
    font-size: 60px;
    color: var(--color1);
    font-weight: 600;
    padding-top: 3rem;
}
.about-us-description-text > p {
    color:var(--color3);
    font-size: 18px;
    font-weight: 400;
}
.section-about-us-bottom-link-title{
    font-size: 60px;
    color: var(--color1);
    font-weight: 600; 
    padding-top: 3rem;
}
.about-us-bottom-link{
    background-color: var(--color4);
}
.about-us-link{
    position: relative;
    padding-bottom: 7rem;
}
.about-us-link-img{
    margin-top: 2rem;
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: .2;
        border-radius: 30px;
    }
}
.about-us-link-description{
    position: absolute;
    top: 70px;
    left: 50px;
}
.about-us-link-description > .icon  > svg{
    color: white;
    width: 50px;
    height: 50px;
}
.about-us-link-description > .title > h3{
    color: white;
    font-size: 60px;
    font-weight: 600;
    padding-top: 2rem;
}
.about-us-link-description > .text > p{
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding-top: 7rem;
    padding-right: 1rem;
}
.about-us-link-description > .btn {
    background-color: var(--color1);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 4rem;
    padding-right: 4rem;
    border-radius: 30px;
    margin-top: 1rem;
}
.about-us-link-description > .btn > a{
    color: white;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}
.about-us-link-img > img{
    border-radius: 30px;
}
.about-us-link-img{
    margin-top: 2rem;
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: .5;
        border-radius: 30px;
    }
}
.urunler{
    background-color: var(--color4);
    padding-top: 4rem;
    position: relative;
}
.section-urunler-title{
    color: var(--color2);
    font-size: 60px;
    font-weight: 600;
    position: relative;
    margin-left: 2rem;
    &::before{
     content: "";
     position: absolute;
     left: -30px;
     top: -20px;
     width: .7rem;
     height: 4.84rem;
     border-radius: 2px;
     background-color: var(--color2); 
    }
}
.urun-kategori-body {
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}
.urun-kategori-body .urun-kategori-item {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 250px;
    padding-bottom: 80px;
    clip: rect(0,auto,auto,0);
    overflow: hidden;
    &::before{
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: .6;
        z-index: -111;
    }
}
.urun-kategori-body .urun-kategori-item:nth-child(0) {
    top: -100vh
}
.urun-kategori-body .urun-kategori-item:nth-child(1) {
    top: 0
}
.urun-kategori-body .urun-kategori-item:nth-child(2) {
    top: 100vh
}
.urun-kategori-body .urun-kategori-item:nth-child(3) {
    top: 200vh
}
.urun-kategori-body .urun-kategori-item:nth-child(4) {
    top: 300vh
}
.urun-kategori-body .urun-kategori-item:nth-child(5) {
    top: 400vh
}
.urun-kategori-body .urun-kategori-item:nth-child(6) {
    top: 500vh
}
.urun-kategori-description{
    margin-left: 12.5rem;
    z-index: 222;
}
.urun-kategori-description > h3{
    font-size: 90px;
    color: white;
    font-weight: 600;
    z-index: 222;
}
.urun-kategori-description > p{
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 2rem;
}
.urun-kategori-description > a {
    background-color: var(--color1);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 4rem;
    padding-right: 4rem;
    border-radius: 30px;
    color: white;
    font-size: 18px;
    text-decoration: none;
}
.urun-kategori-img {
    position: relative;
    margin-top: -13rem;
    margin-left: 0rem;
}



.urun-kategori-img > .first-img > img {
    width: 400px !important;
}
.urun-kategori-img > .second-img > img {
    width: 400px !important;
}
.urun-kategori-img > .first-img {
    position: absolute;
    left: -80px;
    top: -300px;
    transition: 400ms 300ms;
    transform: rotate(-35deg) translateY(75%);
}
.urun-kategori-img > .second-img {
    position: absolute;
    top: -300px;
    right: 350px;
    transform: rotate(-35deg) translateY(75%);
    transition: 400ms 300ms;
}
.madenler{
    background-color: var(--color4);
    padding-bottom: 3rem;
}
.section-madenler-title{
    color: var(--color2);
    font-size: 59px;
    font-weight: 600;
    position: relative;
    margin-left: 1.3rem;
    &::before{
     content: "";
     position: absolute;
     left: -30px;
     top: -20px;
     width: .7rem;
     height: 4.84rem;
     border-radius: 2px;
     background-color: var(--color2); 
    }
}
.madenler-item-container {
    display: flex;
    margin-left: -.5rem !important;
    width: 79.5vw;   
    margin-top: 5rem;
    position: relative;
}
.madenler-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    color: #fff;
    cursor: pointer;
    flex: 0.5;
    position: relative;
    transition: all 700ms ease-in;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--color1);
        opacity: .4;
    }
}
.madenler-item h3 {
    font-weight: 600;
    position: absolute;
    bottom: 150px;
    margin: 0;
    opacity: 1;
    text-shadow: 2px 2px var(--color1);
    transform: rotate(90deg);
    font-size: 60px;
}
.madenler-item.active {
    flex: 2;
}
.madenler-item.active h3 {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
    transform: rotate(0deg);
    font-size: 60px;
    left: 10px;
}  
.haberler{
    padding-top: 3rem;
    padding-bottom: 5rem;
    background-color: var(--color4);
}
.section-haberler-title{
    color: var(--color2);
    font-size: 60px;
    font-weight: 600;
    position: relative;
    margin-left: 1.3rem;
    &::before{
     content: "";
     position: absolute;
     left: -30px;
     top: -20px;
     width: .7rem;
     height: 4.84rem;
     border-radius: 2px;
     background-color: var(--color2); 
    }
}
.first-haber-item{
    margin-top: 4rem;
    background-color: var(--color1);
    height: 550px;
    width: 450px;
    border-radius: 30px;
    margin-left: -.5rem;
}
.first-haber-item-date{
    padding-top: 3rem;
    padding-left: 2rem;
}
.first-haber-item-date > span{
    color: white;
    font-size: 18px;
    font-weight: 600;
}
.first-haber-item-title{
    padding-top: 2rem;
    padding-left: 2rem;
}
.first-haber-item-title > h3{
    color: white;
    font-size: 35px;
    font-weight: 400;
}
.first-haber-item-text{
    padding-top: 5.5rem;
    padding-left: 2rem;
}
.first-haber-item-text > p {
    color: white;
    font-size: 18px;
    font-weight: 400;
}
.first-haber-item-btn {
    padding-top: 1rem;
    padding-left: 2rem;
    border-radius: 50%;
}
.first-haber-item-btn > a{
    background-color: white;
    color: var(--color1);
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    padding: 1rem;
}
.second-haber-item{
    margin-top: 4rem;  
}
.second-haber-item-img > img{
    border-radius: 30px;
}
.second-haber-item-date{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.second-haber-item-date > span{
    color: var(--color1);
    font-size: 18px;
    font-weight: 600;
}
.second-haber-item-title > h3{
    color:var(--color1);
    font-size: 30px;
    font-weight: 600;
}
.second-haber-item-text > p {
    color: var(--color1);
    font-size: 18px;
    font-weight: 400;
}
.second-haber-item-btn {
    padding-top: 1rem;
    padding-left: -rem;
    border-radius: 50%;
}
.second-haber-item-btn > a{
    background-color: var(--color1);
    color: white;
    border-radius: 50%;
    border-radius: 50%;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    padding: 1rem;
    &:hover{
        background-color: white;
        color: var(--color1);
        border: 1px solid var(--color1);
    }
}
.referanslar{
    padding-bottom: 3rem;
    background-color: var(--color4);
}

#owl-reference-slider > .owl-dots{
    display: none !important;
}
/**** HOME PAGE END *****/
.banner{
    width: 100%;
    height: 500px;
    background-size: cover !important;
    background-position: 50% 50% !important;
    position: relative;
    &::after{
        background-image: -webkit-linear-gradient(90deg, #283271 0%, rgba(0, 0, 0, 0) 80%);
        width: 100%;
        height: 100%;
        content: "";
        top: 0;
        position: absolute;
        z-index: 99;
    }
}
.banner-description{
    padding-top: 16rem;
    padding-left: .5rem;
    position: relative;
    z-index: 111;
}
.banner-description > h1{
    color: white;
    font-size: 70px;
    font-weight: 600;
}
.content{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.content-description{
    color: var(--color3);
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}
.kalite-belgeleri{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.sertifika-item{
    border: 2px solid #ccc;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.vizyon-misyon{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.vizyon-content{
    background-color: var(--color1);
    padding: 2rem;
    border-radius: 30px;
    height: 350px;
    margin-bottom:2.1rem;
}
.vizyon-icon > i{
    color: white;
    font-size: 35px;
}
.vizyon-title > h3{
    color: white;
    font-size: 35px;
    font-weight: 600;
}
.vizyon-text > ul {
    color: white;
    font-size: 18px;
    font-weight: 400;
    list-style-type: disc;
    padding-top: 1rem;
    margin-left: -1rem;
}
.vizyon-first-img{
    margin-top: -.3rem;
}
.vizyon-first-img > img{
    border-radius: 30px;
}
.vizyon-second-img > img{
    border-radius: 30px; 
    height: 790px;
}
.misyon-img {
    margin-top: 2.5rem;
}
.misyon-img > img{
    border-radius: 30px;
}
.misyon-content{
    background-color: var(--color1);
    padding: 4rem;
    border-radius: 30px;
    height: 500px;
    margin-top:2.1rem;
}
.misyon-icon > i{
    color: white;
    font-size: 35px;
}
.misyon-title > h3{
    color: white;
    font-size: 35px;
    font-weight: 600;
}
.misyon-text > ul {
    color: white;
    font-size: 18px;
    font-weight: 400;
    list-style-type: disc;
    padding-top: 1rem;
    margin-left: -1rem;
}
.ik-description{
    padding-top: 3rem;
}
.ik-form{
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.ik-title > h3{
    color: var(--color1);
    font-size: 60px;
    font-weight: 600;
}
.ik-text > p{
    color: var(--color3);
    font-size: 18px;
    font-weight: 400;
    padding-top: 1rem;
    text-align: center;
}
.form-control[type=file] {
    overflow: hidden;
    padding-top: 1.3rem;
}
.haberler-page{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.haber-item-img > img{
    border-radius: 30px;
}
.haber-item-date{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.haber-item-date > span{
    color: var(--color1);
    font-size: 18px;
    font-weight: 600;
}
.haber-item-title > h3{
    color:var(--color1);
    font-size: 30px;
    font-weight: 600;
}

.haber-item-text > p {
    color: var(--color3);
    font-size: 18px;
    font-weight: 400;
}
.haber-item-btn {
    padding-top: 1rem;
    padding-left: -2rem;
    border-radius: 50%;
}
.haber-item-btn > a{
    background-color: var(--color1);
    color: white;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    padding: 1rem;
    &:hover{
        background-color: white;
        color: var(--color1);
        border: 1px solid var(--color1);
    }
}
.haber-detay-page{
    padding-top: 3rem;
}
.haber-detay-content > h3{
   color: var(--color1);
   font-size: 35px;
   font-weight: 600;
}
.haber-detay-content > span{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    color: var(--color1);
    font-size: 18px;
    padding-right: .5rem;
    font-weight: 600;
}
.haber-detay-content > span > i {
    color: var(--color1);
    font-size: 18px;
    padding-right: .5rem;
    position:relative;
    top: 5px;
}
.haber-detay-content > p {
    color: var(--color3);
    font-size: 18px;
    font-weight: 400;
    padding-top: 1rem;
    text-align: justify;
}
.haber-detay-page-galeri {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.section-haber-detay-page-galeri-title {
    color: var(--color1);
    font-size: 35px;
    font-weight: 600; 
}
.haber-galeri-item{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.haber-galeri-item  > a > img{
    border-radius: 30px;
}
.urunler-page{
    padding-top: 5rem;
    padding-bottom: 3rem;
}
.kategori-urun-description  > p{
    padding-bottom: 2rem;
    color: var(--color3);
    font-size: 18px;
    font-weight: 400;
}
.kategori-urun-description > h3{
    color: var(--color1);
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 1rem;
}
.urun-table > tbody tr:nth-child(odd) {
    background: rgb(40,50,113);
    background: linear-gradient(217deg, rgba(40,50,113,0.8827906162464986) 0%, rgba(40,50,113,0.5186449579831933) 0%);
    color: white;
    border: 1px solid white;
}
.urun-table > tbody tr > td:nth-child(even){
    background: rgb(40,50,113);
    background: linear-gradient(217deg, rgba(40,50,113,0.8827906162464986) 0%, rgba(40,50,113,0.5186449579831933) 0%);
    color: white;
    border: 1px solid white;
}
.urun-table > tbody tr > td:nth-child(odd){
    background: rgb(40,50,113);
    background: linear-gradient(217deg, rgba(40,50,113,0.8827906162464986) 0%, rgba(40,50,113,0.5186449579831933) 0%);
    color: white;
    border: 1px solid white;
}
.urun-table > tbody tr:nth-child(even) {
    background: rgb(255,0,0);
    background: linear-gradient(217deg, rgba(255,0,0,1) 0%, rgba(55,107,140,0.9192051820728291) 0%);
    border: 1px solid white;
}




.urun-item{
    background-color:#eff0ef;
    border-radius: 30px;
    height: 500px; 
}
.urun-item-title > h3{
    color: var(--color1);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding-top: 1.5rem;
}
.urun-item-img > img{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 350px !important;
}
.urun-item-btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 1rem;
}
.urun-item-btn > a{
    color: var(--color1);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid var(--color1);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 30px;
    &:hover{
        background-color: var(--color1);
        color: white;
        transition: .3s all;
    }
    > i {
        font-size: 16px;
        transform: rotate(320deg);
        position: relative;
        top: 0px;
        left: 5px;
    }
}
.urun-detay-page{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.urun-detay-img{
    background-color:#eff0ef;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 30px;
    height: 500px;
}
.urun-detay-title > h3{
    color: var(--color1);
    font-size: 35px;
    font-weight: 600;
}
.urun-detay-text > p {
    color: var(--color3);
    font-size: 18px;
    font-weight: 400;
    padding-top: 1rem;
    text-align: justify;
}

#urun-detay-slider > .owl-nav{
    display: none !important;
}
#urun-detay-slider > .owl-dots{
    display: block !important;
}
.owl-theme .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
}
.owl-theme .owl-dots .owl-dot span {
    background-color: var(--color1) !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: white !important;
    border: 1px solid var(--color1) !important;
}
.diger-urunler{
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.section-diger-urunler-title{
    color: var(--color1);
    font-size: 60px;
    font-weight: 600;
}
.diger-urunler-item {
    margin-top: 3rem;
    background-color:#eff0ef;
    border-radius: 30px;
    height: 520px
}
.diger-urunler-item-img{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color:#eff0ef;
}
.diger-urunler-item-title > h3{
    color: var(--color1);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding-top: 2rem;
}
.diger-urunler-item-btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 1rem;
}
.diger-urunler-item-btn > a{
    color: var(--color1);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid var(--color1);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 30px;
    &:hover{
        background-color: var(--color1);
        color: white;
        transition: .3s all;
    }
}
#diger-urunler-slider > .owl-nav{
    display: block;
    position: absolute;
    z-index: 222;
    top: -80px;
    right: 15px;
}
#diger-urunler-slider > .owl-dots{
    display: none !important;
}
#diger-urunler-slider > .owl-nav > .owl-prev{
    background-color: var(--color1) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    margin-right: .5rem;
    border-radius: 50% !important;
    > i {
        font-size: 18px !important;
        padding: .4rem;
    }
}
#diger-urunler-slider > .owl-nav > .owl-next{
    background-color: var(--color1) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    > i {
        font-size: 18px !important;
        padding: .4rem;
    }
}
.contact-adres{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.contact-adres-item{
    background-color: white;
    border: 1px solid #f5f5f5;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    height: 270px;
    padding: 3rem;
    border-radius: 30px;
        margin: 1rem;
}
.contact-adres-item-title >h3{
    color: var(--color1);
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    padding-top: 1rem;
}
.contact-adres-item-icon{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.contact-adres-item-icon > i {
    text-align: center;
    font-size: 30px;
    color: var(--color1);
}
.contact-adres-item-text > p {
    color: var(--color3);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    padding-top: 1rem;
    >a{
        color: var(--color3);
        font-size: 18px;
        font-weight: 400;
    }
}
.contact-map{
    padding-bottom: 3rem;
}
.contact-map-title{
     font-size: 60px;
     font-weight: 600;
     color: var(--color1);
     text-align: center;
}
.contact-map-text{
    color: var(--color3);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}
.contact-map-iframe{
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    background-color: white;
    border-radius: 10px;
}
.contact-form{
    padding-bottom: 3rem;
    border: 1px solid white;
}
.contact-form-img > img{
   border-top-left-radius: 30px;
   border-bottom-left-radius: 30px;
   height: 588px;
   width: 100%;
   object-fit: cover;
}
.form{
    background-color: white; 
}
.form-group{
    margin-bottom: 1rem;
}
.label{
    color:var(--color3);
    font-size: 18px;
    font-weight: 400;
}
.form-control{
    height: 63px;
}
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,
input[type="textarea"]:focus,
.uneditable-input:focus {   
  border-color:var(--color1);
  box-shadow: 0 1px 1px var(--color1) inset, 0 0 8px var(--color1) !important;
  outline: 0 none;
}
.form-send{
    border: none;
    background-color: var(--color1);
    color: white;
    width: 170px;
    height: 40px;
    margin-top: 1rem;
    font-size: 18px;
    &:hover{
        color: var(--color1);
        background-color: white;
        transition: .3s all;
        border: 1px solid var(--color1);
    } 
}
.form-check-label{
    margin-top: 1rem;
}
.form-check-input{
    margin-top: 1.3rem !important;
    margin-right: .5rem !important;
}
.form-check-input:checked{
    background-color: var(--color1) !important;
    border-color: var(--color1) !important;
}
.form-check-label > span {
    font-size: 18px;
    color: var(--color3);
    font-weight: 400;
}
.form-check-label > span > a{
    font-size: 18px;
    color: var(--color3);
    font-weight: 400;
}
.uretim-tesisleri{
    padding-top: 7rem;
    padding-bottom: 5rem;
}
.uretim-tesis-title{
    color: var(--color1);
    font-size: 30px;
    font-weight: 600;
}
.uretim-tesis-title-second{
    color: var(--color3);
    font-size: 60px;
    font-weight:600;
}
.uretim-tesis-svg > svg{
    margin-left: -15rem;
}
.uretim-tesis-text > p {
    font-size: 18px;
    color: var(--color3);
    font-weight: 400;
    padding-top: 1rem;
}
.table > tbody > tr > td{
    color: var(--color3);
    font-size: 18px;
    font-weight: 400;
}
.uretim-tesis-img > img{
    border-radius: 30px;
}
.uretim-tesis-btn{
    margin-top: 2rem;
}
.uretim-tesis-btn > a {
    border: 1px solid var(--color1);
    padding-left:2rem;
    padding-right:2rem;
    padding-top:.8rem;
    padding-bottom:.8rem;
    border-radius: 30px;
    text-decoration: none;
    color: var(--color3);
    font-size: 18px;
    font-weight: 600;
    &:hover{
        background-color: var(--color1);
        transition: .3s all;
        color: white;
        > i {
            color: white;
        }
    } 
    > i {
        font-size: 25px;
        color: var(--color1);
        position: relative;
        left:7px;
        top: 3px;
    }
}
.owl-uretim-slider .owl-nav{
    display: none;
}
.owl-uretim-slider > .owl-dots{
    position: absolute;
    bottom: 20px;
    left: 50%;
}
.owl-theme .owl-dots .owl-dot span {
    background-color: var(--color1) !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: var(--color1) !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: white !important;
    border: 1px solid var(--color1) !important;
}
.owl-theme .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
}
.kurumsal-page{
    padding-top: 3rem;
    padding-bottom: 5rem;
}
.kurumsal-page-description > h3{
    color: var(--color1);
    font-size: 60px;
    font-weight: 600;
}
.kurumsal-page-description > p{
    color: var(--color3);
    font-size: 18px;
    font-weight: 400;
    padding-top: 1rem;
    text-align: justify;
}
#about-us-slider {
    padding-top: 1rem;
}
.kurumsal-page-slider-img > img{
    border-radius: 30px;
}
#about-us-slider> .owl-dots{
    display: none;
}
#about-us-slider > .owl-nav{
    bottom: 15px;
    right: 20px;
    position: absolute;
}
#about-us-slider> .owl-nav > .owl-prev{
    background-color: var(--color1) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    margin-right: .5rem;
    border-radius: 50% !important;
    > i {
        font-size: 18px;
        padding: .4rem;
    }
}
#about-us-slider > .owl-nav > .owl-next{
    background-color: var(--color1) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    > i {
        font-size: 18px;
        padding: .4rem;
    }
}
.counter-page{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.counter-page-img > img{
    border-radius: 30px;
}
.counter-item{
    position: relative;
}
.counter-item > ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: absolute;
    bottom: 380px;
    right: 20px;
}
.counter-item > ul > li {
    padding-right: 2rem;
    background-color: var(--color1);
    margin-right: 2rem;
    height: 200px;
    width: 200px;
    padding: 2rem;
    text-align: center;
    border-radius: 30px;
}
.counter-item > ul > li:nth-child(2){
   margin-top: 50px !important;
}
.counter-item > ul > li:nth-child(4){
    margin-top: 50px !important;
}
.counter-item > ul > li > div{
    color: white;
    font-size: 60px;
    font-weight: 600;
}
.counter-item > ul > li > span{
    color:white;
    font-size: 18px;
    font-weight: 400;
}
.tarihce{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.timeline{
    position:relative;
    margin:50px auto;
    padding:40px 0;
    width:1000px;
    box-sizing:border-box;
}
.timeline:before{
    content:'';
    position:absolute;
    left:50%;
    width:2px;
    height:100%;
    background:#c5c5c5;
}
.timeline ul{
    padding:0;
    margin:0;
}
.timeline ul li{
    list-style:none;
    position:relative;
    width:50%;
    padding:20px 40px;
    box-sizing:border-box;
}
.timeline ul li:nth-child(odd){
    float:left;
    text-align:right;
    clear:both;
}
.timeline ul li:nth-child(even){
    float:right;
    text-align:left;
    clear:both;
}
.content{
    padding-bottom:20px;
}
.timeline ul li:nth-child(odd):before
{
    content:'';
    position:absolute;
    width:30px;
    height:30px;
    top:24px;
    right:-15px;
    background:var(--color1);
    border-radius:50%;
    box-shadow:0 0 0 3px var(--color2);
    animation: pulse-animation 2s infinite;
}
.timeline ul li:nth-child(even):before
{
    content:'';
    position:absolute;
    width:30px;
    height:30px;
    top:24px;
    left:-15px;
    background:var(--color2);
    border-radius:50%;
    box-shadow:0 0 0 3px var(--color2);
    animation: pulse-animation 2s infinite;
}
.timeline ul li h3{
    padding:0;
    margin:0;
    color:var(--color1);
    font-weight:600;
    font-size: 40px;
}
.timeline ul li p{
    margin:10px 0 0;
    padding:0;
    color: var(--color3);
    font-size: 20px;
    font-weight: 400;
}
.timeline ul li > .content > img{
    border-radius: 30px;
    padding-top: 1rem;
}
.timeline ul li .time h4{
    margin:0;
    padding:0;
    font-size:35px;
    font-weight: 600;
}
.timeline ul li:nth-child(odd) .time
{
    position:absolute;
    top:12px;
    right:-165px;
    margin:0;
    padding:8px 16px;
    background:var(--color2);
    color:#fff;
    border-radius:18px;
    box-shadow:0 0 0 3px var(--color2);
    font-size: 40px;
    font-weight: 400;
}
@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
  }
  
.timeline ul li:nth-child(even) .time
 {
    position:absolute;
    top:12px;
    left:-165px;
    margin:0;
    padding:8px 16px;
    background:var(--color2);
    color:#fff;
    border-radius:18px;
    box-shadow:0 0 0 3px var(--color2);
    font-size: 20px;
    font-weight: 400;
}
@media(max-width:1000px)
{
.timeline{
      width:100%;
}
}
 @media(max-width:767px){
.timeline{
    width:100%;
    padding-bottom:0;
}
h1{
    font-size:40px;
    text-align:center;
}
.timeline:before{
    left:20px;
    height:100%;
}
.timeline ul li:nth-child(odd),
.timeline ul li:nth-child(even)
{
    width:100%;
    text-align:left;
    padding-left:50px;
    padding-bottom:50px;
}
.timeline ul li:nth-child(odd):before,
.timeline ul li:nth-child(even):before
    {
      top:-18px;
      left:16px;
    }
.timeline ul li:nth-child(odd) .time,
.timeline ul li:nth-child(even) .time{
      top:-30px;
      left:50px;
      right:inherit;
    }
}
.referanslar-page{
    padding-top: 6rem;
    padding-bottom: 5rem;
}
.referans-item{
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    opacity: .7;
    position: relative;
    &:hover{
		opacity: 1;
		transition: .2s cubic-bezier(0.215, 0.610, 0.355, 1);
	}
	&::after{
		content: "";
        display: block;
		position: absolute;
        height: 4px;
		background-color: var(--color1); 
        width: 0;
        transition: width 1s;
        bottom: 0px;
	}
	&:hover::after{
        width: 100%;
    }
}

footer{
    padding-bottom: 1rem;
    background-color: var(--color1);
}
.footer-top{
    background-color: var(--color1);
    margin-bottom: 2rem;
    border-radius: 30px;
    padding-top: 5rem;
}
.footer-menu > h3{
    color: white;
    font-size: 30px;
    font-weight: 600;
    padding-bottom: .5rem;
}
.footer-menu > ul {
    margin-left: -2rem !important;
    list-style-type: none;
}
.footer-menu > ul > li {
    padding-top: .5rem;
} 
.footer-menu > ul > li > a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.footer-menu > p {
    color: white;
    font-size: 18px;
    font-weight: 400;
}
.contact-menu > ul{
    margin-left: -2rem;
    margin-bottom: 1rem;
    list-style: none;
}
.contact-menu > ul > li {
    padding-top: .5rem;
}
.contact-menu > ul > li > a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.contact-menu > ul > li > a > i {
    color: white;
    padding-right: 1rem;
    font-size: 18px;
}
.social-media-menu > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    margin-left: -2rem;
}
.social-media-menu > ul > li {
    padding-right: 1rem;
}
.social-media-menu > ul > li > a{
    color: white;
    font-size: 20px;
    font-weight: 400;
}
.footer-web-site-logo{
    filter:brightness(0) invert(1); 
    margin-top: -1rem;
}

.footer-about-us-description > p{
    color: white;
    font-size: 18px;
    font-weight: 400;

}
.footer-web-site-logo > a > img{
    width: 150px !important;
}
.text-coprigyt{
    padding-top: 1rem;
}
.text-coprigyt > h3{
    color: #333333;
    font-size: 20px;
}
.text-coprigyt-link {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-top: 1rem;
}
.scrollup {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: none;
    background-color:var(--color2);
    border-radius: 30px;
    z-index: 9999;
    border: 1px solid white;
    transform: scale2(.7);
        animation: scale2 infinite 3s;
        z-index: 222;
    }
    @keyframes scale2 {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    } 
.scrollup > i {
    color: white !important;
}

/*
.sub-menu-kurumsal.active{
	display:block !important;

}

.sub-menu-kurumsal.show{
	display:block !important;

}

.sub-menu-kurumsal.hide{
	display:none !important;
}

.sub-menu-urunler.show{
	display:block !important;

}

.sub-menu-urunler.hide{
	display:none !important;
}


.sub-menu-uretim.show{
	display:block !important;

}

.sub-menu-uretim.hide{
	display:none !important;
}

.sub-menu-uretim{
    display: none;
    position: absolute;
    margin-top: 0rem;
    z-index: 333;
    max-width: 960px;
margin-left: -40rem;
    background-color: var(--color1);
    animation: downOut 300ms ease-in-out forwards;
}

.kurumsal-menu > a {
	color:var(--color1) !important;
}

.urunler-menu > a {
	color:var(--color1) !important;
}

.uretim-menu > a {
	color:var(--color1) !important;
}
    */

.cerez-bar{
    background-color:var(--color1);
    position: fixed;
    height: 70px;
    bottom: 0px;
    width: 100%;
    padding-top: 1.5rem;
	padding-bottom:1.5rem;
    z-index: 777;
}
.cerez-div{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
}
.cerez-text{
    color: white;
    font-size: 16px;
    font-weight: 400;
}
.cerez-text > p > a{
    color: white;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}
.cerez-btn > button{
    padding: 5px 23px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color1);
    border-radius: 5px;
    background:white;
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 30px;
}
.hide{
    display: none;
}
.show{
    display: block;

}
@media(max-width:767px){
    .cerez-bar{
        background-color: var(--color1);
        position: fixed;
        height: 150px;
        bottom: 0px;
        width: 100%;
        padding-top: 1rem;
    }
    .cerez-div{
        display: flex;
        flex-direction: column;
        justify-content:flex-start;
        align-items: flex-start;
    }
    
}
@media(min-width:768px){
    .cerez-bar{
        position: fixed;
        height: 140px;
        bottom: 0px;
        width: 100%;
        padding-top: 1rem;
    }
    .cerez-div{
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
    }
    .cerez-text > p {
        text-align: center;
    }

}
@media(min-width:992px){
    .cerez-bar{
        position: fixed;
        height: 110px;
        bottom: 0px;
        width: 100%;
        padding-top: 1rem;
    }
    .cerez-div{
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
    }  
    .cerez-text > p {
        text-align: center;
    } 
}
@media(min-width:1200px){
    .cerez-bar{
        position: fixed;
        height: 110px;
        bottom: 0px;
        width: 100%;
        padding-top: 1rem;
    }
    .cerez-div{
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
    }  
    .cerez-text > p {
        text-align: left;
    }
}
@media(min-width:1400px){
    .cerez-bar{
        position: fixed;
        height: 70px;
        bottom: 0px;
        width: 100%;
        padding-top: 1rem;
    }
    .cerez-div{
        display: flex;
        flex-direction: row;
        justify-content:space-between;
    }
     
}

video{
    height: 100vh;
    width: 100%;
    object-fit: cover; 
}

.mobile-video > video{
	height:100%;
	width:100%;
	object-fit:none;
	
}

.slider-img > img{
    height: 100vh;
}

.slider-mobil-img{
	position:relative;
	&&::before{
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .2;
	}
}

.pagination-wrapper {
  text-align: center;
  margin-top: 30px;
}

.pagination-wrapper .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  border: 2px solid var(--color1);
  background-color: white;
  color: var(--color1);
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers:hover {
  background-color: var(--color1);
  color: white;
}

.pagination-wrapper .current {
  background-color: var(--color1);
  border-color: var(--color1);
  color: white;
  font-weight: bold;
}

.prev.page-numbers{
    display: none;
}
.next.page-numbers{
    display: none;
}
#mobil-menu-language-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: -2rem;
}

.modal-header{
	    display: flex
;
    flex-direction: row;
    justify-content: flex-end;
}

#close{
	background-color:var(--color1);
	color:white;
}