:root{
    --color1:#006F9B;
    --color2:#212121;
    --color3:#333333;
    --color4:#00D2E8;
    --header-height: 200px;
}
*{
    box-sizing: border-box;
    font-family: 'Sofia Sans';
}

.haberler-page a{
    text-decoration:none;
}

.maxWidth{
    max-width: 1530px;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color1);
}
::-webkit-scrollbar-thumb {
    background:white;
    border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover {
    background:white;
}
#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;
}
/*** HEADER START  ***/
.site-navigation{
    padding-top: .5rem;
    padding-bottom: .5rem;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 888;
    transition: 0.4s;
    padding: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, 0 , 0);
}   
.website-logo > a > img{
    width: 400px;
    padding-top: .1rem;
    filter: brightness(0) invert(1);
}
.site-navigation-menu {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 1.8rem;
}
.site-navigation-menu > li {
    padding-right: 2rem;
    > a{
        color: white;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        &::after{
            content: "";
            display: block;
            height:5px;
            background:white;
            width: 0;
            transition: width 1s;
            position: relative;
            bottom: -5px;
        }
        &:hover::after{
            width: 50%;
        }
    }
}
.site-navigation-language-menu{
    padding-top: 2rem;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    >li{
        padding-right: 1rem;
    }
    > li > a{
        color: white;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
    }
}
.sticky{
    background: var(--color1);
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 666;
}
.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;
    border-bottom: 1px solid #ccc;
}
.mobil-hamburger-menu-btn{
    position: absolute;
    right: 10px;
    top: 20px;
    font-size: 30px;
    > i{
        color: var(--color1) !important;
    }
}
.offcanvas{
    z-index:99999;
    background-color:var(--color1) !important;
} 
.btnClose{
    background-color: transparent !important;
    padding: 2rem;
    border: none !important;
    font-size: 30px;
    margin-left: 2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    >i {
        color: white !important;
        font-size: 30px;
    }
}
.mobil-menu{
    background-color:white;
}
.offcanvas-header{
    padding:0rem !important;
}
.offcanvas-site-logo{
    filter: brightness(0) invert(1);
    width: 250px !important;
    margin-left: .5rem;
}

.wpml-ls-statics-footer,.wpml-ls, .wpml-ls-legacy-list-horizontal, .otgs-development-site-front-end{
    display: none!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-language-menu > ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: -2rem;
    margin-bottom: 2rem;
    > li {
     padding-right: .5rem;
    }
}
.offcanvas-language-menu > ul > li > a{
    cursor: pointer;
    display: block;
    color: white !important;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    transition: all 0.4s ease;
    text-decoration: none;
    text-transform: uppercase;
}
.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 15px 42px;
   color: white !important;
   font-size: 1rem;
   font-weight: 700;
   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: var(--color1) !important;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    padding: .7rem;
}
.accordion li.open .link {
   color: white;
}
.accordion li.open i {
    color: white;
}
.accordion li.open i.fa-chevron-down {
   transform: rotate(180deg);
}
.mobil-web-site-logo{
    padding-top: .5rem;
}
/*** HEADER END ****/
/*** CONTENT START ***/
.slider-col{
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}
.slider-content{
    position: absolute;
    bottom: 350px;
    left: 207px;
}
.slider-video{
    position: relative !important ;
    overflow: hidden;
    height: 100vh;
}
.slider-video::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .4;
}
.ust-baslik{
    color:white;
    font-size: 90px;
    font-weight: 900;
    line-height: 4.5rem;
}
.alt-baslik{
    color:white;
    font-size: 90px;
    font-weight: 900;
    line-height: 4.5rem;
}
.slider-content-description > p {
    color: white;
    font-weight: 400;
    font-size: 20px;
}

#owl-slider > .owl-dots{
	display:none;
}

#owl-slider > .owl-nav{
	display:block;
	position:absolute;
	bottom:40px;
	left:12%;
}

#owl-slider > .owl-nav > .owl-next {
    background-color: var(--color1);
    width: 50px;
    height: 50px;
		> span {
		color:white;
		font-size:30px;
	}
}

#owl-slider > .owl-nav > .owl-prev {
    background-color: var(--color1);
    width: 50px;
    height: 50px;
	> span {
		color:white;
		font-size:30px;
	}
}

