:root{
    --color1:#007d8b;
    --color2:#333333;
    --header-height: 200px;
    --container:1530px;
}
*{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    outline: none !important; 
    --bs-modal-width:700px !important;
}
.maxWidth{
    max-width: 1530px;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background:var(--color1);
}
::-webkit-scrollbar-thumb:hover {
    background:var(--color1);
}
.wpml-ls-statics-footer,.wpml-ls, .wpml-ls-legacy-list-horizontal, .otgs-development-site-front-end{
    display: none!important;
}
#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;
}
.site-navigation-menu{
    width: 100%;
    position:absolute;
    z-index: 444;
    background-color: transparent;
    padding-bottom: 1rem;
}
.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-left-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    padding-top: 2.3rem;
   /* margin-left: -2rem;*/
}
.site-navigation-left-menu > li{
    padding-right: 3rem;
}
.site-navigation-left-menu > li > a{
    color:white;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 58px 0px;
    &::after{
        content: "";
        display: block;
        height: 5px;
        background:white;
        width: 0;
        transition: width 1s;
        position: relative;
        bottom: -5px;
    }
    &:hover::after{
        width: 50%;
    }
}
.site-navigation-right-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
    padding-top: 2.3rem;
}
.site-navigation-right-menu > li{
    padding-right: 3rem;
}
.site-navigation-right-menu > li > a{
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 58px 0px;
    &::after{
        content: "";
        display: block;
        height: 5px;
        background:white;
        width: 0;
        transition: width 1s;
        position: relative;
        bottom: -5px;
    }
    &:hover::after{
        width: 50%;
    }
}
/*.site-navigation-right-menu > li:nth-child(3) > .submenu{
    margin-left: -7rem;
}*/
.web-site-logo{
    padding-top: 1.5rem;
}
.web-site-logo > a > img{
    filter: brightness(0) invert(1);
    margin-left: -4rem;
}
.site-navigation-right-menu > li:hover > .submenu{
    display: block;
}
.site-navigation-left-menu > li:hover > .submenu{
    display: block;
}
.submenu{
    display: none;
    position: absolute;
    margin-top: 2.5rem;
    z-index: 333;
    min-width: 300px;
    background: rgb(0,125,139);
    background: linear-gradient(217deg, rgba(0,125,139,1) 0%, rgba(0,125,139,0.969625350140056) 0%);
    animation: downOut 300ms ease-in-out forwards;
    list-style-type: none;
    padding-bottom: 1rem;
    padding-left: 0rem;
}
.submenu > li{
    padding-top: .7rem;
    padding-bottom: .7rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.submenu > li:hover{
    background-color: white;
    color: var(--color1);
    >a {
        background-color: white;
        color: var(--color1); 
    }
}
.submenu > li > a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding-bottom: .5rem;
}
@keyframes downOut {
    0% {
       transform: translateZ(200px) transLateY(40px)
   }
   80% {
       transform: translateZ(-10px) transLateY(0px)
   }
   100% {
       transform: translateZ(0px) transLateY(0px)
   }
}
.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: 10px;
    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: 18rem;
    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; 
}
.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: -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: white !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: 1rem;
   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);
}
/********* HEADER   ***********************/
.owl-slider-item{
    position: relative;
    height: 100%;
    width: 100%;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 99%;
        background-color: black;
        opacity: .5;
    }
}
.owl-slider-item > video{
    width: 100%;
}
#owl-slider{
    position: relative;
}
.owl-dots{
    display:block !important;
    position: absolute;
    right: 30px;
    bottom: 300px;
    display: flex !important;
    flex-direction: column !important;
}
.owl-theme .owl-dots .owl-dot span{
    width: 15px !important;
    height: 15px !important;
}
.owl-theme .owl-dots .owl-dot span{
    background-color: transparent !important;
    border: 1px solid white;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: transparent !important;
    border: 1px solid white;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: white !important;
}
#owl-slider > .owl-nav{
    display:none !important;
}
#slide-names-list{
    position: absolute;
    z-index: 222;
    bottom: 5px;
    left: 8%;
}
#slide-names-list > ul {
    list-style: none;
    display: flex;
    flex-direction: row;
}
#slide-names-list > ul > li{
    padding-right: 10rem;
    color: white;
    font-size: 23px;
    font-weight: 400;
    cursor: pointer;
    position: relative; 
}
.slide-name{
     position: relative;
}
.slide-name:after {
    background-color: var(--color1);
    content: "";
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 0;
    height: 3px;
    transition: width 1.2s ease; 
    z-index: 9999;
}
.slide-name.active-border:after {
    width: 50%;  
}
.slider-content{
    position: absolute;
    bottom: 350px;
    left:28%;    
}
.slider-title > .ust-title{
    color: white;
    font-size: 80px;
    font-weight: 900;
    line-height: 4rem;
}
.slider-title > .alt-title{
    font-size: 70px;
    line-height: 5rem;
    text-align: center;
    -webkit-text-stroke: 1px #ccc;
    color:transparent;
    text-shadow: 2px 2px transparent;
    font-weight: 900;
}
.mobil-slider-img{
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: .4;
        background-color: black;
    }
}
#owl-mobil-slider > .owl-dots{
    display: block !important;
    position: absolute;
    right: 10px;
    bottom: 70px;
    display: flex !important;
    flex-direction: column !important;
}
#owl-mobil-slider > .owl-nav{
    display: none !important;
}
.aboutus{
    margin-top: 7rem;
    margin-bottom: 7rem;
    position: relative;
}
.section-title >h3{
    font-size: 52px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    left: -160px;
    top: 30px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    line-height: 1;
    width: 480px;
    pointer-events: none;
    z-index: 111;
    color: var(--color1);
    &::before{
        content: "";
        position: absolute;
        height: 2px;
        background-color: var(--color1);
        top: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 250px;
        left: -150px;
    }
}
.section-white-title > h3{
    font-size: 52px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    left: -160px;
    top: calc(var(--header-height) + 123px);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    line-height: 1;
    width: 480px;
    pointer-events: none;
    z-index: 111;
    color: white;
    &::before{
        content: "";
        position: absolute;
        height: 2px;
        background-color:white;
        top: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 250px;
        left: -170px;
    }
}
.aboutus-first-title{
    font-size: 50px;
    font-weight: 700;
    color: var(--color1);
    line-height: 2rem;
}
.aboutus-second-title{
    font-size: 70px;
    font-weight: 600;
    color: var(--color1);
}
.aboutus-description-text{
    font-size: 18px;
    font-weight: 400;
    color: var(--color2);
    padding-top: .4rem;
}
.numbers{
    position: relative;
    background-color: var(--color1);
    padding-left:2rem;
    margin-top: -94px;
    padding-top: 5rem;
    margin-top: 0rem;
}
.allBoxes {
    height: 1000px;
    max-height: inherit;
    width: 100%;
    margin-top: -15rem;
}
.allBoxes .row {
    position: absolute;
    z-index: 1;
    top: 0;
    height: 100%;
    width: 100%;
}
.allBoxes .sticky {
    position: sticky;
    height: 48.7674169346vw;
}
.allBoxes .sticky .imgSlide {
    width: 100%;
    position: relative;
}
.imgSlide {
    position: absolute;
    bottom: 0;
    width: 75%;
    pointer-events: none;
}
.imgSlide #featuresImg {
    transition: .4s;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: left bottom !important;
    background-color: transparent;
    background-blend-mode: soft-light !important;
    margin-top: -1.5rem;
    margin-top: -10rem;
}
.listing {
    position: relative;
    padding-top: 9vw;
}
.listing ul {
    padding-left: 30rem;
    margin: 0;
    margin-top: -20rem;
}
.listing ul li.active {
    opacity: 1;
}
.listing ul li {
    transition: .2s;
    list-style-type: none;
    opacity: .5;
    font-size: 1.07vw;
    line-height: 1.5vw;
    text-transform: uppercase;
    color: white;
}
.listing ul li i {
    font-style: normal;
    display: block;
    font-size: 4.76vw;
    line-height: 4.82vw;
    display: flex;
    flex-direction: row;
}
.listing ul li span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    height: 100px;
    padding-top: 1rem;
    text-transform: capitalize;
}
.number-first-title{
    font-size: 50px;
    font-weight: 700;
    color:white;
}
.number-second-title{
    font-size: 70px;
    font-weight: 600;
    color: white;
}
.number-description-text{
    font-size: 18px;
    font-weight: 400;
    color: white;
    padding-top: .4rem;
}
.our-values{
    position: relative;
    margin-top: -7rem;
    z-index: 545;
}
.value-item{
    height: 375px;
    margin-bottom: 2rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    background-color: var(--color1);
    position: relative;
}
.value-item-body{
   padding: 3rem;
   position: relative;
   z-index: 444;
}
.value-item-body > .value-item-title > h3{
    color: white;
    font-size: 30px;
    font-weight: 600;
}
.value-item-body > .value-item-text > p{
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding-top: 1rem;
}
.value-item:hover > .value-item-overlay{
    opacity: 1;
    z-index: 4;
}
.value-item-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.5s ease-in-out transform, 0.5s ease-in-out opacity; 
    z-index: 222;
}
.value-item-overlay > .img{
    position: relative;
    &::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: .6;
    }
}
.banner{
    height: 450px;
    background-repeat: no-repeat !important;
    background-position: 50% 50% !important;
    background-size: cover !important;
    position: relative;
    &::after {
        background-image: -webkit-linear-gradient(50deg, var(--color1) 0%, rgba(0, 0, 0, 0) 80%);
        width: 100%;
        height: 100%;
        content: "";
        top: 0;
        position: absolute;
        z-index: 99;
    }
}
.banner-description{
    padding-top: 15rem;
    z-index: 222;
    position: relative;
}
.banner-description > h1{
    font-size: 60px;
    color: white;
    font-weight: 600;
    text-align: left;
}
.page-content{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: url('../images/hizmet/pattern.png');
    background-position: 50% 50%;
    background-size: cover !important;
    background-repeat: no-repeat;
}
.page-content-description > p , strong , b >a {
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
}
.contact{
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.contact-adres-title > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
}
.contact-adres-menu > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    margin-left: -2rem;
    margin-top: 3rem;
}
.contact-adres-menu > ul > li {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.contact-adres-menu > ul > li > span{
    background-color: var(--color1);
    width:70px;
    height: 70px;
    border-radius: 999px;
    padding: 1rem;
    > i {
        color: white;
        font-size: 20px;
    }
}
.contact-adres-menu > ul > li > a{
    text-decoration: none;
    color: var(--color2);
    font-weight: 400;
    font-size: 18px;
    padding-left: .4rem;
}
.contact-form{
    background-color: var(--color1);
    height: 100%;
    padding: 3rem;
    border-radius: 10px;
}
.contact-form-title{
    padding-top: 0rem;
}
.contact-form-title > h3{
    color: white;
    font-size: 30px;
    font-weight: 600;
}
.form{
    margin-top: 2rem;
}
.wpcf7-form > .row > .form-group > input{
    margin-bottom: 1rem;
    padding: 1rem;
}
.form > form > .row > .form-group > textarea{
    height: 120px !important;
}
.form-check{
    margin-top: 1rem;
    margin-bottom: 1rem !important;
}
.form-check-label > a{
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}
.form-check-label > span {
    color: white;
    font-size: 16px;
    font-weight: 400;
}
.form-check-input:checked{
    background-color: var(--color1) !important;
    border-color: white !important;
}
.form-send{
    background-color: white;
    color: var(--color1);
    border: transparent;
    width: 120px;
    font-size: 18px;
    font-weight: 600;
    padding: .5rem;
	margin-top:-5rem;
}
.form-control{
    font-size: 18px;
    color: var(--color2);
    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,
.uneditable-input:focus {   
  border-color:var(--color1);
  box-shadow: 0 1px 1px var(--color1) inset, 0 0 8px var(--color1) !important;
  outline: 0 none;
}
::placeholder{
    font-size: 18px;
    color: var(--color2);
    font-weight: 400;
}
.contact-form-img > img{
    height: 800px;
	width:100%;
	object-fit:cover;
}
.b-0{
    border-radius: 0px;
}
.contact-form-text{
    padding-bottom: 2rem;
}
.contact-form-text > p{
    color: var(--color2);
    font-size: 18px;
    font-weight: 400;
}
.page-content-title > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 1rem;
}
.page-content-img > img{
    border-radius: 30px;
    margin-top: 2rem;    
	width: 100%;
	object-fit:cover;
}
.ui-size-large{
    height: 567px;
}
.page-content-btn{
    margin-top: 2rem;
}
.page-content-btn > a{
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
    height: 50px;
    font-size: 14px;
    border-radius: 15px;
    background-color: var(--color1);
    color: white;
    border: 1px solid var(--color1);
    text-decoration: none;
    &:hover{
        background-color: white;
        color: var(--color1);
        border-color: 1px solid var(--color1);
        transition: .5s ease;
    }
}
.about-us-page{
    padding-top: 5rem;
    padding-bottom: 0rem; 
    background-position: cover !important;
    background-position: 50% 50% !important;
    background: url("../images/kurumsal/tarihce-bg.png");
    background-position: cover !important;
    background-position: 50% 50% !important;
}
.slick-slider{
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
}
.ag-format-container {
    width: 1530px;
    margin: 0 auto;
}
.ag-timeline-block {
    padding: 50px 0;
    overflow-x: hidden !important;
}
.ag-timeline_box {
    position: relative;
}
.ag-timeline-carousel-arrow_box {
    z-index: 322;
    position: absolute;
    top: 0;
    left: 0;
}
.ag-timeline-carousel-arrow {
    display: block;
    height: 52px;
    width: 52px;
    border: 1px solid var(--color1) !important;
    background-color: var(--color1) !important;
    cursor: pointer;
    stroke: #FFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .2s ease-out 0s;
    -moz-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
    position: relative;
}
.ag-timeline-carousel-arrow:hover {
    border: 1px solid var(--color2);
    background-color: transparent;
}
.js-ag-timeline-carousel-arrow_prev {
    margin: 0 0 10px;
}
.js-ag-timeline-carousel-arrow_prev:hover,
.js-ag-timeline-carousel-arrow_next:hover {
    stroke: var(--color2);
 }
.svg-arrow-left,
.svg-arrow-right {
    height: 18px;
    width: 10px;
    margin: -8px 0 0 -5px;
    position: absolute;
    top: 50%;
    left: 50%;
}
.ag-timeline-carousel_list {
    padding: 0 0 0 100px;
}
.ag-timeline_year {
    line-height: 1;
    margin: 0 0 40px;
    font-weight: 500;
    font-size: 90px;
    color: var(--color1);
}
.ag-timeline_text p {
    line-height: 1.36;
    font-size: 18px;
    color: var(--color2);
}
.ag-timeline_text a {
    text-decoration: underline;
    color: var(--color1);
}
.ag-timeline_text a:hover {
    text-decoration: none;
}
.ag-timeline-carousel-nav_box {
    position: relative;
}
.ag-timeline-carousel-nav_box:before,
.ag-timeline-carousel-nav_box:after {
    content: "";
    height: 150px;
    width: 20%;
    margin: 0 0;
    z-index: 9999;
    position: absolute;
    bottom: 0;
}
.ag-timeline-carousel-nav_box:before {
   /* background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y0ZjRmNCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iI2Y0ZjRmNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNGY0ZjQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left,  rgba(244,244,244,0) 0%, rgba(244,244,244,1) 35%, rgba(244,244,244,1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(244,244,244,0)), color-stop(35%,rgba(244,244,244,1)), color-stop(100%,rgba(244,244,244,1)));
    background: -webkit-linear-gradient(left,  rgba(244,244,244,0) 0%,rgba(244,244,244,1) 35%,rgba(244,244,244,1) 100%);
    background: -o-linear-gradient(left,  rgba(244,244,244,0) 0%,rgba(244,244,244,1) 35%,rgba(244,244,244,1) 100%);
    background: -ms-linear-gradient(left,  rgba(244,244,244,0) 0%,rgba(244,244,244,1) 35%,rgba(244,244,244,1) 100%);
    background: linear-gradient(to right,  rgba(244,244,244,0) 0%,rgba(244,244,244,1) 35%,rgba(244,244,244,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f4f4f4', endColorstr='#f4f4f4',GradientType=1 );*/
    right: 0;
  }
  .ag-timeline-carousel-nav_box:after {
    /*background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y0ZjRmNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY1JSIgc3RvcC1jb2xvcj0iI2Y0ZjRmNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNGY0ZjQiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left,  rgba(244,244,244,1) 0%, rgba(244,244,244,1) 65%, rgba(244,244,244,0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(244,244,244,1)), color-stop(65%,rgba(244,244,244,1)), color-stop(100%,rgba(244,244,244,0)));
    background: -webkit-linear-gradient(left,  rgba(244,244,244,1) 0%,rgba(244,244,244,1) 65%,rgba(244,244,244,0) 100%);
    background: -o-linear-gradient(left,  rgba(244,244,244,1) 0%,rgba(244,244,244,1) 65%,rgba(244,244,244,0) 100%);
    background: -ms-linear-gradient(left,  rgba(244,244,244,1) 0%,rgba(244,244,244,1) 65%,rgba(244,244,244,0) 100%);
    background: linear-gradient(to right,  rgba(244,244,244,1) 0%,rgba(244,244,244,1) 65%,rgba(244,244,244,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#00f4f4f4',GradientType=1 );*/
    left: 0;
}
.ag-timeline-carousel-nav_list {
    position: relative;
}
.ag-timeline-carousel-nav_list:after {
    content: "";
    height: 1px;
    background-color: var(--color1);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
}
.ag-timeline-carousel-nav_item {
    display: inline-block;
    line-height: 1;
    width: 70px;
    padding: 130px 15px 0;
    cursor: pointer;
    vertical-align: bottom;
    text-align: center;
    font-size: 18px;
    color: var(--color1);
    position: relative;
}
.ag-timeline-carousel-nav_item:before {
    content: "";
    height: 5px;
    width: 5px;
    margin: 0 auto;
    background-color: var(--color1);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 102px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.ag-timeline-carousel-nav_item:after {
    content: "";
    height: 40px;
    width: 1px;
    margin: 0 auto;
    background-color: var(--color1);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 52px;
}
.ag-timeline-carousel-nav_item.slick-current {
    margin: -5px 0 0;
    font-weight: 700;
    font-size: 22px;
    color: var(--color1);
}
.ag-timeline-carousel-nav_item.slick-current:before {
    height: 16px;
    width: 16px;
    background-color: var(--color1);
    bottom: 110px;
}
.ag-timeline-carousel-nav_item.slick-current:after {
    bottom: 59px;
}
.ag-timeline-img > img{
    border-radius: 15px;
    margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
.ag-format-container {
    width: 96%;
}
.ag-timeline-carousel_list {
    padding: 0;
}
.ag-timeline-carousel-arrow_box {
    padding: 12px 0 12px 12px;
    background-color: #F4F4F4;
    z-index: 1000;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
}
.ag-timeline-carousel-arrow {
    display: inline-block;
    height: 33px;
    width: 33px;
}
.js-ag-timeline-carousel-arrow_prev {
    margin: 0 8px 0 0;
}
.js-ag-timeline-carousel-arrow_prev:before,
.js-ag-timeline-carousel-arrow_next:before {
    height: 12px;
    width: 8px;
    margin: -6px auto 0;
}
.ag-timeline_year {
    font-size: 60px;
}
.ag-timeline-carousel-nav_box:before,
.ag-timeline-carousel-nav_box:after {
    display: none;
    background: none;
    position: static;
}
.svg-arrow-left, .svg-arrow-right {
    height: 12px;
    width: 8px;
    margin: -6px 0 0 -4px;
}
}
@media only screen and (max-width: 639px) {
}
@media only screen and (max-width: 479px) { 
}
@media (min-width: 768px) and (max-width: 979px) {
.ag-format-container {
    width: 750px;
}
} 
@media (min-width: 980px) and (max-width: 1161px) {
  .ag-format-container {
    width: 960px;
  }
}
.fa-chevron-right , .fa-chevron-left{
    padding: 1.1rem;
    color: white;
    font-size: 16px;
}
.qualiy-document{
    background: url('../images/hizmet/pattern.png');
    background-position: 50% 50%;
    background-size: cover !important;
    background-repeat: no-repeat;
    padding-bottom: 5rem; 
}
.section-quality-document-title > h3{
    color: var(--color1);
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 2rem;
}
.product{
    padding-top: 15rem;
    padding-bottom: 10rem;
    background-color: var(--color2);
    background-position: 50% 50%;
    background-size: cover !important;
    background-repeat: no-repeat;
}
.product-item{
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.product-item-img{
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--color2);
    border-radius: 10px;
    position: relative;
    transition: transform .2s ease-in-out; 
    &::before{
        content: "";
        position: absolute;
        background-color: var(--color2);
        width: 100%;
        height: 100%;
        opacity: .1;
    }
    >img{
        transition: transform .5s ease-in-out;
    }
}
.product-item:hover > .product-item-img > img{
    transform: scale(1.17); 
}
.project-item-body > .title{
    position: absolute;
    bottom: 35px; 
    left: 50%;
    transform: translate(-50% , -50% );
}
.project-item-body > .title > h3{
    color: white;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    text-shadow:1px 1px 1px var(--color1);
}
.product-item:hover > .product-item-overlay{
    opacity: 1;
}
.product-item-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition:  .5s ease-in-out;
    background: rgb(0,125,139);
    background: linear-gradient(360deg, rgba(0,125,139,1) 0%, rgba(51,51,51,0.165703781512605) 25%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007d8b",endColorstr="#333333",GradientType=1);
    border-radius: 10px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.product-detail{
    background-color:white;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.product-part{
    padding-bottom: 5rem;
    padding-top: 5rem;
}
#owl-part-slider > .owl-nav{
    display: none !important;
}
#owl-part-slider > .owl-dots{
    display: none !important;
}
/************************************************/
footer{
    background-color: var(--color1);
    padding-top: 5rem;
    padding-bottom: 3rem;
}
.footer-web-site-logo > a > img{
    filter: brightness(0) invert(1);
    width: 250px;
}
.footer-about-us > p{
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding-top: 1.5rem;
}
.footer-navigation-menu-title > h3 {
    color: white;
    font-size: 25px;
    font-weight: 600;
}
.footer-navigation-menu-title > ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    list-style-type: none;
    margin-left: -2rem;
}
.footer-navigation-menu-title > ul > li {
    padding-top: 1rem;
}
.footer-navigation-menu-title > ul > li > a{
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}
.footer-bottom{
    padding-top: .5rem;
    background-color: var(--color2);
}
.footer-social-menu > ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    margin-top: 1rem;
    margin-left: -2rem;
}
.footer-social-menu > ul > li {
    padding-right: 1rem;
}
.footer-social-menu > ul > li > a > i{
    font-size: 18px;
    color: white;
    border: 1px solid white;
    padding: .6rem;
    border-radius: 30px;
}
.text-coprigyt > p {
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding-top: .5rem;
    text-align: left;
}
.text-coprigyt-link{
    padding-top: .5rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    > a{
        color: white;
        text-decoration: none;
        font-size: 18px;
        font-weight: 400;
    }
}
.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: 14px;
    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:23px;
    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;
    }
}
.popup-box > button {
    position: fixed;
    bottom: 80px;
    right:0px;
    background-color: transparent;
    border: none;
    z-index:787;
    width: 6%;
    &:hover{
        background-color: transparent;
    }
}
.popup-box > img{
    width: 5%;
}
.modal-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    > h5{
        color: #007d8b;
        font-weight: 600;
        font-size: 30px;
    }
}
.modal-header > .close{
    position: relative;
    background-color: #007d8b;
    color: white;
    border: none !important;
    width: 40px;
    height: 40px;
}
.scrollup {
    width:60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color:var(--color1);
    border-radius: 30px;
    border: 1px solid white;
    z-index: 222;
    }
    @keyframes scale2 {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    } 
.scrollup > i {
    color: white !important;
}
.sub-product-item{
    border: 3px solid var(--color1);
    border-radius: 20px;
    padding: 1rem;
}
.sub-product-item-img > img{
    width: 225px;
}
.sub-product-item-title > h3{
    text-align: center;
    color: var(--color1);
    font-size: 20px;
    font-weight: 600;
}
.pt-12{
    padding-top: 12.3rem;
}
.form-check-label{
	    position: relative;
    top: -47px;
}

.mobil-slider-img > img{
	height:400px;
	width:100%;
	object-fit:cover;
}

.page-content-text {
	padding-top:2rem;
}

.accordion-submenu  > li > a {
	    text-transform: capitalize !important;
}

.mobil-slider-img > video{
	    height: 50vh;
    object-fit: cover;
    position: relative;
    overflow: hidden;
	width:100%;
	max-width:100%;
}
