select{
    border: none;
    outline: 0;
}
.row-container{
    display: flex;
    flex-direction: row;
}
.col-container{
    display: flex;
    flex-direction: column;
}
.main-wrapper{
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 25px 20px;
}
@media only screen and (min-width: 500px) {
    .main-wrapper{
        padding: 0px 10vw;
    }
    .general-section{
        padding: 0 2vw;
    }
}
@media only screen and (min-width: 768px) {
    .main-wrapper{
        padding-left: 30px!important;
        padding-right: 30px!important;
    }
}
@media only screen and (min-width: 1024px) {
    .main-wrapper{
        padding-left: 6vw!important;
        padding-right: 6vw!important;
    }
}

.bg-primary{
    background-color: var(--colorPrimary)!important;
}
.bg-accent{
    background-color: var(--colorAccent)!important;
}
.color-gray{
    color: var(--colorGray);
}
.color-primary{
    color: var(--colorPrimary)!important;
}
.color-accent{
    color: var(--colorAccent)!important;
}
.btn{
    background-color: var(--colorPrimary);
    padding: 15px 25px;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
    transform: scale(1);
    text-align: center;
    display: block;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn-border-white{
    border: 1px solid var(--colorWhite);
}
.btn:hover{
    transform: scale(1.05);
    background-color: white;
    color: black;
    border: 1px solid var(--colorWhite)
}


.btn2{
    background-color: white;
    padding: 15px 25px;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
    transform: scale(1);
    text-align: center;
    display: block;
    border: 1px solid transparent;
    cursor: pointer;
    color:black !important;
    }
.btn2-border-white{
    border: 1px solid var(--colorWhite);
}
.btn2:hover{
    transform: scale(1.05);
    background-color: #FE4664;
    color: white !important;
}


.btn3{
    background-color: var(--colorAccent);
    padding: 15px 25px;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
    transform: scale(1);
    text-align: center;
    display: block;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn3-border-white{
    border: 1px solid var(--colorWhite);
}
.btn3:hover{
    transform: scale(1.05);
    background-color: #FE4664;
    color: white;
}


input[type="text"]{
    border-radius: 8px;
    padding-left: 15px;
}
/* ---------------------- HEADER ---------------------- */
header .main-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    padding-top: 15px;
}

header .main-logo{
    height: 100px;
    margin: 0 auto;
    display: block;
    margin-bottom: 60px;
}
header .button-section{
    display: flex;
}
@media only screen and (min-width: 768px) {
    header .main-wrapper{
        flex-direction: row;
        padding-bottom: 0px;
        padding-top: 30px;
    }
    header .main-logo{
        height: 80px;
        margin-left: 90px;
    }
    header .button-section{
        display: flex;
        gap: 4vw;
    }
}
/* ------------------- PRIMERA SECCION ------------------- */
#first-section {
    position: relative;
    color: var(--colorWhite);
}
#first-section .left-image{
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}
#first-section .main-wrapper{
    display: flex;
    flex-direction: column;
    gap: 5vh;
}
#first-section .info-wrapper h1{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
#first-section .track-wrapper{
    display: none;
    justify-content: space-between;
    gap: 30px;
    margin-top: 25px;
    font-size: 2rem;
}
#first-section input[type="text"]{
    flex: 4;
}
#first-section .track-wrapper button{
    color: white;
}
#first-section .budget-wrapper{
    height: 80vh;
    background-color: var(--colorWhite);
    border-radius: 10px;
    min-height: 420px;
    max-height: 550px;
    overflow: hidden;
}
@media only screen and (min-width: 768px) {
    #first-section{
        border-radius: 0 0 0 250px;
    }
    #first-section .main-wrapper{
        flex-direction: row;
        gap: 5vw;
        align-items: center;
    }
    #first-section .left-image{
        display: block;
        width: 55px;
    }
    #first-section .info-wrapper{
        flex: 1;
        padding-left: 5vw;
    }
    #first-section .info-wrapper h1{
        font-size: 5rem;
        text-align: left;
    }
    #first-section .track-wrapper{
        display: flex;
        flex-direction: row;
    }
    #first-section .budget-wrapper{
        flex: 1;
        
    }
}
@media only screen and (min-width: 1024px) {
    #first-section .main-wrapper{
        padding-bottom: 24px;
    }
    #first-section .left-image{
        width: 70px;
    }
    #first-section .info-wrapper{
        }
    #first-section .info-wrapper h1{
        font-size: 6rem;
    }
}
.budget-wrapper .budget-container {
    display: flex;
    will-change: transform;
    height: 100%;
}
.budget-wrapper .budget-container .slide {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    background-color: var(--colorWhite);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--colorBlack);
    align-items: center;
    text-align: center;
}
.budget-wrapper .budget-container .slide .btn-go-back{ 
    cursor: pointer;
} 

