.container {
    display: flex;
    justify-content: space-between;
}
.contact-form-container {
    width: 45%;
    font-family: Gotham, sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 28.71px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #B8C2C7;
}
.contact-form-container input,
.contact-form-container label,
.contact-form-container legend {
    color: #B8C2C7;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    background: #20272F;
    color: #C9D3D8;
    border: 1px solid #B8C2C7;
    border-radius: 6px;
}
.contact-form-container select:focus,
.contact-form-container textarea:focus {
    background: #20272F;
    color: #C9D3D8;
    border: 1px solid #B8C2C7;
}
.contact-form-container select {
    width: 100%;
    display: inline-block;
    padding-top: 12px; /* Ajustar el padding superior para subir el texto */
    padding-bottom: 8px; /* Ajustar el padding inferior */
}
.contact-form-container .phone-container {
    display: flex;
    align-items: center;
}
.contact-form-container .phone-container select {
    width: 100%; /* Ajustar el ancho del select */
    padding: 10px; /* Ajustar el padding para que se vea bien */
    margin-bottom: 10px;
    font-size: 16px;
    background: #20272F;
    color: #C9D3D8;
    border: 1px solid #B8C2C7;
    border-radius: 6px;
}
.contact-form-container .phone-container input {
    flex: 1;
    margin-left: 10px;
}
.required-icon {
    display: inline-block;
    width: 7px;
    height: 20px;
    background-image: url('https://worldspeed.com.mx/rodar/wp-content/uploads/2024/10/unnamed-file.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    gap: 0px;
    opacity: 1;
    margin-left: 5px;
}
.entry-content .wp-audio-shortcode, 
.entry-content .wp-embedded-audio, 
.entry-content .wp-embedded-video, 
.entry-content .wp-video, 
.entry-content p {
    margin-bottom: 1px;
}
.custom-select2-container .select2-selection--single {
    background-color: #cd3b3b;
    border: 1px solid #aaa;
    border-radius: 4px;
}
.custom-select2-container .select2-selection--single .select2-selection__rendered {
    display: flex;
    align-items: center;
}
.custom-select2-container .select2-selection--single .select2-selection__rendered img {
    margin-right: 10px;
}
.image-container {
    width: 52%;
    position: relative;
}
.image-container img {
    width: 100%;
    border-radius: 20px;
    height: 560px;
    margin-top: 30px;
}
.image-text {
    position: relative;
    margin-top: -130px;
    top: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    text-align: center;
    width: 100%;
    pointer-events: none;
}
.circles-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.circle {
    width: 10px;
    height: 10px;
    background: #43494F;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.circle.active {
    background: #9CA9B6;
}
.gradient-button {
    position: relative;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #ffffff;
    background-color: #1c1b29;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    margin-top: 20px;
}
.gradient-button:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(114.88deg, #A7A7A7 0.22%, #A1D0E6 27.6%, #2B3348 49.82%);
    animation: spin-reverse 1.5s infinite linear;
}
.gradient-button:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background-color: #1c1b29;
    border-radius: 5px;
    z-index: 1;
}
.gradient-button span {
    position: relative;
    z-index: 2;
}
@keyframes spin-reverse {
    100% {
        transform: rotate(360deg);
    }
}
.rainbow-container {
    height: 250px;
    width: 250px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 5px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.3);
    overflow: hidden;
}
.rainbow-container:before {
    content: "";
    height: 150%;
    width: 150%;
    position: absolute;
    background: conic-gradient(
        #fd004c,
        #fe9000,
        #fff020,
        #3edf4b,
        #3363ff,
        #b102b7,
        #fd004c
    );
    left: -25%;
    top: -25%;
    animation: rainbow-spin 1.5s infinite linear;
}
@keyframes rainbow-spin {
    100% {
        transform: rotate(-360deg);
    }
}
.rainbow-container:after {
    content: "RAINBOW";
    position: absolute;
    background-color: #1c1b29;
    height: 93%;
    width: 93%;
    top: 3.5%;
    left: 3.5%;
    border-radius: 5px;
    font-family: 'Poppins',sans-serif;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 6px;
    display: grid;
    place-items: center;
}

/* Ajustar el ancho del dropdown de Select2 */
.custom-select2-container .select2-dropdown {
    width: auto !important;
    min-width: 50px !important;
    max-width: 50px !important;
}

/* Ajustar el tamaño de los iconos o banderas en el listado de Select2 */
.custom-select2-container .select2-results__option .img-flag {
    width: 15px; /* Ajustar el tamaño del icono o bandera */
    height: auto; /* Mantener la proporción del icono o bandera */
    margin-right: 5px; /* Espacio entre el icono y el texto */
}