.urunler{
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
}
.section-title > h3{
    color: var(--color1);
    font-size: 60px;
    position: absolute;
    right: -160px;
    transform: rotate(90deg);
    font-weight: 900;
    top:calc(var(--header-height) + 250px);
    width: 480px;
}
.urunler-title{
    font-size: 70px;
    font-weight: 600;
    color: var(--color1);
}
.urunler-btn{
    margin-top: 1rem;
}
.urunler-btn > a{
    background-color: var(--color1);
    padding: 1rem 3.7rem;
    text-align: center;
    color: white;
    text-decoration: none;
}
.urunler-btn:hover > a{
    background-color: white;
    border: 1px solid var(--color1);
    color: var(--color1);  
}
#owl-urun-slider{
    padding-top: 5rem;
}
#owl-urun-slider > .owl-dots{
    display: none;
}
#owl-urun-slider > .owl-nav{
    display: block;
    padding-top: 3rem;
}
#owl-urun-slider > .owl-nav > .owl-prev{
    background-color: var(--color1);
    width: 50px;
    height: 50px;
    > i {
        font-size: 20px;
        color: white;
    }
}
#owl-urun-slider > .owl-nav > .owl-next{
    background-color: var(--color1);
    width: 50px;
    height: 50px;
    > i {
        font-size: 20px;
        color: white;
    }
}
.urun-item{
    background-color: #f7f7f7;
    transition: 0.4s;
    height: 555px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0px 10px 15px -10px rgba(0,0,0,0.1);
    margin-right: 2rem;
}
.urun-item-title > h3{
    color:var(--color1);
    padding-top: 2rem;
    font-size: 20px;
    font-weight: 600; 
    text-align: center;
}
.urun-item-img {
   position: relative;
   display: flex;
   flex-direction: row;
   justify-content: center;
}
.urun-item-img > img{
    padding-top: 2rem;
    width: 100% !important;
    height: 380px;
    object-fit: cover;
}
.urun-item-btn{
    position: relative;
}
.urun-item-btn > a > svg{
    width: 50px;
    height: 50px;
    background: white;
    position: absolute;
    right: 15px;
    top: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: unset;
    padding: unset;
    box-shadow: 2px 2px 0 20px white;
    > path{
        width: 1rem !important;
    }
}
.kurumsal{
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    background-image: url('../images/kurumsal/kurumsal-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}
.section-kurumsal-title > h3{
    color: var(--color1);
    font-size: 40px;
    position: absolute;
    right: 0px;
    transform: rotate(90deg);
    font-weight: 900; 
    top:calc(var(--header-height) + 150px);
}
.kurumsal-first-title{
    font-size:90px;
    line-height: 1;
    font-weight: 700;
    background: -webkit-linear-gradient(var(--color1), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}
.kurumsal-second-title{
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: var(--color2);
    letter-spacing: .5px;
}
.kurumsal-description-text{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
    padding-top: 1rem;
}
.kurumsal-btn{
    margin-top: 2rem;
}
.kurumsal-btn > a{
    background-color: var(--color1);
    padding: 1rem 4rem;
    text-align: center;
    color: white;
    text-decoration: none;    
}
.kurumsal-btn:hover > a{
    background-color: white;
    border: 1px solid var(--color1);
    color: var(--color1);    
}
.counter-inner{
    background-color: var(--color1);
    padding: 3rem;
    margin-left: .4rem;
}

.counter-icon{
    margin-left: -1rem;
}

.counter-item > .counter-icon > i {
    font-size: 60px;
    color: white;
}
.counter-item > .counter-title > h3{
    font-size: 60px;
    color: white;
    font-weight: 600;
}
.counter-item > .counter-text > p{
    font-size: 18px;
    color: white;
    font-weight: 400;
}
.bize-ulasin{
    padding-top: 7rem;
    padding-bottom: 5rem;
    position: relative;   
}
.section-bize-ulasin-title > h3{
    color: var(--color1);
    font-size: 40px;
    position: absolute;
    right: -90px;
    transform: rotate(90deg);
    font-weight: 900;
    top:calc(var(--header-height) + 150px);
}
.bize-ulasin-description {
    padding-top: 7rem;
}
.bize-ulasin-title > h3{
    color: var(--color1);
    font-size: 70px;
    font-weight: 600;
}
.bize-ulasin-text > p{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
}
.bize-ulasin-btn{
    margin-top: 2rem;
    >a {
        background-color: var(--color1);
        padding: 1rem 4rem;
        text-align: center;
        color: white;
        text-decoration: none;
    }
} 
.bize-ulasin-btn:hover > a{
    background-color: white;
    padding: 1rem 4rem;
    text-align: center;
    color: var(--color1);
    text-decoration: none;
    border: 1px solid var(--color1);
}
.haberler{
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
}
.section-haberler-title > h3{
    color: var(--color1);
    font-size: 40px;
    position: absolute;
    right: 0px;
    transform: rotate(90deg);
    font-weight: 900;
    top:calc(var(--header-height) + 150px);
}
.haberler-title{
    font-size: 70px;
    font-weight: 600;
    color: var(--color1);
}
.haberler-btn{
    margin-top: 1rem;
}
.haberler-btn > a{
    background-color: var(--color1);
    padding: 1rem 3.7rem;
    text-align: center;
    color: white;
    text-decoration: none;    
}
.haberler-btn:hover > a{
    background-color: white;
    border: 1px solid var(--color1);
    color: var(--color1);  
}
#owl-haber-slider{
    padding-top: 5rem;
}
.haber-item {
    background-color: #f7f7f7;
    border: 1px solid white;
    height: 580px;
    opacity: .7;
    transform: scale(.9);
    position: relative;
}
#owl-haber-slider  .owl-item.active.center  .item  .haber-item {
   opacity: 1;
   transform: scale(1);
}
#owl-haber-slider  .owl-item.active.center > .item  > .haber-item  > .haber-item-title > h3{
    color: var(--color1);
    font-size: 30px;
    font-weight: 600;
    padding-top: 1rem !important;
}
.haber-item-description{
    padding: 1rem;
}
.haber-item-title > h3{
    color: var(--color1);
    font-size: 30px;
    font-weight: 600;
    padding-top: 1rem !important;  
}
.haber-item-text > p {
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
}
.haber-item-date{
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    background-color: var(--color1);
    padding: .7rem;
}
.haber-item-date > .haber-item-date-icon > i{
    color: white;
    font-size: 18px;
    padding-right: .5rem;
}
.haber-item-date > .haber-item-date-text > span{
    color: white;
    font-size: 18px;
    font-weight: 400; 
}
.haber-item-btn {
    padding-top: 2rem;
}
.haber-item-btn > a{
    font-weight: 600;
    font-size: 20px;
    color: var(--color1);
    text-decoration: none;
}
#owl-haber-slider > .owl-dots{
    display: none;   
}
#owl-haber-slider > .owl-nav{
    display: block;
    padding-top: 3rem;
}
#owl-haber-slider > .owl-nav > .owl-prev{
    background-color: var(--color1);
    width: 50px;
    height: 50px;
    > i {
        font-size: 20px;
        color: white;
    }
}
#owl-haber-slider > .owl-nav > .owl-next{
    background-color: var(--color1);
    width: 50px;
    height: 50px;
    > i {
        font-size: 20px;
        color: white;
    }
}
.teklif-al{
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    background-color: #f3f7f8;
    height: 100vh;
}
.form-title > h3{
    font-size: 70px;
    font-weight: 600;
    color: var(--color1);
}
.form-text > p{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
    padding-top: 1rem;
}
.form-field{
    padding-top: 2rem;
}
.form-control{
    height: 60px;
    font-size: 18px;
    color: var(--color2);
}
textarea{
    height: 150px !important; 
}
.form-send{
    background-color: var(--color1);
    padding: .5rem 4rem;
    text-align: center;
    color: white;
    text-decoration: none;
    border: 1px solid transparent;
    font-size: 18px; 
    font-weight: 400;

}
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,
select: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;
}
label{
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: 18px;
    color: var(--color2);
}
.form-check-input{
    margin-top: .8rem !important; 
}
.form-check-input:checked{
    border-color: var(--color1) !important;
    background-color: var(--color1) !important;
}