.budget-wrapper .budget-container .slide .btn2-go-back{ 
    cursor: pointer;
} 

.budget-wrapper .budget-container .slide h2{
    margin: 0 0 20px 0;
}
/* ------------- FORMULARIO ------------- */
.budget-container .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.budget-container select{
    background-color: #eee;
    font-size: 1.6rem;
    padding: 5px 18px;
    border-radius: 8px;
}
.budget-container  input[type="text"],
.budget-container  input[type="number"]
{
    background-color: #eee;
    font-size: 1.6rem;
    padding: 5px 18px;
    border-radius: 8px;
    width: 100%;
}
.budget-container .slide h3{
    margin: 0 0 10px 0;
}
/* Parte I */
.budget-container .slide .content .shipment-type [type="radio"]{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.budget-container .slide .content .shipment-type{
    width: 40%;
    color: var(--colorBlack);
}
.budget-container .slide .content .shipment-type > div{
    border: 2px solid rgb(235, 235, 235);
    border-radius: 8px;
    cursor: pointer;
}
.budget-container .slide .content .shipment-type [type=radio]:checked + div{
    border: 2px solid var(--colorPrimary);
}
/* Parte II */
.content.budget-part-ii{
    height: 100%;
    width: 100%;
    padding-top: 60px;
    gap: 40px;
}
.content.budget-part-ii > div{
    width: 100%;
}
.content.budget-part-ii h3{
    text-align: left;
    width: 100%;
}
.content.budget-part-ii .form-control{
    display: flex;
    flex-direction: column;
}
.content.budget-part-ii .form-country{
    width: 45%;
}
.content.budget-part-ii .form-zip{
    width: 45%;
}
.content .form-control label{
    text-align: left;
    color: var(--colorBlack);
    font-weight: bold;
    margin: 15px 0 10px 0;
    width: 100%;
    display: inline-block;
}
/* Parte III */
.content.budget-part-iii{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    height: 100%;
    padding: 30px 0 60px 0;
}
.content.budget-part-iii label{
    margin: 5px 0 10px 0;
}
.budget-container .slide [type="submit"]{
    color: var(--colorWhite);
}
/* ------------------------------------------ */
/* -------------------- SECCION DE MARCAS -------------------- */
#brands-section{
    height: 30px;
    margin: 0 0 30px 0;
}
#brands-section > img {
    width: 100%;
    object-fit: cover;
}
@media only screen and (min-width: 728px) {
    #brands-section{
        margin: 0;
        height: 30px;
    }
}
/* -------------------- SEGUNDA SECCION -------------------- */
#second-section .main-wrapper{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
#second-section .feat-item img{
    width: 62px;
    height: auto;
    margin: 0 auto;
    display: block;
}
#second-section .feat-item h5{
    margin: 15px 0;
    font-size: 1.8rem;
    text-align: center;
}
@media only screen and (min-width: 728px) {
    #second-section {
        margin-top: 7.5vh;
    }
    #second-section .main-wrapper{
        gap: 40px 80px;
        grid-template-columns: repeat(2, 1fr);
    }
    #second-section .feat-item img{
        margin: 0;
    }
    #second-section .feat-item h5{
        text-align: left;
    }
}
@media only screen and (min-width: 1024px) {
    #second-section .main-wrapper{
        gap: 40px 60px;
        grid-template-columns: repeat(4, 1fr);
    }
}
/* -------------------- TERCERA SECCION -------------------- */
#third-section .main-wrapper h2{
    text-align: left;
    margin-bottom: 25px;
}
@media only screen and (min-width: 728px) {
    #third-section .main-wrapper > h2,
    #third-section .main-wrapper > p{
        width: 80%;
    }
}
@media only screen and (min-width: 1024px) {
    #third-section .main-wrapper > h2,
    #third-section .main-wrapper > p{
        width: 50%;
    }
}
#third-section .content-wrapper{
    display: flex;
    flex-direction: column;
}
@media only screen and (min-width: 768px) {
    #third-section .content-wrapper{
        flex-direction: row;
        margin-top: 40px;
        gap: 8vw;
    }
    #third-section .content-wrapper .features-wrapper{
        flex: 3;
    }
    #third-section .content-wrapper .create-shipment-wrapper{
        flex: 2;
    }
}
@media only screen and (min-width: 1024px) {
    #third-section .content-wrapper{
        gap: 18vw;
    }
}
#third-section .features-wrapper ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}
#third-section .features-wrapper ul li{
    font-weight: bold;
}
#third-section .features-wrapper .button-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
    gap: 10px;
}
#third-section .features-wrapper .button-section > *{
    flex: 1;
}
@media only screen and (min-width: 500px) {
    #third-section .features-wrapper .button-section{
        gap: 20px;
    }
}
#third-section .create-shipment-wrapper{
    margin-top: 50px;
    border-radius: 9px;
    border: 1px solid var(--colorPrimary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 15px;
    background-color: #282F41;
}
#third-section .create-shipment-wrapper h5{
    margin: 0;
    font-size: 1em;
}
#third-section .create-shipment-wrapper p{
    margin: 20px 0;
}
#third-section .create-shipment-wrapper img{
    margin-bottom: 20px;
}
#third-section .create-shipment-wrapper .btn{
    width: 80%;
    margin: 0 auto;
}


