* {
    box-sizing: border-box;
}
.row-one{
    color: #1F3A5F;
     padding-top: 50px;
}
.title-one{
    font-size: 3vw;
    line-height: 1.2em;
    font-weight: 600;
    font-style: normal;
    text-decoration: initial;
    letter-spacing: 0px;
    margin-bottom: 20px;
    text-align: center;
}
.title-two{
    font-size: 2.5vw;
    line-height: 1.2em;
    font-weight: 600;
    font-style: normal;
    text-decoration: initial;
    letter-spacing: 0px;
    text-align: center;
}
.info-one{
    margin: 0;
    color: #1F3A5F;
    font-size: 1vw;
    line-height: 1.7em;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 30px;
    text-align: center;
}
.info-two{
    margin: 0;
    color: #1F3A5F;
    font-size: 1.2vw;
    line-height: 1.7em;
    text-align: center;
}
.input-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    text-align: center;
    justify-content: center;
}
.input-wrapper input[type="text"] {
    font-size: 18px;
    padding-left: 40px;
    width: 50%;
    padding: 10px;
    border: 1px solid #ccc;
    border-top-left-radius: 5px 5px;
    border-bottom-left-radius: 5px 5px;
    box-sizing: border-box;
}
.input-wrapper button {
    font-size: 18px;
    color: #ffffff;
    border: none;
    background-color: rgba(0, 119, 182, 0.55);
    border-top-right-radius: 5px 5px;
    border-bottom-right-radius: 5px 5px;
    box-sizing: border-box;
    padding: 10px;
}
.input-wrapper button:hover{
    background-color: #50C0F0;
    color: #1F3A5F;
    transition: 0.2s;
}

.shipment-info{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.shipment-card{
    background-color: #EDE6E6;
    color: #1F3A5F;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.status{
    background-color: #FBF7F7;
    text-align: center;
    padding: 10px;
}

.shipment{
    padding: 20px;
}

.shipment p, .status p{
    padding-bottom: 20px;
}

.shipment span{
    font-weight: 600;
}

.btn-container{
    display: flex;
    justify-content: center;
}

.close-btn{
    border-radius: 25px;
    background-color: #1D4E89;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: normal;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
    transition: box-shadow .15s, transform .15s;
    margin-bottom: 10px;
}

.close-btn:focus {
    box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}

.close-btn:hover{
    transition: 0.2s;
    box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
    transform: translateY(-2px);
}

.close-btn:active {
    box-shadow: #3c4fe0 0 3px 7px inset;
    transform: translateY(2px);
}

@media screen and (max-width: 1350px){
    .title-one{
        font-size: 3vw;
    }
    .info-one{
        font-size: 1.3vw;
    }
    .info-two{
        font-size: 1.5vw;
    }
    .title-two{
        font-size: 2.5vw;
    }
}
@media screen and (max-width: 990px){
    .title-one{
        font-size: 4vw;
    }
    .info-one{
        font-size: 1.6vw;
    }
    .info-two{
        font-size: 1.8vw;
    }
    .title-two{
        font-size: 2.8vw;
    }
}
@media screen and (max-width: 760px){
    .title-one{
        font-size: 5vw;
    }
    .info-one{
        font-size: 1.9vw;
    }
    .info-two{
        font-size: 2.1vw;
    }
    .title-two{
        font-size: 3.5vw;
    }
}
@media screen and (max-width: 600px){
    .title-one{
        font-size: 5.5vw;
    }
    .info-one{
        font-size: 2.3vw;
    }
    .info-two{
        font-size: 2.5vw;
    }
    .title-two{
        font-size: 4vw;
    }
}
@media screen and (max-width: 500px){
    .title-one{
        font-size: 5.9vw;
    }
    .info-one{
        font-size: 2.6vw;
    }
    .info-two{
        font-size: 2.8vw;
    }
    .title-two{
        font-size: 4.7vw;
    }
    .shipment p, .status p{
        padding-bottom: 15px;
    }
    .input-wrapper button {
        font-size: 15px;
    }
}
@media screen and (max-width: 450px){
    .title-one{
        font-size: 6.1vw;
    }
    .info-one{
        font-size: 2.9vw;
    }
    .info-two{
        font-size: 3.1vw;
    }
    .title-two{
        font-size: 5vw;
    }
    .shipment p, .status p{
        padding-bottom: 10px;
    }
    .shipment-card{
        margin: 0 20px;
    }
    .input-wrapper{
        margin: 0px 20px 30px 20px;
    }
    .input-wrapper button {
        font-size: 14px;
    }
}

/*new section*/
.help-section{
    margin: 3rem 0 3rem 0;
}

.help-container{
    display: flex;
    flex-direction: column;
    background-color: #6CB4D9;
    margin: 0 auto;
    width: 70%;
    border-radius: 20px;
    padding: 3rem 1rem 3rem 1rem;
}
.faq-list > div {
    border-bottom: 0.07em solid #6CB4D9;
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0px 5px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 0.5rem;
} 
.faq-list > div:last-child {
    border: unset;
}
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
summary:hover {
    color: #fff;
}
details[open] summary ~ * {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0%    {opacity: 0; margin-left: -10px}
    100%  {opacity: 1; margin-left: 55px}
}

details[open] summary {
    color: #fff;
}
details[open] p {
    border-left: 2px solid #fff;
    margin-left: 55px;
    padding-left: 25px;
    margin-bottom: 0!important;
    opacity: 100;
    transition: all 3s ease;
}
.faq-list {
    width: 90%;
    margin: 1em auto;
    padding-bottom: 2em;
}
summary::-webkit-details-marker {
    display: none;
}
summary {
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5em; 
}
summary::before {
    content: "+";
    color: #fff;
    font-size: 1.8em;
    font-weight: 600;
    background: transparent;
    border-radius: 0.3em;
    width: 25px;
    text-align: center;
}
details[open] summary::before {
    content: "–";
    font-size: 1.8em;
    font-weight: 200;
}
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
     color: #1F3A5F;
}
.label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    justify-content: center;
}
.font{
    font-size: 1vw;
    line-height: 1.4;
    color: #1F3A5F;
}  
.contact-container .font{
    font-weight: 600;
}
.icon {
    width: 35px;
    height: 35px;
}

@media screen and (max-width: 1350px) {
    .font {
        font-size: 1.4vw;
    }
}
@media screen and (max-width: 900px) {
    .font  {
        font-size: 1.9vw;
    }
}
@media screen and (max-width: 750px) {
    .font  {
        font-size: 2vw;
    }
}
@media screen and (max-width: 650px) {
    .font  {
        font-size: 2.6vw;
    }
}   
@media screen and (max-width: 500px) {
    .help-container{
        width: 80%;
    }
    .font{
        font-size: 2.8vw;
    }
    details[open] p {
        margin-left: 30px;
        padding-left: 20px;
    }
    .contact-container {
        gap: 0;
    }
}
@media screen and (max-width: 465px) {
    .font  {
        font-size: 3.5vw;
    }
    .faq-list {
        width: 100%;
    }
}
@media screen and (max-width: 380px) {
    .font  {
        font-size: 3.6vw;
    }
}