.banner{
    width: 100%;
    height: 400px;
    background-size: cover !important;
    background-position: 50% 50% !important;
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--color2);
        opacity: .4;
    }
    &::after{
        background-image: -webkit-linear-gradient(40deg, var(--color1), rgba(0, 0, 0, 0) 80%);
        width: 100%;
        height: 100%;
        content: "";
        top: 0;
        position: absolute;
        z-index: 99;
    }
}
.banner-description{
    padding-top: 13rem;
    position: relative;
    z-index: 111;
}
.banner-description > h1{
    color: white;
    font-size: 70px;
    font-weight: 600;
    text-align: center;
}
.content{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.content-description {
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}
.sertifikalar{
    padding-top: 5rem;
    padding-bottom: 3rem;
}
.sertifika-item{
    border: 2px solid #ccc;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.haberler-page{
    padding-top: 5rem;
    padding-bottom: 3rem;
}
.active{
    opacity: 1 !important;
}
.haber-detay{
    padding-top: 5rem;
    padding-bottom: 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(--color2);
     font-size: 18px;
     font-weight: 400;
     padding-top: 1rem;
     text-align: justify;
}
.haber-detay-galeri {
     padding-top: 3rem;
     padding-bottom: 3rem;
}
.section-haber-detay-galeri-title {
     color: var(--color1);
     font-size: 35px;
     font-weight: 600; 
}
.haber-galeri-item{
     padding-top: 1rem;
     padding-bottom: 1rem;
}
.contact-adres-item{
    background-color: white;
    border: 1px solid white;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    height: 270px;
    padding: 3rem;
}
.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-adres{
    padding-top: 5rem;
    padding-bottom: 3rem;
}
.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-img{
    position: sticky;
    top: 0px;
}

.contact-form{
    padding-bottom: 3rem;
    border: 1px solid white;
}
.form{
    background-color: transparent; 
}
.form-group{
    margin-bottom: 1rem;
}
.form-check-label > span > a{
    color: var(--color1);
}
.urunler-page{
    padding-top: 6rem;
    padding-bottom: 5rem;
}
.urun-detay-page{
    padding-bottom: 3rem; 
}

#owl-urun-detay-slider{
    padding-top: 5rem;
}
#owl-urun-detay-slider > .owl-dots{
    display: none;
}
#owl-urun-detay-slider > .owl-nav{
    display: block;
    padding-top: 3rem;
}
#owl-urun-detay-slider > .owl-nav > .owl-prev{
    background-color: var(--color1);
    width: 50px;
    height: 50px;
    > i {
        font-size: 20px;
        color: white;
    }
}
#owl-urun-detay-slider > .owl-nav > .owl-next{
    background-color: var(--color1);
    width: 50px;
    height: 50px;
    > i {
        font-size: 20px;
        color: white;
    }
}