#third-section .create-shipment-wrapper .btn2{
    width: 80%;
    margin: 0 auto;
}


@media only screen and (min-width: 500px) {
    #third-section .create-shipment-wrapper .btn{
        width: 50%;
    }
    
    #third-section .create-shipment-wrapper .btn2{
        width: 50%;
    }
    
}
@media only screen and (min-width: 768px) {
    #third-section .create-shipment-wrapper{
        margin-top: 0;
        padding: 30px 25px;
    }
    #third-section .create-shipment-wrapper .btn{
        margin: 0 auto 0 0;
        width: 60%;
    }
    
    
    #third-section .create-shipment-wrapper .btn2{
        margin: 0 auto 0 0;
        width: 60%;
    }
    
    #third-section .create-shipment-wrapper img{
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 1024px) {
    #third-section .create-shipment-wrapper{
        padding: 35px 30px;
    }
}
/* --------------- CUARTA SECCION Y -------------------
------------------------ QUINTA -------------------- */
.rows-images-text {
    padding: 30px 0;
}
@media only screen and (min-width: 768px) {
    .rows-images-text {
        padding: 50px 0;
    }
}
.rows-images-text .main-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rows-images-text .main-wrapper .image-container{
    width: 80%;
    margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
    .rows-images-text .main-wrapper{
        flex-direction: row;
        gap: 8vw;
    }
    .rows-images-text .main-wrapper .image-container{
        flex: 2;
        width: auto;
    }
    .rows-images-text .main-wrapper .content-wrapper{
        flex: 3;
        width: 100%;
        margin-top: 0;
    }
}
.rows-images-text .content-wrapper ul{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}
.rows-images-text .content-wrapper ul li{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: bold;
}
.rows-images-text .content-wrapper ul li p{
    font-size: 2rem;
}
.rows-images-text .content-wrapper ul li img{
    margin-right: 20px;
}
/* ---- Quinta Seccion --- */
#fifth-section{
    color: white;
    position: relative;
}
@media only screen and (min-width: 768px) {
    #fifth-section.rows-images-text {
        padding-bottom: 100px;
    }
}
#fifth-section .image-container{
    margin-bottom: 0;
    margin-top: 40px;
}
#fifth-section .content-wrapper > span{
    font-size: 1.8rem;
    margin-top: 20px;
    display: block;
    color: rgb(236, 236, 236);
}
#fifth-section .content-wrapper > p{
    margin: 30px 0 40px 0;
}
@media only screen and (min-width: 768px) {
    #fifth-section .content-wrapper .btn{
        width: 50%;
    }
    
    #fifth-section .content-wrapper .btn2{
        width: 50%;
    }
    
    
}
@media only screen and (min-width: 1024px) {
    #fifth-section .content-wrapper .btn{
        width: 40%;
    }
    
    #fifth-section .content-wrapper .btn2{
        width: 40%;
    }
    
}
.shops-image{
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 80%;
}
@media only screen and (min-width: 768px) {
    .shops-image{
        width: 50%;
    }
}
@media only screen and (min-width: 1920px) {
    .shops-image{
        width: 55%;
    }
}
/* ------------------------ FOOTER ------------------------ */
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 40px 0;
    color: var(--colorGray);
}
footer a{
    color: var(--colorGray);
}
footer .main-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
}
footer .main-wrapper > * {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer h3{
    margin-top: 0;
    color: var(--colorBlack);
    margin-bottom: 10px;
}
footer .logo-footer{
    width: 65%;
}
@media only screen and (min-width: 768px) {
    footer .main-wrapper{
        grid-template-columns: repeat(4, 1fr);
    }
    footer h3{
        margin-bottom: 5px;
    }
    footer .logo-footer{
        width: 50%;
    }
}






