/* about */

.about {
    background-color: #fff;
    padding: 70px 0px;
}

.about_bd {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    column-gap: 50px;
}

.about_bd_list{
    align-self: center;
}

.ab_line {
    background-color: #f7f7f7;
    height: 2px;
    width: 100%;
    margin-bottom: 35px;
}

.about_bd_list p:nth-child(1) {
    font-size: 90px;
    color: #e18731;
    padding: 0px;
    font-weight: 500;
}

.about_bd_list p {
    font-size: 30px;
    color: #4b686a;
    font-weight: 500;
}

.about_bd_list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.counter_bd {
    display: flex;
    justify-content: space-around;
    column-gap: 20px;
}

.counter {
    color: transparent!important;
    font-family: 'Oswald', sans-serif;
    -webkit-text-stroke-color: #e18731;
    -webkit-text-stroke-width: 2px;
}

.counter_bd span {
    font-size: 60px;
}

.counter_bd_list p{
    font-size: 20px;
    text-align: center;
    
}

.about_content {
    margin-top: 40px;
}

.about_content p {
    font-size: 18px;
    line-height: 1.5;
    color: #4b686a;
}

@media (max-width: 1025px) {

    .about_bd_list{
        height: 100%;
    }
    
    .about_bd_list p:nth-child(1) {
        font-size: 66px;
        color: #e18731;
        padding: 0px;
        font-weight: 500;
    }

    .about_bd_list p {
        font-size: 22.8px;
        color: #4b686a;
    }
    

    .about_bd {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 50px;
        row-gap: 50px;
    }

    .about_bd_list:nth-child(2) {
        width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: 10px;
    }

}

@media (max-width: 822px) {    

    .about_bd_list:nth-child(2) {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 10px;
    }

}

@media (max-width: 576px) {    

    .about {
        background-color: #fff;
        padding: 40px 0px;
        overflow: hidden;
    }

    .about_bd {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 50px;
        row-gap: 50px;
    }

    
    .about_bd_list:nth-child(1) {
        order: 2;
    }

    .about_bd_list:nth-child(2) {
        order: 1;
        height: 300px;
    }

    .about_bd_list p:nth-child(1) {
        font-size: 40px;
        color: #e18731;
        padding: 0px;
        font-weight: 500;
    }

    .about_content {
        margin-top: 10px;
    }

    .counter_bd {
        display: flex;
        justify-content: space-around;
        column-gap: 20px;
    }

    
    .about_bd_list p {
        font-size: 18px;
        color: #4b686a;
        font-weight: 500;
    }

    .counter_bd_list {
        margin-bottom: 20px;
    }

    .counter_bd span {
        font-size: 40px;
    }
    
    .counter_bd_list p{
        font-size: 14px;
        text-align: center;
    }

    .counter {
        color: transparent!important;
        font-family: 'Oswald', sans-serif;
        -webkit-text-stroke-color: #e18731;
        -webkit-text-stroke-width: 1px;
    }    

    .about_content p {
        font-size: 16px;
        line-height: 1.5;
    }

}


/* special */

.special {
    background-color: #fff;
    padding: 70px 0px;
}

.special_title{
    margin-bottom: 50px;
}

.special_title h2 {
    font-size: 60px;
    color: #e18731;
    font-weight: 500;

}

.special_bd_list {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 50px;
}

.special_bd_list img {
    display: block;
    width: 100px;
}

.special_bd_list_p p:nth-child(1) {
    font-size: 20px;
    font-weight: 500;
    color: #4b686a;
}

.special_bd_list_p p:nth-child(2) {
    font-size: 18px;
    font-weight: 400;
    color: #4b686a;
}

.special_bd_list_p:nth-child(1) {
    text-align: end;
}

@media (max-width: 576px)  {

    .special_title h2 {
        font-size:40px;
        color: #e18731;
        font-weight: 500;
    
    }

    .special_bd_list img {
        margin: 0 auto;
        margin-bottom: 10px;
    }

    
    .special_bd_list_p {
        text-align: center !important;
    }

    .special_bd_list_p p:nth-child(1) {
        font-size: 18px;
        font-weight: 500;
        color: #e18731;
        margin-bottom: 25px;
    }

    .special_bd_list {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 30px;
        margin-bottom: 50px;
    }

    .special_bd_list_p p:nth-child(2) {
        font-size: 16px;
        font-weight: 400;
        color: #4b686a;
    }

    .special_bd_list_img {
        order: 1;
    }

    .special_bd_list_p {
        order: 2;
    }

}