#PageSection{
    /* background-color: rgba(255, 255, 255, 255);*/
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.15);
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    overflow: hidden;
}

.pageTitle{
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-top: 1.5rem !important;
    margin-bottom: 50px;
    font-size: 3rem;
    line-height: 3.5rem;
}

.lazer-teklif-box{
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 10px;
    height: 100%;
}

.lazer-teklif-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lazer-teklif-icons-img{
    margin: 0 15px;
    max-height: 77px;
    max-width: 77px;
    color: rgba(0, 0, 0, 0.3);
}

.lazer-teklif-title{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 20px;
    color: #222222;
}

.lazer-teklif-text{
    color: #476175;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.lazer-teklif-btn-box{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.lazer-teklif-btn{
    padding: 10px 40px;
    background-color: #222222;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    transition: 210ms all ease;
    text-decoration: none !important;
}

.lazer-teklif-btn:hover{
    background-color: #212529;
    /* color: rgb(255, 0, 0); */
    text-decoration: none;
}

.lazer-kesim-text-box{
    display: flex;
    flex-direction: column;
    text-align: start;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    font-family: Inter;
}

.lazer-kesim-text-box p {
    color: #212529;
    font-family: 'Inter',sans-serif;
    font-weight: 400;
}

.lazer-kesim-detay-box > h3 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 3rem;
}

.lazer-kesim-detay-box > h1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
    font-weight: 600;
}

.lazer-kesim-detay-box > p {
    font-size: 1.25em;
    font-weight: 400;
    font-family: Inter;
    color: #374151;
    margin-bottom: 50px;
}

.laser-cutting-advantage-list{

}

.laser-cutting-advantage-item{
    font-size: 16px;
    font-family: Inter;
}

.laser-cutting-advantage-item p{
    color: #212529 !important;
}

.lazer-kesim-image img{
    max-width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.lazer-siparis-section{
    /* background: linear-gradient(168deg, #fafafa 0%, #ebebeb 100%); */
    width: 100% !important;
    text-align: center;
    height: 300px;
    padding: 50px 0px;
    height: 100%;
    margin-bottom: 20px;
}

.lazer-siparis-title h3{
    font-size: 2rem;
    font-weight: 700;
    font-family: Inter;
}

.lazer-siparis-box{
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.lazer-siparis-box img{
    width: 250px;
    height: 250px;
}

.lazer-siparis-box h3{
    padding-top: 20px;
    font-size: 24px;
    text-transform: none;
}

.abkant-bukum-box{
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 100%;
}

.abkant-bukum-box h5 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5em;
    padding-top: 20px;
    text-align: center;
}

.abkant-bukum-box p{
    font-size: 13px;
    font-weight: 400;
    line-height: 2em;
    font-family: 'Inter',sans-serif;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.title1{
    font-size: 36px;
    line-height: 1.4em;
    font-weight: 700;
}

.summary1{
    font-family: 'Inter',sans-serif;
    font-weight: 400;
    font-size: 15px;
}


/* ---------------------------------------------------------------------------------------------------------------------------------- */
.popup {
    z-index: 999;
    display: block;
    position: fixed;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.25);
    width: 400px;
    padding: 20px 30px;
    background: #fff;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, .15);
    border-radius: 10px;
    transition: top 0s ease-in-out .2s, opacity .2s ease-in-out, transform .2s ease-in-out
}
  
.popup.active {
    top: 50%;
    z-index: 10000;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: top ease-in-out, opacity .2s ease-in-out, transform .2s ease-in-out
}
  
.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 23px;
    height: 23px;
    background: #888;
    color: #eee;
    text-align: center;
    line-height: 20px;
    border-radius: 15px;
    cursor: pointer;
}
  
.popup .form h2 {
    text-align: center;
    color: #222;
    margin: 10px 0 20px;
    font-size: 25px;
    font-family: 'Oswald', sans-serif;
}
  
.popup .form .form-element {
    margin: 15px 0;
    font-family: 'Oswald', sans-serif;
}
  
.popup .form .form-element label {
    font-size: 14px;
    color: #222
}
  
.popup .form .form-element input {
    border: 1px solid rgba(0, 0, 0, .225) !important;
    border-radius: 10px;
}
  
.popup .form .form-element input[type=password],
.popup .form .form-element input[type=text]  
{
    margin-top: 5px;
    display: block;
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid rgba(0, 0, 0, .225);
    border-radius: 5px
}
  
.popup .form .form-element input[type=checkbox] {
    margin-right: 5px
}


.popup .form .form-element input[type=file] {
    padding: 5px;
    width: 100%;
}
  
.popup .form .form-element button {
    width: 100%;
    height: 40px;
    border: none;
    outline: 0;
    font-size: 16px;
    background: #000229;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
}

.popup .form .form-element textarea{
    min-height: 100px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .225);
    padding: 5px;
}

.overlay-sidebar {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
}
  
.show-overlay-sidebar {
    z-index: 9999;
    visibility: visible;
    background-color: rgba(0, 0, 0, .65)
}
/* ---------------------------------------------------------------------------------------------------------------------------------- */

.hizmetler-nav{
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin-top: -50px;
    margin-bottom: 70px;
    /* padding-left: 30px; */
}

.hizmetler-nav li{
    margin-left: 35px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left-style: none;
    border-top-style: none;
    border-bottom-style: none;
}

.hizmetler-nav li a{
    color: #000229;
    text-decoration: none !important;
    transition: 0.2s ease;
    font-size: 1.2rem;
}

.hizmetler-nav li a:hover{
    background-color: #212529;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.back-button{
    border: 1px solid rgb(24 24 27 / .05);
    background-color: rgb(250 250 250 / 1);
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
    justify-content: center;
    align-items: center;
    box-shadow:  0 4px 6px -1px rgba(39, 39, 42, .05) !important; 
}

.back-button svg{
    color: #71717a;
    width: 1rem;
    height: 1rem;
}

.stroke-zinc-500
{
  stroke: #71717a;
}

@media(max-width: 576px) {
    .lazer-siparis-box img{
        width: 100%;
        height: 100%;
    }

    .hizmetler-nav{
        margin-bottom: 0;
    }

    .hizmetler-nav li{
        margin-left: 0;
    }

    .hizmetler-nav li a{
        font-size: 14px;
    }

    .lazer-kesim-text-box{
        font-size: 16px;
        text-align: justify;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .lazer-siparis-section{
        padding: 0;
    }

    .lazer-siparis-title h3{
        line-height: 2.3rem;
    }

    .pageTitle{
        font-size: 2.5rem;
        line-height: 3.5rem;
    }

    .abkant-bukum-box h5{
        line-height: 1.2em;
        font-size: 18px;
    }
    
    .abkant-bukum-box p{
        line-height: 1.2em;
        font-size: 13px;
    }
}

#video-player-1{
    width: 100%;
    height: 100%;
    margin-top: 50px;
}

#video-player-1 video{
    border-radius: 20px;
    width: 100%;
    border: 1px solid #ebebeb;
}