.urun-detay-description{
    padding-top: 1rem;
}
.urun-detay-description > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
}
.urun-detay-description > p{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
    padding-top: .5rem;
}

.urun-detay-img{
	border:1px solid #ccc;
box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.urun-teknik-dokumanlar{
    padding-top: 0rem;
    padding-bottom: 5rem;
}
.teknik-dokumanlar-title > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
}
.tekik-dokuman-item{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    border: 2px solid #EBEBEB;
    padding: 1rem;  
}
.teknik-dokuman-title > h3{
    padding-top: .5rem;
    color: var(--color2);
    font-size: 30px;
    font-weight: 400;
    text-align: center;
}
.teknik-dokuman-btn{
   padding-top: 1rem;
   padding-bottom: 1rem;
   padding-left: 4rem;
   padding-right: 4rem;
   text-align: center;
   background-color: var(--color1);
}
.teknik-dokuman-btn > a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
}
.urun-video{
    padding-bottom: 5rem;
    position: relative;
}
.urun-video-title > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
}
.urun-video-description{
    position: relative;
    z-index: 444;
    padding-top: 2rem;
}
.kurumsal-page{
    padding-top: 3rem;
    padding-bottom: 5rem;
}
.kurumsal-page-description > p{
    padding-top: .5rem;
    color: var(--color2);
    font-size: 18px;
}
.kurumsal-page-description > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
}
.kurumsal-page-img{
    padding-top: 1rem;
}

/*** CONTENT END ***/
/**  FOOTER START  **/
footer{
    background-color: var(--color1);
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.footer-social-media-menu > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    margin-left: -1.4rem;
}
.footer-social-media-menu > ul > li {
    padding-right: 2rem;
    padding-top: 2rem;
}
.footer-social-media-menu > ul > li > a{
    color: white;
    font-size: 25px;
}
.footer-contact-menu > ul{
    display: flex;
    flex-direction: column;
    list-style-type: none;
}
.footer-contact-menu > ul > li {
    padding-top: 1rem;
}
.footer-contact-menu > ul > li{
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}
.footer-contact-menu > ul > li > a{
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}
.footer-hizli-menu > ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
}
.footer-hizli-menu > ul > li {
    padding-top: 1rem;
}
.footer-hizli-menu > ul > li > a{
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}
.footer-web-site-logo{
    filter: brightness(0) invert(1);
}
.footer-bottom{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.text-coprigyt > p{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
}
.text-coprigyt-link{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.scrollup {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 100px;
    right: 10px;
    display: none;
    background-color:var(--color1);
    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;
}

#accordion > .menu-item > li > a{
	color:white !important;
}

/**  FOOTER END  **/


.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;
    border: 1px solid transparent;
}
.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;
    }
     
}

    .wpcf7-response-output {
  visibility: hidden;
  opacity: 0;
}

     form.sent .wpcf7-response-output {
      visibility: visible !important;
      opacity: 1;
      transition: all 0.3s ease-in-out;
    }

.wp-button {
    background-color: #25D366 !important;
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 24px;
    right: 8px;
    border: 1px solid transparent;
    z-index: 222;
    border-radius: 50%;
}
.wp-button i{
    color: #fff;
}


