@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* font-family: "Poppins", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Judson:ital,wght@0,400;0,700;1,400&display=swap');


/*   font-family: "Judson", serif; */


.container {
    max-width: 1025px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    border: 1px solid transparent;
     box-shadow: 3px -3px 8px 0 rgba(0, 0, 0, 0.2), -3px 3px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ffffff;
}


.description-part {
    max-width: 925px;
    margin: 50px;
    background: #F08526;
    border-radius: 10px;
    min-height: 534px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.import-section {
    padding: 50px 0;
}

h1,
h2 {
    text-align: center;
}

.description-part h1 {
    font-size: 36px;
    color: white;
    font-family: "Judson", serif;
    margin-bottom: 6px;
    font-weight: 400;
}

.description-part h2 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Judson", serif;
    font-weight: 300;
    margin-bottom: 30px;

}

.logo {
    text-align: center;
    padding: 40px 0;
}

.import-file {
    max-width: 600px;
    background: #ffffff;
    border-radius: 40px;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: "Poppins", sans-serif;
     transition: 0.5s all ease-in;
}

.png {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.import-file img {
    width: 18px;
    height: 18px;
}
.import-file:hover{
    color: var(--orange);
}
.import-file:hover img{
    
      transform: scale(1.1);
}

.text-box {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 14px;
}

.back-btn {
    padding: 16px 32px;
    border: 1px solid white;
    border-radius: 20px;
    margin-bottom: 30px;
    color: white;
    font-family: "Judson", serif;
}

.back-btn:hover {
    color: black;
    background: #ffffff;
    transition: 0.5s all linear;
}



/*==============================================
MEDIA QUERIES
=================================================
*/
@media screen and (max-width:992px) {
    .description-part {
        padding: 35px 20px;
        min-height: auto;
    }

    .description-part h1 {
        font-size: 30px;
    }

    .description-part h2 {
        font-size: 15px;
    }

    .import-file {
        padding: 13px 18px;
        font-size: 15px;
    }

    .text-box {
        max-width: 520px;
    }
   
}

@media screen and (max-width:768px) {
    .import-section {
        padding: 30px 10px;
    }

    .description-part {
        border-radius: 14px;
        padding: 30px 15px;
    }

    .logo img {
        width: 70px;
        margin-bottom: 20px;
    }

    .description-part h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .description-part h2 {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .text-box {
        max-width: 100%;
    }

    .import-file {
        padding: 12px 16px;
        font-size: 14px;
    }

    .import-file img {
        width: 16px;
        height: 16px;
    }

    .back-btn {
        padding: 8px 28px;
        font-size: 14px;
    }
}

@media screen and (max-width:576px) {
    .description-part h1 {
        font-size: 22px;
    }

    .description-part h2 {
        font-size: 13px;
    }

    .import-file {
        padding: 11px 14px;
        font-size: 13px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}